From 7f5cde81759d4873f1c7ce81cc49acfe003bd4eb Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 9 Aug 2023 11:25:56 -0400 Subject: [PATCH 001/101] starting updates in system catalog --- hub/catalog_factories/data_models/energy_systems/archetype.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hub/catalog_factories/data_models/energy_systems/archetype.py b/hub/catalog_factories/data_models/energy_systems/archetype.py index 86bfb68d..b490ebb9 100644 --- a/hub/catalog_factories/data_models/energy_systems/archetype.py +++ b/hub/catalog_factories/data_models/energy_systems/archetype.py @@ -3,6 +3,7 @@ Energy System catalog archetype SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from typing import List -- 2.39.2 From 2b95173dfc2ba216a7966da673f4ccc63699295b Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 9 Aug 2023 12:02:16 -0400 Subject: [PATCH 002/101] starting updates in system catalog --- .idea/.gitignore | 3 +++ .idea/codeStyles/codeStyleConfig.xml | 5 +++++ .idea/hub.iml | 12 ++++++++++++ .idea/inspectionProfiles/Project_Default.xml | 12 ++++++++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 4 ++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ tests/test_systems_catalog.py | 1 + 9 files changed, 57 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/hub.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 00000000..a55e7a17 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/hub.iml b/.idea/hub.iml new file mode 100644 index 00000000..8b8c3954 --- /dev/null +++ b/.idea/hub.iml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..92775997 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..ef318927 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..8d1428ff --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 48af728c..f17038cb 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -34,3 +34,4 @@ class TestSystemsCatalog(TestCase): with self.assertRaises(IndexError): catalog.get_entry('unknown') + -- 2.39.2 From 9034c3375e9125028f7b23e23a1717093592b27f Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 9 Aug 2023 19:31:26 -0400 Subject: [PATCH 003/101] The generation_system.py is renamed to heat_generation_system.py and the attributes and decorators are modified to encapsulate all the needed attributes for boilers and heat pumps. Another class named electricity_generation_system.py is created to add the attributes and decorators of PV, inverter, and maybe wind turbines in future. The system.py is also modified accordingly --- .idea/misc.xml | 3 + .../electricity_generation_system.py | 159 ++++++++++++++++++ .../energy_systems/generation_system.py | 147 ---------------- .../energy_systems/heat_generation_system.py | 146 ++++++++++++++++ .../data_models/energy_systems/system.py | 28 ++- .../energy_systems/montreal_custom_catalog.py | 2 +- 6 files changed, 329 insertions(+), 156 deletions(-) create mode 100644 hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py delete mode 100644 hub/catalog_factories/data_models/energy_systems/generation_system.py create mode 100644 hub/catalog_factories/data_models/energy_systems/heat_generation_system.py diff --git a/.idea/misc.xml b/.idea/misc.xml index ef318927..0e4465aa 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,7 @@ + + \ No newline at end of file diff --git a/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py b/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py new file mode 100644 index 00000000..762615a3 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py @@ -0,0 +1,159 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from __future__ import annotations +from typing import Union + + +class ElectricityGenerationSystem: + """ + Heat Generation system class + """ + + def __init__(self, model_name, manufacturer, system_type, nominal_power_output, nominal_efficiency, + nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, + standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height, + control_strategy): + self._model_name = model_name + self._name = manufacturer + self._type = system_type + self._nominal_power_output = nominal_power_output + self._nominal_efficiency = nominal_efficiency + self._nominal_ambient_temperature = nominal_ambient_temperature + self._nominal_cell_temperature = nominal_cell_temperature + self._nominal_radiation = nominal_radiation + self._standard_test_condition_cell_temperature = standard_test_condition_cell_temperature + self._standard_test_condition_maximum_power = standard_test_condition_maximum_power + self._width = width + self._height = height + self._control_strategy = control_strategy + + @property + def id(self): + """ + Get system id + :return: float + """ + return self._model_name + + @property + def name(self): + """ + Get name + :return: string + """ + return self._name + + @property + def type(self): + """ + Get type + :return: string + """ + return self._type + + @property + def nominal_power_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in kW + :return: float + """ + return self._nominal_power_output + + @property + def nominal_efficiency(self): + """ + Get nominal_efficiency of electricity generation devices or inverters + :return: float + """ + return self._nominal_efficiency + + @property + def nominal_ambient_temperature(self): + """ + Get nominal ambient temperature of PV panels in degree Celsius + :return: float + """ + return self._nominal_ambient_temperature + + @property + def nominal_cell_temperature(self): + """ + Get nominal cell temperature of PV panels in degree Celsius + :return: float + """ + return self._nominal_cell_temperature + + @property + def nominal_radiation(self): + """ + Get nominal radiation of PV panels + :return: float + """ + return self._nominal_radiation + + @property + def standard_test_condition_cell_temperature(self): + """ + Get standard test condition cell temperature of PV panels in degree Celsius + :return: float + """ + return self._standard_test_condition_cell_temperature + + @property + def standard_test_condition_maximum_power(self): + """ + Get standard test condition maximum power of PV panels in kW + :return: float + """ + return self._standard_test_condition_maximum_power + + @property + def width(self): + """ + Get PV module width in m + :return: float + """ + return self._width + + @property + def height(self): + """ + Get PV module height in m + :return: float + """ + return self._height + + @property + def control_strategy(self): + """" + Get control_strategy of Inverter from [MPPT, grid_tied, power_factor_control] + :return: string + """ + return self._control_strategy + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Generation component': {'id': self.id, + 'name': self.name, + 'type': self.type, + 'nominal power output [kW]': self.nominal_power_output, + 'nominal efficiency': self.nominal_efficiency, + 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, + 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, + 'nominal radiation [W/m2]': self.nominal_radiation, + 'standard test condition cell temperature [Celsius]': + self.standard_test_condition_cell_temperature, + 'standard test condition maximum power [kW]': + self.standard_test_condition_maximum_power, + 'width': self.width, + 'height': self.height, + 'control strategy': self.control_strategy + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py deleted file mode 100644 index 1728540f..00000000 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ /dev/null @@ -1,147 +0,0 @@ -""" -Energy System catalog generation system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - -from __future__ import annotations -from typing import Union - - -class GenerationSystem: - """ - Generation system class - """ - def __init__(self, system_id, name, system_type, fuel_type, source_types, heat_efficiency, cooling_efficiency, - electricity_efficiency, source_temperature, source_mass_flow, storage, auxiliary_equipment): - - self._system_id = system_id - self._name = name - self._type = system_type - self._fuel_type = fuel_type - self._source_types = source_types - self._heat_efficiency = heat_efficiency - self._cooling_efficiency = cooling_efficiency - self._electricity_efficiency = electricity_efficiency - self._source_temperature = source_temperature - self._source_mass_flow = source_mass_flow - self._storage = storage - self._auxiliary_equipment = auxiliary_equipment - - @property - def id(self): - """ - Get system id - :return: float - """ - return self._system_id - - @property - def name(self): - """ - Get name - :return: string - """ - return self._name - - @property - def type(self): - """ - Get type - :return: string - """ - return self._type - - @property - def fuel_type(self): - """ - Get fuel_type from [renewable, gas, diesel, electricity, wood, coal] - :return: string - """ - return self._fuel_type - - @property - def source_types(self): - """ - Get source_type from [air, water, geothermal, district_heating, grid, on_site_electricity] - :return: [string] - """ - return self._source_types - - @property - def heat_efficiency(self): - """ - Get heat_efficiency - :return: float - """ - return self._heat_efficiency - - @property - def cooling_efficiency(self): - """ - Get cooling_efficiency - :return: float - """ - return self._cooling_efficiency - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._electricity_efficiency - - @property - def source_temperature(self): - """ - Get source_temperature in degree Celsius - :return: float - """ - return self._source_temperature - - @property - def source_mass_flow(self): - """ - Get source_mass_flow in kg/s - :return: float - """ - return self._source_mass_flow - - @property - def storage(self): - """ - Get boolean storage exists - :return: bool - """ - return self._storage - - @property - def auxiliary_equipment(self) -> Union[None, GenerationSystem]: - """ - Get auxiliary_equipment - :return: GenerationSystem - """ - return self._auxiliary_equipment - - def to_dictionary(self): - """Class content to dictionary""" - _auxiliary_equipment = [] - if self.auxiliary_equipment is not None: - _auxiliary_equipment = self.auxiliary_equipment.to_dictionary() - content = {'Layer': {'id': self.id, - 'name': self.name, - 'type': self.type, - 'fuel type': self.fuel_type, - 'source types': self.source_types, - 'source temperature [Celsius]': self.source_temperature, - 'source mass flow [kg/s]': self.source_mass_flow, - 'heat efficiency': self.heat_efficiency, - 'cooling efficiency': self.cooling_efficiency, - 'electricity efficiency': self.electricity_efficiency, - 'it has storage': self.storage, - 'auxiliary equipment': _auxiliary_equipment - } - } - return content diff --git a/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py b/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py new file mode 100644 index 00000000..002d12a9 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py @@ -0,0 +1,146 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from __future__ import annotations +from typing import Union + + +class HeatGenerationSystem: + """ + Heat Generation system class + """ + + def __init__(self, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, modulation_range, + source_types, heat_efficiency, cooling_efficiency, electricity_efficiency, source_temperature, + source_mass_flow): + self._model_name = model_name + self._manufacturer = manufacturer + self._system_type = system_type + self._fuel_type = fuel_type + self._nominal_thermal_output = nominal_thermal_output + self._modulation_range = modulation_range + self._source_types = source_types + self._heat_efficiency = heat_efficiency + self._cooling_efficiency = cooling_efficiency + self._electricity_efficiency = electricity_efficiency + self._source_temperature = source_temperature + self._source_mass_flow = source_mass_flow + + @property + def model_name(self): + """ + Get system id + :return: float + """ + return self._model_name + + @property + def manufacturer(self): + """ + Get name + :return: string + """ + return self._manufacturer + + @property + def system_type(self): + """ + Get type + :return: string + """ + return self._system_type + + @property + def fuel_type(self): + """ + Get fuel_type from [renewable, gas, diesel, electricity, wood, coal, biogas] + :return: string + """ + return self._fuel_type + + @property + def nominal_thermal_output(self): + """ + Get nominal_thermal_output of heat generation devices in kW + :return: float + """ + return self._nominal_thermal_output + + @property + def modulation_range(self): + """ + Get modulation range of heat generation devices + :return: float + """ + return self._modulation_range + + @property + def source_types(self): + """ + Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] + :return: [string] + """ + return self._source_types + + @property + def heat_efficiency(self): + """ + Get heat_efficiency + :return: float + """ + return self._heat_efficiency + + @property + def cooling_efficiency(self): + """ + Get cooling_efficiency + :return: float + """ + return self._cooling_efficiency + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + + @property + def source_temperature(self): + """ + Get source_temperature in degree Celsius + :return: float + """ + return self._source_temperature + + @property + def source_mass_flow(self): + """ + Get source_mass_flow in kg/s + :return: float + """ + return self._source_mass_flow + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Generation component': {'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'nominal thermal output': self.nominal_thermal_output, + 'modulation_range': self.modulation_range, + 'source types': self.source_types, + 'source temperature [Celsius]': self.source_temperature, + 'source mass flow [kg/s]': self.source_mass_flow, + 'heat efficiency': self.heat_efficiency, + 'cooling efficiency': self.cooling_efficiency, + 'electricity efficiency': self.electricity_efficiency, + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 6059bec7..743c5b56 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -7,7 +7,8 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca from typing import Union -from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.heat_generation_system import HeatGenerationSystem +from hub.catalog_factories.data_models.energy_systems.electricity_generation_system import ElectricityGenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem @@ -21,7 +22,8 @@ class System: system_id, name, demand_types, - generation_system, + heat_generation_system, + electricity_generation_system, distribution_system, emission_system): @@ -29,7 +31,8 @@ class System: self._system_id = system_id self._name = name self._demand_types = demand_types - self._generation_system = generation_system + self._heat_generation_system = heat_generation_system + self._electricity_generation_system = electricity_generation_system self._distribution_system = distribution_system self._emission_system = emission_system @@ -66,12 +69,20 @@ class System: return self._demand_types @property - def generation_system(self) -> GenerationSystem: + def heat_generation_system(self) -> HeatGenerationSystem: """ - Get generation system - :return: GenerationSystem + Get heat generation system + :return: HeatGenerationSystem """ - return self._generation_system + return self._heat_generation_system + + @property + def electricity_generation_system(self) -> ElectricityGenerationSystem: + """ + Get electricity generation system + :return: ElectricityGenerationSystem + """ + return self._electricity_generation_system @property def distribution_system(self) -> Union[None, DistributionSystem]: @@ -101,7 +112,8 @@ class System: 'name': self.name, 'level of detail': self.lod, 'demand types': self.demand_types, - 'generation system': self.generation_system.to_dictionary(), + 'heat generation system': self.heat_generation_system.to_dictionary(), + 'electricity generation system': self.electricity_generation_system.to_dictionary(), 'distribution system': _distribution_system, 'emission system': _emission_system } diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 91c8d4e4..e190e49a 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -10,7 +10,7 @@ import xmltodict from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content -from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.heat_generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.archetype import Archetype -- 2.39.2 From 9094c286c4a742e3a38ddfae54d0c83b193084cc Mon Sep 17 00:00:00 2001 From: sanam Date: Thu, 10 Aug 2023 10:04:59 -0400 Subject: [PATCH 004/101] new branch created --- .idea/.gitignore | 3 ++ .idea/hub.iml | 12 ++++++++ .idea/inspectionProfiles/Project_Default.xml | 30 +++++++++++++++++++ .../inspectionProfiles/profiles_settings.xml | 6 ++++ .idea/misc.xml | 4 +++ .idea/modules.xml | 8 +++++ .idea/vcs.xml | 6 ++++ .../stochastic_occupancy_model/archetype.py | 8 +++++ 8 files changed, 77 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/hub.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/hub.iml b/.idea/hub.iml new file mode 100644 index 00000000..8b8c3954 --- /dev/null +++ b/.idea/hub.iml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..0c6593c6 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,30 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..ef318927 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..8d1428ff --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py new file mode 100644 index 00000000..86e895fe --- /dev/null +++ b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py @@ -0,0 +1,8 @@ +""" +Energy System catalog archetype +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca +""" + +import \ No newline at end of file -- 2.39.2 From 02a03b8239b7ea44f6c98374de7fff189c6ddbd7 Mon Sep 17 00:00:00 2001 From: sanam Date: Thu, 10 Aug 2023 11:23:23 -0400 Subject: [PATCH 005/101] new directory created --- .../data_models/stochastic_occupancy_model/archetype.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py deleted file mode 100644 index 86e895fe..00000000 --- a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py +++ /dev/null @@ -1,8 +0,0 @@ -""" -Energy System catalog archetype -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca -""" - -import \ No newline at end of file -- 2.39.2 From e1ca39950fef287e875c4d4ea66acba0bcdf7e55 Mon Sep 17 00:00:00 2001 From: sanam Date: Thu, 10 Aug 2023 11:25:40 -0400 Subject: [PATCH 006/101] new directory created --- .../stochastic_occupancy_model/archetype.py | 155 ++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py new file mode 100644 index 00000000..3397c4bf --- /dev/null +++ b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py @@ -0,0 +1,155 @@ +""" +Construction catalog Archetype +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2022 Concordia CERC group +Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca +""" + +from hub.catalog_factories.data_models.construction.construction import Construction + + +class Archetype: + """ + Archetype class + """ + def __init__(self, archetype_id, + name, + function, + climate_zone, + construction_period, + constructions, + average_storey_height, + thermal_capacity, + extra_loses_due_to_thermal_bridges, + indirect_heated_ratio, + infiltration_rate_for_ventilation_system_off, + infiltration_rate_for_ventilation_system_on): + self._id = archetype_id + self._name = name + self._function = function + self._climate_zone = climate_zone + self._construction_period = construction_period + self._constructions = constructions + self._average_storey_height = average_storey_height + self._thermal_capacity = thermal_capacity + self._extra_loses_due_to_thermal_bridges = extra_loses_due_to_thermal_bridges + self._indirect_heated_ratio = indirect_heated_ratio + self._infiltration_rate_for_ventilation_system_off = infiltration_rate_for_ventilation_system_off + self._infiltration_rate_for_ventilation_system_on = infiltration_rate_for_ventilation_system_on + + @property + def id(self): + """ + Get archetype id + :return: str + """ + return self._id + + @property + def name(self): + """ + Get archetype name + :return: str + """ + return self._name + + @property + def function(self): + """ + Get archetype function + :return: str + """ + return self._function + + @property + def climate_zone(self): + """ + Get archetype climate zone + :return: str + """ + return self._climate_zone + + @property + def constructions(self) -> [Construction]: + """ + Get archetype constructions + :return: [Construction] + """ + return self._constructions + + @property + def construction_period(self): + """ + Get archetype construction period + :return: str + """ + return self._construction_period + + @property + def average_storey_height(self): + """ + Get archetype average storey height in m + :return: float + """ + return self._average_storey_height + + @property + def thermal_capacity(self): + """ + Get archetype thermal capacity in J/m3K + :return: float + """ + return self._thermal_capacity + + @property + def extra_loses_due_to_thermal_bridges(self): + """ + Get archetype extra loses due to thermal bridges in W/m2K + :return: float + """ + return self._extra_loses_due_to_thermal_bridges + + @property + def indirect_heated_ratio(self): + """ + Get archetype indirect heated area ratio + :return: float + """ + return self._indirect_heated_ratio + + @property + def infiltration_rate_for_ventilation_system_off(self): + """ + Get archetype infiltration rate for ventilation system off in 1/s + :return: float + """ + return self._infiltration_rate_for_ventilation_system_off + + @property + def infiltration_rate_for_ventilation_system_on(self): + """ + Get archetype infiltration rate for ventilation system on in 1/s + :return: float + """ + return self._infiltration_rate_for_ventilation_system_on + + def to_dictionary(self): + """Class content to dictionary""" + _constructions = [] + for _construction in self.constructions: + _constructions.append(_construction.to_dictionary()) + content = {'Archetype': {'id': self.id, + 'name': self.name, + 'function': self.function, + 'climate zone': self.climate_zone, + 'period of construction': self.construction_period, + 'average storey height [m]': self.average_storey_height, + 'thermal capacity [J/m3K]': self.thermal_capacity, + 'extra loses due to thermal bridges [W/m2K]': self.extra_loses_due_to_thermal_bridges, + 'indirect heated ratio': self.indirect_heated_ratio, + 'infiltration rate for ventilation off [1/s]': self.infiltration_rate_for_ventilation_system_off, + 'infiltration rate for ventilation on [1/s]': self.infiltration_rate_for_ventilation_system_on, + 'constructions': _constructions + } + } + return content -- 2.39.2 From fde6f0f7513e5ea87c60a32e03ecdd517d429248 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 10 Aug 2023 20:55:35 -0400 Subject: [PATCH 007/101] Few modifications were mafe to heat_generation_system.py and electricity_generation_system.py classes. A new class named energy_storage_system.py is created to represent different possible energy storage systems in energy systems. --- .../electricity_generation_system.py | 66 ++++-- .../energy_systems/energy_storage_system.py | 217 ++++++++++++++++++ .../energy_systems/heat_generation_system.py | 26 +-- 3 files changed, 272 insertions(+), 37 deletions(-) create mode 100644 hub/catalog_factories/data_models/energy_systems/energy_storage_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py b/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py index 762615a3..bc1bdb81 100644 --- a/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py @@ -12,16 +12,17 @@ from typing import Union class ElectricityGenerationSystem: """ - Heat Generation system class + Electricity Generation system class """ - def __init__(self, model_name, manufacturer, system_type, nominal_power_output, nominal_efficiency, + def __init__(self, model_name, manufacturer, system_type, energy_source, nominal_power_output, nominal_efficiency, nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height, - control_strategy): + cogeneration_ratio, control_strategy): self._model_name = model_name self._name = manufacturer self._type = system_type + self._energy_source = energy_source self._nominal_power_output = nominal_power_output self._nominal_efficiency = nominal_efficiency self._nominal_ambient_temperature = nominal_ambient_temperature @@ -32,31 +33,39 @@ class ElectricityGenerationSystem: self._width = width self._height = height self._control_strategy = control_strategy + self._cogeneration_ratio = cogeneration_ratio @property - def id(self): + def model_name(self): """ - Get system id + Get system model :return: float """ return self._model_name @property - def name(self): + def manufacturer(self): """ - Get name + Get name of manufacturer :return: string """ return self._name @property - def type(self): + def system_type(self): """ Get type :return: string """ return self._type + @property + def energy_source(self): + """ + Get the energy source of the electricity generation system from [sun, wind, natural gas, biogas, diesel, biomass] + :return: string + """ + @property def nominal_power_output(self): """ @@ -129,6 +138,13 @@ class ElectricityGenerationSystem: """ return self._height + @property + def cogeneration_ratio(self): + """ + Get the ratio between the heat output and electricity output of CHP units + :return: float + """ + @property def control_strategy(self): """" @@ -139,21 +155,23 @@ class ElectricityGenerationSystem: def to_dictionary(self): """Class content to dictionary""" - content = {'Generation component': {'id': self.id, - 'name': self.name, - 'type': self.type, - 'nominal power output [kW]': self.nominal_power_output, - 'nominal efficiency': self.nominal_efficiency, - 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, - 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, - 'nominal radiation [W/m2]': self.nominal_radiation, - 'standard test condition cell temperature [Celsius]': - self.standard_test_condition_cell_temperature, - 'standard test condition maximum power [kW]': - self.standard_test_condition_maximum_power, - 'width': self.width, - 'height': self.height, - 'control strategy': self.control_strategy - } + content = {'Electricity Generation component': {'id': self.model_name, + 'name': self.manufacturer, + 'type': self.system_type, + 'energy source': self.energy_source, + 'nominal power output [kW]': self.nominal_power_output, + 'nominal efficiency': self.nominal_efficiency, + 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, + 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, + 'nominal radiation [W/m2]': self.nominal_radiation, + 'standard test condition cell temperature [Celsius]': + self.standard_test_condition_cell_temperature, + 'standard test condition maximum power [kW]': + self.standard_test_condition_maximum_power, + 'width': self.width, + 'height': self.height, + 'cogeneration ratio': self.cogeneration_ratio, + 'control strategy': self.control_strategy + } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py new file mode 100644 index 00000000..e76c0b65 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -0,0 +1,217 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from __future__ import annotations +from typing import Union + + +class EnergyStorageSystem: + """" + Energy Storage System Class + """ + + def __init__(self, model_name, manufacturer, storage_type, storage_subtype, physical_volume, rated_output_power, + nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, height, + storage_material, storage_thickness, material_conductivity, insulation_material, insulation_thickness, + insulation_conductivity, maximum_operating_temperature): + self._model_name = model_name + self._manufacturer = manufacturer + self._storage_type = storage_type + self._storage_subtype = storage_subtype + self._physical_volume = physical_volume + self._rated_output_power = rated_output_power + self._nominal_efficiency = nominal_efficiency + self._battery_voltage = battery_voltage + self._depth_of_discharge = depth_of_discharge + self._self_discharge_rate = self_discharge_rate + self._diameter = diameter + self._height = height + self._storage_material = storage_material + self._storage_thickness = storage_thickness + self._material_conductivity = material_conductivity + self._insulation_material = insulation_material + self._insulation_thickness = insulation_thickness + self._insulation_conductivity = insulation_conductivity + self._maximum_operating_temperature = maximum_operating_temperature + + @property + def model_name(self): + """ + Get system model + :return: float + """ + return self._model_name + + @property + def manufacturer(self): + """ + Get name of manufacturer + :return: string + """ + return self._manufacturer + + @property + def storage_type(self): + """ + Get storage type from [electrical, electrochemical, mechanical, thermal], chemical] + :return: string + """ + return self._storage_type + + @property + def storage_subtype(self): + """ + Get storage subtype from [lithium ion, lead acid, niMH, caes, flywheel, sensible heat storage, latent heat storage] + :return: string + """ + return self._storage_subtype + + @property + def physical_volume(self): + """ + Get the physical volume of the storage system in cubic meters + :return: float + """ + return self._physical_volume + + @property + def rated_output_power(self): + """ + Get the rated output power of storage system in kW + :return: float + """ + return self._rated_output_power + + @property + def nominal_efficiency(self): + """ + Get the nominal efficiency of the storage system + :return: float + """ + return self._nominal_efficiency + + @property + def battery_voltage(self): + """ + Get the battery voltage in Volt + :return: float + """ + return self._battery_voltage + + @property + def depth_of_discharge(self): + """ + Get the depth of discharge as a percentage + :return: float + """ + return self._depth_of_discharge + + @property + def self_discharge_rate(self): + """ + Get the self discharge rate of battery as a percentage + :return: float + """ + return self._self_discharge_rate + + @property + def diameter(self): + """ + Get the diameter of the storage system in meters + :return: float + """ + return self._diameter + + @property + def height(self): + """ + Get the height of the storage system in meters + :return: float + """ + return self._height + + @property + def storage_material(self): + """ + Get the name of the storage system material + :return: string + """ + return self._storage_material + + @property + def storage_thickness(self): + """ + Get the thickness of the storage system in meters + :return: float + """ + return self._storage_thickness + + @property + def material_conductivity(self): + """ + Get the thermal conductivity of the storage system material in W/(m.K) + :return: float + """ + return self._material_conductivity + + @property + def insulation_material(self): + """ + Get the name of the material used as insulation + :return: string + """ + return self._insulation_material + + @property + def insulation_thickness(self): + """ + Get the thickness of the insulation used for the storage system in meters + :return: float + """ + return self._storage_thickness + + @property + def insulation_conductivity(self): + """ + Get the thickness of the insulation used for the storage system in W/(m.K) + :return: float + """ + return self._insulation_conductivity + + @property + def maximum_operating_temperature(self): + """ + Get maximum operating temperature of the storage system in degree Celsius + :return: float + """ + return self._maximum_operating_temperature + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Storage component': {'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'storage subtype': self.storage_subtype, + 'physical volume [m3]': self.physical_volume, + 'rated power [kW]': self.rated_output_power, + 'nominal efficiency': self.nominal_efficiency, + 'battery voltage [V]': self.battery_voltage, + 'depth of discharge': self.depth_of_discharge, + 'self discharge rate': self.self_discharge_rate, + 'diameter [m]': self.diameter, + 'height [m]': self.height, + 'storage material': self.storage_material, + 'storage thickness [m]': self.storage_thickness, + 'storage material thermal conductivity [W/m.K]': self.material_conductivity, + 'insulation material': self.insulation_material, + 'insulation thickness[m]': self.insulation_thickness, + 'insulation thermal conductivity [W/m.K]': self.insulation_conductivity, + 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + } + } + return content \ No newline at end of file diff --git a/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py b/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py index 002d12a9..4b290d15 100644 --- a/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py @@ -129,18 +129,18 @@ class HeatGenerationSystem: def to_dictionary(self): """Class content to dictionary""" - content = {'Generation component': {'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'type': self.system_type, - 'fuel type': self.fuel_type, - 'nominal thermal output': self.nominal_thermal_output, - 'modulation_range': self.modulation_range, - 'source types': self.source_types, - 'source temperature [Celsius]': self.source_temperature, - 'source mass flow [kg/s]': self.source_mass_flow, - 'heat efficiency': self.heat_efficiency, - 'cooling efficiency': self.cooling_efficiency, - 'electricity efficiency': self.electricity_efficiency, - } + content = {'Heat Generation component': {'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'nominal thermal output': self.nominal_thermal_output, + 'modulation_range': self.modulation_range, + 'source types': self.source_types, + 'source temperature [Celsius]': self.source_temperature, + 'source mass flow [kg/s]': self.source_mass_flow, + 'heat efficiency': self.heat_efficiency, + 'cooling efficiency': self.cooling_efficiency, + 'electricity efficiency': self.electricity_efficiency, + } } return content -- 2.39.2 From a3028221e32f8c78ff38e0235bd2629e7dd7776c Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 11 Aug 2023 10:17:02 -0400 Subject: [PATCH 008/101] added .gitignore to always ignore .idea --- .idea/.gitignore => .gitignore | 3 +- .idea/hub.iml | 12 -------- .idea/inspectionProfiles/Project_Default.xml | 30 ------------------- .../inspectionProfiles/profiles_settings.xml | 6 ---- .idea/misc.xml | 4 --- .idea/modules.xml | 8 ----- .idea/vcs.xml | 6 ---- 7 files changed, 1 insertion(+), 68 deletions(-) rename .idea/.gitignore => .gitignore (51%) delete mode 100644 .idea/hub.iml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.gitignore similarity index 51% rename from .idea/.gitignore rename to .gitignore index 26d33521..fd31855a 100644 --- a/.idea/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ # Default ignored files -/shelf/ -/workspace.xml +.idea \ No newline at end of file diff --git a/.idea/hub.iml b/.idea/hub.iml deleted file mode 100644 index 8b8c3954..00000000 --- a/.idea/hub.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 0c6593c6..00000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2da..00000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index ef318927..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 8d1428ff..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file -- 2.39.2 From 1b3a128f334b9cd048d882a44c042b143c2224a1 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 11 Aug 2023 10:18:33 -0400 Subject: [PATCH 009/101] added .gitignore to always ignore .idea --- .gitignore | 1 + .idea/.gitignore | 3 --- .idea/codeStyles/codeStyleConfig.xml | 5 ----- .idea/hub.iml | 12 ------------ .idea/inspectionProfiles/Project_Default.xml | 12 ------------ .idea/inspectionProfiles/profiles_settings.xml | 6 ------ .idea/misc.xml | 7 ------- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ 9 files changed, 1 insertion(+), 59 deletions(-) create mode 100644 .gitignore delete mode 100644 .idea/.gitignore delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/hub.iml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..723ef36f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 26d33521..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index a55e7a17..00000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/hub.iml b/.idea/hub.iml deleted file mode 100644 index 8b8c3954..00000000 --- a/.idea/hub.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 92775997..00000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2da..00000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 0e4465aa..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 8d1428ff..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file -- 2.39.2 From 61d4c012dcca65665af9891c25ee719d24950eac Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Sun, 13 Aug 2023 10:26:36 -0400 Subject: [PATCH 010/101] Renamed the electricity_generation_system.py to pv_generation_system.py and modified the heating_generation_system to generation_system.py to account for all the generation systems. --- .../energy_systems/energy_storage_system.py | 30 ++----- ...eration_system.py => generation_system.py} | 24 ++++- ...tion_system.py => pv_generation_system.py} | 87 +------------------ .../data_models/energy_systems/system.py | 8 +- .../energy_systems/montreal_custom_catalog.py | 2 +- 5 files changed, 37 insertions(+), 114 deletions(-) rename hub/catalog_factories/data_models/energy_systems/{heat_generation_system.py => generation_system.py} (83%) rename hub/catalog_factories/data_models/energy_systems/{electricity_generation_system.py => pv_generation_system.py} (54%) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index e76c0b65..7ac5d7d0 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -8,6 +8,8 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from __future__ import annotations from typing import Union +from hub.catalog_factories.data_models.construction.material import Material +from hub.catalog_factories.data_models.construction.layer import Layer class EnergyStorageSystem: @@ -15,22 +17,20 @@ class EnergyStorageSystem: Energy Storage System Class """ - def __init__(self, model_name, manufacturer, storage_type, storage_subtype, physical_volume, rated_output_power, - nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, height, + def __init__(self, model_name, manufacturer, storage_type, volume, rated_output_power, + nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, storage_material, storage_thickness, material_conductivity, insulation_material, insulation_thickness, insulation_conductivity, maximum_operating_temperature): self._model_name = model_name self._manufacturer = manufacturer self._storage_type = storage_type - self._storage_subtype = storage_subtype - self._physical_volume = physical_volume + self._physical_volume = volume self._rated_output_power = rated_output_power self._nominal_efficiency = nominal_efficiency self._battery_voltage = battery_voltage self._depth_of_discharge = depth_of_discharge self._self_discharge_rate = self_discharge_rate self._diameter = diameter - self._height = height self._storage_material = storage_material self._storage_thickness = storage_thickness self._material_conductivity = material_conductivity @@ -58,19 +58,11 @@ class EnergyStorageSystem: @property def storage_type(self): """ - Get storage type from [electrical, electrochemical, mechanical, thermal], chemical] + Get storage type from ['lithium_ion', 'sensible', 'latent'] :return: string """ return self._storage_type - @property - def storage_subtype(self): - """ - Get storage subtype from [lithium ion, lead acid, niMH, caes, flywheel, sensible heat storage, latent heat storage] - :return: string - """ - return self._storage_subtype - @property def physical_volume(self): """ @@ -127,14 +119,6 @@ class EnergyStorageSystem: """ return self._diameter - @property - def height(self): - """ - Get the height of the storage system in meters - :return: float - """ - return self._height - @property def storage_material(self): """ @@ -196,7 +180,6 @@ class EnergyStorageSystem: content = {'Storage component': {'model name': self.model_name, 'manufacturer': self.manufacturer, 'storage type': self.storage_type, - 'storage subtype': self.storage_subtype, 'physical volume [m3]': self.physical_volume, 'rated power [kW]': self.rated_output_power, 'nominal efficiency': self.nominal_efficiency, @@ -204,7 +187,6 @@ class EnergyStorageSystem: 'depth of discharge': self.depth_of_discharge, 'self discharge rate': self.self_discharge_rate, 'diameter [m]': self.diameter, - 'height [m]': self.height, 'storage material': self.storage_material, 'storage thickness [m]': self.storage_thickness, 'storage material thermal conductivity [W/m.K]': self.material_conductivity, diff --git a/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py similarity index 83% rename from hub/catalog_factories/data_models/energy_systems/heat_generation_system.py rename to hub/catalog_factories/data_models/energy_systems/generation_system.py index 4b290d15..5179eb8d 100644 --- a/hub/catalog_factories/data_models/energy_systems/heat_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -10,14 +10,14 @@ from __future__ import annotations from typing import Union -class HeatGenerationSystem: +class GenerationSystem: """ Heat Generation system class """ def __init__(self, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, modulation_range, source_types, heat_efficiency, cooling_efficiency, electricity_efficiency, source_temperature, - source_mass_flow): + source_mass_flow, nominal_electricity_output, cogeneration_ratio): self._model_name = model_name self._manufacturer = manufacturer self._system_type = system_type @@ -30,6 +30,8 @@ class HeatGenerationSystem: self._electricity_efficiency = electricity_efficiency self._source_temperature = source_temperature self._source_mass_flow = source_mass_flow + self._nominal_electricity_output = nominal_electricity_output + self._cogeneration_ratio = cogeneration_ratio @property def model_name(self): @@ -127,6 +129,22 @@ class HeatGenerationSystem: """ return self._source_mass_flow + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in kW + :return: float + """ + return self._nominal_electricity_output + + @property + def cogeneration_ratio(self): + """ + Get the ratio between the heat output and electricity output of CHP units + :return: float + """ + return self._cogeneration_ratio + def to_dictionary(self): """Class content to dictionary""" content = {'Heat Generation component': {'model name': self.model_name, @@ -141,6 +159,8 @@ class HeatGenerationSystem: 'heat efficiency': self.heat_efficiency, 'cooling efficiency': self.cooling_efficiency, 'electricity efficiency': self.electricity_efficiency, + 'nominal power output [kW]': self.nominal_electricity_output, + 'cogeneration ratio': self.cogeneration_ratio, } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py similarity index 54% rename from hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py rename to hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index bc1bdb81..78bd2bd6 100644 --- a/hub/catalog_factories/data_models/energy_systems/electricity_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -10,21 +10,13 @@ from __future__ import annotations from typing import Union -class ElectricityGenerationSystem: +class PvGenerationSystem: """ Electricity Generation system class """ - def __init__(self, model_name, manufacturer, system_type, energy_source, nominal_power_output, nominal_efficiency, - nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, - standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height, - cogeneration_ratio, control_strategy): - self._model_name = model_name - self._name = manufacturer - self._type = system_type - self._energy_source = energy_source - self._nominal_power_output = nominal_power_output - self._nominal_efficiency = nominal_efficiency + def __init__(self, nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, + standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height): self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation @@ -32,55 +24,6 @@ class ElectricityGenerationSystem: self._standard_test_condition_maximum_power = standard_test_condition_maximum_power self._width = width self._height = height - self._control_strategy = control_strategy - self._cogeneration_ratio = cogeneration_ratio - - @property - def model_name(self): - """ - Get system model - :return: float - """ - return self._model_name - - @property - def manufacturer(self): - """ - Get name of manufacturer - :return: string - """ - return self._name - - @property - def system_type(self): - """ - Get type - :return: string - """ - return self._type - - @property - def energy_source(self): - """ - Get the energy source of the electricity generation system from [sun, wind, natural gas, biogas, diesel, biomass] - :return: string - """ - - @property - def nominal_power_output(self): - """ - Get nominal_power_output of electricity generation devices or inverters in kW - :return: float - """ - return self._nominal_power_output - - @property - def nominal_efficiency(self): - """ - Get nominal_efficiency of electricity generation devices or inverters - :return: float - """ - return self._nominal_efficiency @property def nominal_ambient_temperature(self): @@ -138,29 +81,9 @@ class ElectricityGenerationSystem: """ return self._height - @property - def cogeneration_ratio(self): - """ - Get the ratio between the heat output and electricity output of CHP units - :return: float - """ - - @property - def control_strategy(self): - """" - Get control_strategy of Inverter from [MPPT, grid_tied, power_factor_control] - :return: string - """ - return self._control_strategy - def to_dictionary(self): """Class content to dictionary""" - content = {'Electricity Generation component': {'id': self.model_name, - 'name': self.manufacturer, - 'type': self.system_type, - 'energy source': self.energy_source, - 'nominal power output [kW]': self.nominal_power_output, - 'nominal efficiency': self.nominal_efficiency, + content = {'Electricity Generation component': { 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, 'nominal radiation [W/m2]': self.nominal_radiation, @@ -170,8 +93,6 @@ class ElectricityGenerationSystem: self.standard_test_condition_maximum_power, 'width': self.width, 'height': self.height, - 'cogeneration ratio': self.cogeneration_ratio, - 'control strategy': self.control_strategy } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 743c5b56..f8b47905 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -7,8 +7,8 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca from typing import Union -from hub.catalog_factories.data_models.energy_systems.heat_generation_system import HeatGenerationSystem -from hub.catalog_factories.data_models.energy_systems.electricity_generation_system import ElectricityGenerationSystem +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem @@ -69,7 +69,7 @@ class System: return self._demand_types @property - def heat_generation_system(self) -> HeatGenerationSystem: + def heat_generation_system(self) -> GenerationSystem: """ Get heat generation system :return: HeatGenerationSystem @@ -77,7 +77,7 @@ class System: return self._heat_generation_system @property - def electricity_generation_system(self) -> ElectricityGenerationSystem: + def electricity_generation_system(self) -> PvGenerationSystem: """ Get electricity generation system :return: ElectricityGenerationSystem diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index e190e49a..91c8d4e4 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -10,7 +10,7 @@ import xmltodict from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content -from hub.catalog_factories.data_models.energy_systems.heat_generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.archetype import Archetype -- 2.39.2 From 231e4a17f2be08476195adce37da6d0b15efff66 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Sun, 13 Aug 2023 20:43:05 -0400 Subject: [PATCH 011/101] All the attributes related to the material and insulation of the tank are substituted with one attribute called "layers" --- .../energy_systems/energy_storage_system.py | 70 +++---------------- 1 file changed, 11 insertions(+), 59 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 7ac5d7d0..c84e6706 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -18,9 +18,8 @@ class EnergyStorageSystem: """ def __init__(self, model_name, manufacturer, storage_type, volume, rated_output_power, - nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, - storage_material, storage_thickness, material_conductivity, insulation_material, insulation_thickness, - insulation_conductivity, maximum_operating_temperature): + nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, layers + , maximum_operating_temperature): self._model_name = model_name self._manufacturer = manufacturer self._storage_type = storage_type @@ -31,12 +30,7 @@ class EnergyStorageSystem: self._depth_of_discharge = depth_of_discharge self._self_discharge_rate = self_discharge_rate self._diameter = diameter - self._storage_material = storage_material - self._storage_thickness = storage_thickness - self._material_conductivity = material_conductivity - self._insulation_material = insulation_material - self._insulation_thickness = insulation_thickness - self._insulation_conductivity = insulation_conductivity + self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature @property @@ -120,52 +114,12 @@ class EnergyStorageSystem: return self._diameter @property - def storage_material(self): + def layers(self) -> [Layer]: """ - Get the name of the storage system material - :return: string + Get construction layers + :return: [layer] """ - return self._storage_material - - @property - def storage_thickness(self): - """ - Get the thickness of the storage system in meters - :return: float - """ - return self._storage_thickness - - @property - def material_conductivity(self): - """ - Get the thermal conductivity of the storage system material in W/(m.K) - :return: float - """ - return self._material_conductivity - - @property - def insulation_material(self): - """ - Get the name of the material used as insulation - :return: string - """ - return self._insulation_material - - @property - def insulation_thickness(self): - """ - Get the thickness of the insulation used for the storage system in meters - :return: float - """ - return self._storage_thickness - - @property - def insulation_conductivity(self): - """ - Get the thickness of the insulation used for the storage system in W/(m.K) - :return: float - """ - return self._insulation_conductivity + return self._layers @property def maximum_operating_temperature(self): @@ -177,6 +131,9 @@ class EnergyStorageSystem: def to_dictionary(self): """Class content to dictionary""" + _layers = [] + for _layer in self.layers: + _layers.append(_layer.to_dictionary()) content = {'Storage component': {'model name': self.model_name, 'manufacturer': self.manufacturer, 'storage type': self.storage_type, @@ -187,12 +144,7 @@ class EnergyStorageSystem: 'depth of discharge': self.depth_of_discharge, 'self discharge rate': self.self_discharge_rate, 'diameter [m]': self.diameter, - 'storage material': self.storage_material, - 'storage thickness [m]': self.storage_thickness, - 'storage material thermal conductivity [W/m.K]': self.material_conductivity, - 'insulation material': self.insulation_material, - 'insulation thickness[m]': self.insulation_thickness, - 'insulation thermal conductivity [W/m.K]': self.insulation_conductivity, + 'layers': _layers, 'maximum operating temperature [Celsius]': self.maximum_operating_temperature } } -- 2.39.2 From d6ee3d6e6ba5f89d2c076288f9f4cc9f80168436 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Sun, 13 Aug 2023 20:44:14 -0400 Subject: [PATCH 012/101] All the attributes related to the material and insulation of the tank are substituted with one attribute called "layers" --- .../data_models/energy_systems/energy_storage_system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index c84e6706..9be2d17d 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -18,8 +18,8 @@ class EnergyStorageSystem: """ def __init__(self, model_name, manufacturer, storage_type, volume, rated_output_power, - nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, layers - , maximum_operating_temperature): + nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, layers, + maximum_operating_temperature): self._model_name = model_name self._manufacturer = manufacturer self._storage_type = storage_type -- 2.39.2 From 6ce82c52de487c9f1d51c305cdc04afaa50d28e3 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Sun, 13 Aug 2023 21:17:03 -0400 Subject: [PATCH 013/101] Class parameter_function.py is created --- .../energy_systems/parameter_function.py | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 hub/catalog_factories/data_models/energy_systems/parameter_function.py diff --git a/hub/catalog_factories/data_models/energy_systems/parameter_function.py b/hub/catalog_factories/data_models/energy_systems/parameter_function.py new file mode 100644 index 00000000..089812b5 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/parameter_function.py @@ -0,0 +1,53 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from __future__ import annotations +from typing import Union + + +class ParameterFunction: + """ + Parameter function class + """ + + def __init__(self, type, coefficients): + self._type = type + self._coefficients = coefficients + + @property + def type(self): + """ + The type of the fit function from the following + Linear =>>> y = a*x + b + Exponential =>>> y = a*(b**x) + Polynomial =>>> y = a*(x**2) + b*x + c + Power =>>> y = a*(x**b) + Second degree multivariable =>>> y = a*(x**2) + b*x + c*x*y + d*y + e*(y**2) + f + + Get the type of function from ['linear', 'exponential', 'polynomial', 'power', 'second degree multivariable'] + :return: string + """ + return self._type + + @property + def coefficients(self): + """ + Get the coefficients of the functions as list + :return: [coefficients] + """ + return self._coefficients + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Parameter Function': { + 'type': self.type, + 'coefficients': self.coefficients, + } + } + return content + -- 2.39.2 From acd7ad22666b22839ff5f073430e080ec530caa8 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Sun, 13 Aug 2023 22:53:43 -0400 Subject: [PATCH 014/101] distribution_system.py is modified --- .../energy_systems/distribution_system.py | 50 +++++++++++++------ .../data_models/energy_systems/system.py | 1 + 2 files changed, 37 insertions(+), 14 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index e24ba64c..8c1146fd 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -5,42 +5,46 @@ Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ +from hub.catalog_factories.data_models.construction.material import Material + class DistributionSystem: """ Distribution system class """ - def __init__(self, system_id, name, system_type, supply_temperature, distribution_consumption_fix_flow, - distribution_consumption_variable_flow, heat_losses): - self._system_id = system_id - self._name = name + def __init__(self, model, manufacturer, system_type, supply_temperature, distribution_consumption_fix_flow, + distribution_consumption_variable_flow, heat_losses, nominal_heat_output, medium): + self._model = model + self._manufacturer = manufacturer self._type = system_type self._supply_temperature = supply_temperature self._distribution_consumption_fix_flow = distribution_consumption_fix_flow self._distribution_consumption_variable_flow = distribution_consumption_variable_flow self._heat_losses = heat_losses + self._nominal_heat_output = nominal_heat_output + self._medium = medium @property - def id(self): + def model(self): """ - Get system id - :return: float + Get system model + :return: string """ - return self._system_id + return self._model @property - def name(self): + def manufacturer(self): """ Get name :return: string """ - return self._name + return self._manufacturer @property def type(self): """ - Get type from [air, water, refrigerant] + Get type from ['radiator', 'forced air convection', 'radiant floor heating'] :return: string """ return self._type @@ -78,17 +82,35 @@ class DistributionSystem: """ return self._heat_losses + @property + def nominal_heat_output(self): + """ + Get the nominal heat output of the heat distribution system in kW + :return: float + """ + return self._nominal_heat_output + + @property + def medium(self) -> Material: + """ + Get the heat transfer medium characteristics + :return: Material + """ + return self._medium + def to_dictionary(self): """Class content to dictionary""" content = { 'Layer': { - 'id': self.id, - 'name': self.name, + 'model': self.model, + 'manufacturer': self.manufacturer, 'type': self.type, 'supply temperature [Celsius]': self.supply_temperature, 'distribution consumption if fix flow over peak power [W/W]': self.distribution_consumption_fix_flow, 'distribution consumption if variable flow over peak power [J/J]': self.distribution_consumption_variable_flow, - 'heat losses per energy produced [J/J]': self.heat_losses + 'heat losses per energy produced [J/J]': self.heat_losses, + 'nominal_heat_output': self.nominal_heat_output, + 'heat transfer medium': self.medium } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index f8b47905..5dc59ddb 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -9,6 +9,7 @@ from typing import Union from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem -- 2.39.2 From 3feecac15d49f5dd940473b4fc0d2af9124e5139 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 14 Aug 2023 20:00:17 -0400 Subject: [PATCH 015/101] cogeneration ratio was removed from generation_system.py pv_generation_system.py is completed by adding an inheritance from the GenerationSystem class parameter_function.py is renamed to performance_curves.py and an attribute to get the list of target parameters is added to it system.py is modified by adding energy storage, performance curves, pv to it --- .../energy_systems/distribution_system.py | 48 +++------- .../energy_systems/emission_system.py | 60 ------------ .../energy_systems/energy_emission_system.py | 94 +++++++++++++++++++ .../energy_systems/generation_system.py | 40 +++----- .../energy_systems/pv_generation_system.py | 39 +++++--- .../data_models/energy_systems/system.py | 90 ++++++++++++------ .../energy_systems/montreal_custom_catalog.py | 40 ++++---- 7 files changed, 231 insertions(+), 180 deletions(-) delete mode 100644 hub/catalog_factories/data_models/energy_systems/emission_system.py create mode 100644 hub/catalog_factories/data_models/energy_systems/energy_emission_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index 8c1146fd..defdad4f 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -13,38 +13,36 @@ class DistributionSystem: Distribution system class """ - def __init__(self, model, manufacturer, system_type, supply_temperature, distribution_consumption_fix_flow, - distribution_consumption_variable_flow, heat_losses, nominal_heat_output, medium): - self._model = model - self._manufacturer = manufacturer + def __init__(self, system_id, name, system_type, supply_temperature, distribution_consumption_fix_flow, + distribution_consumption_variable_flow, heat_losses): + self._system_id = system_id + self._name = name self._type = system_type self._supply_temperature = supply_temperature self._distribution_consumption_fix_flow = distribution_consumption_fix_flow self._distribution_consumption_variable_flow = distribution_consumption_variable_flow self._heat_losses = heat_losses - self._nominal_heat_output = nominal_heat_output - self._medium = medium @property - def model(self): + def id(self): """ - Get system model - :return: string + Get system id + :return: float """ - return self._model + return self._system_id @property - def manufacturer(self): + def name(self): """ Get name :return: string """ - return self._manufacturer + return self._name @property def type(self): """ - Get type from ['radiator', 'forced air convection', 'radiant floor heating'] + Get type from [air, water, refrigerant] :return: string """ return self._type @@ -82,35 +80,17 @@ class DistributionSystem: """ return self._heat_losses - @property - def nominal_heat_output(self): - """ - Get the nominal heat output of the heat distribution system in kW - :return: float - """ - return self._nominal_heat_output - - @property - def medium(self) -> Material: - """ - Get the heat transfer medium characteristics - :return: Material - """ - return self._medium - def to_dictionary(self): """Class content to dictionary""" content = { 'Layer': { - 'model': self.model, - 'manufacturer': self.manufacturer, + 'id': self.id, + 'name': self.name, 'type': self.type, 'supply temperature [Celsius]': self.supply_temperature, 'distribution consumption if fix flow over peak power [W/W]': self.distribution_consumption_fix_flow, 'distribution consumption if variable flow over peak power [J/J]': self.distribution_consumption_variable_flow, - 'heat losses per energy produced [J/J]': self.heat_losses, - 'nominal_heat_output': self.nominal_heat_output, - 'heat transfer medium': self.medium + 'heat losses per energy produced [J/J]': self.heat_losses } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/emission_system.py b/hub/catalog_factories/data_models/energy_systems/emission_system.py deleted file mode 100644 index 5e9d2865..00000000 --- a/hub/catalog_factories/data_models/energy_systems/emission_system.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -Energy System catalog emission system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - - -class EmissionSystem: - """ - Emission system class - """ - def __init__(self, system_id, name, system_type, parasitic_energy_consumption): - - self._system_id = system_id - self._name = name - self._type = system_type - self._parasitic_energy_consumption = parasitic_energy_consumption - - @property - def id(self): - """ - Get system id - :return: float - """ - return self._system_id - - @property - def name(self): - """ - Get name - :return: string - """ - return self._name - - @property - def type(self): - """ - Get type - :return: string - """ - return self._type - - @property - def parasitic_energy_consumption(self): - """ - Get parasitic_energy_consumption in ratio (J/J) - :return: float - """ - return self._parasitic_energy_consumption - - def to_dictionary(self): - """Class content to dictionary""" - content = {'Layer': {'id': self.id, - 'name': self.name, - 'type': self.type, - 'parasitic energy consumption per energy produced [J/J]': self.parasitic_energy_consumption - } - } - return content diff --git a/hub/catalog_factories/data_models/energy_systems/energy_emission_system.py b/hub/catalog_factories/data_models/energy_systems/energy_emission_system.py new file mode 100644 index 00000000..171a8fda --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/energy_emission_system.py @@ -0,0 +1,94 @@ +""" +Energy System catalog emission system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from hub.catalog_factories.data_models.construction.material import Material + + +class EnergyEmissionSystem: + """ + Emission system class + """ + def __init__(self, model_name, manufacturer, system_type, parasitic_energy_consumption, nominal_heat_output, + nominal_efficiency, medium): + + self._system_id = model_name + self._name = manufacturer + self._type = system_type + self._parasitic_energy_consumption = parasitic_energy_consumption + self._nominal_heat_output = nominal_heat_output + self._nominal_efficiency = nominal_efficiency + self._medium = medium + + @property + def model_name(self): + """ + Get system id + :return: float + """ + return self._system_id + + @property + def manufacturer(self): + """ + Get name + :return: string + """ + return self._name + + @property + def type(self): + """ + Get type + :return: string + """ + return self._type + + @property + def parasitic_energy_consumption(self): + """ + Get parasitic_energy_consumption in ratio (J/J) + :return: float + """ + return self._parasitic_energy_consumption + + @property + def nominal_heat_output(self): + """ + Get the nominal heat output of the emission system in kW + :return: float + """ + return self._nominal_heat_output + + @property + def nominal_efficiency(self): + """ + Get the nominal efficiency of the emission system + :return: float + """ + return self._nominal_efficiency + + @property + def medium(self) -> Material: + """ + Get the heat transfer characteristics of the heat transfer medium + :return: Material + """ + return self._medium + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Layer': {'id': self.model_name, + 'name': self.manufacturer, + 'type': self.type, + 'parasitic energy consumption per energy produced [J/J]': self.parasitic_energy_consumption, + 'nominal heat output [kW]': self.nominal_heat_output, + 'nominal efficiency': self.nominal_efficiency, + 'heat transfer medium': self.medium + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index 5179eb8d..f0ce35ab 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -17,7 +17,7 @@ class GenerationSystem: def __init__(self, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, modulation_range, source_types, heat_efficiency, cooling_efficiency, electricity_efficiency, source_temperature, - source_mass_flow, nominal_electricity_output, cogeneration_ratio): + source_mass_flow, nominal_electricity_output): self._model_name = model_name self._manufacturer = manufacturer self._system_type = system_type @@ -31,7 +31,6 @@ class GenerationSystem: self._source_temperature = source_temperature self._source_mass_flow = source_mass_flow self._nominal_electricity_output = nominal_electricity_output - self._cogeneration_ratio = cogeneration_ratio @property def model_name(self): @@ -137,30 +136,21 @@ class GenerationSystem: """ return self._nominal_electricity_output - @property - def cogeneration_ratio(self): - """ - Get the ratio between the heat output and electricity output of CHP units - :return: float - """ - return self._cogeneration_ratio - def to_dictionary(self): """Class content to dictionary""" - content = {'Heat Generation component': {'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'type': self.system_type, - 'fuel type': self.fuel_type, - 'nominal thermal output': self.nominal_thermal_output, - 'modulation_range': self.modulation_range, - 'source types': self.source_types, - 'source temperature [Celsius]': self.source_temperature, - 'source mass flow [kg/s]': self.source_mass_flow, - 'heat efficiency': self.heat_efficiency, - 'cooling efficiency': self.cooling_efficiency, - 'electricity efficiency': self.electricity_efficiency, - 'nominal power output [kW]': self.nominal_electricity_output, - 'cogeneration ratio': self.cogeneration_ratio, - } + content = {'Energy Generation component': {'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'nominal thermal output': self.nominal_thermal_output, + 'modulation_range': self.modulation_range, + 'source types': self.source_types, + 'source temperature [Celsius]': self.source_temperature, + 'source mass flow [kg/s]': self.source_mass_flow, + 'heat efficiency': self.heat_efficiency, + 'cooling efficiency': self.cooling_efficiency, + 'electricity efficiency': self.electricity_efficiency, + 'nominal power output [kW]': self.nominal_electricity_output, + } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 78bd2bd6..a258b4b9 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -8,15 +8,22 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from __future__ import annotations from typing import Union +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem -class PvGenerationSystem: +class PvGenerationSystem(GenerationSystem): """ Electricity Generation system class """ def __init__(self, nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, - standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height): + standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height, + model_name, manufacturer, electricity_efficiency, nominal_electricity_output): + super(GenerationSystem, self).__init__(model_name=model_name, manufacturer=manufacturer, system_type='pv', + fuel_type='renewable', nominal_thermal_output=None, modulation_range=None, + source_types=None, heat_efficiency=None, cooling_efficiency=None, + electricity_efficiency=electricity_efficiency, source_temperature=None, + source_mass_flow=None, nominal_electricity_output=nominal_electricity_output) self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation @@ -83,16 +90,20 @@ class PvGenerationSystem: def to_dictionary(self): """Class content to dictionary""" - content = {'Electricity Generation component': { - 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, - 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, - 'nominal radiation [W/m2]': self.nominal_radiation, - 'standard test condition cell temperature [Celsius]': - self.standard_test_condition_cell_temperature, - 'standard test condition maximum power [kW]': - self.standard_test_condition_maximum_power, - 'width': self.width, - 'height': self.height, - } - } + content = {'Photovoltaic Module': { + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'electricity efficiency': self.electricity_efficiency, + 'nominal power output [kW]': self.nominal_electricity_output, + 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, + 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, + 'nominal radiation [W/m2]': self.nominal_radiation, + 'standard test condition cell temperature [Celsius]': self.standard_test_condition_cell_temperature, + 'standard test condition maximum power [kW]': self.standard_test_condition_maximum_power, + 'width': self.width, + 'height': self.height, + } + } return content diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 5dc59ddb..b22251f8 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -1,41 +1,47 @@ """ -Energy System catalog equipment +Energy System catalog heat generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from typing import Union +from typing import Union, List from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem +from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves +from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem class System: """ System class """ + def __init__(self, lod, system_id, - name, + system_configuration, demand_types, - heat_generation_system, - electricity_generation_system, + generation_systems, + pv_generation_system, distribution_system, - emission_system): - + emission_system, + energy_storage_systems, + performance_curves): self._lod = lod self._system_id = system_id - self._name = name + self._system_configuration = system_configuration self._demand_types = demand_types - self._heat_generation_system = heat_generation_system - self._electricity_generation_system = electricity_generation_system self._distribution_system = distribution_system self._emission_system = emission_system + self._generation_systems = generation_systems + self._pv_generation_system = pv_generation_system + self._energy_storage_systems = energy_storage_systems + self._performance_curves = performance_curves @property def lod(self): @@ -54,36 +60,37 @@ class System: return self._system_id @property - def name(self): + def system_configuration(self): """ - Get name + Get the system configuration from ['hp_tes', 'hp_boiler_tes', 'pv_hp', 'pv_battery', 'pv', 'pv_hp_tes', + 'pv_hp_battery_tes'] :return: string """ - return self._name + return self._system_configuration @property def demand_types(self): """ - Get demand able to cover from [heating, cooling, domestic_hot_water, electricity] + Get demand able to cover from ['heating', 'cooling', 'domestic_hot_water', 'electricity'] :return: [string] """ return self._demand_types @property - def heat_generation_system(self) -> GenerationSystem: + def generation_systems(self) -> List[GenerationSystem]: """ - Get heat generation system - :return: HeatGenerationSystem + Get generation system + :return: GenerationSystem """ - return self._heat_generation_system + return self._generation_systems @property - def electricity_generation_system(self) -> PvGenerationSystem: + def pv_generation_system(self) -> Union[None, PvGenerationSystem]: """ - Get electricity generation system + Get pv generation system :return: ElectricityGenerationSystem """ - return self._electricity_generation_system + return self._pv_generation_system @property def distribution_system(self) -> Union[None, DistributionSystem]: @@ -94,29 +101,58 @@ class System: return self._distribution_system @property - def emission_system(self) -> Union[None, EmissionSystem]: + def emission_system(self) -> Union[None, EnergyEmissionSystem]: """ Get emission system :return: EmissionSystem """ return self._emission_system + @property + def energy_storage_system(self) -> Union[None, List[EnergyStorageSystem]]: + """ + Get energy storage system + :return: EnergyStorageSystem + """ + return self._energy_storage_systems + + @property + def performance_curves(self) -> Union[None, List[PerformanceCurves]]: + """ + Get the list of all performance curves associated with components + :return: PerformanceCurves + """ + return self._performance_curves + def to_dictionary(self): """Class content to dictionary""" + _generation_systems = [] + for _generation in self.generation_systems: + _generation_systems.append(_generation.to_dictionary()) + _pv_system = None + if self.pv_generation_system is not None: + _pv_system = self.pv_generation_system.to_dictionary() _distribution_system = None if self.distribution_system is not None: _distribution_system = self.distribution_system.to_dictionary() _emission_system = None if self.emission_system is not None: _emission_system = self.emission_system.to_dictionary() + _storage_system = [_storage.to_dictionary() for _storage in + self.energy_storage_system] if self.energy_storage_system is not None else None + _performance_curves = [_curve.to_dictionary() for _curve in + self.performance_curves] if self.performance_curves is not None else None + content = {'Layer': {'id': self.id, - 'name': self.name, + 'name': self.system_configuration, 'level of detail': self.lod, 'demand types': self.demand_types, - 'heat generation system': self.heat_generation_system.to_dictionary(), - 'electricity generation system': self.electricity_generation_system.to_dictionary(), + 'Generation system(s)': _generation_systems, + 'electricity generation system': _pv_system, 'distribution system': _distribution_system, - 'emission system': _emission_system + 'emission system': _emission_system, + 'energy storage system': _storage_system, + 'performance curves': _performance_curves } } return content diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 91c8d4e4..bea78b0d 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -12,7 +12,7 @@ from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem +from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem from hub.catalog_factories.data_models.energy_systems.archetype import Archetype @@ -114,10 +114,10 @@ class MontrealCustomCatalog(Catalog): if 'parasitic_consumption' in equipment: parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100 - emission_system = EmissionSystem(equipment_id, - name, - equipment_type, - parasitic_consumption) + emission_system = EnergyEmissionSystem(equipment_id, + name, + equipment_type, + parasitic_consumption) _equipments.append(emission_system) return _equipments @@ -177,32 +177,32 @@ class MontrealCustomCatalog(Catalog): _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [], 'emission_equipments':[]} for archetype in self._content.archetypes: - _names['archetypes'].append(archetype.name) + _names['archetypes'].append(archetype.manufacturer) for system in self._content.systems: - _names['systems'].append(system.name) + _names['systems'].append(system.manufacturer) for equipment in self._content.generation_equipments: - _names['generation_equipments'].append(equipment.name) + _names['generation_equipments'].append(equipment.manufacturer) for equipment in self._content.distribution_equipments: - _names['distribution_equipments'].append(equipment.name) + _names['distribution_equipments'].append(equipment.manufacturer) for equipment in self._content.emission_equipments: - _names['emission_equipments'].append(equipment.name) + _names['emission_equipments'].append(equipment.manufacturer) else: _names = {category: []} if category.lower() == 'archetypes': for archetype in self._content.archetypes: - _names[category].append(archetype.name) + _names[category].append(archetype.manufacturer) elif category.lower() == 'systems': for system in self._content.systems: - _names[category].append(system.name) + _names[category].append(system.manufacturer) elif category.lower() == 'generation_equipments': for system in self._content.generation_equipments: - _names[category].append(system.name) + _names[category].append(system.manufacturer) elif category.lower() == 'distribution_equipments': for system in self._content.distribution_equipments: - _names[category].append(system.name) + _names[category].append(system.manufacturer) elif category.lower() == 'emission_equipments': for system in self._content.emission_equipments: - _names[category].append(system.name) + _names[category].append(system.manufacturer) else: raise ValueError(f'Unknown category [{category}]') return _names @@ -232,18 +232,18 @@ class MontrealCustomCatalog(Catalog): :parm: entry name """ for entry in self._content.archetypes: - if entry.name.lower() == name.lower(): + if entry.manufacturer.lower() == name.lower(): return entry for entry in self._content.systems: - if entry.name.lower() == name.lower(): + if entry.manufacturer.lower() == name.lower(): return entry for entry in self._content.generation_equipments: - if entry.name.lower() == name.lower(): + if entry.manufacturer.lower() == name.lower(): return entry for entry in self._content.distribution_equipments: - if entry.name.lower() == name.lower(): + if entry.manufacturer.lower() == name.lower(): return entry for entry in self._content.emission_equipments: - if entry.name.lower() == name.lower(): + if entry.manufacturer.lower() == name.lower(): return entry raise IndexError(f"{name} doesn't exists in the catalog") -- 2.39.2 From ccdc7a454d00271bb3599343d12a0069efef715c Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 14 Aug 2023 20:26:37 -0400 Subject: [PATCH 016/101] small changes to performance_curves.py and distribution_system.py created the montreal_custom_catalog_new.py uploaded my xml file --- .../energy_systems/distribution_system.py | 1 + ...eter_function.py => performance_curves.py} | 23 +- .../montreal_custom_catalog_new.py | 251 ++++++++++++++++++ .../energy_systems/Tools4CitiesESMF.encomp | 43 +++ 4 files changed, 311 insertions(+), 7 deletions(-) rename hub/catalog_factories/data_models/energy_systems/{parameter_function.py => performance_curves.py} (74%) create mode 100644 hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py create mode 100644 hub/data/energy_systems/Tools4CitiesESMF.encomp diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index defdad4f..1e4aa96f 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -3,6 +3,7 @@ Energy System catalog distribution system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from hub.catalog_factories.data_models.construction.material import Material diff --git a/hub/catalog_factories/data_models/energy_systems/parameter_function.py b/hub/catalog_factories/data_models/energy_systems/performance_curves.py similarity index 74% rename from hub/catalog_factories/data_models/energy_systems/parameter_function.py rename to hub/catalog_factories/data_models/energy_systems/performance_curves.py index 089812b5..44301bec 100644 --- a/hub/catalog_factories/data_models/energy_systems/parameter_function.py +++ b/hub/catalog_factories/data_models/energy_systems/performance_curves.py @@ -10,13 +10,14 @@ from __future__ import annotations from typing import Union -class ParameterFunction: +class PerformanceCurves: """ Parameter function class """ - def __init__(self, type, coefficients): + def __init__(self, type, parameters, coefficients): self._type = type + self._parameters = parameters self._coefficients = coefficients @property @@ -34,6 +35,14 @@ class ParameterFunction: """ return self._type + @property + def parameters(self): + """ + Get the list of parameters involved in fitting process as ['y', 'x', 'z'] + :return: string + """ + return self._parameters + @property def coefficients(self): """ @@ -45,9 +54,9 @@ class ParameterFunction: def to_dictionary(self): """Class content to dictionary""" content = {'Parameter Function': { - 'type': self.type, - 'coefficients': self.coefficients, - } - } + 'type': self.type, + 'parameters': self.parameters, + 'coefficients': self.coefficients, + } + } return content - diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py new file mode 100644 index 00000000..e24dde48 --- /dev/null +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py @@ -0,0 +1,251 @@ +""" +Montreal custom energy systems catalog module +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2022 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from ast import literal_eval +import xmltodict +from hub.catalog_factories.catalog import Catalog +from hub.catalog_factories.data_models.energy_systems.system import System +from hub.catalog_factories.data_models.energy_systems.content import Content +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem +from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem +from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves +from hub.catalog_factories.data_models.energy_systems.archetype import Archetype + + +class MontrealCustomCatalog(Catalog): + """ + Montreal custom energy systems catalog class + """ + def __init__(self, path): + path = str(path / 'montreal_custom_systems.xml') + with open(path, 'r', encoding='utf-8') as xml: + self._archetypes = xmltodict.parse(xml.read(), force_list=('system', 'system_cluster', 'equipment', + 'demand', 'system_id')) + + self._lod = float(self._archetypes['catalog']['@lod']) + + self._catalog_generation_equipments = self._load_generation_equipments() + self._catalog_distribution_equipments = self._load_distribution_equipments() + self._catalog_emission_equipments = self._load_emission_equipments() + self._catalog_systems = self._load_systems() + self._catalog_archetypes = self._load_archetypes() + + # store the full catalog data model in self._content + self._content = Content(self._catalog_archetypes, + self._catalog_systems, + self._catalog_generation_equipments, + self._catalog_distribution_equipments, + self._catalog_emission_equipments) + + def _load_generation_equipments(self): + _equipments = [] + equipments = self._archetypes['catalog']['generation_equipments']['equipment'] + for equipment in equipments: + equipment_id = float(equipment['@id']) + equipment_type = equipment['@type'] + fuel_type = equipment['@fuel_type'] + name = equipment['name'] + heating_efficiency = None + if 'heating_efficiency' in equipment: + heating_efficiency = float(equipment['heating_efficiency']) + cooling_efficiency = None + if 'cooling_efficiency' in equipment: + cooling_efficiency = float(equipment['cooling_efficiency']) + electricity_efficiency = None + if 'electrical_efficiency' in equipment: + electricity_efficiency = float(equipment['electrical_efficiency']) + storage = literal_eval(equipment['storage'].capitalize()) + generation_system = GenerationSystem(equipment_id, + name, + equipment_type, + fuel_type, + None, + heating_efficiency, + cooling_efficiency, + electricity_efficiency, + None, + None, + storage, + None) + + _equipments.append(generation_system) + return _equipments + + def _load_distribution_equipments(self): + _equipments = [] + equipments = self._archetypes['catalog']['distribution_equipments']['equipment'] + for equipment in equipments: + equipment_id = float(equipment['@id']) + equipment_type = equipment['@type'] + name = equipment['name'] + distribution_heat_losses = None + if 'distribution_heat_losses' in equipment: + distribution_heat_losses = float(equipment['distribution_heat_losses']['#text']) / 100 + distribution_consumption_fix_flow = None + if 'distribution_consumption_fix_flow' in equipment: + distribution_consumption_fix_flow = float(equipment['distribution_consumption_fix_flow']['#text']) / 100 + distribution_consumption_variable_flow = None + if 'distribution_consumption_variable_flow' in equipment: + distribution_consumption_variable_flow = float(equipment['distribution_consumption_variable_flow']['#text']) / 100 + + distribution_system = DistributionSystem(equipment_id, + name, + equipment_type, + None, + distribution_consumption_fix_flow, + distribution_consumption_variable_flow, + distribution_heat_losses) + + _equipments.append(distribution_system) + return _equipments + + def _load_emission_equipments(self): + _equipments = [] + equipments = self._archetypes['catalog']['dissipation_equipments']['equipment'] + for equipment in equipments: + equipment_id = float(equipment['@id']) + equipment_type = equipment['@type'] + name = equipment['name'] + parasitic_consumption = None + if 'parasitic_consumption' in equipment: + parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100 + + emission_system = EnergyEmissionSystem(equipment_id, + name, + equipment_type, + parasitic_consumption) + + _equipments.append(emission_system) + return _equipments + + def _load_systems(self): + _catalog_systems = [] + systems = self._archetypes['catalog']['systems']['system'] + for system in systems: + system_id = float(system['@id']) + name = system['name'] + demands = system['demands']['demand'] + generation_equipment = system['equipments']['generation_id'] + _generation_equipment = None + for equipment_archetype in self._catalog_generation_equipments: + if int(equipment_archetype.id) == int(generation_equipment): + _generation_equipment = equipment_archetype + distribution_equipment = system['equipments']['distribution_id'] + _distribution_equipment = None + for equipment_archetype in self._catalog_distribution_equipments: + if int(equipment_archetype.id) == int(distribution_equipment): + _distribution_equipment = equipment_archetype + emission_equipment = system['equipments']['dissipation_id'] + _emission_equipment = None + for equipment_archetype in self._catalog_emission_equipments: + if int(equipment_archetype.id) == int(emission_equipment): + _emission_equipment = equipment_archetype + + _catalog_systems.append(System(self._lod, + system_id, + name, + demands, + _generation_equipment, + _distribution_equipment, + _emission_equipment)) + return _catalog_systems + + def _load_archetypes(self): + _catalog_archetypes = [] + system_clusters = self._archetypes['catalog']['system_clusters']['system_cluster'] + for system_cluster in system_clusters: + name = system_cluster['@name'] + systems = system_cluster['systems']['system_id'] + _systems = [] + for system in systems: + for system_archetype in self._catalog_systems: + if int(system_archetype.id) == int(system): + _systems.append(system_archetype) + _catalog_archetypes.append(Archetype(self._lod, name, _systems)) + return _catalog_archetypes + + def names(self, category=None): + """ + Get the catalog elements names + :parm: optional category filter + """ + if category is None: + _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [], + 'emission_equipments':[]} + for archetype in self._content.archetypes: + _names['archetypes'].append(archetype.manufacturer) + for system in self._content.systems: + _names['systems'].append(system.manufacturer) + for equipment in self._content.generation_equipments: + _names['generation_equipments'].append(equipment.manufacturer) + for equipment in self._content.distribution_equipments: + _names['distribution_equipments'].append(equipment.manufacturer) + for equipment in self._content.emission_equipments: + _names['emission_equipments'].append(equipment.manufacturer) + else: + _names = {category: []} + if category.lower() == 'archetypes': + for archetype in self._content.archetypes: + _names[category].append(archetype.manufacturer) + elif category.lower() == 'systems': + for system in self._content.systems: + _names[category].append(system.manufacturer) + elif category.lower() == 'generation_equipments': + for system in self._content.generation_equipments: + _names[category].append(system.manufacturer) + elif category.lower() == 'distribution_equipments': + for system in self._content.distribution_equipments: + _names[category].append(system.manufacturer) + elif category.lower() == 'emission_equipments': + for system in self._content.emission_equipments: + _names[category].append(system.manufacturer) + else: + raise ValueError(f'Unknown category [{category}]') + return _names + + def entries(self, category=None): + """ + Get the catalog elements + :parm: optional category filter + """ + if category is None: + return self._content + if category.lower() == 'archetypes': + return self._content.archetypes + if category.lower() == 'systems': + return self._content.systems + if category.lower() == 'generation_equipments': + return self._content.generation_equipments + if category.lower() == 'distribution_equipments': + return self._content.distribution_equipments + if category.lower() == 'emission_equipments': + return self._content.emission_equipments + raise ValueError(f'Unknown category [{category}]') + + def get_entry(self, name): + """ + Get one catalog element by names + :parm: entry name + """ + for entry in self._content.archetypes: + if entry.manufacturer.lower() == name.lower(): + return entry + for entry in self._content.systems: + if entry.manufacturer.lower() == name.lower(): + return entry + for entry in self._content.generation_equipments: + if entry.manufacturer.lower() == name.lower(): + return entry + for entry in self._content.distribution_equipments: + if entry.manufacturer.lower() == name.lower(): + return entry + for entry in self._content.emission_equipments: + if entry.manufacturer.lower() == name.lower(): + return entry + raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/data/energy_systems/Tools4CitiesESMF.encomp b/hub/data/energy_systems/Tools4CitiesESMF.encomp new file mode 100644 index 00000000..26344db0 --- /dev/null +++ b/hub/data/energy_systems/Tools4CitiesESMF.encomp @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.39.2 From 21ca1e1e28f35d6bfd8823c8c2a8e5dc6d794efd Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 15 Aug 2023 14:49:17 -0400 Subject: [PATCH 017/101] modified energy_storage_system.py and energy_system_catalog.py generation_system.py The xml data is modified --- .../energy_systems/energy_storage_system.py | 10 +-- .../energy_systems/generation_system.py | 87 +++++++++++++++---- ...atalog_new.py => energy_system_catalog.py} | 4 +- .../energy_systems/Tools4CitiesESMF.encomp | 46 +++++----- 4 files changed, 101 insertions(+), 46 deletions(-) rename hub/catalog_factories/energy_systems/{montreal_custom_catalog_new.py => energy_system_catalog.py} (99%) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 9be2d17d..52812ca1 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -18,7 +18,7 @@ class EnergyStorageSystem: """ def __init__(self, model_name, manufacturer, storage_type, volume, rated_output_power, - nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, diameter, layers, + nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, height, layers, maximum_operating_temperature): self._model_name = model_name self._manufacturer = manufacturer @@ -29,7 +29,7 @@ class EnergyStorageSystem: self._battery_voltage = battery_voltage self._depth_of_discharge = depth_of_discharge self._self_discharge_rate = self_discharge_rate - self._diameter = diameter + self._height = height self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature @@ -106,12 +106,12 @@ class EnergyStorageSystem: return self._self_discharge_rate @property - def diameter(self): + def height(self): """ Get the diameter of the storage system in meters :return: float """ - return self._diameter + return self._height @property def layers(self) -> [Layer]: @@ -143,7 +143,7 @@ class EnergyStorageSystem: 'battery voltage [V]': self.battery_voltage, 'depth of discharge': self.depth_of_discharge, 'self discharge rate': self.self_discharge_rate, - 'diameter [m]': self.diameter, + 'height [m]': self.height, 'layers': _layers, 'maximum operating temperature [Celsius]': self.maximum_operating_temperature } diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index f0ce35ab..11560500 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -16,8 +16,10 @@ class GenerationSystem: """ def __init__(self, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, modulation_range, - source_types, heat_efficiency, cooling_efficiency, electricity_efficiency, source_temperature, - source_mass_flow, nominal_electricity_output): + source_types, supply_medium, heat_efficiency, cooling_efficiency, electricity_efficiency, + source_temperature, source_mass_flow, nominal_electricity_output, maximum_heating_supply_temperature, + minimum_heating_supply_temperature, maximum_cooling_supply_temperature, + minimum_cooling_supply_temperature): self._model_name = model_name self._manufacturer = manufacturer self._system_type = system_type @@ -25,12 +27,17 @@ class GenerationSystem: self._nominal_thermal_output = nominal_thermal_output self._modulation_range = modulation_range self._source_types = source_types + self._supply_medium = supply_medium self._heat_efficiency = heat_efficiency self._cooling_efficiency = cooling_efficiency self._electricity_efficiency = electricity_efficiency self._source_temperature = source_temperature self._source_mass_flow = source_mass_flow self._nominal_electricity_output = nominal_electricity_output + self._maximum_heating_supply_temperature = maximum_heating_supply_temperature + self._minimum_heating_supply_temperature = minimum_heating_supply_temperature + self._maximum_cooling_supply_temperature = maximum_cooling_supply_temperature + self._minimum_cooling_supply_temperature = minimum_cooling_supply_temperature @property def model_name(self): @@ -88,6 +95,14 @@ class GenerationSystem: """ return self._source_types + @property + def supply_medium(self): + """ + Get the supply medium from ['air', 'water'] + :return: string + """ + return self._supply_medium + @property def heat_efficiency(self): """ @@ -136,21 +151,59 @@ class GenerationSystem: """ return self._nominal_electricity_output + @property + def maximum_heating_supply_temperature(self): + """ + Get the maximum heating supply temperature in degree Celsius + :return: float + """ + return self._minimum_heating_supply_temperature + + @property + def minimum_heating_supply_temperature(self): + """ + Get the minimum heating supply temperature in degree Celsius + :return: float + """ + return self._minimum_heating_supply_temperature + + @property + def maximum_cooling_supply_temperature(self): + """ + Get the maximum cooling supply temperature in degree Celsius + :return: float + """ + return self._maximum_cooling_supply_temperature + + @property + def minimum_cooling_supply_temperature(self): + """ + Get the minimum cooling supply temperature in degree Celsius + :return: float + """ + return self._minimum_cooling_supply_temperature + def to_dictionary(self): """Class content to dictionary""" - content = {'Energy Generation component': {'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'type': self.system_type, - 'fuel type': self.fuel_type, - 'nominal thermal output': self.nominal_thermal_output, - 'modulation_range': self.modulation_range, - 'source types': self.source_types, - 'source temperature [Celsius]': self.source_temperature, - 'source mass flow [kg/s]': self.source_mass_flow, - 'heat efficiency': self.heat_efficiency, - 'cooling efficiency': self.cooling_efficiency, - 'electricity efficiency': self.electricity_efficiency, - 'nominal power output [kW]': self.nominal_electricity_output, - } - } + content = {'Energy Generation component': { + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'nominal thermal output': self.nominal_thermal_output, + 'modulation_range': self.modulation_range, + 'source types': self.source_types, + 'supply medium': self.supply_medium, + 'source temperature [Celsius]': self.source_temperature, + 'source mass flow [kg/s]': self.source_mass_flow, + 'heat efficiency': self.heat_efficiency, + 'cooling efficiency': self.cooling_efficiency, + 'electricity efficiency': self.electricity_efficiency, + 'nominal power output [kW]': self.nominal_electricity_output, + 'maximum heating supply temperature [Celsius]': self.maximum_heating_supply_temperature, + 'minimum heating supply temperature [Celsius]': self.minimum_heating_supply_temperature, + 'maximum cooling supply temperature [Celsius]': self.maximum_cooling_supply_temperature, + 'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature + } + } return content diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py b/hub/catalog_factories/energy_systems/energy_system_catalog.py similarity index 99% rename from hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py rename to hub/catalog_factories/energy_systems/energy_system_catalog.py index e24dde48..564b5d40 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog_new.py +++ b/hub/catalog_factories/energy_systems/energy_system_catalog.py @@ -1,5 +1,5 @@ """ -Montreal custom energy systems catalog module +Energy system catalog SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca @@ -18,7 +18,7 @@ from hub.catalog_factories.data_models.energy_systems.performance_curves import from hub.catalog_factories.data_models.energy_systems.archetype import Archetype -class MontrealCustomCatalog(Catalog): +class EnergySystem(Catalog): """ Montreal custom energy systems catalog class """ diff --git a/hub/data/energy_systems/Tools4CitiesESMF.encomp b/hub/data/energy_systems/Tools4CitiesESMF.encomp index 26344db0..06c9e622 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.encomp +++ b/hub/data/energy_systems/Tools4CitiesESMF.encomp @@ -2,42 +2,44 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - - - - - + + + + + + + - + - + -- 2.39.2 From 16618fb54a86ed0973384f8cd8fcec4f31f1608a Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 15 Aug 2023 16:27:05 -0400 Subject: [PATCH 018/101] started north america energy system catalog importer. NOT WORKING --- .../data_models/energy_systems/content.py | 10 +- .../energy_systems/energy_system_catalog.py | 251 ------------------ .../north_america_energy_system_catalog.py | 109 ++++++++ .../energy_systems_catalog_factory.py | 8 + ...CitiesESMF.encomp => Tools4CitiesESMF.xml} | 12 +- tests/test_systems_catalog.py | 2 + 6 files changed, 134 insertions(+), 258 deletions(-) delete mode 100644 hub/catalog_factories/energy_systems/energy_system_catalog.py create mode 100644 hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py rename hub/data/energy_systems/{Tools4CitiesESMF.encomp => Tools4CitiesESMF.xml} (88%) diff --git a/hub/catalog_factories/data_models/energy_systems/content.py b/hub/catalog_factories/data_models/energy_systems/content.py index 8042a73d..d3fd9068 100644 --- a/hub/catalog_factories/data_models/energy_systems/content.py +++ b/hub/catalog_factories/data_models/energy_systems/content.py @@ -10,12 +10,13 @@ class Content: """ Content class """ - def __init__(self, archetypes, systems, generations, distributions, emissions): + def __init__(self, archetypes, systems, generations, distributions, emissions, storages): self._archetypes = archetypes self._systems = systems self._generations = generations self._distributions = distributions self._emissions = emissions + self._storages = storages @property def archetypes(self): @@ -52,6 +53,13 @@ class Content: """ return self._emissions + @property + def storage_equipments(self): + """ + All storage equipments in the catalog + """ + return self._storages + def to_dictionary(self): """Class content to dictionary""" _archetypes = [] diff --git a/hub/catalog_factories/energy_systems/energy_system_catalog.py b/hub/catalog_factories/energy_systems/energy_system_catalog.py deleted file mode 100644 index 564b5d40..00000000 --- a/hub/catalog_factories/energy_systems/energy_system_catalog.py +++ /dev/null @@ -1,251 +0,0 @@ -""" -Energy system catalog -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from ast import literal_eval -import xmltodict -from hub.catalog_factories.catalog import Catalog -from hub.catalog_factories.data_models.energy_systems.system import System -from hub.catalog_factories.data_models.energy_systems.content import Content -from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem -from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem -from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves -from hub.catalog_factories.data_models.energy_systems.archetype import Archetype - - -class EnergySystem(Catalog): - """ - Montreal custom energy systems catalog class - """ - def __init__(self, path): - path = str(path / 'montreal_custom_systems.xml') - with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read(), force_list=('system', 'system_cluster', 'equipment', - 'demand', 'system_id')) - - self._lod = float(self._archetypes['catalog']['@lod']) - - self._catalog_generation_equipments = self._load_generation_equipments() - self._catalog_distribution_equipments = self._load_distribution_equipments() - self._catalog_emission_equipments = self._load_emission_equipments() - self._catalog_systems = self._load_systems() - self._catalog_archetypes = self._load_archetypes() - - # store the full catalog data model in self._content - self._content = Content(self._catalog_archetypes, - self._catalog_systems, - self._catalog_generation_equipments, - self._catalog_distribution_equipments, - self._catalog_emission_equipments) - - def _load_generation_equipments(self): - _equipments = [] - equipments = self._archetypes['catalog']['generation_equipments']['equipment'] - for equipment in equipments: - equipment_id = float(equipment['@id']) - equipment_type = equipment['@type'] - fuel_type = equipment['@fuel_type'] - name = equipment['name'] - heating_efficiency = None - if 'heating_efficiency' in equipment: - heating_efficiency = float(equipment['heating_efficiency']) - cooling_efficiency = None - if 'cooling_efficiency' in equipment: - cooling_efficiency = float(equipment['cooling_efficiency']) - electricity_efficiency = None - if 'electrical_efficiency' in equipment: - electricity_efficiency = float(equipment['electrical_efficiency']) - storage = literal_eval(equipment['storage'].capitalize()) - generation_system = GenerationSystem(equipment_id, - name, - equipment_type, - fuel_type, - None, - heating_efficiency, - cooling_efficiency, - electricity_efficiency, - None, - None, - storage, - None) - - _equipments.append(generation_system) - return _equipments - - def _load_distribution_equipments(self): - _equipments = [] - equipments = self._archetypes['catalog']['distribution_equipments']['equipment'] - for equipment in equipments: - equipment_id = float(equipment['@id']) - equipment_type = equipment['@type'] - name = equipment['name'] - distribution_heat_losses = None - if 'distribution_heat_losses' in equipment: - distribution_heat_losses = float(equipment['distribution_heat_losses']['#text']) / 100 - distribution_consumption_fix_flow = None - if 'distribution_consumption_fix_flow' in equipment: - distribution_consumption_fix_flow = float(equipment['distribution_consumption_fix_flow']['#text']) / 100 - distribution_consumption_variable_flow = None - if 'distribution_consumption_variable_flow' in equipment: - distribution_consumption_variable_flow = float(equipment['distribution_consumption_variable_flow']['#text']) / 100 - - distribution_system = DistributionSystem(equipment_id, - name, - equipment_type, - None, - distribution_consumption_fix_flow, - distribution_consumption_variable_flow, - distribution_heat_losses) - - _equipments.append(distribution_system) - return _equipments - - def _load_emission_equipments(self): - _equipments = [] - equipments = self._archetypes['catalog']['dissipation_equipments']['equipment'] - for equipment in equipments: - equipment_id = float(equipment['@id']) - equipment_type = equipment['@type'] - name = equipment['name'] - parasitic_consumption = None - if 'parasitic_consumption' in equipment: - parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100 - - emission_system = EnergyEmissionSystem(equipment_id, - name, - equipment_type, - parasitic_consumption) - - _equipments.append(emission_system) - return _equipments - - def _load_systems(self): - _catalog_systems = [] - systems = self._archetypes['catalog']['systems']['system'] - for system in systems: - system_id = float(system['@id']) - name = system['name'] - demands = system['demands']['demand'] - generation_equipment = system['equipments']['generation_id'] - _generation_equipment = None - for equipment_archetype in self._catalog_generation_equipments: - if int(equipment_archetype.id) == int(generation_equipment): - _generation_equipment = equipment_archetype - distribution_equipment = system['equipments']['distribution_id'] - _distribution_equipment = None - for equipment_archetype in self._catalog_distribution_equipments: - if int(equipment_archetype.id) == int(distribution_equipment): - _distribution_equipment = equipment_archetype - emission_equipment = system['equipments']['dissipation_id'] - _emission_equipment = None - for equipment_archetype in self._catalog_emission_equipments: - if int(equipment_archetype.id) == int(emission_equipment): - _emission_equipment = equipment_archetype - - _catalog_systems.append(System(self._lod, - system_id, - name, - demands, - _generation_equipment, - _distribution_equipment, - _emission_equipment)) - return _catalog_systems - - def _load_archetypes(self): - _catalog_archetypes = [] - system_clusters = self._archetypes['catalog']['system_clusters']['system_cluster'] - for system_cluster in system_clusters: - name = system_cluster['@name'] - systems = system_cluster['systems']['system_id'] - _systems = [] - for system in systems: - for system_archetype in self._catalog_systems: - if int(system_archetype.id) == int(system): - _systems.append(system_archetype) - _catalog_archetypes.append(Archetype(self._lod, name, _systems)) - return _catalog_archetypes - - def names(self, category=None): - """ - Get the catalog elements names - :parm: optional category filter - """ - if category is None: - _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [], - 'emission_equipments':[]} - for archetype in self._content.archetypes: - _names['archetypes'].append(archetype.manufacturer) - for system in self._content.systems: - _names['systems'].append(system.manufacturer) - for equipment in self._content.generation_equipments: - _names['generation_equipments'].append(equipment.manufacturer) - for equipment in self._content.distribution_equipments: - _names['distribution_equipments'].append(equipment.manufacturer) - for equipment in self._content.emission_equipments: - _names['emission_equipments'].append(equipment.manufacturer) - else: - _names = {category: []} - if category.lower() == 'archetypes': - for archetype in self._content.archetypes: - _names[category].append(archetype.manufacturer) - elif category.lower() == 'systems': - for system in self._content.systems: - _names[category].append(system.manufacturer) - elif category.lower() == 'generation_equipments': - for system in self._content.generation_equipments: - _names[category].append(system.manufacturer) - elif category.lower() == 'distribution_equipments': - for system in self._content.distribution_equipments: - _names[category].append(system.manufacturer) - elif category.lower() == 'emission_equipments': - for system in self._content.emission_equipments: - _names[category].append(system.manufacturer) - else: - raise ValueError(f'Unknown category [{category}]') - return _names - - def entries(self, category=None): - """ - Get the catalog elements - :parm: optional category filter - """ - if category is None: - return self._content - if category.lower() == 'archetypes': - return self._content.archetypes - if category.lower() == 'systems': - return self._content.systems - if category.lower() == 'generation_equipments': - return self._content.generation_equipments - if category.lower() == 'distribution_equipments': - return self._content.distribution_equipments - if category.lower() == 'emission_equipments': - return self._content.emission_equipments - raise ValueError(f'Unknown category [{category}]') - - def get_entry(self, name): - """ - Get one catalog element by names - :parm: entry name - """ - for entry in self._content.archetypes: - if entry.manufacturer.lower() == name.lower(): - return entry - for entry in self._content.systems: - if entry.manufacturer.lower() == name.lower(): - return entry - for entry in self._content.generation_equipments: - if entry.manufacturer.lower() == name.lower(): - return entry - for entry in self._content.distribution_equipments: - if entry.manufacturer.lower() == name.lower(): - return entry - for entry in self._content.emission_equipments: - if entry.manufacturer.lower() == name.lower(): - return entry - raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py new file mode 100644 index 00000000..86d8f215 --- /dev/null +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -0,0 +1,109 @@ +""" +North america energy system catalog +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2022 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from ast import literal_eval +import xmltodict +from hub.catalog_factories.catalog import Catalog +from hub.catalog_factories.data_models.energy_systems.system import System +from hub.catalog_factories.data_models.energy_systems.content import Content +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem +from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem +from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves +from hub.catalog_factories.data_models.energy_systems.archetype import Archetype +from hub.catalog_factories.data_models.construction.material import Material +from hub.catalog_factories.data_models.construction.layer import Layer + + +class NorthAmericaEnergySystemCatalog(Catalog): + """ + North america energy system catalog class + """ + def __init__(self, path): + path = str(path / 'Tools4CitiesESMF.xml') + with open(path, 'r', encoding='utf-8') as xml: + self._archetypes = xmltodict.parse(xml.read()) +# self._systems = self._load_systems() +# self._generation_components = self._load_generation_components() + self._storage_components = self._load_storage_components() + print(self._storage_components) +# self._system_archetypes = self._load_system_archetypes() + + # store the full catalog data model in self._content +# self._content = Content(self._system_archetypes, +# self._systems, +# self._generation_components, +# None, +# None, +# self._storage_components) + + def _load_storage_components(self): + storage_components = [] + components = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['thermalStorages'] + for component in components: + model_name = component['@modelName'] + manufacturer = component['@manufacturer'] + volume = component['@volume'] + height = component['@height'] + maximum_operating_temperature = component['@maxTemp'] + materials = self._load_materials() + material_name = component['@insulationMaterial'] + insulation_material = self._search_material(materials, material_name) + material_name = component['@tankMaterial'] + tank_material = self._search_material(materials, material_name) + thickness = float(component['@insulationThickness']) / 100 # from cm to m + insulation_layer = Layer(None, 'insulation', insulation_material, thickness) + thickness = float(component['@tankThickness']) / 100 # from cm to m + tank_layer = Layer(None, 'insulation', tank_material, thickness) + # the convention is from outside to inside + layers = [insulation_layer, tank_layer] + storage_component = EnergyStorageSystem(model_name, + manufacturer, + 'thermal', + volume, + None, + None, + None, + None, + None, + height, + layers, + maximum_operating_temperature) + storage_components.append(storage_component) + return storage_components + + def _load_materials(self): + materials = [] + _materials = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['materials'] + for _material in _materials: + name = _material['@name'] + thermal_conductivity = _material['@thermalConductivity'] + material = Material(None, + name, + None, + None, + None, + False, + None, + thermal_conductivity, + None, + None) + materials.append(material) + return materials + + @staticmethod + def _search_material(materials, material_name): + _material = None + for material in materials: + if material.name == material_name: + _material = material + return _material + + if _material is None: + raise ValueError(f'Material not found in catalog [{material_name}]') diff --git a/hub/catalog_factories/energy_systems_catalog_factory.py b/hub/catalog_factories/energy_systems_catalog_factory.py index 4b59eeda..6e102bc3 100644 --- a/hub/catalog_factories/energy_systems_catalog_factory.py +++ b/hub/catalog_factories/energy_systems_catalog_factory.py @@ -9,6 +9,7 @@ from pathlib import Path from typing import TypeVar from hub.catalog_factories.energy_systems.montreal_custom_catalog import MontrealCustomCatalog +from hub.catalog_factories.energy_systems.north_america_energy_system_catalog import NorthAmericaEnergySystemCatalog from hub.helpers.utils import validate_import_export_type Catalog = TypeVar('Catalog') @@ -32,6 +33,13 @@ class EnergySystemsCatalogFactory: """ return MontrealCustomCatalog(self._path) + @property + def _north_america(self): + """ + Retrieve North American catalog + """ + return NorthAmericaEnergySystemCatalog(self._path) + @property def catalog(self) -> Catalog: """ diff --git a/hub/data/energy_systems/Tools4CitiesESMF.encomp b/hub/data/energy_systems/Tools4CitiesESMF.xml similarity index 88% rename from hub/data/energy_systems/Tools4CitiesESMF.encomp rename to hub/data/energy_systems/Tools4CitiesESMF.xml index 06c9e622..6ee58c84 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.encomp +++ b/hub/data/energy_systems/Tools4CitiesESMF.xml @@ -23,11 +23,11 @@ - - - - - + + + + + @@ -37,7 +37,7 @@ - + diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index f17038cb..48446d50 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -35,3 +35,5 @@ class TestSystemsCatalog(TestCase): with self.assertRaises(IndexError): catalog.get_entry('unknown') + def test_north_america_systems_catalog(self): + catalog = EnergySystemsCatalogFactory('north_america').catalog -- 2.39.2 From e91e61741edf834d363931e5933daf1ce0048962 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 16 Aug 2023 15:58:49 -0400 Subject: [PATCH 019/101] add generation and config --- .../energy_systems/pv_generation_system.py | 15 ++- .../north_america_energy_system_catalog.py | 127 ++++++++++++++++-- hub/data/energy_systems/Tools4CitiesESMF.xml | 24 ++-- 3 files changed, 142 insertions(+), 24 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index a258b4b9..47a2507f 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -17,8 +17,9 @@ class PvGenerationSystem(GenerationSystem): """ def __init__(self, nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, - standard_test_condition_cell_temperature, standard_test_condition_maximum_power, width, height, - model_name, manufacturer, electricity_efficiency, nominal_electricity_output): + standard_test_condition_cell_temperature, standard_test_condition_maximum_power, + cell_temperature_coefficient, width, height, model_name, manufacturer, electricity_efficiency, + nominal_electricity_output): super(GenerationSystem, self).__init__(model_name=model_name, manufacturer=manufacturer, system_type='pv', fuel_type='renewable', nominal_thermal_output=None, modulation_range=None, source_types=None, heat_efficiency=None, cooling_efficiency=None, @@ -29,6 +30,7 @@ class PvGenerationSystem(GenerationSystem): self._nominal_radiation = nominal_radiation self._standard_test_condition_cell_temperature = standard_test_condition_cell_temperature self._standard_test_condition_maximum_power = standard_test_condition_maximum_power + self._cell_temperature_coefficient = cell_temperature_coefficient self._width = width self._height = height @@ -72,6 +74,14 @@ class PvGenerationSystem(GenerationSystem): """ return self._standard_test_condition_maximum_power + @property + def cell_temperature_coefficient(self): + """ + Get cell temperature coefficient of PV module + :return: float + """ + return self._cell_temperature_coefficient + @property def width(self): """ @@ -102,6 +112,7 @@ class PvGenerationSystem(GenerationSystem): 'nominal radiation [W/m2]': self.nominal_radiation, 'standard test condition cell temperature [Celsius]': self.standard_test_condition_cell_temperature, 'standard test condition maximum power [kW]': self.standard_test_condition_maximum_power, + 'cell temperature coefficient':self.cell_temperature_coefficient, 'width': self.width, 'height': self.height, } diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 86d8f215..b703945e 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -12,6 +12,7 @@ from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem @@ -25,23 +26,129 @@ class NorthAmericaEnergySystemCatalog(Catalog): """ North america energy system catalog class """ + def __init__(self, path): path = str(path / 'Tools4CitiesESMF.xml') with open(path, 'r', encoding='utf-8') as xml: self._archetypes = xmltodict.parse(xml.read()) -# self._systems = self._load_systems() -# self._generation_components = self._load_generation_components() + self._systems = self._load_systems() + print(self._load_systems()) + self._generation_components = self._load_generation_components() + print(self._generation_components) self._storage_components = self._load_storage_components() print(self._storage_components) -# self._system_archetypes = self._load_system_archetypes() - # store the full catalog data model in self._content -# self._content = Content(self._system_archetypes, -# self._systems, -# self._generation_components, -# None, -# None, -# self._storage_components) + # self._system_archetypes = self._load_system_archetypes() + + # store the full catalog data model in self._content + # self._content = Content(self._system_archetypes, + # self._systems, + # self._generation_components, + # None, + # None, + # self._storage_components) + def _load_systems(self): + system_configurations = [] + configurations = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] + for configuration in configurations: + system_configurations.append(configuration['@configurationName']) + return system_configurations + + def _load_generation_components(self): + generation_components = [] + boilers = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['boilers'] + heat_pumps = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['heatPumps'] + photovoltaics = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['photovoltaicModules'] + print(photovoltaics.keys()) + for boiler in boilers: + boiler_model_name = boiler['@modelName'] + boiler_manufacturer = boiler['@manufacturer'] + system_type = 'boiler' + boiler_fuel_type = boiler['@fuel'] + boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) + boiler_modulation_range = float(boiler['@modulationRange']) + boiler_heat_efficiency = float(boiler['@nominalEfficiency']) + + boiler_component = GenerationSystem(boiler_model_name, + boiler_manufacturer, + system_type, + boiler_fuel_type, + boiler_nominal_thermal_output, + boiler_modulation_range, + None, + None, + boiler_heat_efficiency, + None, + None, + None, + None, + None, + None, + None, + None, + None) + generation_components.append(boiler_component) + for heat_pump in heat_pumps: + heat_pump_model_name = heat_pump['@modelName'] + heat_pump_manufacturer = heat_pump['@manufacturer'] + system_type = 'heat pump' + heat_pump_fuel_type = heat_pump['@fuel'] + heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) + heat_pump_modulation_range = float(heat_pump['@modulationRange']) + heat_pump_source_type = heat_pump['@heatSource'] + heat_pump_supply_medium = heat_pump['@supply_medium'] + heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) + heat_pump_maximum_heating_temperature = float(heat_pump['@maxHeatingSupTemperature']) + heat_pump_minimum_heating_temperature = float(heat_pump['@minHeatingSupTemperature']) + heat_pump_maximum_cooling_temperature = float(heat_pump['@maxCoolingSupTemperature']) + heat_pump_minimum_cooling_temperature = float(heat_pump['@minCoolingSupTemperature']) + + heat_pump_component = GenerationSystem(heat_pump_model_name, + heat_pump_manufacturer, + system_type, + heat_pump_fuel_type, + heat_pump_nominal_thermal_output, + heat_pump_modulation_range, + heat_pump_source_type, + heat_pump_supply_medium, + heat_pump_nominal_cop, + None, + None, + None, + None, + None, + heat_pump_maximum_heating_temperature, + heat_pump_minimum_heating_temperature, + heat_pump_maximum_cooling_temperature, + heat_pump_minimum_cooling_temperature) + generation_components.append(heat_pump_component) + for pv in photovoltaics: + nominal_ambient_temperature = float(pv['@nominalAmbientTemperature']) + nominal_cell_temperature = float(pv['@nominalCellTemperature']) + nominal_radiation = float(pv['@nominalRadiation']) + standard_test_condition_cell_temperature = float(pv['@STCCellTemperature']) + standard_test_condition_maximum_power = float(pv['@STCMaxPower']) + cell_temperature_coefficient = float(pv['@CellTemperatureCoefficient']) + width = float(pv['@width']) + height = float(pv['@height']) + pv_model_name = pv['@modelName'] + pv_manufacturer = pv['@manufacturer'] + pv_electricity_efficiency = pv['@nominalEfficiency'] + pv_nominal_electricity_output = pv['@nominalPower'] + pv_component = PvGenerationSystem(nominal_ambient_temperature, + nominal_cell_temperature, + nominal_radiation, + standard_test_condition_cell_temperature, + standard_test_condition_maximum_power, + cell_temperature_coefficient, + width, + height, + pv_model_name, + pv_manufacturer, + pv_electricity_efficiency, + pv_nominal_electricity_output) + generation_components.append(pv_component) + return generation_components def _load_storage_components(self): storage_components = [] diff --git a/hub/data/energy_systems/Tools4CitiesESMF.xml b/hub/data/energy_systems/Tools4CitiesESMF.xml index 6ee58c84..d1a18651 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.xml +++ b/hub/data/energy_systems/Tools4CitiesESMF.xml @@ -2,18 +2,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + -- 2.39.2 From 32a40f17a6552c65a923fd436d0ae7504b889993 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Wed, 16 Aug 2023 16:28:20 -0400 Subject: [PATCH 020/101] fixing pv problem --- .../north_america_energy_system_catalog.py | 29 ++++++++++++------- hub/data/energy_systems/Tools4CitiesESMF.xml | 10 ++++++- hub/imports/geometry_factory.py | 4 +-- 3 files changed, 29 insertions(+), 14 deletions(-) diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index b703945e..150df075 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -20,6 +20,7 @@ from hub.catalog_factories.data_models.energy_systems.performance_curves import from hub.catalog_factories.data_models.energy_systems.archetype import Archetype from hub.catalog_factories.data_models.construction.material import Material from hub.catalog_factories.data_models.construction.layer import Layer +import hub.helpers.constants as cte class NorthAmericaEnergySystemCatalog(Catalog): @@ -30,13 +31,13 @@ class NorthAmericaEnergySystemCatalog(Catalog): def __init__(self, path): path = str(path / 'Tools4CitiesESMF.xml') with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read()) - self._systems = self._load_systems() - print(self._load_systems()) + self._archetypes = xmltodict.parse(xml.read(), force_list=['boilers', 'photovoltaicModules']) self._generation_components = self._load_generation_components() print(self._generation_components) self._storage_components = self._load_storage_components() print(self._storage_components) + self._systems = self._load_systems() + print(self._load_systems()) # self._system_archetypes = self._load_system_archetypes() @@ -47,19 +48,27 @@ class NorthAmericaEnergySystemCatalog(Catalog): # None, # None, # self._storage_components) - def _load_systems(self): - system_configurations = [] - configurations = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] - for configuration in configurations: - system_configurations.append(configuration['@configurationName']) - return system_configurations +# def _load_systems(self): +# systems = [] +# catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] +# for catalog_system in catalog_systems: + # look for the demands and add it to demands[] + # look for the components in self._generation_systems and add them to generation_systems[] + # same with emission and distribution and storage +# System(None, +# None, +# catalog_system['@configurationName'], +# demands, +# generation_systems,... +# ) + +# return system_configurations def _load_generation_components(self): generation_components = [] boilers = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['boilers'] heat_pumps = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['heatPumps'] photovoltaics = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['photovoltaicModules'] - print(photovoltaics.keys()) for boiler in boilers: boiler_model_name = boiler['@modelName'] boiler_manufacturer = boiler['@manufacturer'] diff --git a/hub/data/energy_systems/Tools4CitiesESMF.xml b/hub/data/energy_systems/Tools4CitiesESMF.xml index d1a18651..0f79b6e2 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.xml +++ b/hub/data/energy_systems/Tools4CitiesESMF.xml @@ -39,7 +39,15 @@ - + + + + + + + + + diff --git a/hub/imports/geometry_factory.py b/hub/imports/geometry_factory.py index 3e6ca0b3..7adf8197 100644 --- a/hub/imports/geometry_factory.py +++ b/hub/imports/geometry_factory.py @@ -17,8 +17,7 @@ class GeometryFactory: GeometryFactory class """ def __init__(self, file_type, - path=None, - data_frame=None, + path, aliases_field=None, height_field=None, year_of_construction_field=None, @@ -27,7 +26,6 @@ class GeometryFactory: self._file_type = '_' + file_type.lower() validate_import_export_type(GeometryFactory, file_type) self._path = path - self._data_frame = data_frame self._aliases_field = aliases_field self._height_field = height_field self._year_of_construction_field = year_of_construction_field -- 2.39.2 From 923b1fe2671b280cd7beae5f0115ffd0f3135bab Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 16 Aug 2023 19:33:18 -0400 Subject: [PATCH 021/101] generation components are all added to north_america_energy_system_catalog.py pv_generation_system.py is modified Tools4CitiesESMF.xml is modified --- .../energy_systems/pv_generation_system.py | 17 ++++++---- .../north_america_energy_system_catalog.py | 2 +- hub/data/energy_systems/Tools4CitiesESMF.xml | 32 +++++++++++-------- 3 files changed, 31 insertions(+), 20 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 47a2507f..650694d2 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -20,11 +20,16 @@ class PvGenerationSystem(GenerationSystem): standard_test_condition_cell_temperature, standard_test_condition_maximum_power, cell_temperature_coefficient, width, height, model_name, manufacturer, electricity_efficiency, nominal_electricity_output): - super(GenerationSystem, self).__init__(model_name=model_name, manufacturer=manufacturer, system_type='pv', - fuel_type='renewable', nominal_thermal_output=None, modulation_range=None, - source_types=None, heat_efficiency=None, cooling_efficiency=None, - electricity_efficiency=electricity_efficiency, source_temperature=None, - source_mass_flow=None, nominal_electricity_output=nominal_electricity_output) + super(PvGenerationSystem, self).__init__(model_name=model_name, manufacturer=manufacturer, system_type='pv', + fuel_type='renewable', nominal_thermal_output=None, modulation_range=None, + source_types=None,supply_medium=None, heat_efficiency=None, + cooling_efficiency=None, electricity_efficiency=electricity_efficiency, + source_temperature=None, source_mass_flow=None, + nominal_electricity_output=nominal_electricity_output, + maximum_heating_supply_temperature=None, + minimum_heating_supply_temperature=None, + maximum_cooling_supply_temperature=None, + minimum_cooling_supply_temperature=None) self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation @@ -112,7 +117,7 @@ class PvGenerationSystem(GenerationSystem): 'nominal radiation [W/m2]': self.nominal_radiation, 'standard test condition cell temperature [Celsius]': self.standard_test_condition_cell_temperature, 'standard test condition maximum power [kW]': self.standard_test_condition_maximum_power, - 'cell temperature coefficient':self.cell_temperature_coefficient, + 'cell temperature coefficient': self.cell_temperature_coefficient, 'width': self.width, 'height': self.height, } diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 150df075..f6b37cff 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -31,7 +31,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): def __init__(self, path): path = str(path / 'Tools4CitiesESMF.xml') with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read(), force_list=['boilers', 'photovoltaicModules']) + self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules']) self._generation_components = self._load_generation_components() print(self._generation_components) self._storage_components = self._load_storage_components() diff --git a/hub/data/energy_systems/Tools4CitiesESMF.xml b/hub/data/energy_systems/Tools4CitiesESMF.xml index 0f79b6e2..f7e45e35 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.xml +++ b/hub/data/energy_systems/Tools4CitiesESMF.xml @@ -23,11 +23,11 @@ - - - - - + + + + + @@ -40,14 +40,20 @@ - - - - - - + + + + + + + + - - + + + + + + -- 2.39.2 From 0528aa0718cca7694d6a1bf76cbb09b891e26bd3 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 16 Aug 2023 20:07:24 -0400 Subject: [PATCH 022/101] started to work on systems --- .../north_america_energy_system_catalog.py | 18 ++++++++++++++++++ hub/data/energy_systems/Tools4CitiesESMF.xml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index f6b37cff..e3a54197 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -194,6 +194,24 @@ class NorthAmericaEnergySystemCatalog(Catalog): storage_components.append(storage_component) return storage_components + def _load_systems(self): + systems = [] + catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] + for catalog_system in catalog_systems: + system_configuration = catalog_system['@configurationName'] + energy_system = System(None, + None, + system_configuration, + None, + None, + None, + None, + None, + None, + None) + systems.append(energy_system) + return systems + def _load_materials(self): materials = [] _materials = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['materials'] diff --git a/hub/data/energy_systems/Tools4CitiesESMF.xml b/hub/data/energy_systems/Tools4CitiesESMF.xml index f7e45e35..ef96db92 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.xml +++ b/hub/data/energy_systems/Tools4CitiesESMF.xml @@ -50,7 +50,7 @@ - + -- 2.39.2 From e20a700deba4d68be5a4f040601c168cf846d8a3 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 17 Aug 2023 18:48:48 -0400 Subject: [PATCH 023/101] emission_system.py is rolled back to original performance_curves.py is imported in generation_system.py The order of arguments in pv_generation_system.py is fixed Modulation range is replaced with maximum and minimum heat output in generation_system.py maximum,minimum, and nominal cooling output are also added to generation_system.py --- .../energy_systems/emission_system.py | 60 ++++++ .../energy_systems/energy_emission_system.py | 94 --------- .../energy_systems/energy_storage_system.py | 55 ++++-- .../energy_systems/generation_system.py | 182 ++++++++++++++++-- .../energy_systems/performance_curves.py | 14 +- .../energy_systems/pv_generation_system.py | 23 ++- .../data_models/energy_systems/system.py | 4 +- .../energy_systems/montreal_custom_catalog.py | 16 +- .../north_america_energy_system_catalog.py | 19 +- hub/data/energy_systems/Tools4CitiesESMF.xml | 73 ++++--- ...ontreal_custom_energy_system_parameters.py | 2 +- 11 files changed, 353 insertions(+), 189 deletions(-) create mode 100644 hub/catalog_factories/data_models/energy_systems/emission_system.py delete mode 100644 hub/catalog_factories/data_models/energy_systems/energy_emission_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/emission_system.py b/hub/catalog_factories/data_models/energy_systems/emission_system.py new file mode 100644 index 00000000..5e9d2865 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/emission_system.py @@ -0,0 +1,60 @@ +""" +Energy System catalog emission system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + + +class EmissionSystem: + """ + Emission system class + """ + def __init__(self, system_id, name, system_type, parasitic_energy_consumption): + + self._system_id = system_id + self._name = name + self._type = system_type + self._parasitic_energy_consumption = parasitic_energy_consumption + + @property + def id(self): + """ + Get system id + :return: float + """ + return self._system_id + + @property + def name(self): + """ + Get name + :return: string + """ + return self._name + + @property + def type(self): + """ + Get type + :return: string + """ + return self._type + + @property + def parasitic_energy_consumption(self): + """ + Get parasitic_energy_consumption in ratio (J/J) + :return: float + """ + return self._parasitic_energy_consumption + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Layer': {'id': self.id, + 'name': self.name, + 'type': self.type, + 'parasitic energy consumption per energy produced [J/J]': self.parasitic_energy_consumption + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/energy_emission_system.py b/hub/catalog_factories/data_models/energy_systems/energy_emission_system.py deleted file mode 100644 index 171a8fda..00000000 --- a/hub/catalog_factories/data_models/energy_systems/energy_emission_system.py +++ /dev/null @@ -1,94 +0,0 @@ -""" -Energy System catalog emission system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from hub.catalog_factories.data_models.construction.material import Material - - -class EnergyEmissionSystem: - """ - Emission system class - """ - def __init__(self, model_name, manufacturer, system_type, parasitic_energy_consumption, nominal_heat_output, - nominal_efficiency, medium): - - self._system_id = model_name - self._name = manufacturer - self._type = system_type - self._parasitic_energy_consumption = parasitic_energy_consumption - self._nominal_heat_output = nominal_heat_output - self._nominal_efficiency = nominal_efficiency - self._medium = medium - - @property - def model_name(self): - """ - Get system id - :return: float - """ - return self._system_id - - @property - def manufacturer(self): - """ - Get name - :return: string - """ - return self._name - - @property - def type(self): - """ - Get type - :return: string - """ - return self._type - - @property - def parasitic_energy_consumption(self): - """ - Get parasitic_energy_consumption in ratio (J/J) - :return: float - """ - return self._parasitic_energy_consumption - - @property - def nominal_heat_output(self): - """ - Get the nominal heat output of the emission system in kW - :return: float - """ - return self._nominal_heat_output - - @property - def nominal_efficiency(self): - """ - Get the nominal efficiency of the emission system - :return: float - """ - return self._nominal_efficiency - - @property - def medium(self) -> Material: - """ - Get the heat transfer characteristics of the heat transfer medium - :return: Material - """ - return self._medium - - def to_dictionary(self): - """Class content to dictionary""" - content = {'Layer': {'id': self.model_name, - 'name': self.manufacturer, - 'type': self.type, - 'parasitic energy consumption per energy produced [J/J]': self.parasitic_energy_consumption, - 'nominal heat output [kW]': self.nominal_heat_output, - 'nominal efficiency': self.nominal_efficiency, - 'heat transfer medium': self.medium - } - } - return content diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 52812ca1..f898af34 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -7,8 +7,6 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from __future__ import annotations -from typing import Union -from hub.catalog_factories.data_models.construction.material import Material from hub.catalog_factories.data_models.construction.layer import Layer @@ -17,9 +15,11 @@ class EnergyStorageSystem: Energy Storage System Class """ - def __init__(self, model_name, manufacturer, storage_type, volume, rated_output_power, + def __init__(self, storage_id, name, model_name, manufacturer, storage_type, volume, rated_output_power, nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, height, layers, maximum_operating_temperature): + self._storage_id = storage_id + self._name = name self._model_name = model_name self._manufacturer = manufacturer self._storage_type = storage_type @@ -33,6 +33,22 @@ class EnergyStorageSystem: self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature + @property + def stroage_id(self): + """ + Get storage id + :return: string + """ + return self._storage_id + + @property + def name(self): + """ + Get storage name + :return: string + """ + return self._name + @property def model_name(self): """ @@ -134,18 +150,21 @@ class EnergyStorageSystem: _layers = [] for _layer in self.layers: _layers.append(_layer.to_dictionary()) - content = {'Storage component': {'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'storage type': self.storage_type, - 'physical volume [m3]': self.physical_volume, - 'rated power [kW]': self.rated_output_power, - 'nominal efficiency': self.nominal_efficiency, - 'battery voltage [V]': self.battery_voltage, - 'depth of discharge': self.depth_of_discharge, - 'self discharge rate': self.self_discharge_rate, - 'height [m]': self.height, - 'layers': _layers, - 'maximum operating temperature [Celsius]': self.maximum_operating_temperature - } - } - return content \ No newline at end of file + content = {'Storage component': { + 'storage id': self.stroage_id, + 'name': self.name, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'physical volume [m3]': self.physical_volume, + 'rated power [kW]': self.rated_output_power, + 'nominal efficiency': self.nominal_efficiency, + 'battery voltage [V]': self.battery_voltage, + 'depth of discharge': self.depth_of_discharge, + 'self discharge rate': self.self_discharge_rate, + 'height [m]': self.height, + 'layers': _layers, + 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index 11560500..7fdc3130 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -8,6 +8,7 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from __future__ import annotations from typing import Union +from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves class GenerationSystem: @@ -15,20 +16,29 @@ class GenerationSystem: Heat Generation system class """ - def __init__(self, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, modulation_range, - source_types, supply_medium, heat_efficiency, cooling_efficiency, electricity_efficiency, - source_temperature, source_mass_flow, nominal_electricity_output, maximum_heating_supply_temperature, - minimum_heating_supply_temperature, maximum_cooling_supply_temperature, - minimum_cooling_supply_temperature): + def __init__(self, system_id, name, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, + maximum_heat_output, minimum_heat_output, source_medium, supply_medium, heat_efficiency, + nominal_cooling_output, maximum_cooling_output, minimum_cooling_output, cooling_efficiency, + electricity_efficiency, source_temperature, source_mass_flow, nominal_electricity_output, + maximum_heating_supply_temperature, minimum_heating_supply_temperature, + maximum_cooling_supply_temperature, minimum_cooling_supply_temperature, heat_output_curve, + heat_fuel_consumption_curve, heat_efficiency_curve, cooling_output_curve, cooling_fuel_consumption_curve, + cooling_efficiency_curve, storage, auxiliary_equipment): + self._system_id = system_id + self._name = name self._model_name = model_name self._manufacturer = manufacturer self._system_type = system_type self._fuel_type = fuel_type self._nominal_thermal_output = nominal_thermal_output - self._modulation_range = modulation_range - self._source_types = source_types + self._maximum_heat_output = maximum_heat_output + self._minimum_heat_output = minimum_heat_output + self._source_medium = source_medium self._supply_medium = supply_medium self._heat_efficiency = heat_efficiency + self._nominal_cooling_output = nominal_cooling_output + self._maximum_cooling_output = maximum_cooling_output + self._minimum_cooling_output = minimum_cooling_output self._cooling_efficiency = cooling_efficiency self._electricity_efficiency = electricity_efficiency self._source_temperature = source_temperature @@ -38,6 +48,31 @@ class GenerationSystem: self._minimum_heating_supply_temperature = minimum_heating_supply_temperature self._maximum_cooling_supply_temperature = maximum_cooling_supply_temperature self._minimum_cooling_supply_temperature = minimum_cooling_supply_temperature + self._heat_output_curve = heat_output_curve + self._heat_fuel_consumption_curve = heat_fuel_consumption_curve + self._heat_efficiency_curve = heat_efficiency_curve + self._cooling_output_curve = cooling_output_curve + self._cooling_fuel_consumption_curve = cooling_fuel_consumption_curve + self._cooling_efficiency_curve = cooling_efficiency_curve + + self._storage = storage + self._auxiliary_equipment = auxiliary_equipment + + @property + def id(self): + """ + Get system id + :return: float + """ + return self._system_id + + @property + def name(self): + """ + Get name + :return: string + """ + return self._name @property def model_name(self): @@ -80,20 +115,28 @@ class GenerationSystem: return self._nominal_thermal_output @property - def modulation_range(self): + def maximum_heat_output(self): """ - Get modulation range of heat generation devices + Get maximum heat output of heat generation devices in W :return: float """ - return self._modulation_range + return self._maximum_heat_output @property - def source_types(self): + def minimum_heat_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_heat_output + + @property + def source_medium(self): """ Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] :return: [string] """ - return self._source_types + return self._source_medium @property def supply_medium(self): @@ -111,6 +154,30 @@ class GenerationSystem: """ return self._heat_efficiency + @property + def nominal_cooling_output(self): + """ + Get nominal_thermal_output of heat generation devices in kW + :return: float + """ + return self._nominal_cooling_output + + @property + def maximum_cooling_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_cooling_output + + @property + def minimum_cooling_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_cooling_output + @property def cooling_efficiency(self): """ @@ -183,27 +250,108 @@ class GenerationSystem: """ return self._minimum_cooling_supply_temperature + @property + def heat_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_output_curve + + @property + def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_fuel_consumption_curve + + @property + def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_efficiency_curve + + @property + def cooling_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_output_curve + + @property + def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_fuel_consumption_curve + + @property + def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_efficiency_curve + + @property + def storage(self): + """ + Get boolean storage exists + :return: bool + """ + return self._storage + + @property + def auxiliary_equipment(self) -> Union[None, GenerationSystem]: + """ + Get auxiliary_equipment + :return: GenerationSystem + """ + return self._auxiliary_equipment + def to_dictionary(self): """Class content to dictionary""" + _auxiliary_equipment = [] + if self.auxiliary_equipment is not None: + _auxiliary_equipment = self.auxiliary_equipment.to_dictionary() content = {'Energy Generation component': { + 'id': self.id, + 'name': self.name, 'model name': self.model_name, 'manufacturer': self.manufacturer, 'type': self.system_type, 'fuel type': self.fuel_type, - 'nominal thermal output': self.nominal_thermal_output, - 'modulation_range': self.modulation_range, - 'source types': self.source_types, + 'nominal thermal output [W]': self.nominal_thermal_output, + 'maximum heat output [W]': self.maximum_heat_output, + 'minimum heat output [W]': self.minimum_heat_output, + 'source medium': self.source_medium, 'supply medium': self.supply_medium, 'source temperature [Celsius]': self.source_temperature, 'source mass flow [kg/s]': self.source_mass_flow, 'heat efficiency': self.heat_efficiency, + 'nominal cooling output [W]': self.nominal_cooling_output, + 'maximum cooling output [W]': self.maximum_cooling_output, + 'minimum cooling output [W]': self.minimum_cooling_output, 'cooling efficiency': self.cooling_efficiency, 'electricity efficiency': self.electricity_efficiency, - 'nominal power output [kW]': self.nominal_electricity_output, + 'nominal power output [W]': self.nominal_electricity_output, 'maximum heating supply temperature [Celsius]': self.maximum_heating_supply_temperature, 'minimum heating supply temperature [Celsius]': self.minimum_heating_supply_temperature, 'maximum cooling supply temperature [Celsius]': self.maximum_cooling_supply_temperature, - 'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature + 'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature, + 'heat output curve': self.heat_output_curve, + 'heat fuel consumption curve': self.heat_fuel_consumption_curve, + 'heat efficiency curve': self.heat_efficiency_curve, + 'cooling output curve': self.cooling_output_curve, + 'cooling fuel consumption curve': self.cooling_fuel_consumption_curve, + 'cooling efficiency curve': self.cooling_efficiency_curve, + 'it has storage': self.storage, + 'auxiliary equipment': _auxiliary_equipment } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/performance_curves.py b/hub/catalog_factories/data_models/energy_systems/performance_curves.py index 44301bec..fb9b74ff 100644 --- a/hub/catalog_factories/data_models/energy_systems/performance_curves.py +++ b/hub/catalog_factories/data_models/energy_systems/performance_curves.py @@ -7,7 +7,7 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from __future__ import annotations -from typing import Union + class PerformanceCurves: @@ -15,13 +15,13 @@ class PerformanceCurves: Parameter function class """ - def __init__(self, type, parameters, coefficients): - self._type = type + def __init__(self, curve_type, parameters, coefficients): + self._curve_type = curve_type self._parameters = parameters self._coefficients = coefficients @property - def type(self): + def curve_type(self): """ The type of the fit function from the following Linear =>>> y = a*x + b @@ -33,7 +33,7 @@ class PerformanceCurves: Get the type of function from ['linear', 'exponential', 'polynomial', 'power', 'second degree multivariable'] :return: string """ - return self._type + return self._curve_type @property def parameters(self): @@ -46,7 +46,7 @@ class PerformanceCurves: @property def coefficients(self): """ - Get the coefficients of the functions as list + Get the coefficients of the functions as list of ['a', 'b', 'c', 'd', 'e', 'f'] :return: [coefficients] """ return self._coefficients @@ -54,7 +54,7 @@ class PerformanceCurves: def to_dictionary(self): """Class content to dictionary""" content = {'Parameter Function': { - 'type': self.type, + 'curve type': self.curve_type, 'parameters': self.parameters, 'coefficients': self.coefficients, } diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 650694d2..5c03c3f3 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -7,7 +7,6 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from __future__ import annotations -from typing import Union from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem @@ -16,20 +15,26 @@ class PvGenerationSystem(GenerationSystem): Electricity Generation system class """ - def __init__(self, nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, - standard_test_condition_cell_temperature, standard_test_condition_maximum_power, - cell_temperature_coefficient, width, height, model_name, manufacturer, electricity_efficiency, - nominal_electricity_output): - super(PvGenerationSystem, self).__init__(model_name=model_name, manufacturer=manufacturer, system_type='pv', - fuel_type='renewable', nominal_thermal_output=None, modulation_range=None, - source_types=None,supply_medium=None, heat_efficiency=None, + def __init__(self, system_id, name, model_name, manufacturer, electricity_efficiency, + nominal_electricity_output, nominal_ambient_temperature, nominal_cell_temperature, + nominal_radiation, standard_test_condition_cell_temperature, standard_test_condition_maximum_power, + cell_temperature_coefficient, width, height): + super(PvGenerationSystem, self).__init__(system_id=system_id, name=name, model_name=model_name, + manufacturer=manufacturer, system_type='pv', fuel_type='renewable', + nominal_thermal_output=None, maximum_heat_output=None, + minimum_heat_output=None, source_medium=None, + supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, + maximum_cooling_output=None, minimum_cooling_output=None, cooling_efficiency=None, electricity_efficiency=electricity_efficiency, source_temperature=None, source_mass_flow=None, nominal_electricity_output=nominal_electricity_output, maximum_heating_supply_temperature=None, minimum_heating_supply_temperature=None, maximum_cooling_supply_temperature=None, - minimum_cooling_supply_temperature=None) + minimum_cooling_supply_temperature=None, heat_output_curve=None, + heat_fuel_consumption_curve=None, heat_efficiency_curve=None, + cooling_output_curve=None, cooling_fuel_consumption_curve=None, + cooling_efficiency_curve=None, storage=None, auxiliary_equipment=None) self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index b22251f8..299b82c7 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -13,7 +13,7 @@ from hub.catalog_factories.data_models.energy_systems.pv_generation_system impor from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves -from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem +from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem class System: @@ -101,7 +101,7 @@ class System: return self._distribution_system @property - def emission_system(self) -> Union[None, EnergyEmissionSystem]: + def emission_system(self) -> Union[None, EmissionSystem]: """ Get emission system :return: EmissionSystem diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index bea78b0d..87b9d4ab 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -12,7 +12,7 @@ from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem +from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.archetype import Archetype @@ -20,6 +20,7 @@ class MontrealCustomCatalog(Catalog): """ Montreal custom energy systems catalog class """ + def __init__(self, path): path = str(path / 'montreal_custom_systems.xml') with open(path, 'r', encoding='utf-8') as xml: @@ -90,7 +91,8 @@ class MontrealCustomCatalog(Catalog): distribution_consumption_fix_flow = float(equipment['distribution_consumption_fix_flow']['#text']) / 100 distribution_consumption_variable_flow = None if 'distribution_consumption_variable_flow' in equipment: - distribution_consumption_variable_flow = float(equipment['distribution_consumption_variable_flow']['#text']) / 100 + distribution_consumption_variable_flow = float( + equipment['distribution_consumption_variable_flow']['#text']) / 100 distribution_system = DistributionSystem(equipment_id, name, @@ -114,10 +116,10 @@ class MontrealCustomCatalog(Catalog): if 'parasitic_consumption' in equipment: parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100 - emission_system = EnergyEmissionSystem(equipment_id, - name, - equipment_type, - parasitic_consumption) + emission_system = EmissionSystem(equipment_id, + name, + equipment_type, + parasitic_consumption) _equipments.append(emission_system) return _equipments @@ -175,7 +177,7 @@ class MontrealCustomCatalog(Catalog): """ if category is None: _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [], - 'emission_equipments':[]} + 'emission_equipments': []} for archetype in self._content.archetypes: _names['archetypes'].append(archetype.manufacturer) for system in self._content.systems: diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index e3a54197..cd84a6b3 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -14,7 +14,7 @@ from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem +from hub.catalog_factories.data_models.energy_systems.emission_system import EnergyEmissionSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves from hub.catalog_factories.data_models.energy_systems.archetype import Archetype @@ -199,10 +199,15 @@ class NorthAmericaEnergySystemCatalog(Catalog): catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] for catalog_system in catalog_systems: system_configuration = catalog_system['@configurationName'] + demands = catalog_system['demands'] + demand_types = [] + for demand in demands: + name = demand['@name'] + demand_types.append(name) energy_system = System(None, None, system_configuration, - None, + demand_types, None, None, None, @@ -241,3 +246,13 @@ class NorthAmericaEnergySystemCatalog(Catalog): if _material is None: raise ValueError(f'Material not found in catalog [{material_name}]') + + def _load_demands(self): + demands = [] + _demands = self._archetypes['encomp:EnergySystemCatalog']['energydemand'] + for _demand in _demands: + demand_type = _demand['@name'] + demands.append(demand_type) + return demands + + # def _search_demands(self, config_name): diff --git a/hub/data/energy_systems/Tools4CitiesESMF.xml b/hub/data/energy_systems/Tools4CitiesESMF.xml index ef96db92..0270f61c 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.xml +++ b/hub/data/energy_systems/Tools4CitiesESMF.xml @@ -1,43 +1,43 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - - - - - + + + + + - - - - - - - - - + + + + + + + + + @@ -49,11 +49,20 @@ - + + + + + + + + + + - + diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 9b3f7a61..3982221b 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -92,7 +92,7 @@ class MontrealCustomEnergySystemParameters: _type] _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] _generation_system.fuel_type = _fuel_type - _generation_system.source_types = archetype_generation_equipment.source_types + _generation_system.source_types = archetype_generation_equipment.source_medium _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency -- 2.39.2 From 72b5ff10409c15622d58c491d33f9d789ee89ab8 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Fri, 18 Aug 2023 18:22:10 -0400 Subject: [PATCH 024/101] north_america_components.xml is modified The montreal_custom_catalog.py is modified --- .../energy_systems/montreal_custom_catalog.py | 32 +++++----- .../north_america_energy_system_catalog.py | 2 +- ...sESMF.xml => north_america_components.xml} | 60 ++++++++++--------- .../energy_systems/north_america_systems.xml | 29 +++++++++ 4 files changed, 79 insertions(+), 44 deletions(-) rename hub/data/energy_systems/{Tools4CitiesESMF.xml => north_america_components.xml} (80%) create mode 100644 hub/data/energy_systems/north_america_systems.xml diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 87b9d4ab..0336c940 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -179,32 +179,32 @@ class MontrealCustomCatalog(Catalog): _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [], 'emission_equipments': []} for archetype in self._content.archetypes: - _names['archetypes'].append(archetype.manufacturer) + _names['archetypes'].append(archetype.name) for system in self._content.systems: - _names['systems'].append(system.manufacturer) + _names['systems'].append(system.name) for equipment in self._content.generation_equipments: - _names['generation_equipments'].append(equipment.manufacturer) + _names['generation_equipments'].append(equipment.name) for equipment in self._content.distribution_equipments: - _names['distribution_equipments'].append(equipment.manufacturer) + _names['distribution_equipments'].append(equipment.name) for equipment in self._content.emission_equipments: - _names['emission_equipments'].append(equipment.manufacturer) + _names['emission_equipments'].append(equipment.name) else: _names = {category: []} if category.lower() == 'archetypes': for archetype in self._content.archetypes: - _names[category].append(archetype.manufacturer) + _names[category].append(archetype.name) elif category.lower() == 'systems': for system in self._content.systems: - _names[category].append(system.manufacturer) + _names[category].append(system.name) elif category.lower() == 'generation_equipments': for system in self._content.generation_equipments: - _names[category].append(system.manufacturer) + _names[category].append(system.name) elif category.lower() == 'distribution_equipments': for system in self._content.distribution_equipments: - _names[category].append(system.manufacturer) + _names[category].append(system.name) elif category.lower() == 'emission_equipments': for system in self._content.emission_equipments: - _names[category].append(system.manufacturer) + _names[category].append(system.name) else: raise ValueError(f'Unknown category [{category}]') return _names @@ -234,18 +234,18 @@ class MontrealCustomCatalog(Catalog): :parm: entry name """ for entry in self._content.archetypes: - if entry.manufacturer.lower() == name.lower(): + if entry.name.lower() == name.lower(): return entry for entry in self._content.systems: - if entry.manufacturer.lower() == name.lower(): + if entry.name.lower() == name.lower(): return entry for entry in self._content.generation_equipments: - if entry.manufacturer.lower() == name.lower(): + if entry.name.lower() == name.lower(): return entry for entry in self._content.distribution_equipments: - if entry.manufacturer.lower() == name.lower(): + if entry.name.lower() == name.lower(): return entry for entry in self._content.emission_equipments: - if entry.manufacturer.lower() == name.lower(): + if entry.name.lower() == name.lower(): return entry - raise IndexError(f"{name} doesn't exists in the catalog") + raise IndexError(f"{name} doesn't exists in the catalog") \ No newline at end of file diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index cd84a6b3..543c2e43 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -29,7 +29,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): """ def __init__(self, path): - path = str(path / 'Tools4CitiesESMF.xml') + path = str(path / 'north_america_components.xml') with open(path, 'r', encoding='utf-8') as xml: self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules']) self._generation_components = self._load_generation_components() diff --git a/hub/data/energy_systems/Tools4CitiesESMF.xml b/hub/data/energy_systems/north_america_components.xml similarity index 80% rename from hub/data/energy_systems/Tools4CitiesESMF.xml rename to hub/data/energy_systems/north_america_components.xml index 0270f61c..b4a9a71a 100644 --- a/hub/data/energy_systems/Tools4CitiesESMF.xml +++ b/hub/data/energy_systems/north_america_components.xml @@ -1,44 +1,50 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + - - - - - - - + + + - + @@ -64,5 +70,5 @@ - + diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml new file mode 100644 index 00000000..0adcff00 --- /dev/null +++ b/hub/data/energy_systems/north_america_systems.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.39.2 From 072d2a6d9d1070d4463aa0ce64cded3150f487c0 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 21 Aug 2023 17:41:12 -0400 Subject: [PATCH 025/101] modifications done to the xml file and north_america_energy_system_catalog.py --- .../north_america_energy_system_catalog.py | 272 +++++++++--------- .../north_america_components.xml | 74 ----- .../energy_systems/north_america_systems.xml | 229 +++++++++++++-- 3 files changed, 340 insertions(+), 235 deletions(-) delete mode 100644 hub/data/energy_systems/north_america_components.xml diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 543c2e43..306da80a 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -14,7 +14,7 @@ from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.emission_system import EnergyEmissionSystem +from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves from hub.catalog_factories.data_models.energy_systems.archetype import Archetype @@ -29,11 +29,11 @@ class NorthAmericaEnergySystemCatalog(Catalog): """ def __init__(self, path): - path = str(path / 'north_america_components.xml') + path = str(path / 'north_america_systems.xml') with open(path, 'r', encoding='utf-8') as xml: self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules']) - self._generation_components = self._load_generation_components() - print(self._generation_components) + # self._generation_components = self._load_generation_components() + # print(self._generation_components) self._storage_components = self._load_storage_components() print(self._storage_components) self._systems = self._load_systems() @@ -64,122 +64,126 @@ class NorthAmericaEnergySystemCatalog(Catalog): # return system_configurations - def _load_generation_components(self): - generation_components = [] - boilers = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['boilers'] - heat_pumps = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['heatPumps'] - photovoltaics = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['photovoltaicModules'] - for boiler in boilers: - boiler_model_name = boiler['@modelName'] - boiler_manufacturer = boiler['@manufacturer'] - system_type = 'boiler' - boiler_fuel_type = boiler['@fuel'] - boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) - boiler_modulation_range = float(boiler['@modulationRange']) - boiler_heat_efficiency = float(boiler['@nominalEfficiency']) - - boiler_component = GenerationSystem(boiler_model_name, - boiler_manufacturer, - system_type, - boiler_fuel_type, - boiler_nominal_thermal_output, - boiler_modulation_range, - None, - None, - boiler_heat_efficiency, - None, - None, - None, - None, - None, - None, - None, - None, - None) - generation_components.append(boiler_component) - for heat_pump in heat_pumps: - heat_pump_model_name = heat_pump['@modelName'] - heat_pump_manufacturer = heat_pump['@manufacturer'] - system_type = 'heat pump' - heat_pump_fuel_type = heat_pump['@fuel'] - heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) - heat_pump_modulation_range = float(heat_pump['@modulationRange']) - heat_pump_source_type = heat_pump['@heatSource'] - heat_pump_supply_medium = heat_pump['@supply_medium'] - heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) - heat_pump_maximum_heating_temperature = float(heat_pump['@maxHeatingSupTemperature']) - heat_pump_minimum_heating_temperature = float(heat_pump['@minHeatingSupTemperature']) - heat_pump_maximum_cooling_temperature = float(heat_pump['@maxCoolingSupTemperature']) - heat_pump_minimum_cooling_temperature = float(heat_pump['@minCoolingSupTemperature']) - - heat_pump_component = GenerationSystem(heat_pump_model_name, - heat_pump_manufacturer, - system_type, - heat_pump_fuel_type, - heat_pump_nominal_thermal_output, - heat_pump_modulation_range, - heat_pump_source_type, - heat_pump_supply_medium, - heat_pump_nominal_cop, - None, - None, - None, - None, - None, - heat_pump_maximum_heating_temperature, - heat_pump_minimum_heating_temperature, - heat_pump_maximum_cooling_temperature, - heat_pump_minimum_cooling_temperature) - generation_components.append(heat_pump_component) - for pv in photovoltaics: - nominal_ambient_temperature = float(pv['@nominalAmbientTemperature']) - nominal_cell_temperature = float(pv['@nominalCellTemperature']) - nominal_radiation = float(pv['@nominalRadiation']) - standard_test_condition_cell_temperature = float(pv['@STCCellTemperature']) - standard_test_condition_maximum_power = float(pv['@STCMaxPower']) - cell_temperature_coefficient = float(pv['@CellTemperatureCoefficient']) - width = float(pv['@width']) - height = float(pv['@height']) - pv_model_name = pv['@modelName'] - pv_manufacturer = pv['@manufacturer'] - pv_electricity_efficiency = pv['@nominalEfficiency'] - pv_nominal_electricity_output = pv['@nominalPower'] - pv_component = PvGenerationSystem(nominal_ambient_temperature, - nominal_cell_temperature, - nominal_radiation, - standard_test_condition_cell_temperature, - standard_test_condition_maximum_power, - cell_temperature_coefficient, - width, - height, - pv_model_name, - pv_manufacturer, - pv_electricity_efficiency, - pv_nominal_electricity_output) - generation_components.append(pv_component) - return generation_components + # def _load_generation_components(self): + # generation_components = [] + # boilers = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['boilers'] + # heat_pumps = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['heatPumps'] + # photovoltaics = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['photovoltaicModules'] + # for boiler in boilers: + # boiler_model_name = boiler['@modelName'] + # boiler_manufacturer = boiler['@manufacturer'] + # system_type = 'boiler' + # boiler_fuel_type = boiler['@fuel'] + # boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) + # boiler_modulation_range = float(boiler['@modulationRange']) + # boiler_heat_efficiency = float(boiler['@nominalEfficiency']) + # + # boiler_component = GenerationSystem(boiler_model_name, + # boiler_manufacturer, + # system_type, + # boiler_fuel_type, + # boiler_nominal_thermal_output, + # boiler_modulation_range, + # None, + # None, + # boiler_heat_efficiency, + # None, + # None, + # None, + # None, + # None, + # None, + # None, + # None, + # None) + # generation_components.append(boiler_component) + # for heat_pump in heat_pumps: + # heat_pump_model_name = heat_pump['@modelName'] + # heat_pump_manufacturer = heat_pump['@manufacturer'] + # system_type = 'heat pump' + # heat_pump_fuel_type = heat_pump['@fuel'] + # heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) + # heat_pump_modulation_range = float(heat_pump['@modulationRange']) + # heat_pump_source_type = heat_pump['@heatSource'] + # heat_pump_supply_medium = heat_pump['@supply_medium'] + # heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) + # heat_pump_maximum_heating_temperature = float(heat_pump['@maxHeatingSupTemperature']) + # heat_pump_minimum_heating_temperature = float(heat_pump['@minHeatingSupTemperature']) + # heat_pump_maximum_cooling_temperature = float(heat_pump['@maxCoolingSupTemperature']) + # heat_pump_minimum_cooling_temperature = float(heat_pump['@minCoolingSupTemperature']) + # + # heat_pump_component = GenerationSystem(heat_pump_model_name, + # heat_pump_manufacturer, + # system_type, + # heat_pump_fuel_type, + # heat_pump_nominal_thermal_output, + # heat_pump_modulation_range, + # heat_pump_source_type, + # heat_pump_supply_medium, + # heat_pump_nominal_cop, + # None, + # None, + # None, + # None, + # None, + # heat_pump_maximum_heating_temperature, + # heat_pump_minimum_heating_temperature, + # heat_pump_maximum_cooling_temperature, + # heat_pump_minimum_cooling_temperature) + # generation_components.append(heat_pump_component) + # for pv in photovoltaics: + # nominal_ambient_temperature = float(pv['@nominalAmbientTemperature']) + # nominal_cell_temperature = float(pv['@nominalCellTemperature']) + # nominal_radiation = float(pv['@nominalRadiation']) + # standard_test_condition_cell_temperature = float(pv['@STCCellTemperature']) + # standard_test_condition_maximum_power = float(pv['@STCMaxPower']) + # cell_temperature_coefficient = float(pv['@CellTemperatureCoefficient']) + # width = float(pv['@width']) + # height = float(pv['@height']) + # pv_model_name = pv['@modelName'] + # pv_manufacturer = pv['@manufacturer'] + # pv_electricity_efficiency = pv['@nominalEfficiency'] + # pv_nominal_electricity_output = pv['@nominalPower'] + # pv_component = PvGenerationSystem(nominal_ambient_temperature, + # nominal_cell_temperature, + # nominal_radiation, + # standard_test_condition_cell_temperature, + # standard_test_condition_maximum_power, + # cell_temperature_coefficient, + # width, + # height, + # pv_model_name, + # pv_manufacturer, + # pv_electricity_efficiency, + # pv_nominal_electricity_output) + # generation_components.append(pv_component) + # return generation_components def _load_storage_components(self): storage_components = [] - components = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['thermalStorages'] - for component in components: - model_name = component['@modelName'] - manufacturer = component['@manufacturer'] - volume = component['@volume'] - height = component['@height'] - maximum_operating_temperature = component['@maxTemp'] + thermal_storages = self._archetypes['EnergySystemCatalog']['energy_storage_components']['thermalStorages'] + for tes in thermal_storages: + storage_id = tes['@storage_id'] + name = tes['@name'] + model_name = tes['@modelName'] + manufacturer = tes['@manufacturer'] + volume = tes['@volume'] + height = tes['@height'] + maximum_operating_temperature = tes['@maxTemp'] materials = self._load_materials() - material_name = component['@insulationMaterial'] - insulation_material = self._search_material(materials, material_name) - material_name = component['@tankMaterial'] + insulation_material_name = tes['@insulationMaterial'] + insulation_material = self._search_material(materials, insulation_material_name) + material_name = tes['@tankMaterial'] tank_material = self._search_material(materials, material_name) - thickness = float(component['@insulationThickness']) / 100 # from cm to m + thickness = float(tes['@insulationThickness']) / 100 # from cm to m insulation_layer = Layer(None, 'insulation', insulation_material, thickness) - thickness = float(component['@tankThickness']) / 100 # from cm to m + thickness = float(tes['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'insulation', tank_material, thickness) # the convention is from outside to inside layers = [insulation_layer, tank_layer] - storage_component = EnergyStorageSystem(model_name, + storage_component = EnergyStorageSystem(storage_id, + name, + model_name, manufacturer, 'thermal', volume, @@ -194,32 +198,32 @@ class NorthAmericaEnergySystemCatalog(Catalog): storage_components.append(storage_component) return storage_components - def _load_systems(self): - systems = [] - catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] - for catalog_system in catalog_systems: - system_configuration = catalog_system['@configurationName'] - demands = catalog_system['demands'] - demand_types = [] - for demand in demands: - name = demand['@name'] - demand_types.append(name) - energy_system = System(None, - None, - system_configuration, - demand_types, - None, - None, - None, - None, - None, - None) - systems.append(energy_system) - return systems + # def _load_systems(self): + # systems = [] + # catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] + # for catalog_system in catalog_systems: + # system_configuration = catalog_system['@configurationName'] + # demands = catalog_system['demands'] + # demand_types = [] + # for demand in demands: + # name = demand['@name'] + # demand_types.append(name) + # energy_system = System(None, + # None, + # system_configuration, + # demand_types, + # None, + # None, + # None, + # None, + # None, + # None) + # systems.append(energy_system) + # return systems def _load_materials(self): materials = [] - _materials = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['materials'] + _materials = self._archetypes['EnergySystemCatalog']['materials']['material'] for _material in _materials: name = _material['@name'] thermal_conductivity = _material['@thermalConductivity'] diff --git a/hub/data/energy_systems/north_america_components.xml b/hub/data/energy_systems/north_america_components.xml deleted file mode 100644 index b4a9a71a..00000000 --- a/hub/data/energy_systems/north_america_components.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 0adcff00..c9618448 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -1,29 +1,204 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + COP + source_temperature + supply_temperature + + + + + + COP + source_temperature + supply_temperature + + + + + + COP + source_temperature + supply_temperature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Air Source Heat Pump with Natural Gas Boiler and thermal storage + + 1 + 2 + + + 16 + 18 + 6 + + + + Air Source Heat Pump with Electrical Boiler and thermal storage + + 1 + 2 + + + 17 + 18 + 6 + + + + Ground Source Heat Pump with Natural Gas Boiler and thermal storage + + 1 + 2 + + + 16 + 19 + 6 + + + + Ground Source Heat Pump with Electrical Boiler and thermal storage + + 1 + 2 + + + 17 + 19 + 6 + + + + Water Source Heat Pump with Natural Gas Boiler and thermal storage + + 1 + 2 + + + 16 + 20 + 6 + + + + Water Source Heat Pump with Electrical Boiler and thermal storage + + 1 + 2 + + + 17 + 20 + 6 + + + + Photovoltaic System + + 3 + + + 21 + + + + + + PV+ASHP+GasBoiler+TES + + 7 + 1 + + + + PV+ASHP+ElectricBoiler+TES + + 7 + 2 + + + + PV+GSHP+GasBoiler+TES + + 7 + 3 + + + + PV+GSHP+ElectricBoiler+TES + + 7 + 4 + + + + PV+WSHP+GasBoiler+TES + + 7 + 5 + + + + PV+WSHP+ElectricBoiler+TES + + 7 + 6 + + + + + + + + + + -- 2.39.2 From 9b0bdf2b7e7ad883ca201bc843197fe9bdd2d969 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 22 Aug 2023 19:09:35 -0400 Subject: [PATCH 026/101] load_generation and load_storage in north_america_energy_system_catalog.py is completed --- .../energy_systems/generation_system.py | 1 - .../data_models/energy_systems/system.py | 44 +- .../north_america_energy_system_catalog.py | 417 ++++++++++++------ .../energy_systems/north_america_systems.xml | 14 +- 4 files changed, 296 insertions(+), 180 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index 7fdc3130..7c382dee 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -54,7 +54,6 @@ class GenerationSystem: self._cooling_output_curve = cooling_output_curve self._cooling_fuel_consumption_curve = cooling_fuel_consumption_curve self._cooling_efficiency_curve = cooling_efficiency_curve - self._storage = storage self._auxiliary_equipment = auxiliary_equipment diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 299b82c7..dc1337ca 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -9,10 +9,8 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from typing import Union, List from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem -from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem @@ -24,24 +22,20 @@ class System: def __init__(self, lod, system_id, - system_configuration, + name, demand_types, generation_systems, - pv_generation_system, distribution_system, emission_system, - energy_storage_systems, - performance_curves): + energy_storage_systems): self._lod = lod self._system_id = system_id - self._system_configuration = system_configuration + self._name = name self._demand_types = demand_types self._distribution_system = distribution_system self._emission_system = emission_system self._generation_systems = generation_systems - self._pv_generation_system = pv_generation_system self._energy_storage_systems = energy_storage_systems - self._performance_curves = performance_curves @property def lod(self): @@ -60,13 +54,12 @@ class System: return self._system_id @property - def system_configuration(self): + def name(self): """ - Get the system configuration from ['hp_tes', 'hp_boiler_tes', 'pv_hp', 'pv_battery', 'pv', 'pv_hp_tes', - 'pv_hp_battery_tes'] + Get the system name :return: string """ - return self._system_configuration + return self._name @property def demand_types(self): @@ -84,14 +77,6 @@ class System: """ return self._generation_systems - @property - def pv_generation_system(self) -> Union[None, PvGenerationSystem]: - """ - Get pv generation system - :return: ElectricityGenerationSystem - """ - return self._pv_generation_system - @property def distribution_system(self) -> Union[None, DistributionSystem]: """ @@ -116,22 +101,11 @@ class System: """ return self._energy_storage_systems - @property - def performance_curves(self) -> Union[None, List[PerformanceCurves]]: - """ - Get the list of all performance curves associated with components - :return: PerformanceCurves - """ - return self._performance_curves - def to_dictionary(self): """Class content to dictionary""" _generation_systems = [] for _generation in self.generation_systems: _generation_systems.append(_generation.to_dictionary()) - _pv_system = None - if self.pv_generation_system is not None: - _pv_system = self.pv_generation_system.to_dictionary() _distribution_system = None if self.distribution_system is not None: _distribution_system = self.distribution_system.to_dictionary() @@ -140,19 +114,15 @@ class System: _emission_system = self.emission_system.to_dictionary() _storage_system = [_storage.to_dictionary() for _storage in self.energy_storage_system] if self.energy_storage_system is not None else None - _performance_curves = [_curve.to_dictionary() for _curve in - self.performance_curves] if self.performance_curves is not None else None content = {'Layer': {'id': self.id, - 'name': self.system_configuration, + 'name': self.name, 'level of detail': self.lod, 'demand types': self.demand_types, 'Generation system(s)': _generation_systems, - 'electricity generation system': _pv_system, 'distribution system': _distribution_system, 'emission system': _emission_system, 'energy storage system': _storage_system, - 'performance curves': _performance_curves } } return content diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 306da80a..e0f7a3de 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -31,137 +31,257 @@ class NorthAmericaEnergySystemCatalog(Catalog): def __init__(self, path): path = str(path / 'north_america_systems.xml') with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules']) - # self._generation_components = self._load_generation_components() - # print(self._generation_components) + self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules', 'templateStorages']) + self._generation_components = self._load_generation_components() + print(self._generation_components) + print(len(self._generation_components)) self._storage_components = self._load_storage_components() print(self._storage_components) - self._systems = self._load_systems() - print(self._load_systems()) + # self._systems = self._load_systems() + # print(self._load_systems()) - # self._system_archetypes = self._load_system_archetypes() + def _load_generation_components(self): + generation_components = [] + boilers = self._archetypes['EnergySystemCatalog']['energy_generation_components']['boilers'] + heat_pumps = self._archetypes['EnergySystemCatalog']['energy_generation_components']['heatPumps'] + photovoltaics = self._archetypes['EnergySystemCatalog']['energy_generation_components']['photovoltaicModules'] + templates = self._archetypes['EnergySystemCatalog']['energy_generation_components']['templateGenerationEquipments'] + for boiler in boilers: + boiler_id = boiler['@generation_id'] + boiler_name = boiler['@name'] + boiler_model_name = boiler['@modelName'] + boiler_manufacturer = boiler['@manufacturer'] + system_type = 'boiler' + boiler_fuel_type = boiler['@fuel'] + boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) + boiler_maximum_heat_output = float(boiler['@modulationRange']) + boiler_heat_efficiency = float(boiler['@nominalEfficiency']) - # store the full catalog data model in self._content - # self._content = Content(self._system_archetypes, - # self._systems, - # self._generation_components, - # None, - # None, - # self._storage_components) -# def _load_systems(self): -# systems = [] -# catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] -# for catalog_system in catalog_systems: - # look for the demands and add it to demands[] - # look for the components in self._generation_systems and add them to generation_systems[] - # same with emission and distribution and storage -# System(None, -# None, -# catalog_system['@configurationName'], -# demands, -# generation_systems,... -# ) + boiler_component = GenerationSystem(boiler_id, + boiler_name, + boiler_model_name, + boiler_manufacturer, + system_type, + boiler_fuel_type, + boiler_nominal_thermal_output, + None, + None, + None, + None, + boiler_heat_efficiency, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None) + generation_components.append(boiler_component) + for heat_pump in heat_pumps: + heat_pump_id = heat_pump['@generation_id'] + heat_pump_name = heat_pump['@name'] + heat_pump_model_name = heat_pump['@modelName'] + heat_pump_manufacturer = heat_pump['@manufacturer'] + system_type = 'heat pump' + heat_pump_fuel_type = heat_pump['@fuel'] + heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) + heat_pump_modulation_range = float(heat_pump['@modulationRange']) + heat_pump_source_type = heat_pump['@heatSource'] + heat_pump_supply_medium = heat_pump['@supply_medium'] + heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) + heat_pump_maximum_heating_temperature = float(heat_pump['@maxHeatingSupTemperature']) + heat_pump_minimum_heating_temperature = float(heat_pump['@minHeatingSupTemperature']) + heat_pump_maximum_cooling_temperature = float(heat_pump['@maxCoolingSupTemperature']) + heat_pump_minimum_cooling_temperature = float(heat_pump['@minCoolingSupTemperature']) + cop_curve_type = heat_pump['performance_curve']['@curve_type'] + parameters = heat_pump['performance_curve']['parameters'] + coefficients = list(heat_pump['performance_curve']['coefficients'].values()) + cop_curve = PerformanceCurves(cop_curve_type, parameters, coefficients) -# return system_configurations + heat_pump_component = GenerationSystem(heat_pump_id, + heat_pump_name, + heat_pump_model_name, + heat_pump_manufacturer, + system_type, + heat_pump_fuel_type, + heat_pump_nominal_thermal_output, + None, + None, + heat_pump_source_type, + heat_pump_supply_medium, + heat_pump_nominal_cop, + None, + None, + None, + None, + None, + None, + None, + None, + heat_pump_maximum_heating_temperature, + heat_pump_minimum_heating_temperature, + heat_pump_maximum_cooling_temperature, + heat_pump_minimum_cooling_temperature, + None, + None, + cop_curve, + None, + None, + None, + None, + None) + generation_components.append(heat_pump_component) + for pv in photovoltaics: + pv_id = pv['@generation_id'] + pv_name = pv['@name'] + pv_model_name = pv['@modelName'] + pv_manufacturer = pv['@manufacturer'] + pv_electricity_efficiency = pv['@nominalEfficiency'] + pv_nominal_electricity_output = pv['@nominalPower'] + nominal_ambient_temperature = float(pv['@nominalAmbientTemperature']) + nominal_cell_temperature = float(pv['@nominalCellTemperature']) + nominal_radiation = float(pv['@nominalRadiation']) + standard_test_condition_cell_temperature = float(pv['@STCCellTemperature']) + standard_test_condition_maximum_power = float(pv['@STCMaxPower']) + cell_temperature_coefficient = float(pv['@CellTemperatureCoefficient']) + width = float(pv['@width']) + height = float(pv['@height']) - # def _load_generation_components(self): - # generation_components = [] - # boilers = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['boilers'] - # heat_pumps = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['heatPumps'] - # photovoltaics = self._archetypes['encomp:EnergySystemCatalog']['energycomponent']['photovoltaicModules'] - # for boiler in boilers: - # boiler_model_name = boiler['@modelName'] - # boiler_manufacturer = boiler['@manufacturer'] - # system_type = 'boiler' - # boiler_fuel_type = boiler['@fuel'] - # boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) - # boiler_modulation_range = float(boiler['@modulationRange']) - # boiler_heat_efficiency = float(boiler['@nominalEfficiency']) - # - # boiler_component = GenerationSystem(boiler_model_name, - # boiler_manufacturer, - # system_type, - # boiler_fuel_type, - # boiler_nominal_thermal_output, - # boiler_modulation_range, - # None, - # None, - # boiler_heat_efficiency, - # None, - # None, - # None, - # None, - # None, - # None, - # None, - # None, - # None) - # generation_components.append(boiler_component) - # for heat_pump in heat_pumps: - # heat_pump_model_name = heat_pump['@modelName'] - # heat_pump_manufacturer = heat_pump['@manufacturer'] - # system_type = 'heat pump' - # heat_pump_fuel_type = heat_pump['@fuel'] - # heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) - # heat_pump_modulation_range = float(heat_pump['@modulationRange']) - # heat_pump_source_type = heat_pump['@heatSource'] - # heat_pump_supply_medium = heat_pump['@supply_medium'] - # heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) - # heat_pump_maximum_heating_temperature = float(heat_pump['@maxHeatingSupTemperature']) - # heat_pump_minimum_heating_temperature = float(heat_pump['@minHeatingSupTemperature']) - # heat_pump_maximum_cooling_temperature = float(heat_pump['@maxCoolingSupTemperature']) - # heat_pump_minimum_cooling_temperature = float(heat_pump['@minCoolingSupTemperature']) - # - # heat_pump_component = GenerationSystem(heat_pump_model_name, - # heat_pump_manufacturer, - # system_type, - # heat_pump_fuel_type, - # heat_pump_nominal_thermal_output, - # heat_pump_modulation_range, - # heat_pump_source_type, - # heat_pump_supply_medium, - # heat_pump_nominal_cop, - # None, - # None, - # None, - # None, - # None, - # heat_pump_maximum_heating_temperature, - # heat_pump_minimum_heating_temperature, - # heat_pump_maximum_cooling_temperature, - # heat_pump_minimum_cooling_temperature) - # generation_components.append(heat_pump_component) - # for pv in photovoltaics: - # nominal_ambient_temperature = float(pv['@nominalAmbientTemperature']) - # nominal_cell_temperature = float(pv['@nominalCellTemperature']) - # nominal_radiation = float(pv['@nominalRadiation']) - # standard_test_condition_cell_temperature = float(pv['@STCCellTemperature']) - # standard_test_condition_maximum_power = float(pv['@STCMaxPower']) - # cell_temperature_coefficient = float(pv['@CellTemperatureCoefficient']) - # width = float(pv['@width']) - # height = float(pv['@height']) - # pv_model_name = pv['@modelName'] - # pv_manufacturer = pv['@manufacturer'] - # pv_electricity_efficiency = pv['@nominalEfficiency'] - # pv_nominal_electricity_output = pv['@nominalPower'] - # pv_component = PvGenerationSystem(nominal_ambient_temperature, - # nominal_cell_temperature, - # nominal_radiation, - # standard_test_condition_cell_temperature, - # standard_test_condition_maximum_power, - # cell_temperature_coefficient, - # width, - # height, - # pv_model_name, - # pv_manufacturer, - # pv_electricity_efficiency, - # pv_nominal_electricity_output) - # generation_components.append(pv_component) - # return generation_components + pv_component = PvGenerationSystem(pv_id, + pv_name, + pv_model_name, + pv_manufacturer, + pv_electricity_efficiency, + pv_nominal_electricity_output, + nominal_ambient_temperature, + nominal_cell_temperature, + nominal_radiation, + standard_test_condition_cell_temperature, + standard_test_condition_maximum_power, + cell_temperature_coefficient, + width, + height) + generation_components.append(pv_component) + for template in templates: + system_id = template['@generation_id'] + system_name = template['@name'] + if "Boiler" in system_name: + system_type = 'boiler' + fuel_type = template['@fuel'] + heat_efficiency = float(template['@nominalEfficiency']) + source_medium = None + supply_medium = None + boiler_template = GenerationSystem(system_id, + system_name, + None, + None, + system_type, + fuel_type, + None, + None, + None, + source_medium, + supply_medium, + heat_efficiency, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None) + generation_components.append(boiler_template) + elif "Heat Pump" in system_name: + system_type = 'heat pump' + fuel_type = template['@fuel'] + heat_efficiency = template['@nominalCOP'] + source_medium = template['@heatSource'] + supply_medium = template['@supply_medium'] + heat_pump_template = GenerationSystem(system_id, + system_name, + None, + None, + system_type, + fuel_type, + None, + None, + None, + source_medium, + supply_medium, + heat_efficiency, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None) + generation_components.append(heat_pump_template) + else: + electricity_efficiency = float(template['@nominalEfficiency']) + height = float(template['@height']) + width = float(template['@width']) + pv_template = PvGenerationSystem(system_id, + system_name, + None, + None, + electricity_efficiency, + None, + None, + None, + None, + None, + None, + None, + width, + height) + generation_components.append(pv_template) + + return generation_components def _load_storage_components(self): storage_components = [] thermal_storages = self._archetypes['EnergySystemCatalog']['energy_storage_components']['thermalStorages'] + template_storages = self._archetypes['EnergySystemCatalog']['energy_storage_components']['templateStorages'] for tes in thermal_storages: storage_id = tes['@storage_id'] name = tes['@name'] @@ -196,30 +316,57 @@ class NorthAmericaEnergySystemCatalog(Catalog): layers, maximum_operating_temperature) storage_components.append(storage_component) + + for template in template_storages: + storage_id = template['@storage_id'] + name = template['@name'] + maximum_temperature = template['@maxTemp'] + materials = self._load_materials() + insulation_material_name = template['@insulationMaterial'] + insulation_material = self._search_material(materials, insulation_material_name) + material_name = template['@tankMaterial'] + tank_material = self._search_material(materials, material_name) + thickness = float(template['@insulationThickness']) / 100 # from cm to m + insulation_layer = Layer(None, 'insulation', insulation_material, thickness) + thickness = float(template['@tankThickness']) / 100 # from cm to m + tank_layer = Layer(None, 'insulation', tank_material, thickness) + # the convention is from outside to inside + layers = [insulation_layer, tank_layer] + storage_component = EnergyStorageSystem(storage_id, + name, + None, + None, + 'thermal', + None, + None, + None, + None, + None, + None, + None, + layers, + maximum_temperature) + storage_components.append(storage_component) return storage_components # def _load_systems(self): - # systems = [] - # catalog_systems = self._archetypes['encomp:EnergySystemCatalog']['energysystemconfiguration'] - # for catalog_system in catalog_systems: - # system_configuration = catalog_system['@configurationName'] - # demands = catalog_system['demands'] - # demand_types = [] - # for demand in demands: - # name = demand['@name'] - # demand_types.append(name) + # _catalog_systems = [] + # systems = self._archetypes['EnergySystemCatalog']['systems']['system'] + # for system in systems: + # system_id = system['@id'] + # name = system['@name'] + # generation_components = + # # energy_system = System(None, - # None, - # system_configuration, - # demand_types, + # system_id, # None, # None, # None, # None, # None, # None) - # systems.append(energy_system) - # return systems + # _catalog_systems.append(energy_system) + # return _catalog_systems def _load_materials(self): materials = [] diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index c9618448..0f8f8728 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -40,12 +40,12 @@ - - - - - - + + + + + + @@ -59,7 +59,7 @@ - + -- 2.39.2 From 3deb63b14a4bb36a07554b5e9b4d2c8ae0917f39 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 23 Aug 2023 17:09:55 -0400 Subject: [PATCH 027/101] north_america_energy_system_catalog.py is completed montreal_custom_catalog.py is fixed --- .../energy_systems/energy_storage_system.py | 4 +- .../data_models/energy_systems/system.py | 18 +- .../energy_systems/montreal_custom_catalog.py | 26 ++- .../north_america_energy_system_catalog.py | 176 ++++++++++++++---- .../energy_systems/north_america_systems.xml | 26 +-- tests/test_systems_catalog.py | 3 + 6 files changed, 190 insertions(+), 63 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index f898af34..be1c4413 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -34,7 +34,7 @@ class EnergyStorageSystem: self._maximum_operating_temperature = maximum_operating_temperature @property - def stroage_id(self): + def id(self): """ Get storage id :return: string @@ -151,7 +151,7 @@ class EnergyStorageSystem: for _layer in self.layers: _layers.append(_layer.to_dictionary()) content = {'Storage component': { - 'storage id': self.stroage_id, + 'storage id': self.id, 'name': self.name, 'model name': self.model_name, 'manufacturer': self.manufacturer, diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index dc1337ca..96d8a08c 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -115,14 +115,14 @@ class System: _storage_system = [_storage.to_dictionary() for _storage in self.energy_storage_system] if self.energy_storage_system is not None else None - content = {'Layer': {'id': self.id, - 'name': self.name, - 'level of detail': self.lod, - 'demand types': self.demand_types, - 'Generation system(s)': _generation_systems, - 'distribution system': _distribution_system, - 'emission system': _emission_system, - 'energy storage system': _storage_system, - } + content = {'system': {'id': self.id, + 'name': self.name, + 'level of detail': self.lod, + 'demand types': self.demand_types, + 'Generation system(s)': _generation_systems, + 'distribution system': _distribution_system, + 'emission system': _emission_system, + 'energy storage system': _storage_system, + } } return content diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 0336c940..d8c7630c 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -40,7 +40,8 @@ class MontrealCustomCatalog(Catalog): self._catalog_systems, self._catalog_generation_equipments, self._catalog_distribution_equipments, - self._catalog_emission_equipments) + self._catalog_emission_equipments, + storages=None) def _load_generation_equipments(self): _equipments = [] @@ -62,14 +63,34 @@ class MontrealCustomCatalog(Catalog): storage = literal_eval(equipment['storage'].capitalize()) generation_system = GenerationSystem(equipment_id, name, + None, + None, equipment_type, fuel_type, None, + None, + None, + None, + None, heating_efficiency, + None, + None, + None, cooling_efficiency, electricity_efficiency, None, None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, + None, storage, None) @@ -153,7 +174,8 @@ class MontrealCustomCatalog(Catalog): demands, _generation_equipment, _distribution_equipment, - _emission_equipment)) + _emission_equipment, + energy_storage_systems=None)) return _catalog_systems def _load_archetypes(self): diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index e0f7a3de..b4783f71 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -6,21 +6,18 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from ast import literal_eval + import xmltodict from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem -from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves from hub.catalog_factories.data_models.energy_systems.archetype import Archetype from hub.catalog_factories.data_models.construction.material import Material from hub.catalog_factories.data_models.construction.layer import Layer -import hub.helpers.constants as cte class NorthAmericaEnergySystemCatalog(Catalog): @@ -33,12 +30,16 @@ class NorthAmericaEnergySystemCatalog(Catalog): with open(path, 'r', encoding='utf-8') as xml: self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules', 'templateStorages']) self._generation_components = self._load_generation_components() - print(self._generation_components) - print(len(self._generation_components)) self._storage_components = self._load_storage_components() - print(self._storage_components) - # self._systems = self._load_systems() - # print(self._load_systems()) + self._systems = self._load_systems() + self._system_archetypes = self._load_archetypes() + print(self._system_archetypes) + self._content = Content(self._system_archetypes, + self._systems, + self._generation_components, + None, + None, + self._storage_components) def _load_generation_components(self): generation_components = [] @@ -299,7 +300,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(tes['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'insulation', tank_material, thickness) - # the convention is from outside to inside + # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = EnergyStorageSystem(storage_id, name, @@ -330,7 +331,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(template['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'insulation', tank_material, thickness) - # the convention is from outside to inside + # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = EnergyStorageSystem(storage_id, name, @@ -349,24 +350,44 @@ class NorthAmericaEnergySystemCatalog(Catalog): storage_components.append(storage_component) return storage_components - # def _load_systems(self): - # _catalog_systems = [] - # systems = self._archetypes['EnergySystemCatalog']['systems']['system'] - # for system in systems: - # system_id = system['@id'] - # name = system['@name'] - # generation_components = - # - # energy_system = System(None, - # system_id, - # None, - # None, - # None, - # None, - # None, - # None) - # _catalog_systems.append(energy_system) - # return _catalog_systems + def _load_systems(self): + _catalog_systems = [] + systems = self._archetypes['EnergySystemCatalog']['systems']['system'] + for system in systems: + system_id = system['@id'] + name = system['name'] + demands = system['demands']['demand'] + generation_components = system['components']['generation_id'] + generation_systems = self._search_generation_equipment(self._load_generation_components(), generation_components) + if 'storage_id' in system['components'].keys(): + storage_components = system['components']['storage_id'] + storage_systems = self._search_storage_equipment(self._load_storage_components(), storage_components) + else: + storage_systems = None + energy_system = System(None, + system_id, + name, + demands, + generation_systems, + None, + None, + storage_systems) + _catalog_systems.append(energy_system) + return _catalog_systems + + def _load_archetypes(self): + _system_archetypes = [] + system_clusters = self._archetypes['EnergySystemCatalog']['system_archetypes']['system_archetype'] + for system_cluster in system_clusters: + name = system_cluster['name'] + systems = system_cluster['systems']['system_id'] + _systems = [] + for system in systems: + for system_archetype in self._systems: + if int(system_archetype.id) == int(system): + _systems.append(system_archetype) + _system_archetypes.append(Archetype(None, name, _systems)) + return _system_archetypes def _load_materials(self): materials = [] @@ -398,12 +419,93 @@ class NorthAmericaEnergySystemCatalog(Catalog): if _material is None: raise ValueError(f'Material not found in catalog [{material_name}]') - def _load_demands(self): - demands = [] - _demands = self._archetypes['encomp:EnergySystemCatalog']['energydemand'] - for _demand in _demands: - demand_type = _demand['@name'] - demands.append(demand_type) - return demands + @staticmethod + def _search_generation_equipment(generation_systems, generation_id): + _generation_systems = [] + for generation in generation_systems: + if generation.id in generation_id: + _generation_systems.append(generation) + if len(_generation_systems) == 0: + _generation_systems = None + raise ValueError(f'The system with the following id is not found in catalog [{generation_id}]') + return _generation_systems - # def _search_demands(self, config_name): + @staticmethod + def _search_storage_equipment(storage_systems, storage_id): + _storage_systems = [] + for storage in storage_systems: + if storage.id in storage_id: + _storage_systems.append(storage) + if len(_storage_systems) == 0: + _storage_systems_systems = None + raise ValueError(f'The system with the following id is not found in catalog [{storage_id}]') + return _storage_systems + + def names(self, category=None): + """ + Get the catalog elements names + :parm: optional category filter + """ + if category is None: + _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'storage_equipments': []} + for archetype in self._content.archetypes: + _names['archetypes'].append(archetype.name) + for system in self._content.systems: + _names['systems'].append(system.name) + for equipment in self._content.generation_equipments: + _names['generation_equipments'].append(equipment.name) + for equipment in self._content.storage_equipments: + _names['storage_equipments'].append(equipment.name) + else: + _names = {category: []} + if category.lower() == 'archetypes': + for archetype in self._content.archetypes: + _names[category].append(archetype.name) + elif category.lower() == 'systems': + for system in self._content.systems: + _names[category].append(system.name) + elif category.lower() == 'generation_equipments': + for system in self._content.generation_equipments: + _names[category].append(system.name) + elif category.lower() == 'storage_equipments': + for system in self._content.storage_equipments: + _names[category].append(system.name) + else: + raise ValueError(f'Unknown category [{category}]') + return _names + + def entries(self, category=None): + """ + Get the catalog elements + :parm: optional category filter + """ + if category is None: + return self._content + if category.lower() == 'archetypes': + return self._content.archetypes + if category.lower() == 'systems': + return self._content.systems + if category.lower() == 'generation_equipments': + return self._content.generation_equipments + if category.lower() == 'storage_equipments': + return self._content.storage_equipments + raise ValueError(f'Unknown category [{category}]') + + def get_entry(self, name): + """ + Get one catalog element by names + :parm: entry name + """ + for entry in self._content.archetypes: + if entry.name.lower() == name.lower(): + return entry + for entry in self._content.systems: + if entry.name.lower() == name.lower(): + return entry + for entry in self._content.generation_equipments: + if entry.name.lower() == name.lower(): + return entry + for entry in self._content.storage_equipments: + if entry.name.lower() == name.lower(): + return entry + raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 0f8f8728..4584ac16 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -71,8 +71,8 @@ Air Source Heat Pump with Natural Gas Boiler and thermal storage - 1 - 2 + heating + domestic_hot_water 16 @@ -83,8 +83,8 @@ Air Source Heat Pump with Electrical Boiler and thermal storage - 1 - 2 + heating + domestic_hot_water 17 @@ -95,8 +95,8 @@ Ground Source Heat Pump with Natural Gas Boiler and thermal storage - 1 - 2 + heating + domestic_hot_water 16 @@ -107,8 +107,8 @@ Ground Source Heat Pump with Electrical Boiler and thermal storage - 1 - 2 + heating + domestic_hot_water 17 @@ -119,8 +119,8 @@ Water Source Heat Pump with Natural Gas Boiler and thermal storage - 1 - 2 + heating + domestic_hot_water 16 @@ -131,8 +131,8 @@ Water Source Heat Pump with Electrical Boiler and thermal storage - 1 - 2 + heating + domestic_hot_water 17 @@ -143,7 +143,7 @@ Photovoltaic System - 3 + electricity 21 diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 48446d50..8747acb4 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -37,3 +37,6 @@ class TestSystemsCatalog(TestCase): def test_north_america_systems_catalog(self): catalog = EnergySystemsCatalogFactory('north_america').catalog + + def test_montreal_catalog(self): + catalog = EnergySystemsCatalogFactory('montreal_custom').catalog -- 2.39.2 From fe0a2d3003682ae9abede4557bf638d02436e8a5 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 24 Aug 2023 15:09:17 -0400 Subject: [PATCH 028/101] north_america_energy_system_catalog.py is completed and all the bugs have been resolved. --- .../energy_systems/pv_generation_system.py | 4 +++- .../north_america_energy_system_catalog.py | 24 ++++++++++++------- tests/test_systems_catalog.py | 4 ++-- 3 files changed, 21 insertions(+), 11 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 5c03c3f3..9bc50823 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -110,7 +110,9 @@ class PvGenerationSystem(GenerationSystem): def to_dictionary(self): """Class content to dictionary""" - content = {'Photovoltaic Module': { + content = {'Energy Generation component': { + 'id': self.id, + 'name': self.name, 'model name': self.model_name, 'manufacturer': self.manufacturer, 'type': self.system_type, diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index b4783f71..6a414703 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -33,13 +33,13 @@ class NorthAmericaEnergySystemCatalog(Catalog): self._storage_components = self._load_storage_components() self._systems = self._load_systems() self._system_archetypes = self._load_archetypes() - print(self._system_archetypes) self._content = Content(self._system_archetypes, self._systems, self._generation_components, None, None, self._storage_components) + print(self._content) def _load_generation_components(self): generation_components = [] @@ -381,11 +381,11 @@ class NorthAmericaEnergySystemCatalog(Catalog): for system_cluster in system_clusters: name = system_cluster['name'] systems = system_cluster['systems']['system_id'] + integer_system_ids = [int(item) for item in systems] _systems = [] - for system in systems: - for system_archetype in self._systems: - if int(system_archetype.id) == int(system): - _systems.append(system_archetype) + for system_archetype in self._systems: + if int(system_archetype.id) in integer_system_ids: + _systems.append(system_archetype) _system_archetypes.append(Archetype(None, name, _systems)) return _system_archetypes @@ -422,9 +422,17 @@ class NorthAmericaEnergySystemCatalog(Catalog): @staticmethod def _search_generation_equipment(generation_systems, generation_id): _generation_systems = [] - for generation in generation_systems: - if generation.id in generation_id: - _generation_systems.append(generation) + if type(generation_id) == list: + integer_ids = [int(item) for item in generation_id] + for generation in generation_systems: + if int(generation.id) in integer_ids: + _generation_systems.append(generation) + else: + integer_id = int(generation_id) + for generation in generation_systems: + if int(generation.id) == integer_id: + _generation_systems.append(generation) + if len(_generation_systems) == 0: _generation_systems = None raise ValueError(f'The system with the following id is not found in catalog [{generation_id}]') diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 8747acb4..2fb40758 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -38,5 +38,5 @@ class TestSystemsCatalog(TestCase): def test_north_america_systems_catalog(self): catalog = EnergySystemsCatalogFactory('north_america').catalog - def test_montreal_catalog(self): - catalog = EnergySystemsCatalogFactory('montreal_custom').catalog + # def test_montreal_catalog(self): + # catalog = EnergySystemsCatalogFactory('montreal_custom').catalog -- 2.39.2 From 43e5bb7310767a71032a28fbf5aed750aa7f73cc Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Fri, 25 Aug 2023 10:22:46 -0400 Subject: [PATCH 029/101] nothing is changed --- .../energy_systems/montreal_custom_catalog.py | 1 - tests/test_systems_catalog.py | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index d8c7630c..39707c0b 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -34,7 +34,6 @@ class MontrealCustomCatalog(Catalog): self._catalog_emission_equipments = self._load_emission_equipments() self._catalog_systems = self._load_systems() self._catalog_archetypes = self._load_archetypes() - # store the full catalog data model in self._content self._content = Content(self._catalog_archetypes, self._catalog_systems, diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 2fb40758..0f9ee878 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -35,8 +35,8 @@ class TestSystemsCatalog(TestCase): with self.assertRaises(IndexError): catalog.get_entry('unknown') - def test_north_america_systems_catalog(self): - catalog = EnergySystemsCatalogFactory('north_america').catalog + # def test_north_america_systems_catalog(self): + # catalog = EnergySystemsCatalogFactory('north_america').catalog - # def test_montreal_catalog(self): - # catalog = EnergySystemsCatalogFactory('montreal_custom').catalog + def test_montreal_catalog(self): + catalog = EnergySystemsCatalogFactory('montreal_custom').catalog -- 2.39.2 From 5d4813f2f609167b7d4c4793fc11a9b505a1a360 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Mon, 28 Aug 2023 10:18:18 -0400 Subject: [PATCH 030/101] some changes in code to be reviewed by Saeed --- .../energy_systems/distribution_system.py | 2 -- .../energy_systems/energy_storage_system.py | 4 +-- .../energy_systems/generation_system.py | 28 +++++++++---------- .../energy_systems/performance_curves.py | 17 +++++++---- .../energy_systems/pv_generation_system.py | 8 +++--- .../data_models/energy_systems/system.py | 1 + .../north_america_energy_system_catalog.py | 4 +-- .../energy_systems/north_america_systems.xml | 6 ++-- tests/test_systems_catalog.py | 4 +-- 9 files changed, 40 insertions(+), 34 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index 1e4aa96f..cac9b2b3 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -6,8 +6,6 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from hub.catalog_factories.data_models.construction.material import Material - class DistributionSystem: """ diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index be1c4413..98523ac2 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -2,8 +2,8 @@ Energy System catalog heat generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from __future__ import annotations diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index 7c382dee..afc7c5c4 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -20,7 +20,7 @@ class GenerationSystem: maximum_heat_output, minimum_heat_output, source_medium, supply_medium, heat_efficiency, nominal_cooling_output, maximum_cooling_output, minimum_cooling_output, cooling_efficiency, electricity_efficiency, source_temperature, source_mass_flow, nominal_electricity_output, - maximum_heating_supply_temperature, minimum_heating_supply_temperature, + maximum_heat_supply_temperature, minimum_heat_supply_temperature, maximum_cooling_supply_temperature, minimum_cooling_supply_temperature, heat_output_curve, heat_fuel_consumption_curve, heat_efficiency_curve, cooling_output_curve, cooling_fuel_consumption_curve, cooling_efficiency_curve, storage, auxiliary_equipment): @@ -33,19 +33,19 @@ class GenerationSystem: self._nominal_thermal_output = nominal_thermal_output self._maximum_heat_output = maximum_heat_output self._minimum_heat_output = minimum_heat_output - self._source_medium = source_medium - self._supply_medium = supply_medium self._heat_efficiency = heat_efficiency self._nominal_cooling_output = nominal_cooling_output self._maximum_cooling_output = maximum_cooling_output self._minimum_cooling_output = minimum_cooling_output self._cooling_efficiency = cooling_efficiency self._electricity_efficiency = electricity_efficiency + self._nominal_electricity_output = nominal_electricity_output + self._source_medium = source_medium self._source_temperature = source_temperature self._source_mass_flow = source_mass_flow - self._nominal_electricity_output = nominal_electricity_output - self._maximum_heating_supply_temperature = maximum_heating_supply_temperature - self._minimum_heating_supply_temperature = minimum_heating_supply_temperature + self._supply_medium = supply_medium + self._maximum_heat_supply_temperature = maximum_heat_supply_temperature + self._minimum_heat_supply_temperature = minimum_heat_supply_temperature self._maximum_cooling_supply_temperature = maximum_cooling_supply_temperature self._minimum_cooling_supply_temperature = minimum_cooling_supply_temperature self._heat_output_curve = heat_output_curve @@ -218,20 +218,20 @@ class GenerationSystem: return self._nominal_electricity_output @property - def maximum_heating_supply_temperature(self): + def maximum_heat_supply_temperature(self): """ - Get the maximum heating supply temperature in degree Celsius + Get the maximum heat supply temperature in degree Celsius :return: float """ - return self._minimum_heating_supply_temperature + return self._minimum_heat_supply_temperature @property - def minimum_heating_supply_temperature(self): + def minimum_heat_supply_temperature(self): """ - Get the minimum heating supply temperature in degree Celsius + Get the minimum heat supply temperature in degree Celsius :return: float """ - return self._minimum_heating_supply_temperature + return self._minimum_heat_supply_temperature @property def maximum_cooling_supply_temperature(self): @@ -339,8 +339,8 @@ class GenerationSystem: 'cooling efficiency': self.cooling_efficiency, 'electricity efficiency': self.electricity_efficiency, 'nominal power output [W]': self.nominal_electricity_output, - 'maximum heating supply temperature [Celsius]': self.maximum_heating_supply_temperature, - 'minimum heating supply temperature [Celsius]': self.minimum_heating_supply_temperature, + 'maximum heating supply temperature [Celsius]': self.maximum_heat_supply_temperature, + 'minimum heating supply temperature [Celsius]': self.minimum_heat_supply_temperature, 'maximum cooling supply temperature [Celsius]': self.maximum_cooling_supply_temperature, 'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature, 'heat output curve': self.heat_output_curve, diff --git a/hub/catalog_factories/data_models/energy_systems/performance_curves.py b/hub/catalog_factories/data_models/energy_systems/performance_curves.py index fb9b74ff..b713fd44 100644 --- a/hub/catalog_factories/data_models/energy_systems/performance_curves.py +++ b/hub/catalog_factories/data_models/energy_systems/performance_curves.py @@ -2,14 +2,13 @@ Energy System catalog heat generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from __future__ import annotations - class PerformanceCurves: """ Parameter function class @@ -28,17 +27,25 @@ class PerformanceCurves: Exponential =>>> y = a*(b**x) Polynomial =>>> y = a*(x**2) + b*x + c Power =>>> y = a*(x**b) - Second degree multivariable =>>> y = a*(x**2) + b*x + c*x*y + d*y + e*(y**2) + f + Second degree multivariable =>>> y = a*(x**2) + b*x + c*x*z + d*z + e*(z**2) + f Get the type of function from ['linear', 'exponential', 'polynomial', 'power', 'second degree multivariable'] :return: string """ return self._curve_type + @property + def function(self): + """ + y (e.g. COP in COP = a*source temperature**2... ) + """ + return self._function + @property def parameters(self): """ - Get the list of parameters involved in fitting process as ['y', 'x', 'z'] + Get the list of parameters involved in fitting process as ['x', 'z'] (e.g. [source temperature, supply temperature] + in COP=) :return: string """ return self._parameters diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 9bc50823..1cbe69e5 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -2,8 +2,8 @@ Energy System catalog heat generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from __future__ import annotations @@ -28,8 +28,8 @@ class PvGenerationSystem(GenerationSystem): cooling_efficiency=None, electricity_efficiency=electricity_efficiency, source_temperature=None, source_mass_flow=None, nominal_electricity_output=nominal_electricity_output, - maximum_heating_supply_temperature=None, - minimum_heating_supply_temperature=None, + maximum_heat_supply_temperature=None, + minimum_heat_supply_temperature=None, maximum_cooling_supply_temperature=None, minimum_cooling_supply_temperature=None, heat_output_curve=None, heat_fuel_consumption_curve=None, heat_efficiency_curve=None, diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 96d8a08c..0d4667d3 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -36,6 +36,7 @@ class System: self._emission_system = emission_system self._generation_systems = generation_systems self._energy_storage_systems = energy_storage_systems + self._configuration = configuration @property def lod(self): diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 6a414703..933ddc62 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -2,8 +2,8 @@ North america energy system catalog SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 4584ac16..6fe12090 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -1,5 +1,6 @@ + ./schemas/ @@ -129,7 +130,7 @@ - Water Source Heat Pump with Electrical Boiler and thermal storage + Water Source Heat Pump with Electrical Boiler and thermal storage\ heating domestic_hot_water @@ -197,8 +198,7 @@ - + - diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 0f9ee878..8747acb4 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -35,8 +35,8 @@ class TestSystemsCatalog(TestCase): with self.assertRaises(IndexError): catalog.get_entry('unknown') - # def test_north_america_systems_catalog(self): - # catalog = EnergySystemsCatalogFactory('north_america').catalog + def test_north_america_systems_catalog(self): + catalog = EnergySystemsCatalogFactory('north_america').catalog def test_montreal_catalog(self): catalog = EnergySystemsCatalogFactory('montreal_custom').catalog -- 2.39.2 From 24a670755ad44532f69797233322c642a35dd0f9 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 28 Aug 2023 18:37:55 -0400 Subject: [PATCH 031/101] performance_curves.py is fixed material_name is replaced with material_id in north_america_energy_system_catalog.py The unused variables are fixed. The code is modified to accommodate the reorganization Pilar did in generation_systems The system.py is modified to be able to accommodate more than one distribution or emission system --- .../energy_systems/performance_curves.py | 13 ++-- .../data_models/energy_systems/system.py | 24 +++--- .../north_america_energy_system_catalog.py | 78 ++++++++++--------- .../energy_systems/north_america_systems.xml | 71 +++++++++++------ 4 files changed, 107 insertions(+), 79 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/performance_curves.py b/hub/catalog_factories/data_models/energy_systems/performance_curves.py index b713fd44..65cc0878 100644 --- a/hub/catalog_factories/data_models/energy_systems/performance_curves.py +++ b/hub/catalog_factories/data_models/energy_systems/performance_curves.py @@ -14,8 +14,9 @@ class PerformanceCurves: Parameter function class """ - def __init__(self, curve_type, parameters, coefficients): + def __init__(self, curve_type, dependant_variable, parameters, coefficients): self._curve_type = curve_type + self._dependant_variable = dependant_variable self._parameters = parameters self._coefficients = coefficients @@ -35,11 +36,12 @@ class PerformanceCurves: return self._curve_type @property - def function(self): + def dependant_variable(self): """ - y (e.g. COP in COP = a*source temperature**2... ) + y (e.g. COP in COP = a*source temperature**2 + b*source temperature + c*source temperature*supply temperature + + d*supply temperature + e*supply temperature**2 + f) """ - return self._function + return self._dependant_variable @property def parameters(self): @@ -62,7 +64,8 @@ class PerformanceCurves: """Class content to dictionary""" content = {'Parameter Function': { 'curve type': self.curve_type, - 'parameters': self.parameters, + 'dependant variable': self.dependant_variable, + 'parameter(s)': self.parameters, 'coefficients': self.coefficients, } } diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 0d4667d3..9dd0ab83 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -36,7 +36,7 @@ class System: self._emission_system = emission_system self._generation_systems = generation_systems self._energy_storage_systems = energy_storage_systems - self._configuration = configuration + # self._configuration = configuration @property def lod(self): @@ -79,7 +79,7 @@ class System: return self._generation_systems @property - def distribution_system(self) -> Union[None, DistributionSystem]: + def distribution_system(self) -> Union[None, List[DistributionSystem]]: """ Get distribution system :return: DistributionSystem @@ -87,7 +87,7 @@ class System: return self._distribution_system @property - def emission_system(self) -> Union[None, EmissionSystem]: + def emission_system(self) -> Union[None, List[EmissionSystem]]: """ Get emission system :return: EmissionSystem @@ -107,12 +107,10 @@ class System: _generation_systems = [] for _generation in self.generation_systems: _generation_systems.append(_generation.to_dictionary()) - _distribution_system = None - if self.distribution_system is not None: - _distribution_system = self.distribution_system.to_dictionary() - _emission_system = None - if self.emission_system is not None: - _emission_system = self.emission_system.to_dictionary() + _distribution_system = [_distribution.to_dictionary() for _distribution in + self.distribution_system] if self.distribution_system is not None else None + _emission_system = [_emission.to_dictionary() for _emission in + self.emission_system] if self.emission_system is not None else None _storage_system = [_storage.to_dictionary() for _storage in self.energy_storage_system] if self.energy_storage_system is not None else None @@ -120,10 +118,10 @@ class System: 'name': self.name, 'level of detail': self.lod, 'demand types': self.demand_types, - 'Generation system(s)': _generation_systems, - 'distribution system': _distribution_system, - 'emission system': _emission_system, - 'energy storage system': _storage_system, + 'generation system(s)': _generation_systems, + 'distribution system(s)': _distribution_system, + 'emission system(s)': _emission_system, + 'energy storage system(s)': _storage_system, } } return content diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 933ddc62..ceaacfdd 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -55,7 +55,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): system_type = 'boiler' boiler_fuel_type = boiler['@fuel'] boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) - boiler_maximum_heat_output = float(boiler['@modulationRange']) + boiler_maximum_heat_output = float(boiler['@maximumHeatOutput']) + boiler_minimum_heat_output = float(boiler['@minimumHeatOutput']) boiler_heat_efficiency = float(boiler['@nominalEfficiency']) boiler_component = GenerationSystem(boiler_id, @@ -65,8 +66,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): system_type, boiler_fuel_type, boiler_nominal_thermal_output, - None, - None, + boiler_maximum_heat_output, + boiler_minimum_heat_output, None, None, boiler_heat_efficiency, @@ -99,18 +100,20 @@ class NorthAmericaEnergySystemCatalog(Catalog): system_type = 'heat pump' heat_pump_fuel_type = heat_pump['@fuel'] heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) - heat_pump_modulation_range = float(heat_pump['@modulationRange']) - heat_pump_source_type = heat_pump['@heatSource'] + heat_pump_maximum_heat_output = float(heat_pump['@maximumHeatOutput']) + heat_pump_minimum_heat_output = float(heat_pump['@minimumHeatOutput']) + heat_pump_source_medium = heat_pump['@heatSource'] heat_pump_supply_medium = heat_pump['@supply_medium'] heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) - heat_pump_maximum_heating_temperature = float(heat_pump['@maxHeatingSupTemperature']) - heat_pump_minimum_heating_temperature = float(heat_pump['@minHeatingSupTemperature']) - heat_pump_maximum_cooling_temperature = float(heat_pump['@maxCoolingSupTemperature']) - heat_pump_minimum_cooling_temperature = float(heat_pump['@minCoolingSupTemperature']) + heat_pump_maximum_heat_supply_temperature = float(heat_pump['@maxHeatingSupTemperature']) + heat_pump_minimum_heat_supply_temperature = float(heat_pump['@minHeatingSupTemperature']) + heat_pump_maximum_cooling_supply_temperature = float(heat_pump['@maxCoolingSupTemperature']) + heat_pump_minimum_cooling_supply_temperature = float(heat_pump['@minCoolingSupTemperature']) cop_curve_type = heat_pump['performance_curve']['@curve_type'] + dependant_variable = heat_pump['performance_curve']['dependant_variable'] parameters = heat_pump['performance_curve']['parameters'] coefficients = list(heat_pump['performance_curve']['coefficients'].values()) - cop_curve = PerformanceCurves(cop_curve_type, parameters, coefficients) + cop_curve = PerformanceCurves(cop_curve_type, dependant_variable, parameters, coefficients) heat_pump_component = GenerationSystem(heat_pump_id, heat_pump_name, @@ -119,9 +122,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): system_type, heat_pump_fuel_type, heat_pump_nominal_thermal_output, - None, - None, - heat_pump_source_type, + heat_pump_maximum_heat_output, + heat_pump_minimum_heat_output, + heat_pump_source_medium, heat_pump_supply_medium, heat_pump_nominal_cop, None, @@ -132,10 +135,10 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, None, None, - heat_pump_maximum_heating_temperature, - heat_pump_minimum_heating_temperature, - heat_pump_maximum_cooling_temperature, - heat_pump_minimum_cooling_temperature, + heat_pump_minimum_heat_supply_temperature, + heat_pump_minimum_heat_supply_temperature, + heat_pump_maximum_cooling_supply_temperature, + heat_pump_minimum_cooling_supply_temperature, None, None, cop_curve, @@ -288,18 +291,18 @@ class NorthAmericaEnergySystemCatalog(Catalog): name = tes['@name'] model_name = tes['@modelName'] manufacturer = tes['@manufacturer'] - volume = tes['@volume'] - height = tes['@height'] + volume = tes['physical_characteristics']['@volume'] + height = tes['physical_characteristics']['@height'] maximum_operating_temperature = tes['@maxTemp'] materials = self._load_materials() - insulation_material_name = tes['@insulationMaterial'] - insulation_material = self._search_material(materials, insulation_material_name) - material_name = tes['@tankMaterial'] - tank_material = self._search_material(materials, material_name) - thickness = float(tes['@insulationThickness']) / 100 # from cm to m + insulation_material_id = tes['insulation']['@material_id'] + insulation_material = self._search_material(materials, insulation_material_id) + material_id = tes['physical_characteristics']['@material_id'] + tank_material = self._search_material(materials, material_id) + thickness = float(tes['insulation']['@insulationThickness']) / 100 # from cm to m insulation_layer = Layer(None, 'insulation', insulation_material, thickness) - thickness = float(tes['@tankThickness']) / 100 # from cm to m - tank_layer = Layer(None, 'insulation', tank_material, thickness) + thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m + tank_layer = Layer(None, 'tank', tank_material, thickness) # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = EnergyStorageSystem(storage_id, @@ -323,14 +326,14 @@ class NorthAmericaEnergySystemCatalog(Catalog): name = template['@name'] maximum_temperature = template['@maxTemp'] materials = self._load_materials() - insulation_material_name = template['@insulationMaterial'] - insulation_material = self._search_material(materials, insulation_material_name) - material_name = template['@tankMaterial'] - tank_material = self._search_material(materials, material_name) - thickness = float(template['@insulationThickness']) / 100 # from cm to m + insulation_material_id = tes['insulation']['@material_id'] + insulation_material = self._search_material(materials, insulation_material_id) + material_id = tes['physical_characteristics']['@material_id'] + tank_material = self._search_material(materials, material_id) + thickness = float(tes['insulation']['@insulationThickness']) / 100 # from cm to m insulation_layer = Layer(None, 'insulation', insulation_material, thickness) - thickness = float(template['@tankThickness']) / 100 # from cm to m - tank_layer = Layer(None, 'insulation', tank_material, thickness) + thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m + tank_layer = Layer(None, 'tank', tank_material, thickness) # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = EnergyStorageSystem(storage_id, @@ -393,9 +396,10 @@ class NorthAmericaEnergySystemCatalog(Catalog): materials = [] _materials = self._archetypes['EnergySystemCatalog']['materials']['material'] for _material in _materials: + material_id = _material['@material_id'] name = _material['@name'] thermal_conductivity = _material['@thermalConductivity'] - material = Material(None, + material = Material(material_id, name, None, None, @@ -409,15 +413,15 @@ class NorthAmericaEnergySystemCatalog(Catalog): return materials @staticmethod - def _search_material(materials, material_name): + def _search_material(materials, material_id): _material = None for material in materials: - if material.name == material_name: + if int(material.id) == int(material_id): _material = material return _material if _material is None: - raise ValueError(f'Material not found in catalog [{material_name}]') + raise ValueError(f'Material with the id = [{material_id}] not found in catalog ') @staticmethod def _search_generation_equipment(generation_systems, generation_id): diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 6fe12090..285f9de7 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -5,37 +5,37 @@ - - - - - - - - - - - + + + + + + + + + + + - + - COP + COP source_temperature supply_temperature - + - COP + COP source_temperature supply_temperature - + - COP + COP source_temperature supply_temperature @@ -55,13 +55,36 @@ - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.39.2 From 644b1c9346b114dc408723563f4d2348bbfa9de3 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 29 Aug 2023 11:45:02 -0400 Subject: [PATCH 032/101] energy_storage_system.py is modified and inherited by thermal_storage_system.py and electrical_storage_system.py --- .../data_models/energy_systems/archetype.py | 2 + .../data_models/energy_systems/content.py | 7 -- .../electrical_storage_system.py | 90 +++++++++++++++++ .../energy_systems/energy_storage_system.py | 96 +------------------ .../energy_systems/thermal_storage_system.py | 84 ++++++++++++++++ .../north_america_energy_system_catalog.py | 67 ++++++------- tests/test_systems_catalog.py | 6 +- 7 files changed, 211 insertions(+), 141 deletions(-) create mode 100644 hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py create mode 100644 hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/archetype.py b/hub/catalog_factories/data_models/energy_systems/archetype.py index b490ebb9..7f43c5dc 100644 --- a/hub/catalog_factories/data_models/energy_systems/archetype.py +++ b/hub/catalog_factories/data_models/energy_systems/archetype.py @@ -56,3 +56,5 @@ class Archetype: } } return content + + diff --git a/hub/catalog_factories/data_models/energy_systems/content.py b/hub/catalog_factories/data_models/energy_systems/content.py index d3fd9068..f6a03ea0 100644 --- a/hub/catalog_factories/data_models/energy_systems/content.py +++ b/hub/catalog_factories/data_models/energy_systems/content.py @@ -69,11 +69,4 @@ class Content: return content - def __str__(self): - """Print content""" - _archetypes = [] - for _archetype in self.archetypes: - _archetypes.append(_archetype.to_dictionary()) - content = {'Archetypes': _archetypes} - return str(content) diff --git a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py new file mode 100644 index 00000000..a660c08c --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py @@ -0,0 +1,90 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" +from __future__ import annotations +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem + + +class ThermalStorageSystem(EnergyStorageSystem): + """ + Thermal Storage system class + """ + + def __init__(self, storage_id, name, model_name, manufacturer, storage_type, rated_output_power, + nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate): + super().__init__(storage_id=storage_id, name=name, model_name=model_name, + manufacturer=manufacturer) + self._storage_type = storage_type + self._rated_output_power = rated_output_power + self._nominal_efficiency = nominal_efficiency + self._battery_voltage = battery_voltage + self._depth_of_discharge = depth_of_discharge + self._self_discharge_rate = self_discharge_rate + + @property + def storage_type(self): + """ + Get storage type from ['lithium_ion', 'lead_acid', 'NiCd'] + :return: string + """ + return self._storage_type + + @property + def rated_output_power(self): + """ + Get the rated output power of storage system in kW + :return: float + """ + return self._rated_output_power + + @property + def nominal_efficiency(self): + """ + Get the nominal efficiency of the storage system + :return: float + """ + return self._nominal_efficiency + + @property + def battery_voltage(self): + """ + Get the battery voltage in Volt + :return: float + """ + return self._battery_voltage + + @property + def depth_of_discharge(self): + """ + Get the depth of discharge as a percentage + :return: float + """ + return self._depth_of_discharge + + @property + def self_discharge_rate(self): + """ + Get the self discharge rate of battery as a percentage + :return: float + """ + return self._self_discharge_rate + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Storage component': { + 'storage id': self.id, + 'name': self.name, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'rated power [kW]': self.rated_output_power, + 'nominal efficiency': self.nominal_efficiency, + 'battery voltage [V]': self.battery_voltage, + 'depth of discharge': self.depth_of_discharge, + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 98523ac2..2b183e55 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -15,23 +15,12 @@ class EnergyStorageSystem: Energy Storage System Class """ - def __init__(self, storage_id, name, model_name, manufacturer, storage_type, volume, rated_output_power, - nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, height, layers, - maximum_operating_temperature): + def __init__(self, storage_id, name, model_name, manufacturer, storage_type): self._storage_id = storage_id self._name = name self._model_name = model_name self._manufacturer = manufacturer self._storage_type = storage_type - self._physical_volume = volume - self._rated_output_power = rated_output_power - self._nominal_efficiency = nominal_efficiency - self._battery_voltage = battery_voltage - self._depth_of_discharge = depth_of_discharge - self._self_discharge_rate = self_discharge_rate - self._height = height - self._layers = layers - self._maximum_operating_temperature = maximum_operating_temperature @property def id(self): @@ -73,78 +62,6 @@ class EnergyStorageSystem: """ return self._storage_type - @property - def physical_volume(self): - """ - Get the physical volume of the storage system in cubic meters - :return: float - """ - return self._physical_volume - - @property - def rated_output_power(self): - """ - Get the rated output power of storage system in kW - :return: float - """ - return self._rated_output_power - - @property - def nominal_efficiency(self): - """ - Get the nominal efficiency of the storage system - :return: float - """ - return self._nominal_efficiency - - @property - def battery_voltage(self): - """ - Get the battery voltage in Volt - :return: float - """ - return self._battery_voltage - - @property - def depth_of_discharge(self): - """ - Get the depth of discharge as a percentage - :return: float - """ - return self._depth_of_discharge - - @property - def self_discharge_rate(self): - """ - Get the self discharge rate of battery as a percentage - :return: float - """ - return self._self_discharge_rate - - @property - def height(self): - """ - Get the diameter of the storage system in meters - :return: float - """ - return self._height - - @property - def layers(self) -> [Layer]: - """ - Get construction layers - :return: [layer] - """ - return self._layers - - @property - def maximum_operating_temperature(self): - """ - Get maximum operating temperature of the storage system in degree Celsius - :return: float - """ - return self._maximum_operating_temperature - def to_dictionary(self): """Class content to dictionary""" _layers = [] @@ -155,16 +72,7 @@ class EnergyStorageSystem: 'name': self.name, 'model name': self.model_name, 'manufacturer': self.manufacturer, - 'storage type': self.storage_type, - 'physical volume [m3]': self.physical_volume, - 'rated power [kW]': self.rated_output_power, - 'nominal efficiency': self.nominal_efficiency, - 'battery voltage [V]': self.battery_voltage, - 'depth of discharge': self.depth_of_discharge, - 'self discharge rate': self.self_discharge_rate, - 'height [m]': self.height, - 'layers': _layers, - 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + 'storage type': self.storage_type } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py new file mode 100644 index 00000000..ebf0d45b --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -0,0 +1,84 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" +from __future__ import annotations +from hub.catalog_factories.data_models.construction.layer import Layer +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem + + +class ThermalStorageSystem(EnergyStorageSystem): + """ + Thermal Storage system class + """ + + def __init__(self, storage_id, name, model_name, manufacturer, storage_type, volume, height, layers, + maximum_operating_temperature): + super().__init__(storage_id=storage_id, name=name, model_name=model_name, + manufacturer=manufacturer, storage_type=storage_type) + self._volume = volume + self._height = height + self._layers = layers + self._maximum_operating_temperature = maximum_operating_temperature + + @property + def storage_type(self): + """ + Get storage type from ['sensible', 'latent'] + :return: string + """ + return self._storage_type + + @property + def volume(self): + """ + Get the physical volume of the storage system in cubic meters + :return: float + """ + return self._volume + + @property + def height(self): + """ + Get the diameter of the storage system in meters + :return: float + """ + return self._height + + @property + def layers(self) -> [Layer]: + """ + Get construction layers + :return: [layer] + """ + return self._layers + + @property + def maximum_operating_temperature(self): + """ + Get maximum operating temperature of the storage system in degree Celsius + :return: float + """ + return self._maximum_operating_temperature + + def to_dictionary(self): + """Class content to dictionary""" + _layers = [] + for _layer in self.layers: + _layers.append(_layer.to_dictionary()) + content = {'Storage component': { + 'storage id': self.id, + 'name': self.name, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'volume [m3]': self.physical_volume, + 'height [m]': self.height, + 'layers': _layers, + 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + } + } + return content diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index ceaacfdd..a1e4798e 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -6,14 +6,13 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ - import xmltodict from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem -from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem +from hub.catalog_factories.data_models.energy_systems.thermal_storage_system import ThermalStorageSystem from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves from hub.catalog_factories.data_models.energy_systems.archetype import Archetype from hub.catalog_factories.data_models.construction.material import Material @@ -40,7 +39,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, self._storage_components) print(self._content) - def _load_generation_components(self): generation_components = [] boilers = self._archetypes['EnergySystemCatalog']['energy_generation_components']['boilers'] @@ -135,7 +133,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, None, None, - heat_pump_minimum_heat_supply_temperature, + heat_pump_maximum_heat_supply_temperature, heat_pump_minimum_heat_supply_temperature, heat_pump_maximum_cooling_supply_temperature, heat_pump_minimum_cooling_supply_temperature, @@ -291,6 +289,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): name = tes['@name'] model_name = tes['@modelName'] manufacturer = tes['@manufacturer'] + storage_type = 'sensible' volume = tes['physical_characteristics']['@volume'] height = tes['physical_characteristics']['@height'] maximum_operating_temperature = tes['@maxTemp'] @@ -303,53 +302,45 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'tank', tank_material, thickness) - # the convention is from outside to inside +# the convention is from outside to inside layers = [insulation_layer, tank_layer] - storage_component = EnergyStorageSystem(storage_id, - name, - model_name, - manufacturer, - 'thermal', - volume, - None, - None, - None, - None, - None, - height, - layers, - maximum_operating_temperature) + storage_component = ThermalStorageSystem(storage_id, + name, + model_name, + manufacturer, + storage_type, + volume, + height, + layers, + maximum_operating_temperature) storage_components.append(storage_component) for template in template_storages: storage_id = template['@storage_id'] name = template['@name'] + storage_type = 'sensible' maximum_temperature = template['@maxTemp'] + height = template['physical_characteristics']['@height'] materials = self._load_materials() - insulation_material_id = tes['insulation']['@material_id'] + insulation_material_id = template['insulation']['@material_id'] insulation_material = self._search_material(materials, insulation_material_id) - material_id = tes['physical_characteristics']['@material_id'] + material_id = template['physical_characteristics']['@material_id'] tank_material = self._search_material(materials, material_id) - thickness = float(tes['insulation']['@insulationThickness']) / 100 # from cm to m + thickness = float(template['insulation']['@insulationThickness']) / 100 # from cm to m insulation_layer = Layer(None, 'insulation', insulation_material, thickness) - thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m + thickness = float(template['physical_characteristics']['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'tank', tank_material, thickness) - # the convention is from outside to inside +# the convention is from outside to inside layers = [insulation_layer, tank_layer] - storage_component = EnergyStorageSystem(storage_id, - name, - None, - None, - 'thermal', - None, - None, - None, - None, - None, - None, - None, - layers, - maximum_temperature) + storage_component = ThermalStorageSystem(storage_id, + name, + None, + None, + storage_type, + None, + height, + layers, + maximum_temperature) storage_components.append(storage_component) return storage_components diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 8747acb4..a0720708 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -38,5 +38,7 @@ class TestSystemsCatalog(TestCase): def test_north_america_systems_catalog(self): catalog = EnergySystemsCatalogFactory('north_america').catalog - def test_montreal_catalog(self): - catalog = EnergySystemsCatalogFactory('montreal_custom').catalog + + + # def test_montreal_catalog(self): + # catalog = EnergySystemsCatalogFactory('montreal_custom').catalog -- 2.39.2 From 6ac63adaaf7d9f2d57ef3a7715494576ff90b3ef Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 12:22:06 -0400 Subject: [PATCH 033/101] separated storage class in three, one abstract --- .../electrical_storage_system.py | 84 +++++++++++++ .../energy_systems/energy_storage_system.py | 114 ++---------------- .../energy_systems/thermal_storage_system.py | 78 ++++++++++++ 3 files changed, 174 insertions(+), 102 deletions(-) create mode 100644 hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py create mode 100644 hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py new file mode 100644 index 00000000..face6903 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py @@ -0,0 +1,84 @@ +""" +Energy System catalog electrical storage system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem + + +class ElectricalStorageSystem(EnergyStorageSystem): + """" + Energy Storage System Class + """ + + def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio, + rated_output_power, nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate): + + super().__init__(storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio) + self._rated_output_power = rated_output_power + self._nominal_efficiency = nominal_efficiency + self._battery_voltage = battery_voltage + self._depth_of_discharge = depth_of_discharge + self._self_discharge_rate = self_discharge_rate + + @property + def rated_output_power(self): + """ + Get the rated output power of storage system in kW + :return: float + """ + return self._rated_output_power + + @property + def nominal_efficiency(self): + """ + Get the nominal efficiency of the storage system + :return: float + """ + return self._nominal_efficiency + + @property + def battery_voltage(self): + """ + Get the battery voltage in Volt + :return: float + """ + return self._battery_voltage + + @property + def depth_of_discharge(self): + """ + Get the depth of discharge as a percentage + :return: float + """ + return self._depth_of_discharge + + @property + def self_discharge_rate(self): + """ + Get the self discharge rate of battery as a percentage + :return: float + """ + return self._self_discharge_rate + + def to_dictionary(self): + """Class content to dictionary""" + content = {'Storage component': { + 'storage id': self.id, + 'name': self.name, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'nominal capacity [J]': self.nominal_capacity, + 'losses-ratio [J/J]': self.losses_ratio, + 'rated power [kW]': self.rated_output_power, + 'nominal efficiency': self.nominal_efficiency, + 'battery voltage [V]': self.battery_voltage, + 'depth of discharge': self.depth_of_discharge, + 'self discharge rate': self.self_discharge_rate + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 98523ac2..6e746f35 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -6,32 +6,22 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from __future__ import annotations -from hub.catalog_factories.data_models.construction.layer import Layer +from abc import ABC -class EnergyStorageSystem: +class EnergyStorageSystem(ABC): """" Energy Storage System Class """ - def __init__(self, storage_id, name, model_name, manufacturer, storage_type, volume, rated_output_power, - nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate, height, layers, - maximum_operating_temperature): + def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio): self._storage_id = storage_id self._name = name self._model_name = model_name self._manufacturer = manufacturer self._storage_type = storage_type - self._physical_volume = volume - self._rated_output_power = rated_output_power - self._nominal_efficiency = nominal_efficiency - self._battery_voltage = battery_voltage - self._depth_of_discharge = depth_of_discharge - self._self_discharge_rate = self_discharge_rate - self._height = height - self._layers = layers - self._maximum_operating_temperature = maximum_operating_temperature + self._nominal_capacity = nominal_capacity + self._losses_ratio = losses_ratio @property def id(self): @@ -68,103 +58,23 @@ class EnergyStorageSystem: @property def storage_type(self): """ - Get storage type from ['lithium_ion', 'sensible', 'latent'] + Get storage type from ['electricity', 'thermal', 'chemical', 'lithium_ion', 'sensible', 'latent'] :return: string """ return self._storage_type @property - def physical_volume(self): + def nominal_capacity(self): """ - Get the physical volume of the storage system in cubic meters + Get the nominal capacity of the storage system in Jules :return: float """ - return self._physical_volume + return self._nominal_capacity @property - def rated_output_power(self): + def losses_ratio(self): """ - Get the rated output power of storage system in kW + Get the losses-ratio of storage system in Jules lost / Jules stored :return: float """ - return self._rated_output_power - - @property - def nominal_efficiency(self): - """ - Get the nominal efficiency of the storage system - :return: float - """ - return self._nominal_efficiency - - @property - def battery_voltage(self): - """ - Get the battery voltage in Volt - :return: float - """ - return self._battery_voltage - - @property - def depth_of_discharge(self): - """ - Get the depth of discharge as a percentage - :return: float - """ - return self._depth_of_discharge - - @property - def self_discharge_rate(self): - """ - Get the self discharge rate of battery as a percentage - :return: float - """ - return self._self_discharge_rate - - @property - def height(self): - """ - Get the diameter of the storage system in meters - :return: float - """ - return self._height - - @property - def layers(self) -> [Layer]: - """ - Get construction layers - :return: [layer] - """ - return self._layers - - @property - def maximum_operating_temperature(self): - """ - Get maximum operating temperature of the storage system in degree Celsius - :return: float - """ - return self._maximum_operating_temperature - - def to_dictionary(self): - """Class content to dictionary""" - _layers = [] - for _layer in self.layers: - _layers.append(_layer.to_dictionary()) - content = {'Storage component': { - 'storage id': self.id, - 'name': self.name, - 'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'storage type': self.storage_type, - 'physical volume [m3]': self.physical_volume, - 'rated power [kW]': self.rated_output_power, - 'nominal efficiency': self.nominal_efficiency, - 'battery voltage [V]': self.battery_voltage, - 'depth of discharge': self.depth_of_discharge, - 'self discharge rate': self.self_discharge_rate, - 'height [m]': self.height, - 'layers': _layers, - 'maximum operating temperature [Celsius]': self.maximum_operating_temperature - } - } - return content + return self._losses_ratio diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py new file mode 100644 index 00000000..ea565e49 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -0,0 +1,78 @@ +""" +Energy System catalog thermal storage system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem +from hub.catalog_factories.data_models.construction.layer import Layer + + +class ThermalStorageSystem(EnergyStorageSystem): + """" + Energy Storage System Class + """ + + def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio, + volume, height, layers, maximum_operating_temperature): + + super().__init__(storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio) + self._physical_volume = volume + self._height = height + self._layers = layers + self._maximum_operating_temperature = maximum_operating_temperature + + @property + def physical_volume(self): + """ + Get the physical volume of the storage system in cubic meters + :return: float + """ + return self._physical_volume + + @property + def height(self): + """ + Get the diameter of the storage system in meters + :return: float + """ + return self._height + + @property + def layers(self) -> [Layer]: + """ + Get construction layers + :return: [layer] + """ + return self._layers + + @property + def maximum_operating_temperature(self): + """ + Get maximum operating temperature of the storage system in degree Celsius + :return: float + """ + return self._maximum_operating_temperature + + def to_dictionary(self): + """Class content to dictionary""" + _layers = [] + for _layer in self.layers: + _layers.append(_layer.to_dictionary()) + content = {'Storage component': { + 'storage id': self.id, + 'name': self.name, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'nominal capacity [J]': self.nominal_capacity, + 'losses-ratio [J/J]': self.losses_ratio, + 'physical volume [m3]': self.physical_volume, + 'height [m]': self.height, + 'layers': _layers, + 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + } + } + return content -- 2.39.2 From c77b2254f10ad5439781d8ac9af7567a4b82b9b9 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 12:26:19 -0400 Subject: [PATCH 034/101] separated storage class in three, one abstract --- .../data_models/energy_systems/energy_storage_system.py | 3 ++- .../data_models/energy_systems/thermal_storage_system.py | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 6e746f35..e23d176c 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -58,7 +58,8 @@ class EnergyStorageSystem(ABC): @property def storage_type(self): """ - Get storage type from ['electricity', 'thermal', 'chemical', 'lithium_ion', 'sensible', 'latent'] + Get storage type from ['electricity', 'thermal', 'chemical', + 'lithium_ion', 'lead_acid', 'NiCd', 'sensible', 'latent'] :return: string """ return self._storage_type diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index ea565e49..574ca24c 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -19,18 +19,18 @@ class ThermalStorageSystem(EnergyStorageSystem): volume, height, layers, maximum_operating_temperature): super().__init__(storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio) - self._physical_volume = volume + self._volume = volume self._height = height self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature @property - def physical_volume(self): + def volume(self): """ Get the physical volume of the storage system in cubic meters :return: float """ - return self._physical_volume + return self._volume @property def height(self): @@ -69,7 +69,7 @@ class ThermalStorageSystem(EnergyStorageSystem): 'storage type': self.storage_type, 'nominal capacity [J]': self.nominal_capacity, 'losses-ratio [J/J]': self.losses_ratio, - 'physical volume [m3]': self.physical_volume, + 'volume [m3]': self.volume, 'height [m]': self.height, 'layers': _layers, 'maximum operating temperature [Celsius]': self.maximum_operating_temperature -- 2.39.2 From 8dbeeaafa1af265a4ba96ffd3a6004ae22e3f115 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 12:29:11 -0400 Subject: [PATCH 035/101] changed some units in electrical storage --- .../energy_systems/electrical_storage_system.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py index face6903..3cd5b31d 100644 --- a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py @@ -27,7 +27,7 @@ class ElectricalStorageSystem(EnergyStorageSystem): @property def rated_output_power(self): """ - Get the rated output power of storage system in kW + Get the rated output power of storage system in Watts :return: float """ return self._rated_output_power @@ -43,7 +43,7 @@ class ElectricalStorageSystem(EnergyStorageSystem): @property def battery_voltage(self): """ - Get the battery voltage in Volt + Get the battery voltage in Volts :return: float """ return self._battery_voltage @@ -74,10 +74,10 @@ class ElectricalStorageSystem(EnergyStorageSystem): 'storage type': self.storage_type, 'nominal capacity [J]': self.nominal_capacity, 'losses-ratio [J/J]': self.losses_ratio, - 'rated power [kW]': self.rated_output_power, + 'rated power [W]': self.rated_output_power, 'nominal efficiency': self.nominal_efficiency, 'battery voltage [V]': self.battery_voltage, - 'depth of discharge': self.depth_of_discharge, + 'depth of discharge [%]': self.depth_of_discharge, 'self discharge rate': self.self_discharge_rate } } -- 2.39.2 From d4b424357dcbb9ead7761083721a671d9f7e2f1d Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 12:31:06 -0400 Subject: [PATCH 036/101] added to_dictionary to abstract class --- .../data_models/energy_systems/energy_storage_system.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index e23d176c..c0e3adef 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -11,7 +11,7 @@ from abc import ABC class EnergyStorageSystem(ABC): """" - Energy Storage System Class + Energy Storage System Abstract Class """ def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio): @@ -79,3 +79,7 @@ class EnergyStorageSystem(ABC): :return: float """ return self._losses_ratio + + def to_dictionary(self): + """Class content to dictionary""" + raise NotImplementedError -- 2.39.2 From 7810f8f91dff16563630d19168bf30803f539cda Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 12:34:04 -0400 Subject: [PATCH 037/101] extracted storage type from abstract class --- .../energy_systems/electrical_storage_system.py | 11 ++++++++++- .../energy_systems/energy_storage_system.py | 12 +----------- .../energy_systems/thermal_storage_system.py | 11 ++++++++++- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py index 3cd5b31d..6f5d6d14 100644 --- a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py @@ -17,13 +17,22 @@ class ElectricalStorageSystem(EnergyStorageSystem): def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio, rated_output_power, nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate): - super().__init__(storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio) + super().__init__(storage_id, name, model_name, manufacturer, nominal_capacity, losses_ratio) + self._storage_type = storage_type self._rated_output_power = rated_output_power self._nominal_efficiency = nominal_efficiency self._battery_voltage = battery_voltage self._depth_of_discharge = depth_of_discharge self._self_discharge_rate = self_discharge_rate + @property + def storage_type(self): + """ + Get storage type from ['electrical', 'lithium_ion', 'lead_acid', 'NiCd'] + :return: string + """ + return self._storage_type + @property def rated_output_power(self): """ diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index c0e3adef..a5302cb4 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -14,12 +14,11 @@ class EnergyStorageSystem(ABC): Energy Storage System Abstract Class """ - def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio): + def __init__(self, storage_id, name, model_name, manufacturer, nominal_capacity, losses_ratio): self._storage_id = storage_id self._name = name self._model_name = model_name self._manufacturer = manufacturer - self._storage_type = storage_type self._nominal_capacity = nominal_capacity self._losses_ratio = losses_ratio @@ -55,15 +54,6 @@ class EnergyStorageSystem(ABC): """ return self._manufacturer - @property - def storage_type(self): - """ - Get storage type from ['electricity', 'thermal', 'chemical', - 'lithium_ion', 'lead_acid', 'NiCd', 'sensible', 'latent'] - :return: string - """ - return self._storage_type - @property def nominal_capacity(self): """ diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index 574ca24c..679669a4 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -18,12 +18,21 @@ class ThermalStorageSystem(EnergyStorageSystem): def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio, volume, height, layers, maximum_operating_temperature): - super().__init__(storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio) + super().__init__(storage_id, name, model_name, manufacturer, nominal_capacity, losses_ratio) + self._storage_type = storage_type self._volume = volume self._height = height self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature + @property + def storage_type(self): + """ + Get storage type from ['thermal', 'sensible', 'latent'] + :return: string + """ + return self._storage_type + @property def volume(self): """ -- 2.39.2 From 8763523d3b60566b26909ff237fc43c4bb62e27f Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 12:50:49 -0400 Subject: [PATCH 038/101] added S to some lists, updated montreal_custom_catalog.py to new catalog classes and removed __future__ from those classes that didn't need it --- .../energy_systems/generation_system.py | 28 +--------- .../energy_systems/pv_generation_system.py | 1 - .../data_models/energy_systems/system.py | 52 +++++++++---------- .../energy_systems/montreal_custom_catalog.py | 38 +++++++++----- ...ontreal_custom_energy_system_parameters.py | 6 +-- tests/test_systems_factory.py | 4 +- 6 files changed, 59 insertions(+), 70 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index afc7c5c4..c2fd9a75 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -6,7 +6,6 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from __future__ import annotations from typing import Union from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves @@ -23,7 +22,7 @@ class GenerationSystem: maximum_heat_supply_temperature, minimum_heat_supply_temperature, maximum_cooling_supply_temperature, minimum_cooling_supply_temperature, heat_output_curve, heat_fuel_consumption_curve, heat_efficiency_curve, cooling_output_curve, cooling_fuel_consumption_curve, - cooling_efficiency_curve, storage, auxiliary_equipment): + cooling_efficiency_curve): self._system_id = system_id self._name = name self._model_name = model_name @@ -54,8 +53,6 @@ class GenerationSystem: self._cooling_output_curve = cooling_output_curve self._cooling_fuel_consumption_curve = cooling_fuel_consumption_curve self._cooling_efficiency_curve = cooling_efficiency_curve - self._storage = storage - self._auxiliary_equipment = auxiliary_equipment @property def id(self): @@ -297,27 +294,8 @@ class GenerationSystem: """ return self._cooling_efficiency_curve - @property - def storage(self): - """ - Get boolean storage exists - :return: bool - """ - return self._storage - - @property - def auxiliary_equipment(self) -> Union[None, GenerationSystem]: - """ - Get auxiliary_equipment - :return: GenerationSystem - """ - return self._auxiliary_equipment - def to_dictionary(self): """Class content to dictionary""" - _auxiliary_equipment = [] - if self.auxiliary_equipment is not None: - _auxiliary_equipment = self.auxiliary_equipment.to_dictionary() content = {'Energy Generation component': { 'id': self.id, 'name': self.name, @@ -348,9 +326,7 @@ class GenerationSystem: 'heat efficiency curve': self.heat_efficiency_curve, 'cooling output curve': self.cooling_output_curve, 'cooling fuel consumption curve': self.cooling_fuel_consumption_curve, - 'cooling efficiency curve': self.cooling_efficiency_curve, - 'it has storage': self.storage, - 'auxiliary equipment': _auxiliary_equipment + 'cooling efficiency curve': self.cooling_efficiency_curve } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 1cbe69e5..ecadcdb8 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -6,7 +6,6 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from __future__ import annotations from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 9dd0ab83..7acb930b 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -25,15 +25,15 @@ class System: name, demand_types, generation_systems, - distribution_system, - emission_system, + distribution_systems, + emission_systems, energy_storage_systems): self._lod = lod self._system_id = system_id self._name = name self._demand_types = demand_types - self._distribution_system = distribution_system - self._emission_system = emission_system + self._distribution_systems = distribution_systems + self._emission_systems = emission_systems self._generation_systems = generation_systems self._energy_storage_systems = energy_storage_systems # self._configuration = configuration @@ -73,32 +73,32 @@ class System: @property def generation_systems(self) -> List[GenerationSystem]: """ - Get generation system - :return: GenerationSystem + Get generation systems + :return: [GenerationSystem] """ return self._generation_systems @property - def distribution_system(self) -> Union[None, List[DistributionSystem]]: + def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ - Get distribution system - :return: DistributionSystem + Get distribution systems + :return: [DistributionSystem] """ - return self._distribution_system + return self._distribution_systems @property - def emission_system(self) -> Union[None, List[EmissionSystem]]: + def emission_systems(self) -> Union[None, List[EmissionSystem]]: """ - Get emission system - :return: EmissionSystem + Get emission systems + :return: [EmissionSystem] """ - return self._emission_system + return self._emission_systems @property - def energy_storage_system(self) -> Union[None, List[EnergyStorageSystem]]: + def energy_storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: """ - Get energy storage system - :return: EnergyStorageSystem + Get energy storage systems + :return: [EnergyStorageSystem] """ return self._energy_storage_systems @@ -107,21 +107,21 @@ class System: _generation_systems = [] for _generation in self.generation_systems: _generation_systems.append(_generation.to_dictionary()) - _distribution_system = [_distribution.to_dictionary() for _distribution in - self.distribution_system] if self.distribution_system is not None else None - _emission_system = [_emission.to_dictionary() for _emission in - self.emission_system] if self.emission_system is not None else None - _storage_system = [_storage.to_dictionary() for _storage in - self.energy_storage_system] if self.energy_storage_system is not None else None + _distribution_systems = [_distribution.to_dictionary() for _distribution in + self.distribution_systems] if self.distribution_systems is not None else None + _emission_systems = [_emission.to_dictionary() for _emission in + self.emission_systems] if self.emission_systems is not None else None + _storage_systems = [_storage.to_dictionary() for _storage in + self.energy_storage_systems] if self.energy_storage_systems is not None else None content = {'system': {'id': self.id, 'name': self.name, 'level of detail': self.lod, 'demand types': self.demand_types, 'generation system(s)': _generation_systems, - 'distribution system(s)': _distribution_system, - 'emission system(s)': _emission_system, - 'energy storage system(s)': _storage_system, + 'distribution system(s)': _distribution_systems, + 'emission system(s)': _emission_systems, + 'energy storage system(s)': _storage_systems, } } return content diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 39707c0b..a9696c21 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -14,6 +14,8 @@ from hub.catalog_factories.data_models.energy_systems.generation_system import G from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.archetype import Archetype +from hub.catalog_factories.data_models.energy_systems.thermal_storage_system import ThermalStorageSystem +from hub.catalog_factories.data_models.energy_systems.electrical_storage_system import ElectricalStorageSystem class MontrealCustomCatalog(Catalog): @@ -29,7 +31,8 @@ class MontrealCustomCatalog(Catalog): self._lod = float(self._archetypes['catalog']['@lod']) - self._catalog_generation_equipments = self._load_generation_equipments() + self._catalog_generation_equipments, self._catalog_storage_equipments = \ + self._load_generation_and_storage_equipments() self._catalog_distribution_equipments = self._load_distribution_equipments() self._catalog_emission_equipments = self._load_emission_equipments() self._catalog_systems = self._load_systems() @@ -40,10 +43,11 @@ class MontrealCustomCatalog(Catalog): self._catalog_generation_equipments, self._catalog_distribution_equipments, self._catalog_emission_equipments, - storages=None) + None) - def _load_generation_equipments(self): + def _load_generation_and_storage_equipments(self): _equipments = [] + _storages = [] equipments = self._archetypes['catalog']['generation_equipments']['equipment'] for equipment in equipments: equipment_id = float(equipment['@id']) @@ -59,7 +63,6 @@ class MontrealCustomCatalog(Catalog): electricity_efficiency = None if 'electrical_efficiency' in equipment: electricity_efficiency = float(equipment['electrical_efficiency']) - storage = literal_eval(equipment['storage'].capitalize()) generation_system = GenerationSystem(equipment_id, name, None, @@ -89,12 +92,19 @@ class MontrealCustomCatalog(Catalog): None, None, None, - None, - storage, None) - _equipments.append(generation_system) - return _equipments + storage = literal_eval(equipment['storage'].capitalize()) + if storage: + if equipment_type == 'electricity generator': + storage_system = ElectricalStorageSystem(equipment_id, None, None, None, 'electrical', None, None, None, None, + None, None, None) + else: + storage_system = ThermalStorageSystem(equipment_id, None, None, None, 'thermal', None, None, None, None, None, + None) + _storages.append(storage_system) + + return _equipments, _storages def _load_distribution_equipments(self): _equipments = [] @@ -156,6 +166,10 @@ class MontrealCustomCatalog(Catalog): for equipment_archetype in self._catalog_generation_equipments: if int(equipment_archetype.id) == int(generation_equipment): _generation_equipment = equipment_archetype + _storage_equipment = None + for equipment_archetype in self._catalog_storage_equipments: + if int(equipment_archetype.id) == int(generation_equipment): + _storage_equipment = equipment_archetype distribution_equipment = system['equipments']['distribution_id'] _distribution_equipment = None for equipment_archetype in self._catalog_distribution_equipments: @@ -171,10 +185,10 @@ class MontrealCustomCatalog(Catalog): system_id, name, demands, - _generation_equipment, - _distribution_equipment, - _emission_equipment, - energy_storage_systems=None)) + [_generation_equipment], + [_distribution_equipment], + [_emission_equipment], + [_storage_equipment])) return _catalog_systems def _load_archetypes(self): diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 3982221b..49f7086f 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -104,7 +104,7 @@ class MontrealCustomEnergySystemParameters: energy_system.generation_system = _generation_system _distribution_system = GenericDistributionSystem() - archetype_distribution_equipment = system.distribution_system + archetype_distribution_equipment = system.distribution_systems _distribution_system.type = archetype_distribution_equipment.type _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature _distribution_system.distribution_consumption_fix_flow = \ @@ -139,10 +139,10 @@ class MontrealCustomEnergySystemParameters: _building_distribution_system = DistributionSystem() _building_distribution_system.generic_distribution_system = \ - copy.deepcopy(_generic_building_energy_system.distribution_system) + copy.deepcopy(_generic_building_energy_system.distribution_systems) _building_emission_system = EmissionSystem() _building_emission_system.generic_emission_system = \ - copy.deepcopy(_generic_building_energy_system.emission_system) + copy.deepcopy(_generic_building_energy_system.emission_systems) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = \ copy.deepcopy(_generic_building_energy_system.generation_system) diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 8d191043..9044ad18 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -90,11 +90,11 @@ class TestSystemsFactory(TestCase): _building_distribution_system = DistributionSystem() _building_distribution_system.generic_distribution_system = ( - copy.deepcopy(_generic_building_energy_system.distribution_system) + copy.deepcopy(_generic_building_energy_system.distribution_systems) ) _building_emission_system = EmissionSystem() _building_emission_system.generic_emission_system = ( - copy.deepcopy(_generic_building_energy_system.emission_system) + copy.deepcopy(_generic_building_energy_system.emission_systems) ) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = ( -- 2.39.2 From b7c2bbae96f82ebf9d3e71924b9d3259fac1cfe1 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 13:02:28 -0400 Subject: [PATCH 039/101] removed last two values in generationSystems as they are not used anymore --- .../energy_systems/pv_generation_system.py | 2 +- .../north_america_energy_system_catalog.py | 12 ++++-------- tests/test_systems_catalog.py | 7 ++++--- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index ecadcdb8..e1ee8226 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -33,7 +33,7 @@ class PvGenerationSystem(GenerationSystem): minimum_cooling_supply_temperature=None, heat_output_curve=None, heat_fuel_consumption_curve=None, heat_efficiency_curve=None, cooling_output_curve=None, cooling_fuel_consumption_curve=None, - cooling_efficiency_curve=None, storage=None, auxiliary_equipment=None) + cooling_efficiency_curve=None) self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index a1e4798e..206fd4a8 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -86,8 +86,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, None, None, - None, - None, None) generation_components.append(boiler_component) for heat_pump in heat_pumps: @@ -142,8 +140,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): cop_curve, None, None, - None, - None, None) generation_components.append(heat_pump_component) for pv in photovoltaics: @@ -215,8 +211,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, None, None, - None, - None, None) generation_components.append(boiler_template) elif "Heat Pump" in system_name: @@ -254,8 +248,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, None, None, - None, - None, None) generation_components.append(heat_pump_template) else: @@ -309,6 +301,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): model_name, manufacturer, storage_type, + None, + None, volume, height, layers, @@ -338,6 +332,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, storage_type, None, + None, + None, height, layers, maximum_temperature) diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index a0720708..862ea874 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -13,6 +13,7 @@ class TestSystemsCatalog(TestCase): def test_montreal_custom_catalog(self): catalog = EnergySystemsCatalogFactory('montreal_custom').catalog + catalog_categories = catalog.names() archetypes = catalog.names('archetypes') self.assertEqual(23, len(archetypes['archetypes'])) @@ -32,13 +33,13 @@ class TestSystemsCatalog(TestCase): for value in catalog_categories[category]: catalog.get_entry(value) + print(catalog.entries()) + with self.assertRaises(IndexError): catalog.get_entry('unknown') def test_north_america_systems_catalog(self): catalog = EnergySystemsCatalogFactory('north_america').catalog + print(catalog.entries()) - - # def test_montreal_catalog(self): - # catalog = EnergySystemsCatalogFactory('montreal_custom').catalog -- 2.39.2 From a5f70f472037d530b165f0942d909d7137f57d3a Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 13:12:56 -0400 Subject: [PATCH 040/101] erased forgotten not needed print --- .../energy_systems/north_america_energy_system_catalog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 206fd4a8..b5702215 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -38,7 +38,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, None, self._storage_components) - print(self._content) + def _load_generation_components(self): generation_components = [] boilers = self._archetypes['EnergySystemCatalog']['energy_generation_components']['boilers'] -- 2.39.2 From 56c84ad39988c8cb2a6c230bcbaee0b6bc3046fa Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 29 Aug 2023 13:29:51 -0400 Subject: [PATCH 041/101] solved bugs in adapting montreal_custom_catalog.py to new catalog data --- .../data_models/energy_systems/content.py | 7 ++++++ .../data_models/energy_systems/system.py | 5 ++-- .../energy_systems/thermal_storage_system.py | 8 ++++--- .../energy_systems/montreal_custom_catalog.py | 24 +++++++++---------- 4 files changed, 27 insertions(+), 17 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/content.py b/hub/catalog_factories/data_models/energy_systems/content.py index f6a03ea0..d3fd9068 100644 --- a/hub/catalog_factories/data_models/energy_systems/content.py +++ b/hub/catalog_factories/data_models/energy_systems/content.py @@ -69,4 +69,11 @@ class Content: return content + def __str__(self): + """Print content""" + _archetypes = [] + for _archetype in self.archetypes: + _archetypes.append(_archetype.to_dictionary()) + content = {'Archetypes': _archetypes} + return str(content) diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 7acb930b..30ee9292 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -9,7 +9,8 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from typing import Union, List from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem -from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem +from hub.catalog_factories.data_models.energy_systems.thermal_storage_system import ThermalStorageSystem +from hub.catalog_factories.data_models.energy_systems.electrical_storage_system import ElectricalStorageSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem @@ -95,7 +96,7 @@ class System: return self._emission_systems @property - def energy_storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: + def energy_storage_systems(self) -> Union[None, List[ThermalStorageSystem], List[ElectricalStorageSystem]]: """ Get energy storage systems :return: [EnergyStorageSystem] diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index 679669a4..71b4f931 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -67,9 +67,11 @@ class ThermalStorageSystem(EnergyStorageSystem): def to_dictionary(self): """Class content to dictionary""" - _layers = [] - for _layer in self.layers: - _layers.append(_layer.to_dictionary()) + _layers = None + if self.layers is not None: + _layers = [] + for _layer in self.layers: + _layers.append(_layer.to_dictionary()) content = {'Storage component': { 'storage id': self.id, 'name': self.name, diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index a9696c21..b2df20c2 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -162,33 +162,33 @@ class MontrealCustomCatalog(Catalog): name = system['name'] demands = system['demands']['demand'] generation_equipment = system['equipments']['generation_id'] - _generation_equipment = None + _generation_equipments = None for equipment_archetype in self._catalog_generation_equipments: if int(equipment_archetype.id) == int(generation_equipment): - _generation_equipment = equipment_archetype - _storage_equipment = None + _generation_equipments = [equipment_archetype] + _storage_equipments = None for equipment_archetype in self._catalog_storage_equipments: if int(equipment_archetype.id) == int(generation_equipment): - _storage_equipment = equipment_archetype + _storage_equipments = [equipment_archetype] distribution_equipment = system['equipments']['distribution_id'] - _distribution_equipment = None + _distribution_equipments = None for equipment_archetype in self._catalog_distribution_equipments: if int(equipment_archetype.id) == int(distribution_equipment): - _distribution_equipment = equipment_archetype + _distribution_equipments = [equipment_archetype] emission_equipment = system['equipments']['dissipation_id'] - _emission_equipment = None + _emission_equipments = None for equipment_archetype in self._catalog_emission_equipments: if int(equipment_archetype.id) == int(emission_equipment): - _emission_equipment = equipment_archetype + _emission_equipments = [equipment_archetype] _catalog_systems.append(System(self._lod, system_id, name, demands, - [_generation_equipment], - [_distribution_equipment], - [_emission_equipment], - [_storage_equipment])) + _generation_equipments, + _distribution_equipments, + _emission_equipments, + _storage_equipments)) return _catalog_systems def _load_archetypes(self): -- 2.39.2 From c072527dc6aae5885412203a4b0fc5b97ca0a98a Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 29 Aug 2023 14:03:30 -0400 Subject: [PATCH 042/101] small changes to pv_generation_system.py --- .../energy_systems/pv_generation_system.py | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index e1ee8226..ce0e71f1 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -18,22 +18,22 @@ class PvGenerationSystem(GenerationSystem): nominal_electricity_output, nominal_ambient_temperature, nominal_cell_temperature, nominal_radiation, standard_test_condition_cell_temperature, standard_test_condition_maximum_power, cell_temperature_coefficient, width, height): - super(PvGenerationSystem, self).__init__(system_id=system_id, name=name, model_name=model_name, - manufacturer=manufacturer, system_type='pv', fuel_type='renewable', - nominal_thermal_output=None, maximum_heat_output=None, - minimum_heat_output=None, source_medium=None, - supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, - maximum_cooling_output=None, minimum_cooling_output=None, - cooling_efficiency=None, electricity_efficiency=electricity_efficiency, - source_temperature=None, source_mass_flow=None, - nominal_electricity_output=nominal_electricity_output, - maximum_heat_supply_temperature=None, - minimum_heat_supply_temperature=None, - maximum_cooling_supply_temperature=None, - minimum_cooling_supply_temperature=None, heat_output_curve=None, - heat_fuel_consumption_curve=None, heat_efficiency_curve=None, - cooling_output_curve=None, cooling_fuel_consumption_curve=None, - cooling_efficiency_curve=None) + super().__init__(system_id=system_id, name=name, model_name=model_name, + manufacturer=manufacturer, system_type='pv', fuel_type='renewable', + nominal_thermal_output=None, maximum_heat_output=None, + minimum_heat_output=None, source_medium=None, + supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, + maximum_cooling_output=None, minimum_cooling_output=None, + cooling_efficiency=None, electricity_efficiency=electricity_efficiency, + source_temperature=None, source_mass_flow=None, + nominal_electricity_output=nominal_electricity_output, + maximum_heat_supply_temperature=None, + minimum_heat_supply_temperature=None, + maximum_cooling_supply_temperature=None, + minimum_cooling_supply_temperature=None, heat_output_curve=None, + heat_fuel_consumption_curve=None, heat_efficiency_curve=None, + cooling_output_curve=None, cooling_fuel_consumption_curve=None, + cooling_efficiency_curve=None) self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation -- 2.39.2 From a0d2f7e5bc20d58329fbaa941525acf4ffb718c7 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 6 Sep 2023 14:55:14 -0400 Subject: [PATCH 043/101] chnages were made to energy_plus_workflow.py --- hub/imports/results/energy_plus_workflow.py | 93 +++++++++++++++++++++ hub/imports/results_factory.py | 9 +- 2 files changed, 101 insertions(+), 1 deletion(-) create mode 100644 hub/imports/results/energy_plus_workflow.py diff --git a/hub/imports/results/energy_plus_workflow.py b/hub/imports/results/energy_plus_workflow.py new file mode 100644 index 00000000..8242c7a7 --- /dev/null +++ b/hub/imports/results/energy_plus_workflow.py @@ -0,0 +1,93 @@ +""" +Insel monthly energy balance +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2022 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Project collaborator Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" +import logging +from pathlib import Path +import csv + +import hub.helpers.constants as cte + + +class EnergyPlusWorkflow: + def __init__(self, base_path): + self._base_path = base_path + + @staticmethod + def _energy_plus_output_file(energy_plus_output_file_path): + with open(Path(energy_plus_output_file_path).resolve(), 'r', encoding='utf8') as csv_file: + csv_output = csv.reader(csv_file) + return csv_output + + @staticmethod + def _headers(csv_file): + headers = next(csv_file) + return headers + + @staticmethod + def _heating_columns(headers_list): + heating_column_index = [] + for index, header in enumerate(headers_list): + if "Total Heating" in header: + heating_column_index.append(index) + return heating_column_index + + @staticmethod + def _cooling_columns(headers_list): + cooling_column_index = [] + for index, header in enumerate(headers_list): + if "Total Cooling" in header: + cooling_column_index.append(index) + return cooling_column_index + + @staticmethod + def _dhw_columns(headers_list): + dhw_column_index = [] + for index, header in enumerate(headers_list): + if "DHW" in header: + dhw_column_index.append(index) + return dhw_column_index + + @staticmethod + def _appliance_columns(headers_list): + appliance_column_index = [] + for index, header in enumerate(headers_list): + if "InteriorEquipment" in header: + appliance_column_index.append(index) + return appliance_column_index + + @staticmethod + def _lighting_columns(headers_list): + lighting_column_index = [] + for index, header in enumerate(headers_list): + if "InteriorLights" in header: + lighting_column_index.append(index) + return lighting_column_index + + def _heating_loads(self, csv_file_path): + csv_file = self._energy_plus_output_file(csv_file_path) + headers = self._headers(csv_file) + heating_columns_index = self._heating_columns(headers) + building_heating_demand = [] + for line in csv_file: + total_heating_demand = 0 + for index in heating_columns_index: + total_heating_demand += float(line[index]) + building_heating_demand.append(total_heating_demand) + return building_heating_demand + + def _cooling_loads(self, csv_file_path): + csv_file = self._energy_plus_output_file(csv_file_path) + headers = self._headers(csv_file) + cooling_columns_index = self._heating_columns(headers) + building_cooling_demand = [] + for line in csv_file: + total_cooling_demand = 0 + for index in cooling_columns_index: + total_cooling_demand += float(line[index]) + building_cooling_demand.append(total_cooling_demand) + return building_cooling_demand + diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py index c277b122..590e66f5 100644 --- a/hub/imports/results_factory.py +++ b/hub/imports/results_factory.py @@ -10,7 +10,7 @@ from pathlib import Path from hub.helpers.utils import validate_import_export_type from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm - +from hub.imports.results.energy_plus_workflow import EnergyPlusWorkflow class ResultFactory: """ @@ -46,6 +46,13 @@ class ResultFactory: """ InselMonthlyEnergyBalance(self._city, self._base_path).enrich() + def _energy_plus_workflow(self): + """ + Enrich the city with energy plus results + """ + EnergyPlusWorkflow + + def enrich(self): """ Enrich the city given to the class using the usage factory given handler -- 2.39.2 From 1392c05489ca72e832f082a17d2dabb72f046898 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 7 Sep 2023 18:16:07 -0400 Subject: [PATCH 044/101] results_factory.py is modified The enrich method is added to energy_plus_workflow.py The Levis_out.csv is added to test_data --- hub/imports/results/energy_plus_workflow.py | 147 +- hub/imports/results_factory.py | 3 +- tests/tests_data/Levis_out.csv | 8761 +++++++++++++++++++ 3 files changed, 8838 insertions(+), 73 deletions(-) create mode 100644 tests/tests_data/Levis_out.csv diff --git a/hub/imports/results/energy_plus_workflow.py b/hub/imports/results/energy_plus_workflow.py index 8242c7a7..191337ea 100644 --- a/hub/imports/results/energy_plus_workflow.py +++ b/hub/imports/results/energy_plus_workflow.py @@ -5,7 +5,6 @@ Copyright © 2022 Concordia CERC group Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Project collaborator Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -import logging from pathlib import Path import csv @@ -13,81 +12,87 @@ import hub.helpers.constants as cte class EnergyPlusWorkflow: - def __init__(self, base_path): + def __init__(self, city, base_path): + self._city = city self._base_path = base_path @staticmethod - def _energy_plus_output_file(energy_plus_output_file_path): + def _building_energy_demands(energy_plus_output_file_path): with open(Path(energy_plus_output_file_path).resolve(), 'r', encoding='utf8') as csv_file: csv_output = csv.reader(csv_file) - return csv_output + headers = next(csv_output) + building_energy_demands = { + 'Heating (J)': [], + 'Cooling (J)': [], + 'DHW (J)': [], + 'Appliances (J)': [], + 'Lighting (J)': [] + } + heating_column_index = [] + cooling_column_index = [] + dhw_column_index = [] + appliance_column_index = [] + lighting_column_index = [] + for index, header in enumerate(headers): + if "Total Heating" in header: + heating_column_index.append(index) + elif "Total Cooling" in header: + cooling_column_index.append(index) + elif "DHW" in header: + dhw_column_index.append(index) + elif "InteriorEquipment" in header: + appliance_column_index.append(index) + elif "InteriorLights" in header: + lighting_column_index.append(index) - @staticmethod - def _headers(csv_file): - headers = next(csv_file) - return headers + for line in csv_output: + total_heating_demand = 0 + total_cooling_demand = 0 + total_dhw_demand = 0 + total_appliance_demand = 0 + total_lighting_demand = 0 + for heating_index in heating_column_index: + total_heating_demand += float(line[heating_index]) + building_energy_demands['Heating (J)'].append(total_heating_demand) + for cooling_index in cooling_column_index: + total_cooling_demand += float(line[cooling_index]) + building_energy_demands['Cooling (J)'].append(total_cooling_demand) + for dhw_index in dhw_column_index: + total_dhw_demand += float(line[dhw_index]) * 3600 + building_energy_demands['DHW (J)'].append(total_dhw_demand) + for appliance_index in appliance_column_index: + total_appliance_demand += float(line[appliance_index]) + building_energy_demands['Appliances (J)'].append(total_appliance_demand) + for lighting_index in lighting_column_index: + total_lighting_demand += float(line[lighting_index]) + building_energy_demands['Lighting (J)'].append(total_lighting_demand) - @staticmethod - def _heating_columns(headers_list): - heating_column_index = [] - for index, header in enumerate(headers_list): - if "Total Heating" in header: - heating_column_index.append(index) - return heating_column_index - - @staticmethod - def _cooling_columns(headers_list): - cooling_column_index = [] - for index, header in enumerate(headers_list): - if "Total Cooling" in header: - cooling_column_index.append(index) - return cooling_column_index - - @staticmethod - def _dhw_columns(headers_list): - dhw_column_index = [] - for index, header in enumerate(headers_list): - if "DHW" in header: - dhw_column_index.append(index) - return dhw_column_index - - @staticmethod - def _appliance_columns(headers_list): - appliance_column_index = [] - for index, header in enumerate(headers_list): - if "InteriorEquipment" in header: - appliance_column_index.append(index) - return appliance_column_index - - @staticmethod - def _lighting_columns(headers_list): - lighting_column_index = [] - for index, header in enumerate(headers_list): - if "InteriorLights" in header: - lighting_column_index.append(index) - return lighting_column_index - - def _heating_loads(self, csv_file_path): - csv_file = self._energy_plus_output_file(csv_file_path) - headers = self._headers(csv_file) - heating_columns_index = self._heating_columns(headers) - building_heating_demand = [] - for line in csv_file: - total_heating_demand = 0 - for index in heating_columns_index: - total_heating_demand += float(line[index]) - building_heating_demand.append(total_heating_demand) - return building_heating_demand - - def _cooling_loads(self, csv_file_path): - csv_file = self._energy_plus_output_file(csv_file_path) - headers = self._headers(csv_file) - cooling_columns_index = self._heating_columns(headers) - building_cooling_demand = [] - for line in csv_file: - total_cooling_demand = 0 - for index in cooling_columns_index: - total_cooling_demand += float(line[index]) - building_cooling_demand.append(total_cooling_demand) - return building_cooling_demand + return building_energy_demands + def enrich(self): + """ + Enrich the city by using the energy plus workflow output files (J) + :return: None + """ + for building in self._city.buildings: + file_name = building.name + '_out' + '.csv' + energy_plus_output_file_path = Path(self._base_path / file_name).resolve() + if energy_plus_output_file_path.is_file(): + building.heating_demand[cte.HOUR] = self._building_energy_demands(energy_plus_output_file_path)['Heating (J)'] + building.cooling_demand[cte.HOUR] = self._building_energy_demands(energy_plus_output_file_path)['Cooling (J)'] + building.domestic_hot_water_heat_demand[cte.HOUR] = ( + self._building_energy_demands(energy_plus_output_file_path))['DHW (J)'] + building.appliances_electrical_demand[cte.HOUR] = ( + self._building_energy_demands(energy_plus_output_file_path))['Appliances (J)'] + building.lighting_electrical_demand[cte.HOUR] = ( + self._building_energy_demands(energy_plus_output_file_path))['Lighting (J)'] + building.heating_demand[cte.MONTH] = [sum(building.heating_demand[cte.HOUR])] + building.cooling_demand[cte.MONTH] = [sum(building.cooling_demand[cte.HOUR])] + building.domestic_hot_water_heat_demand[cte.MONTH] = [sum(building.domestic_hot_water_heat_demand[cte.HOUR])] + building.appliances_electrical_demand[cte.MONTH] = [sum(building.appliances_electrical_demand[cte.HOUR])] + building.lighting_electrical_demand[cte.MONTH] = [sum(building.lighting_electrical_demand[cte.HOUR])] + building.heating_demand[cte.YEAR] = [sum(building.heating_demand[cte.MONTH])] + building.cooling_demand[cte.YEAR] = [sum(building.cooling_demand[cte.MONTH])] + building.domestic_hot_water_heat_demand[cte.YEAR] = [sum(building.domestic_hot_water_heat_demand[cte.MONTH])] + building.appliances_electrical_demand[cte.YEAR] = [sum(building.appliances_electrical_demand[cte.MONTH])] + building.lighting_electrical_demand[cte.YEAR] = [sum(building.lighting_electrical_demand[cte.MONTH])] diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py index 590e66f5..fac60de3 100644 --- a/hub/imports/results_factory.py +++ b/hub/imports/results_factory.py @@ -50,8 +50,7 @@ class ResultFactory: """ Enrich the city with energy plus results """ - EnergyPlusWorkflow - + EnergyPlusWorkflow(self._city, self._base_path).enrich() def enrich(self): """ diff --git a/tests/tests_data/Levis_out.csv b/tests/tests_data/Levis_out.csv new file mode 100644 index 00000000..48e59482 --- /dev/null +++ b/tests/tests_data/Levis_out.csv @@ -0,0 +1,8761 @@ +Date/Time,1 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),1 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),2 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),2 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),DHW 1:Water Use Equipment Heating Rate [W](Hourly),DHW 2:Water Use Equipment Heating Rate [W](Hourly),DistrictHeating:Facility [J](Hourly),DistrictCooling:Facility [J](Hourly),InteriorEquipment:Electricity [J](Hourly),InteriorLights:Electricity [J](Hourly) + 01/01 01:00:00,1260878520,0,1763901832,0,40245.37121,60060.73339,3385882329,0,212820590.5,234102649.5 + 01/01 02:00:00,975931886.3,0,1368832823,0,19890.9595,29684.54705,2523236533,0,141880393.7,0 + 01/01 03:00:00,1413950814,0,2004308843,0,19724.73774,29436.48372,3595240054,0,141880393.7,0 + 01/01 04:00:00,1479118853,0,2097341654,0,19629.60601,29294.51258,3752587334,0,141880393.7,0 + 01/01 05:00:00,1522448468,0,2157387356,0,19565.57907,29198.9611,3855388168,0,141880393.7,0 + 01/01 06:00:00,1562611889,0,2212907735,0,19501.09328,29102.72484,3950493369,0,141880393.7,0 + 01/01 07:00:00,1494813881,0,2109315785,0,78603.37013,117304.8208,4309399153,0,141880393.7,156068433 + 01/01 08:00:00,1418680555,0,1965172946,0,317265.2892,473475.219,6230519330,0,567521574.6,390171082.6 + 01/01 09:00:00,1462188968,0,1999403426,0,278329.5961,415369.0018,5958907347,0,567521574.6,390171082.6 + 01/01 10:00:00,1577881696,0,2229501196,0,200531.1977,299265.4916,5606650974,0,283760787.3,0 + 01/01 11:00:00,1503157314,0,2150152215,0,161686.5625,241295.1658,5104043750,0,283760787.3,0 + 01/01 12:00:00,1425892753,0,2049495031,0,81715.70686,121949.5593,4208582742,0,283760787.3,0 + 01/01 13:00:00,1388119184,0,1995947306,0,81899.62723,122224.0354,4118911676,0,283760787.3,0 + 01/01 14:00:00,1389615433,0,1971492710,0,82508.63631,123132.8985,4101417668,0,283760787.3,0 + 01/01 15:00:00,1394266313,0,1966512826,0,124024.1796,185089.1907,4473587272,0,283760787.3,0 + 01/01 16:00:00,1378758645,0,1940052959,0,207727.8541,310005.5208,5182651754,0,283760787.3,0 + 01/01 17:00:00,1332537097,0,1869778750,0,208142.9645,310625.0165,5069880579,0,354700984.2,0 + 01/01 18:00:00,1347995751,0,1893473634,0,292086.0995,435898.7088,5862214694,0,141880393.7,0 + 01/01 19:00:00,1076186416,0,1488310426,0,293310.5216,437725.992,5196228291,0,638461771.5,0 + 01/01 20:00:00,792567861.1,0,1066248691,0,168280.4804,251135.69,3368714765,0,638461771.5,702307948.6 + 01/01 21:00:00,812670199.7,0,1097212709,0,168280.4804,251135.69,3419781122,0,496581377.8,702307948.6 + 01/01 22:00:00,846309694.4,0,1148218824,0,84289.2564,125790.2314,2750814674,0,354700984.2,702307948.6 + 01/01 23:00:00,862006937.4,0,1172662921,0,84289.2564,125790.2314,2790956015,0,354700984.2,624273732.1 + 01/01 24:00:00,898353480.5,0,1228049674,0,42232.24095,63025.86578,2505332339,0,354700984.2,468205299.1 + 01/02 01:00:00,988521622.3,0,1364110903,0,42469.57871,63380.06004,2733691225,0,212820590.5,234102649.5 + 01/02 02:00:00,453075535.7,0,603196546.7,0,21234.78935,31690.03002,1246801432,0,141880393.7,0 + 01/02 03:00:00,830947160.2,0,1155372018,0,21234.78935,31690.03002,2176848528,0,141880393.7,0 + 01/02 04:00:00,825793399.5,0,1145981501,0,21268.12453,31739.77823,2162603350,0,141880393.7,0 + 01/02 05:00:00,805271602.8,0,1115910917,0,21307.16634,31798.04281,2112361272,0,141880393.7,0 + 01/02 06:00:00,794831645.2,0,1100862258,0,21307.16634,31798.04281,2086872656,0,141880393.7,0 + 01/02 07:00:00,718282302.3,0,987521158.7,0,85503.91737,127602.9474,2472988174,0,141880393.7,156068433 + 01/02 08:00:00,655157127.7,0,908388103.7,0,342015.6695,510411.7895,4632284084,0,567521574.6,390171082.6 + 01/02 09:00:00,802954180.5,0,1085424010,0,299684.8126,447238.753,4577303027,0,567521574.6,390171082.6 + 01/02 10:00:00,933885315.4,0,1303782123,0,214751.3222,320487.09,4164525722,0,283760787.3,0 + 01/02 11:00:00,791010116.8,0,1137418031,0,172276.1814,257098.7293,3474177826,0,283760787.3,0 + 01/02 12:00:00,742111041.6,0,1096687221,0,86138.09068,128549.3646,2611673102,0,283760787.3,0 + 01/02 13:00:00,791312476.4,0,1132662738,0,86138.09068,128549.3646,2696850054,0,283760787.3,0 + 01/02 14:00:00,819783977,0,1156935807,0,86138.09068,128549.3646,2749594623,0,283760787.3,0 + 01/02 15:00:00,825595951.1,0,1160619590,0,129361.5413,193054.4758,3146913203,0,283760787.3,0 + 01/02 16:00:00,828284467.9,0,1160219900,0,215900.852,322202.6067,3925676820,0,283760787.3,0 + 01/02 17:00:00,817854536.2,0,1141619984,0,215602.5688,321757.4597,3893970623,0,354700984.2,0 + 01/02 18:00:00,860913131.2,0,1204514494,0,301843.5964,450460.4436,4773722169,0,141880393.7,0 + 01/02 19:00:00,619275779.1,0,842933485,0,301843.5964,450460.4436,4170503808,0,638461771.5,0 + 01/02 20:00:00,377019134,0,479940299,0,172482.0551,257405.9677,2404556315,0,638461771.5,702307948.6 + 01/02 21:00:00,417242257.7,0,539265484.9,0,172482.0551,257405.9677,2504104625,0,496581377.8,702307948.6 + 01/02 22:00:00,462194884.8,0,606473584.6,0,86241.02753,128702.9839,1842466910,0,354700984.2,702307948.6 + 01/02 23:00:00,486781531.1,0,643429252.5,0,86241.02753,128702.9839,1904009225,0,354700984.2,624273732.1 + 01/02 24:00:00,533617982.8,0,713803378.5,0,43180.17041,64440.52135,1634855852,0,354700984.2,468205299.1 + 01/03 01:00:00,669731550.9,0,916964306.7,0,43120.51377,64351.49194,1973595078,0,212820590.5,234102649.5 + 01/03 02:00:00,171257776.1,0,204781379,0,21590.0852,32220.26067,569756400.3,0,141880393.7,0 + 01/03 03:00:00,558342508.7,0,767193055.1,0,21560.25688,32175.74597,1518985174,0,141880393.7,0 + 01/03 04:00:00,569838651.4,0,787463722.8,0,21560.25688,32175.74597,1550751984,0,141880393.7,0 + 01/03 05:00:00,563415715.2,0,776934147.6,0,21590.0852,32220.26067,1534067108,0,141880393.7,0 + 01/03 06:00:00,550696529,0,757538225.5,0,21614.05786,32256.0366,1502167095,0,141880393.7,0 + 01/03 07:00:00,502952666.3,0,685632477.7,0,86360.34081,128881.0427,1963454125,0,141880393.7,156068433 + 01/03 08:00:00,646825714.4,0,875534396.5,0,344552.3627,514197.4586,4613859467,0,567521574.6,390171082.6 + 01/03 09:00:00,538145924.5,0,704478938.9,0,301036.3736,449255.7735,3943676593,0,567521574.6,390171082.6 + 01/03 10:00:00,584940118.1,0,821108157.5,0,215025.9811,320896.9811,3335370940,0,283760787.3,0 + 01/03 11:00:00,457964742.8,0,795968440.7,0,172276.1814,257098.7293,2799682862,0,283760787.3,0 + 01/03 12:00:00,356597247.5,0,800988290.1,0,86241.02753,128702.9839,1931383979,0,283760787.3,0 + 01/03 13:00:00,403214001,0,840466768.4,0,86360.34081,128881.0427,2018549750,0,283760787.3,0 + 01/03 14:00:00,554720716.1,0,909751915.4,0,86360.34081,128881.0427,2239341612,0,283760787.3,0 + 01/03 15:00:00,618895398.7,0,902341164.2,0,129540.5112,193321.564,2683540034,0,283760787.3,0 + 01/03 16:00:00,662818639.7,0,892775724.3,0,215900.852,322202.6067,3492766816,0,283760787.3,0 + 01/03 17:00:00,769912335.3,0,1087127149,0,215602.5688,321757.4597,3791535587,0,354700984.2,0 + 01/03 18:00:00,838603259.6,0,1185468661,0,301483.3174,449922.7762,4729133858,0,141880393.7,0 + 01/03 19:00:00,616117973.6,0,848511831.8,0,301483.3174,449922.7762,4169691742,0,638461771.5,0 + 01/03 20:00:00,406258615.6,0,531275261.8,0,171801.0577,256389.672,2479020505,0,638461771.5,702307948.6 + 01/03 21:00:00,492551150.2,0,656288436.7,0,171248.4644,255565.0017,2685368065,0,496581377.8,702307948.6 + 01/03 22:00:00,563587297.7,0,759330122.8,0,85624.23218,127782.5009,2091181659,0,354700984.2,702307948.6 + 01/03 23:00:00,576910353.9,0,777669569,0,85900.52887,128194.836,2125323236,0,354700984.2,624273732.1 + 01/03 24:00:00,656076798,0,893477830.4,0,42751.95869,63801.47369,1933146985,0,354700984.2,468205299.1 + 01/04 01:00:00,845981058.1,0,1173642377,0,42536.24905,63479.55645,2401280335,0,212820590.5,234102649.5 + 01/04 02:00:00,394750545.3,0,537072922.7,0,21193.83871,31628.91677,1121985388,0,141880393.7,0 + 01/04 03:00:00,806042185.8,0,1131617565,0,21158.93241,31576.82388,2127508473,0,141880393.7,0 + 01/04 04:00:00,854192057.7,0,1198348306,0,21072.3141,31447.55784,2241611903,0,141880393.7,0 + 01/04 05:00:00,902186291.3,0,1266214439,0,20989.47008,31323.92444,2356728950,0,141880393.7,0 + 01/04 06:00:00,938994455,0,1317523876,0,20950.75154,31266.14229,2444499149,0,141880393.7,0 + 01/04 07:00:00,914248999.4,0,1277500871,0,83613.72362,124782.0907,2941974802,0,141880393.7,156068433 + 01/04 08:00:00,889031560.3,0,1212936809,0,334454.8945,499128.363,5102868096,0,567521574.6,390171082.6 + 01/04 09:00:00,977923118.5,0,1336392112,0,292648.0327,436737.3176,4940102492,0,567521574.6,390171082.6 + 01/04 10:00:00,1137355210,0,1607987518,0,209507.5154,312661.4229,4625150905,0,283760787.3,0 + 01/04 11:00:00,1097237125,0,1571741625,0,167915.7607,250591.3955,4175604512,0,283760787.3,0 + 01/04 12:00:00,1032866143,0,1514022609,0,83957.88034,125295.6977,3300201633,0,283760787.3,0 + 01/04 13:00:00,992050393.8,0,1486810299,0,83957.88034,125295.6977,3232173574,0,283760787.3,0 + 01/04 14:00:00,917774088.1,0,1386050777,0,84289.2564,125790.2314,3060111021,0,283760787.3,0 + 01/04 15:00:00,982589101.2,0,1410133420,0,126433.8846,188685.3471,3527151755,0,283760787.3,0 + 01/04 16:00:00,1068796765,0,1512734905,0,210350.6005,313919.6125,4468904437,0,283760787.3,0 + 01/04 17:00:00,1092866420,0,1550824561,0,210350.6005,313919.6125,4531063748,0,354700984.2,0 + 01/04 18:00:00,1137244754,0,1614984476,0,294490.8407,439487.4576,5394551104,0,141880393.7,0 + 01/04 19:00:00,892986639.9,0,1247896694,0,295012.3974,440265.8098,4787884880,0,638461771.5,0 + 01/04 20:00:00,650170357.3,0,883407027,0,168578.5128,251580.4628,3046149696,0,638461771.5,702307948.6 + 01/04 21:00:00,690946591.6,0,941512009.1,0,168928.9638,252103.4631,3148175338,0,496581377.8,702307948.6 + 01/04 22:00:00,741086322.4,0,1014062073,0,84464.48191,126051.7316,2513006764,0,354700984.2,702307948.6 + 01/04 23:00:00,787963375.4,0,1081206021,0,84289.2564,125790.2314,2625455552,0,354700984.2,624273732.1 + 01/04 24:00:00,855990435.7,0,1180107448,0,42144.6282,62895.11569,2414240962,0,354700984.2,468205299.1 + 01/05 01:00:00,1004778145,0,1399416208,0,42070.12011,62783.92251,2781668906,0,212820590.5,234102649.5 + 01/05 02:00:00,702854210.3,0,988738372,0,21035.06005,31391.96125,1880329859,0,141880393.7,0 + 01/05 03:00:00,919969422.7,0,1290079465,0,20989.47008,31323.92444,2398377108,0,141880393.7,0 + 01/05 04:00:00,946986707.7,0,1326888684,0,20950.75154,31266.14229,2461856209,0,141880393.7,0 + 01/05 05:00:00,961573611,0,1345820003,0,20950.75154,31266.14229,2495374432,0,141880393.7,0 + 01/05 06:00:00,981864923.7,0,1373441427,0,20903.43091,31195.52268,2542862583,0,141880393.7,0 + 01/05 07:00:00,950079677.3,0,1323927064,0,20863.29282,31135.62206,2461202835,0,141880393.7,156068433 + 01/05 08:00:00,938936049.4,0,1281648053,0,83257.18579,124250.0066,2967609995,0,567521574.6,390171082.6 + 01/05 09:00:00,1032160672,0,1401997212,0,208142.9645,310625.0165,4301722615,0,567521574.6,390171082.6 + 01/05 10:00:00,1057063376,0,1491939220,0,207727.8541,310005.5208,4412842746,0,283760787.3,0 + 01/05 11:00:00,959367858.9,0,1460830213,0,207727.8541,310005.5208,4284038222,0,283760787.3,0 + 01/05 12:00:00,875019085.1,0,1460911423,0,124636.7125,186003.3125,3454234598,0,283760787.3,0 + 01/05 13:00:00,873308819.7,0,1492739931,0,124885.7787,186375.0099,3486587589,0,283760787.3,0 + 01/05 14:00:00,947804692.9,0,1480016494,0,124636.7125,186003.3125,3546125277,0,283760787.3,0 + 01/05 15:00:00,977562514.4,0,1433282929,0,124333.0211,185550.0946,3526424660,0,283760787.3,0 + 01/05 16:00:00,1069111114,0,1470862636,0,289389.7525,431874.7783,5136526061,0,283760787.3,0 + 01/05 17:00:00,1230693274,0,1759347061,0,369528.7214,551471.2711,6305640308,0,354700984.2,0 + 01/05 18:00:00,1330167281,0,1902794469,0,286004.974,426823.4576,5799144103,0,141880393.7,0 + 01/05 19:00:00,1191172737,0,1688209109,0,283762.2034,423476.4281,5425440919,0,638461771.5,0 + 01/05 20:00:00,980496734.1,0,1367842729,0,243911.2271,364004.2753,4536835272,0,638461771.5,702307948.6 + 01/05 21:00:00,1041613121,0,1452967565,0,203259.3559,303336.8961,4318327194,0,496581377.8,702307948.6 + 01/05 22:00:00,1157053738,0,1618394272,0,160823.1895,240006.6993,4218435610,0,354700984.2,702307948.6 + 01/05 23:00:00,1251462298,0,1753663261,0,119956.8668,179019.2804,4081439688,0,354700984.2,624273732.1 + 01/05 24:00:00,1370440395,0,1926171413,0,79316.32229,118368.8047,4008278265,0,354700984.2,468205299.1 + 01/06 01:00:00,1517793341,0,2141974830,0,39884.17959,59521.70411,4017629352,0,212820590.5,234102649.5 + 01/06 02:00:00,1041806040,0,1466069331,0,19880.68544,29669.21441,2686255010,0,141880393.7,0 + 01/06 03:00:00,1404973378,0,1988541042,0,19992.81113,29836.54673,3572900109,0,141880393.7,0 + 01/06 04:00:00,1414169919,0,1998311895,0,19992.81113,29836.54673,3591867502,0,141880393.7,0 + 01/06 05:00:00,1427569281,0,2014423415,0,19992.81113,29836.54673,3621378384,0,141880393.7,0 + 01/06 06:00:00,1437959286,0,2026595833,0,19992.81113,29836.54673,3643940808,0,141880393.7,0 + 01/06 07:00:00,1393492563,0,1958227300,0,19942.0898,29760.85205,3530650454,0,141880393.7,156068433 + 01/06 08:00:00,1372731514,0,1888693735,0,19880.68544,29669.21441,3439804888,0,567521574.6,390171082.6 + 01/06 09:00:00,1339436878,0,1789215857,0,79768.35918,119043.4082,3844375097,0,567521574.6,390171082.6 + 01/06 10:00:00,1280698381,0,1809559353,0,121264.9218,180971.3744,4178308400,0,283760787.3,0 + 01/06 11:00:00,1109104278,0,1729596599,0,121955.6136,182002.1377,3932948782,0,283760787.3,0 + 01/06 12:00:00,1027258054,0,1722058588,0,81492.23038,121616.0511,3480506455,0,283760787.3,0 + 01/06 13:00:00,895920126.9,0,1658499225,0,81715.70686,121949.5593,3287614311,0,283760787.3,0 + 01/06 14:00:00,912349329.3,0,1555289329,0,122849.4409,183336.0531,3569906436,0,283760787.3,0 + 01/06 15:00:00,947826093,0,1415691190,0,165017.2726,246265.797,3844136334,0,283760787.3,0 + 01/06 16:00:00,1130479601,0,1553014164,0,204749.0681,305560.0885,4520606728,0,283760787.3,0 + 01/06 17:00:00,1297700933,0,1860316571,0,245698.8817,366672.1062,5362553061,0,354700984.2,0 + 01/06 18:00:00,1339924375,0,1919087960,0,287411.2278,428922.0998,5837812313,0,141880393.7,0 + 01/06 19:00:00,1141917041,0,1617073996,0,164234.9873,245098.3427,4232591025,0,638461771.5,0 + 01/06 20:00:00,887334540.6,0,1232210042,0,123762.9545,184699.3477,3230008871,0,638461771.5,702307948.6 + 01/06 21:00:00,918400154.5,0,1274517827,0,82682.78642,123392.7938,2934790070,0,496581377.8,702307948.6 + 01/06 22:00:00,974060179.7,0,1353851958,0,82682.78642,123392.7938,3069784227,0,354700984.2,702307948.6 + 01/06 23:00:00,998392533.9,0,1387133936,0,82888.68076,123700.063,3129245947,0,354700984.2,624273732.1 + 01/06 24:00:00,1036923835,0,1442304207,0,83091.14165,124002.2083,3224764102,0,354700984.2,468205299.1 + 01/07 01:00:00,1162150802,0,1627403109,0,41545.57082,62001.10417,3162321940,0,212820590.5,234102649.5 + 01/07 02:00:00,633038118.5,0,867559229.7,0,20814.29645,31062.50165,1687353821,0,141880393.7,0 + 01/07 03:00:00,1011170458,0,1420772667,0,20863.29282,31135.62206,2619139218,0,141880393.7,0 + 01/07 04:00:00,1014290325,0,1425109141,0,20863.29282,31135.62206,2626595560,0,141880393.7,0 + 01/07 05:00:00,1015584128,0,1425558608,0,20863.29282,31135.62206,2628338829,0,141880393.7,0 + 01/07 06:00:00,1006828290,0,1411453435,0,20903.43091,31195.52268,2605837958,0,141880393.7,0 + 01/07 07:00:00,935735713.9,0,1304791079,0,83803.00617,125064.5692,2992450064,0,141880393.7,156068433 + 01/07 08:00:00,902316220.6,0,1231746091,0,335212.0247,500258.2766,5141755396,0,567521574.6,390171082.6 + 01/07 09:00:00,1028476139,0,1413865366,0,294490.8407,439487.4576,5084663378,0,567521574.6,390171082.6 + 01/07 10:00:00,1162131379,0,1628360792,0,211589.3241,315768.2388,4688979397,0,283760787.3,0 + 01/07 11:00:00,1096448800,0,1542215883,0,169550.7097,253031.3341,4159960041,0,283760787.3,0 + 01/07 12:00:00,1036380360,0,1468764753,0,84939.15741,126760.1201,3267262513,0,283760787.3,0 + 01/07 13:00:00,1012110230,0,1438961934,0,84939.15741,126760.1201,3213189563,0,283760787.3,0 + 01/07 14:00:00,952690146.6,0,1369462688,0,84939.15741,126760.1201,3084270233,0,283760787.3,0 + 01/07 15:00:00,924516598.4,0,1311050218,0,127608.7472,190438.6694,3380537516,0,283760787.3,0 + 01/07 16:00:00,1015912579,0,1425053654,0,212681.2453,317397.7823,4349250732,0,283760787.3,0 + 01/07 17:00:00,1026707789,0,1440992047,0,212347.8935,316900.3002,4372993333,0,354700984.2,0 + 01/07 18:00:00,1065066238,0,1497817458,0,297287.0509,443660.4203,5230294592,0,141880393.7,0 + 01/07 19:00:00,812991536.8,0,1121206787,0,297753.7434,444356.8952,4605796623,0,638461771.5,0 + 01/07 20:00:00,563655061.1,0,749413397.6,0,170144.9962,253918.2258,2839696058,0,638461771.5,702307948.6 + 01/07 21:00:00,607217394,0,813543020.5,0,170144.9962,253918.2258,2947388014,0,496581377.8,702307948.6 + 01/07 22:00:00,653400711.5,0,882393283.8,0,85072.4981,126959.1129,2299107795,0,354700984.2,702307948.6 + 01/07 23:00:00,691855507,0,939287777.5,0,84939.15741,126760.1201,2393260684,0,354700984.2,624273732.1 + 01/07 24:00:00,759269646.9,0,1038826497,0,42469.57871,63380.06004,2179154844,0,354700984.2,468205299.1 + 01/08 01:00:00,896736366.8,0,1242499856,0,42469.57871,63380.06004,2520294922,0,212820590.5,234102649.5 + 01/08 02:00:00,384397238.1,0,517623217.8,0,21307.16634,31798.04281,1093199209,0,141880393.7,0 + 01/08 03:00:00,775012762.5,0,1082435642,0,21234.78935,31690.03002,2047977754,0,141880393.7,0 + 01/08 04:00:00,845572323.1,0,1182876549,0,21072.3141,31447.55784,2217520412,0,141880393.7,0 + 01/08 05:00:00,915895410,0,1283985753,0,20950.75154,31266.14229,2387861981,0,141880393.7,0 + 01/08 06:00:00,984129690.5,0,1381526144,0,20814.29645,31062.50165,2552412307,0,141880393.7,0 + 01/08 07:00:00,1012009619,0,1418342710,0,82508.63631,123132.8985,3170661854,0,141880393.7,156068433 + 01/08 08:00:00,1029509917,0,1401214783,0,328469.9746,490196.6854,5377924675,0,567521574.6,390171082.6 + 01/08 09:00:00,1080877213,0,1410441637,0,285222.8063,425656.1789,5050483197,0,567521574.6,390171082.6 + 01/08 10:00:00,1172747489,0,1662650984,0,203259.3559,303336.8961,4659144981,0,283760787.3,0 + 01/08 11:00:00,1062065111,0,1680655975,0,162984.4608,243232.1022,4205100713,0,283760787.3,0 + 01/08 12:00:00,966120546.8,0,1729055440,0,81492.23038,121616.0511,3426365800,0,283760787.3,0 + 01/08 13:00:00,917039147.9,0,1756971972,0,81715.70686,121949.5593,3407206078,0,283760787.3,0 + 01/08 14:00:00,960216646,0,1672677097,0,81715.70686,121949.5593,3366088701,0,283760787.3,0 + 01/08 15:00:00,1087489287,0,1610044176,0,122849.4409,183336.0531,3799801242,0,283760787.3,0 + 01/08 16:00:00,1307002058,0,1779513541,0,203259.3559,303336.8961,4910262106,0,283760787.3,0 + 01/08 17:00:00,1503633237,0,2135143906,0,203259.3559,303336.8961,5462523651,0,354700984.2,0 + 01/08 18:00:00,1599200005,0,2272368496,0,282268.5823,421247.402,6404226044,0,141880393.7,0 + 01/08 19:00:00,1402905005,0,1972818108,0,281440.5816,420011.7238,5900951413,0,638461771.5,0 + 01/08 20:00:00,1186903088,0,1645893864,0,160424.9581,239412.3933,4272211417,0,638461771.5,702307948.6 + 01/08 21:00:00,1219217474,0,1691244733,0,161296.3327,240712.8011,4357695088,0,496581377.8,702307948.6 + 01/08 22:00:00,1281490307,0,1781919052,0,80212.47907,119706.1966,3783116591,0,354700984.2,702307948.6 + 01/08 23:00:00,1325084895,0,1845306042,0,80212.47907,119706.1966,3890098170,0,354700984.2,624273732.1 + 01/08 24:00:00,1373023173,0,1915518448,0,40205.79737,60001.67483,3649288521,0,354700984.2,468205299.1 + 01/09 01:00:00,1491293758,0,2090950361,0,40324.08318,60178.20028,3944052339,0,212820590.5,234102649.5 + 01/09 02:00:00,980478904.3,0,1364112844,0,20210.82031,30161.89573,2525933526,0,141880393.7,0 + 01/09 03:00:00,1316992616,0,1851576037,0,20325.93559,30333.68961,3350943304,0,141880393.7,0 + 01/09 04:00:00,1299476676,0,1825116729,0,20373.0576,30404.01278,3307390859,0,141880393.7,0 + 01/09 05:00:00,1281903605,0,1797809932,0,20428.92672,30487.38983,3263012277,0,141880393.7,0 + 01/09 06:00:00,1251698354,0,1752264914,0,20529.37341,30637.29284,3188163266,0,141880393.7,0 + 01/09 07:00:00,1182451725,0,1648572825,0,82117.49365,122549.1714,3567824543,0,141880393.7,156068433 + 01/09 08:00:00,1125058846,0,1541384164,0,330731.1457,493571.1752,5633931365,0,567521574.6,390171082.6 + 01/09 09:00:00,1185052396,0,1622903815,0,291400.1503,434875.0231,5422546836,0,567521574.6,390171082.6 + 01/09 10:00:00,1239456172,0,1734985601,0,209507.5154,312661.4229,4854249951,0,283760787.3,0 + 01/09 11:00:00,1146405624,0,1623559133,0,168928.9638,252103.4631,4285681495,0,283760787.3,0 + 01/09 12:00:00,1060258592,0,1516477900,0,84775.35484,126515.6671,3337384171,0,283760787.3,0 + 01/09 13:00:00,1033037178,0,1480839028,0,84775.35484,126515.6671,3274523885,0,283760787.3,0 + 01/09 14:00:00,1070709565,0,1508265383,0,84939.15741,126760.1201,3341092347,0,283760787.3,0 + 01/09 15:00:00,1049034335,0,1471041522,0,128033.3501,191072.3315,3668856311,0,283760787.3,0 + 01/09 16:00:00,1026165172,0,1435354619,0,213759.7934,319007.3685,4379481574,0,283760787.3,0 + 01/09 17:00:00,980603523.5,0,1366033689,0,214411.4849,319979.9291,4270446303,0,354700984.2,0 + 01/09 18:00:00,1003271801,0,1398955916,0,300651.8511,448681.9261,5099829315,0,141880393.7,0 + 01/09 19:00:00,741542026.6,0,1008383367,0,301036.3736,449255.7735,4450977123,0,638461771.5,0 + 01/09 20:00:00,460115025,0,590552923.2,0,172276.1814,257098.7293,2596417627,0,638461771.5,702307948.6 + 01/09 21:00:00,463008626.6,0,596542628.7,0,172912.4629,258048.2928,2611009976,0,496581377.8,702307948.6 + 01/09 22:00:00,444996997.7,0,572632315.7,0,86855.25993,129619.642,1796938961,0,354700984.2,702307948.6 + 01/09 23:00:00,413084899.7,0,529710335.3,0,86932.73176,129735.2582,1722799999,0,354700984.2,624273732.1 + 01/09 24:00:00,420082326.9,0,544172488.4,0,43545.66862,64985.97763,1354968742,0,354700984.2,468205299.1 + 01/10 01:00:00,534606614.7,0,717510947.3,0,43510.63427,64933.69364,1642517142,0,212820590.5,234102649.5 + 01/10 02:00:00,47817512.86,0,32250795.28,0,21772.83431,32492.98881,275425271.4,0,141880393.7,0 + 01/10 03:00:00,387651564.6,0,493188315.9,0,21755.31713,32466.84682,1076039671,0,141880393.7,0 + 01/10 04:00:00,399160475.1,0,539944404.7,0,21772.83431,32492.98881,1134461843,0,141880393.7,0 + 01/10 05:00:00,391499212.1,0,528869044.3,0,21772.83431,32492.98881,1115725220,0,141880393.7,0 + 01/10 06:00:00,388637732.1,0,524964597.2,0,21772.83431,32492.98881,1108959293,0,141880393.7,0 + 01/10 07:00:00,334107591.9,0,443766595.8,0,87091.33724,129971.9553,1559302041,0,141880393.7,156068433 + 01/10 08:00:00,486467476.7,0,663942197.2,0,348085.0742,519469.5491,4273606318,0,567521574.6,390171082.6 + 01/10 09:00:00,537157489.2,0,697821595.4,0,304574.4399,454535.8555,3967776148,0,567521574.6,390171082.6 + 01/10 10:00:00,391185549.2,0,541708900.4,0,217728.3431,324929.8881,2886464082,0,283760787.3,0 + 01/10 11:00:00,251606082.1,0,478642182,0,174341.8804,260181.5037,2294532447,0,283760787.3,0 + 01/10 12:00:00,209179507.2,0,525757098.3,0,87091.33724,129971.9553,1516364458,0,283760787.3,0 + 01/10 13:00:00,263466624.3,0,584219996.8,0,87170.94019,130090.7518,1629828712,0,283760787.3,0 + 01/10 14:00:00,295487368.8,0,551929668.5,0,87170.94019,130090.7518,1629559129,0,283760787.3,0 + 01/10 15:00:00,342850486.4,0,518881398.5,0,130637.0059,194957.9329,2033873664,0,283760787.3,0 + 01/10 16:00:00,459620335.5,0,597600171.2,0,217553.1713,324668.4682,3009218409,0,283760787.3,0 + 01/10 17:00:00,615455088.2,0,867994057,0,216639.3859,323304.7679,3427248099,0,354700984.2,0 + 01/10 18:00:00,719877254.8,0,1022180425,0,302261.1928,451083.6494,4454099112,0,141880393.7,0 + 01/10 19:00:00,530738000.7,0,735007616.3,0,301483.3174,449922.7762,3970807554,0,638461771.5,0 + 01/10 20:00:00,336384806.1,0,440823721.1,0,171801.0577,256389.672,2318695154,0,638461771.5,702307948.6 + 01/10 21:00:00,390602269.9,0,518120977.3,0,172020.7849,256717.5849,2452181378,0,496581377.8,702307948.6 + 01/10 22:00:00,478951218,0,647467515.7,0,85503.91737,127602.9474,1893603447,0,354700984.2,702307948.6 + 01/10 23:00:00,529552299.3,0,721298162.6,0,85624.23218,127782.5009,2019114701,0,354700984.2,624273732.1 + 01/10 24:00:00,597319511.4,0,820210853.6,0,42751.95869,63801.47369,1801122722,0,354700984.2,468205299.1 + 01/11 01:00:00,764508249.3,0,1066288875,0,42614.33267,63596.08562,2213154630,0,212820590.5,234102649.5 + 01/11 02:00:00,291411510.8,0,375198757.7,0,21338.89169,31845.38858,858073677.5,0,141880393.7,0 + 01/11 03:00:00,685309208.1,0,967608742.7,0,21268.12453,31739.77823,1843746401,0,141880393.7,0 + 01/11 04:00:00,714712884.2,0,1004453509,0,21268.12453,31739.77823,1909994843,0,141880393.7,0 + 01/11 05:00:00,705222604.9,0,987965237.8,0,21338.89169,31845.38858,1884651252,0,141880393.7,0 + 01/11 06:00:00,741572925.5,0,1039370700,0,21193.83871,31628.91677,1971105545,0,141880393.7,0 + 01/11 07:00:00,638404381.5,0,884702657.2,0,85900.52887,128194.836,2293850352,0,141880393.7,156068433 + 01/11 08:00:00,536064885.3,0,736679897,0,344552.3627,514197.4586,4364244139,0,567521574.6,390171082.6 + 01/11 09:00:00,638882785.3,0,889353388.5,0,301843.5964,450460.4436,4236530718,0,567521574.6,390171082.6 + 01/11 10:00:00,812069472.3,0,1129669761,0,215900.852,322202.6067,3878911685,0,283760787.3,0 + 01/11 11:00:00,786114428.2,0,1106633371,0,172720.6816,257762.0854,3442485760,0,283760787.3,0 + 01/11 12:00:00,764943573.6,0,1075199446,0,86567.02127,129189.4851,2616866443,0,283760787.3,0 + 01/11 13:00:00,636581338.1,0,949221302.4,0,86757.89212,129474.3338,2364238654,0,283760787.3,0 + 01/11 14:00:00,332274846,0,635187120.5,0,87233.52442,130184.1503,1750165595,0,283760787.3,0 + 01/11 15:00:00,336635378.4,0,498553672.7,0,130850.2866,195276.2254,2009244494,0,283760787.3,0 + 01/11 16:00:00,483086792.6,0,603493041.7,0,217728.3431,324929.8881,3040149467,0,283760787.3,0 + 01/11 17:00:00,617842358.5,0,854756446.4,0,217553.1713,324668.4682,3424596707,0,354700984.2,0 + 01/11 18:00:00,685025312.3,0,957404393.8,0,303993.4098,453668.7472,4370013471,0,141880393.7,0 + 01/11 19:00:00,473965870.9,0,639617497.1,0,303652.6224,453160.1685,3838109415,0,638461771.5,0 + 01/11 20:00:00,264563759.7,0,325028312.5,0,173134.0425,258378.9702,2143038918,0,638461771.5,702307948.6 + 01/11 21:00:00,322104684.7,0,409210390.8,0,173134.0425,258378.9702,2284761921,0,496581377.8,702307948.6 + 01/11 22:00:00,404085504.5,0,530528062.7,0,86241.02753,128702.9839,1708412008,0,354700984.2,702307948.6 + 01/11 23:00:00,454134768.5,0,604308272.6,0,86241.02753,128702.9839,1832241482,0,354700984.2,624273732.1 + 01/11 24:00:00,493067763.2,0,661763925.2,0,43228.11572,64512.0732,1542696368,0,354700984.2,468205299.1 + 01/12 01:00:00,622096489.1,0,854042478.7,0,43180.17041,64440.52135,1863573458,0,212820590.5,234102649.5 + 01/12 02:00:00,145568424.3,0,183528517.8,0,21560.25688,32175.74597,522546552.4,0,141880393.7,0 + 01/12 03:00:00,533414224.7,0,741556983.1,0,21560.25688,32175.74597,1468420818,0,141880393.7,0 + 01/12 04:00:00,560530511.9,0,779755039.2,0,21502.59811,32089.69811,1533217817,0,141880393.7,0 + 01/12 05:00:00,575092918.6,0,800238079,0,21502.59811,32089.69811,1568263264,0,141880393.7,0 + 01/12 06:00:00,587156234.4,0,817392129.2,0,21475.13222,32048.709,1597234192,0,141880393.7,0 + 01/12 07:00:00,534869394.9,0,738397584.9,0,21502.59811,32089.69811,1466199246,0,141880393.7,156068433 + 01/12 08:00:00,654146264.7,0,895562929,0,86010.39245,128358.7924,2321438259,0,567521574.6,390171082.6 + 01/12 09:00:00,667320225.7,0,894670719.4,0,216140.5786,322560.366,3501314346,0,567521574.6,390171082.6 + 01/12 10:00:00,591441117.2,0,824290256.5,0,216417.5532,322973.7128,3357539931,0,283760787.3,0 + 01/12 11:00:00,548261778.1,0,807352637.1,0,216417.5532,322973.7128,3297422973,0,283760787.3,0 + 01/12 12:00:00,629684048.5,0,894330397.2,0,129983.6315,193982.8607,2690293818,0,283760787.3,0 + 01/12 13:00:00,635088703.2,0,896807789.6,0,129983.6315,193982.8607,2698175865,0,283760787.3,0 + 01/12 14:00:00,592621197,0,849597731.2,0,130136.8382,194211.5008,2609872948,0,283760787.3,0 + 01/12 15:00:00,478096483.2,0,679993606,0,130136.8382,194211.5008,2325744109,0,283760787.3,0 + 01/12 16:00:00,549053708.6,0,706916007,0,303652.6224,453160.1685,3980495763,0,283760787.3,0 + 01/12 17:00:00,696368984.4,0,966133086.6,0,388084.6239,579163.4274,5144595056,0,354700984.2,0 + 01/12 18:00:00,778132468.7,0,1088975651,0,301483.3174,449922.7762,4572170056,0,141880393.7,0 + 01/12 19:00:00,630102124.4,0,865439262,0,299684.8126,447238.753,4184466223,0,638461771.5,0 + 01/12 20:00:00,412106930.7,0,538257115.3,0,257293.7818,383975.915,3258934955,0,638461771.5,702307948.6 + 01/12 21:00:00,474483346.9,0,629695868.5,0,213759.7934,319007.3685,3022140998,0,496581377.8,702307948.6 + 01/12 22:00:00,562523476.6,0,759541442.9,0,170457.3307,254384.3425,2851494943,0,354700984.2,702307948.6 + 01/12 23:00:00,621854639.1,0,846106660.8,0,127608.7472,190438.6694,2612931999,0,354700984.2,624273732.1 + 01/12 24:00:00,671410457,0,918421228.5,0,85355.56676,127381.5543,2355685321,0,354700984.2,468205299.1 + 01/13 01:00:00,755316355.5,0,1042804616,0,42950.26444,64097.41801,2183492629,0,212820590.5,234102649.5 + 01/13 02:00:00,215352872,0,279570817.6,0,21475.13222,32048.709,687609518.1,0,141880393.7,0 + 01/13 03:00:00,618196843.6,0,864122287.4,0,21475.13222,32048.709,1675004959,0,141880393.7,0 + 01/13 04:00:00,606110005.2,0,839880368.9,0,21534.52267,32137.34116,1639209084,0,141880393.7,0 + 01/13 05:00:00,587849467.8,0,812059149.4,0,21560.25688,32175.74597,1593358227,0,141880393.7,0 + 01/13 06:00:00,594236255.2,0,820607400.1,0,21534.52267,32137.34116,1608062365,0,141880393.7,0 + 01/13 07:00:00,538782388.4,0,737171913.4,0,21560.25688,32175.74597,1469403912,0,141880393.7,156068433 + 01/13 08:00:00,650278649.1,0,885513835.9,0,21560.25688,32175.74597,1729242095,0,567521574.6,390171082.6 + 01/13 09:00:00,664877131.3,0,888772647.3,0,86360.34081,128881.0427,2328518759,0,567521574.6,390171082.6 + 01/13 10:00:00,514891409.1,0,716142309.7,0,129850.5319,193784.2277,2396118853,0,283760787.3,0 + 01/13 11:00:00,447435195.2,0,705420913.4,0,129983.6315,193982.8607,2319135481,0,283760787.3,0 + 01/13 12:00:00,395572777.5,0,703420908.4,0,86855.25993,129619.642,1878303333,0,283760787.3,0 + 01/13 13:00:00,197922646.4,0,566968135,0,86855.25993,129619.642,1544200429,0,283760787.3,0 + 01/13 14:00:00,205065758.6,0,482710478.3,0,130399.0976,194602.8873,1857783383,0,283760787.3,0 + 01/13 15:00:00,293305832.1,0,461724779.8,0,174042.5371,259734.7745,2316628934,0,283760787.3,0 + 01/13 16:00:00,432487084.9,0,579395954.6,0,216894.7303,323685.8346,2957973073,0,283760787.3,0 + 01/13 17:00:00,520082720,0,743090423.1,0,261063.8056,389602.1618,3605570626,0,354700984.2,0 + 01/13 18:00:00,541731607.8,0,773539394.9,0,304819.6803,454901.8434,4050268488,0,141880393.7,0 + 01/13 19:00:00,334560499.2,0,458503865.4,0,174341.8804,260181.5037,2357348547,0,638461771.5,0 + 01/13 20:00:00,72959989.22,0,64905702.39,0,131038.6924,195557.3953,1313611607,0,638461771.5,702307948.6 + 01/13 21:00:00,108487579.6,0,114861806.9,0,87304.10114,130289.4764,1006686266,0,496581377.8,702307948.6 + 01/13 22:00:00,165885867.8,0,197785166.5,0,87359.12823,130371.5968,1147501645,0,354700984.2,702307948.6 + 01/13 23:00:00,230355993.2,0,288394284.9,0,87170.94019,130090.7518,1300892369,0,354700984.2,624273732.1 + 01/13 24:00:00,335876342.1,0,439634934.3,0,87021.26854,129867.3873,1556310437,0,354700984.2,468205299.1 + 01/14 01:00:00,517703938.9,0,706343746.6,0,43378.94606,64737.16692,1613265692,0,212820590.5,234102649.5 + 01/14 02:00:00,117963611.2,0,126570435.1,0,21560.25688,32175.74597,437983656.5,0,141880393.7,0 + 01/14 03:00:00,553393219,0,775788706.6,0,21475.13222,32048.709,1521867754,0,141880393.7,0 + 01/14 04:00:00,635307755.8,0,890151072.8,0,21338.89169,31845.38858,1716922238,0,141880393.7,0 + 01/14 05:00:00,731669779.6,0,1028004933,0,21158.93241,31576.82388,1949523436,0,141880393.7,0 + 01/14 06:00:00,828703950.1,0,1166926436,0,20989.47008,31323.92444,2183958607,0,141880393.7,0 + 01/14 07:00:00,857144612.9,0,1203710169,0,83453.17127,124542.4882,2809639156,0,141880393.7,156068433 + 01/14 08:00:00,878848206,0,1191338590,0,331554.723,494800.2522,5045064706,0,567521574.6,390171082.6 + 01/14 09:00:00,920260165.9,0,1191387941,0,289389.7525,431874.7783,4708200418,0,567521574.6,390171082.6 + 01/14 10:00:00,988108440.9,0,1400321070,0,207221.7019,309250.1576,4247728206,0,283760787.3,0 + 01/14 11:00:00,851087832.3,0,1382098688,0,166182.2833,248004.4167,3724258640,0,283760787.3,0 + 01/14 12:00:00,739166216.8,0,1420471324,0,83091.14165,124002.2083,2905173601,0,283760787.3,0 + 01/14 13:00:00,702072990.1,0,1449937235,0,83257.18579,124250.0066,2899036117,0,283760787.3,0 + 01/14 14:00:00,781240259.8,0,1406791602,0,83257.18579,124250.0066,2935057754,0,283760787.3,0 + 01/14 15:00:00,893208174.5,0,1334585895,0,124885.7787,186375.0099,3348332908,0,283760787.3,0 + 01/14 16:00:00,1068967053,0,1437917338,0,208142.9645,310625.0165,4374449123,0,283760787.3,0 + 01/14 17:00:00,1285619089,0,1823815881,0,206706.9661,308481.9845,4964115192,0,354700984.2,0 + 01/14 18:00:00,1388820561,0,1973718800,0,288038.2151,429857.7929,5946964989,0,141880393.7,0 + 01/14 19:00:00,1169083480,0,1640324271,0,288038.2151,429857.7929,5393833380,0,638461771.5,0 + 01/14 20:00:00,918444204.1,0,1263373828,0,165017.2726,246265.797,3662437082,0,638461771.5,702307948.6 + 01/14 21:00:00,1001932645,0,1384903034,0,163431.4137,243899.1186,3853225596,0,496581377.8,702307948.6 + 01/14 22:00:00,1107636948,0,1539802692,0,81303.74237,121334.7584,3376938242,0,354700984.2,702307948.6 + 01/14 23:00:00,1162324188,0,1618646337,0,81303.74237,121334.7584,3510469128,0,354700984.2,624273732.1 + 01/14 24:00:00,1235202890,0,1724777981,0,40537.45764,60496.63258,3323703596,0,354700984.2,468205299.1 + 01/15 01:00:00,1387403548,0,1948769223,0,40537.45764,60496.63258,3699895497,0,212820590.5,234102649.5 + 01/15 02:00:00,897767387.5,0,1253756984,0,20325.93559,30333.68961,2333899022,0,141880393.7,0 + 01/15 03:00:00,1261655753,0,1777523715,0,20325.93559,30333.68961,3221554118,0,141880393.7,0 + 01/15 04:00:00,1243533945,0,1749246051,0,20474.90681,30556.00885,3176491292,0,141880393.7,0 + 01/15 05:00:00,1218087202,0,1709832024,0,20529.37341,30637.29284,3112119225,0,141880393.7,0 + 01/15 06:00:00,1188645113,0,1665608012,0,20627.15908,30783.22462,3039330506,0,141880393.7,0 + 01/15 07:00:00,1107921522,0,1545421127,0,82682.78642,123392.7938,3395214738,0,141880393.7,156068433 + 01/15 08:00:00,1071326461,0,1463871936,0,330731.1457,493571.1752,5502686753,0,567521574.6,390171082.6 + 01/15 09:00:00,1147428654,0,1559760673,0,290818.9958,434007.7292,5316565536,0,567521574.6,390171082.6 + 01/15 10:00:00,1310480568,0,1840098879,0,208142.9645,310625.0165,5018144179,0,283760787.3,0 + 01/15 11:00:00,1232444427,0,1741355700,0,167915.7607,250591.3955,4480425889,0,283760787.3,0 + 01/15 12:00:00,1112294343,0,1609959959,0,84140.24021,125567.845,3477203409,0,283760787.3,0 + 01/15 13:00:00,920263156.9,0,1461427519,0,84140.24021,125567.845,3136639783,0,283760787.3,0 + 01/15 14:00:00,1014403076,0,1494515442,0,84140.24021,125567.845,3263867625,0,283760787.3,0 + 01/15 15:00:00,1142927939,0,1623757038,0,125936.8205,187943.5466,3896654298,0,283760787.3,0 + 01/15 16:00:00,1203973986,0,1686494789,0,209034.3091,311955.2268,4766031104,0,283760787.3,0 + 01/15 17:00:00,1258791675,0,1774321683,0,208632.9282,311356.2206,4905074293,0,354700984.2,0 + 01/15 18:00:00,1324706711,0,1869342568,0,291400.1503,434875.0231,5808639904,0,141880393.7,0 + 01/15 19:00:00,1108208635,0,1543077895,0,290818.9958,434007.7292,5260662740,0,638461771.5,0 + 01/15 20:00:00,921245050.8,0,1260758927,0,164593.2658,245633.0245,3658818623,0,638461771.5,702307948.6 + 01/15 21:00:00,987383133.7,0,1356674537,0,165017.2726,246265.797,3824676721,0,496581377.8,702307948.6 + 01/15 22:00:00,1038411356,0,1431106373,0,82508.63631,123132.8985,3209827254,0,354700984.2,702307948.6 + 01/15 23:00:00,1116026270,0,1544432784,0,81715.70686,121949.5593,3393654012,0,354700984.2,624273732.1 + 01/15 24:00:00,1227192210,0,1707534838,0,40651.87119,60667.37922,3299476350,0,354700984.2,468205299.1 + 01/16 01:00:00,1375587206,0,1926738535,0,40746.11519,60808.02556,3667920647,0,212820590.5,234102649.5 + 01/16 02:00:00,914503692.7,0,1275770113,0,20268.72882,30248.31629,2372135168,0,141880393.7,0 + 01/16 03:00:00,1287401203,0,1811533133,0,20325.93559,30333.68961,3281308987,0,141880393.7,0 + 01/16 04:00:00,1309615094,0,1842196059,0,20268.72882,30248.31629,3333672515,0,141880393.7,0 + 01/16 05:00:00,1373454767,0,1933637838,0,20053.11977,29926.54916,3487019413,0,141880393.7,0 + 01/16 06:00:00,1413017761,0,1989631170,0,20053.11977,29926.54916,3582575739,0,141880393.7,0 + 01/16 07:00:00,1394267203,0,1958760347,0,79768.35918,119043.4082,4068749912,0,141880393.7,156068433 + 01/16 08:00:00,1389003476,0,1906976496,0,318090.967,474707.4306,6150054204,0,567521574.6,390171082.6 + 01/16 09:00:00,1351744898,0,1788514011,0,279189.2571,416651.9288,5645287178,0,567521574.6,390171082.6 + 01/16 10:00:00,1369532397,0,1936587776,0,199928.1113,298365.4673,5099977057,0,283760787.3,0 + 01/16 11:00:00,1225614447,0,1912367768,0,160823.1895,240006.6993,4580969815,0,283760787.3,0 + 01/16 12:00:00,1112774291,0,1944920108,0,80212.47907,119706.1966,3777401632,0,283760787.3,0 + 01/16 13:00:00,1056784069,0,1964016795,0,80411.59474,120003.3497,3742294663,0,283760787.3,0 + 01/16 14:00:00,1124718627,0,1892247481,0,80648.16636,120356.4006,3740582548,0,283760787.3,0 + 01/16 15:00:00,1234319307,0,1819537045,0,120972.2495,180534.6008,4139281013,0,283760787.3,0 + 01/16 16:00:00,1429764472,0,1953734387,0,201028.9869,300008.3741,5187233359,0,283760787.3,0 + 01/16 17:00:00,1635850263,0,2322205771,0,200531.1977,299265.4916,5757324115,0,354700984.2,0 + 01/16 18:00:00,1732824596,0,2460191441,0,279189.2571,416651.9288,6698044306,0,141880393.7,0 + 01/16 19:00:00,1537377716,0,2160493554,0,278329.5961,415369.0018,6195186222,0,638461771.5,0 + 01/16 20:00:00,1340230510,0,1859697549,0,158133.2142,235992.2777,4618779829,0,638461771.5,702307948.6 + 01/16 21:00:00,1424684152,0,1980384199,0,157629.5574,235240.6385,4819401056,0,496581377.8,702307948.6 + 01/16 22:00:00,1520257924,0,2118565090,0,78347.89387,116923.5573,4341800237,0,354700984.2,702307948.6 + 01/16 23:00:00,1561671544,0,2177154278,0,78603.37013,117304.8208,4444095309,0,354700984.2,624273732.1 + 01/16 24:00:00,1640744068,0,2292058043,0,39066.78429,58301.85298,4283329205,0,354700984.2,468205299.1 + 01/17 01:00:00,1808388943,0,2539387299,0,38937.37053,58108.72058,4697142170,0,212820590.5,234102649.5 + 01/17 02:00:00,1292438525,0,1807480392,0,19533.39214,29150.92649,3275182464,0,141880393.7,0 + 01/17 03:00:00,1680845427,0,2368627509,0,19468.68527,29054.36029,4224155900,0,141880393.7,0 + 01/17 04:00:00,1692564589,0,2384992302,0,19468.68527,29054.36029,4252239855,0,141880393.7,0 + 01/17 05:00:00,1672096955,0,2353457553,0,19586.97347,29230.88932,4201298814,0,141880393.7,0 + 01/17 06:00:00,1646391330,0,2314607170,0,19650.84253,29326.20519,4137315871,0,141880393.7,0 + 01/17 07:00:00,1561030446,0,2187147975,0,79066.60711,117996.1389,4457604307,0,141880393.7,156068433 + 01/17 08:00:00,1525138322,0,2113363460,0,317265.2892,473475.219,6485167611,0,567521574.6,390171082.6 + 01/17 09:00:00,1633465637,0,2268520856,0,279189.2571,416651.9288,6407014762,0,567521574.6,390171082.6 + 01/17 10:00:00,1745395677,0,2453245272,0,200531.1977,299265.4916,5997909030,0,283760787.3,0 + 01/17 11:00:00,1678569048,0,2361468983,0,161686.5625,241295.1658,5490772253,0,283760787.3,0 + 01/17 12:00:00,1609464995,0,2266723309,0,81303.74237,121334.7584,4605686906,0,283760787.3,0 + 01/17 13:00:00,1520251232,0,2154312110,0,81899.62723,122224.0354,4409408527,0,283760787.3,0 + 01/17 14:00:00,1427541393,0,2044440951,0,82117.49365,122549.1714,4208782339,0,283760787.3,0 + 01/17 15:00:00,1395901314,0,1968505349,0,123444.9493,184224.7684,4472017646,0,283760787.3,0 + 01/17 16:00:00,1419213670,0,1961593083,0,206271.5908,307832.2462,5231580565,0,283760787.3,0 + 01/17 17:00:00,1424590089,0,1992671520,0,206706.9661,308481.9845,5271941831,0,354700984.2,0 + 01/17 18:00:00,1478232988,0,2073319716,0,288038.2151,429857.7929,6135978332,0,141880393.7,0 + 01/17 19:00:00,1212193764,0,1677109696,0,290110.3826,432950.2207,5492321632,0,638461771.5,0 + 01/17 20:00:00,934488647,0,1263827680,0,166182.2833,248004.4167,3689388447,0,638461771.5,702307948.6 + 01/17 21:00:00,946503368.3,0,1282816408,0,166906.3425,249084.9765,3726888524,0,496581377.8,702307948.6 + 01/17 22:00:00,955433131,0,1297981652,0,83803.00617,125064.5692,3005338054,0,354700984.2,702307948.6 + 01/17 23:00:00,978778279.9,0,1333784333,0,83613.72362,124782.0907,3062787545,0,354700984.2,624273732.1 + 01/17 24:00:00,1023342155,0,1401267367,0,41901.50308,62532.28458,2800571158,0,354700984.2,468205299.1 + 01/18 01:00:00,1155338507,0,1599450806,0,41726.58564,62271.24412,3129181499,0,212820590.5,234102649.5 + 01/18 02:00:00,612735493.9,0,832057389.5,0,20950.75154,31266.14229,1632773701,0,141880393.7,0 + 01/18 03:00:00,982158803,0,1364665754,0,20989.47008,31323.92444,2535152778,0,141880393.7,0 + 01/18 04:00:00,983232830.9,0,1368067930,0,20989.47008,31323.92444,2539628981,0,141880393.7,0 + 01/18 05:00:00,969745451.4,0,1348370003,0,21035.06005,31391.96125,2506852731,0,141880393.7,0 + 01/18 06:00:00,936238701.5,0,1299404565,0,21116.12048,31512.93289,2425107859,0,141880393.7,0 + 01/18 07:00:00,854896178.7,0,1179139134,0,84635.72966,126307.2955,2793430203,0,141880393.7,156068433 + 01/18 08:00:00,824795443.1,0,1112050470,0,337857.9276,504206.9263,4968279387,0,567521574.6,390171082.6 + 01/18 09:00:00,907236618.2,0,1233139007,0,297753.7434,444356.8952,4811973924,0,567521574.6,390171082.6 + 01/18 10:00:00,938787049.6,0,1310590163,0,214751.3222,320487.09,4176235497,0,283760787.3,0 + 01/18 11:00:00,754025050.7,0,1093823017,0,172276.1814,257098.7293,3393597746,0,283760787.3,0 + 01/18 12:00:00,742373075.1,0,1077882201,0,86241.02753,128702.9839,2594053717,0,283760787.3,0 + 01/18 13:00:00,689857304.1,0,1018270387,0,86360.34081,128881.0427,2482996672,0,283760787.3,0 + 01/18 14:00:00,683522580,0,990791723.8,0,86360.34081,128881.0427,2449183284,0,283760787.3,0 + 01/18 15:00:00,695902149.2,0,987430209.2,0,129684.3472,193536.2196,2846926399,0,283760787.3,0 + 01/18 16:00:00,734647684.4,0,1029874998,0,216140.5786,322560.366,3703846083,0,283760787.3,0 + 01/18 17:00:00,746798789.5,0,1050281047,0,216140.5786,322560.366,3736403237,0,354700984.2,0 + 01/18 18:00:00,757253412.9,0,1065345134,0,303652.6224,453160.1685,4547124594,0,141880393.7,0 + 01/18 19:00:00,489726383.8,0,664182813.3,0,303993.4098,453668.7472,3881492962,0,638461771.5,0 + 01/18 20:00:00,223744578.2,0,265953250.8,0,174042.5371,259734.7745,2051296151,0,638461771.5,702307948.6 + 01/18 21:00:00,242711720.7,0,293608494,0,174182.6745,259943.9105,2099175921,0,496581377.8,702307948.6 + 01/18 22:00:00,272207729.6,0,337743520.7,0,87170.94019,130090.7518,1392093342,0,354700984.2,702307948.6 + 01/18 23:00:00,305677804.8,0,387600857.6,0,87021.26854,129867.3873,1474077823,0,354700984.2,624273732.1 + 01/18 24:00:00,337792129.9,0,435845851.4,0,43616.76221,65092.07513,1164989796,0,354700984.2,468205299.1 + 01/19 01:00:00,447085240.1,0,599896768.3,0,43616.76221,65092.07513,1438333823,0,212820590.5,234102649.5 + 01/19 02:00:00,29055703.39,0,2961392.389,0,21855.1492,32615.83257,228112630.2,0,141880393.7,0 + 01/19 03:00:00,255181926.6,0,307653133,0,21839.78206,32592.89921,758792712.2,0,141880393.7,0 + 01/19 04:00:00,299816921.4,0,400582599.9,0,21855.1492,32615.83257,896495055.7,0,141880393.7,0 + 01/19 05:00:00,294449422.3,0,391749478.6,0,21855.1492,32615.83257,882294435.3,0,141880393.7,0 + 01/19 06:00:00,303093970.3,0,404031393.4,0,21839.78206,32592.89921,903083016.2,0,141880393.7,0 + 01/19 07:00:00,246163677.7,0,318599522.5,0,21855.1492,32615.83257,760858734.6,0,141880393.7,156068433 + 01/19 08:00:00,402177724.4,0,539744794.8,0,87420.59679,130463.3303,1726304657,0,567521574.6,390171082.6 + 01/19 09:00:00,509558142.3,0,703783533.4,0,218397.8206,325928.9921,3172918201,0,567521574.6,390171082.6 + 01/19 10:00:00,489273900.1,0,674638841.1,0,217728.3431,324929.8881,3117482374,0,283760787.3,0 + 01/19 11:00:00,407848145.3,0,602954832.9,0,218083.811,325460.3756,2967562050,0,283760787.3,0 + 01/19 12:00:00,341851359.2,0,557711484.2,0,130850.2866,195276.2254,2073618287,0,283760787.3,0 + 01/19 13:00:00,253342725.6,0,528014887,0,130850.2866,195276.2254,1955413056,0,283760787.3,0 + 01/19 14:00:00,386851373.4,0,618477632.1,0,130399.0976,194602.8873,2175336151,0,283760787.3,0 + 01/19 15:00:00,489126036.8,0,704988889.6,0,129983.6315,193982.8607,2360394299,0,283760787.3,0 + 01/19 16:00:00,614981920,0,835852722.4,0,301483.3174,449922.7762,4155896579,0,283760787.3,0 + 01/19 17:00:00,782081695.9,0,1102622474,0,384767.6282,574213.2632,5337035379,0,354700984.2,0 + 01/19 18:00:00,916899999.3,0,1296309934,0,297753.7434,444356.8952,4884808232,0,141880393.7,0 + 01/19 19:00:00,791724023.6,0,1101518486,0,296225.0538,442075.5343,4551124627,0,638461771.5,0 + 01/19 20:00:00,605044501.9,0,816752187.1,0,253393.4457,378155.1947,3695371794,0,638461771.5,702307948.6 + 01/19 21:00:00,699505650.6,0,951480298.6,0,210350.6005,313919.6125,3538358716,0,496581377.8,702307948.6 + 01/19 22:00:00,794750564.5,0,1088153848,0,167915.7607,250591.3955,3389530175,0,354700984.2,702307948.6 + 01/19 23:00:00,858926050.1,0,1179190867,0,125704.5093,187596.8537,3166001824,0,354700984.2,624273732.1 + 01/19 24:00:00,947999259.5,0,1307877292,0,83613.72362,124782.0907,3006101484,0,354700984.2,468205299.1 + 01/20 01:00:00,1123706427,0,1566290166,0,41628.5929,62125.0033,3063509540,0,212820590.5,234102649.5 + 01/20 02:00:00,635238110.2,0,872904924,0,20772.78541,31000.55208,1694527049,0,141880393.7,0 + 01/20 03:00:00,1063826393,0,1491678243,0,20722.17019,30925.01576,2741434505,0,141880393.7,0 + 01/20 04:00:00,1106109395,0,1552400742,0,20670.69661,30848.19845,2843978160,0,141880393.7,0 + 01/20 05:00:00,1137237667,0,1595474342,0,20627.15908,30783.22462,2917789390,0,141880393.7,0 + 01/20 06:00:00,1189740436,0,1670320726,0,20474.90681,30556.00885,3043772458,0,141880393.7,0 + 01/20 07:00:00,1177410905,0,1648830092,0,20428.92672,30487.38983,3009539736,0,141880393.7,156068433 + 01/20 08:00:00,1139098524,0,1547419618,0,20428.92672,30487.38983,2869816881,0,567521574.6,390171082.6 + 01/20 09:00:00,1075391470,0,1389332109,0,81899.62723,122224.0354,3199568765,0,567521574.6,390171082.6 + 01/20 10:00:00,1062949042,0,1496710004,0,123176.2405,183823.757,3664859037,0,283760787.3,0 + 01/20 11:00:00,886009386.6,0,1423031152,0,123762.9545,184699.3477,3419504826,0,283760787.3,0 + 01/20 12:00:00,752560405.9,0,1412695688,0,82508.63631,123132.8985,2905565619,0,283760787.3,0 + 01/20 13:00:00,739482591.2,0,1428885939,0,82682.78642,123392.7938,2910240619,0,283760787.3,0 + 01/20 14:00:00,1005559326,0,1557812490,0,124024.1796,185089.1907,3676179949,0,283760787.3,0 + 01/20 15:00:00,1096565086,0,1601463119,0,165777.3615,247400.1261,4185467161,0,283760787.3,0 + 01/20 16:00:00,1151576232,0,1653866420,0,207727.8541,310005.5208,4669282802,0,283760787.3,0 + 01/20 17:00:00,1194934202,0,1715214935,0,248666.0423,371100.1891,5141307570,0,354700984.2,0 + 01/20 18:00:00,1258762346,0,1802739606,0,290110.3826,432950.2207,5664520124,0,141880393.7,0 + 01/20 19:00:00,1057238385,0,1494740393,0,166182.2833,248004.4167,4043050897,0,638461771.5,0 + 01/20 20:00:00,808520789.4,0,1117940243,0,124885.7787,186375.0099,3046999871,0,638461771.5,702307948.6 + 01/20 21:00:00,854915098.7,0,1182501320,0,83257.18579,124250.0066,2784442312,0,496581377.8,702307948.6 + 01/20 22:00:00,900268117,0,1246729001,0,83453.17127,124542.4882,2895781492,0,354700984.2,702307948.6 + 01/20 23:00:00,918432890.5,0,1270991516,0,83613.72362,124782.0907,2939649339,0,354700984.2,624273732.1 + 01/20 24:00:00,956906605.8,0,1326391057,0,83803.00617,125064.5692,3035220934,0,354700984.2,468205299.1 + 01/21 01:00:00,1070980005,0,1495348570,0,41978.94017,62647.84887,2942985016,0,212820590.5,234102649.5 + 01/21 02:00:00,565147504.8,0,784576976.2,0,20950.75154,31266.14229,1537705299,0,141880393.7,0 + 01/21 03:00:00,947915718.6,0,1329568523,0,20989.47008,31323.92444,2465812462,0,141880393.7,0 + 01/21 04:00:00,1024150354,0,1440996844,0,20722.17019,30925.01576,2651077067,0,141880393.7,0 + 01/21 05:00:00,1042205383,0,1464872380,0,20863.29282,31135.62206,2694273856,0,141880393.7,0 + 01/21 06:00:00,1054254044,0,1479910648,0,20772.78541,31000.55208,2720548707,0,141880393.7,0 + 01/21 07:00:00,1034895604,0,1447775257,0,82888.68076,123700.063,3226390339,0,141880393.7,156068433 + 01/21 08:00:00,1020146697,0,1383328387,0,330034.5452,492531.5939,5364713185,0,567521574.6,390171082.6 + 01/21 09:00:00,1081867455,0,1421586580,0,288780.2271,430965.1447,5094537373,0,567521574.6,390171082.6 + 01/21 10:00:00,1183297831,0,1651541185,0,206706.9661,308481.9845,4689519238,0,283760787.3,0 + 01/21 11:00:00,986953995.1,0,1514942684,0,165777.3615,247400.1261,3989335634,0,283760787.3,0 + 01/21 12:00:00,911451912.2,0,1540057093,0,82888.68076,123700.063,3195228483,0,283760787.3,0 + 01/21 13:00:00,784070337.7,0,1515907188,0,82682.78642,123392.7938,3041849614,0,283760787.3,0 + 01/21 14:00:00,817177788.7,0,1462363150,0,82682.78642,123392.7938,3021413028,0,283760787.3,0 + 01/21 15:00:00,948930280.2,0,1418132668,0,123762.9545,184699.3477,3477527236,0,283760787.3,0 + 01/21 16:00:00,1143750643,0,1542054569,0,205741.5822,307041.2806,4531823518,0,283760787.3,0 + 01/21 17:00:00,1340453540,0,1893982200,0,205293.7341,306372.9284,5076435725,0,354700984.2,0 + 01/21 18:00:00,1449669144,0,2065554616,0,286004.974,426823.4576,6081406114,0,141880393.7,0 + 01/21 19:00:00,1277489024,0,1799362784,0,283762.2034,423476.4281,5622910881,0,638461771.5,0 + 01/21 20:00:00,1090450676,0,1513759898,0,161296.3327,240712.8011,4051443456,0,638461771.5,702307948.6 + 01/21 21:00:00,1171061883,0,1629328969,0,160823.1895,240006.6993,4243378452,0,496581377.8,702307948.6 + 01/21 22:00:00,1248105441,0,1741086874,0,80212.47907,119706.1966,3708899547,0,354700984.2,702307948.6 + 01/21 23:00:00,1268228851,0,1768949845,0,80648.16636,120356.4006,3760795137,0,354700984.2,624273732.1 + 01/21 24:00:00,1340160732,0,1873676158,0,40106.23953,59853.09832,3573690507,0,354700984.2,468205299.1 + 01/22 01:00:00,1482686967,0,2084099854,0,40205.79737,60001.67483,3927533720,0,212820590.5,234102649.5 + 01/22 02:00:00,1003721041,0,1403384289,0,20053.11977,29926.54916,2587032138,0,141880393.7,0 + 01/22 03:00:00,1335077727,0,1881990260,0,20268.72882,30248.31629,3398929349,0,141880393.7,0 + 01/22 04:00:00,1305469402,0,1836971426,0,20325.93559,30333.68961,3324815479,0,141880393.7,0 + 01/22 05:00:00,1301923984,0,1830029190,0,20325.93559,30333.68961,3314327824,0,141880393.7,0 + 01/22 06:00:00,1316822713,0,1850599774,0,20268.72882,30248.31629,3349283849,0,141880393.7,0 + 01/22 07:00:00,1273497075,0,1784598364,0,81074.91527,120993.2652,3785540888,0,141880393.7,156068433 + 01/22 08:00:00,1218949416,0,1661398813,0,325214.9695,485339.0338,5798342641,0,567521574.6,390171082.6 + 01/22 09:00:00,1166814603,0,1529402594,0,287411.2278,428922.0998,5275017176,0,567521574.6,390171082.6 + 01/22 10:00:00,1104639949,0,1527185303,0,207727.8541,310005.5208,4495665402,0,283760787.3,0 + 01/22 11:00:00,887715600.4,0,1387667459,0,167227.4472,249564.1815,3775832922,0,283760787.3,0 + 01/22 12:00:00,689655729.3,0,1272155849,0,84464.48191,126051.7316,2719669947,0,283760787.3,0 + 01/22 13:00:00,527729760.1,0,1158451136,0,84939.15741,126760.1201,2448298296,0,283760787.3,0 + 01/22 14:00:00,518130014.1,0,1030442935,0,85228.66535,127192.1712,2313287961,0,283760787.3,0 + 01/22 15:00:00,617031127.5,0,947087139.7,0,128255.8761,191404.4211,2714895337,0,283760787.3,0 + 01/22 16:00:00,750548577.1,0,1032613927,0,214411.4849,319979.9291,3706971594,0,283760787.3,0 + 01/22 17:00:00,830300259.6,0,1186364383,0,214751.3222,320487.09,3943522927,0,354700984.2,0 + 01/22 18:00:00,876157433.8,0,1258496371,0,300651.8511,448681.9261,4832255402,0,141880393.7,0 + 01/22 19:00:00,634268406.5,0,891432860.2,0,301036.3736,449255.7735,4226752996,0,638461771.5,0 + 01/22 20:00:00,384126508.9,0,512780890.2,0,172276.1814,257098.7293,2442657077,0,638461771.5,702307948.6 + 01/22 21:00:00,415038790.8,0,555001806.4,0,172482.0551,257405.9677,2517637479,0,496581377.8,702307948.6 + 01/22 22:00:00,449749785.7,0,604094052,0,86360.34081,128881.0427,1828712818,0,354700984.2,702307948.6 + 01/22 23:00:00,486732752.6,0,655548466,0,86360.34081,128881.0427,1917150199,0,354700984.2,624273732.1 + 01/22 24:00:00,555044803.1,0,750975960.9,0,43180.17041,64440.52135,1693455254,0,354700984.2,468205299.1 + 01/23 01:00:00,692052263.2,0,950119234.7,0,43180.17041,64440.52135,2029605988,0,212820590.5,234102649.5 + 01/23 02:00:00,180498832,0,217188627.9,0,21614.05786,32256.0366,591619799.9,0,141880393.7,0 + 01/23 03:00:00,540591669.7,0,738825260.9,0,21663.93859,32330.47679,1473796826,0,141880393.7,0 + 01/23 04:00:00,515132803.1,0,704969061.4,0,21689.47303,32368.58346,1414710868,0,141880393.7,0 + 01/23 05:00:00,502632332.2,0,686644761.7,0,21689.47303,32368.58346,1383886097,0,141880393.7,0 + 01/23 06:00:00,486138602.5,0,662714572.3,0,21713.81498,32404.91051,1343680587,0,141880393.7,0 + 01/23 07:00:00,421285397.6,0,566543882.2,0,86855.25993,129619.642,1767138927,0,141880393.7,156068433 + 01/23 08:00:00,577645622,0,772472708.4,0,347421.0397,518478.5682,4467356919,0,567521574.6,390171082.6 + 01/23 09:00:00,527052202.6,0,721222048.5,0,303993.4098,453668.7472,3975858016,0,567521574.6,390171082.6 + 01/23 10:00:00,704178511.9,0,977072486.2,0,217138.1498,324049.1051,3629525116,0,283760787.3,0 + 01/23 11:00:00,668068936.1,0,928401677.7,0,174042.5371,259734.7745,3158068936,0,283760787.3,0 + 01/23 12:00:00,589445267.1,0,825130080.8,0,87170.94019,130090.7518,2196717439,0,283760787.3,0 + 01/23 13:00:00,580917526.4,0,811134337.3,0,87170.94019,130090.7518,2174193955,0,283760787.3,0 + 01/23 14:00:00,565008492.4,0,794631022.1,0,87170.94019,130090.7518,2141781606,0,283760787.3,0 + 01/23 15:00:00,508243008,0,710629906.2,0,130756.4103,195136.1277,2392086051,0,283760787.3,0 + 01/23 16:00:00,548011667.6,0,729452931.3,0,217927.3505,325226.8796,3232819827,0,283760787.3,0 + 01/23 17:00:00,615794136.9,0,847077538.8,0,217553.1713,324668.4682,3414869578,0,354700984.2,0 + 01/23 18:00:00,669042499.7,0,929417762.5,0,304819.6803,454901.8434,4333457748,0,141880393.7,0 + 01/23 19:00:00,433493673.8,0,576129398.3,0,304574.4399,454535.8555,3742420135,0,638461771.5,0 + 01/23 20:00:00,212547309.4,0,245749196.9,0,173865.4635,259470.5164,2018306034,0,638461771.5,702307948.6 + 01/23 21:00:00,271160261.8,0,332144883.9,0,173710.5199,259239.2841,2161924440,0,496581377.8,702307948.6 + 01/23 22:00:00,337134110.2,0,430240260.2,0,86757.89212,129474.3338,1545810384,0,354700984.2,702307948.6 + 01/23 23:00:00,392257462.6,0,511791964.2,0,86567.02127,129189.4851,1680772850,0,354700984.2,624273732.1 + 01/23 24:00:00,469766966.6,0,626698381,0,43228.11572,64512.0732,1484330028,0,354700984.2,468205299.1 + 01/24 01:00:00,626591046.7,0,860647267.2,0,43120.51377,64351.49194,1874137534,0,212820590.5,234102649.5 + 01/24 02:00:00,151933018.7,0,180827944.6,0,21534.52267,32137.34116,525979673,0,141880393.7,0 + 01/24 03:00:00,545763247,0,756127920.5,0,21534.52267,32137.34116,1495109877,0,141880393.7,0 + 01/24 04:00:00,554717840.1,0,771068749.7,0,21534.52267,32137.34116,1519005300,0,141880393.7,0 + 01/24 05:00:00,573434257.1,0,797456276.1,0,21502.59811,32089.69811,1563822800,0,141880393.7,0 + 01/24 06:00:00,608381209.2,0,847394605.7,0,21441.14849,31997.99291,1648156724,0,141880393.7,0 + 01/24 07:00:00,574595531.1,0,795052320.1,0,85764.59395,127991.9717,2139171487,0,141880393.7,156068433 + 01/24 08:00:00,545911641.9,0,748362080.3,0,342496.9287,511130.0034,4367330678,0,567521574.6,390171082.6 + 01/24 09:00:00,645335073.6,0,886057045.5,0,299263.7108,446610.3159,4216538615,0,567521574.6,390171082.6 + 01/24 10:00:00,809179920.2,0,1124562656,0,212681.2453,317397.7823,3842027076,0,283760787.3,0 + 01/24 11:00:00,745368874.3,0,1110344635,0,170457.3307,254384.3425,3385143533,0,283760787.3,0 + 01/24 12:00:00,822982664.5,0,1213435428,0,85072.4981,126959.1129,2799731892,0,283760787.3,0 + 01/24 13:00:00,724600699.9,0,1171860486,0,85228.66535,127192.1712,2661176198,0,283760787.3,0 + 01/24 14:00:00,520621441.7,0,983128228.6,0,85228.66535,127192.1712,2268464682,0,283760787.3,0 + 01/24 15:00:00,579774525.1,0,875368997,0,127842.998,190788.2569,2602216040,0,283760787.3,0 + 01/24 16:00:00,750326727.4,0,971789876.9,0,212681.2453,317397.7823,3630401103,0,283760787.3,0 + 01/24 17:00:00,943619700.4,0,1322268876,0,211938.3871,316289.1677,4167507773,0,354700984.2,0 + 01/24 18:00:00,1065763520,0,1516586089,0,294490.8407,439487.4576,5224671483,0,141880393.7,0 + 01/24 19:00:00,851276747,0,1191803848,0,295012.3974,440265.8098,4690082141,0,638461771.5,0 + 01/24 20:00:00,622513237.1,0,847982044.4,0,168280.4804,251135.69,2980393495,0,638461771.5,702307948.6 + 01/24 21:00:00,689123488.5,0,944527677.9,0,167915.7607,250591.3955,3140276929,0,496581377.8,702307948.6 + 01/24 22:00:00,756491630.9,0,1042474287,0,83957.88034,125295.6977,2552278799,0,354700984.2,702307948.6 + 01/24 23:00:00,752790608.7,0,1034982049,0,84635.72966,126307.2955,2547167548,0,354700984.2,624273732.1 + 01/24 24:00:00,770468483.9,0,1059220283,0,42469.57871,63380.06004,2210747466,0,354700984.2,468205299.1 + 01/25 01:00:00,875388831.9,0,1213709560,0,42614.33267,63596.08562,2471455898,0,212820590.5,234102649.5 + 01/25 02:00:00,362531544.2,0,486983039.4,0,21338.89169,31845.38858,1040977993,0,141880393.7,0 + 01/25 03:00:00,710228226.3,0,987485447.6,0,21406.05805,31945.62521,1889779734,0,141880393.7,0 + 01/25 04:00:00,695505106.7,0,964170930.7,0,21441.14849,31997.99291,1852056946,0,141880393.7,0 + 01/25 05:00:00,676890310.4,0,935942780.1,0,21475.13222,32048.709,1805518919,0,141880393.7,0 + 01/25 06:00:00,677632984,0,936890447.7,0,21441.14849,31997.99291,1806904341,0,141880393.7,0 + 01/25 07:00:00,615975815.2,0,845035706.7,0,85900.52887,128194.836,2231754835,0,141880393.7,156068433 + 01/25 08:00:00,578366036,0,808059856.9,0,344041.5698,513435.1697,4473342155,0,567521574.6,390171082.6 + 01/25 09:00:00,665446068.6,0,897394274.1,0,301843.5964,450460.4436,4271134886,0,567521574.6,390171082.6 + 01/25 10:00:00,805756385.9,0,1115405422,0,216417.5532,322973.7128,3862970366,0,283760787.3,0 + 01/25 11:00:00,676920480,0,946537397.8,0,174341.8804,260181.5037,3187742060,0,283760787.3,0 + 01/25 12:00:00,529596944,0,796067143.3,0,87091.33724,129971.9553,2107091940,0,283760787.3,0 + 01/25 13:00:00,483331250.2,0,763759666.3,0,86932.73176,129735.2582,2027095680,0,283760787.3,0 + 01/25 14:00:00,466684498.9,0,755163250.1,0,86655.75436,129321.9072,1999367331,0,283760787.3,0 + 01/25 15:00:00,565250416.7,0,815625682.1,0,129684.3472,193536.2196,2544470139,0,283760787.3,0 + 01/25 16:00:00,782777401.4,0,1101676860,0,214751.3222,320487.09,3811312545,0,283760787.3,0 + 01/25 17:00:00,890632876,0,1256419681,0,213071.6634,317980.4281,4058840087,0,354700984.2,0 + 01/25 18:00:00,1041335794,0,1472076425,0,295625.6867,441181.0605,5165916508,0,141880393.7,0 + 01/25 19:00:00,950370582.6,0,1326836718,0,290818.9958,434007.7292,4886583511,0,638461771.5,0 + 01/25 20:00:00,828745716.9,0,1136731793,0,165017.2726,246265.797,3446096561,0,638461771.5,702307948.6 + 01/25 21:00:00,962476272.2,0,1327506874,0,163799.2545,244448.0708,3759673517,0,496581377.8,702307948.6 + 01/25 22:00:00,1088641954,0,1507667127,0,81492.23038,121616.0511,3327498894,0,354700984.2,702307948.6 + 01/25 23:00:00,1207496580,0,1677021026,0,80648.16636,120356.4006,3608134046,0,354700984.2,624273732.1 + 01/25 24:00:00,1357503882,0,1892692802,0,39985.62226,59673.09347,3608968061,0,354700984.2,468205299.1 + 01/26 01:00:00,1564348432,0,2194286886,0,39761.37087,59338.42883,4115394597,0,212820590.5,234102649.5 + 01/26 02:00:00,1109550148,0,1549774709,0,19880.68544,29669.21441,2837704497,0,141880393.7,0 + 01/26 03:00:00,1506821034,0,2121452053,0,19829.08057,29592.20119,3806189701,0,141880393.7,0 + 01/26 04:00:00,1549006039,0,2180064671,0,19766.65178,29499.03471,3906427182,0,141880393.7,0 + 01/26 05:00:00,1585667305,0,2230754811,0,19703.69467,29405.07981,3993213703,0,141880393.7,0 + 01/26 06:00:00,1618694140,0,2276571758,0,19650.84253,29326.20519,4071583270,0,141880393.7,0 + 01/26 07:00:00,1582186614,0,2219500247,0,19650.84253,29326.20519,3978004233,0,141880393.7,156068433 + 01/26 08:00:00,1546983469,0,2119494793,0,78603.37013,117304.8208,4371747749,0,567521574.6,390171082.6 + 01/26 09:00:00,1555766031,0,2074675612,0,197036.9467,294050.7981,5398357524,0,567521574.6,390171082.6 + 01/26 10:00:00,1618383857,0,2252716138,0,197666.5178,294990.3471,5644664708,0,283760787.3,0 + 01/26 11:00:00,1600620180,0,2324542905,0,197666.5178,294990.3471,5698727799,0,283760787.3,0 + 01/26 12:00:00,1494279650,0,2288879863,0,118974.4834,177553.2071,4850659199,0,283760787.3,0 + 01/26 13:00:00,1443741983,0,2276058054,0,119284.1126,178015.2865,4790077873,0,283760787.3,0 + 01/26 14:00:00,1451381007,0,2228247876,0,119652.5388,178565.1123,4753212428,0,283760787.3,0 + 01/26 15:00:00,1497439009,0,2144040385,0,119956.8668,179019.2804,4717793524,0,283760787.3,0 + 01/26 16:00:00,1557992496,0,2108936899,0,279899.3558,417711.6543,6178329031,0,283760787.3,0 + 01/26 17:00:00,1704732554,0,2367621837,0,357852.3379,534045.8595,7283187901,0,354700984.2,0 + 01/26 18:00:00,1788457178,0,2517367264,0,278329.5961,415369.0018,6803139395,0,141880393.7,0 + 01/26 19:00:00,1599931465,0,2233027250,0,277607.128,414290.8166,6323791316,0,638461771.5,0 + 01/26 20:00:00,1379301450,0,1901575181,0,237199.8213,353988.4166,5409154287,0,638461771.5,702307948.6 + 01/26 21:00:00,1450658334,0,2005893416,0,197036.9467,294050.7981,5224467632,0,496581377.8,702307948.6 + 01/26 22:00:00,1524249461,0,2114090033,0,157206.7403,234609.6415,5048878469,0,354700984.2,702307948.6 + 01/26 23:00:00,1555050712,0,2158824929,0,118222.168,176430.4789,4774625171,0,354700984.2,624273732.1 + 01/26 24:00:00,1608392554,0,2237485549,0,78814.77869,117620.3192,4553044455,0,354700984.2,468205299.1 + 01/27 01:00:00,1745072269,0,2440516131,0,39407.38934,58810.15962,4539171577,0,212820590.5,234102649.5 + 01/27 02:00:00,1238736376,0,1723969379,0,19703.69467,29405.07981,3139497343,0,141880393.7,0 + 01/27 03:00:00,1620731037,0,2275950952,0,19703.69467,29405.07981,4073473577,0,141880393.7,0 + 01/27 04:00:00,1652673162,0,2322054277,0,19586.97347,29230.88932,4150471745,0,141880393.7,0 + 01/27 05:00:00,1694661315,0,2382559367,0,19468.68527,29054.36029,4251903645,0,141880393.7,0 + 01/27 06:00:00,1690760098,0,2375294261,0,19586.97347,29230.88932,4241798665,0,141880393.7,0 + 01/27 07:00:00,1640189699,0,2298508025,0,19533.39214,29150.92649,4113961271,0,141880393.7,156068433 + 01/27 08:00:00,1568041838,0,2132741883,0,19650.84253,29326.20519,3877101093,0,567521574.6,390171082.6 + 01/27 09:00:00,1522712491,0,1996912428,0,78814.77869,117620.3192,4226791271,0,567521574.6,390171082.6 + 01/27 10:00:00,1514668737,0,2095746338,0,118599.9107,176994.2083,4674553903,0,283760787.3,0 + 01/27 11:00:00,1367314239,0,2061579586,0,119284.1126,178015.2865,4499171662,0,283760787.3,0 + 01/27 12:00:00,1215382606,0,2033132816,0,79768.35918,119043.4082,3964237786,0,283760787.3,0 + 01/27 13:00:00,1058680517,0,1933361419,0,80212.47907,119706.1966,3711749168,0,283760787.3,0 + 01/27 14:00:00,1118573866,0,1881048380,0,120972.2495,180534.6008,4085046908,0,283760787.3,0 + 01/27 15:00:00,1212262153,0,1778314812,0,161686.5625,241295.1658,4441311187,0,283760787.3,0 + 01/27 16:00:00,1378083379,0,1871714883,0,202687.2882,302483.1629,5068411886,0,283760787.3,0 + 01/27 17:00:00,1521348086,0,2127400758,0,241944.4991,361069.2017,5819598167,0,354700984.2,0 + 01/27 18:00:00,1582616652,0,2241639176,0,282951.4843,422266.5402,6363040717,0,141880393.7,0 + 01/27 19:00:00,1373281138,0,1925819205,0,161686.5625,241295.1658,4749834565,0,638461771.5,0 + 01/27 20:00:00,1159947330,0,1604833486,0,120318.7186,179559.295,3844341664,0,638461771.5,702307948.6 + 01/27 21:00:00,1206466264,0,1672469283,0,80648.16636,120356.4006,3602551988,0,496581377.8,702307948.6 + 01/27 22:00:00,1238075226,0,1718460253,0,80843.28123,120647.5829,3681902590,0,354700984.2,702307948.6 + 01/27 23:00:00,1267019826,0,1760300935,0,80648.16636,120356.4006,3750937201,0,354700984.2,624273732.1 + 01/27 24:00:00,1304325744,0,1814582341,0,81303.74237,121334.7584,3848406688,0,354700984.2,468205299.1 + 01/28 01:00:00,1423654087,0,1991363782,0,40651.87119,60667.37922,3779767170,0,212820590.5,234102649.5 + 01/28 02:00:00,975234772.7,0,1355095358,0,20162.04159,30089.10014,2511234241,0,141880393.7,0 + 01/28 03:00:00,1352036271,0,1900947852,0,20210.82031,30161.89573,3434325900,0,141880393.7,0 + 01/28 04:00:00,1332639816,0,1871143372,0,20325.93559,30333.68961,3386157839,0,141880393.7,0 + 01/28 05:00:00,1369412077,0,1923600755,0,20102.89869,30000.83741,3473386282,0,141880393.7,0 + 01/28 06:00:00,1401892289,0,1969899030,0,20102.89869,30000.83741,3552164769,0,141880393.7,0 + 01/28 07:00:00,1359772240,0,1905756144,0,80212.47907,119706.1966,3985235616,0,141880393.7,156068433 + 01/28 08:00:00,1326058165,0,1814601990,0,320849.9163,478824.7865,6019489085,0,567521574.6,390171082.6 + 01/28 09:00:00,1395689453,0,1912162890,0,282951.4843,422266.5402,5846637231,0,567521574.6,390171082.6 + 01/28 10:00:00,1360229910,0,1903724815,0,204749.0681,305560.0885,5101067689,0,283760787.3,0 + 01/28 11:00:00,1205520463,0,1775423401,0,164234.9873,245098.3427,4454543853,0,283760787.3,0 + 01/28 12:00:00,1087960097,0,1700655191,0,82117.49365,122549.1714,3525415281,0,283760787.3,0 + 01/28 13:00:00,1096229122,0,1718361790,0,82296.63288,122816.5122,3552998235,0,283760787.3,0 + 01/28 14:00:00,1248149383,0,1818678420,0,82296.63288,122816.5122,3805235125,0,283760787.3,0 + 01/28 15:00:00,1274455520,0,1826166706,0,123444.9493,184224.7684,4208233210,0,283760787.3,0 + 01/28 16:00:00,1364446876,0,1935007129,0,205741.5822,307041.2806,5145472312,0,283760787.3,0 + 01/28 17:00:00,1390678693,0,1968503888,0,205741.5822,307041.2806,5205200887,0,354700984.2,0 + 01/28 18:00:00,1442709868,0,2042036962,0,288038.2151,429857.7929,6069172458,0,141880393.7,0 + 01/28 19:00:00,1206744650,0,1686198577,0,288038.2151,429857.7929,5477368855,0,638461771.5,0 + 01/28 20:00:00,973715861.6,0,1335877959,0,164234.9873,245098.3427,3783193809,0,638461771.5,702307948.6 + 01/28 21:00:00,1048703456,0,1445052038,0,163431.4137,243899.1186,3960145410,0,496581377.8,702307948.6 + 01/28 22:00:00,1127790971,0,1560894532,0,81492.23038,121616.0511,3419875316,0,354700984.2,702307948.6 + 01/28 23:00:00,1190141561,0,1651836373,0,81074.91527,120993.2652,3569423383,0,354700984.2,624273732.1 + 01/28 24:00:00,1283791389,0,1789294869,0,40324.08318,60178.20028,3434894478,0,354700984.2,468205299.1 + 01/29 01:00:00,1444087973,0,2026597576,0,40205.79737,60001.67483,3831432449,0,212820590.5,234102649.5 + 01/29 02:00:00,959459786.5,0,1337288156,0,20162.04159,30089.10014,2477652053,0,141880393.7,0 + 01/29 03:00:00,1318031260,0,1857704708,0,20162.04159,30089.10014,3356640078,0,141880393.7,0 + 01/29 04:00:00,1316625301,0,1854555703,0,20210.82031,30161.89573,3352522782,0,141880393.7,0 + 01/29 05:00:00,1363071426,0,1921109570,0,19992.81113,29836.54673,3463566684,0,141880393.7,0 + 01/29 06:00:00,1371314057,0,1931123017,0,20162.04159,30089.10014,3483341185,0,141880393.7,0 + 01/29 07:00:00,1288158448,0,1805278565,0,81074.91527,120993.2652,3820882463,0,141880393.7,156068433 + 01/29 08:00:00,1211773783,0,1630390451,0,324299.6611,483973.0607,5751946032,0,567521574.6,390171082.6 + 01/29 09:00:00,1193151004,0,1541703641,0,285222.8063,425656.1789,5294018992,0,567521574.6,390171082.6 + 01/29 10:00:00,1202977422,0,1662456034,0,205293.7341,306372.9284,4707433441,0,283760787.3,0 + 01/29 11:00:00,993814569.7,0,1537270671,0,165365.5728,246785.5876,4014829419,0,283760787.3,0 + 01/29 12:00:00,824978575,0,1445517527,0,83453.17127,124542.4882,3019280476,0,283760787.3,0 + 01/29 13:00:00,705903687.3,0,1375861179,0,83803.00617,125064.5692,2833688138,0,283760787.3,0 + 01/29 14:00:00,712141696.3,0,1269745840,0,84140.24021,125567.845,2736836643,0,283760787.3,0 + 01/29 15:00:00,774610830.5,0,1159571142,0,126433.8846,188685.3471,3068611206,0,283760787.3,0 + 01/29 16:00:00,907366563.4,0,1197742721,0,211161.2048,315129.3289,3999755206,0,283760787.3,0 + 01/29 17:00:00,1100368317,0,1530613645,0,209507.5154,312661.4229,4510790140,0,354700984.2,0 + 01/29 18:00:00,1239110971,0,1762721587,0,291400.1503,434875.0231,5616423182,0,141880393.7,0 + 01/29 19:00:00,1010284819,0,1415111965,0,292648.0327,436737.3176,5051184045,0,638461771.5,0 + 01/29 20:00:00,796837378.2,0,1091812860,0,166182.2833,248004.4167,3379722358,0,638461771.5,702307948.6 + 01/29 21:00:00,896519821.7,0,1235498596,0,165365.5728,246785.5876,3615762595,0,496581377.8,702307948.6 + 01/29 22:00:00,939265015.6,0,1296389020,0,83257.18579,124250.0066,2982679928,0,354700984.2,702307948.6 + 01/29 23:00:00,911024208.6,0,1253045248,0,83957.88034,125295.6977,2917382338,0,354700984.2,624273732.1 + 01/29 24:00:00,952764919.1,0,1313685645,0,41901.50308,62532.28458,2642412200,0,354700984.2,468205299.1 + 01/30 01:00:00,1100789208,0,1532774641,0,41806.86181,62391.04537,3008676315,0,212820590.5,234102649.5 + 01/30 02:00:00,597751285.7,0,826518741.4,0,20863.29282,31135.62206,1611466121,0,141880393.7,0 + 01/30 03:00:00,996170845.6,0,1395692368,0,20863.29282,31135.62206,2579059307,0,141880393.7,0 + 01/30 04:00:00,996431296.3,0,1396443452,0,20903.43091,31195.52268,2580430981,0,141880393.7,0 + 01/30 05:00:00,993659989.7,0,1391116983,0,20903.43091,31195.52268,2572333205,0,141880393.7,0 + 01/30 06:00:00,984258802.1,0,1376395584,0,20950.75154,31266.14229,2548635204,0,141880393.7,0 + 01/30 07:00:00,913429642,0,1270412676,0,83957.88034,125295.6977,2937155199,0,141880393.7,156068433 + 01/30 08:00:00,873823115.8,0,1189381945,0,335831.5213,501182.791,5076456585,0,567521574.6,390171082.6 + 01/30 09:00:00,981607629.2,0,1346737045,0,295012.3974,440265.8098,4975346220,0,567521574.6,390171082.6 + 01/30 10:00:00,1095343258,0,1539230492,0,211161.2048,315129.3289,4529219671,0,283760787.3,0 + 01/30 11:00:00,962803319,0,1394286953,0,169550.7097,253031.3341,3878385630,0,283760787.3,0 + 01/30 12:00:00,908402244.2,0,1362702426,0,84775.35484,126515.6671,3031752349,0,283760787.3,0 + 01/30 13:00:00,958115292.8,0,1413673189,0,84939.15741,126760.1201,3133905881,0,283760787.3,0 + 01/30 14:00:00,928920587.7,0,1349590498,0,85228.66535,127192.1712,3043226098,0,283760787.3,0 + 01/30 15:00:00,953660707.8,0,1354926688,0,127842.998,190788.2569,3455659913,0,283760787.3,0 + 01/30 16:00:00,994256428.4,0,1408438353,0,212681.2453,317397.7823,4310979281,0,283760787.3,0 + 01/30 17:00:00,1015967213,0,1434140082,0,212347.8935,316900.3002,4355400793,0,354700984.2,0 + 01/30 18:00:00,1069808974,0,1510080613,0,297287.0509,443660.4203,5247300483,0,141880393.7,0 + 01/30 19:00:00,832442183,0,1152883851,0,297287.0509,443660.4203,4652736931,0,638461771.5,0 + 01/30 20:00:00,586249205.6,0,783385491.2,0,170144.9962,253918.2258,2896262296,0,638461771.5,702307948.6 + 01/30 21:00:00,639441753.4,0,860325535.5,0,169878.3148,253520.2402,3024002087,0,496581377.8,702307948.6 + 01/30 22:00:00,732298456.9,0,996087185.5,0,84464.48191,126051.7316,2486244011,0,354700984.2,702307948.6 + 01/30 23:00:00,840888136.6,0,1154271520,0,83613.72362,124782.0907,2745384589,0,354700984.2,624273732.1 + 01/30 24:00:00,949528250.2,0,1312569622,0,41726.58564,62271.24412,2636490059,0,354700984.2,468205299.1 + 01/31 01:00:00,1091450700,0,1521327164,0,41806.86181,62391.04537,2987890330,0,212820590.5,234102649.5 + 01/31 02:00:00,622034377,0,862502536.1,0,20722.17019,30925.01576,1670466782,0,141880393.7,0 + 01/31 03:00:00,1065977942,0,1496844287,0,20670.69661,30848.19845,2748290251,0,141880393.7,0 + 01/31 04:00:00,1107733549,0,1556240378,0,20627.15908,30783.22462,2849051308,0,141880393.7,0 + 01/31 05:00:00,1162527026,0,1633674277,0,20474.90681,30556.00885,2979912599,0,141880393.7,0 + 01/31 06:00:00,1197418739,0,1682199867,0,20474.90681,30556.00885,3063329902,0,141880393.7,0 + 01/31 07:00:00,1178681007,0,1650965599,0,81492.23038,121616.0511,3560836420,0,141880393.7,156068433 + 01/31 08:00:00,1105971216,0,1476158046,0,326862.8274,487798.2373,5514909094,0,567521574.6,390171082.6 + 01/31 09:00:00,1067908561,0,1356034788,0,287411.2278,428922.0998,5002743329,0,567521574.6,390171082.6 + 01/31 10:00:00,1100637963,0,1515669701,0,205741.5822,307041.2806,4462325969,0,283760787.3,0 + 01/31 11:00:00,943927968.4,0,1472590682,0,165365.5728,246785.5876,3900262828,0,283760787.3,0 + 01/31 12:00:00,806921573.9,0,1451718059,0,83091.14165,124002.2083,3004175693,0,283760787.3,0 + 01/31 13:00:00,727698234.8,0,1419815364,0,83257.18579,124250.0066,2894539491,0,283760787.3,0 + 01/31 14:00:00,735709939.9,0,1322454039,0,83453.17127,124542.4882,2806948353,0,283760787.3,0 + 01/31 15:00:00,838446496.7,0,1250685941,0,125420.5854,187173.1361,3214469835,0,283760787.3,0 + 01/31 16:00:00,995880696.7,0,1306743272,0,208142.9645,310625.0165,4170188700,0,283760787.3,0 + 01/31 17:00:00,1189706881,0,1646090149,0,207727.8541,310005.5208,4699637180,0,354700984.2,0 + 01/31 18:00:00,1308345103,0,1859920921,0,289389.7525,431874.7783,5764818335,0,141880393.7,0 + 01/31 19:00:00,1135826209,0,1595684522,0,286776.5427,427974.9188,5304615992,0,638461771.5,0 + 01/31 20:00:00,934398794.8,0,1290119410,0,163872.3101,244557.0964,3694864069,0,638461771.5,702307948.6 + 01/31 21:00:00,992175803.8,0,1372009629,0,164017.9033,244774.3744,3835837632,0,496581377.8,702307948.6 + 01/31 22:00:00,1035101855,0,1432021579,0,82403.04281,122975.3146,3206485521,0,354700984.2,702307948.6 + 01/31 23:00:00,1021852149,0,1409751749,0,83124.54639,124052.0604,3177439682,0,354700984.2,624273732.1 + 01/31 24:00:00,992685288.5,0,1365928276,0,42070.12011,62783.92251,2736088118,0,354700984.2,468205299.1 + 02/01 01:00:00,1033653855,0,1426634261,0,42549.40914,63499.19608,2842063094,0,212820590.5,234102649.5 + 02/01 02:00:00,419026094.4,0,549575203.9,0,21458.27943,32023.55852,1161135915,0,141880393.7,0 + 02/01 03:00:00,697279706,0,957992046.3,0,21575.31518,32198.21842,1848856473,0,141880393.7,0 + 02/01 04:00:00,628438676.8,0,858061338,0,21628.053,32276.92244,1680557926,0,141880393.7,0 + 02/01 05:00:00,593091403,0,806787818,0,21659.56753,32323.95358,1594219897,0,141880393.7,0 + 02/01 06:00:00,568217952.4,0,770958097.4,0,21685.29987,32362.35559,1533747609,0,141880393.7,0 + 02/01 07:00:00,499960304.2,0,670130901.3,0,86774.45226,129499.0476,1948675805,0,141880393.7,156068433 + 02/01 08:00:00,595952487.2,0,791485975,0,348142.2115,519554.8188,4511147771,0,567521574.6,390171082.6 + 02/01 09:00:00,685807792.3,0,932840883.4,0,304914.4551,455043.2818,4354496529,0,567521574.6,390171082.6 + 02/01 10:00:00,667574560,0,916475214,0,218083.811,325460.3756,3540808846,0,283760787.3,0 + 02/01 11:00:00,654140477.2,0,899297902.6,0,174491.2611,260404.434,3119062882,0,283760787.3,0 + 02/01 12:00:00,630094715.6,0,868959092,0,87221.28123,130165.879,2281647584,0,283760787.3,0 + 02/01 13:00:00,577656778.4,0,801102124.5,0,87315.38247,130306.3123,2162197004,0,283760787.3,0 + 02/01 14:00:00,593183107.2,0,819294750.1,0,87269.43112,130237.7361,2195503659,0,283760787.3,0 + 02/01 15:00:00,593391869.7,0,819004971.6,0,130989.7889,195484.4136,2587703970,0,283760787.3,0 + 02/01 16:00:00,592501120,0,817734542.2,0,218260.2528,325723.691,3368577860,0,283760787.3,0 + 02/01 17:00:00,587107569.9,0,808916220.7,0,218022.2527,325368.5082,3352230530,0,354700984.2,0 + 02/01 18:00:00,631517524.8,0,875615098.9,0,305187.3445,455450.532,4245428979,0,141880393.7,0 + 02/01 19:00:00,393154844.4,0,519405681.6,0,305143.0566,455384.4384,3650459508,0,638461771.5,0 + 02/01 20:00:00,168328197.7,0,184101433.7,0,174155.1887,259902.8918,1915038721,0,638461771.5,702307948.6 + 02/01 21:00:00,219831640.7,0,260236209.6,0,174099.4041,259819.6408,2042176412,0,496581377.8,702307948.6 + 02/01 22:00:00,279198523.8,0,348107541.1,0,87063.71593,129930.7342,1408486085,0,354700984.2,702307948.6 + 02/01 23:00:00,326134132.9,0,416224319.2,0,86992.2949,129824.1481,1522897647,0,354700984.2,624273732.1 + 02/01 24:00:00,402332170,0,527914245.4,0,43458.75258,64856.26729,1320180487,0,354700984.2,468205299.1 + 02/02 01:00:00,541109897.8,0,733883579.2,0,43443.32501,64833.24374,1664789124,0,212820590.5,234102649.5 + 02/02 02:00:00,56649918.16,0,60290750.6,0,21705.83402,32393.00002,311696471.3,0,141880393.7,0 + 02/02 03:00:00,429290882.5,0,571993769.3,0,21689.47303,32368.58346,1195893655,0,141880393.7,0 + 02/02 04:00:00,470181366.4,0,647439516.6,0,21650.72693,32310.76019,1311882237,0,141880393.7,0 + 02/02 05:00:00,502370701.4,0,694101109.7,0,21599.77111,32234.71556,1390275963,0,141880393.7,0 + 02/02 06:00:00,534888046,0,741327757.7,0,21550.05851,32160.52629,1469573909,0,141880393.7,0 + 02/02 07:00:00,499691299.7,0,687428846.4,0,21534.52267,32137.34116,1380338856,0,141880393.7,156068433 + 02/02 08:00:00,643401246.4,0,883469316.4,0,86053.46204,128423.0679,2298986071,0,567521574.6,390171082.6 + 02/02 09:00:00,614616220.5,0,866566789.5,0,214582.7943,320235.5852,3406529176,0,567521574.6,390171082.6 + 02/02 10:00:00,785408133.3,0,1101802354,0,213881.0158,319188.2764,3806259939,0,283760787.3,0 + 02/02 11:00:00,720755496.2,0,1055096437,0,213513.7392,318640.1661,3691605992,0,283760787.3,0 + 02/02 12:00:00,519078678.2,0,931510350.3,0,127919.6717,190902.6818,2598349501,0,283760787.3,0 + 02/02 13:00:00,444683595.7,0,919398670,0,127919.6717,190902.6818,2511842738,0,283760787.3,0 + 02/02 14:00:00,493560889.4,0,910048123,0,127408.7361,190140.1801,2546785111,0,283760787.3,0 + 02/02 15:00:00,582655125.8,0,887476625.5,0,127408.7361,190140.1801,2613307850,0,283760787.3,0 + 02/02 16:00:00,737929856.3,0,969518863.2,0,296616.7949,442660.1545,4368845737,0,283760787.3,0 + 02/02 17:00:00,933142967.4,0,1285067250,0,379168.5135,565857.3474,5620303316,0,354700984.2,0 + 02/02 18:00:00,1078613357,0,1539895988,0,293744.9046,438374.2494,5254138300,0,141880393.7,0 + 02/02 19:00:00,941862751,0,1327224730,0,292086.0995,435898.7088,4889832790,0,638461771.5,0 + 02/02 20:00:00,752309932.6,0,1038003486,0,249573.1879,372453.9805,4029611225,0,638461771.5,702307948.6 + 02/02 21:00:00,851291470.9,0,1180215947,0,206706.9661,308481.9845,3886187640,0,496581377.8,702307948.6 + 02/02 22:00:00,944662255.6,0,1315001553,0,165087.3023,246370.3067,3740911201,0,354700984.2,702307948.6 + 02/02 23:00:00,1020225462,0,1423025190,0,123176.2405,183823.757,3548450642,0,354700984.2,624273732.1 + 02/02 24:00:00,1121321618,0,1568725646,0,81936.15506,122278.5482,3425220196,0,354700984.2,468205299.1 + 02/03 01:00:00,1299111106,0,1828752121,0,40783.52714,60863.85779,3493793812,0,212820590.5,234102649.5 + 02/03 02:00:00,828403083.8,0,1159995104,0,20306.94586,30305.35003,2170602453,0,141880393.7,0 + 02/03 03:00:00,1267428283,0,1793840220,0,20210.82031,30161.89573,3242610281,0,141880393.7,0 + 02/03 04:00:00,1305033669,0,1846065750,0,20191.36498,30132.8613,3332266633,0,141880393.7,0 + 02/03 05:00:00,1333520414,0,1884595712,0,20142.40016,30059.78798,3398844003,0,141880393.7,0 + 02/03 06:00:00,1360525871,0,1921180087,0,20112.80114,30015.61548,3462168258,0,141880393.7,0 + 02/03 07:00:00,1333883073,0,1877955767,0,20063.11078,29941.45939,3391855293,0,141880393.7,156068433 + 02/03 08:00:00,1253734057,0,1677504350,0,20043.11133,29911.61293,3111075415,0,567521574.6,390171082.6 + 02/03 09:00:00,1185679964,0,1508419122,0,80765.45992,120531.4452,3418767944,0,567521574.6,390171082.6 + 02/03 10:00:00,1137328816,0,1563815592,0,122294.5252,182507.9172,3798433201,0,283760787.3,0 + 02/03 11:00:00,927432425.1,0,1466395274,0,123122.1007,183742.9609,3498541921,0,283760787.3,0 + 02/03 12:00:00,751664625.9,0,1415751899,0,82438.33181,123027.9786,2907095243,0,283760787.3,0 + 02/03 13:00:00,632666891.6,0,1333559374,0,83191.06265,124151.3268,2712658868,0,283760787.3,0 + 02/03 14:00:00,637609771.4,0,1230960286,0,124333.0211,185550.0946,2984149274,0,283760787.3,0 + 02/03 15:00:00,711380177.3,0,1105343490,0,165980.6896,247703.5655,3305986986,0,283760787.3,0 + 02/03 16:00:00,859230909.4,0,1125419336,0,207475.862,309629.4569,3846229393,0,283760787.3,0 + 02/03 17:00:00,1042521150,0,1452196402,0,248767.9937,371252.3378,4726790745,0,354700984.2,0 + 02/03 18:00:00,1165639719,0,1684661650,0,289268.4965,431693.8203,5445765709,0,141880393.7,0 + 02/03 19:00:00,1026119071,0,1466436594,0,164234.9873,245098.3427,3966155653,0,638461771.5,0 + 02/03 20:00:00,834298623,0,1172191553,0,122958.895,183499.3985,3109740032,0,638461771.5,702307948.6 + 02/03 21:00:00,912196209.1,0,1281249368,0,81863.01352,122169.3944,2927962246,0,496581377.8,702307948.6 + 02/03 22:00:00,990437002.8,0,1391782028,0,81789.52985,122059.7301,3116076367,0,354700984.2,702307948.6 + 02/03 23:00:00,1041578088,0,1462438964,0,81752.66059,122004.7077,3237543578,0,354700984.2,624273732.1 + 02/03 24:00:00,1104233270,0,1551459176,0,81899.62723,122224.0354,3390537632,0,354700984.2,468205299.1 + 02/04 01:00:00,1225017467,0,1728145795,0,41112.62194,61354.98694,3322046654,0,212820590.5,234102649.5 + 02/04 02:00:00,681063540.5,0,940901734.4,0,20662.03547,30835.27288,1807355585,0,141880393.7,0 + 02/04 03:00:00,1052758038,0,1487570374,0,20713.65039,30912.30112,2726181837,0,141880393.7,0 + 02/04 04:00:00,1042758162,0,1471369738,0,20789.46337,31025.44167,2700661558,0,141880393.7,0 + 02/04 05:00:00,1020001510,0,1435106563,0,20879.42419,31159.69593,2642448905,0,141880393.7,0 + 02/04 06:00:00,1002566252,0,1407074186,0,20927.20737,31231.00583,2597410005,0,141880393.7,0 + 02/04 07:00:00,939148719.9,0,1310761313,0,83803.00617,125064.5692,3001833304,0,141880393.7,156068433 + 02/04 08:00:00,898861630.6,0,1227917662,0,335708.4624,500999.1422,5138926669,0,567521574.6,390171082.6 + 02/04 09:00:00,1027015675,0,1413518579,0,294173.3886,439013.7034,5080007785,0,567521574.6,390171082.6 + 02/04 10:00:00,1180987032,0,1659382773,0,210574.9359,314254.4026,4729755424,0,283760787.3,0 + 02/04 11:00:00,1150743669,0,1620205392,0,168696.2063,251756.1043,4284577379,0,283760787.3,0 + 02/04 12:00:00,1109066309,0,1566399104,0,84493.30105,126094.7402,3433582362,0,283760787.3,0 + 02/04 13:00:00,1087893095,0,1537085754,0,84607.46713,126265.1175,3384120154,0,283760787.3,0 + 02/04 14:00:00,1080100190,0,1522469776,0,84719.84333,126432.8237,3362719568,0,283760787.3,0 + 02/04 15:00:00,1073100823,0,1509116065,0,127121.4835,189711.4948,3722815609,0,283760787.3,0 + 02/04 16:00:00,1063844338,0,1467457095,0,211659.7001,315873.2653,4430420109,0,283760787.3,0 + 02/04 17:00:00,1071912975,0,1462105045,0,211518.6678,315662.7938,4431871282,0,354700984.2,0 + 02/04 18:00:00,1140652282,0,1597562853,0,296126.1349,441927.9113,5395209701,0,141880393.7,0 + 02/04 19:00:00,897650399.3,0,1234728177,0,296126.1349,441927.9113,4789373143,0,638461771.5,0 + 02/04 20:00:00,670144016.4,0,894891023.1,0,168928.9638,252103.4631,3080751777,0,638461771.5,702307948.6 + 02/04 21:00:00,776187041.5,0,1050472256,0,167480.6507,249942.0532,3329381031,0,496581377.8,702307948.6 + 02/04 22:00:00,889692310.3,0,1216913048,0,83355.62788,124396.918,2854514523,0,354700984.2,702307948.6 + 02/04 23:00:00,957861260.3,0,1315698509,0,83157.8535,124101.7667,3019694402,0,354700984.2,624273732.1 + 02/04 24:00:00,1059672681,0,1464304590,0,41358.66879,61722.17834,2895068320,0,354700984.2,468205299.1 + 02/05 01:00:00,1234757566,0,1722287602,0,41236.76488,61540.25337,3327042434,0,212820590.5,234102649.5 + 02/05 02:00:00,764035912.7,0,1040951995,0,20538.37471,30650.72605,1989268671,0,141880393.7,0 + 02/05 03:00:00,1183716132,0,1661704014,0,20474.90681,30556.00885,3029131443,0,141880393.7,0 + 02/05 04:00:00,1218951538,0,1711622450,0,20447.38246,30514.93252,3114038322,0,141880393.7,0 + 02/05 05:00:00,1254910886,0,1761764457,0,20363.67382,30390.00878,3199388600,0,141880393.7,0 + 02/05 06:00:00,1297181929,0,1821479867,0,20278.31255,30262.6187,3300609149,0,141880393.7,0 + 02/05 07:00:00,1272179271,0,1781227266,0,80998.01187,120878.4973,3780161970,0,141880393.7,156068433 + 02/05 08:00:00,1172428710,0,1555588515,0,323528.3138,482821.9299,5630878102,0,567521574.6,390171082.6 + 02/05 09:00:00,1128318133,0,1444491695,0,285091.4335,425460.1229,5130795431,0,567521574.6,390171082.6 + 02/05 10:00:00,1107447884,0,1532477277,0,205022.3791,305967.968,4479490410,0,283760787.3,0 + 02/05 11:00:00,853865621,0,1375021590,0,163945.1933,244665.8646,3699887019,0,283760787.3,0 + 02/05 12:00:00,719655226.2,0,1379347162,0,81826.31428,122114.6258,2833189773,0,283760787.3,0 + 02/05 13:00:00,638795461.7,0,1368766338,0,82189.41568,122656.5052,2745007115,0,283760787.3,0 + 02/05 14:00:00,689333234.4,0,1311982608,0,82189.41568,122656.5052,2738761157,0,283760787.3,0 + 02/05 15:00:00,869255988.4,0,1321486702,0,123337.8658,184064.9608,3297392867,0,283760787.3,0 + 02/05 16:00:00,1121340088,0,1531260567,0,204840.3876,305696.3705,4490532984,0,283760787.3,0 + 02/05 17:00:00,1317800597,0,1825373719,0,204289.2672,304873.8983,4976161711,0,354700984.2,0 + 02/05 18:00:00,1468304332,0,2094186605,0,284959.775,425263.6405,6119295233,0,141880393.7,0 + 02/05 19:00:00,1280755971,0,1804245577,0,283896.3757,423676.6619,5632264483,0,638461771.5,0 + 02/05 20:00:00,1067892145,0,1479170017,0,162303.0136,242215.1351,4003327497,0,638461771.5,702307948.6 + 02/05 21:00:00,1142115364,0,1583817479,0,161841.5991,241526.5369,4178058132,0,496581377.8,702307948.6 + 02/05 22:00:00,1210289415,0,1681085753,0,80998.01187,120878.4973,3618130601,0,354700984.2,702307948.6 + 02/05 23:00:00,1257276912,0,1747414047,0,80843.28123,120647.5829,3730058069,0,354700984.2,624273732.1 + 02/05 24:00:00,1331911051,0,1855449860,0,40382.72996,60265.72261,3549695340,0,354700984.2,468205299.1 + 02/06 01:00:00,1472729992,0,2063103062,0,40363.21828,60236.60409,3897992415,0,212820590.5,234102649.5 + 02/06 02:00:00,977041979.3,0,1357692070,0,20239.86103,30205.23506,2516336396,0,141880393.7,0 + 02/06 03:00:00,1337857060,0,1880624626,0,20239.86103,30205.23506,3400084033,0,141880393.7,0 + 02/06 04:00:00,1352407879,0,1901081498,0,20210.82031,30161.89573,3434831154,0,141880393.7,0 + 02/06 05:00:00,1356533094,0,1905906387,0,20191.36498,30132.8613,3443606696,0,141880393.7,0 + 02/06 06:00:00,1367861036,0,1921625623,0,20152.23006,30074.45777,3470302736,0,141880393.7,0 + 02/06 07:00:00,1334703662,0,1871063552,0,80292.33711,119825.3739,3926190974,0,141880393.7,156068433 + 02/06 08:00:00,1233721274,0,1643846264,0,320689.7812,478585.8068,5754959655,0,567521574.6,390171082.6 + 02/06 09:00:00,1212279931,0,1564379629,0,281993.6022,420837.0318,5306849842,0,567521574.6,390171082.6 + 02/06 10:00:00,1222241506,0,1689340571,0,202878.7669,302768.9189,4731913746,0,283760787.3,0 + 02/06 11:00:00,1029594832,0,1593753237,0,163505.3212,244009.4155,4090401121,0,283760787.3,0 + 02/06 12:00:00,851081197,0,1522557538,0,82189.41568,122656.5052,3111084050,0,283760787.3,0 + 02/06 13:00:00,707548685.2,0,1438350778,0,82786.15835,123547.0623,2888699058,0,283760787.3,0 + 02/06 14:00:00,738928429.1,0,1338646757,0,82888.68076,123700.063,2821294663,0,283760787.3,0 + 02/06 15:00:00,999544889.7,0,1495363587,0,124281.9023,185473.8067,3610029029,0,283760787.3,0 + 02/06 16:00:00,1144585831,0,1668166915,0,207136.5039,309123.0112,4671287000,0,283760787.3,0 + 02/06 17:00:00,1187995081,0,1724795633,0,207051.0683,308995.5102,4770558396,0,354700984.2,0 + 02/06 18:00:00,1246345491,0,1803666424,0,289991.1055,432772.2157,5651959871,0,141880393.7,0 + 02/06 19:00:00,1081592251,0,1549059559,0,286263.3545,427209.0552,5199152485,0,638461771.5,0 + 02/06 20:00:00,821771310.1,0,1155838290,0,165777.3615,247400.1261,3465048556,0,638461771.5,702307948.6 + 02/06 21:00:00,833758865.4,0,1169657569,0,165777.3615,247400.1261,3490855390,0,496581377.8,702307948.6 + 02/06 22:00:00,942006914.4,0,1325830852,0,82117.49365,122549.1714,3004637760,0,354700984.2,702307948.6 + 02/06 23:00:00,995519452.1,0,1400479955,0,82508.63631,123132.8985,3136308933,0,354700984.2,624273732.1 + 02/06 24:00:00,1074534514,0,1511726347,0,41112.62194,61354.98694,2955144253,0,354700984.2,468205299.1 + 02/07 01:00:00,1263212028,0,1785359817,0,40894.76493,61029.86504,3415500513,0,212820590.5,234102649.5 + 02/07 02:00:00,814925806.7,0,1146382406,0,20325.93559,30333.68961,2143682863,0,141880393.7,0 + 02/07 03:00:00,1292333899,0,1834473858,0,20083.04016,29971.20126,3307003027,0,141880393.7,0 + 02/07 04:00:00,1388068454,0,1969290570,0,19931.89606,29745.6393,3536198151,0,141880393.7,0 + 02/07 05:00:00,1458652198,0,2067185833,0,19808.33101,29561.23529,3703568469,0,141880393.7,0 + 02/07 06:00:00,1510109527,0,2137882009,0,19735.23791,29452.15379,3825066145,0,141880393.7,0 + 02/07 07:00:00,1498949691,0,2115966675,0,78645.76198,117368.0848,4320566214,0,141880393.7,156068433 + 02/07 08:00:00,1398309917,0,1869510006,0,314921.5251,469977.4705,6093456308,0,567521574.6,390171082.6 + 02/07 09:00:00,1375123360,0,1777429568,0,277461.9873,414074.2139,5642083252,0,567521574.6,390171082.6 + 02/07 10:00:00,1359381514,0,1886761734,0,200029.0525,298516.1083,5040905826,0,283760787.3,0 + 02/07 11:00:00,1144801608,0,1779747612,0,161217.8405,240595.6622,4371077829,0,283760787.3,0 + 02/07 12:00:00,958486926.4,0,1721967563,0,80882.07844,120705.4825,3406169708,0,283760787.3,0 + 02/07 13:00:00,823579422.2,0,1600513812,0,81227.78345,121221.4001,3152910295,0,283760787.3,0 + 02/07 14:00:00,851000903.2,0,1493707630,0,81492.23038,121616.0511,3075898346,0,283760787.3,0 + 02/07 15:00:00,1008314496,0,1514138999,0,122069.0709,182171.4573,3617719397,0,283760787.3,0 + 02/07 16:00:00,1187423261,0,1673981114,0,203730.576,304040.1278,4689378908,0,283760787.3,0 + 02/07 17:00:00,1291099826,0,1817239169,0,203730.576,304040.1278,4936313529,0,354700984.2,0 + 02/07 18:00:00,1399328884,0,2018469657,0,285484.69,426047.0045,5979312642,0,141880393.7,0 + 02/07 19:00:00,1165286868,0,1659497605,0,286263.3545,427209.0552,5393285149,0,638461771.5,0 + 02/07 20:00:00,935162266.9,0,1308766835,0,163431.4137,243899.1186,3710319019,0,638461771.5,702307948.6 + 02/07 21:00:00,978593386.6,0,1368310585,0,164017.9033,244774.3744,3818556172,0,496581377.8,702307948.6 + 02/07 22:00:00,1022833132,0,1430338290,0,82117.49365,122549.1714,3189971415,0,354700984.2,702307948.6 + 02/07 23:00:00,1043608630,0,1458162453,0,82296.63288,122816.5122,3240178405,0,354700984.2,624273732.1 + 02/07 24:00:00,1090646559,0,1525545758,0,41219.16591,61513.9893,2986031676,0,354700984.2,468205299.1 + 02/08 01:00:00,1216874301,0,1711519508,0,41271.82557,61592.57667,3298705658,0,212820590.5,234102649.5 + 02/08 02:00:00,694910600.6,0,956804420.5,0,20670.69661,30848.19845,1837183043,0,141880393.7,0 + 02/08 03:00:00,1071023434,0,1511296545,0,20713.65039,30912.30112,2768173404,0,141880393.7,0 + 02/08 04:00:00,1063502466,0,1499101894,0,20764.4099,30988.05277,2748913225,0,141880393.7,0 + 02/08 05:00:00,1044467567,0,1469324470,0,20822.52479,31074.78133,2700622339,0,141880393.7,0 + 02/08 06:00:00,1028203106,0,1444153471,0,20847.06066,31111.39777,2659407028,0,141880393.7,0 + 02/08 07:00:00,954423046.8,0,1333796523,0,83613.72362,124782.0907,3038444502,0,141880393.7,156068433 + 02/08 08:00:00,889186809,0,1216268666,0,335336.762,500444.43,5114267766,0,567521574.6,390171082.6 + 02/08 09:00:00,991966706.6,0,1366750362,0,294173.3886,439013.7034,4998190600,0,567521574.6,390171082.6 + 02/08 10:00:00,1116035628,0,1571360941,0,211729.7951,315977.8725,4587144173,0,283760787.3,0 + 02/08 11:00:00,971080675.6,0,1401225929,0,169824.2862,253439.6098,3896056630,0,283760787.3,0 + 02/08 12:00:00,835522968.5,0,1297377374,0,84691.91803,126391.149,2892799384,0,283760787.3,0 + 02/08 13:00:00,740103651.7,0,1279130251,0,84348.10317,125878.0522,2776048062,0,283760787.3,0 + 02/08 14:00:00,713544720.8,0,1229421124,0,84229.97438,125701.761,2698720093,0,283760787.3,0 + 02/08 15:00:00,773302357.5,0,1144253289,0,126165.1705,188284.3279,3049573841,0,283760787.3,0 + 02/08 16:00:00,923736070.6,0,1177567895,0,209663.1759,312893.725,3982508809,0,283760787.3,0 + 02/08 17:00:00,1123629066,0,1497356448,0,208713.7114,311476.7785,4493671278,0,354700984.2,0 + 02/08 18:00:00,1285930597,0,1817848440,0,290935.9124,434182.2113,5714204281,0,141880393.7,0 + 02/08 19:00:00,1108852692,0,1547941525,0,288902.779,431148.0367,5248977153,0,638461771.5,0 + 02/08 20:00:00,925486093.2,0,1270049042,0,164234.9873,245098.3427,3669135124,0,638461771.5,702307948.6 + 02/08 21:00:00,995497217.1,0,1370850808,0,164378.8314,245313.0104,3841238656,0,496581377.8,702307948.6 + 02/08 22:00:00,1061200210,0,1465980874,0,82117.49365,122549.1714,3263981077,0,354700984.2,702307948.6 + 02/08 23:00:00,1107472493,0,1532418585,0,82045.21972,122441.3124,3376042593,0,354700984.2,624273732.1 + 02/08 24:00:00,1208838129,0,1680875698,0,40670.80088,60695.62921,3254632976,0,354700984.2,468205299.1 + 02/09 01:00:00,1380087493,0,1934248105,0,40537.45764,60496.63258,3678058323,0,212820590.5,234102649.5 + 02/09 02:00:00,928244985.4,0,1296914108,0,20122.68561,30030.3667,2405710082,0,141880393.7,0 + 02/09 03:00:00,1320844985,0,1864088845,0,20112.80114,30015.61548,3365396129,0,141880393.7,0 + 02/09 04:00:00,1322578813,0,1865932697,0,20162.04159,30089.10014,3369415621,0,141880393.7,0 + 02/09 05:00:00,1318976149,0,1858725954,0,20191.36498,30132.8613,3358869318,0,141880393.7,0 + 02/09 06:00:00,1316421964,0,1853485133,0,20230.19988,30190.81711,3351422758,0,141880393.7,0 + 02/09 07:00:00,1282817682,0,1801206972,0,20152.23006,30074.45777,3264840730,0,141880393.7,156068433 + 02/09 08:00:00,1163569660,0,1541464101,0,80726.43657,120473.2082,3429352482,0,567521574.6,390171082.6 + 02/09 09:00:00,1098140396,0,1415884344,0,203354.0044,303478.1461,4338620482,0,567521574.6,390171082.6 + 02/09 10:00:00,1094513688,0,1514012734,0,205473.5392,306641.263,4452139710,0,283760787.3,0 + 02/09 11:00:00,926037410.9,0,1405882776,0,206446.4347,308093.177,4184262789,0,283760787.3,0 + 02/09 12:00:00,825212144,0,1340806160,0,124736.7802,186152.65,3285220253,0,283760787.3,0 + 02/09 13:00:00,716911434.2,0,1238386950,0,125179.7569,186813.7323,3078474946,0,283760787.3,0 + 02/09 14:00:00,708264824.6,0,1159380961,0,125515.8456,187315.2989,2993837906,0,283760787.3,0 + 02/09 15:00:00,774926002.7,0,1149516453,0,125751.2857,187666.6613,3052747064,0,283760787.3,0 + 02/09 16:00:00,869764777.7,0,1217669572,0,293419.6667,437888.8763,4720145105,0,283760787.3,0 + 02/09 17:00:00,987006076.1,0,1412053284,0,376972.7296,562580.4392,5781450768,0,354700984.2,0 + 02/09 18:00:00,1085107504,0,1559826166,0,292199.196,436067.49,5266693740,0,141880393.7,0 + 02/09 19:00:00,904366484.1,0,1283495765,0,292536.3581,436570.6584,4812647509,0,638461771.5,0 + 02/09 20:00:00,681749174.1,0,945809244.6,0,250456.4537,373772.1343,3874781335,0,638461771.5,702307948.6 + 02/09 21:00:00,745411924.1,0,1035470738,0,208713.7114,311476.7785,3653568426,0,496581377.8,702307948.6 + 02/09 22:00:00,797878204.7,0,1109356804,0,167417.659,249848.0466,3409391548,0,354700984.2,702307948.6 + 02/09 23:00:00,820980491.9,0,1139808902,0,125844.3683,187805.5742,3089929187,0,354700984.2,624273732.1 + 02/09 24:00:00,872741810.2,0,1213609720,0,83988.53945,125341.4523,2839939500,0,354700984.2,468205299.1 + 02/10 01:00:00,996226763.6,0,1395028093,0,42100.08543,62828.64167,2768998274,0,212820590.5,234102649.5 + 02/10 02:00:00,678520510.2,0,956677217.2,0,21079.68358,31458.55579,1824335389,0,141880393.7,0 + 02/10 03:00:00,873355504.5,0,1228495780,0,21079.68358,31458.55579,2290988946,0,141880393.7,0 + 02/10 04:00:00,876955174.5,0,1231707500,0,21087.02579,31469.51304,2297866215,0,141880393.7,0 + 02/10 05:00:00,883648205.5,0,1239602406,0,21072.3141,31447.55784,2312322150,0,141880393.7,0 + 02/10 06:00:00,890101580.9,0,1247736201,0,21072.3141,31447.55784,2326909321,0,141880393.7,0 + 02/10 07:00:00,830658022.3,0,1157664380,0,21123.32526,31523.68505,2177851639,0,141880393.7,156068433 + 02/10 08:00:00,747820593.1,0,984963734.9,0,21057.49359,31425.44026,1921722890,0,567521574.6,390171082.6 + 02/10 09:00:00,748050251.6,0,922362547.3,0,84229.97438,125701.761,2426167046,0,567521574.6,390171082.6 + 02/10 10:00:00,785308335.6,0,1037176291,0,126739.9516,189142.1103,2959660049,0,283760787.3,0 + 02/10 11:00:00,633297361.8,0,1003101914,0,126783.0141,189206.3753,2773961077,0,283760787.3,0 + 02/10 12:00:00,502578002.3,0,997804803.6,0,84635.72966,126307.2955,2259777696,0,283760787.3,0 + 02/10 13:00:00,410236955.4,0,957326260.3,0,84939.15741,126760.1201,2129680615,0,283760787.3,0 + 02/10 14:00:00,421613556.5,0,889072035.1,0,127408.7361,190140.1801,2453861690,0,283760787.3,0 + 02/10 15:00:00,502784743.5,0,797549738.2,0,170144.9962,253918.2258,2826962081,0,283760787.3,0 + 02/10 16:00:00,672502236.1,0,806537228.9,0,212615.154,317299.1501,3386730960,0,283760787.3,0 + 02/10 17:00:00,867536610,0,1076382310,0,253991.6401,379047.9184,4222861330,0,354700984.2,0 + 02/10 18:00:00,1040221699,0,1475946785,0,295218.3611,440573.1826,5165018041,0,141880393.7,0 + 02/10 19:00:00,890412037.2,0,1243975575,0,168159.7601,250955.5313,3643202662,0,638461771.5,0 + 02/10 20:00:00,673923217.1,0,916232911.6,0,126210.3603,188351.7675,2722579789,0,638461771.5,702307948.6 + 02/10 21:00:00,747470823.2,0,1021707198,0,83865.27037,125157.49,2521659958,0,496581377.8,702307948.6 + 02/10 22:00:00,813193014.2,0,1117003363,0,83896.2455,125203.7162,2682956239,0,354700984.2,702307948.6 + 02/10 23:00:00,899515497.5,0,1242714783,0,83057.63958,123952.2111,2887465743,0,354700984.2,624273732.1 + 02/10 24:00:00,964277855.5,0,1337468149,0,83549.80753,124686.7047,3051397449,0,354700984.2,468205299.1 + 02/11 01:00:00,1105553174,0,1546279857,0,41612.08676,62100.37014,3025197875,0,212820590.5,234102649.5 + 02/11 02:00:00,607942989.4,0,845980129.2,0,20764.4099,30988.05277,1640231984,0,141880393.7,0 + 02/11 03:00:00,1026962428,0,1445365638,0,20747.5862,30962.94569,2658485980,0,141880393.7,0 + 02/11 04:00:00,1055823674,0,1486708909,0,20722.17019,30925.01576,2728462453,0,141880393.7,0 + 02/11 05:00:00,1089273675,0,1533586085,0,20644.64347,30809.3177,2808094020,0,141880393.7,0 + 02/11 06:00:00,1116219858,0,1570994164,0,20627.15908,30783.22462,2872291403,0,141880393.7,0 + 02/11 07:00:00,1087665260,0,1525816541,0,82260.98305,122763.3097,3351569255,0,141880393.7,156068433 + 02/11 08:00:00,1009829745,0,1337895959,0,327158.1194,488238.9203,5283155047,0,567521574.6,390171082.6 + 02/11 09:00:00,1049432768,0,1360529479,0,288038.2151,429857.7929,4994387876,0,567521574.6,390171082.6 + 02/11 10:00:00,1059362019,0,1452870622,0,208470.6066,311113.9777,4382737145,0,283760787.3,0 + 02/11 11:00:00,771545820.7,0,1193867866,0,167854.2312,250499.5711,3471487375,0,283760787.3,0 + 02/11 12:00:00,558431092.7,0,1062360080,0,83834.1905,125111.1075,2372994246,0,283760787.3,0 + 02/11 13:00:00,456114034.5,0,1008229016,0,84140.24021,125567.845,2219292157,0,283760787.3,0 + 02/11 14:00:00,442516427.4,0,910939627.4,0,84229.97438,125701.761,2109210302,0,283760787.3,0 + 02/11 15:00:00,519833140.4,0,847903782.1,0,126344.9616,188552.6416,2501368294,0,283760787.3,0 + 02/11 16:00:00,663544583.2,0,855678639.2,0,210350.6005,313919.6125,3406595989,0,283760787.3,0 + 02/11 17:00:00,852291630.4,0,1115315877,0,209817.789,313124.4639,3850199617,0,354700984.2,0 + 02/11 18:00:00,1023867438,0,1489314600,0,291744.6976,435389.213,5130864117,0,141880393.7,0 + 02/11 19:00:00,864478135.7,0,1241082481,0,289991.1055,432772.2157,4707508572,0,638461771.5,0 + 02/11 20:00:00,666369476.2,0,937649793.5,0,165980.6896,247703.5655,3093282588,0,638461771.5,702307948.6 + 02/11 21:00:00,760632762.5,0,1069511068,0,165087.3023,246370.3067,3311391223,0,496581377.8,702307948.6 + 02/11 22:00:00,847558369.3,0,1192200780,0,82648.14187,123341.0915,2781320390,0,354700984.2,702307948.6 + 02/11 23:00:00,896537466.2,0,1259132011,0,82682.78642,123392.7938,2897541566,0,354700984.2,624273732.1 + 02/11 24:00:00,963544364.6,0,1353181155,0,41444.34038,61850.03152,2688585258,0,354700984.2,468205299.1 + 02/12 01:00:00,1111848725,0,1568216138,0,41461.33229,61875.38963,3052077061,0,212820590.5,234102649.5 + 02/12 02:00:00,579716030.1,0,811722362.9,0,20847.06066,31111.39777,1578488843,0,141880393.7,0 + 02/12 03:00:00,973633076.1,0,1372464149,0,20871.37114,31147.67785,2533365801,0,141880393.7,0 + 02/12 04:00:00,988419601.8,0,1390624879,0,20911.38208,31207.38873,2566672055,0,141880393.7,0 + 02/12 05:00:00,987267732.9,0,1384825966,0,20950.75154,31266.14229,2560074517,0,141880393.7,0 + 02/12 06:00:00,985223557,0,1378899408,0,20974.06138,31300.92904,2552312931,0,141880393.7,0 + 02/12 07:00:00,932392304.6,0,1297802879,0,83927.11559,125249.7856,2983232028,0,141880393.7,156068433 + 02/12 08:00:00,872330029.9,0,1182978008,0,336076.3705,501548.195,5070756474,0,567521574.6,390171082.6 + 02/12 09:00:00,963419364.3,0,1315572702,0,294173.3886,439013.7034,4918465597,0,567521574.6,390171082.6 + 02/12 10:00:00,1099703900,0,1546722200,0,210425.6484,314031.6113,4534472235,0,283760787.3,0 + 02/12 11:00:00,1068402750,0,1520771702,0,168459.9488,251403.5221,4100682947,0,283760787.3,0 + 02/12 12:00:00,1074946482,0,1532777164,0,84289.2564,125790.2314,3364009803,0,283760787.3,0 + 02/12 13:00:00,1117189470,0,1582193158,0,84229.97438,125701.761,3455136876,0,283760787.3,0 + 02/12 14:00:00,1123366515,0,1586310853,0,84348.10317,125878.0522,3466491528,0,283760787.3,0 + 02/12 15:00:00,1133136021,0,1594383676,0,126609.7686,188947.83,3863527052,0,283760787.3,0 + 02/12 16:00:00,1151456182,0,1614538182,0,211161.2048,315129.3289,4660640285,0,283760787.3,0 + 02/12 17:00:00,1156308597,0,1616486360,0,211016.281,314913.05,4666140550,0,354700984.2,0 + 02/12 18:00:00,1207577677,0,1689959430,0,295422.7935,440878.27,5548220935,0,141880393.7,0 + 02/12 19:00:00,964183967.5,0,1325822192,0,295524.433,441029.9531,4941601950,0,638461771.5,0 + 02/12 20:00:00,713702345.6,0,951977510.9,0,168986.6021,252189.4804,3181913754,0,638461771.5,702307948.6 + 02/12 21:00:00,750745509.4,0,1006845607,0,169101.2135,252360.5223,3274853365,0,496581377.8,702307948.6 + 02/12 22:00:00,798979830.2,0,1078729311,0,84522.00941,126137.5835,2636083676,0,354700984.2,702307948.6 + 02/12 23:00:00,828974586.2,0,1123562157,0,84464.48191,126051.7316,2710395112,0,354700984.2,624273732.1 + 02/12 24:00:00,880307081.7,0,1200192093,0,42246.65052,63047.3701,2459557649,0,354700984.2,468205299.1 + 02/13 01:00:00,1005834113,0,1387518067,0,42261.00471,63068.79177,2772539447,0,212820590.5,234102649.5 + 02/13 02:00:00,692185233,0,963301937,0,21123.32526,31523.68505,1845016407,0,141880393.7,0 + 02/13 03:00:00,891667108,0,1239192904,0,21108.88807,31502.13951,2320259711,0,141880393.7,0 + 02/13 04:00:00,898527882.1,0,1248554008,0,21094.34066,31480.42948,2336351062,0,141880393.7,0 + 02/13 05:00:00,897804092.2,0,1246771975,0,21108.88807,31502.13951,2333975767,0,141880393.7,0 + 02/13 06:00:00,888283919.1,0,1232318050,0,21137.65168,31545.06528,2310259750,0,141880393.7,0 + 02/13 07:00:00,823853661.3,0,1136472693,0,84607.46713,126265.1175,2719467659,0,141880393.7,156068433 + 02/13 08:00:00,766108474.4,0,1032815794,0,338542.9186,505229.182,4836503831,0,567521574.6,390171082.6 + 02/13 09:00:00,893137122.1,0,1217632979,0,296225.0538,442075.5343,4768652218,0,567521574.6,390171082.6 + 02/13 10:00:00,1061564929,0,1486411279,0,211938.3871,316289.1677,4449595405,0,283760787.3,0 + 02/13 11:00:00,1033364894,0,1452652336,0,169660.8248,253195.666,4008300598,0,283760787.3,0 + 02/13 12:00:00,1016834258,0,1434459433,0,84802.9405,126556.8349,3212188883,0,283760787.3,0 + 02/13 13:00:00,1015800397,0,1435743291,0,84747.65569,126474.3299,3211942835,0,283760787.3,0 + 02/13 14:00:00,1029654659,0,1453935280,0,84663.88005,126349.3061,3243237409,0,283760787.3,0 + 02/13 15:00:00,1053191759,0,1483601660,0,126911.2007,189397.6763,3675505376,0,283760787.3,0 + 02/13 16:00:00,1074593712,0,1508635969,0,211659.7001,315873.2653,4482348357,0,283760787.3,0 + 02/13 17:00:00,1081237444,0,1513304297,0,211659.7001,315873.2653,4493660417,0,354700984.2,0 + 02/13 18:00:00,1133382450,0,1588141570,0,296421.7131,442369.0215,5381170664,0,141880393.7,0 + 02/13 19:00:00,895504478.3,0,1232080955,0,296323.5802,442222.5714,4786351579,0,638461771.5,0 + 02/13 20:00:00,654576619.7,0,871800063.5,0,169383.8361,252782.298,3046174766,0,638461771.5,702307948.6 + 02/13 21:00:00,707214688.6,0,949167116,0,169158.1855,252445.5452,3174155235,0,496581377.8,702307948.6 + 02/13 22:00:00,773490558.7,0,1046673643,0,84435.55227,126008.558,2577762999,0,354700984.2,702307948.6 + 02/13 23:00:00,820917172.8,0,1116247581,0,84289.2564,125790.2314,2693450910,0,354700984.2,624273732.1 + 02/13 24:00:00,894851489,0,1225364360,0,42085.12969,62806.32226,2497825076,0,354700984.2,468205299.1 + 02/14 01:00:00,1044067702,0,1446586647,0,42024.76979,62716.24335,2867721996,0,212820590.5,234102649.5 + 02/14 02:00:00,564738127,0,776877672.3,0,20950.75154,31266.14229,1529596617,0,141880393.7,0 + 02/14 03:00:00,971320488.8,0,1354733398,0,20903.43091,31195.52268,2513610120,0,141880393.7,0 + 02/14 04:00:00,987123795,0,1378150430,0,20942.92942,31254.46884,2553184859,0,141880393.7,0 + 02/14 05:00:00,980758441.7,0,1367652624,0,20966.31759,31289.3725,2536531550,0,141880393.7,0 + 02/14 06:00:00,956959184.9,0,1332022831,0,21057.49359,31425.44026,2477920578,0,141880393.7,0 + 02/14 07:00:00,889653645.1,0,1231460588,0,84200.17085,125657.2833,2876601068,0,141880393.7,156068433 + 02/14 08:00:00,819092818.8,0,1094382404,0,337392.4127,503512.2086,4940731860,0,567521574.6,390171082.6 + 02/14 09:00:00,909184512.3,0,1219680041,0,295320.7692,440726.0127,4778632968,0,567521574.6,390171082.6 + 02/14 10:00:00,965788717.8,0,1340755665,0,211376.5168,315450.6528,4203122193,0,283760787.3,0 + 02/14 11:00:00,725604207.8,0,1118122318,0,169660.8248,253195.666,3366009893,0,283760787.3,0 + 02/14 12:00:00,576924294.8,0,1072125728,0,84939.15741,126760.1201,2411167422,0,283760787.3,0 + 02/14 13:00:00,470529005.1,0,1028220417,0,85072.4981,126959.1129,2262063222,0,283760787.3,0 + 02/14 14:00:00,448324198.8,0,926846636.7,0,85305.16164,127306.3315,2140572211,0,283760787.3,0 + 02/14 15:00:00,519163375.7,0,813440539.8,0,128033.3501,191072.3315,2481384369,0,283760787.3,0 + 02/14 16:00:00,684939479.6,0,810492357.3,0,213326.059,318360.0789,3409501933,0,283760787.3,0 + 02/14 17:00:00,864889120.3,0,1027375847,0,212482.1016,317100.5875,3798762648,0,354700984.2,0 + 02/14 18:00:00,1032909822,0,1450429435,0,297002.1962,443235.3134,5148194292,0,141880393.7,0 + 02/14 19:00:00,842851330.2,0,1167986206,0,295726.5537,441331.5907,4664246856,0,638461771.5,0 + 02/14 20:00:00,643838119.7,0,867195572.3,0,168578.5128,251580.4628,3023606004,0,638461771.5,702307948.6 + 02/14 21:00:00,710868142.2,0,964049821.3,0,168340.5187,251225.289,3185354872,0,496581377.8,702307948.6 + 02/14 22:00:00,763023326.8,0,1040340521,0,84229.97438,125701.761,2559118095,0,354700984.2,702307948.6 + 02/14 23:00:00,780148796.8,0,1066120742,0,84318.73434,125834.2232,2602820186,0,354700984.2,624273732.1 + 02/14 24:00:00,841324125.9,0,1157287442,0,42085.12969,62806.32226,2376220795,0,354700984.2,468205299.1 + 02/15 01:00:00,979048658.8,0,1361877302,0,42114.98719,62850.88052,2718803085,0,212820590.5,234102649.5 + 02/15 02:00:00,666758375.4,0,934374247.1,0,21079.68358,31458.55579,1790270284,0,141880393.7,0 + 02/15 03:00:00,854407563.4,0,1195905345,0,21101.6281,31491.305,2239647467,0,141880393.7,0 + 02/15 04:00:00,847956075.3,0,1185150343,0,21137.65168,31545.06528,2222764199,0,141880393.7,0 + 02/15 05:00:00,843847172.2,0,1177530946,0,21151.86678,31566.27938,2211163445,0,141880393.7,0 + 02/15 06:00:00,838225204.1,0,1168294005,0,21172.97951,31597.78725,2196493970,0,141880393.7,0 + 02/15 07:00:00,775233211.7,0,1074256202,0,84747.65569,126474.3299,2609888561,0,141880393.7,156068433 + 02/15 08:00:00,718822014.8,0,976323110.5,0,339321.6497,506391.332,4739711859,0,567521574.6,390171082.6 + 02/15 09:00:00,827881438.6,0,1127890470,0,297753.7434,444356.8952,4627370207,0,567521574.6,390171082.6 + 02/15 10:00:00,950667674.6,0,1334977267,0,213071.6634,317980.4281,4197432470,0,283760787.3,0 + 02/15 11:00:00,915845220.4,0,1295102893,0,170660.8472,254688.0631,3742204190,0,283760787.3,0 + 02/15 12:00:00,911898759.1,0,1289157234,0,85454.94653,127529.8651,2967801315,0,283760787.3,0 + 02/15 13:00:00,894117252.9,0,1265365576,0,85503.91737,127602.9474,2926667542,0,283760787.3,0 + 02/15 14:00:00,888307798.9,0,1255193927,0,85576.46953,127711.2216,2911337414,0,283760787.3,0 + 02/15 15:00:00,897780525.1,0,1264663753,0,128364.7043,191566.8324,3314197810,0,283760787.3,0 + 02/15 16:00:00,918678302.4,0,1289653597,0,214001.0289,319367.3795,4128458170,0,283760787.3,0 + 02/15 17:00:00,918572097.5,0,1284834234,0,214001.0289,319367.3795,4123532602,0,354700984.2,0 + 02/15 18:00:00,967997005.1,0,1355652908,0,299684.8126,447238.753,5012574749,0,141880393.7,0 + 02/15 19:00:00,723284363,0,989736004.2,0,299932.372,447608.2016,4404166432,0,638461771.5,0 + 02/15 20:00:00,478982150.8,0,624592028.2,0,171436.5924,255845.7572,2641790637,0,638461771.5,702307948.6 + 02/15 21:00:00,527370979.9,0,695776958.1,0,171343.0167,255706.1082,2760524788,0,496581377.8,702307948.6 + 02/15 22:00:00,592238157.5,0,791705830.7,0,85528.2222,127639.219,2151346777,0,354700984.2,702307948.6 + 02/15 23:00:00,635462953.1,0,854916056.1,0,85454.94653,127529.8651,2257124331,0,354700984.2,624273732.1 + 02/15 24:00:00,710446510,0,965308159.4,0,42639.89056,63634.22728,2058341494,0,354700984.2,468205299.1 + 02/16 01:00:00,868095317.6,0,1198584738,0,42549.40914,63499.19608,2448455034,0,212820590.5,234102649.5 + 02/16 02:00:00,388297678.5,0,522270915.2,0,21268.12453,31739.77823,1101397044,0,141880393.7,0 + 02/16 03:00:00,775641172.9,0,1081124023,0,21248.21016,31710.05875,2047414964,0,141880393.7,0 + 02/16 04:00:00,795503015.8,0,1106997529,0,21234.78935,31690.03002,2093029895,0,141880393.7,0 + 02/16 05:00:00,807027747.4,0,1122249851,0,21228.03577,31679.95122,2119746351,0,141880393.7,0 + 02/16 06:00:00,815093120.3,0,1132780049,0,21228.03577,31679.95122,2138341923,0,141880393.7,0 + 02/16 07:00:00,767675874.5,0,1061006353,0,21221.25349,31669.8296,2019090126,0,141880393.7,156068433 + 02/16 08:00:00,732080252.5,0,992673775.1,0,84830.41242,126597.833,2485895711,0,567521574.6,390171082.6 + 02/16 09:00:00,827103055.5,0,1123010524,0,212280.3577,316799.5122,3854801111,0,567521574.6,390171082.6 + 02/16 10:00:00,960121156.3,0,1344695555,0,212280.3577,316799.5122,4209504243,0,283760787.3,0 + 02/16 11:00:00,919952457.9,0,1302967195,0,212347.8935,316900.3002,4128213150,0,283760787.3,0 + 02/16 12:00:00,884829414.5,0,1270416353,0,127286.6555,189957.9914,3297326496,0,283760787.3,0 + 02/16 13:00:00,880197318.3,0,1268171607,0,127368.2146,190079.7073,3291181444,0,283760787.3,0 + 02/16 14:00:00,894548535.5,0,1279877948,0,127286.6555,189957.9914,3316507212,0,283760787.3,0 + 02/16 15:00:00,935641489.3,0,1324539558,0,127163.0323,189773.5006,3401152565,0,283760787.3,0 + 02/16 16:00:00,995933069.8,0,1397836036,0,296519.4517,442514.883,5054292711,0,283760787.3,0 + 02/16 17:00:00,1023330614,0,1430653234,0,380860.7835,568382.8298,5871260855,0,354700984.2,0 + 02/16 18:00:00,1093181459,0,1532810404,0,296026.8245,441779.7041,5282095367,0,141880393.7,0 + 02/16 19:00:00,903752124.9,0,1248489757,0,295524.433,441029.9531,4803837672,0,638461771.5,0 + 02/16 20:00:00,673643327.8,0,903702543.6,0,253219.5373,377895.66,3849360582,0,638461771.5,702307948.6 + 02/16 21:00:00,729413398.7,0,985581808.3,0,210723.141,314475.5784,3605710597,0,496581377.8,702307948.6 + 02/16 22:00:00,788342975,0,1072699917,0,168459.9488,251403.5221,3372551387,0,354700984.2,702307948.6 + 02/16 23:00:00,827372994.8,0,1130207080,0,126210.3603,188351.7675,3090003735,0,354700984.2,624273732.1 + 02/16 24:00:00,889269102.1,0,1221897417,0,84110.11367,125522.8853,2865845316,0,354700984.2,468205299.1 + 02/17 01:00:00,1023769186,0,1422141753,0,42039.94002,62738.88284,2823114701,0,212820590.5,234102649.5 + 02/17 02:00:00,504452720.5,0,682960822.9,0,21027.52842,31380.72131,1376083242,0,141880393.7,0 + 02/17 03:00:00,894333672,0,1252872594,0,21027.52842,31380.72131,2335875966,0,141880393.7,0 + 02/17 04:00:00,902061354.2,0,1261823121,0,21035.06005,31391.96125,2352621752,0,141880393.7,0 + 02/17 05:00:00,900488062.9,0,1258903195,0,21035.06005,31391.96125,2348128535,0,141880393.7,0 + 02/17 06:00:00,900917984.3,0,1259168023,0,21035.06005,31391.96125,2348823284,0,141880393.7,0 + 02/17 07:00:00,846795910.6,0,1178480000,0,21035.06005,31391.96125,2214013187,0,141880393.7,156068433 + 02/17 08:00:00,786368795.6,0,1069888685,0,21057.49359,31425.44026,2045196042,0,567521574.6,390171082.6 + 02/17 09:00:00,833202337.9,0,1129741789,0,84348.10317,125878.0522,2719758286,0,567521574.6,390171082.6 + 02/17 10:00:00,791852728.2,0,1100696070,0,127163.0323,189773.5006,3033520316,0,283760787.3,0 + 02/17 11:00:00,671385163.5,0,1002774452,0,127529.2636,190320.0509,2818417147,0,283760787.3,0 + 02/17 12:00:00,638406840.9,0,990189850.3,0,85202.9306,127153.7656,2393080798,0,283760787.3,0 + 02/17 13:00:00,669925450.1,0,1002483603,0,85430.281,127493.0551,2438933063,0,283760787.3,0 + 02/17 14:00:00,661999065.5,0,976340612.2,0,128255.8761,191404.4211,2789116747,0,283760787.3,0 + 02/17 15:00:00,686641008.6,0,995024996.1,0,170909.8931,255059.7302,3215156648,0,283760787.3,0 + 02/17 16:00:00,732643313.4,0,1044288769,0,213698.7302,318916.2399,3694345975,0,283760787.3,0 + 02/17 17:00:00,755048360.3,0,1069471201,0,256438.4762,382699.4879,4125416232,0,354700984.2,0 + 02/17 18:00:00,815357896.6,0,1161726946,0,299348.7777,446737.2666,4662994602,0,141880393.7,0 + 02/17 19:00:00,614851325.3,0,860267879.5,0,171104.8127,255350.6211,3010358766,0,638461771.5,0 + 02/17 20:00:00,377942750,0,504072642.5,0,128400.6173,191620.4277,2034091155,0,638461771.5,702307948.6 + 02/17 21:00:00,426664607.1,0,574353797.7,0,85552.40633,127675.3106,1768638186,0,496581377.8,702307948.6 + 02/17 22:00:00,485440917.2,0,660395001.4,0,85528.2222,127639.219,1913238707,0,354700984.2,702307948.6 + 02/17 23:00:00,521688031.4,0,712979709.1,0,85528.2222,127639.219,2002070529,0,354700984.2,624273732.1 + 02/17 24:00:00,574315966.3,0,789702096.2,0,85600.41155,127746.9518,2132068571,0,354700984.2,468205299.1 + 02/18 01:00:00,700209102.3,0,976400683.3,0,42823.9656,63908.9342,2060848225,0,212820590.5,234102649.5 + 02/18 02:00:00,189434484.2,0,244724138,0,21429.57405,31980.71964,626435679.5,0,141880393.7,0 + 02/18 03:00:00,580151879,0,814731229.1,0,21441.14849,31997.99291,1587264017,0,141880393.7,0 + 02/18 04:00:00,568969702.9,0,798248520.7,0,21507.9975,32097.75596,1560198936,0,141880393.7,0 + 02/18 05:00:00,584655022.9,0,818917570.8,0,21458.27943,32023.55852,1596107210,0,141880393.7,0 + 02/18 06:00:00,617868989.4,0,864916454.7,0,21429.57405,31980.71964,1675062501,0,141880393.7,0 + 02/18 07:00:00,596516508.3,0,828892211.6,0,85405.4957,127456.0664,2191710344,0,141880393.7,156068433 + 02/18 08:00:00,649068353.5,0,829979588.8,0,341220.6466,509225.3261,4540653444,0,567521574.6,390171082.6 + 02/18 09:00:00,659435737.2,0,779927707.4,0,299517.6433,446989.2756,4126788353,0,567521574.6,390171082.6 + 02/18 10:00:00,536354148.8,0,685761227.7,0,215133.6551,321057.6698,3152404146,0,283760787.3,0 + 02/18 11:00:00,395339719.3,0,658744759.6,0,172149.6166,256909.8487,2598698554,0,283760787.3,0 + 02/18 12:00:00,298111473.2,0,676811336.6,0,86074.80832,128454.9244,1747229847,0,283760787.3,0 + 02/18 13:00:00,221243910.4,0,646149319.1,0,86220.69446,128672.6395,1641009232,0,283760787.3,0 + 02/18 14:00:00,244467831,0,599070600.5,0,86281.31085,128763.1012,1617698315,0,283760787.3,0 + 02/18 15:00:00,352973734.8,0,571601682.6,0,129481.6237,193233.6824,2086350519,0,283760787.3,0 + 02/18 16:00:00,507497826.2,0,621174624.1,0,215802.7061,322056.1373,3064964287,0,283760787.3,0 + 02/18 17:00:00,650041045.8,0,763375812.4,0,215025.9811,320896.9811,3342739522,0,354700984.2,0 + 02/18 18:00:00,866602853.9,0,1223752959,0,298300.3287,445172.5993,4766858354,0,141880393.7,0 + 02/18 19:00:00,691231847.8,0,962096609.5,0,298028.8801,444767.4993,4327395423,0,638461771.5,0 + 02/18 20:00:00,456541972,0,608971929.7,0,170660.8472,254688.0631,2596769979,0,638461771.5,702307948.6 + 02/18 21:00:00,498445695.3,0,668787600.8,0,170810.9914,254912.1329,2699836543,0,496581377.8,702307948.6 + 02/18 22:00:00,564480103.7,0,764602995.5,0,85279.78111,127268.4546,2094256748,0,354700984.2,702307948.6 + 02/18 23:00:00,627904351.5,0,856708870.4,0,84966.05668,126800.2636,2246971975,0,354700984.2,624273732.1 + 02/18 24:00:00,686249390.1,0,942088815,0,42575.5543,63538.21418,2010347772,0,354700984.2,468205299.1 + 02/19 01:00:00,869708948.3,0,1213293233,0,42188.68131,62960.85895,2461540527,0,212820590.5,234102649.5 + 02/19 02:00:00,479796184.9,0,661252041.7,0,20789.46337,31025.44167,1327581885,0,141880393.7,0 + 02/19 03:00:00,871756306.6,0,1233338799,0,20981.7789,31312.44639,2293354317,0,141880393.7,0 + 02/19 04:00:00,811413886.5,0,1141102447,0,21165.97001,31587.32653,2142428201,0,141880393.7,0 + 02/19 05:00:00,777598709.3,0,1089741390,0,21200.73512,31639.20873,2057563897,0,141880393.7,0 + 02/19 06:00:00,804925115.5,0,1128967133,0,21087.02579,31469.51304,2123095789,0,141880393.7,0 + 02/19 07:00:00,735715236.2,0,1025348511,0,84857.77033,126638.661,2522450900,0,141880393.7,156068433 + 02/19 08:00:00,619846518.3,0,860590070.8,0,340604.4344,508305.7135,4536513121,0,567521574.6,390171082.6 + 02/19 09:00:00,681126316.2,0,910248228.3,0,299601.4404,447114.3313,4279551323,0,567521574.6,390171082.6 + 02/19 10:00:00,782563424.8,0,1088064070,0,214353.7661,319893.7918,3793918704,0,283760787.3,0 + 02/19 11:00:00,617329828.3,0,909817155.9,0,172276.1814,257098.7293,3072896663,0,283760787.3,0 + 02/19 12:00:00,442069521.1,0,738651586.4,0,86567.02127,129189.4851,1957444530,0,283760787.3,0 + 02/19 13:00:00,279209130.1,0,564600738,0,86947.82418,129757.7816,1623950049,0,283760787.3,0 + 02/19 14:00:00,154235133.6,0,394208756.3,0,87158.01347,130071.4604,1330469996,0,283760787.3,0 + 02/19 15:00:00,165504917.7,0,300135103,0,130510.2738,194768.8025,1636644695,0,283760787.3,0 + 02/19 16:00:00,282197138,0,292601027.3,0,217331.8294,324338.1455,2524810075,0,283760787.3,0 + 02/19 17:00:00,410971470.7,0,428474690,0,216936.1306,323747.619,2785907659,0,354700984.2,0 + 02/19 18:00:00,571726339.6,0,811621533.7,0,303233.9454,452535.3501,4104117337,0,141880393.7,0 + 02/19 19:00:00,368017002.8,0,508187004.5,0,303233.9454,452535.3501,3596973471,0,638461771.5,0 + 02/19 20:00:00,166601592,0,204726852.4,0,173097.7639,258324.8293,1924449780,0,638461771.5,702307948.6 + 02/19 21:00:00,227479790.6,0,289290110.6,0,173134.0425,258378.9702,2070216747,0,496581377.8,702307948.6 + 02/19 22:00:00,257634118.6,0,330867175.3,0,86855.25993,129619.642,1367810941,0,354700984.2,702307948.6 + 02/19 23:00:00,280263409.1,0,362585955,0,86823.3361,129572.0001,1421872574,0,354700984.2,624273732.1 + 02/19 24:00:00,318060478.2,0,417322195.2,0,43524.85103,64954.91021,1125909814,0,354700984.2,468205299.1 + 02/20 01:00:00,452846026.8,0,616943041,0,43466.36588,64867.6291,1459791450,0,212820590.5,234102649.5 + 02/20 02:00:00,84657425.85,0,102083334.3,0,21663.93859,32330.47679,381120655.5,0,141880393.7,0 + 02/20 03:00:00,454281824.4,0,639530998.5,0,21655.16363,32317.38135,1288113985,0,141880393.7,0 + 02/20 04:00:00,432209740.2,0,598632520.3,0,21659.56753,32323.95358,1225182936,0,141880393.7,0 + 02/20 05:00:00,441975541.6,0,610517802.8,0,21659.56753,32323.95358,1246834020,0,141880393.7,0 + 02/20 06:00:00,445576416.8,0,613763537.8,0,21672.58203,32343.37595,1253797403,0,141880393.7,0 + 02/20 07:00:00,395916145.2,0,537829572.8,0,86690.32813,129373.5038,1711575513,0,141880393.7,156068433 + 02/20 08:00:00,538847550.4,0,736878420.6,0,346897.4979,517697.2534,4388267076,0,567521574.6,390171082.6 + 02/20 09:00:00,645940312.6,0,887251632.4,0,303416.1485,452807.2633,4255596227,0,567521574.6,390171082.6 + 02/20 10:00:00,681403369.2,0,950060419.1,0,216768.5433,323497.5177,3576421608,0,283760787.3,0 + 02/20 11:00:00,674882163.1,0,942975654.1,0,173482.3989,258898.8447,3174430294,0,283760787.3,0 + 02/20 12:00:00,605540551.8,0,856920148.9,0,86757.89212,129474.3338,2240896714,0,283760787.3,0 + 02/20 13:00:00,589043056.4,0,836183463.1,0,86774.45226,129499.0476,2203811119,0,283760787.3,0 + 02/20 14:00:00,600673351.4,0,847711570.3,0,86917.50517,129712.5346,2228253065,0,283760787.3,0 + 02/20 15:00:00,580068434.3,0,814152673.4,0,130510.2738,194768.8025,2565225782,0,283760787.3,0 + 02/20 16:00:00,617627515,0,853443462.5,0,217517.1229,324614.6708,3422745435,0,283760787.3,0 + 02/20 17:00:00,641921539.6,0,879681480.6,0,217553.1713,324668.4682,3473600922,0,354700984.2,0 + 02/20 18:00:00,701062054.8,0,971023666.9,0,304574.4399,454535.8555,4404882785,0,141880393.7,0 + 02/20 19:00:00,455769095.6,0,604504000.7,0,304574.4399,454535.8555,3793070159,0,638461771.5,0 + 02/20 20:00:00,216961581.7,0,248406477.4,0,173984.5898,259648.2961,2026446448,0,638461771.5,702307948.6 + 02/20 21:00:00,258865696.4,0,311131468.7,0,173955.2118,259604.4534,2130811960,0,496581377.8,702307948.6 + 02/20 22:00:00,311235137.6,0,389751200.3,0,86932.73176,129735.2582,1480991102,0,354700984.2,702307948.6 + 02/20 23:00:00,345388198.4,0,440962542,0,86886.65002,129666.4875,1565942035,0,354700984.2,624273732.1 + 02/20 24:00:00,405767109.8,0,531333107.5,0,43419.68233,64797.96025,1326683731,0,354700984.2,468205299.1 + 02/21 01:00:00,539930385.1,0,731767553.5,0,43403.5872,64773.94047,1661137038,0,212820590.5,234102649.5 + 02/21 02:00:00,57782649,0,66298324.5,0,21701.7936,32386.97024,318800523.3,0,141880393.7,0 + 02/21 03:00:00,409671828.2,0,548185605,0,21713.81498,32404.91051,1152684845,0,141880393.7,0 + 02/21 04:00:00,471445907.6,0,649156182.9,0,21604.56568,32241.87082,1314449262,0,141880393.7,0 + 02/21 05:00:00,570938400.5,0,794711572.5,0,21417.87709,31963.26352,1557822079,0,141880393.7,0 + 02/21 06:00:00,693367873.8,0,971704147.3,0,21193.83871,31628.91677,1855233941,0,141880393.7,0 + 02/21 07:00:00,766308565.2,0,1073972945,0,83771.71769,125017.8754,2591924046,0,141880393.7,156068433 + 02/21 08:00:00,823863282.9,0,1134435267,0,331554.723,494800.2522,4933176461,0,567521574.6,390171082.6 + 02/21 09:00:00,1004791778,0,1380218490,0,288038.2151,429857.7929,4969435897,0,567521574.6,390171082.6 + 02/21 10:00:00,987252760.5,0,1360317322,0,205563.1097,306774.9347,4191987042,0,283760787.3,0 + 02/21 11:00:00,906880736.6,0,1396973632,0,164090.4394,244882.6247,3776157400,0,283760787.3,0 + 02/21 12:00:00,853161849.7,0,1465559755,0,81863.01352,122169.3944,3053238273,0,283760787.3,0 + 02/21 13:00:00,910602492.1,0,1579630916,0,81454.69529,121560.0351,3221086438,0,283760787.3,0 + 02/21 14:00:00,1060033304,0,1665480556,0,81492.23038,121616.0511,3456703673,0,283760787.3,0 + 02/21 15:00:00,1024909971,0,1515925862,0,122518.0035,182841.428,3640129787,0,283760787.3,0 + 02/21 16:00:00,1166539882,0,1526718000,0,204473.8246,305149.3252,4527901221,0,283760787.3,0 + 02/21 17:00:00,1313170337,0,1634716115,0,204473.8246,305149.3252,4782529791,0,354700984.2,0 + 02/21 18:00:00,1490386522,0,2091814515,0,285222.8063,425656.1789,6141365384,0,141880393.7,0 + 02/21 19:00:00,1287627993,0,1791387248,0,284695.6062,424869.4045,5633449279,0,638461771.5,0 + 02/21 20:00:00,1067899782,0,1460588362,0,162607.4847,242669.5169,3987485350,0,638461771.5,702307948.6 + 02/21 21:00:00,1123614749,0,1541555068,0,162758.7612,242895.2764,4125524352,0,496581377.8,702307948.6 + 02/21 22:00:00,1149092235,0,1578856474,0,81972.59665,122332.9323,3463448614,0,354700984.2,702307948.6 + 02/21 23:00:00,1184379931,0,1630924456,0,81567.05427,121727.7156,3547165558,0,354700984.2,624273732.1 + 02/21 24:00:00,1242503345,0,1717450100,0,40857.85343,60974.77966,3326550925,0,354700984.2,468205299.1 + 02/22 01:00:00,1353881561,0,1884154359,0,40913.15714,61057.31291,3605129613,0,212820590.5,234102649.5 + 02/22 02:00:00,830634613.6,0,1144173630,0,20484.03876,30569.63705,2158601477,0,141880393.7,0 + 02/22 03:00:00,1218510774,0,1704490802,0,20474.90681,30556.00885,3106712873,0,141880393.7,0 + 02/22 04:00:00,1226512740,0,1716623151,0,20474.90681,30556.00885,3126847187,0,141880393.7,0 + 02/22 05:00:00,1221110529,0,1708408767,0,20484.03876,30569.63705,3113312529,0,141880393.7,0 + 02/22 06:00:00,1211203064,0,1693868016,0,20502.23791,30596.7968,3089027605,0,141880393.7,0 + 02/22 07:00:00,1141503217,0,1590515227,0,82260.98305,122763.3097,3470105898,0,141880393.7,156068433 + 02/22 08:00:00,1083651095,0,1485235695,0,330592.5675,493364.3661,5535131751,0,567521574.6,390171082.6 + 02/22 09:00:00,1178939900,0,1623961911,0,290229.326,433127.7274,5406987203,0,567521574.6,390171082.6 + 02/22 10:00:00,1271944578,0,1786970743,0,208389.0697,310992.295,4928688234,0,283760787.3,0 + 02/22 11:00:00,1222015036,0,1720209760,0,167606.0123,250129.1383,4446071338,0,283760787.3,0 + 02/22 12:00:00,1152209901,0,1627924774,0,84140.24021,125567.845,3535083781,0,283760787.3,0 + 02/22 13:00:00,1037824622,0,1481984501,0,84663.88005,126349.3061,3279456593,0,283760787.3,0 + 02/22 14:00:00,936090064.4,0,1340870079,0,85098.81827,126998.3922,3040510101,0,283760787.3,0 + 02/22 15:00:00,911321696.9,0,1288471825,0,128070.8863,191128.3491,3348910769,0,283760787.3,0 + 02/22 16:00:00,938860396,0,1311531694,0,213451.4772,318547.2485,4165587502,0,283760787.3,0 + 02/22 17:00:00,956566345.6,0,1337163453,0,213698.7302,318916.2399,4211143690,0,354700984.2,0 + 02/22 18:00:00,998951801.7,0,1399331478,0,299433.4222,446863.5869,5084952512,0,141880393.7,0 + 02/22 19:00:00,740839797.3,0,1014308948,0,299850.2792,447485.6893,4445558232,0,638461771.5,0 + 02/22 20:00:00,471647878.5,0,612722852.5,0,171845.502,256455.999,2626256134,0,638461771.5,702307948.6 + 02/22 21:00:00,493166135.7,0,644923134.7,0,171977.3391,256652.748,2681157584,0,496581377.8,702307948.6 + 02/22 22:00:00,524464570.6,0,692398583.7,0,86096.02866,128486.5928,1989360592,0,354700984.2,702307948.6 + 02/22 23:00:00,537279193,0,712200697.1,0,86117.12285,128518.073,2022166595,0,354700984.2,624273732.1 + 02/22 24:00:00,582010239.5,0,779707405.6,0,43069.04534,64274.68232,1748155065,0,354700984.2,468205299.1 + 02/23 01:00:00,699517413.8,0,956341058.6,0,43130.61653,64366.56893,2042848340,0,212820590.5,234102649.5 + 02/23 02:00:00,158727842,0,183124692.2,0,21659.56753,32323.95358,536193210.1,0,141880393.7,0 + 02/23 03:00:00,513622654.4,0,697824996.3,0,21663.93859,32330.47679,1405827546,0,141880393.7,0 + 02/23 04:00:00,491144451,0,668853658.1,0,21736.95604,32439.44539,1355033154,0,141880393.7,0 + 02/23 05:00:00,454896804.5,0,615715241.8,0,21765.92898,32482.68356,1265907051,0,141880393.7,0 + 02/23 06:00:00,430836368.3,0,581600130.5,0,21776.2361,32498.06553,1207823985,0,141880393.7,0 + 02/23 07:00:00,350319080.1,0,464022420.8,0,21786.2376,32512.9914,1009818725,0,141880393.7,156068433 + 02/23 08:00:00,465144986.7,0,636709899.2,0,87144.9504,130051.9656,1883763783,0,567521574.6,390171082.6 + 02/23 09:00:00,545026651.8,0,731077122.6,0,217829.3778,325080.6687,3230579942,0,567521574.6,390171082.6 + 02/23 10:00:00,506181325.3,0,698627097.4,0,217862.376,325129.914,3159580667,0,283760787.3,0 + 02/23 11:00:00,604891543.9,0,846346830.9,0,216234.2043,322700.0896,3391401833,0,283760787.3,0 + 02/23 12:00:00,625243072.8,0,884616725.2,0,129655.9677,193493.8671,2673199203,0,283760787.3,0 + 02/23 13:00:00,655293009.1,0,926205331.8,0,129481.6237,193233.6824,2743273443,0,283760787.3,0 + 02/23 14:00:00,657499175.2,0,934886139,0,129331.0417,193008.9593,2752809318,0,283760787.3,0 + 02/23 15:00:00,617916826.7,0,877863598.8,0,129207.136,192824.047,2655092684,0,283760787.3,0 + 02/23 16:00:00,660199163.2,0,882432843.8,0,301483.3174,449922.7762,4247693944,0,283760787.3,0 + 02/23 17:00:00,719815934.3,0,940099791.4,0,387046.766,577614.566,5132696521,0,354700984.2,0 + 02/23 18:00:00,837196715.7,0,1169522153,0,300014.0367,447730.075,4698597671,0,141880393.7,0 + 02/23 19:00:00,685565918.3,0,942046059.5,0,298832.0681,445966.1479,4308885555,0,638461771.5,0 + 02/23 20:00:00,513111138.3,0,682487711.4,0,254242.9671,379422.9896,3476796294,0,638461771.5,702307948.6 + 02/23 21:00:00,572950826.3,0,769724950,0,212482.1016,317100.5875,3249173457,0,496581377.8,702307948.6 + 02/23 22:00:00,595423374.1,0,802972261.1,0,170610.3233,254612.6631,2929198386,0,354700984.2,702307948.6 + 02/23 23:00:00,602546213.8,0,813268598.6,0,128219.2381,191349.7439,2566263148,0,354700984.2,624273732.1 + 02/23 24:00:00,712148334.4,0,974357801.4,0,84663.88005,126349.3061,2446153606,0,354700984.2,468205299.1 + 02/24 01:00:00,861509519.5,0,1195564884,0,42523.0308,63459.83002,2438612703,0,212820590.5,234102649.5 + 02/24 02:00:00,400218460.7,0,544942349.8,0,21108.88807,31502.13951,1134560510,0,141880393.7,0 + 02/24 03:00:00,843957728.4,0,1187727062,0,20966.31759,31289.3725,2219805274,0,141880393.7,0 + 02/24 04:00:00,923522108.1,0,1300937723,0,20806.04338,31050.18507,2411142253,0,141880393.7,0 + 02/24 05:00:00,978363369.2,0,1378933068,0,20739.13817,30950.33816,2543378552,0,141880393.7,0 + 02/24 06:00:00,971002142.3,0,1365519576,0,20879.42419,31159.69593,2523862551,0,141880393.7,0 + 02/24 07:00:00,887590506.3,0,1238583044,0,20871.37114,31147.67785,2313442126,0,141880393.7,156068433 + 02/24 08:00:00,655100719.6,0,838846722.3,0,20966.31759,31289.3725,1682067926,0,567521574.6,390171082.6 + 02/24 09:00:00,649759446.5,0,819876577.5,0,84289.2564,125790.2314,2225922180,0,567521574.6,390171082.6 + 02/24 10:00:00,701640193.3,0,902912071.9,0,126995.8201,189523.9592,2744023471,0,283760787.3,0 + 02/24 11:00:00,543077982.4,0,872487293.8,0,127286.6555,189957.9914,2557646005,0,283760787.3,0 + 02/24 12:00:00,425551094.2,0,869283934.7,0,84966.05668,126800.2636,2057193782,0,283760787.3,0 + 02/24 13:00:00,333423509.2,0,823310812.3,0,85355.56676,127381.5543,1922587957,0,283760787.3,0 + 02/24 14:00:00,379624714.3,0,791713207,0,127726.6629,190614.6425,2317366621,0,283760787.3,0 + 02/24 15:00:00,482474577.9,0,756742773.7,0,170457.3307,254384.3425,2768647375,0,283760787.3,0 + 02/24 16:00:00,619832809.1,0,760364880.3,0,213007.3265,317884.4141,3291407955,0,283760787.3,0 + 02/24 17:00:00,766759324.4,0,910408112.1,0,255138.1848,380758.9801,3966397230,0,354700984.2,0 + 02/24 18:00:00,956848369.3,0,1346765846,0,296126.1349,441927.9113,4960608782,0,141880393.7,0 + 02/24 19:00:00,835896931.4,0,1166148170,0,167854.2312,250499.5711,3508118789,0,638461771.5,0 + 02/24 20:00:00,665140551.7,0,906967593,0,125082.3639,186668.3866,2694410847,0,638461771.5,702307948.6 + 02/24 21:00:00,714432471.1,0,977722956.3,0,83771.71769,125017.8754,2443797962,0,496581377.8,702307948.6 + 02/24 22:00:00,794880822.1,0,1095165213,0,83191.06265,124151.3268,2636478637,0,354700984.2,702307948.6 + 02/24 23:00:00,884648511.8,0,1225882318,0,82682.78642,123392.7938,2852402919,0,354700984.2,624273732.1 + 02/24 24:00:00,954754146.2,0,1327760480,0,82956.55269,123801.3527,3026843085,0,354700984.2,468205299.1 + 02/25 01:00:00,1094012301,0,1532706225,0,41461.33229,61875.38963,2998730725,0,212820590.5,234102649.5 + 02/25 02:00:00,590321036.4,0,822363242.4,0,20730.66614,30937.69482,1598690378,0,141880393.7,0 + 02/25 03:00:00,992609342.1,0,1397097281,0,20739.13817,30950.33816,2575788738,0,141880393.7,0 + 02/25 04:00:00,1018048619,0,1433208486,0,20713.65039,30912.30112,2637110530,0,141880393.7,0 + 02/25 05:00:00,1036199409,0,1457638030,0,20696.53959,30886.76558,2679537338,0,141880393.7,0 + 02/25 06:00:00,1041497073,0,1463860484,0,20722.17019,30925.01576,2691287427,0,141880393.7,0 + 02/25 07:00:00,952337546.4,0,1331520219,0,83388.24262,124445.5911,3032059567,0,141880393.7,156068433 + 02/25 08:00:00,852117442.5,0,1153268345,0,334327.2664,498937.8954,5005140369,0,567521574.6,390171082.6 + 02/25 09:00:00,892591915.3,0,1182749534,0,293636.8593,438213.0065,4710000966,0,567521574.6,390171082.6 + 02/25 10:00:00,1036558308,0,1449467695,0,210723.141,314475.5784,4376741393,0,283760787.3,0 + 02/25 11:00:00,957123149.5,0,1356517230,0,170405.8612,254307.5313,3842608592,0,283760787.3,0 + 02/25 12:00:00,787084681.2,0,1179818677,0,85072.4981,126959.1129,2730217158,0,283760787.3,0 + 02/25 13:00:00,614870330.7,0,1026559866,0,85647.93119,127817.8684,2409907076,0,283760787.3,0 + 02/25 14:00:00,607330169.7,0,981102652.3,0,85624.23218,127782.5009,2356697061,0,283760787.3,0 + 02/25 15:00:00,603550622,0,893977198.6,0,128436.3483,191673.7513,2649924179,0,283760787.3,0 + 02/25 16:00:00,705157220.6,0,897782244.8,0,213698.7302,318916.2399,3520353358,0,283760787.3,0 + 02/25 17:00:00,825782289.6,0,1009565607,0,213326.059,318360.0789,3749417993,0,354700984.2,0 + 02/25 18:00:00,996063491.9,0,1396755139,0,297097.5489,443377.6144,5058529218,0,141880393.7,0 + 02/25 19:00:00,818112355.9,0,1131900610,0,295827.0329,441481.5424,4604323838,0,638461771.5,0 + 02/25 20:00:00,650138565.5,0,877769677,0,167668.381,250222.215,3032314388,0,638461771.5,702307948.6 + 02/25 21:00:00,703329428.3,0,954414835.9,0,168696.2063,251756.1043,3171372583,0,496581377.8,702307948.6 + 02/25 22:00:00,776913251.3,0,1061627249,0,83865.27037,125157.49,2591022438,0,354700984.2,702307948.6 + 02/25 23:00:00,848571166.9,0,1165622908,0,83677.23038,124876.8659,2764988822,0,354700984.2,624273732.1 + 02/25 24:00:00,949195530.9,0,1312769405,0,41612.08676,62100.37014,2635329781,0,354700984.2,468205299.1 + 02/26 01:00:00,1154154645,0,1615087425,0,41201.52141,61487.65729,3138923113,0,212820590.5,234102649.5 + 02/26 02:00:00,652908833.2,0,891127389.6,0,20679.33439,30861.08917,1729581748,0,141880393.7,0 + 02/26 03:00:00,1055609930,0,1484834355,0,20635.91278,30796.28833,2725600209,0,141880393.7,0 + 02/26 04:00:00,1092278897,0,1538083427,0,20583.04825,30717.39522,2815043920,0,141880393.7,0 + 02/26 05:00:00,1091880177,0,1535442826,0,20662.03547,30835.27288,2812713313,0,141880393.7,0 + 02/26 06:00:00,1088176918,0,1528191373,0,20670.69661,30848.19845,2801836313,0,141880393.7,0 + 02/26 07:00:00,1006251932,0,1405994936,0,83024.04052,123902.069,3157180863,0,141880393.7,156068433 + 02/26 08:00:00,869262340.8,0,1160364155,0,334070.787,498555.1349,5027079815,0,567521574.6,390171082.6 + 02/26 09:00:00,958036504.5,0,1297190040,0,293852.5812,438534.9421,4891821628,0,567521574.6,390171082.6 + 02/26 10:00:00,1052989354,0,1480305485,0,210870.2579,314695.1304,4425330237,0,283760787.3,0 + 02/26 11:00:00,942935418.7,0,1359509517,0,169383.8361,252782.298,3822243018,0,283760787.3,0 + 02/26 12:00:00,872237194.3,0,1292194347,0,85046.06161,126919.66,2927508139,0,283760787.3,0 + 02/26 13:00:00,800568736.4,0,1226080442,0,85228.66535,127192.1712,2791364190,0,283760787.3,0 + 02/26 14:00:00,790622819.6,0,1172449465,0,85503.91737,127602.9474,2730256997,0,283760787.3,0 + 02/26 15:00:00,761111429.9,0,1091760971,0,128646.8909,191987.9575,3007157856,0,283760787.3,0 + 02/26 16:00:00,746194606.3,0,984561026.8,0,214119.828,319544.671,3651947829,0,283760787.3,0 + 02/26 17:00:00,819303975,0,1002332412,0,213071.6634,317980.4281,3733423917,0,354700984.2,0 + 02/26 18:00:00,962923679,0,1347920967,0,297753.7434,444356.8952,4982442945,0,141880393.7,0 + 02/26 19:00:00,781721611.2,0,1079739872,0,295524.433,441029.9531,4513057273,0,638461771.5,0 + 02/26 20:00:00,613144432.3,0,825978246.4,0,167792.491,250407.4323,2944642403,0,638461771.5,702307948.6 + 02/26 21:00:00,677644313.1,0,919428302.9,0,168220.2273,251045.7705,3106430208,0,496581377.8,702307948.6 + 02/26 22:00:00,747416551.9,0,1021326650,0,83865.27037,125157.49,2521225139,0,354700984.2,702307948.6 + 02/26 23:00:00,806735621.4,0,1107382004,0,83740.32537,124971.0266,2665478493,0,354700984.2,624273732.1 + 02/26 24:00:00,920348676.5,0,1273534451,0,41528.81979,61976.10553,2566500859,0,354700984.2,468205299.1 + 02/27 01:00:00,1081904318,0,1511864928,0,41595.53132,62075.66341,2966985547,0,212820590.5,234102649.5 + 02/27 02:00:00,569114085.8,0,790195142,0,20822.52479,31074.78133,1546139530,0,141880393.7,0 + 02/27 03:00:00,987825153.2,0,1387398904,0,20722.17019,30925.01576,2561153926,0,141880393.7,0 + 02/27 04:00:00,1015761939,0,1427961587,0,20756.01013,30975.51726,2629957024,0,141880393.7,0 + 02/27 05:00:00,1027738388,0,1443623610,0,20730.66614,30937.69482,2657368097,0,141880393.7,0 + 02/27 06:00:00,1034048679,0,1451170647,0,20764.4099,30988.05277,2671528191,0,141880393.7,0 + 02/27 07:00:00,985094181.6,0,1377140738,0,82854.60156,123649.2045,3105648621,0,141880393.7,156068433 + 02/27 08:00:00,851177027,0,1133336375,0,334582.1133,499318.2197,4986554601,0,567521574.6,390171082.6 + 02/27 09:00:00,829044987.9,0,1084572262,0,295625.6867,441181.0605,4566121540,0,567521574.6,390171082.6 + 02/27 10:00:00,816381669.5,0,1111383889,0,212877.7715,317691.0709,3837813391,0,283760787.3,0 + 02/27 11:00:00,647871221,0,986697875.5,0,170559.5622,254536.9091,3164916393,0,283760787.3,0 + 02/27 12:00:00,488583601.1,0,893844493.1,0,85855.71203,128127.953,2152769288,0,283760787.3,0 + 02/27 13:00:00,337927744.7,0,774726249.3,0,85988.66956,128326.374,1884188151,0,283760787.3,0 + 02/27 14:00:00,300627999.7,0,676765980,0,86031.99001,128391.0239,1749316830,0,283760787.3,0 + 02/27 15:00:00,370974049.8,0,603917219.2,0,129047.985,192586.5358,2132775544,0,283760787.3,0 + 02/27 16:00:00,505578252.9,0,594715277.9,0,214806.8775,320569.9987,3027650285,0,283760787.3,0 + 02/27 17:00:00,655545338.1,0,720298191.2,0,214353.7661,319893.7918,3299134738,0,354700984.2,0 + 02/27 18:00:00,878847568.6,0,1244017111,0,296810.2917,442948.9222,4785997850,0,141880393.7,0 + 02/27 19:00:00,654192475.6,0,911092579.2,0,298832.0681,445966.1479,4246558632,0,638461771.5,0 + 02/27 20:00:00,405698394.8,0,538334250.2,0,170711.1335,254763.1086,2475739917,0,638461771.5,702307948.6 + 02/27 21:00:00,449917905.7,0,601402734.4,0,170909.8931,255059.7302,2584811284,0,496581377.8,702307948.6 + 02/27 22:00:00,499281549.4,0,673394618.2,0,85503.91737,127602.9474,1939860881,0,354700984.2,702307948.6 + 02/27 23:00:00,539635126.1,0,732048910.9,0,85430.281,127493.0551,2038208047,0,354700984.2,624273732.1 + 02/27 24:00:00,614773769,0,842122375.6,0,42627.14113,63615.2005,1839368574,0,354700984.2,468205299.1 + 02/28 01:00:00,799450352.8,0,1114455146,0,42373.82785,63237.16493,2294105072,0,212820590.5,234102649.5 + 02/28 02:00:00,373030636.5,0,512030419.1,0,21072.3141,31447.55784,1074132595,0,141880393.7,0 + 02/28 03:00:00,790732967.7,0,1116588777,0,21027.52842,31380.72131,2095991444,0,141880393.7,0 + 02/28 04:00:00,819890691.5,0,1155859968,0,21050.04271,31414.32083,2164622368,0,141880393.7,0 + 02/28 05:00:00,880269444.8,0,1241546059,0,20863.29282,31135.62206,2309011597,0,141880393.7,0 + 02/28 06:00:00,950226342.1,0,1341747927,0,20730.66614,30937.69482,2477980369,0,141880393.7,0 + 02/28 07:00:00,948752268.6,0,1336458226,0,82045.21972,122441.3124,3021362010,0,141880393.7,156068433 + 02/28 08:00:00,764368798.3,0,973520624.8,0,331826.2108,495205.4106,4715203260,0,567521574.6,390171082.6 + 02/28 09:00:00,782951954.9,0,977947266.5,0,292980.9032,437234.0816,4389673167,0,567521574.6,390171082.6 + 02/28 10:00:00,757980432.5,0,1004130181,0,210723.141,314475.5784,3652826004,0,283760787.3,0 + 02/28 11:00:00,568453396.4,0,916892950.2,0,169770.028,253358.6368,3008609540,0,283760787.3,0 + 02/28 12:00:00,400175265.6,0,851403463.2,0,85330.4236,127344.0316,2017206767,0,283760787.3,0 + 02/28 13:00:00,285106237.2,0,790046646.6,0,85600.41155,127746.9518,1843203392,0,283760787.3,0 + 02/28 14:00:00,286953680.3,0,707332453.9,0,85741.50645,127957.5167,1763602618,0,283760787.3,0 + 02/28 15:00:00,370986570,0,612298902.4,0,128749.6766,192141.3511,2138493172,0,283760787.3,0 + 02/28 16:00:00,513766314.8,0,569846851.3,0,214468.8962,320065.6077,3007937380,0,283760787.3,0 + 02/28 17:00:00,674714336.2,0,693862841.3,0,214178.7709,319632.6352,3290298239,0,354700984.2,0 + 02/28 18:00:00,872181225.5,0,1223728846,0,298832.0681,445966.1479,4777183649,0,141880393.7,0 + 02/28 19:00:00,730611928.6,0,1013553504,0,295927.1236,441630.914,4399374368,0,638461771.5,0 + 02/28 20:00:00,546800396.2,0,735389085.3,0,169044.0188,252275.1671,2798938551,0,638461771.5,702307948.6 + 02/28 21:00:00,603658493,0,816812837.4,0,168986.6021,252189.4804,2936705227,0,496581377.8,702307948.6 + 02/28 22:00:00,656378238.3,0,893782734.8,0,84550.60673,126180.2611,2308792097,0,354700984.2,702307948.6 + 02/28 23:00:00,676378657.6,0,922792643.8,0,84719.84333,126432.8237,2359320903,0,354700984.2,624273732.1 + 02/28 24:00:00,710860282.2,0,973502392.9,0,42496.42032,63420.1175,2065662211,0,354700984.2,468205299.1 + 03/01 01:00:00,816392518,0,1130041769,0,42652.58082,63653.16577,2329134975,0,212820590.5,234102649.5 + 03/01 02:00:00,303023366.4,0,379628638,0,21394.11738,31927.8054,874610926.4,0,141880393.7,0 + 03/01 03:00:00,651229352.6,0,909064401,0,21423.74086,31972.0144,1752518472,0,141880393.7,0 + 03/01 04:00:00,658245016.4,0,913873885.7,0,21423.74086,31972.0144,1764343621,0,141880393.7,0 + 03/01 05:00:00,673382753.1,0,934999545.1,0,21394.11738,31927.8054,1800341220,0,141880393.7,0 + 03/01 06:00:00,696225350.5,0,967728543.7,0,21351.37392,31864.01661,1855529300,0,141880393.7,0 + 03/01 07:00:00,661134391.6,0,913565648.6,0,84939.15741,126760.1201,2336817439,0,141880393.7,156068433 + 03/01 08:00:00,618752175.4,0,735853405.5,0,343058.3758,511967.8866,4432700126,0,567521574.6,390171082.6 + 03/01 09:00:00,597019858.2,0,668125738.8,0,301843.5964,450460.4436,3973440141,0,567521574.6,390171082.6 + 03/01 10:00:00,418206881.7,0,507172142.5,0,217138.1498,324049.1051,2873653142,0,283760787.3,0 + 03/01 11:00:00,300660300.2,0,492555795.6,0,174042.5371,259734.7745,2354814418,0,283760787.3,0 + 03/01 12:00:00,172551417.9,0,450496425,0,87021.26854,129867.3873,1403847004,0,283760787.3,0 + 03/01 13:00:00,149900167.2,0,437589770.6,0,87091.33724,129971.9553,1368917791,0,283760787.3,0 + 03/01 14:00:00,115538999.1,0,371520871.7,0,87170.94019,130090.7518,1269201962,0,283760787.3,0 + 03/01 15:00:00,202432877.2,0,336233785.9,0,130637.0059,194957.9329,1710808443,0,283760787.3,0 + 03/01 16:00:00,311748184.1,0,304739489.6,0,217728.3431,324929.8881,2570057306,0,283760787.3,0 + 03/01 17:00:00,440842423.6,0,414906533.9,0,217553.1713,324668.4682,2807746860,0,354700984.2,0 + 03/01 18:00:00,606842397.1,0,836669136.4,0,304264.5612,454073.4037,4173528207,0,141880393.7,0 + 03/01 19:00:00,385078850.1,0,509469339.1,0,304574.4399,454535.8555,3627345252,0,638461771.5,0 + 03/01 20:00:00,155714927,0,166866456.1,0,174042.5371,259734.7745,1884179705,0,638461771.5,702307948.6 + 03/01 21:00:00,218848375.6,0,258779560.4,0,173865.4635,259470.5164,2037637464,0,496581377.8,702307948.6 + 03/01 22:00:00,302486858.7,0,382320505.5,0,86757.89212,129474.3338,1463243378,0,354700984.2,702307948.6 + 03/01 23:00:00,352226855.4,0,455151971.8,0,86757.89212,129474.3338,1585814841,0,354700984.2,624273732.1 + 03/01 24:00:00,402944606.8,0,529889062.8,0,43427.62997,64809.82102,1322488493,0,354700984.2,468205299.1 + 03/02 01:00:00,529745262.9,0,719042376.7,0,43427.62997,64809.82102,1638442463,0,212820590.5,234102649.5 + 03/02 02:00:00,52422839.75,0,49445720.61,0,21713.81498,32404.91051,296695972.1,0,141880393.7,0 + 03/02 03:00:00,407365047.9,0,533616682.6,0,21713.81498,32404.91051,1135809142,0,141880393.7,0 + 03/02 04:00:00,438550226.8,0,601892157.4,0,21689.47303,32368.58346,1235051388,0,141880393.7,0 + 03/02 05:00:00,448783042.5,0,616133341.4,0,21689.47303,32368.58346,1259525387,0,141880393.7,0 + 03/02 06:00:00,472208867.5,0,650117720.1,0,21641.75532,32297.37128,1316507443,0,141880393.7,0 + 03/02 07:00:00,426887479,0,582397986.4,0,21641.75532,32297.37128,1203466321,0,141880393.7,156068433 + 03/02 08:00:00,523234554.4,0,713818849.9,0,86757.89212,129474.3338,2015489418,0,567521574.6,390171082.6 + 03/02 09:00:00,554989825.6,0,753353913.2,0,217331.8294,324338.1455,3258355648,0,567521574.6,390171082.6 + 03/02 10:00:00,531489423,0,736748823.8,0,217331.8294,324338.1455,3218250156,0,283760787.3,0 + 03/02 11:00:00,457074494.5,0,658056260.7,0,217728.3431,324929.8881,3068700388,0,283760787.3,0 + 03/02 12:00:00,189738106.7,0,416159233.9,0,130850.2866,195276.2254,1779952784,0,283760787.3,0 + 03/02 13:00:00,144701056,0,377942426.4,0,130850.2866,195276.2254,1696698926,0,283760787.3,0 + 03/02 14:00:00,275202435.3,0,464146538.5,0,130850.2866,195276.2254,1913404417,0,283760787.3,0 + 03/02 15:00:00,317862092.4,0,479396224.5,0,130956.1517,195434.2146,1972263636,0,283760787.3,0 + 03/02 16:00:00,367540695.6,0,503414499.3,0,305098.2907,455317.6314,3608452514,0,283760787.3,0 + 03/02 17:00:00,438119431.6,0,574058319.9,0,392269.2309,585408.3832,4531817162,0,354700984.2,0 + 03/02 18:00:00,530383327.4,0,742794069.4,0,304819.6803,454901.8434,4008174882,0,141880393.7,0 + 03/02 19:00:00,349679408.7,0,474105755.4,0,304819.6803,454901.8434,3558782650,0,638461771.5,0 + 03/02 20:00:00,110168573,0,114573966.1,0,261512.8206,390272.2555,2571168813,0,638461771.5,702307948.6 + 03/02 21:00:00,164933399.9,0,193691357.1,0,217553.1713,324668.4682,2310622659,0,496581377.8,702307948.6 + 03/02 22:00:00,240393145.2,0,304544983.7,0,173865.4635,259470.5164,2104947657,0,354700984.2,702307948.6 + 03/02 23:00:00,281722682.2,0,364746559.2,0,130399.0976,194602.8873,1816476387,0,354700984.2,624273732.1 + 03/02 24:00:00,362093327.4,0,482417919.2,0,86757.89212,129474.3338,1622947260,0,354700984.2,468205299.1 + 03/03 01:00:00,510628993.6,0,702086147.5,0,43378.94606,64737.16692,1601933148,0,212820590.5,234102649.5 + 03/03 02:00:00,38242560.56,0,24105776.71,0,21713.81498,32404.91051,257175749.1,0,141880393.7,0 + 03/03 03:00:00,368881298.1,0,485443975.1,0,21713.81498,32404.91051,1049152685,0,141880393.7,0 + 03/03 04:00:00,403336701.7,0,557145149.3,0,21713.81498,32404.91051,1155309263,0,141880393.7,0 + 03/03 05:00:00,400076663.9,0,550672423.9,0,21733.18294,32433.81455,1145750279,0,141880393.7,0 + 03/03 06:00:00,399123350.1,0,548006871,0,21733.18294,32433.81455,1142131412,0,141880393.7,0 + 03/03 07:00:00,339070103.1,0,458569274.1,0,21733.18294,32433.81455,992640568.1,0,141880393.7,156068433 + 03/03 08:00:00,439772684.2,0,605641174.3,0,21772.83431,32492.98881,1240770822,0,567521574.6,390171082.6 + 03/03 09:00:00,517818466.4,0,716755555.3,0,87091.33724,129971.9553,2016001875,0,567521574.6,390171082.6 + 03/03 10:00:00,472127742,0,649985557.8,0,130850.2866,195276.2254,2296168743,0,283760787.3,0 + 03/03 11:00:00,292553677.9,0,449130103,0,130956.1517,195434.2146,1916689100,0,283760787.3,0 + 03/03 12:00:00,114584027.3,0,321903804.5,0,87420.59679,130463.3303,1220869969,0,283760787.3,0 + 03/03 13:00:00,5537584.585,0,240935313.4,0,87520.29191,130612.1117,1031749551,0,283760787.3,0 + 03/03 14:00:00,0,0,150420867.1,0,131280.4379,195918.1675,1328335846,0,283760787.3,0 + 03/03 15:00:00,0,0,64661996.94,0,174954.133,261095.2073,1634439622,0,283760787.3,0 + 03/03 16:00:00,72027452.14,0,61811831.78,0,218551.492,326158.3257,2094794628,0,283760787.3,0 + 03/03 17:00:00,305196383.7,0,206515221.4,0,261700.5732,390552.4508,2859822492,0,354700984.2,0 + 03/03 18:00:00,452548339.8,0,595195157.2,0,305317.3355,455644.5259,3787206198,0,141880393.7,0 + 03/03 19:00:00,293242662.8,0,389822454.5,0,174182.6745,259943.9105,2245920823,0,638461771.5,0 + 03/03 20:00:00,87040449.36,0,81569897.73,0,130637.0059,194957.9329,1340752127,0,638461771.5,702307948.6 + 03/03 21:00:00,127980295,0,139093022.3,0,87170.94019,130090.7518,1049215409,0,496581377.8,702307948.6 + 03/03 22:00:00,200461774,0,244351221.3,0,87021.26854,129867.3873,1225612156,0,354700984.2,702307948.6 + 03/03 23:00:00,270932086.2,0,346734923.7,0,86855.25993,129619.642,1396976657,0,354700984.2,624273732.1 + 03/03 24:00:00,346785777.9,0,457372346,0,86855.25993,129619.642,1583467771,0,354700984.2,468205299.1 + 03/04 01:00:00,485449662.9,0,662664606.3,0,43427.62997,64809.82102,1537769093,0,212820590.5,234102649.5 + 03/04 02:00:00,46315563.83,0,34740049.65,0,21663.93859,32330.47679,275435508.9,0,141880393.7,0 + 03/04 03:00:00,402816506.8,0,533101798.4,0,21663.93859,32330.47679,1130298201,0,141880393.7,0 + 03/04 04:00:00,450113262.5,0,624066412.2,0,21641.75532,32297.37128,1268360530,0,141880393.7,0 + 03/04 05:00:00,468258631.7,0,648246223.7,0,21641.75532,32297.37128,1310685711,0,141880393.7,0 + 03/04 06:00:00,477816701.6,0,660303067.7,0,21641.75532,32297.37128,1332300625,0,141880393.7,0 + 03/04 07:00:00,422984820.6,0,577933440.6,0,86567.02127,129189.4851,1777641684,0,141880393.7,156068433 + 03/04 08:00:00,558737191,0,764018078.9,0,346268.0851,516757.9405,4429648962,0,567521574.6,390171082.6 + 03/04 09:00:00,691296289.1,0,944108533.2,0,302596.8101,451584.5124,4350457583,0,567521574.6,390171082.6 + 03/04 10:00:00,714300670.3,0,1000147596,0,216140.5786,322560.366,3653771667,0,283760787.3,0 + 03/04 11:00:00,675354201.6,0,954739126.9,0,173311.5087,258643.8143,3185132492,0,283760787.3,0 + 03/04 12:00:00,544971158.1,0,843606942.3,0,86757.89212,129474.3338,2167014114,0,283760787.3,0 + 03/04 13:00:00,243338371.9,0,572081629.1,0,86757.89212,129474.3338,1593856014,0,283760787.3,0 + 03/04 14:00:00,284510981.9,0,570423232.6,0,86567.02127,129189.4851,1631657637,0,283760787.3,0 + 03/04 15:00:00,464668997.1,0,707111719.6,0,129850.5319,193784.2277,2336865851,0,283760787.3,0 + 03/04 16:00:00,579304712.4,0,813373975.3,0,216417.5532,322973.7128,3334487245,0,283760787.3,0 + 03/04 17:00:00,636015956.6,0,845769792.2,0,216417.5532,322973.7128,3423594306,0,354700984.2,0 + 03/04 18:00:00,729230770.2,0,1019464487,0,302984.5745,452163.1979,4467227237,0,141880393.7,0 + 03/04 19:00:00,507446497.2,0,693317375.2,0,302984.5745,452163.1979,3919295853,0,638461771.5,0 + 03/04 20:00:00,279260898.1,0,348699812,0,173134.0425,258378.9702,2181407556,0,638461771.5,702307948.6 + 03/04 21:00:00,328320779.5,0,418969449.7,0,173134.0425,258378.9702,2300737075,0,496581377.8,702307948.6 + 03/04 22:00:00,380633494.1,0,495449271.8,0,86567.02127,129189.4851,1652806189,0,354700984.2,702307948.6 + 03/04 23:00:00,401497436.6,0,525675737.2,0,86655.75436,129321.9072,1704692755,0,354700984.2,624273732.1 + 03/04 24:00:00,465291901.9,0,619458730.9,0,43327.87718,64660.95358,1473510423,0,354700984.2,468205299.1 + 03/05 01:00:00,598117668.5,0,814788700.5,0,43378.94606,64737.16692,1802124376,0,212820590.5,234102649.5 + 03/05 02:00:00,113335107.2,0,110438305.5,0,21689.47303,32368.58346,418382416,0,141880393.7,0 + 03/05 03:00:00,470405572.9,0,646076318.2,0,21713.81498,32404.91051,1311309303,0,141880393.7,0 + 03/05 04:00:00,469911805.8,0,641501072.9,0,21713.81498,32404.91051,1306240290,0,141880393.7,0 + 03/05 05:00:00,469661129.2,0,640455790.6,0,21713.81498,32404.91051,1304944332,0,141880393.7,0 + 03/05 06:00:00,468511955.8,0,638512474.1,0,21713.81498,32404.91051,1301851842,0,141880393.7,0 + 03/05 07:00:00,399222228.4,0,536071946.5,0,86932.73176,129735.2582,1715298939,0,141880393.7,156068433 + 03/05 08:00:00,523375614.2,0,716605633.7,0,347730.927,518941.0328,4360000303,0,567521574.6,390171082.6 + 03/05 09:00:00,625657581,0,850361505,0,304264.5612,454073.4037,4206035759,0,567521574.6,390171082.6 + 03/05 10:00:00,627661397.1,0,871168459.9,0,217553.1713,324668.4682,3450827759,0,283760787.3,0 + 03/05 11:00:00,601906466.9,0,839872893.9,0,174042.5371,259734.7745,3003377683,0,283760787.3,0 + 03/05 12:00:00,561581408.6,0,786707798.1,0,87170.94019,130090.7518,2130431298,0,283760787.3,0 + 03/05 13:00:00,519987875.2,0,733417295.6,0,87170.94019,130090.7518,2035547262,0,283760787.3,0 + 03/05 14:00:00,541574236.6,0,758201655.5,0,87170.94019,130090.7518,2081917983,0,283760787.3,0 + 03/05 15:00:00,525284273.5,0,726593566.4,0,131215.5998,195821.4055,2429211059,0,283760787.3,0 + 03/05 16:00:00,469710952,0,635466694.2,0,218692.6663,326369.0091,3067399677,0,283760787.3,0 + 03/05 17:00:00,464776388.3,0,554969971.5,0,218551.492,326158.3257,2980701704,0,354700984.2,0 + 03/05 18:00:00,524838372.2,0,701461753.8,0,306321.0217,457142.3908,3974768411,0,141880393.7,0 + 03/05 19:00:00,306672391,0,390637276.6,0,305972.0888,456621.656,3442647149,0,638461771.5,0 + 03/05 20:00:00,104756062.7,0,88987579.15,0,174608.2023,260578.9528,1760417400,0,638461771.5,702307948.6 + 03/05 21:00:00,165978488.3,0,179498490.1,0,174467.0488,260368.3005,1910884236,0,496581377.8,702307948.6 + 03/05 22:00:00,230169711.7,0,275438005.3,0,87170.94019,130090.7518,1287749808,0,354700984.2,702307948.6 + 03/05 23:00:00,286828853.4,0,358801637.5,0,87091.33724,129971.9553,1427058344,0,354700984.2,624273732.1 + 03/05 24:00:00,372725932.7,0,484064860,0,43510.63427,64933.69364,1247190373,0,354700984.2,468205299.1 + 03/06 01:00:00,541874550.8,0,733680092.8,0,43427.62997,64809.82102,1665209467,0,212820590.5,234102649.5 + 03/06 02:00:00,103635902.5,0,98917609.66,0,21663.93859,32330.47679,396933407.5,0,141880393.7,0 + 03/06 03:00:00,469513153.4,0,645672560.3,0,21689.47303,32368.58346,1309794717,0,141880393.7,0 + 03/06 04:00:00,529255950,0,730862564.4,0,21534.52267,32137.34116,1453337224,0,141880393.7,0 + 03/06 05:00:00,648602152.8,0,904685323.3,0,21307.16634,31798.04281,1744466229,0,141880393.7,0 + 03/06 06:00:00,766670948.4,0,1074972413,0,21116.12048,31512.93289,2031107954,0,141880393.7,0 + 03/06 07:00:00,720717981,0,1012670810,0,84289.2564,125790.2314,2489674947,0,141880393.7,156068433 + 03/06 08:00:00,734485426.5,0,938831005.4,0,337857.9276,504206.9263,4704749906,0,567521574.6,390171082.6 + 03/06 09:00:00,637867649,0,838057800.1,0,296225.0538,442075.5343,4133807566,0,567521574.6,390171082.6 + 03/06 10:00:00,727112651.8,0,954072331.4,0,212681.2453,317397.7823,3589469482,0,283760787.3,0 + 03/06 11:00:00,577355735.5,0,885081088.2,0,171007.8347,255205.8948,2996806250,0,283760787.3,0 + 03/06 12:00:00,414465681.1,0,807252031.8,0,85900.52887,128194.836,1992461027,0,283760787.3,0 + 03/06 13:00:00,311125588.7,0,752787448,0,86010.39245,128358.7924,1835642102,0,283760787.3,0 + 03/06 14:00:00,231000021.1,0,619506229.1,0,86360.34081,128881.0427,1625375231,0,283760787.3,0 + 03/06 15:00:00,294954981.8,0,524479057.3,0,129361.5413,193054.4758,1980131701,0,283760787.3,0 + 03/06 16:00:00,440844258.4,0,501641365.7,0,215602.5688,321757.4597,2876981727,0,283760787.3,0 + 03/06 17:00:00,661392625.9,0,616289976.9,0,215345.2267,321373.4116,3209869701,0,354700984.2,0 + 03/06 18:00:00,838478840.3,0,1126226348,0,300651.8511,448681.9261,4662306786,0,141880393.7,0 + 03/06 19:00:00,647134297.6,0,884775885.6,0,300176.0788,447971.9008,4225242910,0,638461771.5,0 + 03/06 20:00:00,450770079.5,0,589503505.5,0,171007.8347,255205.8948,2574643011,0,638461771.5,702307948.6 + 03/06 21:00:00,530177930.9,0,705009388.9,0,170711.1335,254763.1086,2766894592,0,496581377.8,702307948.6 + 03/06 22:00:00,617783077.3,0,833481037.1,0,85072.4981,126959.1129,2214577914,0,354700984.2,702307948.6 + 03/06 23:00:00,666895974,0,905043178.6,0,85072.4981,126959.1129,2335252952,0,354700984.2,624273732.1 + 03/06 24:00:00,736891344.1,0,1007874532,0,42469.57871,63380.06004,2125824576,0,354700984.2,468205299.1 + 03/07 01:00:00,890397254.3,0,1235328383,0,42387.67742,63257.83353,2506049476,0,212820590.5,234102649.5 + 03/07 02:00:00,437924716.3,0,595072826.8,0,21035.06005,31391.96125,1221734820,0,141880393.7,0 + 03/07 03:00:00,857950260.1,0,1206536391,0,21035.06005,31391.96125,2253223928,0,141880393.7,0 + 03/07 04:00:00,857953778.9,0,1202593506,0,21116.12048,31512.93289,2250011878,0,141880393.7,0 + 03/07 05:00:00,844538715.1,0,1180684182,0,21158.93241,31576.82388,2215071620,0,141880393.7,0 + 03/07 06:00:00,834441267.2,0,1164393303,0,21193.83871,31628.91677,2188996490,0,141880393.7,0 + 03/07 07:00:00,747546043.8,0,1040034546,0,84775.35484,126515.6671,2548228269,0,141880393.7,156068433 + 03/07 08:00:00,600185719.1,0,815611146.6,0,341422.267,509526.2172,4479211409,0,567521574.6,390171082.6 + 03/07 09:00:00,712169089.3,0,945148247.7,0,300176.0788,447971.9008,4350650064,0,567521574.6,390171082.6 + 03/07 10:00:00,614676493.7,0,843995831.4,0,215900.852,322202.6067,3395844777,0,283760787.3,0 + 03/07 11:00:00,458418288,0,688966491.6,0,173311.5087,258643.8143,2702423943,0,283760787.3,0 + 03/07 12:00:00,276544312.8,0,529052929.5,0,86932.73176,129735.2582,1585602006,0,283760787.3,0 + 03/07 13:00:00,259269457.4,0,510977424.5,0,87021.26854,129867.3873,1551046043,0,283760787.3,0 + 03/07 14:00:00,335805258.1,0,533249845.4,0,87304.10114,130289.4764,1652391983,0,283760787.3,0 + 03/07 15:00:00,333360920.6,0,509637931.8,0,130756.4103,195136.1277,2016211989,0,283760787.3,0 + 03/07 16:00:00,427236031.6,0,620483050.6,0,218397.8206,325928.9921,3007295608,0,283760787.3,0 + 03/07 17:00:00,418907139.8,0,598919679.3,0,218800.7298,326530.2792,2981018451,0,354700984.2,0 + 03/07 18:00:00,500435571.9,0,704155702.6,0,305972.0888,456621.656,3949928756,0,141880393.7,0 + 03/07 19:00:00,291164509.6,0,384984410.9,0,305972.0888,456621.656,3421486402,0,638461771.5,0 + 03/07 20:00:00,73671180.12,0,56936106.34,0,174718.2565,260743.1937,1698268507,0,638461771.5,702307948.6 + 03/07 21:00:00,145947837.1,0,161098961.7,0,174467.0488,260368.3005,1872454056,0,496581377.8,702307948.6 + 03/07 22:00:00,241403773.7,0,300423068.3,0,87021.26854,129867.3873,1322626003,0,354700984.2,702307948.6 + 03/07 23:00:00,315668228,0,408006116,0,86855.25993,129619.642,1502983991,0,354700984.2,624273732.1 + 03/07 24:00:00,413823366.4,0,551360689.2,0,43327.87718,64660.95358,1353943846,0,354700984.2,468205299.1 + 03/08 01:00:00,587970723.6,0,808492420.7,0,43228.11572,64512.0732,1784327824,0,212820590.5,234102649.5 + 03/08 02:00:00,145178526.3,0,181428353.7,0,21534.52267,32137.34116,519825589.8,0,141880393.7,0 + 03/08 03:00:00,576278449,0,806311306,0,21475.13222,32048.709,1575275583,0,141880393.7,0 + 03/08 04:00:00,632313487.9,0,884521828.8,0,21406.05805,31945.62521,1708901377,0,141880393.7,0 + 03/08 05:00:00,693082646.9,0,970612691.4,0,21307.16634,31798.04281,1854874091,0,141880393.7,0 + 03/08 06:00:00,761523243.1,0,1068020730,0,21193.83871,31628.91677,2019705893,0,141880393.7,0 + 03/08 07:00:00,667656873.1,0,943334202.6,0,84635.72966,126307.2955,2370385966,0,141880393.7,156068433 + 03/08 08:00:00,681320466.8,0,859966818.4,0,338542.9186,505229.182,4578866847,0,567521574.6,390171082.6 + 03/08 09:00:00,744126069.8,0,908856280.7,0,297287.0509,443660.4203,4320393247,0,567521574.6,390171082.6 + 03/08 10:00:00,659863147.3,0,842046745.9,0,213071.6634,317980.4281,3413697422,0,283760787.3,0 + 03/08 11:00:00,513524085.5,0,805597595.6,0,171007.8347,255205.8948,2853491107,0,283760787.3,0 + 03/08 12:00:00,362476866.6,0,755907083.8,0,85900.52887,128194.836,1889127264,0,283760787.3,0 + 03/08 13:00:00,252764914.8,0,699065652.9,0,86010.39245,128358.7924,1723559633,0,283760787.3,0 + 03/08 14:00:00,260285914,0,648901939.2,0,85764.59395,127991.9717,1678711489,0,283760787.3,0 + 03/08 15:00:00,333351119.8,0,581800963,0,128850.7933,192292.254,2071267053,0,283760787.3,0 + 03/08 16:00:00,460525160.5,0,544826395,0,215025.9811,320896.9811,2934674219,0,283760787.3,0 + 03/08 17:00:00,695055118.3,0,684657109.4,0,214060.5805,319456.2521,3300372825,0,354700984.2,0 + 03/08 18:00:00,878324653.4,0,1163214707,0,299684.8126,447238.753,4730464197,0,141880393.7,0 + 03/08 19:00:00,692379610.9,0,951266642.8,0,298744.4837,445835.4401,4324133979,0,638461771.5,0 + 03/08 20:00:00,493003224.1,0,650906960.6,0,170457.3307,254384.3425,2673340208,0,638461771.5,702307948.6 + 03/08 21:00:00,543964630.8,0,724398479.3,0,170711.1335,254763.1086,2800070382,0,496581377.8,702307948.6 + 03/08 22:00:00,591706123.3,0,794602145.2,0,85355.56676,127381.5543,2152161904,0,354700984.2,702307948.6 + 03/08 23:00:00,638032397.6,0,862667685.5,0,85228.66535,127192.1712,2265415095,0,354700984.2,624273732.1 + 03/08 24:00:00,697853445.1,0,950401694.9,0,42677.78338,63690.77715,2031181958,0,354700984.2,468205299.1 + 03/09 01:00:00,832171455.9,0,1148947905,0,42677.78338,63690.77715,2364046179,0,212820590.5,234102649.5 + 03/09 02:00:00,365304813.2,0,489076590.2,0,21268.12453,31739.77823,1045209853,0,141880393.7,0 + 03/09 03:00:00,759870253.3,0,1059283915,0,21268.12453,31739.77823,2009982619,0,141880393.7,0 + 03/09 04:00:00,788683865.1,0,1098637844,0,21234.78935,31690.03002,2077851059,0,141880393.7,0 + 03/09 05:00:00,816177273.1,0,1136704366,0,21193.83871,31628.91677,2143043559,0,141880393.7,0 + 03/09 06:00:00,841830935.5,0,1172364921,0,21158.93241,31576.82388,2204044579,0,141880393.7,0 + 03/09 07:00:00,792666257.5,0,1098682779,0,21158.93241,31576.82388,2081197759,0,141880393.7,156068433 + 03/09 08:00:00,742060673.3,0,1008399964,0,84775.35484,126515.6671,2511108316,0,567521574.6,390171082.6 + 03/09 09:00:00,864410894.1,0,1176982316,0,211938.3871,316289.1677,3943012407,0,567521574.6,390171082.6 + 03/09 10:00:00,1027889405,0,1438710734,0,211589.3241,315768.2388,4365087366,0,283760787.3,0 + 03/09 11:00:00,1005738841,0,1413114851,0,211938.3871,316289.1677,4320472889,0,283760787.3,0 + 03/09 12:00:00,984282458.8,0,1387358326,0,127163.0323,189773.5006,3512612303,0,283760787.3,0 + 03/09 13:00:00,967467522.4,0,1365165777,0,127408.7361,190140.1801,3475809398,0,283760787.3,0 + 03/09 14:00:00,963437285.8,0,1357275356,0,127408.7361,190140.1801,3463888740,0,283760787.3,0 + 03/09 15:00:00,976988462.7,0,1371947054,0,127408.7361,190140.1801,3492111615,0,283760787.3,0 + 03/09 16:00:00,989971872.2,0,1384551834,0,297753.7434,444356.8952,5046122005,0,283760787.3,0 + 03/09 17:00:00,990148632.2,0,1378994225,0,382826.2415,571316.0081,5804054955,0,354700984.2,0 + 03/09 18:00:00,1051350411,0,1466804532,0,297753.7434,444356.8952,5189753242,0,141880393.7,0 + 03/09 19:00:00,850761028.4,0,1166345513,0,297753.7434,444356.8952,4688704840,0,638461771.5,0 + 03/09 20:00:00,596556752.5,0,787324623.2,0,255685.996,381576.5137,3678026411,0,638461771.5,702307948.6 + 03/09 21:00:00,621897310.3,0,825367045.3,0,213388.9169,318453.8858,3361898445,0,496581377.8,702307948.6 + 03/09 22:00:00,672529522.6,0,901248838.7,0,170457.3307,254384.3425,3103208385,0,354700984.2,702307948.6 + 03/09 23:00:00,703770738.7,0,948197030.7,0,127842.998,190788.2569,2799040287,0,354700984.2,624273732.1 + 03/09 24:00:00,757283281.6,0,1028087784,0,85228.66535,127192.1712,2550086077,0,354700984.2,468205299.1 + 03/10 01:00:00,888531820.7,0,1223733605,0,42614.33267,63596.08562,2494622931,0,212820590.5,234102649.5 + 03/10 02:00:00,399154628.4,0,534655540.8,0,21268.12453,31739.77823,1124638619,0,141880393.7,0 + 03/10 03:00:00,785610294.5,0,1093440016,0,21268.12453,31739.77823,2069878760,0,141880393.7,0 + 03/10 04:00:00,805863941.2,0,1120457502,0,21234.78935,31690.03002,2116850793,0,141880393.7,0 + 03/10 05:00:00,828782130.6,0,1152884874,0,21193.83871,31628.91677,2171828924,0,141880393.7,0 + 03/10 06:00:00,851685456.9,0,1185374477,0,21158.93241,31576.82388,2226908657,0,141880393.7,0 + 03/10 07:00:00,720745160.4,0,1015006759,0,21158.93241,31576.82388,1925600642,0,141880393.7,156068433 + 03/10 08:00:00,612851963.2,0,828893571.9,0,21193.83871,31628.91677,1631907455,0,567521574.6,390171082.6 + 03/10 09:00:00,619271470.5,0,823294474.8,0,84939.15741,126760.1201,2204683344,0,567521574.6,390171082.6 + 03/10 10:00:00,674642022.2,0,887345623.7,0,127608.7472,190438.6694,2706958345,0,283760787.3,0 + 03/10 11:00:00,538184697.3,0,826565048.7,0,127842.998,190788.2569,2511822264,0,283760787.3,0 + 03/10 12:00:00,527755978.1,0,899458991.7,0,85072.4981,126959.1129,2190528769,0,283760787.3,0 + 03/10 13:00:00,585721565.6,0,968269835.8,0,85228.66535,127192.1712,2318706413,0,283760787.3,0 + 03/10 14:00:00,562491244.8,0,896012537.7,0,127842.998,190788.2569,2605576300,0,283760787.3,0 + 03/10 15:00:00,633197559.8,0,941212574.2,0,170144.9962,253918.2258,3101037733,0,283760787.3,0 + 03/10 16:00:00,783862331.1,0,1101175205,0,212681.2453,317397.7823,3793322035,0,283760787.3,0 + 03/10 17:00:00,892894049,0,1234625422,0,254817.4722,380280.3603,4413871668,0,354700984.2,0 + 03/10 18:00:00,1006814971,0,1413583151,0,297287.0509,443660.4203,5087809019,0,141880393.7,0 + 03/10 19:00:00,827281864.4,0,1144125067,0,169878.3148,253520.2402,3495641729,0,638461771.5,0 + 03/10 20:00:00,588908037.2,0,785048446.7,0,127608.7472,190438.6694,2518927183,0,638461771.5,702307948.6 + 03/10 21:00:00,645245148,0,866004078.5,0,84939.15741,126760.1201,2273366625,0,496581377.8,702307948.6 + 03/10 22:00:00,706362505.7,0,955137263.4,0,84939.15741,126760.1201,2423617168,0,354700984.2,702307948.6 + 03/10 23:00:00,739565009.8,0,1003113231,0,84939.15741,126760.1201,2504795640,0,354700984.2,624273732.1 + 03/10 24:00:00,798669181.6,0,1089921883,0,84939.15741,126760.1201,2650708463,0,354700984.2,468205299.1 + 03/11 01:00:00,933489519.2,0,1289931340,0,42469.57871,63380.06004,2604479559,0,212820590.5,234102649.5 + 03/11 02:00:00,428716532.2,0,572863588.4,0,21234.78935,31690.03002,1192109470,0,141880393.7,0 + 03/11 03:00:00,825309719,0,1150861764,0,21193.83871,31628.91677,2166333403,0,141880393.7,0 + 03/11 04:00:00,844639334.7,0,1176115195,0,21193.83871,31628.91677,2210916450,0,141880393.7,0 + 03/11 05:00:00,860537754.2,0,1197965093,0,21158.93241,31576.82388,2248351570,0,141880393.7,0 + 03/11 06:00:00,871381981.5,0,1212761808,0,21158.93241,31576.82388,2273992512,0,141880393.7,0 + 03/11 07:00:00,765118519.2,0,1067683349,0,84635.72966,126307.2955,2592196759,0,141880393.7,156068433 + 03/11 08:00:00,629313250.3,0,844146143,0,338542.9186,505229.182,4511038956,0,567521574.6,390171082.6 + 03/11 09:00:00,617624251.9,0,802901444.4,0,297753.7434,444356.8952,4092123995,0,567521574.6,390171082.6 + 03/11 10:00:00,697345627.1,0,899835499.1,0,212681.2453,317397.7823,3505465625,0,283760787.3,0 + 03/11 11:00:00,574323405.7,0,892600861.9,0,170457.3307,254384.3425,2996354291,0,283760787.3,0 + 03/11 12:00:00,425767846.7,0,862581119.9,0,85503.91737,127602.9474,2055533680,0,283760787.3,0 + 03/11 13:00:00,328459833.1,0,830342129.1,0,85503.91737,127602.9474,1925986675,0,283760787.3,0 + 03/11 14:00:00,276709797.9,0,715910336.1,0,85764.59395,127991.9717,1762143770,0,283760787.3,0 + 03/11 15:00:00,328294322.2,0,588980668.3,0,128646.8909,191987.9575,2071560445,0,283760787.3,0 + 03/11 16:00:00,468448315.9,0,546260237.1,0,214060.5805,319456.2521,2935369150,0,283760787.3,0 + 03/11 17:00:00,704197314.8,0,660878686.2,0,213388.9169,318453.8858,3279710091,0,354700984.2,0 + 03/11 18:00:00,899957740.9,0,1166271853,0,297287.0509,443660.4203,4733640491,0,141880393.7,0 + 03/11 19:00:00,721188182.7,0,994249612.9,0,296713.7419,442804.8347,4377704671,0,638461771.5,0 + 03/11 20:00:00,548926417.2,0,733725969.4,0,168280.4804,251135.69,2792550600,0,638461771.5,702307948.6 + 03/11 21:00:00,613992806.9,0,827476772.9,0,168928.9638,252103.4631,2957186317,0,496581377.8,702307948.6 + 03/11 22:00:00,700022957.1,0,953248624.4,0,83957.88034,125295.6977,2406584463,0,354700984.2,702307948.6 + 03/11 23:00:00,797447550.3,0,1095330450,0,83453.17127,124542.4882,2641562374,0,354700984.2,624273732.1 + 03/11 24:00:00,904541928.7,0,1251674252,0,41628.5929,62125.0033,2529729127,0,354700984.2,468205299.1 + 03/12 01:00:00,1064267231,0,1486914190,0,41628.5929,62125.0033,2924694367,0,212820590.5,234102649.5 + 03/12 02:00:00,577991381.2,0,803711154.1,0,20772.78541,31000.55208,1568086550,0,141880393.7,0 + 03/12 03:00:00,990058156.3,0,1390789301,0,20772.78541,31000.55208,2567231472,0,141880393.7,0 + 03/12 04:00:00,1017471813,0,1430033664,0,20772.78541,31000.55208,2633889492,0,141880393.7,0 + 03/12 05:00:00,1026657476,0,1441310067,0,20772.78541,31000.55208,2654351558,0,141880393.7,0 + 03/12 06:00:00,1045579491,0,1467710385,0,20722.17019,30925.01576,2699219746,0,141880393.7,0 + 03/12 07:00:00,924732911.5,0,1304021066,0,83091.14165,124002.2083,2974290038,0,141880393.7,156068433 + 03/12 08:00:00,736638649.4,0,960174543.5,0,334454.8945,499128.363,4697712920,0,567521574.6,390171082.6 + 03/12 09:00:00,646097339.1,0,859300592.8,0,295625.6867,441181.0605,4157902222,0,567521574.6,390171082.6 + 03/12 10:00:00,674130591.5,0,891791574,0,213071.6634,317980.4281,3477709695,0,283760787.3,0 + 03/12 11:00:00,624389055.8,0,922297829.2,0,171007.8347,255205.8948,3081056311,0,283760787.3,0 + 03/12 12:00:00,505400908.3,0,821160351,0,86010.39245,128358.7924,2098290325,0,283760787.3,0 + 03/12 13:00:00,501049302,0,811862852.2,0,86138.09068,128549.3646,2085786993,0,283760787.3,0 + 03/12 14:00:00,436648950,0,721916056.8,0,86360.34081,128881.0427,1933433988,0,283760787.3,0 + 03/12 15:00:00,475120876.8,0,713914383.6,0,129540.5112,193321.564,2351338731,0,283760787.3,0 + 03/12 16:00:00,518094085.6,0,689682111.8,0,216140.5786,322560.366,3147099598,0,283760787.3,0 + 03/12 17:00:00,626634227.8,0,729306386.3,0,215602.5688,321757.4597,3290436717,0,354700984.2,0 + 03/12 18:00:00,773101628.7,0,1045514708,0,301036.3736,449255.7735,4519668067,0,141880393.7,0 + 03/12 19:00:00,572950426.3,0,785019710.5,0,301036.3736,449255.7735,4059021866,0,638461771.5,0 + 03/12 20:00:00,360899127.9,0,465605054.4,0,171801.0577,256389.672,2367990810,0,638461771.5,702307948.6 + 03/12 21:00:00,436283692.9,0,575012795.7,0,171529.1879,255983.9433,2550343761,0,496581377.8,702307948.6 + 03/12 22:00:00,508429389.7,0,680083806.4,0,85764.59395,127991.9717,1958036832,0,354700984.2,702307948.6 + 03/12 23:00:00,571759578.8,0,771358850.1,0,85503.91737,127602.9474,2110303142,0,354700984.2,624273732.1 + 03/12 24:00:00,649693757.2,0,885159504.9,0,42751.95869,63801.47369,1918445619,0,354700984.2,468205299.1 + 03/13 01:00:00,792058825.9,0,1095283987,0,42751.95869,63801.47369,2270935170,0,212820590.5,234102649.5 + 03/13 02:00:00,337855445.3,0,435683955.5,0,21307.16634,31798.04281,964718153.7,0,141880393.7,0 + 03/13 03:00:00,724941613.1,0,1015395194,0,21307.16634,31798.04281,1931515560,0,141880393.7,0 + 03/13 04:00:00,756492032.4,0,1055859185,0,21268.12453,31739.77823,2003179667,0,141880393.7,0 + 03/13 05:00:00,783923478,0,1093732192,0,21234.78935,31690.03002,2068185020,0,141880393.7,0 + 03/13 06:00:00,831749059.9,0,1162213022,0,21116.12048,31512.93289,2183426674,0,141880393.7,0 + 03/13 07:00:00,663059008.8,0,956594769.6,0,84289.2564,125790.2314,2375939934,0,141880393.7,156068433 + 03/13 08:00:00,666555561.4,0,818628858.9,0,339756.6296,507040.4803,4533654016,0,567521574.6,390171082.6 + 03/13 09:00:00,705487779,0,838000013.7,0,298300.3287,445172.5993,4219990334,0,567521574.6,390171082.6 + 03/13 10:00:00,627165226.4,0,798034659.5,0,213759.7934,319007.3685,3343161669,0,283760787.3,0 + 03/13 11:00:00,480638198.7,0,753632047.8,0,171529.1879,255983.9433,2773317519,0,283760787.3,0 + 03/13 12:00:00,309322238.1,0,687808737,0,86138.09068,128549.3646,1770005814,0,283760787.3,0 + 03/13 13:00:00,195721116.6,0,640229618.3,0,86241.02753,128702.9839,1609749176,0,283760787.3,0 + 03/13 14:00:00,160992044.8,0,554634745.5,0,86241.02753,128702.9839,1489425231,0,283760787.3,0 + 03/13 15:00:00,226832552,0,440093153.3,0,129540.5112,193321.564,1829229176,0,283760787.3,0 + 03/13 16:00:00,367924685.1,0,408175241.1,0,215900.852,322202.6067,2713272378,0,283760787.3,0 + 03/13 17:00:00,593180422.7,0,519866940.3,0,215345.2267,321373.4116,3045234461,0,354700984.2,0 + 03/13 18:00:00,809218639.2,0,1019684203,0,299684.8126,447238.753,4517827679,0,141880393.7,0 + 03/13 19:00:00,634983641.3,0,871313984.4,0,299684.8126,447238.753,4195222462,0,638461771.5,0 + 03/13 20:00:00,459478630.1,0,605897859.9,0,170144.9962,253918.2258,2592004089,0,638461771.5,702307948.6 + 03/13 21:00:00,530241994.7,0,707632521,0,170457.3307,254384.3425,2767304539,0,496581377.8,702307948.6 + 03/13 22:00:00,584117322.7,0,786300783.4,0,85228.66535,127192.1712,2135133118,0,354700984.2,702307948.6 + 03/13 23:00:00,666742813,0,907356668.3,0,84635.72966,126307.2955,2333494372,0,354700984.2,624273732.1 + 03/13 24:00:00,738274326.1,0,1012055279,0,42469.57871,63380.06004,2131388305,0,354700984.2,468205299.1 + 03/14 01:00:00,901140137.8,0,1252459567,0,42232.24095,63025.86578,2532528889,0,212820590.5,234102649.5 + 03/14 02:00:00,436551902.1,0,591671055.9,0,21072.3141,31447.55784,1217294497,0,141880393.7,0 + 03/14 03:00:00,827041992.6,0,1160968879,0,21116.12048,31512.93289,2177475464,0,141880393.7,0 + 03/14 04:00:00,839234664.6,0,1175072764,0,21116.12048,31512.93289,2203772021,0,141880393.7,0 + 03/14 05:00:00,849067761.8,0,1187575981,0,21116.12048,31512.93289,2226108335,0,141880393.7,0 + 03/14 06:00:00,825776502.4,0,1151646685,0,21234.78935,31690.03002,2167952537,0,141880393.7,0 + 03/14 07:00:00,707728932,0,984302835.1,0,85072.4981,126959.1129,2455345567,0,141880393.7,156068433 + 03/14 08:00:00,593808388.3,0,830386820.3,0,341422.267,509526.2172,4487609752,0,567521574.6,390171082.6 + 03/14 09:00:00,625830538.2,0,874632951.2,0,299263.7108,446610.3159,4185609985,0,567521574.6,390171082.6 + 03/14 10:00:00,704930645.6,0,986439895,0,214411.4849,319979.9291,3615179631,0,283760787.3,0 + 03/14 11:00:00,600878195.4,0,881365080.8,0,172020.7849,256717.5849,3025701407,0,283760787.3,0 + 03/14 12:00:00,501679865.3,0,801696369,0,86138.09068,128549.3646,2076251073,0,283760787.3,0 + 03/14 13:00:00,408839698.3,0,738514912.6,0,86241.02753,128702.9839,1921153052,0,283760787.3,0 + 03/14 14:00:00,463073569.9,0,745707696.4,0,86138.09068,128549.3646,1981656106,0,283760787.3,0 + 03/14 15:00:00,535904415.8,0,797745776,0,129207.136,192824.047,2492962451,0,283760787.3,0 + 03/14 16:00:00,678910079,0,967491338.8,0,214751.3222,320487.09,3573259702,0,283760787.3,0 + 03/14 17:00:00,766272816.8,0,1085884708,0,214751.3222,320487.09,3779015808,0,354700984.2,0 + 03/14 18:00:00,852770240.5,0,1208621020,0,300651.8511,448681.9261,4758992858,0,141880393.7,0 + 03/14 19:00:00,633286601.5,0,874977727.5,0,300651.8511,448681.9261,4205865927,0,638461771.5,0 + 03/14 20:00:00,417304995.1,0,547265713.6,0,171801.0577,256389.672,2506057336,0,638461771.5,702307948.6 + 03/14 21:00:00,468668635.3,0,617232417,0,172020.7849,256717.5849,2629359184,0,496581377.8,702307948.6 + 03/14 22:00:00,507765970.2,0,671785344.7,0,86241.02753,128702.9839,1953349756,0,354700984.2,702307948.6 + 03/14 23:00:00,521374376.5,0,690257197.8,0,86360.34081,128881.0427,1986500555,0,354700984.2,624273732.1 + 03/14 24:00:00,568880237.7,0,760187092.8,0,43180.17041,64440.52135,1716501821,0,354700984.2,468205299.1 + 03/15 01:00:00,687052640.7,0,936386970.3,0,43228.11572,64512.0732,2011304291,0,212820590.5,234102649.5 + 03/15 02:00:00,177198988.3,0,209634222.9,0,21614.05786,32256.0366,580765551.2,0,141880393.7,0 + 03/15 03:00:00,546553460.8,0,745382986.7,0,21641.75532,32297.37128,1486117303,0,141880393.7,0 + 03/15 04:00:00,538408281.3,0,737852184.8,0,21641.75532,32297.37128,1470441322,0,141880393.7,0 + 03/15 05:00:00,527499406.8,0,721666291,0,21663.93859,32330.47679,1443545593,0,141880393.7,0 + 03/15 06:00:00,519747866.3,0,710593429.7,0,21641.75532,32297.37128,1424522152,0,141880393.7,0 + 03/15 07:00:00,443308385.2,0,598611194.9,0,86655.75436,129321.9072,1819439162,0,141880393.7,156068433 + 03/15 08:00:00,549696169,0,732215829.7,0,347730.927,518941.0328,4401931054,0,567521574.6,390171082.6 + 03/15 09:00:00,596766563.1,0,789685930.3,0,304819.6803,454901.8434,4121449979,0,567521574.6,390171082.6 + 03/15 10:00:00,454120840,0,615895394.5,0,218260.2528,325723.691,3028358432,0,283760787.3,0 + 03/15 11:00:00,272163592.6,0,423298450.9,0,174467.0488,260368.3005,2260869301,0,283760787.3,0 + 03/15 12:00:00,410753989.6,0,607581708.5,0,87091.33724,129971.9553,1799763551,0,283760787.3,0 + 03/15 13:00:00,397945895.7,0,597058542,0,87233.52442,130184.1503,1777708067,0,283760787.3,0 + 03/15 14:00:00,311380457.8,0,515024310.2,0,87233.52442,130184.1503,1609108397,0,283760787.3,0 + 03/15 15:00:00,341269980.7,0,509564535.4,0,130756.4103,195136.1277,2024047653,0,283760787.3,0 + 03/15 16:00:00,453294332.1,0,614444632,0,217553.1713,324668.4682,3019736866,0,283760787.3,0 + 03/15 17:00:00,520036613.9,0,634660197,0,217553.1713,324668.4682,3106694713,0,354700984.2,0 + 03/15 18:00:00,635252285.4,0,858260537.3,0,304264.5612,454073.4037,4223529496,0,141880393.7,0 + 03/15 19:00:00,444611200.7,0,597347129.7,0,303652.6224,453160.1685,3766484378,0,638461771.5,0 + 03/15 20:00:00,231128109.9,0,276288570,0,173515.7842,258948.6677,2064288707,0,638461771.5,702307948.6 + 03/15 21:00:00,314248454.1,0,397458690.3,0,172912.4629,258048.2928,2263165865,0,496581377.8,702307948.6 + 03/15 22:00:00,422018044.4,0,555850609.2,0,86138.09068,128549.3646,1750743493,0,354700984.2,702307948.6 + 03/15 23:00:00,524842498.3,0,705812730.7,0,85624.23218,127782.5009,1998919468,0,354700984.2,624273732.1 + 03/15 24:00:00,643642431,0,878341785.2,0,42677.78338,63690.77715,1904911034,0,354700984.2,468205299.1 + 03/16 01:00:00,835716210,0,1160133142,0,42469.57871,63380.06004,2376908051,0,212820590.5,234102649.5 + 03/16 02:00:00,399548399.4,0,543945055.7,0,21158.93241,31576.82388,1133342178,0,141880393.7,0 + 03/16 03:00:00,826198526,0,1160405633,0,21072.3141,31447.55784,2175675698,0,141880393.7,0 + 03/16 04:00:00,866508229,0,1214422371,0,21072.3141,31447.55784,2270002139,0,141880393.7,0 + 03/16 05:00:00,891165244.1,0,1247611543,0,21035.06005,31391.96125,2327514064,0,141880393.7,0 + 03/16 06:00:00,920725700.7,0,1288689391,0,20989.47008,31323.92444,2397743312,0,141880393.7,0 + 03/16 07:00:00,839896443.6,0,1174030241,0,20989.47008,31323.92444,2202254904,0,141880393.7,156068433 + 03/16 08:00:00,689043157.5,0,903168845.4,0,84140.24021,125567.845,2347161110,0,567521574.6,390171082.6 + 03/16 09:00:00,671380124.8,0,882938978.7,0,210723.141,314475.5784,3445034493,0,567521574.6,390171082.6 + 03/16 10:00:00,792935419.5,0,1043947073,0,211161.2048,315129.3289,3731528414,0,283760787.3,0 + 03/16 11:00:00,654501608.8,0,991582967.2,0,211938.3871,316289.1677,3547703773,0,283760787.3,0 + 03/16 12:00:00,495312029.4,0,930504816.7,0,127608.7472,190438.6694,2570787546,0,283760787.3,0 + 03/16 13:00:00,412519611.5,0,895402613,0,128033.3501,191072.3315,2456702678,0,283760787.3,0 + 03/16 14:00:00,381601281.1,0,803746055.8,0,128255.8761,191404.4211,2336124407,0,283760787.3,0 + 03/16 15:00:00,404233007.5,0,666670519.9,0,128436.3483,191673.7513,2223299886,0,283760787.3,0 + 03/16 16:00:00,544419066,0,638255034.4,0,299263.7108,446610.3159,3867820596,0,283760787.3,0 + 03/16 17:00:00,764874476.2,0,725193922.9,0,384100.0504,573216.9944,4936409760,0,354700984.2,0 + 03/16 18:00:00,952744376,0,1181431295,0,297287.0509,443660.4203,4801586567,0,141880393.7,0 + 03/16 19:00:00,823969543.4,0,1128859048,0,296225.0538,442075.5343,4610710708,0,638461771.5,0 + 03/16 20:00:00,625850014.4,0,831828083.6,0,253393.4457,378155.1947,3731253204,0,638461771.5,702307948.6 + 03/16 21:00:00,714709377.2,0,962150815,0,210350.6005,313919.6125,3564232959,0,496581377.8,702307948.6 + 03/16 22:00:00,792302858.4,0,1076291876,0,168280.4804,251135.69,3378492949,0,354700984.2,702307948.6 + 03/16 23:00:00,855440131.6,0,1168056197,0,125704.5093,187596.8537,3151381236,0,354700984.2,624273732.1 + 03/16 24:00:00,946873201.2,0,1302229294,0,83613.72362,124782.0907,2999327427,0,354700984.2,468205299.1 + 03/17 01:00:00,1118483504,0,1555756121,0,41628.5929,62125.0033,3047752572,0,212820590.5,234102649.5 + 03/17 02:00:00,629535247.7,0,863401575.6,0,20772.78541,31000.55208,1679320838,0,141880393.7,0 + 03/17 03:00:00,1052371031,0,1473561005,0,20722.17019,30925.01576,2711861905,0,141880393.7,0 + 03/17 04:00:00,1089656962,0,1527714638,0,20670.69661,30848.19845,2802839622,0,141880393.7,0 + 03/17 05:00:00,1115964746,0,1564528722,0,20627.15908,30783.22462,2865570849,0,141880393.7,0 + 03/17 06:00:00,1110300255,0,1554533454,0,20722.17019,30925.01576,2850763578,0,141880393.7,0 + 03/17 07:00:00,909752806.9,0,1310751057,0,20529.37341,30637.29284,2404703863,0,141880393.7,156068433 + 03/17 08:00:00,747592373.2,0,911642826.1,0,20814.29645,31062.50165,1845991673,0,567521574.6,390171082.6 + 03/17 09:00:00,684172943.2,0,871204898.9,0,83957.88034,125295.6977,2308690723,0,567521574.6,390171082.6 + 03/17 10:00:00,740974423.6,0,965507354.3,0,126953.5945,189460.9433,2845574114,0,283760787.3,0 + 03/17 11:00:00,646648570.9,0,959075917,0,126953.5945,189460.9433,2744816824,0,283760787.3,0 + 03/17 12:00:00,674897766.2,0,1035908184,0,84939.15741,126760.1201,2472923350,0,283760787.3,0 + 03/17 13:00:00,567728035,0,942087717.8,0,85072.4981,126959.1129,2273129553,0,283760787.3,0 + 03/17 14:00:00,725138641.1,0,1073562433,0,127408.7361,190140.1801,2941877173,0,283760787.3,0 + 03/17 15:00:00,825731546.5,0,1187604495,0,169878.3148,253520.2402,3537570840,0,283760787.3,0 + 03/17 16:00:00,831865685.5,0,1171874631,0,212681.2453,317397.7823,3912024816,0,283760787.3,0 + 03/17 17:00:00,872506751.6,0,1224626076,0,254817.4722,380280.3603,4383485025,0,354700984.2,0 + 03/17 18:00:00,962471253,0,1346288601,0,296713.7419,442804.8347,4971026730,0,141880393.7,0 + 03/17 19:00:00,821823082.7,0,1146837218,0,168280.4804,251135.69,3478558515,0,638461771.5,0 + 03/17 20:00:00,636487703.7,0,867273634.6,0,125704.5093,187596.8537,2631646245,0,638461771.5,702307948.6 + 03/17 21:00:00,706464941.5,0,968166248.8,0,83803.00617,125064.5692,2426554461,0,496581377.8,702307948.6 + 03/17 22:00:00,784635781.7,0,1081008275,0,83613.72362,124782.0907,2615868988,0,354700984.2,702307948.6 + 03/17 23:00:00,835762004.8,0,1153394876,0,83613.72362,124782.0907,2739381812,0,354700984.2,624273732.1 + 03/17 24:00:00,921978836.3,0,1278368183,0,83257.18579,124250.0066,2947372912,0,354700984.2,468205299.1 + 03/18 01:00:00,1062193362,0,1485201895,0,41726.58564,62271.24412,2921787443,0,212820590.5,234102649.5 + 03/18 02:00:00,581002487.3,0,808767017.3,0,20772.78541,31000.55208,1576153520,0,141880393.7,0 + 03/18 03:00:00,991147817.3,0,1393932471,0,20772.78541,31000.55208,2571464303,0,141880393.7,0 + 03/18 04:00:00,1026852681,0,1444627320,0,20722.17019,30925.01576,2657409870,0,141880393.7,0 + 03/18 05:00:00,1054469512,0,1482644384,0,20670.69661,30848.19845,2722581918,0,141880393.7,0 + 03/18 06:00:00,1017657288,0,1427050606,0,20863.29282,31135.62206,2631903988,0,141880393.7,0 + 03/18 07:00:00,874971295.2,0,1232844702,0,83453.17127,124542.4882,2856600371,0,141880393.7,156068433 + 03/18 08:00:00,736010322.8,0,945082035.9,0,335831.5213,501182.791,4694343883,0,567521574.6,390171082.6 + 03/18 09:00:00,749670520.1,0,922907765.7,0,296225.0538,442075.5343,4330460403,0,567521574.6,390171082.6 + 03/18 10:00:00,795382146.8,0,1046741629,0,212347.8935,316900.3002,3747417273,0,283760787.3,0 + 03/18 11:00:00,629748956.5,0,948443508.8,0,170457.3307,254384.3425,3107622489,0,283760787.3,0 + 03/18 12:00:00,477712161.9,0,881464900.3,0,85355.56676,127381.5543,2125030698,0,283760787.3,0 + 03/18 13:00:00,377462667.8,0,801445659.3,0,85764.59395,127991.9717,1948431963,0,283760787.3,0 + 03/18 14:00:00,460068908.9,0,808814650.9,0,86010.39245,128358.7924,2040612625,0,283760787.3,0 + 03/18 15:00:00,405927503.3,0,646621145.6,0,129361.5413,193054.4758,2213246311,0,283760787.3,0 + 03/18 16:00:00,498457932.9,0,619627886.4,0,215345.2267,321373.4116,3050272917,0,283760787.3,0 + 03/18 17:00:00,604610228.8,0,594667139.6,0,216417.5532,322973.7128,3141085926,0,354700984.2,0 + 03/18 18:00:00,766149034.1,0,941193431.4,0,301036.3736,449255.7735,4408394195,0,141880393.7,0 + 03/18 19:00:00,621016154.6,0,844413612.2,0,299684.8126,447238.753,4154354603,0,638461771.5,0 + 03/18 20:00:00,426993473.1,0,552926168.1,0,171007.8347,255205.8948,2514289067,0,638461771.5,702307948.6 + 03/18 21:00:00,472468399.4,0,618957880,0,171529.1879,255983.9433,2630473552,0,496581377.8,702307948.6 + 03/18 22:00:00,534435859.9,0,710075694.8,0,85624.23218,127782.5009,2012775794,0,354700984.2,702307948.6 + 03/18 23:00:00,589241052.6,0,790156113.5,0,85503.91737,127602.9474,2146581879,0,354700984.2,624273732.1 + 03/18 24:00:00,658983706.8,0,892602045.9,0,42751.95869,63801.47369,1935178109,0,354700984.2,468205299.1 + 03/19 01:00:00,809688697.8,0,1115766519,0,42677.78338,63690.77715,2308382034,0,212820590.5,234102649.5 + 03/19 02:00:00,339330232.7,0,441749800.6,0,21338.89169,31845.38858,972543442.3,0,141880393.7,0 + 03/19 03:00:00,719373872.7,0,1002827035,0,21307.16634,31798.04281,1913379660,0,141880393.7,0 + 03/19 04:00:00,740338217.8,0,1029814360,0,21307.16634,31798.04281,1961331330,0,141880393.7,0 + 03/19 05:00:00,769547278.5,0,1071235906,0,21234.78935,31690.03002,2031312534,0,141880393.7,0 + 03/19 06:00:00,778326211.1,0,1083434363,0,21268.12453,31739.77823,2052589024,0,141880393.7,0 + 03/19 07:00:00,559892790.4,0,806109024.6,0,85228.66535,127192.1712,2130716827,0,141880393.7,156068433 + 03/19 08:00:00,552190739.8,0,653734545.4,0,345441.3633,515524.1708,4305401208,0,567521574.6,390171082.6 + 03/19 09:00:00,545706520.4,0,678747248,0,303295.1403,452626.6751,3945772304,0,567521574.6,390171082.6 + 03/19 10:00:00,410658597.8,0,517727782.1,0,217138.1498,324049.1051,2876660498,0,283760787.3,0 + 03/19 11:00:00,256643745.8,0,428943134.2,0,173865.4635,259470.5164,2245596408,0,283760787.3,0 + 03/19 12:00:00,128548776.4,0,412466578.9,0,86932.73176,129735.2582,1321020119,0,283760787.3,0 + 03/19 13:00:00,41087031.33,0,388253448.2,0,86932.73176,129735.2582,1209345243,0,283760787.3,0 + 03/19 14:00:00,65771178.34,0,357287898.2,0,86932.73176,129735.2582,1203063840,0,283760787.3,0 + 03/19 15:00:00,174077001.1,0,339745679.7,0,130282.8899,194429.4631,1682787151,0,283760787.3,0 + 03/19 16:00:00,304575313.4,0,345670526.8,0,217138.1498,324049.1051,2598519958,0,283760787.3,0 + 03/19 17:00:00,466376247,0,412521618.7,0,217331.8294,324338.1455,2828909775,0,354700984.2,0 + 03/19 18:00:00,605192335,0,777846703.5,0,304264.5612,454073.4037,4113055712,0,141880393.7,0 + 03/19 19:00:00,390037413.4,0,522367678.7,0,304574.4399,454535.8555,3645202155,0,638461771.5,0 + 03/19 20:00:00,171058397.3,0,193551032.9,0,173865.4635,259470.5164,1924618958,0,638461771.5,702307948.6 + 03/19 21:00:00,229713130.4,0,278375729.9,0,173865.4635,259470.5164,2068098388,0,496581377.8,702307948.6 + 03/19 22:00:00,296281255.2,0,376082124.1,0,86855.25993,129619.642,1451673026,0,354700984.2,702307948.6 + 03/19 23:00:00,337917219.4,0,436633661.3,0,86855.25993,129619.642,1553860528,0,354700984.2,624273732.1 + 03/19 24:00:00,409299300.5,0,541615794.2,0,43378.94606,64737.16692,1340133101,0,354700984.2,468205299.1 + 03/20 01:00:00,561039842.1,0,767006910.2,0,43327.87718,64660.95358,1716806543,0,212820590.5,234102649.5 + 03/20 02:00:00,81082144.98,0,79729608.77,0,21663.93859,32330.47679,355191649.1,0,141880393.7,0 + 03/20 03:00:00,462887976.5,0,636334813.9,0,21663.93859,32330.47679,1293602686,0,141880393.7,0 + 03/20 04:00:00,480821297,0,664264869.4,0,21641.75532,32297.37128,1339267022,0,141880393.7,0 + 03/20 05:00:00,492549073.7,0,680111244,0,21641.75532,32297.37128,1366841173,0,141880393.7,0 + 03/20 06:00:00,507589773.8,0,701426360.5,0,21614.05786,32256.0366,1402948474,0,141880393.7,0 + 03/20 07:00:00,416578469.7,0,577167144.2,0,86456.23145,129024.1464,1769474974,0,141880393.7,156068433 + 03/20 08:00:00,526612147.9,0,721294361.3,0,345824.9258,516096.5856,4350823950,0,567521574.6,390171082.6 + 03/20 09:00:00,577625912.4,0,768130699.8,0,303652.6224,453160.1685,4070282659,0,567521574.6,390171082.6 + 03/20 10:00:00,459589991.8,0,614189565.3,0,217331.8294,324338.1455,3023791467,0,283760787.3,0 + 03/20 11:00:00,406202117.1,0,597205688,0,174042.5371,259734.7745,2565006127,0,283760787.3,0 + 03/20 12:00:00,298276716.5,0,509802070.8,0,87091.33724,129971.9553,1589506640,0,283760787.3,0 + 03/20 13:00:00,219080427.9,0,455259137.8,0,87021.26854,129867.3873,1455138727,0,283760787.3,0 + 03/20 14:00:00,230787764.7,0,453440477.8,0,86932.73176,129735.2582,1464233006,0,283760787.3,0 + 03/20 15:00:00,280337364.4,0,461126059.9,0,130136.8382,194211.5008,1909117445,0,283760787.3,0 + 03/20 16:00:00,399156765.1,0,551353157.3,0,216894.7303,323685.8346,2896599956,0,283760787.3,0 + 03/20 17:00:00,496764342,0,599370553.6,0,216639.3859,323304.7679,3039933849,0,354700984.2,0 + 03/20 18:00:00,645850213.9,0,795879804.4,0,302596.8101,451584.5124,4156782779,0,141880393.7,0 + 03/20 19:00:00,471829483.4,0,643189738.2,0,302261.1928,451083.6494,3827060654,0,638461771.5,0 + 03/20 20:00:00,270172536.8,0,338433522,0,172482.0551,257405.9677,2156202941,0,638461771.5,702307948.6 + 03/20 21:00:00,332301817.4,0,427487079.7,0,172482.0551,257405.9677,2307385779,0,496581377.8,702307948.6 + 03/20 22:00:00,381529789.7,0,499340464.2,0,86360.34081,128881.0427,1655739234,0,354700984.2,702307948.6 + 03/20 23:00:00,413052351.9,0,545003404,0,86360.34081,128881.0427,1732924736,0,354700984.2,624273732.1 + 03/20 24:00:00,476911475,0,638877591.6,0,43180.17041,64440.52135,1503223557,0,354700984.2,468205299.1 + 03/21 01:00:00,615160612.6,0,843909442.5,0,43180.17041,64440.52135,1846504545,0,212820590.5,234102649.5 + 03/21 02:00:00,138783829.9,0,165514239.9,0,21560.25688,32175.74597,497747680,0,141880393.7,0 + 03/21 03:00:00,539534288.9,0,750497911.1,0,21534.52267,32137.34116,1483250910,0,141880393.7,0 + 03/21 04:00:00,578877138.1,0,805309266.6,0,21475.13222,32048.709,1576872233,0,141880393.7,0 + 03/21 05:00:00,611176731.5,0,851062600.6,0,21441.14849,31997.99291,1654620241,0,141880393.7,0 + 03/21 06:00:00,612997009.7,0,852807915.8,0,21475.13222,32048.709,1658490754,0,141880393.7,0 + 03/21 07:00:00,399362242.7,0,582560231.7,0,85900.52887,128194.836,1752665788,0,141880393.7,156068433 + 03/21 08:00:00,455679392.5,0,588567907.7,0,344964.1101,514811.9355,4139441064,0,567521574.6,390171082.6 + 03/21 09:00:00,495448688.1,0,628225143.4,0,302596.8101,451584.5124,3838726592,0,567521574.6,390171082.6 + 03/21 10:00:00,418633173.3,0,536385554,0,216417.5532,322973.7128,2896827285,0,283760787.3,0 + 03/21 11:00:00,295434975.8,0,487423295.9,0,173311.5087,258643.8143,2337897435,0,283760787.3,0 + 03/21 12:00:00,175830833.9,0,457163664.6,0,86757.89212,129474.3338,1411430512,0,283760787.3,0 + 03/21 13:00:00,97202505.91,0,427279029.1,0,86855.25993,129619.642,1303791182,0,283760787.3,0 + 03/21 14:00:00,30046859.03,0,314466818,0,86855.25993,129619.642,1123823324,0,283760787.3,0 + 03/21 15:00:00,76194234.64,0,207912651.7,0,130399.0976,194602.8873,1454114032,0,283760787.3,0 + 03/21 16:00:00,224771416,0,213914949.8,0,217138.1498,324049.1051,2386960484,0,283760787.3,0 + 03/21 17:00:00,439407610.6,0,327555036,0,216639.3859,323304.7679,2710761600,0,354700984.2,0 + 03/21 18:00:00,612545514.5,0,719531990.7,0,302984.5745,452163.1979,4050609486,0,141880393.7,0 + 03/21 19:00:00,441971209.8,0,593999414.7,0,302596.8101,451584.5124,3751023385,0,638461771.5,0 + 03/21 20:00:00,250318497.4,0,304209742,0,172720.6816,257762.0854,2104266201,0,638461771.5,702307948.6 + 03/21 21:00:00,319631838.6,0,402953926.9,0,172720.6816,257762.0854,2272323727,0,496581377.8,702307948.6 + 03/21 22:00:00,386046031.3,0,499908007,0,86360.34081,128881.0427,1660823019,0,354700984.2,702307948.6 + 03/21 23:00:00,428542270.5,0,561730647.4,0,86360.34081,128881.0427,1765141899,0,354700984.2,624273732.1 + 03/21 24:00:00,494187321.8,0,658238142.7,0,43180.17041,64440.52135,1539859955,0,354700984.2,468205299.1 + 03/22 01:00:00,631897422.1,0,862839406.2,0,43180.17041,64440.52135,1882171319,0,212820590.5,234102649.5 + 03/22 02:00:00,148719476.4,0,184621066.8,0,21560.25688,32175.74597,526790153.5,0,141880393.7,0 + 03/22 03:00:00,541341974.3,0,748425318.7,0,21560.25688,32175.74597,1483216903,0,141880393.7,0 + 03/22 04:00:00,552624150.4,0,763362632.7,0,21560.25688,32175.74597,1509436393,0,141880393.7,0 + 03/22 05:00:00,559160207.2,0,771954910.5,0,21560.25688,32175.74597,1524564728,0,141880393.7,0 + 03/22 06:00:00,562224306.1,0,776394007.6,0,21560.25688,32175.74597,1532067924,0,141880393.7,0 + 03/22 07:00:00,471751882,0,643237958.9,0,86360.34081,128881.0427,1889858821,0,141880393.7,156068433 + 03/22 08:00:00,515264471.8,0,685317016.9,0,346268.0851,516757.9405,4307475181,0,567521574.6,390171082.6 + 03/22 09:00:00,474173515.7,0,622899193.2,0,303652.6224,453160.1685,3821598756,0,567521574.6,390171082.6 + 03/22 10:00:00,425942078.9,0,560396793.4,0,217138.1498,324049.1051,2934612990,0,283760787.3,0 + 03/22 11:00:00,342299936.7,0,516802148.4,0,173865.4635,259470.5164,2419111613,0,283760787.3,0 + 03/22 12:00:00,167888250.3,0,391464685.4,0,87233.52442,130184.1503,1342056564,0,283760787.3,0 + 03/22 13:00:00,82164042.27,0,331382340.7,0,87304.10114,130289.4764,1196883262,0,283760787.3,0 + 03/22 14:00:00,49837168.45,0,223095893.2,0,87359.12823,130371.5968,1056763672,0,283760787.3,0 + 03/22 15:00:00,78209050.38,0,182503439.8,0,130956.1517,195434.2146,1435717809,0,283760787.3,0 + 03/22 16:00:00,294432556.5,0,421332436.4,0,218083.811,325460.3756,2672524065,0,283760787.3,0 + 03/22 17:00:00,387610668.9,0,556058976.9,0,218083.811,325460.3756,2900428718,0,354700984.2,0 + 03/22 18:00:00,482585775.9,0,668064031.7,0,305098.2907,455317.6314,3888147127,0,141880393.7,0 + 03/22 19:00:00,305163367.6,0,421866286.3,0,304574.4399,454535.8555,3459826717,0,638461771.5,0 + 03/22 20:00:00,127937888.7,0,151098189.3,0,173710.5199,259239.2841,1837655372,0,638461771.5,702307948.6 + 03/22 21:00:00,225210337.9,0,288435980,0,173311.5087,258643.8143,2068685481,0,496581377.8,702307948.6 + 03/22 22:00:00,328830862.5,0,436915262.6,0,86456.23145,129024.1464,1541475485,0,354700984.2,702307948.6 + 03/22 23:00:00,410475013.3,0,553198871.3,0,86241.02753,128702.9839,1737472326,0,354700984.2,624273732.1 + 03/22 24:00:00,517147852.4,0,707024691.3,0,43005.19622,64179.39622,1610037076,0,354700984.2,468205299.1 + 03/23 01:00:00,699486042.1,0,973464380.2,0,42882.29697,63995.98583,2057712240,0,212820590.5,234102649.5 + 03/23 02:00:00,229282920.5,0,305564649.6,0,21375.97934,31900.73685,726643748.4,0,141880393.7,0 + 03/23 03:00:00,674184854.5,0,950735389.5,0,21338.89169,31845.38858,1816383653,0,141880393.7,0 + 03/23 04:00:00,712679357.9,0,999868160.2,0,21307.16634,31798.04281,1903726271,0,141880393.7,0 + 03/23 05:00:00,754646840.5,0,1058035155,0,21234.78935,31690.03002,2003211345,0,141880393.7,0 + 03/23 06:00:00,769077175.9,0,1094487368,0,21193.83871,31628.91677,2053726464,0,141880393.7,0 + 03/23 07:00:00,540182448,0,736322743.3,0,21193.83871,31628.91677,1466667111,0,141880393.7,156068433 + 03/23 08:00:00,586338169,0,703074347.8,0,85503.91737,127602.9474,2056597230,0,567521574.6,390171082.6 + 03/23 09:00:00,602058772,0,705638597.3,0,214751.3222,320487.09,3234555653,0,567521574.6,390171082.6 + 03/23 10:00:00,456545675.1,0,542235383.9,0,215900.852,322202.6067,2935953511,0,283760787.3,0 + 03/23 11:00:00,318866042.7,0,494038554.5,0,216140.5786,322560.366,2752227998,0,283760787.3,0 + 03/23 12:00:00,181979090.1,0,472188423.5,0,129850.5319,193784.2277,1819252648,0,283760787.3,0 + 03/23 13:00:00,76049072.37,0,421527876.1,0,129850.5319,193784.2277,1662662083,0,283760787.3,0 + 03/23 14:00:00,40828012.78,0,314228932.1,0,129850.5319,193784.2277,1520142079,0,283760787.3,0 + 03/23 15:00:00,50683900.98,0,166596027.5,0,130136.8382,194211.5008,1384933949,0,283760787.3,0 + 03/23 16:00:00,116856710.6,0,62123504.63,0,303652.6224,453160.1685,2903506262,0,283760787.3,0 + 03/23 17:00:00,272999905.9,0,74127487.35,0,390410.5145,582634.5023,3850089454,0,354700984.2,0 + 03/23 18:00:00,507270268.7,0,474401696,0,301843.5964,450460.4436,3689966508,0,141880393.7,0 + 03/23 19:00:00,395969208.8,0,537072626.1,0,301483.3174,449922.7762,3638103772,0,638461771.5,0 + 03/23 20:00:00,228679105.6,0,285176396.2,0,257701.5866,384584.5081,2826085443,0,638461771.5,702307948.6 + 03/23 21:00:00,331537164.3,0,431967889.4,0,214060.5805,319456.2521,2684165651,0,496581377.8,702307948.6 + 03/23 22:00:00,421480514.4,0,559622486.1,0,171248.4644,255565.0017,2517631478,0,354700984.2,702307948.6 + 03/23 23:00:00,505620016.1,0,681176813.9,0,127842.998,190788.2569,2333869348,0,354700984.2,624273732.1 + 03/23 24:00:00,603361966.4,0,822793711.1,0,85228.66535,127192.1712,2190870689,0,354700984.2,468205299.1 + 03/24 01:00:00,767792498.9,0,1064183405,0,42536.24905,63479.55645,2213632804,0,212820590.5,234102649.5 + 03/24 02:00:00,300206651.5,0,380007543.8,0,21268.12453,31739.77823,871042645.2,0,141880393.7,0 + 03/24 03:00:00,698600566.8,0,981558776.8,0,21234.78935,31690.03002,1870688693,0,141880393.7,0 + 03/24 04:00:00,746794153.1,0,1046131971,0,21158.93241,31576.82388,1982774847,0,141880393.7,0 + 03/24 05:00:00,776499659.4,0,1087614297,0,21158.93241,31576.82388,2053962679,0,141880393.7,0 + 03/24 06:00:00,779998878.1,0,1108964396,0,21116.12048,31512.93289,2078427867,0,141880393.7,0 + 03/24 07:00:00,539629345,0,736769399,0,21158.93241,31576.82388,1466247467,0,141880393.7,156068433 + 03/24 08:00:00,556378385.4,0,682061885.2,0,21406.05805,31945.62521,1430506330,0,567521574.6,390171082.6 + 03/24 09:00:00,562783887.6,0,696376226.5,0,86010.39245,128358.7924,2030889180,0,567521574.6,390171082.6 + 03/24 10:00:00,395962976.1,0,498925513.6,0,129684.3472,193536.2196,2058482530,0,283760787.3,0 + 03/24 11:00:00,246141872.4,0,396225571.4,0,129983.6315,193982.8607,1808646816,0,283760787.3,0 + 03/24 12:00:00,183933173.6,0,392596491.3,0,86757.89212,129474.3338,1354965678,0,283760787.3,0 + 03/24 13:00:00,255826579.1,0,464855983.9,0,86855.25993,129619.642,1499992210,0,283760787.3,0 + 03/24 14:00:00,232879806.8,0,416291026.3,0,130399.0976,194602.8873,1819177979,0,283760787.3,0 + 03/24 15:00:00,289381013.5,0,448513890.6,0,173865.4635,259470.5164,2297904432,0,283760787.3,0 + 03/24 16:00:00,269852989.9,0,364841560.5,0,217927.3505,325226.8796,2590049779,0,283760787.3,0 + 03/24 17:00:00,294045188.3,0,263356788.7,0,261274.0117,389915.8658,2901685536,0,354700984.2,0 + 03/24 18:00:00,482028339.9,0,499864419.8,0,303993.4098,453668.7472,3709476525,0,141880393.7,0 + 03/24 19:00:00,358813395,0,480090216.4,0,173311.5087,258643.8143,2393942774,0,638461771.5,0 + 03/24 20:00:00,158288635.9,0,180357893.6,0,129983.6315,193982.8607,1504925902,0,638461771.5,702307948.6 + 03/24 21:00:00,237370542,0,292316429.2,0,86456.23145,129024.1464,1305416331,0,496581377.8,702307948.6 + 03/24 22:00:00,303851566.6,0,388316073.5,0,86567.02127,129189.4851,1468891063,0,354700984.2,702307948.6 + 03/24 23:00:00,339667475.3,0,439709996.2,0,86567.02127,129189.4851,1556100894,0,354700984.2,624273732.1 + 03/24 24:00:00,405601837.9,0,536187121.4,0,86567.02127,129189.4851,1718512382,0,354700984.2,468205299.1 + 03/25 01:00:00,553829726.8,0,756157556.9,0,43228.11572,64512.0732,1697851964,0,212820590.5,234102649.5 + 03/25 02:00:00,82453585.66,0,81430227.3,0,21614.05786,32256.0366,357816153,0,141880393.7,0 + 03/25 03:00:00,436491969.4,0,597780995.7,0,21689.47303,32368.58346,1228881968,0,141880393.7,0 + 03/25 04:00:00,421476603.6,0,576356839.3,0,21713.81498,32404.91051,1192660855,0,141880393.7,0 + 03/25 05:00:00,445139718.1,0,610092753.2,0,21663.93859,32330.47679,1249612367,0,141880393.7,0 + 03/25 06:00:00,456896667.4,0,638640280.1,0,21641.75532,32297.37128,1289717803,0,141880393.7,0 + 03/25 07:00:00,243277471.6,0,317038955.5,0,86855.25993,129619.642,1339626074,0,141880393.7,156068433 + 03/25 08:00:00,222582563,0,325982831.6,0,348365.3489,519887.821,3674276807,0,567521574.6,390171082.6 + 03/25 09:00:00,261296506.7,0,204274825,0,305564.354,456013.1674,3207250409,0,567521574.6,390171082.6 + 03/25 10:00:00,197194585.6,0,206222217.7,0,218692.6663,326369.0091,2365638835,0,283760787.3,0 + 03/25 11:00:00,101342553.3,0,183823542.4,0,174954.133,261095.2073,1854943721,0,283760787.3,0 + 03/25 12:00:00,9661664.078,0,164926050.5,0,87477.0665,130547.6036,959476527,0,283760787.3,0 + 03/25 13:00:00,71024975.56,0,230131511.3,0,87520.29191,130612.1117,1086433140,0,283760787.3,0 + 03/25 14:00:00,107023801,0,237429208.3,0,87477.0665,130547.6036,1129341822,0,283760787.3,0 + 03/25 15:00:00,165234404.2,0,277174599.9,0,131038.6924,195557.3953,1618154920,0,283760787.3,0 + 03/25 16:00:00,252042504,0,343910843.2,0,218397.8206,325928.9921,2555529873,0,283760787.3,0 + 03/25 17:00:00,318526215,0,354911398,0,218260.2528,325723.691,2631779811,0,354700984.2,0 + 03/25 18:00:00,468273028.1,0,537265802.1,0,305317.3355,455644.5259,3745001531,0,141880393.7,0 + 03/25 19:00:00,286449712.3,0,379409053.4,0,305098.2907,455317.6314,3403356085,0,638461771.5,0 + 03/25 20:00:00,96815383.42,0,93581381.79,0,174042.5371,259734.7745,1751995087,0,638461771.5,702307948.6 + 03/25 21:00:00,185270555.1,0,220385261.2,0,173710.5199,259239.2841,1964275111,0,496581377.8,702307948.6 + 03/25 22:00:00,282911773.3,0,362398418.6,0,86655.75436,129321.9072,1422829773,0,354700984.2,702307948.6 + 03/25 23:00:00,339985004.6,0,444605638.2,0,86655.75436,129321.9072,1562110224,0,354700984.2,624273732.1 + 03/25 24:00:00,428664448.2,0,573969608.8,0,43228.11572,64512.0732,1390498737,0,354700984.2,468205299.1 + 03/26 01:00:00,604545797.9,0,833486513.6,0,43120.51377,64351.49194,1824931532,0,212820590.5,234102649.5 + 03/26 02:00:00,152137354.9,0,184106677.1,0,21502.59811,32089.69811,529176298.3,0,141880393.7,0 + 03/26 03:00:00,568054252.7,0,791042945.1,0,21475.13222,32048.709,1551783026,0,141880393.7,0 + 03/26 04:00:00,588010644,0,821185950.4,0,21475.13222,32048.709,1601882423,0,141880393.7,0 + 03/26 05:00:00,569350918.5,0,791646188.7,0,21560.25688,32175.74597,1554446717,0,141880393.7,0 + 03/26 06:00:00,556893030.4,0,778497892.2,0,21534.52267,32137.34116,1528609632,0,141880393.7,0 + 03/26 07:00:00,482603216,0,667452177.7,0,86010.39245,128358.7924,1921784459,0,141880393.7,156068433 + 03/26 08:00:00,613984260.6,0,839221101.2,0,343602.1155,512779.3441,4536178616,0,567521574.6,390171082.6 + 03/26 09:00:00,609201699.9,0,862421472.6,0,299684.8126,447238.753,4160548009,0,567521574.6,390171082.6 + 03/26 10:00:00,838392617.2,0,1178812883,0,213759.7934,319007.3685,3935167284,0,283760787.3,0 + 03/26 11:00:00,850815107.3,0,1205307072,0,171007.8347,255205.8948,3590491606,0,283760787.3,0 + 03/26 12:00:00,858311849.3,0,1219836642,0,85355.56676,127381.5543,2844002127,0,283760787.3,0 + 03/26 13:00:00,870799663,0,1238141805,0,85355.56676,127381.5543,2874795104,0,283760787.3,0 + 03/26 14:00:00,873148780.8,0,1237171412,0,85503.91737,127602.9474,2877504906,0,283760787.3,0 + 03/26 15:00:00,865202107.9,0,1219333806,0,128646.8909,191987.9575,3238821368,0,283760787.3,0 + 03/26 16:00:00,865220293.2,0,1212859706,0,214751.3222,320487.09,4004938283,0,283760787.3,0 + 03/26 17:00:00,862795723.6,0,1201604676,0,215025.9811,320896.9811,3993723064,0,354700984.2,0 + 03/26 18:00:00,912919243.2,0,1271825330,0,301483.3174,449922.7762,4889806510,0,141880393.7,0 + 03/26 19:00:00,670212800.9,0,908380595.6,0,301483.3174,449922.7762,4283655333,0,638461771.5,0 + 03/26 20:00:00,424656301.8,0,542245160.7,0,172276.1814,257098.7293,2512651141,0,638461771.5,702307948.6 + 03/26 21:00:00,463685019.1,0,600652752.9,0,172276.1814,257098.7293,2610087450,0,496581377.8,702307948.6 + 03/26 22:00:00,520374974.9,0,685810019.8,0,86010.39245,128358.7924,1977914060,0,354700984.2,702307948.6 + 03/26 23:00:00,553449544,0,735170426,0,86010.39245,128358.7924,2060349036,0,354700984.2,624273732.1 + 03/26 24:00:00,615116602.9,0,826837584.1,0,42950.26444,64097.41801,1827325844,0,354700984.2,468205299.1 + 03/27 01:00:00,749733836.2,0,1027409749,0,42950.26444,64097.41801,2162515242,0,212820590.5,234102649.5 + 03/27 02:00:00,244852338.6,0,304111201.6,0,21475.13222,32048.709,741649368.6,0,141880393.7,0 + 03/27 03:00:00,643931840.4,0,895790033.5,0,21441.14849,31997.99291,1732102783,0,141880393.7,0 + 03/27 04:00:00,661204152.1,0,915200718.8,0,21441.14849,31997.99291,1768785780,0,141880393.7,0 + 03/27 05:00:00,677631018.1,0,938292673.2,0,21406.05805,31945.62521,1807989751,0,141880393.7,0 + 03/27 06:00:00,675671507.5,0,950415230.3,0,21375.97934,31900.73685,1817882916,0,141880393.7,0 + 03/27 07:00:00,533820337.5,0,732849216.8,0,85503.91737,127602.9474,2033854267,0,141880393.7,156068433 + 03/27 08:00:00,612692980.1,0,814707564.3,0,341422.267,509526.2172,4490815088,0,567521574.6,390171082.6 + 03/27 09:00:00,569414910.4,0,776591851.5,0,298744.4837,445835.4401,4026494487,0,567521574.6,390171082.6 + 03/27 10:00:00,862532482.3,0,1210961146,0,213388.9169,318453.8858,3988127718,0,283760787.3,0 + 03/27 11:00:00,836123098.6,0,1191488471,0,170711.1335,254763.1086,3559318842,0,283760787.3,0 + 03/27 12:00:00,756518596.1,0,1127634344,0,85624.23218,127782.5009,2652417179,0,283760787.3,0 + 03/27 13:00:00,580782581.2,0,985892729.1,0,85624.23218,127782.5009,2334939549,0,283760787.3,0 + 03/27 14:00:00,658653518.2,0,1019207716,0,85624.23218,127782.5009,2446125473,0,283760787.3,0 + 03/27 15:00:00,794605475.6,0,1142336547,0,128255.8761,191404.4211,3087719092,0,283760787.3,0 + 03/27 16:00:00,862622960.4,0,1193230476,0,214060.5805,319456.2521,3976514034,0,283760787.3,0 + 03/27 17:00:00,833147616.6,0,1030132052,0,214411.4849,319979.9291,3787088759,0,354700984.2,0 + 03/27 18:00:00,950950519.3,0,1174250801,0,299684.8126,447238.753,4814126157,0,141880393.7,0 + 03/27 19:00:00,750538688.7,0,1017897628,0,299263.7108,446610.3159,4453582813,0,638461771.5,0 + 03/27 20:00:00,532715406.1,0,696182723,0,170711.1335,254763.1086,2760605401,0,638461771.5,702307948.6 + 03/27 21:00:00,599656547.9,0,795212091.4,0,170457.3307,254384.3425,2924298663,0,496581377.8,702307948.6 + 03/27 22:00:00,652407978.9,0,873848943.5,0,85355.56676,127381.5543,2292110558,0,354700984.2,702307948.6 + 03/27 23:00:00,690241403,0,929881934.1,0,85228.66535,127192.1712,2384838349,0,354700984.2,624273732.1 + 03/27 24:00:00,776101655.7,0,1056879419,0,42469.57871,63380.06004,2214039775,0,354700984.2,468205299.1 + 03/28 01:00:00,936232869.6,0,1294485342,0,42387.67742,63257.83353,2611042051,0,212820590.5,234102649.5 + 03/28 02:00:00,440230678.6,0,589364512.2,0,21193.83871,31628.91677,1219757111,0,141880393.7,0 + 03/28 03:00:00,839021312.8,0,1171284376,0,21158.93241,31576.82388,2200154411,0,141880393.7,0 + 03/28 04:00:00,859669473.9,0,1198497075,0,21158.93241,31576.82388,2248015272,0,141880393.7,0 + 03/28 05:00:00,878853956.7,0,1225287438,0,21116.12048,31512.93289,2293605987,0,141880393.7,0 + 03/28 06:00:00,863757836.6,0,1241604835,0,21035.06005,31391.96125,2294099949,0,141880393.7,0 + 03/28 07:00:00,612650035,0,834832922.8,0,84289.2564,125790.2314,2203769114,0,141880393.7,156068433 + 03/28 08:00:00,632196016.9,0,768726596.5,0,340289.9924,507836.4516,4454177812,0,567521574.6,390171082.6 + 03/28 09:00:00,685315888.4,0,804119141.9,0,299263.7108,446610.3159,4174581526,0,567521574.6,390171082.6 + 03/28 10:00:00,610061910.9,0,758125431.1,0,214751.3222,320487.09,3295045626,0,283760787.3,0 + 03/28 11:00:00,463886428.8,0,700406759.4,0,172276.1814,257098.7293,2710042867,0,283760787.3,0 + 03/28 12:00:00,316339799.3,0,643448904.8,0,86360.34081,128881.0427,1734657685,0,283760787.3,0 + 03/28 13:00:00,193858993.2,0,561817913.7,0,86456.23145,129024.1464,1531406267,0,283760787.3,0 + 03/28 14:00:00,133399444,0,427458211.4,0,86567.02127,129189.4851,1337581078,0,283760787.3,0 + 03/28 15:00:00,184787447,0,339157795.1,0,129983.6315,193982.8607,1690224614,0,283760787.3,0 + 03/28 16:00:00,290214134.7,0,324863951.3,0,216639.3859,323304.7679,2558877040,0,283760787.3,0 + 03/28 17:00:00,459523492.7,0,439193982.1,0,216140.5786,322560.366,2838040875,0,354700984.2,0 + 03/28 18:00:00,649243744.1,0,659725999,0,302596.8101,451584.5124,4024022504,0,141880393.7,0 + 03/28 19:00:00,469860065.5,0,618603186.7,0,301843.5964,450460.4436,3796757796,0,638461771.5,0 + 03/28 20:00:00,255955827,0,307017299.2,0,172482.0551,257405.9677,2110570008,0,638461771.5,702307948.6 + 03/28 21:00:00,316625782,0,394796399,0,172276.1814,257098.7293,2257171859,0,496581377.8,702307948.6 + 03/28 22:00:00,379127732.1,0,487228565.3,0,86138.09068,128549.3646,1639231137,0,354700984.2,702307948.6 + 03/28 23:00:00,412230965.7,0,536473643.6,0,86138.09068,128549.3646,1721579448,0,354700984.2,624273732.1 + 03/28 24:00:00,461064503.2,0,609286160.9,0,43120.51377,64351.49194,1457249885,0,354700984.2,468205299.1 + 03/29 01:00:00,600938637,0,818282536.2,0,43069.04534,64274.68232,1805658593,0,212820590.5,234102649.5 + 03/29 02:00:00,137776144.4,0,158902633.8,0,21502.59811,32089.69811,489611044.6,0,141880393.7,0 + 03/29 03:00:00,537590986.2,0,744246394.6,0,21502.59811,32089.69811,1474769647,0,141880393.7,0 + 03/29 04:00:00,563399460.7,0,778092980.2,0,21502.59811,32089.69811,1534424707,0,141880393.7,0 + 03/29 05:00:00,570512273.2,0,786389144.3,0,21534.52267,32137.34116,1550120127,0,141880393.7,0 + 03/29 06:00:00,563053060.9,0,774877030.1,0,21560.25688,32175.74597,1531379701,0,141880393.7,0 + 03/29 07:00:00,488323569.6,0,666624737.7,0,86241.02753,128702.9839,1928746748,0,141880393.7,156068433 + 03/29 08:00:00,590472373.5,0,795735598.1,0,345441.3633,515524.1708,4485683894,0,567521574.6,390171082.6 + 03/29 09:00:00,537262827.6,0,742025950.3,0,302261.1928,451083.6494,3991330210,0,567521574.6,390171082.6 + 03/29 10:00:00,703516648.1,0,985062527.8,0,216140.5786,322560.366,3627902576,0,283760787.3,0 + 03/29 11:00:00,687184921.2,0,967371723.5,0,172912.4629,258048.2928,3206015365,0,283760787.3,0 + 03/29 12:00:00,659761729.2,0,933380418.6,0,86567.02127,129189.4851,2369865571,0,283760787.3,0 + 03/29 13:00:00,650383180.8,0,921353621.5,0,86567.02127,129189.4851,2348460225,0,283760787.3,0 + 03/29 14:00:00,674107559.5,0,948601762.9,0,86655.75436,129321.9072,2400228904,0,283760787.3,0 + 03/29 15:00:00,713581785.5,0,998351710,0,129983.6315,193982.8607,2878212868,0,283760787.3,0 + 03/29 16:00:00,714518433.6,0,999503196.9,0,216639.3859,323304.7679,3657820584,0,283760787.3,0 + 03/29 17:00:00,703414101.5,0,976399153.8,0,216417.5532,322973.7128,3621621813,0,354700984.2,0 + 03/29 18:00:00,766762849.3,0,1033457352,0,302596.8101,451584.5124,4515272963,0,141880393.7,0 + 03/29 19:00:00,548788026.1,0,741238375.6,0,302596.8101,451584.5124,4005079163,0,638461771.5,0 + 03/29 20:00:00,311580047.9,0,387156080.3,0,172912.4629,258048.2928,2250194849,0,638461771.5,702307948.6 + 03/29 21:00:00,365133197,0,466095139.4,0,172720.6816,257762.0854,2380966298,0,496581377.8,702307948.6 + 03/29 22:00:00,421241217.9,0,549455959.5,0,86360.34081,128881.0427,1745566158,0,354700984.2,702307948.6 + 03/29 23:00:00,449765153.9,0,591818431.6,0,86360.34081,128881.0427,1816452566,0,354700984.2,624273732.1 + 03/29 24:00:00,500271192.3,0,667166487.2,0,43180.17041,64440.52135,1554872170,0,354700984.2,468205299.1 + 03/30 01:00:00,626275182.2,0,855639947,0,43180.17041,64440.52135,1869349620,0,212820590.5,234102649.5 + 03/30 02:00:00,135847740.3,0,159943011.5,0,21590.0852,32220.26067,489507996.9,0,141880393.7,0 + 03/30 03:00:00,512303705.3,0,708573984,0,21590.0852,32220.26067,1414594934,0,141880393.7,0 + 03/30 04:00:00,522144604.1,0,721114974.3,0,21590.0852,32220.26067,1436976824,0,141880393.7,0 + 03/30 05:00:00,526956678.8,0,727246534,0,21590.0852,32220.26067,1447920458,0,141880393.7,0 + 03/30 06:00:00,532315888,0,757492983.6,0,21502.59811,32089.69811,1482741138,0,141880393.7,0 + 03/30 07:00:00,360526339,0,484983996,0,21560.25688,32175.74597,1038959945,0,141880393.7,156068433 + 03/30 08:00:00,439070606,0,572437497.7,0,86567.02127,129189.4851,1788231527,0,567521574.6,390171082.6 + 03/30 09:00:00,570924566.4,0,763971898.1,0,215900.852,322202.6067,3272068916,0,567521574.6,390171082.6 + 03/30 10:00:00,459533546,0,611250309.8,0,216140.5786,322560.366,3010107256,0,283760787.3,0 + 03/30 11:00:00,396185992.8,0,593444270.5,0,215900.852,322202.6067,2926802715,0,283760787.3,0 + 03/30 12:00:00,414137079.8,0,694207605,0,129207.136,192824.047,2267656944,0,283760787.3,0 + 03/30 13:00:00,434471898.1,0,722440105,0,129361.5413,193054.4758,2317609665,0,283760787.3,0 + 03/30 14:00:00,448544271.5,0,711676826.6,0,129361.5413,193054.4758,2320918760,0,283760787.3,0 + 03/30 15:00:00,555311744.1,0,808531681.7,0,129361.5413,193054.4758,2524541087,0,283760787.3,0 + 03/30 16:00:00,574270651.2,0,802695035.1,0,301843.5964,450460.4436,4085260230,0,283760787.3,0 + 03/30 17:00:00,631155559.6,0,835322100.6,0,388084.6239,579163.4274,4948570645,0,354700984.2,0 + 03/30 18:00:00,762258098,0,987270849.9,0,301036.3736,449255.7735,4450580677,0,141880393.7,0 + 03/30 19:00:00,630468033.9,0,864196585.7,0,300176.0788,447971.9008,4187997346,0,638461771.5,0 + 03/30 20:00:00,440030907.9,0,578369140.2,0,256511.7521,382808.8422,3319954187,0,638461771.5,702307948.6 + 03/30 21:00:00,543207494.4,0,727786414.2,0,212681.2453,317397.7823,3179278408,0,496581377.8,702307948.6 + 03/30 22:00:00,616115935.8,0,833403806.8,0,170457.3307,254384.3425,2978949766,0,354700984.2,702307948.6 + 03/30 23:00:00,684234704.4,0,931576504,0,127163.0323,189773.5006,2756782727,0,354700984.2,624273732.1 + 03/30 24:00:00,791696461.9,0,1088040160,0,84464.48191,126051.7316,2637594990,0,354700984.2,468205299.1 + 03/31 01:00:00,936013906.8,0,1300569611,0,42317.86483,63153.64775,2616280963,0,212820590.5,234102649.5 + 03/31 02:00:00,466235009.4,0,632145916.5,0,21035.06005,31391.96125,1287118203,0,141880393.7,0 + 03/31 03:00:00,886565833.5,0,1245233320,0,20989.47008,31323.92444,2320127374,0,141880393.7,0 + 03/31 04:00:00,912685178.2,0,1279727341,0,20989.47008,31323.92444,2380740739,0,141880393.7,0 + 03/31 05:00:00,946062084.2,0,1326137885,0,20903.43091,31195.52268,2459756202,0,141880393.7,0 + 03/31 06:00:00,937609500.8,0,1354863121,0,20814.29645,31062.50165,2479229095,0,141880393.7,0 + 03/31 07:00:00,689311692.8,0,948541314.5,0,20814.29645,31062.50165,1824609480,0,141880393.7,156068433 + 03/31 08:00:00,714338899.8,0,898836814.7,0,21035.06005,31391.96125,1801912991,0,567521574.6,390171082.6 + 03/31 09:00:00,742260000.5,0,904584253.8,0,84635.72966,126307.2955,2406239145,0,567521574.6,390171082.6 + 03/31 10:00:00,661516968.6,0,842769205,0,127163.0323,189773.5006,2645257692,0,283760787.3,0 + 03/31 11:00:00,538390344.7,0,812712761.9,0,127608.7472,190438.6694,2496073806,0,283760787.3,0 + 03/31 12:00:00,431689569.9,0,813946350,0,85355.56676,127381.5543,2011489556,0,283760787.3,0 + 03/31 13:00:00,347332855.4,0,772136634,0,85624.23218,127782.5009,1887733728,0,283760787.3,0 + 03/31 14:00:00,314164277.5,0,650057272.4,0,128850.7933,192292.254,2120336520,0,283760787.3,0 + 03/31 15:00:00,387660351.6,0,613585474.1,0,171801.0577,256389.672,2542732453,0,283760787.3,0 + 03/31 16:00:00,573763505.2,0,786983402.8,0,214411.4849,319979.9291,3284555998,0,283760787.3,0 + 03/31 17:00:00,685046600.3,0,919637140.8,0,257701.5866,384584.5081,3916913682,0,354700984.2,0 + 03/31 18:00:00,818018566.1,0,1103898692,0,299684.8126,447238.753,4610842094,0,141880393.7,0 + 03/31 19:00:00,697971944.8,0,966457858.7,0,170457.3307,254384.3425,3193859827,0,638461771.5,0 + 03/31 20:00:00,503814985.1,0,672984383.6,0,127648.2274,190497.5883,2322124305,0,638461771.5,702307948.6 + 03/31 21:00:00,583406612.8,0,786996508,0,84912.14309,126719.8049,2132278134,0,496581377.8,702307948.6 + 03/31 22:00:00,658831616.3,0,895850023.4,0,84857.77033,126638.661,2316068792,0,354700984.2,702307948.6 + 03/31 23:00:00,690566240.8,0,940690198.1,0,84992.84064,126840.235,2393855511,0,354700984.2,624273732.1 + 03/31 24:00:00,722797609.4,0,986903900.8,0,85330.4236,127344.0316,2475329549,0,354700984.2,468205299.1 + 04/01 01:00:00,806103625.7,0,1111030356,0,42870.75322,63978.75836,2301792223,0,212820590.5,234102649.5 + 04/01 02:00:00,245709082.6,0,299968878.9,0,21524.00717,32121.6482,738802320.8,0,141880393.7,0 + 04/01 03:00:00,591784345.3,0,819670625.5,0,21575.31518,32198.21842,1605039692,0,141880393.7,0 + 04/01 04:00:00,575706230.2,0,791198225.9,0,21594.94426,32227.51216,1560665299,0,141880393.7,0 + 04/01 05:00:00,574101477.8,0,788842578.2,0,21585.19397,32212.96117,1556617415,0,141880393.7,0 + 04/01 06:00:00,568744717.2,0,782843273.5,0,21575.31518,32198.21842,1545172712,0,141880393.7,0 + 04/01 07:00:00,485589494.9,0,664279106.2,0,86241.02753,128702.9839,1923667042,0,141880393.7,156068433 + 04/01 08:00:00,585931586.1,0,791432091.6,0,345441.3633,515524.1708,4476839600,0,567521574.6,390171082.6 + 04/01 09:00:00,525954006.7,0,721472678.5,0,302984.5745,452163.1979,3965958666,0,567521574.6,390171082.6 + 04/01 10:00:00,455400279.6,0,567072625.9,0,216894.7303,323685.8346,2968562939,0,283760787.3,0 + 04/01 11:00:00,383614747.8,0,564117997.2,0,174042.5371,259734.7745,2509331067,0,283760787.3,0 + 04/01 12:00:00,322053069.1,0,541342295.9,0,87170.94019,130090.7518,1645537456,0,283760787.3,0 + 04/01 13:00:00,290671398,0,502378173.8,0,87233.52442,130184.1503,1575753201,0,283760787.3,0 + 04/01 14:00:00,281961013.5,0,454969853.3,0,87304.10114,130289.4764,1520267746,0,283760787.3,0 + 04/01 15:00:00,309832244.3,0,461778578.9,0,130756.4103,195136.1277,1944823960,0,283760787.3,0 + 04/01 16:00:00,329946962.4,0,433705085.6,0,217927.3505,325226.8796,2719007276,0,283760787.3,0 + 04/01 17:00:00,370021116.4,0,392075088.5,0,218083.811,325460.3756,2718855277,0,354700984.2,0 + 04/01 18:00:00,518715058.8,0,538020730.3,0,304819.6803,454901.8434,3791733275,0,141880393.7,0 + 04/01 19:00:00,356129309.7,0,460174057,0,304264.5612,454073.4037,3546320040,0,638461771.5,0 + 04/01 20:00:00,146110949.4,0,152125225.9,0,173865.4635,259470.5164,1858245703,0,638461771.5,702307948.6 + 04/01 21:00:00,218704011.7,0,257741743.8,0,173515.7842,258948.6677,2033317782,0,496581377.8,702307948.6 + 04/01 22:00:00,288461798.8,0,360679774.7,0,86757.89212,129474.3338,1427577587,0,354700984.2,702307948.6 + 04/01 23:00:00,333867286.2,0,427726964.8,0,86655.75436,129321.9072,1539113833,0,354700984.2,624273732.1 + 04/01 24:00:00,426301061.1,0,564427700.9,0,43180.17041,64440.52135,1378163252,0,354700984.2,468205299.1 + 04/02 01:00:00,558803810.6,0,761910715.5,0,43283.51064,64594.74256,1709076238,0,212820590.5,234102649.5 + 04/02 02:00:00,109966268.9,0,112002583.4,0,21560.25688,32175.74597,415418462.5,0,141880393.7,0 + 04/02 03:00:00,513126042.2,0,715194065,0,21502.59811,32089.69811,1421252374,0,141880393.7,0 + 04/02 04:00:00,537491340.5,0,746962197.2,0,21502.59811,32089.69811,1477385804,0,141880393.7,0 + 04/02 05:00:00,527207912.8,0,730328254,0,21560.25688,32175.74597,1450985777,0,141880393.7,0 + 04/02 06:00:00,502590657.8,0,728226127.9,0,21475.13222,32048.709,1423502614,0,141880393.7,0 + 04/02 07:00:00,306420571.3,0,411224520.9,0,86138.09068,128549.3646,1490519931,0,141880393.7,156068433 + 04/02 08:00:00,261337896.9,0,324407097.5,0,346623.0175,517287.6287,3695823320,0,567521574.6,390171082.6 + 04/02 09:00:00,266311610.3,0,289955977.1,0,303652.6224,453160.1685,3280793635,0,567521574.6,390171082.6 + 04/02 10:00:00,206248371.1,0,237520626.4,0,217331.8294,324338.1455,2393780907,0,283760787.3,0 + 04/02 11:00:00,64927220.01,0,150452185.1,0,174467.0488,260368.3005,1780786663,0,283760787.3,0 + 04/02 12:00:00,0,0,86561505.4,0,87304.10114,130289.4764,869898384.5,0,283760787.3,0 + 04/02 13:00:00,0,0,20938549.1,0,87420.59679,130463.3303,805320686.6,0,283760787.3,0 + 04/02 14:00:00,0,56011280.22,0,0,87477.0665,130547.6036,784888812.5,56011280.22,283760787.3,0 + 04/02 15:00:00,0,14087295.64,0,0,131038.6924,195557.3953,1175745915,14087295.64,283760787.3,0 + 04/02 16:00:00,0,0,0,0,218551.492,326158.3257,1960955344,0,283760787.3,0 + 04/02 17:00:00,153633001.8,0,142387076,0,218800.7298,326530.2792,2259211710,0,354700984.2,0 + 04/02 18:00:00,389386251.7,0,495493167.3,0,305756.9488,456300.5889,3628286555,0,141880393.7,0 + 04/02 19:00:00,256914737,0,342400946.9,0,305317.3355,455644.5259,3338778385,0,638461771.5,0 + 04/02 20:00:00,74441243.79,0,66721052.1,0,174182.6745,259943.9105,1704018002,0,638461771.5,702307948.6 + 04/02 21:00:00,166861491.4,0,199238206.8,0,173710.5199,259239.2841,1924718992,0,496581377.8,702307948.6 + 04/02 22:00:00,266065281.5,0,343199178.7,0,86655.75436,129321.9072,1386784042,0,354700984.2,702307948.6 + 04/02 23:00:00,320189965.8,0,420533874,0,86655.75436,129321.9072,1518243421,0,354700984.2,624273732.1 + 04/02 24:00:00,386221325.6,0,516215997.1,0,43327.87718,64660.95358,1291197113,0,354700984.2,468205299.1 + 04/03 01:00:00,525880125.4,0,722394021.7,0,43327.87718,64660.95358,1637033938,0,212820590.5,234102649.5 + 04/03 02:00:00,64625897.09,0,79667960.09,0,21614.05786,32256.0366,338226197.2,0,141880393.7,0 + 04/03 03:00:00,471376338.7,0,655769564.9,0,21590.0852,32220.26067,1320863149,0,141880393.7,0 + 04/03 04:00:00,502014500,0,700286758.8,0,21560.25688,32175.74597,1395750869,0,141880393.7,0 + 04/03 05:00:00,523037210.6,0,728339013.5,0,21560.25688,32175.74597,1444825834,0,141880393.7,0 + 04/03 06:00:00,478466023.1,0,702168625.7,0,21560.25688,32175.74597,1374084259,0,141880393.7,0 + 04/03 07:00:00,236074976.7,0,308522464.4,0,86456.23145,129024.1464,1320326801,0,141880393.7,156068433 + 04/03 08:00:00,221111645,0,322870129.7,0,346623.0175,517287.6287,3654060101,0,567521574.6,390171082.6 + 04/03 09:00:00,347078229.8,0,275395511.3,0,304264.5612,454073.4037,3352490415,0,567521574.6,390171082.6 + 04/03 10:00:00,289757501.6,0,356860927.5,0,217927.3505,325226.8796,2601973657,0,283760787.3,0 + 04/03 11:00:00,246413023.3,0,378246598.7,0,174467.0488,260368.3005,2190066880,0,283760787.3,0 + 04/03 12:00:00,192172624.8,0,376156234.6,0,87304.10114,130289.4764,1351665739,0,283760787.3,0 + 04/03 13:00:00,151309396.4,0,357805825,0,87304.10114,130289.4764,1292452100,0,283760787.3,0 + 04/03 14:00:00,142398140,0,325680377.4,0,87233.52442,130184.1503,1250782146,0,283760787.3,0 + 04/03 15:00:00,188897569,0,307853684.3,0,131038.6924,195557.3953,1672497169,0,283760787.3,0 + 04/03 16:00:00,251125191.9,0,322426331.1,0,218260.2528,325723.691,2531893721,0,283760787.3,0 + 04/03 17:00:00,340819046.3,0,344220339.3,0,218083.811,325460.3756,2641798458,0,354700984.2,0 + 04/03 18:00:00,507387275,0,522305691.2,0,304819.6803,454901.8434,3764690452,0,141880393.7,0 + 04/03 19:00:00,358191120.4,0,467254454.7,0,303993.4098,453668.7472,3553029340,0,638461771.5,0 + 04/03 20:00:00,157974732.8,0,173023979.6,0,173710.5199,259239.2841,1889618007,0,638461771.5,702307948.6 + 04/03 21:00:00,213427224.9,0,252864526.7,0,173710.5199,259239.2841,2024911046,0,496581377.8,702307948.6 + 04/03 22:00:00,272095663.9,0,339130326,0,86855.25993,129619.642,1390535637,0,354700984.2,702307948.6 + 04/03 23:00:00,308955642.4,0,393288544.5,0,86855.25993,129619.642,1481553834,0,354700984.2,624273732.1 + 04/03 24:00:00,391456294.4,0,515250682.5,0,43327.87718,64660.95358,1295466768,0,354700984.2,468205299.1 + 04/04 01:00:00,540531050.7,0,736883210.6,0,43327.87718,64660.95358,1666174052,0,212820590.5,234102649.5 + 04/04 02:00:00,67312055.91,0,77807198.37,0,21641.75532,32297.37128,339300110,0,141880393.7,0 + 04/04 03:00:00,476634889.2,0,657853622.5,0,21590.0852,32220.26067,1328205757,0,141880393.7,0 + 04/04 04:00:00,519514787.8,0,721626469.1,0,21534.52267,32137.34116,1434359967,0,141880393.7,0 + 04/04 05:00:00,553612130.8,0,770118262.1,0,21502.59811,32089.69811,1516662659,0,141880393.7,0 + 04/04 06:00:00,508304594.5,0,748656629.7,0,21502.59811,32089.69811,1449893491,0,141880393.7,0 + 04/04 07:00:00,237499507.5,0,309123895.9,0,86456.23145,129024.1464,1322352764,0,141880393.7,156068433 + 04/04 08:00:00,277959004.8,0,323274975.7,0,346268.0851,516757.9405,3708127672,0,567521574.6,390171082.6 + 04/04 09:00:00,408476513.1,0,441147145.4,0,303993.4098,453668.7472,3577207423,0,567521574.6,390171082.6 + 04/04 10:00:00,361662040.8,0,462690729.5,0,217331.8294,324338.1455,2774364680,0,283760787.3,0 + 04/04 11:00:00,364707360.5,0,530744175.9,0,174042.5371,259734.7745,2457049858,0,283760787.3,0 + 04/04 12:00:00,342487280.7,0,522266541.2,0,87091.33724,129971.9553,1646181675,0,283760787.3,0 + 04/04 13:00:00,273328925.5,0,462711534.7,0,87170.94019,130090.7518,1518182551,0,283760787.3,0 + 04/04 14:00:00,138406171.5,0,305740033.4,0,87359.12823,130371.5968,1227976815,0,283760787.3,0 + 04/04 15:00:00,115193842.7,0,209757212.8,0,130850.2866,195276.2254,1499006499,0,283760787.3,0 + 04/04 16:00:00,261823720.9,0,331593554.7,0,217927.3505,325226.8796,2548772504,0,283760787.3,0 + 04/04 17:00:00,363007125.3,0,438678093.1,0,217927.3505,325226.8796,2757040447,0,354700984.2,0 + 04/04 18:00:00,492189268.9,0,627759626.1,0,305098.2907,455317.6314,3857446214,0,141880393.7,0 + 04/04 19:00:00,319127537.9,0,422387973.3,0,304574.4399,454535.8555,3474312574,0,638461771.5,0 + 04/04 20:00:00,113713721.1,0,115856975.4,0,174042.5371,259734.7745,1791169018,0,638461771.5,702307948.6 + 04/04 21:00:00,179032804.8,0,209282241.3,0,173865.4635,259470.5164,1948324574,0,496581377.8,702307948.6 + 04/04 22:00:00,276679723.9,0,351635370.4,0,86655.75436,129321.9072,1405834676,0,354700984.2,702307948.6 + 04/04 23:00:00,314185322.6,0,405267881.4,0,86855.25993,129619.642,1498762851,0,354700984.2,624273732.1 + 04/04 24:00:00,373995982.6,0,492891012,0,43378.94606,64737.16692,1256105001,0,354700984.2,468205299.1 + 04/05 01:00:00,515526996.1,0,702950326.4,0,43378.94606,64737.16692,1607695329,0,212820590.5,234102649.5 + 04/05 02:00:00,55139280.75,0,61813633.01,0,21663.93859,32330.47679,311332809.1,0,141880393.7,0 + 04/05 03:00:00,416636217.4,0,559948097.3,0,21663.93859,32330.47679,1170964210,0,141880393.7,0 + 04/05 04:00:00,442191412.1,0,610021661.4,0,21663.93859,32330.47679,1246592969,0,141880393.7,0 + 04/05 05:00:00,458450196.8,0,632425796.8,0,21641.75532,32297.37128,1285056849,0,141880393.7,0 + 04/05 06:00:00,462825065,0,645141532.3,0,21614.05786,32256.0366,1301898937,0,141880393.7,0 + 04/05 07:00:00,336264557.5,0,457121344.4,0,86757.89212,129474.3338,1571821915,0,141880393.7,156068433 + 04/05 08:00:00,386405694.6,0,509681911.4,0,347421.0397,518478.5682,4013326194,0,567521574.6,390171082.6 + 04/05 09:00:00,459415916.7,0,624268047.3,0,304574.4399,454535.8555,3816481027,0,567521574.6,390171082.6 + 04/05 10:00:00,415752072.9,0,561517192.1,0,217728.3431,324929.8881,2930838897,0,283760787.3,0 + 04/05 11:00:00,386601301.3,0,560216189.9,0,174341.8804,260181.5037,2511101674,0,283760787.3,0 + 04/05 12:00:00,286394289.7,0,472271494.1,0,87420.59679,130463.3303,1543047921,0,283760787.3,0 + 04/05 13:00:00,126802939.3,0,316157642.8,0,87477.0665,130547.6036,1227849395,0,283760787.3,0 + 04/05 14:00:00,18454907.29,0,174876909.6,0,87520.29191,130612.1117,978608469.7,0,283760787.3,0 + 04/05 15:00:00,46573091.86,0,125663032.3,0,131038.6924,195557.3953,1347982040,0,283760787.3,0 + 04/05 16:00:00,192629316.5,0,248279466,0,218397.8206,325928.9921,2400485308,0,283760787.3,0 + 04/05 17:00:00,307320287.5,0,375200068.2,0,218083.811,325460.3756,2639279428,0,354700984.2,0 + 04/05 18:00:00,445425764.4,0,543928133,0,305098.2907,455317.6314,3726851217,0,141880393.7,0 + 04/05 19:00:00,268805603.3,0,357158473.6,0,304819.6803,454901.8434,3360961562,0,638461771.5,0 + 04/05 20:00:00,67324875.09,0,58812188.17,0,174042.5371,259734.7745,1687735385,0,638461771.5,702307948.6 + 04/05 21:00:00,121913657.8,0,135598791.7,0,174042.5371,259734.7745,1819110771,0,496581377.8,702307948.6 + 04/05 22:00:00,179162129.2,0,218174938.6,0,87021.26854,129867.3873,1178136229,0,354700984.2,702307948.6 + 04/05 23:00:00,215711994.6,0,270597188.5,0,87021.26854,129867.3873,1267108344,0,354700984.2,624273732.1 + 04/05 24:00:00,276006240.5,0,358854155.2,0,43510.63427,64933.69364,1025259976,0,354700984.2,468205299.1 + 04/06 01:00:00,419489465.4,0,571550209.7,0,43466.36588,64867.6291,1381042057,0,212820590.5,234102649.5 + 04/06 02:00:00,42946812.17,0,49761624.38,0,21733.18294,32433.81455,287709627.5,0,141880393.7,0 + 04/06 03:00:00,377363954.1,0,522982534.9,0,21713.81498,32404.91051,1095173901,0,141880393.7,0 + 04/06 04:00:00,353141878.8,0,488671898.7,0,21713.81498,32404.91051,1036641189,0,141880393.7,0 + 04/06 05:00:00,371745478.7,0,514556956.8,0,21689.47303,32368.58346,1080911439,0,141880393.7,0 + 04/06 06:00:00,379060870.5,0,524964875.9,0,21689.47303,32368.58346,1098634750,0,141880393.7,0 + 04/06 07:00:00,290543269.9,0,396162891.4,0,21733.18294,32433.81455,881707352.2,0,141880393.7,156068433 + 04/06 08:00:00,427476040.3,0,596991836.8,0,86932.73176,129735.2582,1804472641,0,567521574.6,390171082.6 + 04/06 09:00:00,445488872.2,0,617005788.1,0,217728.3431,324929.8881,3016064293,0,567521574.6,390171082.6 + 04/06 10:00:00,288464365.8,0,390453164.7,0,218260.2528,325723.691,2637259728,0,283760787.3,0 + 04/06 11:00:00,171586729.8,0,272452858.2,0,218551.492,326158.3257,2404994932,0,283760787.3,0 + 04/06 12:00:00,124834173.2,0,272799447.5,0,131130.8952,195694.9954,1574206827,0,283760787.3,0 + 04/06 13:00:00,129537086.7,0,292075956.5,0,131130.8952,195694.9954,1598186249,0,283760787.3,0 + 04/06 14:00:00,11704729.06,0,122990514.5,0,131351.3215,196023.9517,1313246227,0,283760787.3,0 + 04/06 15:00:00,0,0,20018446.72,0,131280.4379,195918.1675,1197933426,0,283760787.3,0 + 04/06 16:00:00,37302944.94,0,0,0,306321.0217,457142.3908,2785771230,0,283760787.3,0 + 04/06 17:00:00,146582144.8,0,13236787.42,0,393841.3136,587754.5025,3693563870,0,354700984.2,0 + 04/06 18:00:00,304693201.5,0,206560757.3,0,305972.0888,456621.656,3256591440,0,141880393.7,0 + 04/06 19:00:00,184854130.2,0,217419630.4,0,305564.354,456013.1674,3143952838,0,638461771.5,0 + 04/06 20:00:00,28451303.53,0,0,0,261063.8056,389602.1618,2370848786,0,638461771.5,702307948.6 + 04/06 21:00:00,125372491.5,0,128972351.5,0,217138.1498,324049.1051,2202618961,0,496581377.8,702307948.6 + 04/06 22:00:00,222229557.3,0,271092983.6,0,173311.5087,258643.8143,2048361704,0,354700984.2,702307948.6 + 04/06 23:00:00,287423508.5,0,365518265.4,0,129850.5319,193784.2277,1818026908,0,354700984.2,624273732.1 + 04/06 24:00:00,361943874.2,0,474376877.4,0,86567.02127,129189.4851,1613044175,0,354700984.2,468205299.1 + 04/07 01:00:00,536738383.5,0,733102162.5,0,43120.51377,64351.49194,1656739766,0,212820590.5,234102649.5 + 04/07 02:00:00,58643454.68,0,69255304,0,21614.05786,32256.0366,321831098.7,0,141880393.7,0 + 04/07 03:00:00,435156589.8,0,592928836,0,21590.0852,32220.26067,1221802671,0,141880393.7,0 + 04/07 04:00:00,460266577.2,0,634735911,0,21614.05786,32256.0366,1288934828,0,141880393.7,0 + 04/07 05:00:00,474066867.3,0,653951545.9,0,21590.0852,32220.26067,1321735658,0,141880393.7,0 + 04/07 06:00:00,433281546.1,0,633959091.7,0,21590.0852,32220.26067,1260957883,0,141880393.7,0 + 04/07 07:00:00,192539509.8,0,248758875.2,0,21641.75532,32297.37128,635479240.7,0,141880393.7,156068433 + 04/07 08:00:00,223244190.1,0,326712064.9,0,21663.93859,32330.47679,744336150.4,0,567521574.6,390171082.6 + 04/07 09:00:00,406800411.6,0,395870698.3,0,86855.25993,129619.642,1581980757,0,567521574.6,390171082.6 + 04/07 10:00:00,277099319.7,0,326313506.4,0,130850.2866,195276.2254,1777468269,0,283760787.3,0 + 04/07 11:00:00,104168697.8,0,189505810.4,0,131038.6924,195557.3953,1469420424,0,283760787.3,0 + 04/07 12:00:00,0,0,70999129.01,0,87477.0665,130547.6036,855887941.5,0,283760787.3,0 + 04/07 13:00:00,0,73142115.64,5041824.809,0,87567.54766,130682.6344,790742480.3,73142115.64,283760787.3,0 + 04/07 14:00:00,0,147528023,0,0,131280.4379,195918.1675,1177914979,147528023,283760787.3,0 + 04/07 15:00:00,0,83263408.68,0,0,174954.133,261095.2073,1569777625,83263408.68,283760787.3,0 + 04/07 16:00:00,0,0,0,0,218692.6663,326369.0091,1962222031,0,283760787.3,0 + 04/07 17:00:00,52095285.87,0,0,0,262077.3847,391114.7905,2403587117,0,354700984.2,0 + 04/07 18:00:00,316705168.6,0,191631620.1,0,305098.2907,455317.6314,3245834108,0,141880393.7,0 + 04/07 19:00:00,220359978.1,0,279327402.3,0,174182.6745,259943.9105,2062543086,0,638461771.5,0 + 04/07 20:00:00,44273133.9,0,22422121.96,0,130531.9028,194801.0809,1237893997,0,638461771.5,702307948.6 + 04/07 21:00:00,121272252,0,133232292,0,86932.73176,129735.2582,1034509308,0,496581377.8,702307948.6 + 04/07 22:00:00,194221648.6,0,235691440.1,0,86932.73176,129735.2582,1209917853,0,354700984.2,702307948.6 + 04/07 23:00:00,246787127,0,310828546.1,0,86855.25993,129619.642,1336925320,0,354700984.2,624273732.1 + 04/07 24:00:00,319626372.4,0,416916664.8,0,86855.25993,129619.642,1515852684,0,354700984.2,468205299.1 + 04/08 01:00:00,452697194.9,0,613550870.7,0,43466.36588,64867.6291,1456250448,0,212820590.5,234102649.5 + 04/08 02:00:00,9515412.928,0,0,0,21713.81498,32404.91051,204342824.7,0,141880393.7,0 + 04/08 03:00:00,340918143.3,0,448696653.5,0,21713.81498,32404.91051,984442208.5,0,141880393.7,0 + 04/08 04:00:00,384239549.5,0,526858244.1,0,21713.81498,32404.91051,1105925205,0,141880393.7,0 + 04/08 05:00:00,393806896.2,0,539314167.3,0,21713.81498,32404.91051,1127948475,0,141880393.7,0 + 04/08 06:00:00,365210234.1,0,517692450.6,0,21713.81498,32404.91051,1077730096,0,141880393.7,0 + 04/08 07:00:00,196291966.6,0,255719490.8,0,86932.73176,129735.2582,1232016221,0,141880393.7,156068433 + 04/08 08:00:00,220927710.8,0,324004312.7,0,348085.0742,519469.5491,3668128667,0,567521574.6,390171082.6 + 04/08 09:00:00,284625528.3,0,279117396.5,0,305098.2907,455317.6314,3301240244,0,567521574.6,390171082.6 + 04/08 10:00:00,315968830,0,416364965.7,0,218083.811,325460.3756,2689092868,0,283760787.3,0 + 04/08 11:00:00,273706057.6,0,411360589.5,0,174608.2023,260578.9528,2251740405,0,283760787.3,0 + 04/08 12:00:00,135647777.5,0,325037188.4,0,87477.0665,130547.6036,1245573778,0,283760787.3,0 + 04/08 13:00:00,0,0,186303054.1,0,87477.0665,130547.6036,971191866.6,0,283760787.3,0 + 04/08 14:00:00,0,0,33833663.5,0,87567.54766,130682.6344,819534319,0,283760787.3,0 + 04/08 15:00:00,0,0,20869024.58,0,131038.6924,195557.3953,1196614940,0,283760787.3,0 + 04/08 16:00:00,65828450.93,0,237857737.5,0,218260.2528,325723.691,2262028386,0,283760787.3,0 + 04/08 17:00:00,326540990.1,0,410305350.4,0,218083.811,325460.3756,2693605413,0,354700984.2,0 + 04/08 18:00:00,509375643.8,0,715073009.5,0,305098.2907,455317.6314,3961945973,0,141880393.7,0 + 04/08 19:00:00,346051023.4,0,466403985.2,0,305098.2907,455317.6314,3549952328,0,638461771.5,0 + 04/08 20:00:00,153420484.9,0,169609313,0,174182.6745,259943.9105,1885885504,0,638461771.5,702307948.6 + 04/08 21:00:00,223778197.8,0,268490161.6,0,174042.5371,259734.7745,2053866681,0,496581377.8,702307948.6 + 04/08 22:00:00,289210094.4,0,363625989.2,0,86932.73176,129735.2582,1432840847,0,354700984.2,702307948.6 + 04/08 23:00:00,324876393,0,415968570.8,0,86932.73176,129735.2582,1520849728,0,354700984.2,624273732.1 + 04/08 24:00:00,379110016.4,0,496452939.7,0,43466.36588,64867.6291,1265565338,0,354700984.2,468205299.1 + 04/09 01:00:00,519271256.7,0,705343869.7,0,43427.62997,64809.82102,1614269950,0,212820590.5,234102649.5 + 04/09 02:00:00,50298809.04,0,44218681.88,0,21713.81498,32404.91051,289344902.7,0,141880393.7,0 + 04/09 03:00:00,400508887.4,0,523218721,0,21713.81498,32404.91051,1118555020,0,141880393.7,0 + 04/09 04:00:00,422735560.4,0,579421565.3,0,21713.81498,32404.91051,1196984537,0,141880393.7,0 + 04/09 05:00:00,426152481.1,0,583422141.3,0,21713.81498,32404.91051,1204402034,0,141880393.7,0 + 04/09 06:00:00,413367553.7,0,564914693,0,21733.18294,32433.81455,1173283438,0,141880393.7,0 + 04/09 07:00:00,321258416.9,0,432955897.9,0,86932.73176,129735.2582,1534219079,0,141880393.7,156068433 + 04/09 08:00:00,424427845.9,0,590869966.7,0,347730.927,518941.0328,4135316868,0,567521574.6,390171082.6 + 04/09 09:00:00,571540437.6,0,800759244.2,0,304574.4399,454535.8555,4105096745,0,567521574.6,390171082.6 + 04/09 10:00:00,560885169.7,0,782029942,0,217927.3505,325226.8796,3298270340,0,283760787.3,0 + 04/09 11:00:00,497934238.4,0,702160552.8,0,174467.0488,260368.3005,2765502049,0,283760787.3,0 + 04/09 12:00:00,386788450,0,599759113,0,87233.52442,130184.1503,1769251192,0,283760787.3,0 + 04/09 13:00:00,331610608.1,0,554269709.9,0,87233.52442,130184.1503,1668583947,0,283760787.3,0 + 04/09 14:00:00,240013982.2,0,424484944.3,0,87304.10114,130289.4764,1447835806,0,283760787.3,0 + 04/09 15:00:00,243082161.7,0,374827889.4,0,130956.1517,195434.2146,1792915370,0,283760787.3,0 + 04/09 16:00:00,300723488.8,0,381344841.1,0,217927.3505,325226.8796,2637423558,0,283760787.3,0 + 04/09 17:00:00,378541769.8,0,388807906.5,0,217927.3505,325226.8796,2722704904,0,354700984.2,0 + 04/09 18:00:00,522509933.7,0,553797638.6,0,304819.6803,454901.8434,3811305058,0,141880393.7,0 + 04/09 19:00:00,345500538,0,443105578.1,0,304574.4399,454535.8555,3521403179,0,638461771.5,0 + 04/09 20:00:00,143533902.2,0,146436491.5,0,173865.4635,259470.5164,1849979921,0,638461771.5,702307948.6 + 04/09 21:00:00,203029355.8,0,232233781.8,0,173865.4635,259470.5164,1995272665,0,496581377.8,702307948.6 + 04/09 22:00:00,260142143.2,0,316720523.3,0,86932.73176,129735.2582,1356867430,0,354700984.2,702307948.6 + 04/09 23:00:00,302170384.2,0,379282283.7,0,86855.25993,129619.642,1460762315,0,354700984.2,624273732.1 + 04/09 24:00:00,365253337,0,473228371.9,0,43427.62997,64809.82102,1228136532,0,354700984.2,468205299.1 + 04/10 01:00:00,498081114.5,0,671683286.5,0,43427.62997,64809.82102,1559419225,0,212820590.5,234102649.5 + 04/10 02:00:00,44373540.08,0,25721685.97,0,21689.47303,32368.58346,264704229.4,0,141880393.7,0 + 04/10 03:00:00,388970063.9,0,501973079.1,0,21689.47303,32368.58346,1085552146,0,141880393.7,0 + 04/10 04:00:00,421083400.3,0,576359727.9,0,21689.47303,32368.58346,1192052132,0,141880393.7,0 + 04/10 05:00:00,426874809.4,0,584220752.3,0,21689.47303,32368.58346,1205704565,0,141880393.7,0 + 04/10 06:00:00,398759801.2,0,558965987.5,0,21689.47303,32368.58346,1152334792,0,141880393.7,0 + 04/10 07:00:00,262023817.6,0,353223158,0,86932.73176,129735.2582,1395251740,0,141880393.7,156068433 + 04/10 08:00:00,301323905.5,0,407689513.5,0,348085.0742,519469.5491,3832210063,0,567521574.6,390171082.6 + 04/10 09:00:00,453192942.9,0,631404908.8,0,304574.4399,454535.8555,3817394915,0,567521574.6,390171082.6 + 04/10 10:00:00,392236507.3,0,543534195.1,0,217728.3431,324929.8881,2889340335,0,283760787.3,0 + 04/10 11:00:00,292177668.7,0,436510121.7,0,174718.2565,260743.1937,2296349011,0,283760787.3,0 + 04/10 12:00:00,249869278.9,0,422313498,0,87359.12823,130371.5968,1456013387,0,283760787.3,0 + 04/10 13:00:00,147761461.1,0,337204479.7,0,87477.0665,130547.6036,1269854753,0,283760787.3,0 + 04/10 14:00:00,91153378.15,0,250763877.8,0,87477.0665,130547.6036,1126806068,0,283760787.3,0 + 04/10 15:00:00,34434686.11,0,98824857.26,0,131351.3215,196023.9517,1311810527,0,283760787.3,0 + 04/10 16:00:00,41062876.17,0,1586057.729,0,218800.7298,326530.2792,2005840566,0,283760787.3,0 + 04/10 17:00:00,166358954.6,0,103549009.1,0,218692.6663,326369.0091,2232129995,0,354700984.2,0 + 04/10 18:00:00,355100348.8,0,388982937.6,0,305317.3355,455644.5259,3483545987,0,141880393.7,0 + 04/10 19:00:00,243561728.1,0,319087526,0,305098.2907,455317.6314,3300146573,0,638461771.5,0 + 04/10 20:00:00,86639301.42,0,80482736.49,0,174182.6745,259943.9105,1729977744,0,638461771.5,702307948.6 + 04/10 21:00:00,176681799.1,0,205098804.3,0,174042.5371,259734.7745,1943378925,0,496581377.8,702307948.6 + 04/10 22:00:00,257756007.7,0,321342362.1,0,86932.73176,129735.2582,1359103134,0,354700984.2,702307948.6 + 04/10 23:00:00,300719281.3,0,383727205.6,0,86932.73176,129735.2582,1464451251,0,354700984.2,624273732.1 + 04/10 24:00:00,359479520.2,0,470282070.2,0,43466.36588,64867.6291,1219763972,0,354700984.2,468205299.1 + 04/11 01:00:00,502210603.8,0,682508561.3,0,43427.62997,64809.82102,1574373989,0,212820590.5,234102649.5 + 04/11 02:00:00,41233421.56,0,23912597.69,0,21713.81498,32404.91051,259973431,0,141880393.7,0 + 04/11 03:00:00,376654651.8,0,489117913,0,21713.81498,32404.91051,1060599977,0,141880393.7,0 + 04/11 04:00:00,407759609.9,0,559597987.1,0,21713.81498,32404.91051,1162185009,0,141880393.7,0 + 04/11 05:00:00,410712325.8,0,563002478.1,0,21713.81498,32404.91051,1168542216,0,141880393.7,0 + 04/11 06:00:00,401894881.9,0,550999285.4,0,21713.81498,32404.91051,1147721579,0,141880393.7,0 + 04/11 07:00:00,334707111.9,0,453525306.2,0,86932.73176,129735.2582,1568237182,0,141880393.7,156068433 + 04/11 08:00:00,445513565.5,0,612188820.1,0,348365.3489,519887.821,4183413798,0,567521574.6,390171082.6 + 04/11 09:00:00,448265402.9,0,593293482.3,0,305317.3355,455644.5259,3781021586,0,567521574.6,390171082.6 + 04/11 10:00:00,280089163.7,0,346908088.7,0,218260.2528,325723.691,2585339450,0,283760787.3,0 + 04/11 11:00:00,210171139.1,0,318754780.1,0,174841.1936,260926.6606,2097690194,0,283760787.3,0 + 04/11 12:00:00,134939455.7,0,300268005.3,0,87420.59679,130463.3303,1219589598,0,283760787.3,0 + 04/11 13:00:00,127971548.6,0,307172877.7,0,87304.10114,130289.4764,1218481305,0,283760787.3,0 + 04/11 14:00:00,339286943.2,0,513645215.2,0,87170.94019,130090.7518,1635074250,0,283760787.3,0 + 04/11 15:00:00,448410986.4,0,639825726.8,0,130531.9028,194801.0809,2259435455,0,283760787.3,0 + 04/11 16:00:00,569346057.8,0,800283462.9,0,217553.1713,324668.4682,3321627423,0,283760787.3,0 + 04/11 17:00:00,606151034.1,0,847288888.9,0,217331.8294,324338.1455,3403451833,0,354700984.2,0 + 04/11 18:00:00,685909461.7,0,958356505.2,0,304264.5612,454073.4037,4374282640,0,141880393.7,0 + 04/11 19:00:00,469100155.9,0,629829976.2,0,303993.4098,453668.7472,3826513897,0,638461771.5,0 + 04/11 20:00:00,239213582.6,0,285494385.7,0,173710.5199,259239.2841,2083327262,0,638461771.5,702307948.6 + 04/11 21:00:00,283384508,0,350422796.1,0,173710.5199,259239.2841,2192426598,0,496581377.8,702307948.6 + 04/11 22:00:00,331816884.9,0,422489513.1,0,86855.25993,129619.642,1533616045,0,354700984.2,702307948.6 + 04/11 23:00:00,349109434.8,0,448448832.1,0,86932.73176,129735.2582,1577563031,0,354700984.2,624273732.1 + 04/11 24:00:00,405702043.4,0,532937741.9,0,43427.62997,64809.82102,1328294609,0,354700984.2,468205299.1 + 04/12 01:00:00,540120918,0,733839316.5,0,43427.62997,64809.82102,1663615058,0,212820590.5,234102649.5 + 04/12 02:00:00,52915645.43,0,49683638.78,0,21713.81498,32404.91051,297426696,0,141880393.7,0 + 04/12 03:00:00,433732799.9,0,573459359.5,0,21663.93859,32330.47679,1201572055,0,141880393.7,0 + 04/12 04:00:00,486320877.7,0,672349843,0,21614.05786,32256.0366,1352603061,0,141880393.7,0 + 04/12 05:00:00,521078482.9,0,723029339.8,0,21560.25688,32175.74597,1437557433,0,141880393.7,0 + 04/12 06:00:00,368979072.5,0,588733126.6,0,21614.05786,32256.0366,1151644539,0,141880393.7,0 + 04/12 07:00:00,205380233.7,0,266304304.7,0,86655.75436,129321.9072,1249204120,0,141880393.7,156068433 + 04/12 08:00:00,309620776.9,0,394483106.5,0,348085.0742,519469.5491,3827300527,0,567521574.6,390171082.6 + 04/12 09:00:00,397418919.7,0,490890864.6,0,305098.2907,455317.6314,3625807104,0,567521574.6,390171082.6 + 04/12 10:00:00,226152156.5,0,254219953.8,0,218551.492,326158.3257,2441327454,0,283760787.3,0 + 04/12 11:00:00,81000209.71,0,146868717.8,0,175040.5838,261224.2233,1798422233,0,283760787.3,0 + 04/12 12:00:00,0,0,105072016.9,0,87567.54766,130682.6344,890772672.5,0,283760787.3,0 + 04/12 13:00:00,0,0,26147554.66,0,87603.07075,130735.6478,812166941.5,0,283760787.3,0 + 04/12 14:00:00,0,82298006.67,0,0,87668.83723,130833.7953,786609477.2,82298006.67,283760787.3,0 + 04/12 15:00:00,0,79157664.09,0,0,131503.2558,196250.693,1179914216,79157664.09,283760787.3,0 + 04/12 16:00:00,0,4464733.027,0,33741621.38,219172.0931,327084.4883,1966523693,38206354.41,283760787.3,0 + 04/12 17:00:00,0,0,0,7901854.389,219102.6442,326980.8453,1965900562,7901854.389,354700984.2,0 + 04/12 18:00:00,149729495.4,0,0,0,306610.7476,457574.7673,2900797349,0,141880393.7,0 + 04/12 19:00:00,81575931.9,0,58559738.72,0,305972.0888,456621.656,2885473152,0,638461771.5,0 + 04/12 20:00:00,0,0,0,0,174467.0488,260368.3005,1565407258,0,638461771.5,702307948.6 + 04/12 21:00:00,0,0,0,0,174341.8804,260181.5037,1564284183,0,496581377.8,702307948.6 + 04/12 22:00:00,97347463.77,0,73201263.64,0,87170.94019,130090.7518,952690818.7,0,354700984.2,702307948.6 + 04/12 23:00:00,144330514.9,0,175239686,0,87091.33724,129971.9553,1100998054,0,354700984.2,624273732.1 + 04/12 24:00:00,224946596,0,290168551.6,0,43510.63427,64933.69364,905514728.1,0,354700984.2,468205299.1 + 04/13 01:00:00,370214237.2,0,504076743.7,0,43510.63427,64933.69364,1264690561,0,212820590.5,234102649.5 + 04/13 02:00:00,1348412.477,0,0,0,21755.31713,32466.84682,196548202.7,0,141880393.7,0 + 04/13 03:00:00,227756854.4,0,284310566.9,0,21733.18294,32433.81455,707068612.2,0,141880393.7,0 + 04/13 04:00:00,337826002.7,0,469128593.1,0,21689.47303,32368.58346,1001563599,0,141880393.7,0 + 04/13 05:00:00,373176976.5,0,519296266.6,0,21663.93859,32330.47679,1086853138,0,141880393.7,0 + 04/13 06:00:00,219296590,0,403162025.3,0,21663.93859,32330.47679,816838510.7,0,141880393.7,0 + 04/13 07:00:00,59902983.21,0,68011650.89,0,21755.31713,32466.84682,323114424.3,0,141880393.7,156068433 + 04/13 08:00:00,221851778.6,0,323902806.8,0,87359.12823,130371.5968,1329585196,0,567521574.6,390171082.6 + 04/13 09:00:00,111187341.1,0,80343262.31,0,218800.7298,326530.2792,2154722236,0,567521574.6,390171082.6 + 04/13 10:00:00,0,0,0,0,219172.0931,327084.4883,1966523693,0,283760787.3,0 + 04/13 11:00:00,0,0,0,0,219342.107,327338.2109,1968049144,0,283760787.3,0 + 04/13 12:00:00,0,69582009.68,0,0,131605.2642,196402.9265,1180829487,69582009.68,283760787.3,0 + 04/13 13:00:00,0,209264606.5,0,68615529.53,131638.51,196452.5414,1181127785,277880136.1,283760787.3,0 + 04/13 14:00:00,0,250074593.8,0,204947414.1,131638.51,196452.5414,1181127785,455022007.9,283760787.3,0 + 04/13 15:00:00,0,249176849.8,0,316149345,131645.7751,196463.3836,1181192971,565326194.7,283760787.3,0 + 04/13 16:00:00,0,210115905.5,0,396648058.5,307156.5233,458389.2632,2755964832,606763964.1,283760787.3,0 + 04/13 17:00:00,0,102723718.5,0,339436302.7,394815.7925,589208.7796,3542488460,442160021.2,354700984.2,0 + 04/13 18:00:00,0,0,0,65682396.38,306840.9303,457918.2836,2753133170,65682396.38,141880393.7,0 + 04/13 19:00:00,0,0,0,0,306321.0217,457142.3908,2748468285,0,638461771.5,0 + 04/13 20:00:00,0,0,0,28404182.58,262077.3847,391114.7905,2351491831,28404182.58,638461771.5,702307948.6 + 04/13 21:00:00,0,0,0,0,218083.811,325460.3756,1956759072,0,496581377.8,702307948.6 + 04/13 22:00:00,0,0,0,0,174182.6745,259943.9105,1562855706,0,354700984.2,702307948.6 + 04/13 23:00:00,119779106.9,0,127407435.5,0,130531.9028,194801.0809,1418385284,0,354700984.2,624273732.1 + 04/13 24:00:00,219280278.7,0,285542516.1,0,86932.73176,129735.2582,1284827559,0,354700984.2,468205299.1 + 04/14 01:00:00,403742110.6,0,554832101.8,0,43327.87718,64660.95358,1347334003,0,212820590.5,234102649.5 + 04/14 02:00:00,45490735.89,0,55378703.9,0,21663.93859,32330.47679,295249335.2,0,141880393.7,0 + 04/14 03:00:00,389885727.8,0,545047175.3,0,21663.93859,32330.47679,1129312798,0,141880393.7,0 + 04/14 04:00:00,367927336,0,512455913.8,0,21663.93859,32330.47679,1074763145,0,141880393.7,0 + 04/14 05:00:00,411352604.6,0,574503219,0,21590.0852,32220.26067,1179573069,0,141880393.7,0 + 04/14 06:00:00,227560774.5,0,415306918.9,0,21689.47303,32368.58346,837476696.8,0,141880393.7,0 + 04/14 07:00:00,43660793.6,0,46321233.73,0,21755.31713,32466.84682,285181817.6,0,141880393.7,156068433 + 04/14 08:00:00,220828488.3,0,317452495.8,0,21808.3811,32546.03756,733956891.3,0,567521574.6,390171082.6 + 04/14 09:00:00,120707565.3,0,99239091.8,0,87420.59679,130463.3303,1004328795,0,567521574.6,390171082.6 + 04/14 10:00:00,92915830.28,0,0,0,131280.4379,195918.1675,1270830810,0,283760787.3,0 + 04/14 11:00:00,10247495.99,0,10772685.96,0,131461.5865,196188.5072,1200560519,0,283760787.3,0 + 04/14 12:00:00,0,0,0,0,87668.83723,130833.7953,786609477.2,0,283760787.3,0 + 04/14 13:00:00,0,129790068.7,0,0,87668.83723,130833.7953,786609477.2,129790068.7,283760787.3,0 + 04/14 14:00:00,0,204370747.3,0,26284412.88,131605.2642,196402.9265,1180829487,230655160.2,283760787.3,0 + 04/14 15:00:00,0,203034850.4,0,269063004.4,175435.03,261812.8805,1574092478,472097854.9,283760787.3,0 + 04/14 16:00:00,0,94010168.19,0,259126961.6,219293.7875,327266.1006,1967615597,353137129.8,283760787.3,0 + 04/14 17:00:00,0,15876478.1,0,244645708.2,263092.5337,392629.7621,2360600265,260522186.3,354700984.2,0 + 04/14 18:00:00,0,0,0,35440602.82,306743.7019,457773.1835,2752260787,35440602.82,141880393.7,0 + 04/14 19:00:00,44772111,0,0,0,175040.5838,261224.2233,1615325417,0,638461771.5,0 + 04/14 20:00:00,0,0,0,0,131130.8952,195694.9954,1176573206,0,638461771.5,702307948.6 + 04/14 21:00:00,0,0,0,0,87091.33724,129971.9553,781427853,0,496581377.8,702307948.6 + 04/14 22:00:00,111262672.5,0,103714331,0,86855.25993,129619.642,994286650.6,0,354700984.2,702307948.6 + 04/14 23:00:00,209582865.4,0,253702895.7,0,86757.89212,129474.3338,1241721775,0,354700984.2,624273732.1 + 04/14 24:00:00,271916555.5,0,350645414.3,0,86932.73176,129735.2582,1402566734,0,354700984.2,468205299.1 + 04/15 01:00:00,423908081.1,0,574779177.9,0,43378.94606,64737.16692,1387905266,0,212820590.5,234102649.5 + 04/15 02:00:00,9794787.906,0,0,0,21641.75532,32297.37128,203975643.7,0,141880393.7,0 + 04/15 03:00:00,370981845.5,0,503776291.6,0,21590.0852,32220.26067,1068475382,0,141880393.7,0 + 04/15 04:00:00,423273014.2,0,588425894.5,0,21614.05786,32256.0366,1205631249,0,141880393.7,0 + 04/15 05:00:00,452750771,0,629992702.6,0,21560.25688,32175.74597,1276193084,0,141880393.7,0 + 04/15 06:00:00,247100655,0,468290746.3,0,21614.05786,32256.0366,909323741.3,0,141880393.7,0 + 04/15 07:00:00,62924527.2,0,65148349.82,0,86855.25993,129619.642,907382524.1,0,141880393.7,156068433 + 04/15 08:00:00,220342196.7,0,318158384.9,0,348934.0977,520736.601,3669315097,0,567521574.6,390171082.6 + 04/15 09:00:00,117267771.7,0,73953390.05,0,305756.9488,456300.5889,2934628298,0,567521574.6,390171082.6 + 04/15 10:00:00,93333309.72,0,0,0,218918.8691,326706.5861,2057584949,0,283760787.3,0 + 04/15 11:00:00,9703685.927,0,6285322.085,0,175337.6745,261667.5906,1589207962,0,283760787.3,0 + 04/15 12:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,283760787.3,0 + 04/15 13:00:00,0,121901254.5,0,0,87751.06251,130956.5053,787347244.3,121901254.5,283760787.3,0 + 04/15 14:00:00,0,207118581.5,0,273098.2005,87763.97715,130975.7787,787463121,207391679.7,283760787.3,0 + 04/15 15:00:00,0,176771175.4,0,244225369.4,131645.9657,196463.668,1181194682,420996544.8,283760787.3,0 + 04/15 16:00:00,0,93021519.38,0,229402095.3,219398.5966,327422.514,1968555998,322423614.7,283760787.3,0 + 04/15 17:00:00,0,37864762.91,0,251227198.6,219398.5966,327422.514,1968555998,289091961.6,354700984.2,0 + 04/15 18:00:00,0,0,0,35072786.24,307078.9498,458273.4952,2755268802,35072786.24,141880393.7,0 + 04/15 19:00:00,0,0,0,0,306743.7019,457773.1835,2752260787,0,638461771.5,0 + 04/15 20:00:00,0,0,0,66930800.08,175282.1154,261584.6763,1572720450,66930800.08,638461771.5,702307948.6 + 04/15 21:00:00,0,0,0,12832236.32,174954.133,261095.2073,1569777625,12832236.32,496581377.8,702307948.6 + 04/15 22:00:00,0,0,0,0,87304.10114,130289.4764,783336879.1,0,354700984.2,702307948.6 + 04/15 23:00:00,54649014.49,0,32034090.08,0,87233.52442,130184.1503,869386733.4,0,354700984.2,624273732.1 + 04/15 24:00:00,186327131.2,0,235842030.5,0,43545.66862,64985.97763,812883088.2,0,354700984.2,468205299.1 + 04/16 01:00:00,352794703.7,0,477341107.9,0,43510.63427,64933.69364,1220535392,0,212820590.5,234102649.5 + 04/16 02:00:00,11910045.85,0,0,0,21733.18294,32433.81455,206911236.8,0,141880393.7,0 + 04/16 03:00:00,245223732.7,0,310165561.7,0,21713.81498,32404.91051,750216706.1,0,141880393.7,0 + 04/16 04:00:00,326655933.2,0,451239651.8,0,21713.81498,32404.91051,972722996.7,0,141880393.7,0 + 04/16 05:00:00,328307657.4,0,451937573,0,21733.18294,32433.81455,975246421.4,0,141880393.7,0 + 04/16 06:00:00,319048122.2,0,439102156.2,0,21733.18294,32433.81455,953151469.4,0,141880393.7,0 + 04/16 07:00:00,232127367.1,0,314447625.9,0,87021.26854,129867.3873,1327374154,0,141880393.7,156068433 + 04/16 08:00:00,280013988.7,0,380104221.1,0,348683.7608,520363.0073,3788686575,0,567521574.6,390171082.6 + 04/16 09:00:00,359833161.2,0,488841042.3,0,305756.9488,456300.5889,3592081339,0,567521574.6,390171082.6 + 04/16 10:00:00,246811302.2,0,333707666.5,0,218918.8691,326706.5861,2544770608,0,283760787.3,0 + 04/16 11:00:00,146570741.1,0,221650977.6,0,175395.0225,261753.1747,1941955229,0,283760787.3,0 + 04/16 12:00:00,24579022.05,0,81358139.09,0,87763.85009,130975.5891,893399142.1,0,283760787.3,0 + 04/16 13:00:00,0,23855174.51,0,0,87759.43865,130969.0056,787422399.2,23855174.51,283760787.3,0 + 04/16 14:00:00,0,144624051.3,0,8769273.489,87763.97715,130975.7787,787463121,153393324.8,283760787.3,0 + 04/16 15:00:00,0,46238521.16,0,42715858.33,131638.51,196452.5414,1181127785,88954379.49,283760787.3,0 + 04/16 16:00:00,0,5240578.869,0,43138788.25,219409.9429,327439.4467,1968657803,48379367.12,283760787.3,0 + 04/16 17:00:00,0,0,0,0,219409.6252,327438.9727,1968654952,0,354700984.2,0 + 04/16 18:00:00,73542326.84,0,0,0,307128.7188,458347.7687,2829257682,0,141880393.7,0 + 04/16 19:00:00,0,0,0,0,306840.9303,457918.2836,2753133170,0,638461771.5,0 + 04/16 20:00:00,0,0,0,0,175206.1415,261471.2956,1572038774,0,638461771.5,702307948.6 + 04/16 21:00:00,0,0,0,0,175135.0953,261365.2689,1571401311,0,496581377.8,702307948.6 + 04/16 22:00:00,0,0,0,0,87420.59679,130463.3303,784382137.5,0,354700984.2,702307948.6 + 04/16 23:00:00,18279271.86,0,0,0,87304.10114,130289.4764,801616151,0,354700984.2,624273732.1 + 04/16 24:00:00,187127706.3,0,222147206.5,0,43585.4701,65045.37591,800345958.4,0,354700984.2,468205299.1 + 04/17 01:00:00,347428859.5,0,473438712.3,0,43545.66862,64985.97763,1211581498,0,212820590.5,234102649.5 + 04/17 02:00:00,13723963.67,0,0,0,21733.18294,32433.81455,208725154.6,0,141880393.7,0 + 04/17 03:00:00,251175638.5,0,326226317.6,0,21713.81498,32404.91051,772229367.9,0,141880393.7,0 + 04/17 04:00:00,333640303.8,0,464396570.4,0,21713.81498,32404.91051,992864286,0,141880393.7,0 + 04/17 05:00:00,344886500.6,0,478966006,0,21713.81498,32404.91051,1018679918,0,141880393.7,0 + 04/17 06:00:00,327571964.8,0,459096298.4,0,21713.81498,32404.91051,981495675,0,141880393.7,0 + 04/17 07:00:00,159297864.9,0,206979230.1,0,87021.26854,129867.3873,1147076256,0,141880393.7,156068433 + 04/17 08:00:00,220291200.1,0,323961451.4,0,349436.5129,521486.3874,3679575093,0,567521574.6,390171082.6 + 04/17 09:00:00,153259180.1,0,97476845.38,0,305972.0888,456621.656,2996073507,0,567521574.6,390171082.6 + 04/17 10:00:00,184003185.6,0,149414120,0,218800.7298,326530.2792,2296608938,0,283760787.3,0 + 04/17 11:00:00,60949409.63,0,107313669.2,0,175337.6745,261667.5906,1741482033,0,283760787.3,0 + 04/17 12:00:00,0,0,56747369.99,0,87736.84279,130935.2843,843967027.7,0,283760787.3,0 + 04/17 13:00:00,0,0,7252412.993,0,87736.84279,130935.2843,794472070.7,0,283760787.3,0 + 04/17 14:00:00,0,35055519.31,0,0,87736.84279,130935.2843,787219657.7,35055519.31,283760787.3,0 + 04/17 15:00:00,0,16564504.5,0,0,131576.2725,196359.6604,1180569358,16564504.5,283760787.3,0 + 04/17 16:00:00,0,0,0,0,219293.7875,327266.1006,1967615597,0,283760787.3,0 + 04/17 17:00:00,0,0,0,0,219172.0931,327084.4883,1966523693,0,354700984.2,0 + 04/17 18:00:00,269214259.9,0,59672647.21,0,306610.7476,457574.7673,3079954761,0,141880393.7,0 + 04/17 19:00:00,141178439.2,0,163255362.9,0,305972.0888,456621.656,3049771283,0,638461771.5,0 + 04/17 20:00:00,0,0,0,0,174467.0488,260368.3005,1565407258,0,638461771.5,702307948.6 + 04/17 21:00:00,87179956.42,0,62026165.87,0,174182.6745,259943.9105,1712061828,0,496581377.8,702307948.6 + 04/17 22:00:00,182826148.1,0,221048977.7,0,86932.73176,129735.2582,1183879890,0,354700984.2,702307948.6 + 04/17 23:00:00,242905066.8,0,308520045.9,0,86855.25993,129619.642,1330734760,0,354700984.2,624273732.1 + 04/17 24:00:00,332104050.1,0,439300185.4,0,43327.87718,64660.95358,1160164026,0,354700984.2,468205299.1 + 04/18 01:00:00,472313204.6,0,647234523.2,0,43378.94606,64737.16692,1508765734,0,212820590.5,234102649.5 + 04/18 02:00:00,30851763.76,0,14834031.12,0,21641.75532,32297.37128,239866650.6,0,141880393.7,0 + 04/18 03:00:00,384802037.9,0,512174121.9,0,21614.05786,32256.0366,1090908500,0,141880393.7,0 + 04/18 04:00:00,429170043.4,0,597313085.4,0,21641.75532,32297.37128,1220663984,0,141880393.7,0 + 04/18 05:00:00,444250078,0,640260141.4,0,21560.25688,32175.74597,1277959830,0,141880393.7,0 + 04/18 06:00:00,235325089.3,0,456728193.1,0,21663.93859,32330.47679,886433177.8,0,141880393.7,0 + 04/18 07:00:00,80354016.16,0,95583030.13,0,86932.73176,129735.2582,955941810.1,0,141880393.7,156068433 + 04/18 08:00:00,222615538.8,0,327771904.6,0,349216.4046,521157.9056,3683734960,0,567521574.6,390171082.6 + 04/18 09:00:00,220165224.7,0,226158014.4,0,305972.0888,456621.656,3191660720,0,567521574.6,390171082.6 + 04/18 10:00:00,220494550.4,0,290433396.4,0,218918.8691,326706.5861,2475179586,0,283760787.3,0 + 04/18 11:00:00,154355028.2,0,241842686.9,0,175206.1415,261471.2956,1968236489,0,283760787.3,0 + 04/18 12:00:00,22598685.94,0,138862123.6,0,87697.51124,130876.5874,948327564.5,0,283760787.3,0 + 04/18 13:00:00,0,0,60780448.95,0,87697.51124,130876.5874,847647203.9,0,283760787.3,0 + 04/18 14:00:00,0,0,7143261.396,0,87641.05768,130792.3381,793503486.3,0,283760787.3,0 + 04/18 15:00:00,0,0,0,0,131503.2558,196250.693,1179914216,0,283760787.3,0 + 04/18 16:00:00,0,0,0,0,219102.6442,326980.8453,1965900562,0,283760787.3,0 + 04/18 17:00:00,16344256.46,0,0,0,219007.6769,326839.1195,1981392724,0,354700984.2,0 + 04/18 18:00:00,299283360.5,0,46974234.05,0,306321.0217,457142.3908,3094725880,0,141880393.7,0 + 04/18 19:00:00,147732617.1,0,163955067.2,0,305972.0888,456621.656,3057025165,0,638461771.5,0 + 04/18 20:00:00,0,0,0,0,174608.2023,260578.9528,1566673758,0,638461771.5,702307948.6 + 04/18 21:00:00,34942748.29,0,0,0,174608.2023,260578.9528,1601616507,0,496581377.8,702307948.6 + 04/18 22:00:00,146137831.5,0,153808230.1,0,87021.26854,129867.3873,1080745223,0,354700984.2,702307948.6 + 04/18 23:00:00,213489061.6,0,260112756,0,87021.26854,129867.3873,1254400979,0,354700984.2,624273732.1 + 04/18 24:00:00,293395169.6,0,376817349,0,43466.36588,64867.6291,1060214901,0,354700984.2,468205299.1 + 04/19 01:00:00,450980835.9,0,610554345.3,0,43427.62997,64809.82102,1451190005,0,212820590.5,234102649.5 + 04/19 02:00:00,3359989.527,0,0,0,21713.81498,32404.91051,198187401.3,0,141880393.7,0 + 04/19 03:00:00,335829775.1,0,433668876.1,0,21713.81498,32404.91051,964326063,0,141880393.7,0 + 04/19 04:00:00,392101041.7,0,539660756.4,0,21689.47303,32368.58346,1126370801,0,141880393.7,0 + 04/19 05:00:00,398629957.1,0,570328996.1,0,21663.93859,32330.47679,1163338849,0,141880393.7,0 + 04/19 06:00:00,196724367.8,0,396176486.1,0,21713.81498,32404.91051,787728265.6,0,141880393.7,0 + 04/19 07:00:00,33166843.12,0,34346030.16,0,87091.33724,129971.9553,848940726.3,0,141880393.7,156068433 + 04/19 08:00:00,221917494.9,0,311443739.1,0,349436.5129,521486.3874,3668683675,0,567521574.6,390171082.6 + 04/19 09:00:00,121911721.8,0,76978914.14,0,306486.4168,457389.2205,2948842930,0,567521574.6,390171082.6 + 04/19 10:00:00,98051917.37,0,0,0,219293.7875,327266.1006,2065667514,0,283760787.3,0 + 04/19 11:00:00,7121414.332,0,0,0,175473.6856,261870.5687,1581560730,0,283760787.3,0 + 04/19 12:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,283760787.3,0 + 04/19 13:00:00,0,166671286,0,0,87763.97715,130975.7787,787463121,166671286,283760787.3,0 + 04/19 14:00:00,0,204778830,0,85353680.13,87759.43865,130969.0056,787422399.2,290132510.1,283760787.3,0 + 04/19 15:00:00,0,195206439.4,0,246995956.1,131639.158,196453.5084,1181133599,442202395.5,283760787.3,0 + 04/19 16:00:00,0,132061735.2,0,320473489.9,219409.6252,327438.9727,1968654952,452535225.1,283760787.3,0 + 04/19 17:00:00,0,31592874.36,0,286843450.4,219342.107,327338.2109,1968049144,318436324.7,354700984.2,0 + 04/19 18:00:00,0,0,0,46385723.16,306840.9303,457918.2836,2753133170,46385723.16,141880393.7,0 + 04/19 19:00:00,44532738.17,0,0,0,306321.0217,457142.3908,2793001023,0,638461771.5,0 + 04/19 20:00:00,0,0,0,0,174841.1936,260926.6606,1568764275,0,638461771.5,702307948.6 + 04/19 21:00:00,0,0,0,0,174718.2565,260743.1937,1567661221,0,496581377.8,702307948.6 + 04/19 22:00:00,46427850.04,0,0,0,87304.10114,130289.4764,829764729.2,0,354700984.2,702307948.6 + 04/19 23:00:00,123346651.5,0,129672267.2,0,87304.10114,130289.4764,1036355798,0,354700984.2,624273732.1 + 04/19 24:00:00,187963936,0,225962547.8,0,43679.56412,65185.79842,805841788.9,0,354700984.2,468205299.1 + 04/20 01:00:00,335052591.8,0,442780383.1,0,43652.05057,65144.7382,1169501415,0,212820590.5,234102649.5 + 04/20 02:00:00,0,0,0,0,21808.3811,32546.03756,195675907.2,0,141880393.7,0 + 04/20 03:00:00,213862737,0,228714486.4,0,21792.73505,32522.68796,638112746.2,0,141880393.7,0 + 04/20 04:00:00,300156335.6,0,403495390.3,0,21792.73505,32522.68796,899187248.7,0,141880393.7,0 + 04/20 05:00:00,303116266.3,0,427521725.3,0,21772.83431,32492.98881,925994954.9,0,141880393.7,0 + 04/20 06:00:00,126652880.8,0,268438671.4,0,21826.02528,32572.3691,590925772,0,141880393.7,0 + 04/20 07:00:00,8744510.638,0,8648979.496,0,21855.1492,32615.83257,213489024.5,0,141880393.7,156068433 + 04/20 08:00:00,211521884.7,0,294182072.8,0,87603.07075,130735.6478,1291723344,0,567521574.6,390171082.6 + 04/20 09:00:00,53796404.92,0,5213953.608,0,219293.7875,327266.1006,2026625956,0,567521574.6,390171082.6 + 04/20 10:00:00,0,0,0,0,219409.6252,327438.9727,1968654952,0,283760787.3,0 + 04/20 11:00:00,0,0,0,0,219398.5966,327422.514,1968555998,0,283760787.3,0 + 04/20 12:00:00,0,127590316,0,33866823.54,131583.5022,196370.4498,1180634227,161457139.5,283760787.3,0 + 04/20 13:00:00,0,250485992.6,0,163949147.5,131583.5022,196370.4498,1180634227,414435140.1,283760787.3,0 + 04/20 14:00:00,0,112720868.4,0,95072360.39,131639.158,196453.5084,1181133599,207793228.8,283760787.3,0 + 04/20 15:00:00,0,40777982.87,0,25792321.11,131639.158,196453.5084,1181133599,66570303.98,283760787.3,0 + 04/20 16:00:00,0,0,0,0,307158.0353,458391.5196,2755978397,0,283760787.3,0 + 04/20 17:00:00,0,0,0,0,394937.8972,589391.0041,3543584045,0,354700984.2,0 + 04/20 18:00:00,15889326.85,0,23536692.53,0,307156.5233,458389.2632,2795390851,0,141880393.7,0 + 04/20 19:00:00,283045.6217,0,0,0,307128.7188,458347.7687,2755998401,0,638461771.5,0 + 04/20 20:00:00,0,0,0,9224201.046,263210.5284,392805.853,2361658973,9224201.046,638461771.5,702307948.6 + 04/20 21:00:00,0,57204455.58,0,123771947.2,219293.7875,327266.1006,1967615597,180976402.7,496581377.8,702307948.6 + 04/20 22:00:00,0,0,0,6227443.422,175395.0225,261753.1747,1573733510,6227443.422,354700984.2,702307948.6 + 04/20 23:00:00,0,0,0,0,131546.2669,196314.8811,1180300132,0,354700984.2,624273732.1 + 04/20 24:00:00,0,0,0,0,87668.83723,130833.7953,786609477.2,0,354700984.2,468205299.1 + 04/21 01:00:00,131858566.1,0,158417966.6,0,43820.52884,65396.16907,683456645.1,0,212820590.5,234102649.5 + 04/21 02:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 04/21 03:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 04/21 04:00:00,56371961.91,0,59958840.49,0,21900.76769,32683.91195,312835649.1,0,141880393.7,0 + 04/21 05:00:00,89658624.79,0,116000104.7,0,21900.76769,32683.91195,402163576.2,0,141880393.7,0 + 04/21 06:00:00,84631392.3,0,114508318.5,0,21891.88691,32670.65861,395564874.7,0,141880393.7,0 + 04/21 07:00:00,2759157.858,0,2163339.731,0,21924.37781,32719.14684,201639186.3,0,141880393.7,156068433 + 04/21 08:00:00,177081212.7,0,253177614.3,0,21934.2107,32733.82109,627063741.4,0,567521574.6,390171082.6 + 04/21 09:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,567521574.6,390171082.6 + 04/21 10:00:00,0,0,0,0,131627.6227,196436.2936,1181030099,0,283760787.3,0 + 04/21 11:00:00,0,84096675.01,0,120917966.8,131464.7418,196193.216,1179568648,205014641.9,283760787.3,0 + 04/21 12:00:00,0,283634580.3,0,246270591.4,87570.20432,130686.5991,785724492.5,529905171.7,283760787.3,0 + 04/21 13:00:00,0,420722635.7,0,386928706.3,87308.15043,130295.5194,783373211.4,807651342,283760787.3,0 + 04/21 14:00:00,0,470879144.4,0,531469057.3,130856.8028,195285.9498,1174113909,1002348202,283760787.3,0 + 04/21 15:00:00,0,466028470,0,644635863.9,174192.4357,259958.4778,1562943289,1110664334,283760787.3,0 + 04/21 16:00:00,0,407840355.6,0,656705975.7,217938.8221,325243.9994,1955458157,1064546331,283760787.3,0 + 04/21 17:00:00,0,247703668.2,0,411184131.9,262120.417,391179.0104,2351877939,658887800.1,354700984.2,0 + 04/21 18:00:00,0,24764084.1,0,41913408.7,306946.707,458076.141,2754082253,66677492.8,141880393.7,0 + 04/21 19:00:00,0,59372660.02,0,101967994.8,175475.6666,261873.5251,1574457090,161340654.9,638461771.5,0 + 04/21 20:00:00,0,296238507,0,476419085.5,131639.158,196453.5084,1181133599,772657592.5,638461771.5,702307948.6 + 04/21 21:00:00,0,181603090.5,0,309900245.7,87763.97715,130975.7787,787463121,491503336.2,496581377.8,702307948.6 + 04/21 22:00:00,0,55239623.04,0,121402140.7,87751.06251,130956.5053,787347244.3,176641763.8,354700984.2,702307948.6 + 04/21 23:00:00,0,0,0,2069833.219,87697.51124,130876.5874,786866755,2069833.219,354700984.2,624273732.1 + 04/21 24:00:00,0,0,0,0,87567.54766,130682.6344,785700655.5,0,354700984.2,468205299.1 + 04/22 01:00:00,219479878.7,0,247690052.2,0,43760.14595,65306.05583,859808257.4,0,212820590.5,234102649.5 + 04/22 02:00:00,0,0,0,0,21826.02528,32572.3691,195834219.8,0,141880393.7,0 + 04/22 03:00:00,138841270.6,0,199854018.8,0,21826.02528,32572.3691,534529509.1,0,141880393.7,0 + 04/22 04:00:00,253104414.8,0,344372167.6,0,21792.73505,32522.68796,793012105.2,0,141880393.7,0 + 04/22 05:00:00,284509231.7,0,416768503.3,0,21755.31713,32466.84682,896477525.3,0,141880393.7,0 + 04/22 06:00:00,87333103.34,0,252997099.9,0,21792.73505,32522.68796,535865726.1,0,141880393.7,0 + 04/22 07:00:00,0,0,0,0,87304.10114,130289.4764,783336879.1,0,141880393.7,156068433 + 04/22 08:00:00,165424428.1,0,221092276.1,0,349682.3872,521853.3211,3524045254,0,567521574.6,390171082.6 + 04/22 09:00:00,110738176.6,0,89978968.08,0,306321.0217,457142.3908,2949185430,0,567521574.6,390171082.6 + 04/22 10:00:00,112482782.6,0,3503943.975,0,219102.6442,326980.8453,2081887289,0,283760787.3,0 + 04/22 11:00:00,24015363.04,0,50724016.91,0,175395.0225,261753.1747,1648472890,0,283760787.3,0 + 04/22 12:00:00,0,0,3148985.956,0,87736.84279,130935.2843,790368643.6,0,283760787.3,0 + 04/22 13:00:00,0,97988495.03,0,0,87759.00667,130968.3609,787418523.3,97988495.03,283760787.3,0 + 04/22 14:00:00,0,214051140.4,0,17222281.95,87763.97715,130975.7787,787463121,231273422.3,283760787.3,0 + 04/22 15:00:00,0,196966072.5,0,266554668.3,131645.7751,196463.3836,1181192971,463520740.8,283760787.3,0 + 04/22 16:00:00,0,116031090.2,0,304769666.4,219409.6252,327438.9727,1968654952,420800756.6,283760787.3,0 + 04/22 17:00:00,0,31979504.48,0,289373600,219397.5167,327420.9023,1968546308,321353104.5,354700984.2,0 + 04/22 18:00:00,0,0,0,57520571.07,307078.9498,458273.4952,2755268802,57520571.07,141880393.7,0 + 04/22 19:00:00,0,0,0,0,306743.7019,457773.1835,2752260787,0,638461771.5,0 + 04/22 20:00:00,0,0,0,13419871.2,175040.5838,261224.2233,1570553306,13419871.2,638461771.5,702307948.6 + 04/22 21:00:00,0,0,0,0,174841.1936,260926.6606,1568764275,0,496581377.8,702307948.6 + 04/22 22:00:00,0,0,0,0,87304.10114,130289.4764,783336879.1,0,354700984.2,702307948.6 + 04/22 23:00:00,123356937.6,0,108402856.5,0,87233.52442,130184.1503,1014463423,0,354700984.2,624273732.1 + 04/22 24:00:00,232090380.7,0,295438031.8,0,43510.63427,64933.69364,917927993,0,354700984.2,468205299.1 + 04/23 01:00:00,391581269.2,0,532026527.3,0,43510.63427,64933.69364,1314007377,0,212820590.5,234102649.5 + 04/23 02:00:00,38506802.02,0,35713838.57,0,21713.81498,32404.91051,269048052.4,0,141880393.7,0 + 04/23 03:00:00,382369953,0,527380300.5,0,21713.81498,32404.91051,1104577665,0,141880393.7,0 + 04/23 04:00:00,362628346.2,0,502128143.1,0,21713.81498,32404.91051,1059583901,0,141880393.7,0 + 04/23 05:00:00,363248435.7,0,525743907.2,0,21689.47303,32368.58346,1083601346,0,141880393.7,0 + 04/23 06:00:00,170661809,0,365252979.8,0,21713.81498,32404.91051,730742200.6,0,141880393.7,0 + 04/23 07:00:00,13909863.03,0,20318789.45,0,87233.52442,130184.1503,816932281.3,0,141880393.7,156068433 + 04/23 08:00:00,209902700.7,0,286742588.5,0,350081.1676,522448.4467,3637751901,0,567521574.6,390171082.6 + 04/23 09:00:00,106611073.8,0,94468808.78,0,306743.7019,457773.1835,2953340670,0,567521574.6,390171082.6 + 04/23 10:00:00,34233519.92,0,0,0,219243.7781,327191.4684,2001400407,0,283760787.3,0 + 04/23 11:00:00,525928.553,0,0,0,175473.6856,261870.5687,1574965244,0,283760787.3,0 + 04/23 12:00:00,0,31277439.29,0,0,87751.06251,130956.5053,787347244.3,31277439.29,283760787.3,0 + 04/23 13:00:00,0,242662815.7,0,0,87763.85009,130975.5891,787461980.9,242662815.7,283760787.3,0 + 04/23 14:00:00,0,309195045.3,0,235558956.3,87759.43865,130969.0056,787422399.2,544754001.6,283760787.3,0 + 04/23 15:00:00,0,266780412.3,0,335827857.1,131639.158,196453.5084,1181133599,602608269.4,283760787.3,0 + 04/23 16:00:00,0,208012478.9,0,375633109.4,219398.5966,327422.514,1968555998,583645588.3,283760787.3,0 + 04/23 17:00:00,0,123611938.8,0,363364623.3,219409.9429,327439.4467,1968657803,486976562.2,354700984.2,0 + 04/23 18:00:00,0,0,0,120255736.6,307128.7188,458347.7687,2755715355,120255736.6,141880393.7,0 + 04/23 19:00:00,0,0,0,70991713.94,306840.9303,457918.2836,2753133170,70991713.94,638461771.5,0 + 04/23 20:00:00,0,102603681.8,0,217424813.5,175135.0953,261365.2689,1571401311,320028495.3,638461771.5,702307948.6 + 04/23 21:00:00,0,22826393.29,0,71126532.05,175040.5838,261224.2233,1570553306,93952925.34,496581377.8,702307948.6 + 04/23 22:00:00,0,0,0,0,87477.0665,130547.6036,784888812.5,0,354700984.2,702307948.6 + 04/23 23:00:00,0,0,0,0,87477.0665,130547.6036,784888812.5,0,354700984.2,624273732.1 + 04/23 24:00:00,59982754.25,0,29338219.99,0,43710.2984,65231.66514,481512043,0,354700984.2,468205299.1 + 04/24 01:00:00,248065465.5,0,332816630.5,0,43710.2984,65231.66514,973073164.8,0,212820590.5,234102649.5 + 04/24 02:00:00,0,0,0,0,21855.1492,32615.83257,196095534.4,0,141880393.7,0 + 04/24 03:00:00,110083496.7,0,111119027.2,0,21855.1492,32615.83257,417298058.3,0,141880393.7,0 + 04/24 04:00:00,184931945.5,0,250850461.9,0,21855.1492,32615.83257,631877941.7,0,141880393.7,0 + 04/24 05:00:00,216231790.7,0,292618252.6,0,21855.1492,32615.83257,704945577.7,0,141880393.7,0 + 04/24 06:00:00,217482256,0,309740673,0,21839.78206,32592.89921,723180581.5,0,141880393.7,0 + 04/24 07:00:00,186951828.7,0,244704559.9,0,87359.12823,130371.5968,1215486999,0,141880393.7,156068433 + 04/24 08:00:00,310126812.9,0,422603474.5,0,349436.5129,521486.3874,3868052728,0,567521574.6,390171082.6 + 04/24 09:00:00,503932161.2,0,705344087.4,0,305756.9488,456300.5889,3952683385,0,567521574.6,390171082.6 + 04/24 10:00:00,490626536.3,0,681730959.3,0,218397.8206,325928.9921,3131934021,0,283760787.3,0 + 04/24 11:00:00,430901843.7,0,603258856.9,0,174954.133,261095.2073,2603938326,0,283760787.3,0 + 04/24 12:00:00,420318960.1,0,589893716,0,87477.0665,130547.6036,1795101489,0,283760787.3,0 + 04/24 13:00:00,452878409.7,0,630951167.7,0,87477.0665,130547.6036,1868718390,0,283760787.3,0 + 04/24 14:00:00,473835694.6,0,657173695.9,0,87477.0665,130547.6036,1915898203,0,283760787.3,0 + 04/24 15:00:00,496637535.9,0,686492404.5,0,131215.5998,195821.4055,2360463159,0,283760787.3,0 + 04/24 16:00:00,498048268.5,0,688046782,0,218692.6663,326369.0091,3148317082,0,283760787.3,0 + 04/24 17:00:00,489355912.7,0,671877611.6,0,218692.6663,326369.0091,3123455556,0,354700984.2,0 + 04/24 18:00:00,531808381,0,733839411.9,0,306169.7328,456916.6127,4012758637,0,141880393.7,0 + 04/24 19:00:00,298303515.8,0,383770972.5,0,306169.7328,456916.6127,3429185332,0,638461771.5,0 + 04/24 20:00:00,62158054.71,0,31926258.3,0,174954.133,261095.2073,1663861938,0,638461771.5,702307948.6 + 04/24 21:00:00,102457289.3,0,91350641.88,0,174954.133,261095.2073,1763585556,0,496581377.8,702307948.6 + 04/24 22:00:00,149212713.7,0,161147488.3,0,87477.0665,130547.6036,1095249015,0,354700984.2,702307948.6 + 04/24 23:00:00,175404687.3,0,200353067.4,0,87477.0665,130547.6036,1160646567,0,354700984.2,624273732.1 + 04/24 24:00:00,227448702.7,0,277977792.8,0,43738.53325,65273.80182,897870901.7,0,354700984.2,468205299.1 + 04/25 01:00:00,353828948.6,0,466783636.8,0,43738.53325,65273.80182,1213056992,0,212820590.5,234102649.5 + 04/25 02:00:00,0,0,0,0,21880.07298,32653.02792,196319163.2,0,141880393.7,0 + 04/25 03:00:00,132506180.1,0,167003729.9,0,21891.88691,32670.65861,495935073.9,0,141880393.7,0 + 04/25 04:00:00,198624195.7,0,252667714.1,0,21891.88691,32670.65861,647717073.7,0,141880393.7,0 + 04/25 05:00:00,199291306.7,0,258547102.9,0,21891.88691,32670.65861,654263573.5,0,141880393.7,0 + 04/25 06:00:00,187155712.3,0,242616398.1,0,21891.88691,32670.65861,626197274.3,0,141880393.7,0 + 04/25 07:00:00,115615943.6,0,140436893.6,0,87567.54766,130682.6344,1041753493,0,141880393.7,156068433 + 04/25 08:00:00,220395164.3,0,324416954.2,0,350564.2307,523169.3525,3690253018,0,567521574.6,390171082.6 + 04/25 09:00:00,258055238.4,0,308496304.9,0,307011.3024,458172.5408,3321213379,0,567521574.6,390171082.6 + 04/25 10:00:00,315695520.9,0,428812010.5,0,219293.7875,327266.1006,2712123128,0,283760787.3,0 + 04/25 11:00:00,250664756.8,0,344002340.1,0,175527.7002,261951.1781,2169591059,0,283760787.3,0 + 04/25 12:00:00,156466828.4,0,249412749.3,0,87736.84279,130935.2843,1193099235,0,283760787.3,0 + 04/25 13:00:00,96060047.07,0,196178451.6,0,87763.85009,130975.5891,1079700480,0,283760787.3,0 + 04/25 14:00:00,109376532.2,0,179534319.7,0,87759.00667,130968.3609,1076329375,0,283760787.3,0 + 04/25 15:00:00,93639501.12,0,131516314.4,0,131605.2642,196402.9265,1405985302,0,283760787.3,0 + 04/25 16:00:00,111672527.9,0,76940771.88,0,219102.6442,326980.8453,2154513862,0,283760787.3,0 + 04/25 17:00:00,217758899.1,0,196091862,0,218692.6663,326369.0091,2376072792,0,354700984.2,0 + 04/25 18:00:00,410136965.2,0,436620405.8,0,305564.354,456013.1674,3588436448,0,141880393.7,0 + 04/25 19:00:00,269807599.4,0,312632002.2,0,305098.2907,455317.6314,3319936921,0,638461771.5,0 + 04/25 20:00:00,96260423.54,0,89551546.48,0,174042.5371,259734.7745,1747410292,0,638461771.5,702307948.6 + 04/25 21:00:00,166424271.6,0,189629566,0,174042.5371,259734.7745,1917652159,0,496581377.8,702307948.6 + 04/25 22:00:00,241043323.5,0,298604006.8,0,86932.73176,129735.2582,1319652094,0,354700984.2,702307948.6 + 04/25 23:00:00,289864147.2,0,369320767.9,0,86932.73176,129735.2582,1439189679,0,354700984.2,624273732.1 + 04/25 24:00:00,376522068.5,0,496564920.8,0,43378.94606,64737.16692,1262304996,0,354700984.2,468205299.1 + 04/26 01:00:00,539573213.6,0,737824541.5,0,43327.87718,64660.95358,1666157546,0,212820590.5,234102649.5 + 04/26 02:00:00,102030296.7,0,104938640,0,21590.0852,32220.26067,400686181.8,0,141880393.7,0 + 04/26 03:00:00,520473392.3,0,728071454.4,0,21534.52267,32137.34116,1441763557,0,141880393.7,0 + 04/26 04:00:00,562195906.1,0,784302711.8,0,21502.59811,32089.69811,1539430884,0,141880393.7,0 + 04/26 05:00:00,574700384.1,0,830598435.9,0,21441.14849,31997.99291,1597679729,0,141880393.7,0 + 04/26 06:00:00,372770058.8,0,675016133.6,0,21441.14849,31997.99291,1240167101,0,141880393.7,0 + 04/26 07:00:00,254049791.9,0,336782671.7,0,85900.52887,128194.836,1361575777,0,141880393.7,156068433 + 04/26 08:00:00,416991231.1,0,517393694.1,0,344041.5698,513435.1697,4021301188,0,567521574.6,390171082.6 + 04/26 09:00:00,518358110.7,0,657225764.7,0,301843.5964,450460.4436,3883878419,0,567521574.6,390171082.6 + 04/26 10:00:00,498577614,0,624657230.3,0,215602.5688,321757.4597,3057730947,0,283760787.3,0 + 04/26 11:00:00,411534331.5,0,608549325.2,0,173134.0425,258378.9702,2573530503,0,283760787.3,0 + 04/26 12:00:00,311651928.2,0,602140067.7,0,86655.75436,129321.9072,1691311577,0,283760787.3,0 + 04/26 13:00:00,237611335.7,0,554664496.3,0,86757.89212,129474.3338,1570711845,0,283760787.3,0 + 04/26 14:00:00,183726131.9,0,410849807.1,0,87021.26854,129867.3873,1375375100,0,283760787.3,0 + 04/26 15:00:00,207339176.8,0,305170591.1,0,130399.0976,194602.8873,1682516914,0,283760787.3,0 + 04/26 16:00:00,294949077.6,0,279180437.6,0,217138.1498,324049.1051,2522403633,0,283760787.3,0 + 04/26 17:00:00,391366010.6,0,311319215.3,0,216639.3859,323304.7679,2646484180,0,354700984.2,0 + 04/26 18:00:00,626991313.4,0,525690205.3,0,302984.5745,452163.1979,3871213499,0,141880393.7,0 + 04/26 19:00:00,488640524.9,0,558003677,0,302261.1928,451083.6494,3758685634,0,638461771.5,0 + 04/26 20:00:00,316060910.2,0,390098498,0,172276.1814,257098.7293,2251909086,0,638461771.5,702307948.6 + 04/26 21:00:00,389493847.1,0,498110850.6,0,172276.1814,257098.7293,2433354376,0,496581377.8,702307948.6 + 04/26 22:00:00,466212511.5,0,612220482.6,0,86010.39245,128358.7924,1850162060,0,354700984.2,702307948.6 + 04/26 23:00:00,537080761.4,0,716700254.9,0,85764.59395,127991.9717,2023304653,0,354700984.2,624273732.1 + 04/26 24:00:00,639817819.1,0,868047180.1,0,42751.95869,63801.47369,1891457356,0,354700984.2,468205299.1 + 04/27 01:00:00,808274916.2,0,1117187136,0,42677.78338,63690.77715,2308388870,0,212820590.5,234102649.5 + 04/27 02:00:00,342310396.6,0,442402305.8,0,21307.16634,31798.04281,975891455.3,0,141880393.7,0 + 04/27 03:00:00,740884766.2,0,1038080794,0,21268.12453,31739.77823,1969794010,0,141880393.7,0 + 04/27 04:00:00,777362777,0,1086592178,0,21234.78935,31690.03002,2054484305,0,141880393.7,0 + 04/27 05:00:00,757204997.7,0,1092601030,0,21234.78935,31690.03002,2040335377,0,141880393.7,0 + 04/27 06:00:00,489429313.2,0,869270923.8,0,21268.12453,31739.77823,1549528687,0,141880393.7,0 + 04/27 07:00:00,370766755.4,0,497286041.4,0,21307.16634,31798.04281,1059231550,0,141880393.7,156068433 + 04/27 08:00:00,496313159.3,0,634370910.1,0,85624.23218,127782.5009,1898948308,0,567521574.6,390171082.6 + 04/27 09:00:00,578164804.1,0,717431412.3,0,215025.9811,320896.9811,3224918880,0,567521574.6,390171082.6 + 04/27 10:00:00,482341900.9,0,582536641.1,0,216140.5786,322560.366,3004201943,0,283760787.3,0 + 04/27 11:00:00,352648986.5,0,519790116.9,0,216894.7303,323685.8346,2818529137,0,283760787.3,0 + 04/27 12:00:00,219271256.2,0,482110625.7,0,130399.0976,194602.8873,1871389028,0,283760787.3,0 + 04/27 13:00:00,90473976.18,0,370233563.6,0,130850.2866,195276.2254,1634762983,0,283760787.3,0 + 04/27 14:00:00,30467553.18,0,213151771.8,0,130850.2866,195276.2254,1417674768,0,283760787.3,0 + 04/27 15:00:00,61958377.16,0,103198638.4,0,130756.4103,195136.1277,1338370152,0,283760787.3,0 + 04/27 16:00:00,138261223.3,0,51503472.05,0,305098.2907,455317.6314,2927262015,0,283760787.3,0 + 04/27 17:00:00,225805387.1,0,69236424.42,0,391911.0176,584873.7987,3811467150,0,354700984.2,0 + 04/27 18:00:00,450337995.9,0,291007294.5,0,304574.4399,454535.8555,3474142354,0,141880393.7,0 + 04/27 19:00:00,361337715.5,0,388816474.3,0,303652.6224,453160.1685,3474680237,0,638461771.5,0 + 04/27 20:00:00,192417912.1,0,222963895.9,0,259967.2631,387965.7215,2747940553,0,638461771.5,702307948.6 + 04/27 21:00:00,271101436.6,0,336606245.5,0,216417.5532,322973.7128,2549516240,0,496581377.8,702307948.6 + 04/27 22:00:00,371917187.5,0,485025498.2,0,172482.0551,257405.9677,2404539568,0,354700984.2,702307948.6 + 04/27 23:00:00,437142881.4,0,580807618.9,0,129207.136,192824.047,2177262759,0,354700984.2,624273732.1 + 04/27 24:00:00,517560800.1,0,699658835.9,0,86010.39245,128358.7924,1988948702,0,354700984.2,468205299.1 + 04/28 01:00:00,666666523.8,0,920170625.2,0,43005.19622,64179.39622,1972701682,0,212820590.5,234102649.5 + 04/28 02:00:00,174668868.3,0,215760022.8,0,21475.13222,32048.709,583114719.5,0,141880393.7,0 + 04/28 03:00:00,589449811.8,0,819073377.9,0,21475.13222,32048.709,1601209018,0,141880393.7,0 + 04/28 04:00:00,625139587.6,0,873610333.6,0,21406.05805,31945.62521,1690815981,0,141880393.7,0 + 04/28 05:00:00,606284184.1,0,875041744,0,21441.14849,31997.99291,1673706837,0,141880393.7,0 + 04/28 06:00:00,370780476.1,0,669006081,0,21475.13222,32048.709,1232472386,0,141880393.7,0 + 04/28 07:00:00,222929853,0,298333812.5,0,21614.05786,32256.0366,715196005.5,0,141880393.7,156068433 + 04/28 08:00:00,296757067.8,0,352318873.8,0,21663.93859,32330.47679,843455837,0,567521574.6,390171082.6 + 04/28 09:00:00,425714935.4,0,537006941,0,86655.75436,129321.9072,1740241458,0,567521574.6,390171082.6 + 04/28 10:00:00,351064492.3,0,449282249.2,0,130136.8382,194211.5008,1968000762,0,283760787.3,0 + 04/28 11:00:00,270930983.2,0,412164469.3,0,130531.9028,194801.0809,1854294194,0,283760787.3,0 + 04/28 12:00:00,167652709.1,0,369792284.6,0,87170.94019,130090.7518,1319587085,0,283760787.3,0 + 04/28 13:00:00,162773306.6,0,368670357.1,0,87170.94019,130090.7518,1313585755,0,283760787.3,0 + 04/28 14:00:00,192384706.5,0,349783054.4,0,130850.2866,195276.2254,1716223204,0,283760787.3,0 + 04/28 15:00:00,236116729,0,357498889.4,0,174467.0488,260368.3005,2159022876,0,283760787.3,0 + 04/28 16:00:00,284387258.7,0,392205534.4,0,218083.811,325460.3756,2633351865,0,283760787.3,0 + 04/28 17:00:00,323627169,0,415866506,0,261700.5732,390552.4508,3087604561,0,354700984.2,0 + 04/28 18:00:00,463364450.8,0,559602186.9,0,304819.6803,454901.8434,3757964123,0,141880393.7,0 + 04/28 19:00:00,334534285.3,0,427956418,0,174182.6745,259943.9105,2325346409,0,638461771.5,0 + 04/28 20:00:00,133337413.4,0,142649199.3,0,130531.9028,194801.0809,1447185354,0,638461771.5,702307948.6 + 04/28 21:00:00,194647511.7,0,229514877.6,0,87021.26854,129867.3873,1204961550,0,496581377.8,702307948.6 + 04/28 22:00:00,245088409.5,0,302373455.1,0,87091.33724,129971.9553,1328889718,0,354700984.2,702307948.6 + 04/28 23:00:00,273667650.8,0,343740360.7,0,87091.33724,129971.9553,1398835865,0,354700984.2,624273732.1 + 04/28 24:00:00,339862761.4,0,441588613.3,0,87021.26854,129867.3873,1562250536,0,354700984.2,468205299.1 + 04/29 01:00:00,487802892.6,0,661788706,0,43466.36588,64867.6291,1539593980,0,212820590.5,234102649.5 + 04/29 02:00:00,24122811.47,0,0,0,21733.18294,32433.81455,219124002.4,0,141880393.7,0 + 04/29 03:00:00,346986062.7,0,445944670.8,0,21733.18294,32433.81455,987931924.5,0,141880393.7,0 + 04/29 04:00:00,379003149.5,0,518313804.6,0,21755.31713,32466.84682,1092516744,0,141880393.7,0 + 04/29 05:00:00,404049956.8,0,554600075.4,0,21713.81498,32404.91051,1153477444,0,141880393.7,0 + 04/29 06:00:00,418659183.4,0,575801598,0,21713.81498,32404.91051,1189288193,0,141880393.7,0 + 04/29 07:00:00,354227552.3,0,479991537.7,0,86932.73176,129735.2582,1614223854,0,141880393.7,156068433 + 04/29 08:00:00,511995623.6,0,714329597,0,347730.927,518941.0328,4346344276,0,567521574.6,390171082.6 + 04/29 09:00:00,625771342.4,0,847529805.3,0,304574.4399,454535.8555,4206098211,0,567521574.6,390171082.6 + 04/29 10:00:00,650370925,0,902791901.4,0,217728.3431,324929.8881,3506732459,0,283760787.3,0 + 04/29 11:00:00,638400060.3,0,888080719.6,0,174182.6745,259943.9105,3089336486,0,283760787.3,0 + 04/29 12:00:00,623987689.8,0,865967311.6,0,87233.52442,130184.1503,2272658630,0,283760787.3,0 + 04/29 13:00:00,569064375.7,0,788593415.4,0,87359.12823,130371.5968,2141488401,0,283760787.3,0 + 04/29 14:00:00,462929607,0,642437415.2,0,87603.07075,130735.6478,1891386409,0,283760787.3,0 + 04/29 15:00:00,262856588.1,0,355072894.4,0,131461.5865,196188.5072,1797469820,0,283760787.3,0 + 04/29 16:00:00,272232153,0,317049240.8,0,219243.7781,327191.4684,2556448281,0,283760787.3,0 + 04/29 17:00:00,227589592.3,0,229615156.8,0,219377.6563,327391.2634,2425572860,0,354700984.2,0 + 04/29 18:00:00,293448874.9,0,218328805.1,0,307128.7188,458347.7687,3267493035,0,141880393.7,0 + 04/29 19:00:00,123448460.3,0,59148544.29,0,306840.9303,457918.2836,2935730175,0,638461771.5,0 + 04/29 20:00:00,0,0,0,0,174954.133,261095.2073,1569777625,0,638461771.5,702307948.6 + 04/29 21:00:00,43543316.62,0,0,0,174841.1936,260926.6606,1612307592,0,496581377.8,702307948.6 + 04/29 22:00:00,136704759.4,0,133276646.1,0,87304.10114,130289.4764,1053318285,0,354700984.2,702307948.6 + 04/29 23:00:00,203057474.5,0,241317983.1,0,87170.94019,130090.7518,1226517549,0,354700984.2,624273732.1 + 04/29 24:00:00,305495170.4,0,392773791.3,0,43466.36588,64867.6291,1088271344,0,354700984.2,468205299.1 + 04/30 01:00:00,457560220.7,0,618850849.3,0,43466.36588,64867.6291,1466413452,0,212820590.5,234102649.5 + 04/30 02:00:00,6703157.171,0,0,0,21713.81498,32404.91051,201530568.9,0,141880393.7,0 + 04/30 03:00:00,349055873.9,0,457710722.5,0,21689.47303,32368.58346,1001375600,0,141880393.7,0 + 04/30 04:00:00,377829661.1,0,518359888.2,0,21733.18294,32433.81455,1091190740,0,141880393.7,0 + 04/30 05:00:00,366627675.8,0,512348543.5,0,21713.81498,32404.91051,1073803631,0,141880393.7,0 + 04/30 06:00:00,249500967,0,390112654.6,0,21772.83431,32492.98881,834970584.8,0,141880393.7,0 + 04/30 07:00:00,116254353.8,0,154292013.9,0,87304.10114,130289.4764,1053883247,0,141880393.7,156068433 + 04/30 08:00:00,222221299.9,0,327168508.7,0,350270.1906,522730.5377,3692192431,0,567521574.6,390171082.6 + 04/30 09:00:00,118300176,0,119752544.3,0,306941.2893,458068.0558,2992086363,0,567521574.6,390171082.6 + 04/30 10:00:00,42622021.06,0,0,0,219342.107,327338.2109,2010671165,0,283760787.3,0 + 04/30 11:00:00,97257009.14,0,155855442.4,0,175473.6856,261870.5687,1827551767,0,283760787.3,0 + 04/30 12:00:00,124156540,0,189920795.7,0,87759.00667,130968.3609,1101495859,0,283760787.3,0 + 04/30 13:00:00,101144209.4,0,154770989,0,87763.97715,130975.7787,1043378319,0,283760787.3,0 + 04/30 14:00:00,136968176,0,194913573,0,87763.97715,130975.7787,1119344870,0,283760787.3,0 + 04/30 15:00:00,209124452.2,0,293604423,0,131576.2725,196359.6604,1683298233,0,283760787.3,0 + 04/30 16:00:00,263576605.7,0,364794498.7,0,219293.7875,327266.1006,2595986701,0,283760787.3,0 + 04/30 17:00:00,261555539,0,349993206.3,0,219243.7781,327191.4684,2578715633,0,354700984.2,0 + 04/30 18:00:00,370423387.3,0,506620184,0,306941.2893,458068.0558,3631077214,0,141880393.7,0 + 04/30 19:00:00,172506901.4,0,207571629.1,0,306840.9303,457918.2836,3133211701,0,638461771.5,0 + 04/30 20:00:00,0,0,0,0,175316.2976,261635.6885,1573027150,0,638461771.5,702307948.6 + 04/30 21:00:00,0,0,0,0,175293.7915,261602.1013,1572825214,0,496581377.8,702307948.6 + 04/30 22:00:00,58353509.13,0,0,0,87635.07863,130783.4152,844660086.9,0,354700984.2,702307948.6 + 04/30 23:00:00,102607909.3,0,100094116.2,0,87616.29618,130755.385,988840077.6,0,354700984.2,624273732.1 + 04/30 24:00:00,171406307.3,0,198395682.4,0,43794.64144,65357.53565,762749827.2,0,354700984.2,468205299.1 + 05/01 01:00:00,313199802.1,0,408801776.2,0,43776.17802,65329.98151,1114783753,0,212820590.5,234102649.5 + 05/01 02:00:00,0,0,0,0,21875.85516,32646.73339,196281318.8,0,141880393.7,0 + 05/01 03:00:00,179085386.4,0,174019391.9,0,21867.00072,32633.51935,549306650.6,0,141880393.7,0 + 05/01 04:00:00,237079295.8,0,311859667.1,0,21857.58903,32619.47368,745056388.6,0,141880393.7,0 + 05/01 05:00:00,224852755.4,0,317879885.7,0,21852.67466,32612.13965,738805972.6,0,141880393.7,0 + 05/01 06:00:00,143101268.6,0,226497776.2,0,21847.62152,32604.59854,565627037,0,141880393.7,0 + 05/01 07:00:00,57399297.64,0,61762330.27,0,87641.05768,130792.3381,905521852.9,0,141880393.7,156068433 + 05/01 08:00:00,219739412.8,0,323327245.5,0,350870.0599,523625.7609,3691251613,0,567521574.6,390171082.6 + 05/01 09:00:00,144592009.6,0,173345919.5,0,307128.7188,458347.7687,3073653284,0,567521574.6,390171082.6 + 05/01 10:00:00,36528238.18,0,0,0,219409.6252,327438.9727,2005183191,0,283760787.3,0 + 05/01 11:00:00,31424269.45,0,22760727.46,0,175518.0133,261936.7218,1629022044,0,283760787.3,0 + 05/01 12:00:00,393782.6171,0,53325779.17,0,87763.85009,130975.5891,841181542.7,0,283760787.3,0 + 05/01 13:00:00,0,0,61848723.8,0,87763.85009,130975.5891,849310704.7,0,283760787.3,0 + 05/01 14:00:00,34253584.53,0,97222521.12,0,87763.85009,130975.5891,918938086.6,0,283760787.3,0 + 05/01 15:00:00,94979265.71,0,135857253.5,0,131645.7751,196463.3836,1412029491,0,283760787.3,0 + 05/01 16:00:00,96937124.04,0,100648518.8,0,219398.5966,327422.514,2166141641,0,283760787.3,0 + 05/01 17:00:00,73541403.43,0,9397743.543,0,219409.9429,327439.4467,2051596950,0,354700984.2,0 + 05/01 18:00:00,142824366.7,0,35410158.55,0,307173.4753,458414.5617,2934351458,0,141880393.7,0 + 05/01 19:00:00,20171837.64,0,0,0,306840.9303,457918.2836,2773305008,0,638461771.5,0 + 05/01 20:00:00,0,0,0,0,175135.0953,261365.2689,1571401311,0,638461771.5,702307948.6 + 05/01 21:00:00,0,0,0,0,175135.0953,261365.2689,1571401311,0,496581377.8,702307948.6 + 05/01 22:00:00,0,0,0,0,87304.10114,130289.4764,783336879.1,0,354700984.2,702307948.6 + 05/01 23:00:00,102014508.6,0,82366426.83,0,87233.52442,130184.1503,967084564.3,0,354700984.2,624273732.1 + 05/01 24:00:00,208544320.1,0,253403470.6,0,43545.66862,64985.97763,852661717.3,0,354700984.2,468205299.1 + 05/02 01:00:00,366569283.5,0,494046517.9,0,43510.63427,64933.69364,1251015382,0,212820590.5,234102649.5 + 05/02 02:00:00,37390976.55,0,32490560.01,0,21689.47303,32368.58346,264490539.9,0,141880393.7,0 + 05/02 03:00:00,292514027.6,0,380768965.9,0,21689.47303,32368.58346,867891996.9,0,141880393.7,0 + 05/02 04:00:00,341711487.6,0,471434173,0,21713.81498,32404.91051,1007973072,0,141880393.7,0 + 05/02 05:00:00,311726294.4,0,471878666.1,0,21689.47303,32368.58346,978213963.9,0,141880393.7,0 + 05/02 06:00:00,81914596.09,0,202074889.8,0,21772.83431,32492.98881,479346449.1,0,141880393.7,0 + 05/02 07:00:00,0,0,0,0,87359.12823,130371.5968,783830610.3,0,141880393.7,156068433 + 05/02 08:00:00,133223053.7,0,194484643.7,0,350412.283,522942.5913,3471785245,0,567521574.6,390171082.6 + 05/02 09:00:00,0,0,0,51527550.11,307011.3024,458172.5408,2754661836,51527550.11,567521574.6,390171082.6 + 05/02 10:00:00,0,0,0,34547899.2,219397.5167,327420.9023,1968546308,34547899.2,283760787.3,0 + 05/02 11:00:00,0,0,0,16277774.56,175527.7002,261951.1781,1574923962,16277774.56,283760787.3,0 + 05/02 12:00:00,0,98725856.81,0,33709097.63,87759.43865,130969.0056,787422399.2,132434954.4,283760787.3,0 + 05/02 13:00:00,0,156394655.1,0,85526514.59,87737.83331,130936.7626,787228545.1,241921169.7,283760787.3,0 + 05/02 14:00:00,0,168783861.5,0,161467432.6,87722.33481,130913.6332,787089484.8,330251294.1,283760787.3,0 + 05/02 15:00:00,0,135927844.2,0,203806147.1,131627.6227,196436.2936,1181030099,339733991.3,283760787.3,0 + 05/02 16:00:00,0,68843058.58,0,183621738.5,219344.5833,327341.9064,1968071363,252464797,283760787.3,0 + 05/02 17:00:00,0,32724077.86,0,228884449.3,219379.3712,327393.8226,1968383498,261608527.2,354700984.2,0 + 05/02 18:00:00,0,0,0,70269079.22,307158.0353,458391.5196,2755978397,70269079.22,141880393.7,0 + 05/02 19:00:00,0,0,0,228637598.6,307173.4753,458414.5617,2756116933,228637598.6,638461771.5,0 + 05/02 20:00:00,0,125111306.3,0,260878995.4,175206.1415,261471.2956,1572038774,385990301.6,638461771.5,702307948.6 + 05/02 21:00:00,0,19437760.16,0,77703030.13,175040.5838,261224.2233,1570553306,97140790.29,496581377.8,702307948.6 + 05/02 22:00:00,0,0,0,0,87304.10114,130289.4764,783336879.1,0,354700984.2,702307948.6 + 05/02 23:00:00,0,0,0,0,87233.52442,130184.1503,782703628.8,0,354700984.2,624273732.1 + 05/02 24:00:00,131815952.4,0,112929463,0,43652.05057,65144.7382,636413855,0,354700984.2,468205299.1 + 05/03 01:00:00,268101667.8,0,353805581.7,0,43616.76221,65092.07513,1013259064,0,212820590.5,234102649.5 + 05/03 02:00:00,0,0,0,0,21826.02528,32572.3691,195834219.8,0,141880393.7,0 + 05/03 03:00:00,84827873.97,0,72742069.68,0,21869.26663,32636.90091,353792146.8,0,141880393.7,0 + 05/03 04:00:00,142510410.8,0,189581222.2,0,21869.26663,32636.90091,528313836.1,0,141880393.7,0 + 05/03 05:00:00,145412076.8,0,192978188.9,0,21880.07298,32653.02792,534709429,0,141880393.7,0 + 05/03 06:00:00,134746684.3,0,185437536.9,0,21869.26663,32636.90091,516406424.3,0,141880393.7,0 + 05/03 07:00:00,117212042.9,0,145638517.8,0,87477.0665,130547.6036,1047739373,0,141880393.7,156068433 + 05/03 08:00:00,222189107,0,326879584.6,0,350081.1676,522448.4467,3690175303,0,567521574.6,390171082.6 + 05/03 09:00:00,392523751.6,0,498825144,0,305972.0888,456621.656,3636686377,0,567521574.6,390171082.6 + 05/03 10:00:00,446793603.7,0,620110982.2,0,218551.492,326158.3257,3027859930,0,283760787.3,0 + 05/03 11:00:00,446626859.9,0,623785060.6,0,174841.1936,260926.6606,2639176195,0,283760787.3,0 + 05/03 12:00:00,419569985.1,0,589807974.7,0,87477.0665,130547.6036,1794266772,0,283760787.3,0 + 05/03 13:00:00,444055390.3,0,619504384.1,0,87477.0665,130547.6036,1848448587,0,283760787.3,0 + 05/03 14:00:00,436710819,0,609092443.5,0,87477.0665,130547.6036,1830692075,0,283760787.3,0 + 05/03 15:00:00,423208213.6,0,589658578,0,131215.5998,195821.4055,2190200010,0,283760787.3,0 + 05/03 16:00:00,456466717.2,0,632139586,0,218692.6663,326369.0091,3050828334,0,283760787.3,0 + 05/03 17:00:00,471691106.8,0,649777021.6,0,218551.492,326158.3257,3082423472,0,354700984.2,0 + 05/03 18:00:00,553270065.8,0,766891108.8,0,305756.9488,456300.5889,4063568311,0,141880393.7,0 + 05/03 19:00:00,342897622.9,0,447933545.7,0,305756.9488,456300.5889,3534238304,0,638461771.5,0 + 05/03 20:00:00,114960525.5,0,106023609.8,0,174718.2565,260743.1937,1788645356,0,638461771.5,702307948.6 + 05/03 21:00:00,148007198.9,0,154112677.5,0,174841.1936,260926.6606,1870884151,0,496581377.8,702307948.6 + 05/03 22:00:00,188578664.1,0,214824543.9,0,87420.59679,130463.3303,1187785345,0,354700984.2,702307948.6 + 05/03 23:00:00,203430809,0,237450392.1,0,87477.0665,130547.6036,1225770014,0,354700984.2,624273732.1 + 05/03 24:00:00,246898510.2,0,302897524.4,0,43738.53325,65273.80182,942240440.9,0,354700984.2,468205299.1 + 05/04 01:00:00,363059194.8,0,477019313.9,0,43760.14595,65306.05583,1232716835,0,212820590.5,234102649.5 + 05/04 02:00:00,0,0,0,0,21880.07298,32653.02792,196319163.2,0,141880393.7,0 + 05/04 03:00:00,162859087.5,0,160588631.3,0,21880.07298,32653.02792,519766882,0,141880393.7,0 + 05/04 04:00:00,247884867.4,0,323323992.1,0,21869.26663,32636.90091,767431062.7,0,141880393.7,0 + 05/04 05:00:00,237020386.7,0,318655761.2,0,21880.07298,32653.02792,751995311.1,0,141880393.7,0 + 05/04 06:00:00,175900650.7,0,246362142.3,0,21869.26663,32636.90091,618484996.1,0,141880393.7,0 + 05/04 07:00:00,64705480.78,0,71490681.82,0,21869.26663,32636.90091,332418365.7,0,141880393.7,156068433 + 05/04 08:00:00,266267480.2,0,336193202.2,0,87477.0665,130547.6036,1387349495,0,567521574.6,390171082.6 + 05/04 09:00:00,462463953.3,0,635971708.5,0,218692.6663,326369.0091,3060657693,0,567521574.6,390171082.6 + 05/04 10:00:00,440384407.6,0,600650059.6,0,218692.6663,326369.0091,3003256498,0,283760787.3,0 + 05/04 11:00:00,389916985.3,0,536513478.7,0,218800.7298,326530.2792,2889622096,0,283760787.3,0 + 05/04 12:00:00,405446248.4,0,557162872.9,0,131280.4379,195918.1675,2140524101,0,283760787.3,0 + 05/04 13:00:00,295607575.2,0,418393315.2,0,131404.6061,196103.4717,1893029971,0,283760787.3,0 + 05/04 14:00:00,318071221.1,0,441454958.9,0,131461.5865,196188.5072,1939066517,0,283760787.3,0 + 05/04 15:00:00,263855792.3,0,361471837.3,0,131351.3215,196023.9517,1803878613,0,283760787.3,0 + 05/04 16:00:00,383919562.2,0,527404120.9,0,306169.7328,456916.6127,3658434527,0,283760787.3,0 + 05/04 17:00:00,391638588.6,0,535270601.3,0,393841.3136,587754.5025,4460654128,0,354700984.2,0 + 05/04 18:00:00,437812906.1,0,600499193.8,0,306321.0217,457142.3908,3786780385,0,141880393.7,0 + 05/04 19:00:00,269519546.3,0,344893397.3,0,306169.7328,456916.6127,3361523787,0,638461771.5,0 + 05/04 20:00:00,45912320.3,0,11846888.32,0,262431.1995,391642.8109,2412425646,0,638461771.5,702307948.6 + 05/04 21:00:00,94108281.03,0,79520859.56,0,218551.492,326158.3257,2134584484,0,496581377.8,702307948.6 + 05/04 22:00:00,148391920.1,0,161221407.6,0,174841.1936,260926.6606,1878377603,0,354700984.2,702307948.6 + 05/04 23:00:00,193337501.5,0,227477618.7,0,131038.6924,195557.3953,1596561036,0,354700984.2,624273732.1 + 05/04 24:00:00,251092519.9,0,312124361.8,0,87420.59679,130463.3303,1347599019,0,354700984.2,468205299.1 + 05/05 01:00:00,388565043.2,0,516234868,0,43679.56412,65185.79842,1296715216,0,212820590.5,234102649.5 + 05/05 02:00:00,21554588.81,0,0,0,21839.78206,32592.89921,217512241.4,0,141880393.7,0 + 05/05 03:00:00,238612688.9,0,282983906.5,0,21839.78206,32592.89921,717554248,0,141880393.7,0 + 05/05 04:00:00,303861336.9,0,407731356.1,0,21826.02528,32572.3691,907426912.8,0,141880393.7,0 + 05/05 05:00:00,310599102.6,0,417046350.8,0,21826.02528,32572.3691,923479673.2,0,141880393.7,0 + 05/05 06:00:00,287809507.2,0,386241339.1,0,21839.78206,32592.89921,870008498.9,0,141880393.7,0 + 05/05 07:00:00,190014625.8,0,242683782.2,0,21839.78206,32592.89921,628656060.7,0,141880393.7,156068433 + 05/05 08:00:00,269695749.5,0,337264294.6,0,21869.26663,32636.90091,803182247.2,0,567521574.6,390171082.6 + 05/05 09:00:00,416216883.1,0,556360266.1,0,87520.29191,130612.1117,1757853802,0,567521574.6,390171082.6 + 05/05 10:00:00,341349568.3,0,456318662.4,0,131461.5865,196188.5072,1977208568,0,283760787.3,0 + 05/05 11:00:00,218516818,0,303728116.9,0,131461.5865,196188.5072,1701785272,0,283760787.3,0 + 05/05 12:00:00,190878367.6,0,293484639,0,87668.83723,130833.7953,1270972484,0,283760787.3,0 + 05/05 13:00:00,124391658.1,0,219462828.3,0,87697.51124,130876.5874,1130721241,0,283760787.3,0 + 05/05 14:00:00,163418374.3,0,246601091.8,0,131503.2558,196250.693,1589933682,0,283760787.3,0 + 05/05 15:00:00,239461321.9,0,339614205.1,0,175282.1154,261584.6763,2151795977,0,283760787.3,0 + 05/05 16:00:00,256265225.5,0,357083383.9,0,219102.6442,326980.8453,2579249172,0,283760787.3,0 + 05/05 17:00:00,217731428.3,0,278989168.5,0,263006.5117,392501.386,2856549028,0,354700984.2,0 + 05/05 18:00:00,297141851.1,0,403053818.4,0,306840.9303,457918.2836,3453328840,0,141880393.7,0 + 05/05 19:00:00,140194824.4,0,150964228,0,175206.1415,261471.2956,1863197826,0,638461771.5,0 + 05/05 20:00:00,0,0,0,0,131351.3215,196023.9517,1178550983,0,638461771.5,702307948.6 + 05/05 21:00:00,0,0,0,0,87520.29191,130612.1117,785276652.9,0,496581377.8,702307948.6 + 05/05 22:00:00,85556928.75,0,56689954.44,0,87359.12823,130371.5968,926077493.5,0,354700984.2,702307948.6 + 05/05 23:00:00,174080676.1,0,204156547.9,0,87170.94019,130090.7518,1160379315,0,354700984.2,624273732.1 + 05/05 24:00:00,261200550.6,0,338118109.4,0,87091.33724,129971.9553,1380746513,0,354700984.2,468205299.1 + 05/06 01:00:00,391512102.8,0,531172996.6,0,43585.4701,65045.37591,1313756145,0,212820590.5,234102649.5 + 05/06 02:00:00,33239237.7,0,21166816.91,0,21755.31713,32466.84682,249605844.8,0,141880393.7,0 + 05/06 03:00:00,261589889.3,0,334535418,0,21772.83431,32492.98881,791482270.6,0,141880393.7,0 + 05/06 04:00:00,309236769.9,0,424779357.8,0,21772.83431,32492.98881,929373090.9,0,141880393.7,0 + 05/06 05:00:00,253310864.2,0,388046333.9,0,21792.73505,32522.68796,836892720.9,0,141880393.7,0 + 05/06 06:00:00,105448830.9,0,206978440.7,0,21808.3811,32546.03756,508103178.8,0,141880393.7,0 + 05/06 07:00:00,5245695.042,0,10162106.64,0,87477.0665,130547.6036,800296614.2,0,141880393.7,156068433 + 05/06 08:00:00,201201486.2,0,290934398.3,0,350564.2307,523169.3525,3637576784,0,567521574.6,390171082.6 + 05/06 09:00:00,93355589.51,0,97775708.61,0,307011.3024,458172.5408,2945793134,0,567521574.6,390171082.6 + 05/06 10:00:00,0,0,0,0,219377.6563,327391.2634,1968368111,0,283760787.3,0 + 05/06 11:00:00,0,0,0,0,175518.0133,261936.7218,1574837047,0,283760787.3,0 + 05/06 12:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,283760787.3,0 + 05/06 13:00:00,0,0,9940232.768,0,87763.85009,130975.5891,797402213.7,0,283760787.3,0 + 05/06 14:00:00,0,0,1001830.429,0,87763.97715,130975.7787,788464951.5,0,283760787.3,0 + 05/06 15:00:00,0,0,0,0,131645.7751,196463.3836,1181192971,0,283760787.3,0 + 05/06 16:00:00,0,0,0,0,219409.9429,327439.4467,1968657803,0,283760787.3,0 + 05/06 17:00:00,0,0,0,0,219409.9429,327439.4467,1968657803,0,354700984.2,0 + 05/06 18:00:00,83921038.43,0,0,0,307173.92,458415.2254,2840041962,0,141880393.7,0 + 05/06 19:00:00,0,0,0,0,307156.5233,458389.2632,2755964832,0,638461771.5,0 + 05/06 20:00:00,0,104892763.3,0,225679541,175473.6856,261870.5687,1574439315,330572304.3,638461771.5,702307948.6 + 05/06 21:00:00,0,77550338.09,0,157449759.4,175395.0225,261753.1747,1573733510,235000097.5,496581377.8,702307948.6 + 05/06 22:00:00,0,15669687.97,0,59066820.89,87697.51124,130876.5874,786866755,74736508.86,354700984.2,702307948.6 + 05/06 23:00:00,0,0,0,1372292.899,87641.05768,130792.3381,786360224.9,1372292.899,354700984.2,624273732.1 + 05/06 24:00:00,0,0,0,0,43783.77383,65341.31722,392850327.8,0,354700984.2,468205299.1 + 05/07 01:00:00,142134857.5,0,166380860.3,0,43760.14595,65306.05583,701154044.2,0,212820590.5,234102649.5 + 05/07 02:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 05/07 03:00:00,0,0,0,0,21880.07298,32653.02792,196319163.2,0,141880393.7,0 + 05/07 04:00:00,86991663.64,0,86620144.43,0,21891.88691,32670.65861,370036972,0,141880393.7,0 + 05/07 05:00:00,45759630.38,0,84264005.05,0,21900.76769,32683.91195,326528482.1,0,141880393.7,0 + 05/07 06:00:00,0,0,787494.2184,0,21924.37781,32719.14684,197504183,0,141880393.7,0 + 05/07 07:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,141880393.7,156068433 + 05/07 08:00:00,0,7784300.124,0,53044683.96,350947.3711,523741.1374,3148878631,60828984.08,567521574.6,390171082.6 + 05/07 09:00:00,0,192565873.3,0,398347342,307158.0353,458391.5196,2755978397,590913215.2,567521574.6,390171082.6 + 05/07 10:00:00,0,0,0,12890133.98,219409.9429,327439.4467,1968657803,12890133.98,283760787.3,0 + 05/07 11:00:00,0,0,0,0,175475.6666,261873.5251,1574457090,0,283760787.3,0 + 05/07 12:00:00,0,4735791.29,0,0,87751.74847,130957.529,787353399.1,4735791.29,283760787.3,0 + 05/07 13:00:00,0,89064747.88,0,0,87722.33481,130913.6332,787089484.8,89064747.88,283760787.3,0 + 05/07 14:00:00,0,190776492.2,0,207441915,87670.68846,130836.558,786626087.3,398218407.2,283760787.3,0 + 05/07 15:00:00,0,210887351.8,0,319118170.5,131548.5887,196318.3461,1180320965,530005522.2,283760787.3,0 + 05/07 16:00:00,0,94721781.59,0,205095255.9,219247.6479,327197.2435,1967201609,299817037.5,283760787.3,0 + 05/07 17:00:00,0,23896568.31,0,87278105.75,219247.6479,327197.2435,1967201609,111174674.1,354700984.2,0 + 05/07 18:00:00,0,0,0,50719058.45,307028.1718,458197.7161,2754813197,50719058.45,141880393.7,0 + 05/07 19:00:00,0,42905448.44,0,262922112.9,307131.1196,458351.3517,2755736897,305827561.4,638461771.5,0 + 05/07 20:00:00,0,202234274.6,0,346165252.9,175473.6856,261870.5687,1574439315,548399527.5,638461771.5,702307948.6 + 05/07 21:00:00,0,83670567.25,0,162234600.4,175282.1154,261584.6763,1572720450,245905167.6,496581377.8,702307948.6 + 05/07 22:00:00,0,36030.957,0,12858064.81,87567.54766,130682.6344,785700655.5,12894095.77,354700984.2,702307948.6 + 05/07 23:00:00,0,0,0,0,87420.59679,130463.3303,784382137.5,0,354700984.2,624273732.1 + 05/07 24:00:00,79338664.35,0,80513045.56,0,43545.66862,64985.97763,550565636.4,0,354700984.2,468205299.1 + 05/08 01:00:00,271735111,0,368401842.4,0,43585.4701,65045.37591,1031207999,0,212820590.5,234102649.5 + 05/08 02:00:00,0,0,0,0,21772.83431,32492.98881,195356963.2,0,141880393.7,0 + 05/08 03:00:00,136363541.1,0,196558886.1,0,21772.83431,32492.98881,528279390.5,0,141880393.7,0 + 05/08 04:00:00,254971602.9,0,349546450.9,0,21733.18294,32433.81455,799519244.8,0,141880393.7,0 + 05/08 05:00:00,199832464.9,0,348297588.8,0,21755.31713,32466.84682,743329843.9,0,141880393.7,0 + 05/08 06:00:00,7862197.081,0,73658055.35,0,21808.3811,32546.03756,277196159.6,0,141880393.7,0 + 05/08 07:00:00,0,0,0,0,87567.54766,130682.6344,785700655.5,0,141880393.7,156068433 + 05/08 08:00:00,12025602.02,0,58162345.34,0,350947.3711,523741.1374,3219066578,0,567521574.6,390171082.6 + 05/08 09:00:00,0,95496853.54,0,333681388.7,307173.4753,458414.5617,2756116933,429178242.2,567521574.6,390171082.6 + 05/08 10:00:00,0,52471094.35,0,146954816.1,219379.3712,327393.8226,1968383498,199425910.5,283760787.3,0 + 05/08 11:00:00,0,177823482.4,0,233959553.6,175341.3769,261673.116,1573252175,411783036,283760787.3,0 + 05/08 12:00:00,0,330236160.1,0,324968040.8,87605.47633,130739.2378,786040970.9,655204200.8,283760787.3,0 + 05/08 13:00:00,0,431363199.6,0,437059771.6,87523.24903,130616.5248,785303185.7,868422971.3,283760787.3,0 + 05/08 14:00:00,0,494944533.7,0,591453735.6,87373.47233,130393.0035,783959312.8,1086398269,283760787.3,0 + 05/08 15:00:00,0,515493966.4,0,741745960.6,130962.2256,195443.2791,1175059817,1257239927,283760787.3,0 + 05/08 16:00:00,0,464374595.8,0,777862771,218270.3761,325738.7985,1958433029,1242237367,283760787.3,0 + 05/08 17:00:00,0,367754895.1,0,705563981.8,218700.6831,326380.9731,1962293962,1073318877,354700984.2,0 + 05/08 18:00:00,0,134813056.9,0,367837861.5,306751.0642,457784.1707,2752326845,502650918.4,141880393.7,0 + 05/08 19:00:00,0,196061906.7,0,397843451.3,307131.1196,458351.3517,2755736897,593905358,638461771.5,0 + 05/08 20:00:00,0,340646436.3,0,527628073,175518.8773,261938.0112,1574844798,868274509.3,638461771.5,702307948.6 + 05/08 21:00:00,0,249690151.1,0,396738445.1,175527.9543,261951.5574,1574926242,646428596.2,496581377.8,702307948.6 + 05/08 22:00:00,0,158551504.9,0,263632552.6,87763.85009,130975.5891,787461980.9,422184057.5,354700984.2,702307948.6 + 05/08 23:00:00,0,93899768.79,0,169180730.4,87759.00667,130968.3609,787418523.3,263080499.2,354700984.2,624273732.1 + 05/08 24:00:00,0,11789603.6,0,45810649.04,43875.53125,65478.25267,393673622.1,57600252.64,354700984.2,468205299.1 + 05/09 01:00:00,0,0,0,0,43858.75749,65453.22012,393523119.4,0,212820590.5,234102649.5 + 05/09 02:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 05/09 03:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/09 04:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 05/09 05:00:00,24177724.67,0,54175240.23,0,21869.26663,32636.90091,274575168,0,141880393.7,0 + 05/09 06:00:00,0,0,5102064.346,0,21900.76769,32683.91195,201606911.1,0,141880393.7,0 + 05/09 07:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,141880393.7,156068433 + 05/09 08:00:00,0,153927189.1,0,276653296.5,351037.7546,523876.0224,3149689597,430580485.6,567521574.6,390171082.6 + 05/09 09:00:00,0,304568258.9,0,525629059,307082.4166,458278.669,2755299908,830197317.9,567521574.6,390171082.6 + 05/09 10:00:00,0,120319318.9,0,245545009,219247.6479,327197.2435,1967201609,365864327.9,283760787.3,0 + 05/09 11:00:00,0,193836375.3,0,263131439.9,175210.9527,261478.4756,1572081942,456967815.1,283760787.3,0 + 05/09 12:00:00,0,322088266.1,0,304464697.5,87523.24903,130616.5248,785303185.7,626552963.6,283760787.3,0 + 05/09 13:00:00,0,439910917.3,0,424897380.3,87480.27323,130552.3892,784917584.9,864808297.6,283760787.3,0 + 05/09 14:00:00,0,513569008.7,0,610441458.1,87373.47233,130393.0035,783959312.8,1124010467,283760787.3,0 + 05/09 15:00:00,0,516104142.2,0,724356393.3,130962.2256,195443.2791,1175059817,1240460535,283760787.3,0 + 05/09 16:00:00,0,468787907.2,0,756814348.6,218270.3761,325738.7985,1958433029,1225602256,283760787.3,0 + 05/09 17:00:00,0,417129475.3,0,783054385.2,218270.3761,325738.7985,1958433029,1200183860,354700984.2,0 + 05/09 18:00:00,0,244484008.9,0,665596007.2,305984.3571,456639.9648,2745447559,910080016.2,141880393.7,0 + 05/09 19:00:00,0,323156347.5,0,697407389.5,306751.0642,457784.1707,2752326845,1020563737,638461771.5,0 + 05/09 20:00:00,0,448114508.2,0,688530621.3,175444.6696,261827.2663,1574178970,1136645129,638461771.5,702307948.6 + 05/09 21:00:00,0,300832665.9,0,473340112.9,175502.125,261913.0107,1574694489,774172778.8,496581377.8,702307948.6 + 05/09 22:00:00,0,176650795.8,0,290869697,87736.84279,130935.2843,787219657.7,467520492.8,354700984.2,702307948.6 + 05/09 23:00:00,0,116620302.6,0,202919592.9,87736.84279,130935.2843,787219657.7,319539895.5,354700984.2,624273732.1 + 05/09 24:00:00,0,12681851.49,0,38373434,43820.52884,65396.16907,393180112.5,51055285.49,354700984.2,468205299.1 + 05/10 01:00:00,0,0,0,0,43834.41861,65416.89766,393304738.6,0,212820590.5,234102649.5 + 05/10 02:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 05/10 03:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 05/10 04:00:00,44031963.75,0,29048055.78,0,21855.1492,32615.83257,269175553.9,0,141880393.7,0 + 05/10 05:00:00,35893168.67,0,96608531.19,0,21869.26663,32636.90091,328723903,0,141880393.7,0 + 05/10 06:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/10 07:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,141880393.7,156068433 + 05/10 08:00:00,0,165759061.8,0,233827138.4,351006.9939,523830.1162,3149413596,399586200.2,567521574.6,390171082.6 + 05/10 09:00:00,0,340170457.5,0,600242859.4,306946.707,458076.141,2754082253,940413316.8,567521574.6,390171082.6 + 05/10 10:00:00,0,180897771.7,0,343016132.8,218808.1226,326541.3119,1963257964,523913904.6,283760787.3,0 + 05/10 11:00:00,0,308798074.3,0,426838040,174746.9447,260786.0069,1567918626,735636114.3,283760787.3,0 + 05/10 12:00:00,0,442551235.2,0,468621305.1,87237.86852,130190.6332,782742606.3,911172540.3,283760787.3,0 + 05/10 13:00:00,0,546048200.9,0,567138167.8,87175.52883,130097.5997,782183262.8,1113186369,283760787.3,0 + 05/10 14:00:00,0,633842940.2,0,774539370.5,86860.91066,129628.075,779360348.3,1408382311,283760787.3,0 + 05/10 15:00:00,0,664382459.6,0,956766670.8,130145.7422,194224.7889,1167733912,1621149130,283760787.3,0 + 05/10 16:00:00,0,603880044,0,1017775826,217345.3581,324358.3352,1950133296,1621655870,283760787.3,0 + 05/10 17:00:00,0,500212489,0,960913285.3,218270.3761,325738.7985,1958433029,1461125774,354700984.2,0 + 05/10 18:00:00,0,285747965.8,0,764248297.2,305984.3571,456639.9648,2745447559,1049996263,141880393.7,0 + 05/10 19:00:00,0,360660842.9,0,755932748.1,306619.1671,457587.3323,2751143398,1116593591,638461771.5,0 + 05/10 20:00:00,0,461828850.9,0,710349868.9,175475.6666,261873.5251,1574457090,1172178720,638461771.5,702307948.6 + 05/10 21:00:00,0,349700972.1,0,546721334.6,175503.4969,261915.0581,1574706798,896422306.7,496581377.8,702307948.6 + 05/10 22:00:00,0,243426333.8,0,390202695.2,87763.85009,130975.5891,787461980.9,633629029,354700984.2,702307948.6 + 05/10 23:00:00,0,151250173,0,254580608.7,87736.84279,130935.2843,787219657.7,405830781.8,354700984.2,624273732.1 + 05/10 24:00:00,0,43368866.58,0,94833216.52,43848.75562,65438.29369,393433377.5,138202083.1,354700984.2,468205299.1 + 05/11 01:00:00,0,0,0,0,43834.41861,65416.89766,393304738.6,0,212820590.5,234102649.5 + 05/11 02:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/11 03:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 05/11 04:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 05/11 05:00:00,0,0,143910.302,0,21855.1492,32615.83257,196239444.7,0,141880393.7,0 + 05/11 06:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 05/11 07:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,156068433 + 05/11 08:00:00,0,339560299.5,0,464838989.8,87722.33481,130913.6332,787089484.8,804399289.3,567521574.6,390171082.6 + 05/11 09:00:00,0,449581839.7,0,760159674.7,218925.5108,326716.4979,1964311231,1209741514,567521574.6,390171082.6 + 05/11 10:00:00,0,293580982.6,0,514099706.5,218433.6808,325982.5086,1959898282,807680689,283760787.3,0 + 05/11 11:00:00,0,409526783.6,0,575759718.5,217565.978,324687.5804,1952112810,985286502.2,283760787.3,0 + 05/11 12:00:00,0,552196651.9,0,629046523.4,130145.7422,194224.7889,1167733912,1181243175,283760787.3,0 + 05/11 13:00:00,0,687626801.9,0,776251623.5,129694.4466,193551.2917,1163684658,1463878425,283760787.3,0 + 05/11 14:00:00,0,747790368.3,0,946381350,129694.4466,193551.2917,1163684658,1694171718,283760787.3,0 + 05/11 15:00:00,0,728015129.2,0,1061174582,129694.4466,193551.2917,1163684658,1789189712,283760787.3,0 + 05/11 16:00:00,0,669100725.4,0,1130781327,302285.5665,451120.0238,2712260125,1799882053,283760787.3,0 + 05/11 17:00:00,0,616353104.4,0,1163832419,388652.8713,580011.4592,3487191590,1780185523,354700984.2,0 + 05/11 18:00:00,0,412700790.7,0,952078975.6,303673.3986,453191.174,2724712461,1364779766,141880393.7,0 + 05/11 19:00:00,0,475951901.7,0,930846689.6,304592.3692,454562.6125,2732957934,1406798591,638461771.5,0 + 05/11 20:00:00,0,630672079.7,0,965070120.3,261526.5865,390292.7992,2346549789,1595742200,638461771.5,702307948.6 + 05/11 21:00:00,0,525751856.7,0,805239506.6,218433.6808,325982.5086,1959898282,1330991363,496581377.8,702307948.6 + 05/11 22:00:00,0,413891739,0,638134620.5,175046.4981,261233.0495,1570606371,1052026360,354700984.2,702307948.6 + 05/11 23:00:00,0,346816102.7,0,538370548.4,131408.2145,196108.8567,1179061456,885186651.1,354700984.2,624273732.1 + 05/11 24:00:00,0,242171571.7,0,383799017.6,87699.05915,130878.8974,786880643.7,625970589.3,354700984.2,468205299.1 + 05/12 01:00:00,0,33418347.37,0,71093349.18,43881.98858,65487.88935,393731560.5,104511696.5,212820590.5,234102649.5 + 05/12 02:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 05/12 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 05/12 04:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/12 05:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/12 06:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 05/12 07:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,156068433 + 05/12 08:00:00,0,303661797.3,0,455020920,21910.7903,32698.86933,196594774.7,758682717.3,567521574.6,390171082.6 + 05/12 09:00:00,0,514726064.7,0,784025396,87424.10203,130468.5614,784413588.3,1298751461,567521574.6,390171082.6 + 05/12 10:00:00,0,408860095.9,0,625590506,130856.8028,195285.9498,1174113909,1034450602,283760787.3,0 + 05/12 11:00:00,0,490974925.2,0,678857774.2,130644.3268,194968.8584,1172207467,1169832699,283760787.3,0 + 05/12 12:00:00,0,507903107.9,0,636768406.1,86860.91066,129628.075,779360348.3,1144671514,283760787.3,0 + 05/12 13:00:00,0,553205885,0,682413466.2,86763.82816,129483.1926,778489274.7,1235619351,283760787.3,0 + 05/12 14:00:00,0,590656134.8,0,769035668.5,130291.366,194442.1125,1169040523,1359691803,283760787.3,0 + 05/12 15:00:00,0,513539860.1,0,689144667.8,173876.2865,259486.6682,1560106637,1202684528,283760787.3,0 + 05/12 16:00:00,0,373198284.6,0,504738714.9,217938.8221,325243.9994,1955458157,877936999.6,283760787.3,0 + 05/12 17:00:00,0,305385563.1,0,446927559.7,261713.6056,390571.8997,2348227819,752313122.8,354700984.2,0 + 05/12 18:00:00,0,193884668.9,0,299051999.1,305578.5265,456034.3179,2741806240,492936667.9,141880393.7,0 + 05/12 19:00:00,0,334776138.4,0,485715474.2,174746.9447,260786.0069,1567918626,820491612.6,638461771.5,0 + 05/12 20:00:00,0,571270173.3,0,841062140.2,131136.153,195702.8421,1176620382,1412332314,638461771.5,702307948.6 + 05/12 21:00:00,0,515159292.5,0,762487722.1,87480.27323,130552.3892,784917584.9,1277647015,496581377.8,702307948.6 + 05/12 22:00:00,0,448426231.2,0,667670262.9,87480.27323,130552.3892,784917584.9,1116096494,354700984.2,702307948.6 + 05/12 23:00:00,0,371231826.4,0,560913009.2,87523.24903,130616.5248,785303185.7,932144835.6,354700984.2,624273732.1 + 05/12 24:00:00,0,187673975.6,0,299185331,87722.33481,130913.6332,787089484.8,486859306.6,354700984.2,468205299.1 + 05/13 01:00:00,0,0,0,0,43879.50333,65484.18046,393709261.7,0,212820590.5,234102649.5 + 05/13 02:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 05/13 03:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 05/13 04:00:00,148341913.6,0,161489310.1,0,21869.26663,32636.90091,506053426.9,0,141880393.7,0 + 05/13 05:00:00,143259746.6,0,236200446.5,0,21869.26663,32636.90091,575682396.2,0,141880393.7,0 + 05/13 06:00:00,36040439.48,0,98494530.21,0,21880.07298,32653.02792,330854132.9,0,141880393.7,0 + 05/13 07:00:00,0,0,0,0,87567.54766,130682.6344,785700655.5,0,141880393.7,156068433 + 05/13 08:00:00,119420225,0,169034573.9,0,350564.2307,523169.3525,3433895699,0,567521574.6,390171082.6 + 05/13 09:00:00,141163573.2,0,129535623.2,0,306610.7476,457574.7673,3021767050,0,567521574.6,390171082.6 + 05/13 10:00:00,255443696.4,0,367844102.8,0,219007.6769,326839.1195,2588336266,0,283760787.3,0 + 05/13 11:00:00,203355703,0,299973715.6,0,175337.6745,261667.5906,2076548373,0,283760787.3,0 + 05/13 12:00:00,221939185.6,0,322221135.5,0,87697.51124,130876.5874,1331027076,0,283760787.3,0 + 05/13 13:00:00,204715577.3,0,300073228.5,0,87717.51498,130906.4402,1291835045,0,283760787.3,0 + 05/13 14:00:00,149752228.4,0,228402124.6,0,87736.84279,130935.2843,1165374011,0,283760787.3,0 + 05/13 15:00:00,131497099.3,0,187266661.3,0,131605.2642,196402.9265,1499593247,0,283760787.3,0 + 05/13 16:00:00,129173506,0,164292658.3,0,219397.5167,327420.9023,2262012473,0,283760787.3,0 + 05/13 17:00:00,114291800,0,122662980.3,0,219397.5167,327420.9023,2205501089,0,354700984.2,0 + 05/13 18:00:00,174067013.5,0,157557612.5,0,307156.5233,458389.2632,3087589458,0,141880393.7,0 + 05/13 19:00:00,5816240.316,0,0,0,307078.9498,458273.4952,2761085042,0,638461771.5,0 + 05/13 20:00:00,0,0,0,28068288.39,175337.6745,261667.5906,1573218954,28068288.39,638461771.5,702307948.6 + 05/13 21:00:00,0,0,0,5684215.166,175206.1415,261471.2956,1572038774,5684215.166,496581377.8,702307948.6 + 05/13 22:00:00,0,0,0,0,87520.29191,130612.1117,785276652.9,0,354700984.2,702307948.6 + 05/13 23:00:00,48276084.89,0,0,0,87477.0665,130547.6036,833164897.4,0,354700984.2,624273732.1 + 05/13 24:00:00,135533187.2,0,158155024.7,0,43738.53325,65273.80182,686132618.1,0,354700984.2,468205299.1 + 05/14 01:00:00,304642975.3,0,404774749.6,0,43616.76221,65092.07513,1100769539,0,212820590.5,234102649.5 + 05/14 02:00:00,0,0,0,0,21839.78206,32592.89921,195957652.6,0,141880393.7,0 + 05/14 03:00:00,133585092.2,0,189875821.9,0,21808.3811,32546.03756,519136821.4,0,141880393.7,0 + 05/14 04:00:00,208628690.5,0,274096102.5,0,21839.78206,32592.89921,678682445.5,0,141880393.7,0 + 05/14 05:00:00,164317971.1,0,243743167.3,0,21855.1492,32615.83257,604156672.8,0,141880393.7,0 + 05/14 06:00:00,80829032.17,0,139552053.6,0,21880.07298,32653.02792,416700249,0,141880393.7,0 + 05/14 07:00:00,37086934.18,0,35890716.78,0,87567.54766,130682.6344,858678306.5,0,141880393.7,156068433 + 05/14 08:00:00,217604893.3,0,320394575,0,350081.1676,522448.4467,3679106080,0,567521574.6,390171082.6 + 05/14 09:00:00,322189635.5,0,401911927.5,0,306486.4168,457389.2205,3474053857,0,567521574.6,390171082.6 + 05/14 10:00:00,384942453.9,0,525476083,0,219102.6442,326980.8453,2876319099,0,283760787.3,0 + 05/14 11:00:00,299809947.5,0,415475588.3,0,175337.6745,261667.5906,2288504490,0,283760787.3,0 + 05/14 12:00:00,180798222.3,0,293493676.9,0,87759.00667,130968.3609,1261710422,0,283760787.3,0 + 05/14 13:00:00,87699228.1,0,206044892.2,0,87697.51124,130876.5874,1080610875,0,283760787.3,0 + 05/14 14:00:00,55492545.7,0,134694050.5,0,87697.51124,130876.5874,977053351.2,0,283760787.3,0 + 05/14 15:00:00,14698698.49,0,11568271.46,0,131626.5938,196434.758,1207287836,0,283760787.3,0 + 05/14 16:00:00,48134967.38,0,0,0,219377.6563,327391.2634,2016503078,0,283760787.3,0 + 05/14 17:00:00,92811159.94,0,0,0,219293.7875,327266.1006,2060426757,0,354700984.2,0 + 05/14 18:00:00,219441734.1,0,54622543.51,0,306840.9303,457918.2836,3027197448,0,141880393.7,0 + 05/14 19:00:00,80890348.05,0,0,0,306610.7476,457574.7673,2831958202,0,638461771.5,0 + 05/14 20:00:00,0,0,0,0,175135.0953,261365.2689,1571401311,0,638461771.5,702307948.6 + 05/14 21:00:00,0,0,0,0,174954.133,261095.2073,1569777625,0,496581377.8,702307948.6 + 05/14 22:00:00,50811527.36,0,0,0,87420.59679,130463.3303,835193664.8,0,354700984.2,702307948.6 + 05/14 23:00:00,160000337.8,0,177160476.1,0,87170.94019,130090.7518,1119302905,0,354700984.2,624273732.1 + 05/14 24:00:00,240935324,0,300756275.9,0,43616.76221,65092.07513,933043414.3,0,354700984.2,468205299.1 + 05/15 01:00:00,402835802.3,0,541082541.8,0,43510.63427,64933.69364,1334317925,0,212820590.5,234102649.5 + 05/15 02:00:00,4684966.825,0,0,0,21689.47303,32368.58346,199293970.2,0,141880393.7,0 + 05/15 03:00:00,357499451.4,0,472196819,0,21663.93859,32330.47679,1024076166,0,141880393.7,0 + 05/15 04:00:00,420220421,0,582318101.2,0,21641.75532,32297.37128,1196719378,0,141880393.7,0 + 05/15 05:00:00,313939522.9,0,523627917.6,0,21689.47303,32368.58346,1032176444,0,141880393.7,0 + 05/15 06:00:00,103466977.4,0,235691675.5,0,21772.83431,32492.98881,534515616.1,0,141880393.7,0 + 05/15 07:00:00,0,0,0,0,87304.10114,130289.4764,783336879.1,0,141880393.7,156068433 + 05/15 08:00:00,156014400.1,0,228102302,0,350081.1676,522448.4467,3525223314,0,567521574.6,390171082.6 + 05/15 09:00:00,80152929.98,0,51921126.12,0,306743.7019,457773.1835,2884334843,0,567521574.6,390171082.6 + 05/15 10:00:00,0,0,0,0,219377.6563,327391.2634,1968368111,0,283760787.3,0 + 05/15 11:00:00,0,0,0,0,175503.4969,261915.0581,1574706798,0,283760787.3,0 + 05/15 12:00:00,0,111542420.3,0,21335738.55,87605.47633,130739.2378,786040970.9,132878158.8,283760787.3,0 + 05/15 13:00:00,0,281694554.6,0,224568877.1,87523.24903,130616.5248,785303185.7,506263431.7,283760787.3,0 + 05/15 14:00:00,0,359682964.1,0,405954327.6,87424.10203,130468.5614,784413588.3,765637291.7,283760787.3,0 + 05/15 15:00:00,0,368231027.2,0,568020019,131060.2085,195589.5052,1175938969,936251046.2,283760787.3,0 + 05/15 16:00:00,0,307325100.8,0,638893124.8,218560.2551,326171.4034,1961033971,946218225.5,283760787.3,0 + 05/15 17:00:00,0,260738872.8,0,681085338.5,218433.6808,325982.5086,1959898282,941824211.3,354700984.2,0 + 05/15 18:00:00,0,113025809.9,0,536016867,305807.1532,456375.5121,2743857595,649042676.9,141880393.7,0 + 05/15 19:00:00,0,244094020.8,0,631209157.7,306180.9563,456933.3624,2747211547,875303178.4,638461771.5,0 + 05/15 20:00:00,0,363398647.6,0,592966963.1,175398.1183,261757.7948,1573761287,956365610.7,638461771.5,702307948.6 + 05/15 21:00:00,0,263926108.2,0,438513211.6,175444.6696,261827.2663,1574178970,702439319.8,496581377.8,702307948.6 + 05/15 22:00:00,0,160600996.7,0,282766924.9,87763.97715,130975.7787,787463121,443367921.7,354700984.2,702307948.6 + 05/15 23:00:00,0,117871473.2,0,217108205.4,87751.74847,130957.529,787353399.1,334979678.6,354700984.2,624273732.1 + 05/15 24:00:00,0,70073049.92,0,141967074.4,43875.87423,65478.76452,393676699.5,212040124.3,354700984.2,468205299.1 + 05/16 01:00:00,0,0,0,0,43875.53125,65478.25267,393673622.1,0,212820590.5,234102649.5 + 05/16 02:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 05/16 03:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 05/16 04:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 05/16 05:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/16 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 05/16 07:00:00,0,0,0,0,87737.83331,130936.7626,787228545.1,0,141880393.7,156068433 + 05/16 08:00:00,0,308966238.3,0,466056846.5,350572.6448,523181.9093,3145516395,775023084.8,567521574.6,390171082.6 + 05/16 09:00:00,0,473771492.7,0,748594952.5,306180.9563,456933.3624,2747211547,1222366445,567521574.6,390171082.6 + 05/16 10:00:00,0,346864447.8,0,545686070.7,218094.6713,325476.5831,1956856516,892550518.5,283760787.3,0 + 05/16 11:00:00,0,429007942.2,0,585448498.7,174475.737,260381.2665,1565485213,1014456441,283760787.3,0 + 05/16 12:00:00,0,488827555.6,0,554189305.6,87237.86852,130190.6332,782742606.3,1043016861,283760787.3,0 + 05/16 13:00:00,0,478317080.8,0,547632594.8,87237.86852,130190.6332,782742606.3,1025949676,283760787.3,0 + 05/16 14:00:00,0,445045912.2,0,554762340.3,87175.52883,130097.5997,782183262.8,999808252.5,283760787.3,0 + 05/16 15:00:00,0,413571539.9,0,596829507.9,130407.2149,194615.0011,1170079978,1010401048,283760787.3,0 + 05/16 16:00:00,0,461575121.9,0,812526570.6,217565.978,324687.5804,1952112810,1274101693,283760787.3,0 + 05/16 17:00:00,0,409013570,0,833891708.5,217565.978,324687.5804,1952112810,1242905278,354700984.2,0 + 05/16 18:00:00,0,249678393.3,0,639573326.4,304836.7625,454927.3362,2735150755,889251719.7,141880393.7,0 + 05/16 19:00:00,0,364412902.8,0,677534813.5,305578.5265,456034.3179,2741806240,1041947716,638461771.5,0 + 05/16 20:00:00,0,560700488.8,0,862031468.1,174848.2041,260937.1228,1568827177,1422731957,638461771.5,702307948.6 + 05/16 21:00:00,0,460463250.9,0,713347883.6,175210.9527,261478.4756,1572081942,1173811134,496581377.8,702307948.6 + 05/16 22:00:00,0,389967675,0,607641893.8,87523.24903,130616.5248,785303185.7,997609568.8,354700984.2,702307948.6 + 05/16 23:00:00,0,328022124.5,0,515001568.6,87643.16119,130795.4773,786379098.7,843023693.1,354700984.2,624273732.1 + 05/16 24:00:00,0,201724785.4,0,330793735.9,43849.52958,65439.44871,393440321.8,532518521.3,354700984.2,468205299.1 + 05/17 01:00:00,0,3496302.57,0,13964367.1,43875.87423,65478.76452,393676699.5,17460669.67,212820590.5,234102649.5 + 05/17 02:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 05/17 03:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 05/17 04:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 05/17 05:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 05/17 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 05/17 07:00:00,0,0,0,0,87759.00667,130968.3609,787418523.3,0,141880393.7,156068433 + 05/17 08:00:00,7278551.508,0,0,0,351055.9086,523903.1148,3157131036,0,567521574.6,390171082.6 + 05/17 09:00:00,69260284.57,0,82600318.38,0,307131.1196,458351.3517,2907597500,0,567521574.6,390171082.6 + 05/17 10:00:00,0,0,0,0,219247.6479,327197.2435,1967201609,0,283760787.3,0 + 05/17 11:00:00,0,0,0,0,175286.3224,261590.9547,1572758197,0,283760787.3,0 + 05/17 12:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,283760787.3,0 + 05/17 13:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,283760787.3,0 + 05/17 14:00:00,0,0,0,0,87643.16119,130795.4773,786379098.7,0,283760787.3,0 + 05/17 15:00:00,0,0,0,0,131408.2145,196108.8567,1179061456,0,283760787.3,0 + 05/17 16:00:00,0,138636567.2,0,365925254.4,218925.5108,326716.4979,1964311231,504561821.6,283760787.3,0 + 05/17 17:00:00,0,164899113.4,0,524107823.4,218925.5108,326716.4979,1964311231,689006936.8,354700984.2,0 + 05/17 18:00:00,0,36349905.19,0,473014622.9,306619.1671,457587.3323,2751143398,509364528,141880393.7,0 + 05/17 19:00:00,0,154158425.5,0,574725158.2,307028.1718,458197.7161,2754813197,728883583.8,638461771.5,0 + 05/17 20:00:00,0,354155170.1,0,581559274.6,175503.4969,261915.0581,1574706798,935714444.7,638461771.5,702307948.6 + 05/17 21:00:00,0,249099166.8,0,432251667,175527.9543,261951.5574,1574926242,681350833.8,496581377.8,702307948.6 + 05/17 22:00:00,0,154054405.8,0,294412826.9,87763.85009,130975.5891,787461980.9,448467232.7,354700984.2,702307948.6 + 05/17 23:00:00,0,69617669.26,0,169752077.2,87736.84279,130935.2843,787219657.7,239369746.4,354700984.2,624273732.1 + 05/17 24:00:00,0,0,0,10111040.77,43858.75749,65453.22012,393523119.4,10111040.77,354700984.2,468205299.1 + 05/18 01:00:00,4714441.302,0,0,0,43834.41861,65416.89766,398019179.9,0,212820590.5,234102649.5 + 05/18 02:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 05/18 03:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 05/18 04:00:00,25797357.74,0,0,0,21891.88691,32670.65861,222222521.6,0,141880393.7,0 + 05/18 05:00:00,15845238.02,0,37455859.37,0,21891.88691,32670.65861,249726261.3,0,141880393.7,0 + 05/18 06:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 05/18 07:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,156068433 + 05/18 08:00:00,0,188248346.4,0,263595327,87751.74847,130957.529,787353399.1,451843673.5,567521574.6,390171082.6 + 05/18 09:00:00,0,434507120.8,0,727717982.3,219107.903,326988.6933,1965947747,1162225103,567521574.6,390171082.6 + 05/18 10:00:00,0,295650822.4,0,507631561.7,218560.2551,326171.4034,1961033971,803282384.2,283760787.3,0 + 05/18 11:00:00,0,462549818.8,0,643280505.1,217938.8221,325243.9994,1955458157,1105830324,283760787.3,0 + 05/18 12:00:00,0,551567934.7,0,633845900.8,130539.5868,194812.5482,1171267686,1185413836,283760787.3,0 + 05/18 13:00:00,0,663552695,0,752822019.3,130291.366,194442.1125,1169040523,1416374714,283760787.3,0 + 05/18 14:00:00,0,709443268.3,0,909058078.4,130145.7422,194224.7889,1167733912,1618501347,283760787.3,0 + 05/18 15:00:00,0,712550716.1,0,1048001212,129860.2125,193798.6746,1165171994,1760551928,283760787.3,0 + 05/18 16:00:00,0,663599042.6,0,1119890104,303377.4777,452749.5524,2722057308,1783489146,283760787.3,0 + 05/18 17:00:00,0,554600046.7,0,1063382309,390874.098,583326.3375,3507121568,1617982356,354700984.2,0 + 05/18 18:00:00,0,352458080.4,0,852903361.5,304592.3692,454562.6125,2732957934,1205361442,141880393.7,0 + 05/18 19:00:00,0,465224837.6,0,971570914.9,305114.3509,455341.5991,2737641420,1436795752,638461771.5,0 + 05/18 20:00:00,0,606330261.7,0,927048609.8,262569.7471,391849.5743,2355909557,1533378872,638461771.5,702307948.6 + 05/18 21:00:00,0,497360592.9,0,768805459.8,218925.5108,326716.4979,1964311231,1266166053,496581377.8,702307948.6 + 05/18 22:00:00,0,421013705.9,0,656014846.7,175140.4086,261373.1983,1571448985,1077028553,354700984.2,702307948.6 + 05/18 23:00:00,0,362178277.7,0,568506817.3,131464.7418,196193.216,1179568648,930685095,354700984.2,624273732.1 + 05/18 24:00:00,0,271101055.1,0,432701693.4,87670.68846,130836.558,786626087.3,703802748.5,354700984.2,468205299.1 + 05/19 01:00:00,0,91308468.87,0,165234030,43849.52958,65439.44871,393440321.8,256542498.8,212820590.5,234102649.5 + 05/19 02:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 05/19 03:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 05/19 04:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 05/19 05:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 05/19 06:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 05/19 07:00:00,0,36939719.08,0,0,21939.85966,32742.2514,196855599.8,36939719.08,141880393.7,156068433 + 05/19 08:00:00,0,379613554.4,0,574494251.4,21934.45833,32734.19064,196807136.3,954107805.8,567521574.6,390171082.6 + 05/19 09:00:00,0,452082968.3,0,678880744.5,87605.47633,130739.2378,786040970.9,1130963713,567521574.6,390171082.6 + 05/19 10:00:00,0,314932975.1,0,512081115.1,130856.8028,195285.9498,1174113909,827014090.2,283760787.3,0 + 05/19 11:00:00,0,497688679.2,0,694021003.2,130291.366,194442.1125,1169040523,1191709682,283760787.3,0 + 05/19 12:00:00,0,706877295.3,0,834122801.2,86367.30473,128891.4354,774931464.4,1541000097,283760787.3,0 + 05/19 13:00:00,0,867631359.9,0,1024179819,86018.12872,128370.3378,771798479.4,1891811179,283760787.3,0 + 05/19 14:00:00,0,964902095.6,0,1265227523,128659.228,192006.3689,1154396149,2230129619,283760787.3,0 + 05/19 15:00:00,0,969682885.7,0,1422789369,171025.2421,255231.8728,1534525614,2392472255,283760787.3,0 + 05/19 16:00:00,0,942699253.2,0,1532485969,213781.5526,319039.841,1918157017,2475185222,283760787.3,0 + 05/19 17:00:00,0,879419088,0,1512704086,256969.1245,383491.4082,2305657918,2392123174,354700984.2,0 + 05/19 18:00:00,0,698088067.3,0,1265356918,300204.8654,448014.8609,2693591015,1963444986,141880393.7,0 + 05/19 19:00:00,0,732826211.8,0,1301414757,174475.737,260381.2665,1565485213,2034240969,638461771.5,0 + 05/19 20:00:00,0,727681371.6,0,1070802844,131548.5887,196318.3461,1180320965,1798484215,638461771.5,702307948.6 + 05/19 21:00:00,0,490472265.6,0,738378949.3,87751.74847,130957.529,787353399.1,1228851215,496581377.8,702307948.6 + 05/19 22:00:00,0,331702280.6,0,510848281,87763.97715,130975.7787,787463121,842550561.6,354700984.2,702307948.6 + 05/19 23:00:00,0,230049891.2,0,365710921.9,87763.85009,130975.5891,787461980.9,595760813.1,354700984.2,624273732.1 + 05/19 24:00:00,0,85845912.29,0,156424332.5,87736.84279,130935.2843,787219657.7,242270244.8,354700984.2,468205299.1 + 05/20 01:00:00,0,0,0,0,43858.75749,65453.22012,393523119.4,0,212820590.5,234102649.5 + 05/20 02:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/20 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/20 04:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 05/20 05:00:00,22064220.76,0,14559169.3,0,21917.20931,32708.44883,233275759.4,0,141880393.7,0 + 05/20 06:00:00,1178316.629,0,12092075.14,0,21929.37875,32726.61006,210031951.5,0,141880393.7,0 + 05/20 07:00:00,0,0,0,0,87736.84279,130935.2843,787219657.7,0,141880393.7,156068433 + 05/20 08:00:00,92576064.28,0,134567313.7,0,351055.4003,523902.3562,3376991302,0,567521574.6,390171082.6 + 05/20 09:00:00,49603542.1,0,39804951.47,0,307173.4753,458414.5617,2845525427,0,567521574.6,390171082.6 + 05/20 10:00:00,0,0,0,0,219344.5833,327341.9064,1968071363,0,283760787.3,0 + 05/20 11:00:00,0,20970149.95,0,52688906.33,175341.3769,261673.116,1573252175,73659056.28,283760787.3,0 + 05/20 12:00:00,0,228720162,0,160189347.8,87643.16119,130795.4773,786379098.7,388909509.8,283760787.3,0 + 05/20 13:00:00,0,319039866.9,0,292943662.5,87523.24903,130616.5248,785303185.7,611983529.4,283760787.3,0 + 05/20 14:00:00,0,318188729.1,0,388628757.2,87424.10203,130468.5614,784413588.3,706817486.3,283760787.3,0 + 05/20 15:00:00,0,254769659.1,0,345157898.1,131464.7418,196193.216,1179568648,599927557.3,283760787.3,0 + 05/20 16:00:00,0,97869245.98,0,145295306.2,219247.6479,327197.2435,1967201609,243164552.2,283760787.3,0 + 05/20 17:00:00,0,8392039.524,0,16307900.24,219344.5833,327341.9064,1968071363,24699939.76,354700984.2,0 + 05/20 18:00:00,0,0,0,0,307131.1196,458351.3517,2755736897,0,141880393.7,0 + 05/20 19:00:00,0,0,0,0,307158.0353,458391.5196,2755978397,0,638461771.5,0 + 05/20 20:00:00,0,38337044.67,0,119126915.9,175518.8773,261938.0112,1574844798,157463960.5,638461771.5,702307948.6 + 05/20 21:00:00,0,161967742.3,0,279951804.9,175503.4969,261915.0581,1574706798,441919547.3,496581377.8,702307948.6 + 05/20 22:00:00,0,73185280.85,0,165686331.4,87759.43865,130969.0056,787422399.2,238871612.2,354700984.2,702307948.6 + 05/20 23:00:00,0,7918589.076,0,69872983.71,87763.97715,130975.7787,787463121,77791572.79,354700984.2,624273732.1 + 05/20 24:00:00,0,0,0,0,43881.92504,65487.79453,393730990.5,0,354700984.2,468205299.1 + 05/21 01:00:00,37327857.85,0,12567008.1,0,43879.50333,65484.18046,443604127.6,0,212820590.5,234102649.5 + 05/21 02:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 05/21 03:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 05/21 04:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 05/21 05:00:00,2733485.663,0,0,0,21939.75167,32742.09023,199588116.5,0,141880393.7,0 + 05/21 06:00:00,23107639.42,0,4521352.589,0,21937.76563,32739.12634,224465803.1,0,141880393.7,0 + 05/21 07:00:00,0,0,0,0,87759.00667,130968.3609,787418523.3,0,141880393.7,156068433 + 05/21 08:00:00,183013713.6,0,246002523.8,0,351036.0267,523873.4437,3578690331,0,567521574.6,390171082.6 + 05/21 09:00:00,83348176.24,0,81754096.98,0,307156.5233,458389.2632,2921067105,0,567521574.6,390171082.6 + 05/21 10:00:00,150411741.9,0,207529553.3,0,219409.6252,327438.9727,2326596247,0,283760787.3,0 + 05/21 11:00:00,195684253.2,0,268681273.7,0,175527.7002,261951.1781,2039289489,0,283760787.3,0 + 05/21 12:00:00,198738393.1,0,271532671.3,0,87763.97715,130975.7787,1257734185,0,283760787.3,0 + 05/21 13:00:00,195893035.5,0,264867252.5,0,87759.43865,130969.0056,1248182687,0,283760787.3,0 + 05/21 14:00:00,178095513.3,0,240870164.3,0,87759.43865,130969.0056,1206388077,0,283760787.3,0 + 05/21 15:00:00,109449851.8,0,149472780.6,0,131606.75,196405.1438,1439765450,0,283760787.3,0 + 05/21 16:00:00,111611200.3,0,149700499.3,0,219344.5833,327341.9064,2229383062,0,283760787.3,0 + 05/21 17:00:00,123495891.4,0,162400408.5,0,219379.3712,327393.8226,2254279798,0,354700984.2,0 + 05/21 18:00:00,188734761.2,0,253647091.9,0,307131.1196,458351.3517,3198118750,0,141880393.7,0 + 05/21 19:00:00,0,0,0,0,307082.4166,458278.669,2755299908,0,638461771.5,0 + 05/21 20:00:00,0,6223966.029,0,81777069.93,175518.8773,261938.0112,1574844798,88001035.95,638461771.5,702307948.6 + 05/21 21:00:00,0,117740806.1,0,236505875.3,175527.9543,261951.5574,1574926242,354246681.4,496581377.8,702307948.6 + 05/21 22:00:00,0,5897523.478,0,72716698.49,87763.85009,130975.5891,787461980.9,78614221.97,354700984.2,702307948.6 + 05/21 23:00:00,0,0,0,1237745.336,87763.85009,130975.5891,787461980.9,1237745.336,354700984.2,624273732.1 + 05/21 24:00:00,0,0,0,0,43881.92504,65487.79453,393730990.5,0,354700984.2,468205299.1 + 05/22 01:00:00,62762761.56,0,26168410.23,0,43879.50333,65484.18046,482640433.4,0,212820590.5,234102649.5 + 05/22 02:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 05/22 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 05/22 04:00:00,25750932.11,0,0,0,21934.2107,32733.82109,222555846.5,0,141880393.7,0 + 05/22 05:00:00,58718495.73,0,82820497.82,0,21924.37781,32719.14684,338255682.3,0,141880393.7,0 + 05/22 06:00:00,5887577.173,0,15605266.21,0,21924.37781,32719.14684,218209532.1,0,141880393.7,0 + 05/22 07:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,141880393.7,156068433 + 05/22 08:00:00,150977123.7,0,215951345.4,0,350790.045,523506.3495,3514395489,0,567521574.6,390171082.6 + 05/22 09:00:00,141533410.2,0,140859281.4,0,307011.3024,458172.5408,3037054527,0,567521574.6,390171082.6 + 05/22 10:00:00,260841018.1,0,348519616.7,0,219293.7875,327266.1006,2576976232,0,283760787.3,0 + 05/22 11:00:00,255057937.7,0,350253862.6,0,175473.6856,261870.5687,2179751116,0,283760787.3,0 + 05/22 12:00:00,256840440.5,0,375851658.3,0,87717.51498,130906.4402,1419738338,0,283760787.3,0 + 05/22 13:00:00,220566624.1,0,317848988.9,0,87736.84279,130935.2843,1325635271,0,283760787.3,0 + 05/22 14:00:00,201421021.1,0,283466284.3,0,87751.06251,130956.5053,1272234550,0,283760787.3,0 + 05/22 15:00:00,193182728.7,0,248899360.1,0,131605.2642,196402.9265,1622911575,0,283760787.3,0 + 05/22 16:00:00,209492686,0,246946643.6,0,219342.107,327338.2109,2424488474,0,283760787.3,0 + 05/22 17:00:00,183659148.2,0,201883701.1,0,219377.6563,327391.2634,2353910960,0,354700984.2,0 + 05/22 18:00:00,231067119.2,0,202091066.3,0,307128.7188,458347.7687,3188873540,0,141880393.7,0 + 05/22 19:00:00,46749792.03,0,0,0,307011.3024,458172.5408,2801411628,0,638461771.5,0 + 05/22 20:00:00,0,0,0,0,175337.6745,261667.5906,1573218954,0,638461771.5,702307948.6 + 05/22 21:00:00,0,0,0,0,175282.1154,261584.6763,1572720450,0,496581377.8,702307948.6 + 05/22 22:00:00,0,0,0,0,87603.07075,130735.6478,786019386.8,0,354700984.2,702307948.6 + 05/22 23:00:00,56743060.37,0,0,0,87520.29191,130612.1117,842019713.2,0,354700984.2,624273732.1 + 05/22 24:00:00,163511784.5,0,189492524.9,0,43710.2984,65231.66514,745195378.2,0,354700984.2,468205299.1 + 05/23 01:00:00,321952899.2,0,424962859.9,0,43679.56412,65185.79842,1138831064,0,212820590.5,234102649.5 + 05/23 02:00:00,0,0,0,0,21808.3811,32546.03756,195675907.2,0,141880393.7,0 + 05/23 03:00:00,200898158.6,0,215472372.3,0,21808.3811,32546.03756,612046438.2,0,141880393.7,0 + 05/23 04:00:00,291133290.8,0,392885847.7,0,21792.73505,32522.68796,879554661.3,0,141880393.7,0 + 05/23 05:00:00,100543294.2,0,294831247.4,0,21808.3811,32546.03756,591050448.8,0,141880393.7,0 + 05/23 06:00:00,0,0,37647411.91,0,21839.78206,32592.89921,233605064.5,0,141880393.7,0 + 05/23 07:00:00,0,0,0,0,87477.0665,130547.6036,784888812.5,0,141880393.7,156068433 + 05/23 08:00:00,7734550.8,0,65347124.66,0,350081.1676,522448.4467,3214188287,0,567521574.6,390171082.6 + 05/23 09:00:00,48048090.52,0,14875106.22,0,306840.9303,457918.2836,2816056367,0,567521574.6,390171082.6 + 05/23 10:00:00,61615847.63,0,0,0,219243.7781,327191.4684,2028782735,0,283760787.3,0 + 05/23 11:00:00,47649876.27,0,56547235.79,0,175473.6856,261870.5687,1678636427,0,283760787.3,0 + 05/23 12:00:00,0,0,40335127.45,0,87751.06251,130956.5053,827682371.7,0,283760787.3,0 + 05/23 13:00:00,0,0,366239.3613,0,87763.85009,130975.5891,787828220.3,0,283760787.3,0 + 05/23 14:00:00,0,29439710.9,0,0,87763.97715,130975.7787,787463121,29439710.9,283760787.3,0 + 05/23 15:00:00,0,114146653.8,0,172382213.3,131627.6227,196436.2936,1181030099,286528867.1,283760787.3,0 + 05/23 16:00:00,0,85295495.44,0,313203144,219379.3712,327393.8226,1968383498,398498639.5,283760787.3,0 + 05/23 17:00:00,0,43353065.98,0,354610580.1,219398.5966,327422.514,1968555998,397963646,354700984.2,0 + 05/23 18:00:00,0,0,0,237155494.3,307158.0353,458391.5196,2755978397,237155494.3,141880393.7,0 + 05/23 19:00:00,0,0,0,359523183.2,307156.5233,458389.2632,2755964832,359523183.2,638461771.5,0 + 05/23 20:00:00,0,156679700.1,0,318831808.5,175435.03,261812.8805,1574092478,475511508.7,638461771.5,702307948.6 + 05/23 21:00:00,0,35030102.13,0,107809132.8,175135.0953,261365.2689,1571401311,142839234.9,496581377.8,702307948.6 + 05/23 22:00:00,0,0,0,0,87420.59679,130463.3303,784382137.5,0,354700984.2,702307948.6 + 05/23 23:00:00,0,0,0,0,87359.12823,130371.5968,783830610.3,0,354700984.2,624273732.1 + 05/23 24:00:00,114808486.8,0,87431445.33,0,43616.76221,65092.07513,593591746.5,0,354700984.2,468205299.1 + 05/24 01:00:00,241130341.6,0,306394890.9,0,43710.2984,65231.66514,939716301.2,0,212820590.5,234102649.5 + 05/24 02:00:00,0,0,0,0,21855.1492,32615.83257,196095534.4,0,141880393.7,0 + 05/24 03:00:00,106834562.6,0,112229420.4,0,21839.78206,32592.89921,415021635.5,0,141880393.7,0 + 05/24 04:00:00,206911789.6,0,270691812.8,0,21792.73505,32522.68796,673139125.2,0,141880393.7,0 + 05/24 05:00:00,37600972.63,0,196797962.5,0,21808.3811,32546.03756,430074842.3,0,141880393.7,0 + 05/24 06:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 05/24 07:00:00,0,0,0,0,87641.05768,130792.3381,786360224.9,0,141880393.7,156068433 + 05/24 08:00:00,0,37815935.5,0,40886300.98,350947.3711,523741.1374,3148878631,78702236.48,567521574.6,390171082.6 + 05/24 09:00:00,0,224406920,0,422211920.8,307173.92,458415.2254,2756120924,646618840.8,567521574.6,390171082.6 + 05/24 10:00:00,0,5223553.149,0,85103236.63,219409.6252,327438.9727,1968654952,90326789.78,283760787.3,0 + 05/24 11:00:00,0,68794418.73,0,95227231.77,175518.8773,261938.0112,1574844798,164021650.5,283760787.3,0 + 05/24 12:00:00,0,183325729.9,0,132007423.7,87699.05915,130878.8974,786880643.7,315333153.6,283760787.3,0 + 05/24 13:00:00,0,235016421.4,0,174957388.8,87699.05915,130878.8974,786880643.7,409973810.2,283760787.3,0 + 05/24 14:00:00,0,272401763.9,0,309609920.1,87643.16119,130795.4773,786379098.7,582011684,283760787.3,0 + 05/24 15:00:00,0,271051862.8,0,436105285.9,131464.7418,196193.216,1179568648,707157148.6,283760787.3,0 + 05/24 16:00:00,0,235769772,0,508137881.9,218925.5108,326716.4979,1964311231,743907653.9,283760787.3,0 + 05/24 17:00:00,0,184647086.7,0,494562205.5,219107.903,326988.6933,1965947747,679209292.2,354700984.2,0 + 05/24 18:00:00,0,40239356.23,0,249984903.9,306847.4096,457927.9531,2753191306,290224260.1,141880393.7,0 + 05/24 19:00:00,0,141491667.2,0,299974841.8,307028.1718,458197.7161,2754813197,441466509,638461771.5,0 + 05/24 20:00:00,0,301392223.4,0,484937632.5,175503.4969,261915.0581,1574706798,786329855.9,638461771.5,702307948.6 + 05/24 21:00:00,0,203284211.1,0,335297280,175527.7002,261951.1781,1574923962,538581491,496581377.8,702307948.6 + 05/24 22:00:00,0,113462036.3,0,201671921.5,87759.00667,130968.3609,787418523.3,315133957.8,354700984.2,702307948.6 + 05/24 23:00:00,0,66320973.44,0,131209299.6,87759.00667,130968.3609,787418523.3,197530273,354700984.2,624273732.1 + 05/24 24:00:00,0,1419794.833,0,14265297.55,43868.42139,65467.64217,393609828.8,15685092.38,354700984.2,468205299.1 + 05/25 01:00:00,0,0,0,0,43858.75749,65453.22012,393523119.4,0,212820590.5,234102649.5 + 05/25 02:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/25 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/25 04:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/25 05:00:00,10717892.4,0,0,0,21924.37781,32719.14684,207434581.2,0,141880393.7,0 + 05/25 06:00:00,13588778.59,0,4268555.112,0,21924.37781,32719.14684,214574022.4,0,141880393.7,0 + 05/25 07:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,156068433 + 05/25 08:00:00,175224876,0,247643366.9,0,87641.05768,130792.3381,1209228468,0,567521574.6,390171082.6 + 05/25 09:00:00,154589694.2,0,172203749.3,0,219102.6442,326980.8453,2292694006,0,567521574.6,390171082.6 + 05/25 10:00:00,238932076.5,0,335572129.4,0,218918.8691,326706.5861,2538755845,0,283760787.3,0 + 05/25 11:00:00,272392908,0,386701524.8,0,218692.6663,326369.0091,2621316464,0,283760787.3,0 + 05/25 12:00:00,284014780.6,0,410055767.4,0,131215.5998,195821.4055,1871403767,0,283760787.3,0 + 05/25 13:00:00,299150909.6,0,427189989.8,0,131280.4379,195918.1675,1904255879,0,283760787.3,0 + 05/25 14:00:00,356968861.7,0,497900522.3,0,131215.5998,195821.4055,2032202603,0,283760787.3,0 + 05/25 15:00:00,422082248,0,581015054.3,0,131280.4379,195918.1675,2181012282,0,283760787.3,0 + 05/25 16:00:00,456551876.6,0,624805174.6,0,306321.0217,457142.3908,3829825336,0,283760787.3,0 + 05/25 17:00:00,398651308.1,0,529358599.3,0,394053.9645,588071.855,4463662857,0,354700984.2,0 + 05/25 18:00:00,387625242.5,0,449599717.2,0,306486.4168,457389.2205,3587177254,0,141880393.7,0 + 05/25 19:00:00,226637134.7,0,239128173.6,0,306486.4168,457389.2205,3215717603,0,638461771.5,0 + 05/25 20:00:00,4429074.767,0,0,0,262809.2123,392206.9434,2362487235,0,638461771.5,702307948.6 + 05/25 21:00:00,54758906.48,0,0,0,218918.8691,326706.5861,2019010545,0,496581377.8,702307948.6 + 05/25 22:00:00,104864838.8,0,92013314.61,0,175135.0953,261365.2689,1768279465,0,354700984.2,702307948.6 + 05/25 23:00:00,125568950,0,127438790.4,0,131351.3215,196023.9517,1431558724,0,354700984.2,624273732.1 + 05/25 24:00:00,166514008.1,0,189446531.8,0,87603.07075,130735.6478,1141979927,0,354700984.2,468205299.1 + 05/26 01:00:00,293729157.2,0,380077531,0,43783.77383,65341.31722,1066657016,0,212820590.5,234102649.5 + 05/26 02:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 05/26 03:00:00,117926735.9,0,151730286.2,0,21891.88691,32670.65861,466082186,0,141880393.7,0 + 05/26 04:00:00,184818523.1,0,234317397,0,21891.88691,32670.65861,615561083.9,0,141880393.7,0 + 05/26 05:00:00,175720682.2,0,229573613.6,0,21891.88691,32670.65861,601719459.7,0,141880393.7,0 + 05/26 06:00:00,146394023.5,0,191770004.7,0,21891.88691,32670.65861,534589192.2,0,141880393.7,0 + 05/26 07:00:00,80613038.79,0,96289325.83,0,21891.88691,32670.65861,373327528.5,0,141880393.7,156068433 + 05/26 08:00:00,219498651.3,0,323430003.9,0,21891.88691,32670.65861,739353819,0,567521574.6,390171082.6 + 05/26 09:00:00,265488556.1,0,326082240.1,0,87603.07075,130735.6478,1377590183,0,567521574.6,390171082.6 + 05/26 10:00:00,299817773.8,0,410734168.6,0,131461.5865,196188.5072,1890092280,0,283760787.3,0 + 05/26 11:00:00,349076804.5,0,474641274.1,0,131503.2558,196250.693,2003632294,0,283760787.3,0 + 05/26 12:00:00,315229555.2,0,424978536.4,0,87736.84279,130935.2843,1527427749,0,283760787.3,0 + 05/26 13:00:00,280864317.8,0,377492584,0,87751.06251,130956.5053,1445704146,0,283760787.3,0 + 05/26 14:00:00,233329893.2,0,315546670.1,0,131626.5938,196434.758,1729897430,0,283760787.3,0 + 05/26 15:00:00,219879486.7,0,300422484.2,0,175395.0225,261753.1747,2094035481,0,283760787.3,0 + 05/26 16:00:00,300364374.2,0,403582283.3,0,219102.6442,326980.8453,2669847220,0,283760787.3,0 + 05/26 17:00:00,264900830.9,0,318233428.1,0,262809.2123,392206.9434,2941192420,0,354700984.2,0 + 05/26 18:00:00,393810524.2,0,533104224.2,0,306486.4168,457389.2205,3676867043,0,141880393.7,0 + 05/26 19:00:00,244520973.8,0,310754881.8,0,175040.5838,261224.2233,2125829161,0,638461771.5,0 + 05/26 20:00:00,39322410.59,0,2598935.249,0,131215.5998,195821.4055,1219254565,0,638461771.5,702307948.6 + 05/26 21:00:00,103734728.1,0,95832182.49,0,87420.59679,130463.3303,983949048.1,0,496581377.8,702307948.6 + 05/26 22:00:00,153987873.4,0,168915386.1,0,87477.0665,130547.6036,1107792072,0,354700984.2,702307948.6 + 05/26 23:00:00,188671433.2,0,219853916.8,0,87420.59679,130463.3303,1192907487,0,354700984.2,624273732.1 + 05/26 24:00:00,250487497.4,0,311310940,0,87420.59679,130463.3303,1346180575,0,354700984.2,468205299.1 + 05/27 01:00:00,370564566.9,0,490181435.6,0,43738.53325,65273.80182,1253190409,0,212820590.5,234102649.5 + 05/27 02:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 05/27 03:00:00,181326808.8,0,182095015.4,0,21869.26663,32636.90091,559644027.3,0,141880393.7,0 + 05/27 04:00:00,252382345.8,0,331182424.7,0,21869.26663,32636.90091,779786973.6,0,141880393.7,0 + 05/27 05:00:00,243548007.2,0,323122528.3,0,21869.26663,32636.90091,762892738.7,0,141880393.7,0 + 05/27 06:00:00,219967942.9,0,292981425.8,0,21869.26663,32636.90091,709171571.9,0,141880393.7,0 + 05/27 07:00:00,93169304.98,0,116157698.1,0,87520.29191,130612.1117,994603655.9,0,141880393.7,156068433 + 05/27 08:00:00,221242220.7,0,326139423.9,0,350270.1906,522730.5377,3690184267,0,567521574.6,390171082.6 + 05/27 09:00:00,235255644.1,0,297184090.8,0,306486.4168,457389.2205,3282392029,0,567521574.6,390171082.6 + 05/27 10:00:00,319153509.8,0,444100266.3,0,219102.6442,326980.8453,2729154338,0,283760787.3,0 + 05/27 11:00:00,240386852.9,0,343044398.8,0,175395.0225,261753.1747,2157164762,0,283760787.3,0 + 05/27 12:00:00,181602397.8,0,268582901.3,0,87717.51498,130906.4402,1237231538,0,283760787.3,0 + 05/27 13:00:00,154979763.1,0,230230858.8,0,87751.06251,130956.5053,1172557866,0,283760787.3,0 + 05/27 14:00:00,127430641.1,0,190895419.6,0,87751.06251,130956.5053,1105673305,0,283760787.3,0 + 05/27 15:00:00,86502229.17,0,122044969.7,0,131638.51,196452.5414,1389674984,0,283760787.3,0 + 05/27 16:00:00,68768840.15,0,90144156.05,0,219397.5167,327420.9023,2127459304,0,283760787.3,0 + 05/27 17:00:00,79163929.63,0,78909337.61,0,219397.5167,327420.9023,2126619576,0,354700984.2,0 + 05/27 18:00:00,166723940.3,0,225700274.5,0,307156.5233,458389.2632,3148389046,0,141880393.7,0 + 05/27 19:00:00,0,0,0,0,307128.7188,458347.7687,2755715355,0,638461771.5,0 + 05/27 20:00:00,0,0,0,31900019.3,175502.125,261913.0107,1574694489,31900019.3,638461771.5,702307948.6 + 05/27 21:00:00,0,50072960.73,0,119608805.2,175435.03,261812.8805,1574092478,169681766,496581377.8,702307948.6 + 05/27 22:00:00,0,0,0,12144521.49,87697.51124,130876.5874,786866755,12144521.49,354700984.2,702307948.6 + 05/27 23:00:00,0,0,0,0,87668.83723,130833.7953,786609477.2,0,354700984.2,624273732.1 + 05/27 24:00:00,0,0,0,0,43820.52884,65396.16907,393180112.5,0,354700984.2,468205299.1 + 05/28 01:00:00,127130840.6,0,154245122.6,0,43834.41861,65416.89766,674680701.8,0,212820590.5,234102649.5 + 05/28 02:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/28 03:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 05/28 04:00:00,52176934.06,0,53977688.08,0,21900.76769,32683.91195,302659468.9,0,141880393.7,0 + 05/28 05:00:00,0,0,27104745.94,0,21900.76769,32683.91195,223609592.6,0,141880393.7,0 + 05/28 06:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/28 07:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,141880393.7,156068433 + 05/28 08:00:00,0,197946257.6,0,317513217.9,351037.7546,523876.0224,3149689597,515459475.5,567521574.6,390171082.6 + 05/28 09:00:00,0,314987978.6,0,517069568.8,307028.1718,458197.7161,2754813197,832057547.5,567521574.6,390171082.6 + 05/28 10:00:00,0,122816651.4,0,243855594.6,219107.903,326988.6933,1965947747,366672246,283760787.3,0 + 05/28 11:00:00,0,184369990.8,0,258063374.4,175140.4086,261373.1983,1571448985,442433365.1,283760787.3,0 + 05/28 12:00:00,0,257859834.4,0,257361833.9,87523.24903,130616.5248,785303185.7,515221668.4,283760787.3,0 + 05/28 13:00:00,0,337804847.3,0,337467584.6,87424.10203,130468.5614,784413588.3,675272431.9,283760787.3,0 + 05/28 14:00:00,0,394479158.6,0,488986891.5,87308.15043,130295.5194,783373211.4,883466050.1,283760787.3,0 + 05/28 15:00:00,0,415182956,0,636438296.4,130962.2256,195443.2791,1175059817,1051621252,283760787.3,0 + 05/28 16:00:00,0,365063621,0,694694940.2,218094.6713,325476.5831,1956856516,1059758561,283760787.3,0 + 05/28 17:00:00,0,314074433.4,0,699390614.4,218270.3761,325738.7985,1958433029,1013465048,354700984.2,0 + 05/28 18:00:00,0,168673868.3,0,485584410.8,305984.3571,456639.9648,2745447559,654258279.1,141880393.7,0 + 05/28 19:00:00,0,270192825.8,0,680188909.7,306495.7151,457403.097,2750035724,950381735.5,638461771.5,0 + 05/28 20:00:00,0,391594555,0,639686064.3,175341.3769,261673.116,1573252175,1031280619,638461771.5,702307948.6 + 05/28 21:00:00,0,277171080.8,0,446129683.9,175475.6666,261873.5251,1574457090,723300764.7,496581377.8,702307948.6 + 05/28 22:00:00,0,193335666.7,0,320507752.6,87737.83331,130936.7626,787228545.1,513843419.4,354700984.2,702307948.6 + 05/28 23:00:00,0,144663357.8,0,248813770,87751.74847,130957.529,787353399.1,393477127.8,354700984.2,624273732.1 + 05/28 24:00:00,0,64273629.32,0,127378674.1,43879.71932,65484.50279,393711199.6,191652303.4,354700984.2,468205299.1 + 05/29 01:00:00,0,0,0,0,43879.50333,65484.18046,393709261.7,0,212820590.5,234102649.5 + 05/29 02:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 05/29 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/29 04:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 05/29 05:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/29 06:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 05/29 07:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,141880393.7,156068433 + 05/29 08:00:00,0,320889893.9,0,473643310.7,351006.9939,523830.1162,3149413596,794533204.5,567521574.6,390171082.6 + 05/29 09:00:00,0,379695156.6,0,624659852.3,306847.4096,457927.9531,2753191306,1004355009,567521574.6,390171082.6 + 05/29 10:00:00,0,212832134.6,0,369202153.8,218560.2551,326171.4034,1961033971,582034288.5,283760787.3,0 + 05/29 11:00:00,0,307492491.4,0,433537539.6,174475.737,260381.2665,1565485213,741030031,283760787.3,0 + 05/29 12:00:00,0,428280224.2,0,479467313.6,87026.3912,129875.0321,780845124,907747537.8,283760787.3,0 + 05/29 13:00:00,0,522792500.7,0,574420828,87026.3912,129875.0321,780845124,1097213329,283760787.3,0 + 05/29 14:00:00,0,576069701.8,0,734040165.9,86763.82816,129483.1926,778489274.7,1310109868,283760787.3,0 + 05/29 15:00:00,0,583279274.4,0,880209171.1,130145.7422,194224.7889,1167733912,1463488445,283760787.3,0 + 05/29 16:00:00,0,531357816.2,0,952172687.1,216909.5704,323707.9815,1946223187,1483530503,283760787.3,0 + 05/29 17:00:00,0,482061370.4,0,1000891553,216909.5704,323707.9815,1946223187,1482952924,354700984.2,0 + 05/29 18:00:00,0,338065212.9,0,867014283.4,304283.5013,454101.6693,2730186614,1205079496,141880393.7,0 + 05/29 19:00:00,0,420877515.8,0,949791927,305578.5265,456034.3179,2741806240,1370669443,638461771.5,0 + 05/29 20:00:00,0,507444180.6,0,812656064.5,175210.9527,261478.4756,1572081942,1320100245,638461771.5,702307948.6 + 05/29 21:00:00,0,431720720.7,0,673475458,175140.4086,261373.1983,1571448985,1105196179,496581377.8,702307948.6 + 05/29 22:00:00,0,306968953.8,0,490660646.7,87751.74847,130957.529,787353399.1,797629600.5,354700984.2,702307948.6 + 05/29 23:00:00,0,223311992.6,0,368055000.1,87751.74847,130957.529,787353399.1,591366992.7,354700984.2,624273732.1 + 05/29 24:00:00,0,123540389.3,0,219517259.9,43881.92504,65487.79453,393730990.5,343057649.2,354700984.2,468205299.1 + 05/30 01:00:00,0,0,0,0,43875.53125,65478.25267,393673622.1,0,212820590.5,234102649.5 + 05/30 02:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 05/30 03:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/30 04:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 05/30 05:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 05/30 06:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 05/30 07:00:00,0,220999978.7,0,107826398.3,87722.33481,130913.6332,787089484.8,328826377,141880393.7,156068433 + 05/30 08:00:00,0,559703506,0,860295762.7,350421.9053,522956.9512,3144163883,1419999269,567521574.6,390171082.6 + 05/30 09:00:00,0,556110473.7,0,890797654.6,305984.3571,456639.9648,2745447559,1446908128,567521574.6,390171082.6 + 05/30 10:00:00,0,338648805.3,0,569773532.3,217740.5446,324948.0973,1953679111,908422337.6,283760787.3,0 + 05/30 11:00:00,0,423190389.4,0,605112592.3,173721.8213,259256.15,1558720697,1028302982,283760787.3,0 + 05/30 12:00:00,0,525176473.3,0,621826429.2,86573.475,129199.1164,776781329.1,1147002903,283760787.3,0 + 05/30 13:00:00,0,596915382.8,0,687316222.4,86573.475,129199.1164,776781329.1,1284231605,283760787.3,0 + 05/30 14:00:00,0,631052107.1,0,819362419.2,86367.30473,128891.4354,774931464.4,1450414526,283760787.3,0 + 05/30 15:00:00,0,649227750.6,0,973403063.6,129694.4466,193551.2917,1163684658,1622630814,283760787.3,0 + 05/30 16:00:00,0,604114097.1,0,1054201946,215918.2618,322228.5885,1937328661,1658316043,283760787.3,0 + 05/30 17:00:00,0,557248874.7,0,1104027514,216157.4111,322585.4861,1939474430,1661276388,354700984.2,0 + 05/30 18:00:00,0,406902958.5,0,944102666.8,303377.4777,452749.5524,2722057308,1351005625,141880393.7,0 + 05/30 19:00:00,0,517021958.4,0,1069436304,304592.3692,454562.6125,2732957934,1586458263,638461771.5,0 + 05/30 20:00:00,0,666073333.7,0,1036122943,174616.3009,260591.0388,1566746423,1702196276,638461771.5,702307948.6 + 05/30 21:00:00,0,542773411.1,0,831461575.2,174848.2041,260937.1228,1568827177,1374234986,496581377.8,702307948.6 + 05/30 22:00:00,0,427404134.9,0,660837024.5,87570.20432,130686.5991,785724492.5,1088241159,354700984.2,702307948.6 + 05/30 23:00:00,0,359497376.1,0,559672738.9,87570.20432,130686.5991,785724492.5,919170115,354700984.2,624273732.1 + 05/30 24:00:00,0,272089438.7,0,429704008.9,43802.73816,65369.6189,393020485.4,701793447.6,354700984.2,468205299.1 + 05/31 01:00:00,0,84179667.74,0,148555876.6,43835.34423,65418.27901,393313043.7,232735544.4,212820590.5,234102649.5 + 05/31 02:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 05/31 03:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 05/31 04:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 05/31 05:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 05/31 06:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 05/31 07:00:00,0,0,0,0,87668.83723,130833.7953,786609477.2,0,141880393.7,156068433 + 05/31 08:00:00,0,117679681.8,0,138065002.9,350947.3711,523741.1374,3148878631,255744684.7,567521574.6,390171082.6 + 05/31 09:00:00,0,266745050.3,0,475309636.5,307156.5233,458389.2632,2755964832,742054686.7,567521574.6,390171082.6 + 05/31 10:00:00,0,75830864.97,0,177064613.5,219398.5966,327422.514,1968555998,252895478.4,283760787.3,0 + 05/31 11:00:00,0,145942697.2,0,205088421.6,175444.6696,261827.2663,1574178970,351031118.8,283760787.3,0 + 05/31 12:00:00,0,258528294.3,0,232815840.1,87670.68846,130836.558,786626087.3,491344134.4,283760787.3,0 + 05/31 13:00:00,0,359900288.4,0,333364148.4,87605.47633,130739.2378,786040970.9,693264436.8,283760787.3,0 + 05/31 14:00:00,0,411364795.7,0,491869046.4,87570.20432,130686.5991,785724492.5,903233842.1,283760787.3,0 + 05/31 15:00:00,0,412116600.4,0,629348064.7,131284.8735,195924.7872,1177954779,1041464665,283760787.3,0 + 05/31 16:00:00,0,359600216.4,0,698961358.3,218808.1226,326541.3119,1963257964,1058561575,283760787.3,0 + 05/31 17:00:00,0,299413556.2,0,718407270.9,218925.5108,326716.4979,1964311231,1017820827,354700984.2,0 + 05/31 18:00:00,0,118305540.7,0,522296091.5,306946.707,458076.141,2754082253,640601632.2,141880393.7,0 + 05/31 19:00:00,0,187579847.3,0,573250298.8,307153.6467,458384.9703,2755939021,760830146,638461771.5,0 + 05/31 20:00:00,0,299712904.6,0,509814271.5,175525.6083,261948.0563,1574905193,809527176,638461771.5,702307948.6 + 05/31 21:00:00,0,186327795.2,0,319871249.5,175479.1352,261878.7016,1574488213,506199044.7,496581377.8,702307948.6 + 05/31 22:00:00,0,75661448.44,0,155369352.6,87683.81047,130856.1408,786743824.7,231030801,354700984.2,702307948.6 + 05/31 23:00:00,0,3495826.39,0,29951422.92,87609.7538,130745.6214,786079350.6,33447249.31,354700984.2,624273732.1 + 05/31 24:00:00,0,0,0,0,43764.25893,65312.19389,392675230.2,0,354700984.2,468205299.1 + 06/01 01:00:00,134994052.6,0,135304603.4,0,43729.39997,65260.17163,662661113.8,0,212820590.5,234102649.5 + 06/01 02:00:00,0,0,0,0,21852.67466,32612.13965,196073331.5,0,141880393.7,0 + 06/01 03:00:00,0,0,0,0,21845.04298,32600.75041,196004856.2,0,141880393.7,0 + 06/01 04:00:00,135351918.1,0,182423482.3,0,21845.04298,32600.75041,513780256.7,0,141880393.7,0 + 06/01 05:00:00,2385228.834,0,75875021.32,0,21847.62152,32604.59854,274288242.4,0,141880393.7,0 + 06/01 06:00:00,0,0,1991312.698,0,21852.67466,32612.13965,198064644.2,0,141880393.7,0 + 06/01 07:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,156068433 + 06/01 08:00:00,0,25313429.53,0,24785353.15,87760.16923,130970.0959,787428954.4,50098782.68,567521574.6,390171082.6 + 06/01 09:00:00,0,272803608.3,0,477782401,219305.837,327284.0829,1967723712,750586009.2,567521574.6,390171082.6 + 06/01 10:00:00,0,115657864.5,0,248761970.1,219225.4198,327164.0712,1967002168,364419834.6,283760787.3,0 + 06/01 11:00:00,0,173860107.4,0,254697025.5,219077.9073,326943.9289,1965678610,428557132.9,283760787.3,0 + 06/01 12:00:00,0,281280046.1,0,290368732.6,131284.8735,195924.7872,1177954779,571648778.7,283760787.3,0 + 06/01 13:00:00,0,330125940.3,0,333767093.8,131377.1017,196062.4252,1178782297,663893034,283760787.3,0 + 06/01 14:00:00,0,357528977.1,0,446533877.8,131091.2102,195635.771,1176217132,804062854.9,283760787.3,0 + 06/01 15:00:00,0,350495429.7,0,521276260.4,131179.2208,195767.1149,1177006809,871771690.1,283760787.3,0 + 06/01 16:00:00,0,299328072.1,0,538976700.5,306051.8381,456740.671,2746053033,838304772.5,283760787.3,0 + 06/01 17:00:00,0,260857065,0,574629970.9,393854.6206,587774.3615,3533864336,835487035.9,354700984.2,0 + 06/01 18:00:00,0,142185260.5,0,464037425.5,306331.3716,457157.8367,2748561150,606222686.1,141880393.7,0 + 06/01 19:00:00,0,230512591,0,621212680.6,306829.1286,457900.6712,2753027279,851725271.5,638461771.5,0 + 06/01 20:00:00,0,333601340.2,0,559129657,263274.5543,392901.4031,2362233447,892730997.1,638461771.5,702307948.6 + 06/01 21:00:00,0,210302662.8,0,353848316.8,219397.5167,327420.9023,1968546308,564150979.6,496581377.8,702307948.6 + 06/01 22:00:00,0,117880104.1,0,215812485.1,175502.125,261913.0107,1574694489,333692589.2,354700984.2,702307948.6 + 06/01 23:00:00,0,75018119.4,0,150911173.4,131636.553,196449.6208,1181110226,225929292.8,354700984.2,624273732.1 + 06/01 24:00:00,0,2769414,0,20035220.23,87709.93836,130895.1332,786978257.4,22804634.23,354700984.2,468205299.1 + 06/02 01:00:00,0,0,0,0,43850.89759,65441.49029,393452596.4,0,212820590.5,234102649.5 + 06/02 02:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 06/02 03:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 06/02 04:00:00,60127156.71,0,58706618,0,21837.09974,32588.89621,314767360.1,0,141880393.7,0 + 06/02 05:00:00,0,0,28959848.06,0,21886.1375,32662.07839,225333425.3,0,141880393.7,0 + 06/02 06:00:00,0,0,0,0,21920.95262,32714.03521,196685956.2,0,141880393.7,0 + 06/02 07:00:00,0,0,0,0,21937.26188,32738.37456,196832291.2,0,141880393.7,156068433 + 06/02 08:00:00,0,190044728.8,0,284165205,21941.05901,32744.04127,196866361,474209933.8,567521574.6,390171082.6 + 06/02 09:00:00,0,377245018.4,0,572609485.2,87699.05915,130878.8974,786880643.7,949854503.6,567521574.6,390171082.6 + 06/02 10:00:00,0,212302573.6,0,315282632.1,131513.6555,196266.213,1180007527,527585205.7,283760787.3,0 + 06/02 11:00:00,0,240117794.3,0,322223072.6,131272.3999,195906.1719,1177842858,562340866.9,283760787.3,0 + 06/02 12:00:00,0,301334554.6,0,360895926.5,87383.87549,130408.5287,784052655.2,662230481.1,283760787.3,0 + 06/02 13:00:00,0,390051147.1,0,459886287.1,87200.87508,130135.4256,782410682.3,849937434.1,283760787.3,0 + 06/02 14:00:00,0,436249320.1,0,562597489.7,130704.7289,195059.0003,1172749425,998846809.8,283760787.3,0 + 06/02 15:00:00,0,477240575.2,0,721171481.7,174246.3984,260039.0098,1563427470,1198412057,283760787.3,0 + 06/02 16:00:00,0,439174497.3,0,791953267.5,217671.7338,324845.4065,1953061705,1231127765,283760787.3,0 + 06/02 17:00:00,0,401630683.1,0,822877604.8,261564.8108,390349.8438,2346892757,1224508288,354700984.2,0 + 06/02 18:00:00,0,265789697.2,0,698312326.8,305578.5265,456034.3179,2741806240,964102024,141880393.7,0 + 06/02 19:00:00,0,333912869.9,0,753536339.9,175078.922,261281.4378,1570897295,1087449210,638461771.5,0 + 06/02 20:00:00,0,476873246,0,762513281.5,131366.3094,196046.319,1178685462,1239386528,638461771.5,702307948.6 + 06/02 21:00:00,0,418522915.1,0,655973229.6,87577.53959,130697.546,785790308.3,1074496145,496581377.8,702307948.6 + 06/02 22:00:00,0,327888488.2,0,521459562.1,87680.7109,130851.5152,786716013.8,849348050.3,354700984.2,702307948.6 + 06/02 23:00:00,0,268153831.2,0,432654737.6,87694.68428,130872.3685,786841390.1,700808568.8,354700984.2,624273732.1 + 06/02 24:00:00,0,205365888,0,338713789.3,87685.51011,130858.6773,786759074.8,544079677.3,354700984.2,468205299.1 + 06/03 01:00:00,0,19710734.1,0,51848362.58,43881.98858,65487.88935,393731560.5,71559096.68,212820590.5,234102649.5 + 06/03 02:00:00,0,0,0,0,21939.06381,32741.06369,196848459,0,141880393.7,0 + 06/03 03:00:00,0,0,0,0,21938.23387,32739.82512,196841012.4,0,141880393.7,0 + 06/03 04:00:00,0,0,0,0,21934.89191,32734.8377,196811026.6,0,141880393.7,0 + 06/03 05:00:00,0,0,0,0,21940.84955,32743.72867,196864481.6,0,141880393.7,0 + 06/03 06:00:00,0,0,0,0,21935.12685,32735.18832,196813134.6,0,141880393.7,0 + 06/03 07:00:00,0,109992147.1,0,96996769.67,87694.68428,130872.3685,786841390.1,206988916.8,141880393.7,156068433 + 06/03 08:00:00,0,420133065.9,0,636142241.2,350618.3819,523250.1657,3145926771,1056275307,567521574.6,390171082.6 + 06/03 09:00:00,0,434954070.3,0,629173134.7,306595.4603,457551.953,2750930688,1064127205,567521574.6,390171082.6 + 06/03 10:00:00,0,296824069,0,414974811.4,218787.3331,326510.2865,1963071430,711798880.5,283760787.3,0 + 06/03 11:00:00,0,365328682.4,0,493501981.3,174828.507,260907.7276,1568650444,858830663.6,283760787.3,0 + 06/03 12:00:00,0,421298798.2,0,512108728,87273.628,130243.9994,783063458.6,933407526.1,283760787.3,0 + 06/03 13:00:00,0,514073617.8,0,618171982.9,87149.63654,130058.959,781950944.1,1132245601,283760787.3,0 + 06/03 14:00:00,0,583098053,0,765505354.7,86982.87318,129810.0874,780454658.2,1348603408,283760787.3,0 + 06/03 15:00:00,0,527290428.7,0,739441594.3,130496.2711,194747.9054,1170879035,1266732023,283760787.3,0 + 06/03 16:00:00,0,480386747.1,0,692007390.2,217382.9691,324414.4645,1950470761,1172394137,283760787.3,0 + 06/03 17:00:00,0,409874795.1,0,609900555.8,217774.4412,324998.6833,1953983248,1019775351,354700984.2,0 + 06/03 18:00:00,0,262783777.3,0,400583152.6,305416.4591,455792.4545,2740352089,663366929.9,141880393.7,0 + 06/03 19:00:00,0,451293501.7,0,653659776.8,305656.6683,456150.9339,2742507368,1104953279,638461771.5,0 + 06/03 20:00:00,0,703720996,0,1035633323,174867.6233,260966.1034,1569001416,1739354319,638461771.5,702307948.6 + 06/03 21:00:00,0,604620294.4,0,892391279.5,174960.5465,261104.7785,1569835170,1497011574,496581377.8,702307948.6 + 06/03 22:00:00,0,507377583.1,0,751028786.4,87562.72875,130675.4429,785657417.9,1258406370,354700984.2,702307948.6 + 06/03 23:00:00,0,420392636.4,0,628151432.2,87624.95245,130768.3033,786215720.6,1048544069,354700984.2,624273732.1 + 06/03 24:00:00,0,260266941.5,0,402931883.9,43827.29773,65406.27071,393240846.4,663198825.4,354700984.2,468205299.1 + 06/04 01:00:00,0,27340224.68,0,65463056.87,43830.05049,65410.37882,393265545.5,92803281.55,212820590.5,234102649.5 + 06/04 02:00:00,0,0,0,0,21918.94258,32711.03551,196667921.1,0,141880393.7,0 + 06/04 03:00:00,0,0,0,0,21922.54198,32716.40712,196700216.8,0,141880393.7,0 + 06/04 04:00:00,0,0,0,0,21927.8336,32724.30414,196747695.9,0,141880393.7,0 + 06/04 05:00:00,0,0,0,0,21922.54198,32716.40712,196700216.8,0,141880393.7,0 + 06/04 06:00:00,0,0,0,0,21915.02524,32705.18941,196632772.8,0,141880393.7,0 + 06/04 07:00:00,0,32690252.24,0,18335443.41,87612.10909,130749.1363,786100483.4,51025695.65,141880393.7,156068433 + 06/04 08:00:00,0,500264256.7,0,749462308,349956.5904,522262.5321,3139988841,1249726565,567521574.6,390171082.6 + 06/04 09:00:00,0,456701228.7,0,675320721.1,306415.7496,457283.7593,2749318232,1132021950,567521574.6,390171082.6 + 06/04 10:00:00,0,91946910.28,0,119360999.9,218678.1486,326347.3435,1962091771,211307910.2,283760787.3,0 + 06/04 11:00:00,0,231007456.5,0,296721395.7,174886.7646,260994.6692,1569173162,527728852.2,283760787.3,0 + 06/04 12:00:00,0,380319866.6,0,473571868.9,87341.43283,130345.1889,783671838.1,853891735.5,283760787.3,0 + 06/04 13:00:00,0,447466164.6,0,551054088.2,87213.34314,130154.0324,782522552.1,998520252.8,283760787.3,0 + 06/04 14:00:00,0,518027011.3,0,679159630.5,87225.67432,130172.4351,782633193.8,1197186642,283760787.3,0 + 06/04 15:00:00,0,539032399.4,0,789884212.7,130518.0301,194780.3778,1171074269,1328916612,283760787.3,0 + 06/04 16:00:00,0,545139382.5,0,918565264.5,217706.3087,324897.0049,1953371929,1463704647,283760787.3,0 + 06/04 17:00:00,0,509627103.2,0,918801580.9,217420.2442,324470.0925,1950805212,1428428684,354700984.2,0 + 06/04 18:00:00,0,395446313.7,0,891985439.7,305023.7279,455206.3566,2736828304,1287431753,141880393.7,0 + 06/04 19:00:00,0,573201958.1,0,1118073521,305538.7321,455974.9301,2741449184,1691275479,638461771.5,0 + 06/04 20:00:00,0,790419164.5,0,1189437288,174788.2803,260847.6946,1568289510,1979856453,638461771.5,702307948.6 + 06/04 21:00:00,0,647571363.7,0,981877891.4,175046.4981,261233.0495,1570606371,1629449255,496581377.8,702307948.6 + 06/04 22:00:00,0,524310981.9,0,807011327.3,87598.70293,130729.1294,785980196.5,1331322309,354700984.2,702307948.6 + 06/04 23:00:00,0,442121695.3,0,687181739.8,87648.94886,130804.1146,786431028.6,1129303435,354700984.2,624273732.1 + 06/04 24:00:00,0,321034030.9,0,511703519.7,43847.34214,65436.18426,393420695,832737550.6,354700984.2,468205299.1 + 06/05 01:00:00,0,79496916.29,0,152516815.2,43873.83901,65475.72723,393658438.4,232013731.5,212820590.5,234102649.5 + 06/05 02:00:00,0,0,0,0,21940.38001,32743.02794,196860268.6,0,141880393.7,0 + 06/05 03:00:00,0,0,0,0,21933.75433,32733.14002,196800819.6,0,141880393.7,0 + 06/05 04:00:00,0,0,0,0,21935.75989,32736.13305,196818814.6,0,141880393.7,0 + 06/05 05:00:00,0,0,0,0,21939.5462,32741.78359,196852787.2,0,141880393.7,0 + 06/05 06:00:00,0,0,0,0,21938.39266,32740.0621,196842437.1,0,141880393.7,0 + 06/05 07:00:00,0,0,0,0,87737.83331,130936.7626,787228545.1,0,141880393.7,156068433 + 06/05 08:00:00,0,299115159.5,0,471505087.3,350661.8613,523315.0528,3146316891,770620246.7,567521574.6,390171082.6 + 06/05 09:00:00,0,581144157.2,0,966498145.8,306117.372,456838.4715,2746641037,1547642303,567521574.6,390171082.6 + 06/05 10:00:00,0,345871436.4,0,614531464.5,218094.6713,325476.5831,1956856516,960402901,283760787.3,0 + 06/05 11:00:00,0,462009417.5,0,663522662.6,174052.7824,259750.0643,1561690248,1125532080,283760787.3,0 + 06/05 12:00:00,0,605227470.8,0,703432311.2,86763.82816,129483.1926,778489274.7,1308659782,283760787.3,0 + 06/05 13:00:00,0,687276576,0,803790701.8,86591.43688,129225.9221,776942492.3,1491067278,283760787.3,0 + 06/05 14:00:00,0,668825756.2,0,902196632.6,86405.95616,128949.1174,775278264.8,1571022389,283760787.3,0 + 06/05 15:00:00,0,738367880.3,0,1096852632,129580.0424,193380.5589,1162658165,1835220513,283760787.3,0 + 06/05 16:00:00,0,659199694.9,0,1074295021,215721.1458,321934.4196,1935560035,1733494716,283760787.3,0 + 06/05 17:00:00,0,632098589.1,0,1155618821,215966.7373,322300.9315,1937763608,1787717411,354700984.2,0 + 06/05 18:00:00,0,462823839.3,0,984910500.2,303194.3872,452476.3148,2720414527,1447734340,141880393.7,0 + 06/05 19:00:00,0,614424867.3,0,1230059685,304283.5013,454101.6693,2730186614,1844484552,638461771.5,0 + 06/05 20:00:00,0,753425563.8,0,1152230294,174767.751,260817.0575,1568105310,1905655858,638461771.5,702307948.6 + 06/05 21:00:00,0,612941304.7,0,933690849.5,174924.2126,261050.5551,1569509164,1546632154,496581377.8,702307948.6 + 06/05 22:00:00,0,469070528.1,0,724284249.4,87643.16119,130795.4773,786379098.7,1193354777,354700984.2,702307948.6 + 06/05 23:00:00,0,388123181.1,0,604949186.8,87637.23253,130786.6296,786325903.7,993072368,354700984.2,624273732.1 + 06/05 24:00:00,0,325305682.6,0,511723445.8,43785.10216,65343.29957,392862246.2,837029128.4,354700984.2,468205299.1 + 06/06 01:00:00,0,143804036.8,0,241748363.2,43812.47623,65384.15163,393107860.3,385552400,212820590.5,234102649.5 + 06/06 02:00:00,0,0,0,5082810.359,21909.30813,32696.6574,196581475.9,5082810.359,141880393.7,0 + 06/06 03:00:00,0,0,0,0,21903.02727,32687.28407,196525120.8,0,141880393.7,0 + 06/06 04:00:00,0,0,0,0,21913.64887,32703.13536,196620423.2,0,141880393.7,0 + 06/06 05:00:00,0,0,0,0,21907.79073,32694.39289,196567861,0,141880393.7,0 + 06/06 06:00:00,0,53588557.4,0,39080602.94,21904.65029,32689.7062,196539683.4,92669160.34,141880393.7,0 + 06/06 07:00:00,0,80740973.98,0,128437489,87598.70293,130729.1294,785980196.5,209178463,141880393.7,156068433 + 06/06 08:00:00,0,384793610.2,0,593180042.3,349696.4081,521874.2455,3137654353,977973652.5,567521574.6,390171082.6 + 06/06 09:00:00,0,491091199.7,0,754209997.1,305695.0149,456208.161,2742851433,1245301197,567521574.6,390171082.6 + 06/06 10:00:00,0,208504008.1,0,306741370.6,218407.3269,325943.179,1959661821,515245378.7,283760787.3,0 + 06/06 11:00:00,0,242763234.4,0,330102482.7,174523.6909,260452.8311,1565915479,572865717.1,283760787.3,0 + 06/06 12:00:00,0,377150364.6,0,450005831.3,87188.27027,130116.6146,782297585.6,827156196,283760787.3,0 + 06/06 13:00:00,0,523595907.6,0,593109013.1,86997.51404,129831.9369,780586023.4,1116704921,283760787.3,0 + 06/06 14:00:00,0,524740435.7,0,710029058.5,86997.51404,129831.9369,780586023.4,1234769494,283760787.3,0 + 06/06 15:00:00,0,433691804,0,651533061.8,130820.0147,195231.0487,1173783828,1085224866,283760787.3,0 + 06/06 16:00:00,0,278826579,0,481380054.1,217906.6272,325195.9529,1955169288,760206633.1,283760787.3,0 + 06/06 17:00:00,0,280241079.5,0,627821020.4,218064.1858,325431.0876,1956582984,908062099.9,354700984.2,0 + 06/06 18:00:00,0,99730354.4,0,448370785.8,306212.0166,456979.7156,2747490236,548101140.2,141880393.7,0 + 06/06 19:00:00,0,253925026.9,0,517742432.6,306619.1671,457587.3323,2751143398,771667459.4,638461771.5,0 + 06/06 20:00:00,0,478632333.7,0,759840698.8,175380.3358,261731.2569,1573601734,1238473033,638461771.5,702307948.6 + 06/06 21:00:00,0,362897337.8,0,571673148.7,175430.2858,261805.8005,1574049911,934570486.5,496581377.8,702307948.6 + 06/06 22:00:00,0,260210317.6,0,427414755.6,87728.9597,130923.5199,787148926.6,687625073.2,354700984.2,702307948.6 + 06/06 23:00:00,0,207596348.2,0,354461265.8,87722.33481,130913.6332,787089484.8,562057614,354700984.2,624273732.1 + 06/06 24:00:00,0,126468972.6,0,226539863.5,43864.47985,65461.75996,393574463.3,353008836.1,354700984.2,468205299.1 + 06/07 01:00:00,0,0,0,0,43849.52958,65439.44871,393440321.8,0,212820590.5,234102649.5 + 06/07 02:00:00,0,0,0,0,21936.35745,32737.02482,196824176.1,0,141880393.7,0 + 06/07 03:00:00,0,0,0,0,21940.75822,32743.59237,196863662.1,0,141880393.7,0 + 06/07 04:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 06/07 05:00:00,0,0,0,0,21940.29742,32742.90469,196859527.6,0,141880393.7,0 + 06/07 06:00:00,0,0,0,0,21940.04231,32742.52397,196857238.6,0,141880393.7,0 + 06/07 07:00:00,0,0,0,0,87760.16923,130970.0959,787428954.4,0,141880393.7,156068433 + 06/07 08:00:00,0,0,0,0,351042.2016,523882.6589,3149729498,0,567521574.6,390171082.6 + 06/07 09:00:00,0,262818797.9,0,452725103.7,307003.0002,458160.1508,2754587344,715543901.6,567521574.6,390171082.6 + 06/07 10:00:00,0,86714327.66,0,175889638.2,219150.2524,327051.8941,1966327728,262603965.8,283760787.3,0 + 06/07 11:00:00,0,145885031.3,0,212700590.1,175210.9527,261478.4756,1572081942,358585621.5,283760787.3,0 + 06/07 12:00:00,0,235838198.1,0,225211700.9,87539.461,130640.7189,785448647.7,461049899,283760787.3,0 + 06/07 13:00:00,0,335318796.4,0,323874986.5,87433.81167,130483.0517,784500708.1,659193782.8,283760787.3,0 + 06/07 14:00:00,0,378483308.9,0,465034248,87383.87549,130408.5287,784052655.2,843517556.9,283760787.3,0 + 06/07 15:00:00,0,330696923.3,0,508088026.4,131150.7175,195724.5775,1176751062,838784949.8,283760787.3,0 + 06/07 16:00:00,0,293350688.6,0,575166194.6,218722.869,326414.0826,1962493026,868516883.2,283760787.3,0 + 06/07 17:00:00,0,249059078.4,0,622451009.1,218887.7824,326660.1934,1963972713,871510087.5,354700984.2,0 + 06/07 18:00:00,0,108233764.6,0,516109178,306709.0703,457721.5005,2751950055,624342942.6,141880393.7,0 + 06/07 19:00:00,0,204935941.7,0,654600068.9,307028.1718,458197.7161,2754813197,859536010.6,638461771.5,0 + 06/07 20:00:00,0,296828192.9,0,515540200.1,175526.7964,261949.8294,1574915853,812368393,638461771.5,702307948.6 + 06/07 21:00:00,0,191116642.2,0,329509513,175522.3794,261943.2375,1574876221,520626155.2,496581377.8,702307948.6 + 06/07 22:00:00,0,63237627.74,0,138499468.6,87641.05768,130792.3381,786360224.9,201737096.3,354700984.2,702307948.6 + 06/07 23:00:00,0,0,0,9794346.1,87596.24709,130725.4644,785958161.5,9794346.1,354700984.2,624273732.1 + 06/07 24:00:00,0,0,0,0,43776.17802,65329.98151,392782174.3,0,354700984.2,468205299.1 + 06/08 01:00:00,93117245.99,0,116481184,0,43747.38773,65287.01592,602122283.1,0,212820590.5,234102649.5 + 06/08 02:00:00,0,0,0,0,21845.04298,32600.75041,196004856.2,0,141880393.7,0 + 06/08 03:00:00,80697711.09,0,78123018.45,0,21808.3811,32546.03756,354496636.7,0,141880393.7,0 + 06/08 04:00:00,143768466.9,0,197938203.1,0,21837.09974,32588.89621,537640255.3,0,141880393.7,0 + 06/08 05:00:00,1127183.809,0,66338556.43,0,21859.99411,32623.06295,263604745.7,0,141880393.7,0 + 06/08 06:00:00,0,0,0,0,21925.4488,32720.74514,196726298.2,0,141880393.7,0 + 06/08 07:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,156068433 + 06/08 08:00:00,0,230822216,0,247934273.3,87764.23606,130976.1651,787465444,478756489.3,567521574.6,390171082.6 + 06/08 09:00:00,0,313660710.2,0,545586553.5,219391.972,327412.6277,1968496559,859247263.7,567521574.6,390171082.6 + 06/08 10:00:00,0,122953220.9,0,247871087.2,219297.0243,327270.9311,1967644640,370824308.1,283760787.3,0 + 06/08 11:00:00,0,182603601.3,0,255450859.8,219278.336,327243.0414,1967476959,438054461.1,283760787.3,0 + 06/08 12:00:00,0,298890587,0,302309121,131366.3094,196046.319,1178685462,601199708,283760787.3,0 + 06/08 13:00:00,0,386612017.6,0,395807797.2,131355.3065,196029.8987,1178586739,782419814.8,283760787.3,0 + 06/08 14:00:00,0,404051672.5,0,495073530.2,131377.1017,196062.4252,1178782297,899125202.7,283760787.3,0 + 06/08 15:00:00,0,292080832.4,0,412609079.5,131528.2652,196288.016,1180138612,704689911.9,283760787.3,0 + 06/08 16:00:00,0,134612332.2,0,196746216.4,306931.395,458053.2898,2753944865,331358548.6,283760787.3,0 + 06/08 17:00:00,0,17584622.1,0,24686206.46,394734.6437,589087.676,3541760351,42270828.56,354700984.2,0 + 06/08 18:00:00,0,0,0,0,307100.6385,458305.8627,2755463404,0,141880393.7,0 + 06/08 19:00:00,0,0,0,0,307165.3201,458402.3912,2756043761,0,638461771.5,0 + 06/08 20:00:00,0,69335559.81,0,167639688.6,263293.0584,392929.0179,2362399475,236975248.4,638461771.5,702307948.6 + 06/08 21:00:00,0,63098500.98,0,147252840.6,219410.8185,327440.7534,1968665659,210351341.5,496581377.8,702307948.6 + 06/08 22:00:00,0,16760823.69,0,78325866.33,175528.3196,261952.1026,1574929520,95086690.02,354700984.2,702307948.6 + 06/08 23:00:00,0,0,0,27770072.38,131645.7751,196463.3836,1181192971,27770072.38,354700984.2,624273732.1 + 06/08 24:00:00,0,0,0,0,87764.32739,130976.3014,787466263.5,0,354700984.2,468205299.1 + 06/09 01:00:00,8467212.728,0,0,0,43881.98858,65487.88935,402198773.2,0,212820590.5,234102649.5 + 06/09 02:00:00,0,0,0,0,21941.0882,32744.08482,196866622.9,0,141880393.7,0 + 06/09 03:00:00,0,0,0,0,21940.04231,32742.52397,196857238.6,0,141880393.7,0 + 06/09 04:00:00,0,0,0,0,21940.517,32743.23238,196861497.8,0,141880393.7,0 + 06/09 05:00:00,0,0,0,0,21940.517,32743.23238,196861497.8,0,141880393.7,0 + 06/09 06:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 06/09 07:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,156068433 + 06/09 08:00:00,102033981.5,0,106127070.3,0,21940.38001,32743.02794,405021320.4,0,567521574.6,390171082.6 + 06/09 09:00:00,65406713.31,0,77698157.32,0,87760.5504,130970.6647,930537245.1,0,567521574.6,390171082.6 + 06/09 10:00:00,58447596.76,0,61225408.39,0,131635.1832,196447.5766,1300770941,0,283760787.3,0 + 06/09 11:00:00,99830776.39,0,123842156.1,0,131618.1447,196422.1489,1404617989,0,283760787.3,0 + 06/09 12:00:00,62334536.23,0,76967453.59,0,87694.68428,130872.3685,926143379.9,0,283760787.3,0 + 06/09 13:00:00,0,0,0,0,87648.94886,130804.1146,786431028.6,0,283760787.3,0 + 06/09 14:00:00,0,0,0,0,131366.3094,196046.319,1178685462,0,283760787.3,0 + 06/09 15:00:00,0,0,0,17180483.56,175197.4059,261458.2589,1571960393,17180483.56,283760787.3,0 + 06/09 16:00:00,0,42002001.15,0,113550918.6,218961.8362,326770.7086,1964637161,155552919.8,283760787.3,0 + 06/09 17:00:00,0,89942731.1,0,262859071.7,262665.3389,391992.232,2356767255,352801802.8,354700984.2,0 + 06/09 18:00:00,0,7581786.989,0,231519098.8,306771.321,457814.4012,2752508600,239100885.8,141880393.7,0 + 06/09 19:00:00,0,116289458.9,0,441246249.3,175389.3686,261744.737,1573682780,557535708.3,638461771.5,0 + 06/09 20:00:00,0,320290872.6,0,526658516.7,131627.6227,196436.2936,1181030099,846949389.3,638461771.5,702307948.6 + 06/09 21:00:00,0,206270976.2,0,344193892,87756.78882,130965.0511,787398623.6,550464868.2,496581377.8,702307948.6 + 06/09 22:00:00,0,124372376.2,0,221767868.3,87761.52003,130972.1118,787441074.5,346140244.5,354700984.2,702307948.6 + 06/09 23:00:00,0,70149102.19,0,139998908.5,87764.23606,130976.1651,787465444,210148010.7,354700984.2,624273732.1 + 06/09 24:00:00,0,0,0,18316832.19,87762.06799,130972.9295,787445991.1,18316832.19,354700984.2,468205299.1 + 06/10 01:00:00,0,0,0,0,43875.53125,65478.25267,393673622.1,0,212820590.5,234102649.5 + 06/10 02:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 06/10 03:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 06/10 04:00:00,15005802.19,0,0,0,21917.20931,32708.44883,211658171.5,0,141880393.7,0 + 06/10 05:00:00,0,0,9006498.892,0,21917.20931,32708.44883,205658868.2,0,141880393.7,0 + 06/10 06:00:00,0,0,0,0,21934.89191,32734.8377,196811026.6,0,141880393.7,0 + 06/10 07:00:00,0,0,0,0,87764.32739,130976.3014,787466263.5,0,141880393.7,156068433 + 06/10 08:00:00,0,244891432.7,0,232230804,350875.2389,523633.4898,3148231423,477122236.6,567521574.6,390171082.6 + 06/10 09:00:00,0,332180041,0,565534673.1,306687.3336,457689.0614,2751755022,897714714.2,567521574.6,390171082.6 + 06/10 10:00:00,0,128215591.8,0,258910185.8,218906.8219,326688.6072,1964143545,387125777.6,283760787.3,0 + 06/10 11:00:00,0,209297062.5,0,308215082.2,174905.6278,261022.8198,1569342411,517512144.7,283760787.3,0 + 06/10 12:00:00,0,319116907.7,0,349190122.2,87296.78059,130278.5515,783271195.4,668307029.9,283760787.3,0 + 06/10 13:00:00,0,378997060.9,0,411519446.8,87273.628,130243.9994,783063458.6,790516507.7,283760787.3,0 + 06/10 14:00:00,0,389188646.1,0,491624081,87261.84547,130226.4156,782957739.7,880812727.1,283760787.3,0 + 06/10 15:00:00,0,342837290.7,0,507024850.1,131075.8132,195612.7931,1176078983,849862140.8,283760787.3,0 + 06/10 16:00:00,0,294478052.2,0,497789557.6,218298.4562,325780.7043,1958684978,792267609.8,283760787.3,0 + 06/10 17:00:00,0,242302233.7,0,452259638.1,218298.4562,325780.7043,1958684978,694561871.7,354700984.2,0 + 06/10 18:00:00,0,121373574.2,0,335093830.8,306242.5885,457025.3401,2747764543,456467404.9,141880393.7,0 + 06/10 19:00:00,0,238658597.4,0,532451386.4,306709.0703,457721.5005,2751950055,771109983.8,638461771.5,0 + 06/10 20:00:00,0,394098985.2,0,640877319.3,175486.0791,261889.0644,1574550517,1034976305,638461771.5,702307948.6 + 06/10 21:00:00,0,307015282.9,0,485554026,175464.1189,261856.2917,1574353478,792569308.9,496581377.8,702307948.6 + 06/10 22:00:00,0,226347123.2,0,367313836.8,87749.78425,130954.5977,787335775.1,593660960,354700984.2,702307948.6 + 06/10 23:00:00,0,144062379.9,0,246248931.7,87763.85009,130975.5891,787461980.9,390311311.7,354700984.2,624273732.1 + 06/10 24:00:00,0,34314672.88,0,82919501.14,43874.52376,65476.74912,393664582.3,117234174,354700984.2,468205299.1 + 06/11 01:00:00,0,0,0,0,43872.29575,65473.42413,393644591.6,0,212820590.5,234102649.5 + 06/11 02:00:00,0,0,0,0,21930.27269,32727.94415,196769580.6,0,141880393.7,0 + 06/11 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 06/11 04:00:00,0,0,0,0,21920.95262,32714.03521,196685956.2,0,141880393.7,0 + 06/11 05:00:00,0,0,0,0,21927.48459,32723.78329,196744564.4,0,141880393.7,0 + 06/11 06:00:00,0,0,0,0,21934.89191,32734.8377,196811026.6,0,141880393.7,0 + 06/11 07:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,141880393.7,156068433 + 06/11 08:00:00,0,36124893.72,0,56816940.76,350962.0296,523763.0132,3149010154,92941834.47,567521574.6,390171082.6 + 06/11 09:00:00,0,301470556.3,0,499347536.4,306915.5877,458029.6996,2753803035,800818092.7,567521574.6,390171082.6 + 06/11 10:00:00,0,65166063.81,0,154407951.9,219030.2727,326872.8407,1965251208,219574015.7,283760787.3,0 + 06/11 11:00:00,0,156722468.7,0,237359051.6,175062.85,261257.4525,1570753089,394081520.2,283760787.3,0 + 06/11 12:00:00,0,270048184.8,0,290457830,87433.81167,130483.0517,784500708.1,560506014.8,283760787.3,0 + 06/11 13:00:00,0,338684782.3,0,363725932.7,87373.47233,130393.0035,783959312.8,702410715,283760787.3,0 + 06/11 14:00:00,0,217452894.4,0,261790332.6,87665.46532,130828.7632,786579222.7,479243227,283760787.3,0 + 06/11 15:00:00,0,32863898.06,0,46941221.96,131572.7144,196354.3503,1180537433,79805120.02,283760787.3,0 + 06/11 16:00:00,0,0,0,0,219093.0813,326966.574,1965814759,0,283760787.3,0 + 06/11 17:00:00,0,0,0,69777521.45,218906.8219,326688.6072,1964143545,69777521.45,354700984.2,0 + 06/11 18:00:00,0,0,0,110025018.8,306571.2614,457515.8395,2750713563,110025018.8,141880393.7,0 + 06/11 19:00:00,0,91405858.2,0,439058255.2,306619.1671,457587.3323,2751143398,530464113.4,638461771.5,0 + 06/11 20:00:00,0,364603142.7,0,608749586.7,175430.2858,261805.8005,1574049911,973352729.4,638461771.5,702307948.6 + 06/11 21:00:00,0,223554143.9,0,381341936.8,175527.9543,261951.5574,1574926242,604896080.8,496581377.8,702307948.6 + 06/11 22:00:00,0,80637907.73,0,170154685.3,87742.15054,130943.2054,787267281.5,250792593.1,354700984.2,702307948.6 + 06/11 23:00:00,0,31974673.16,0,91482241.61,87757.702,130966.4139,787406817.1,123456914.8,354700984.2,624273732.1 + 06/11 24:00:00,0,0,0,0,43856.89875,65450.4462,393506441.9,0,354700984.2,468205299.1 + 06/12 01:00:00,29618367.05,0,0,0,43844.25942,65431.58372,423011402.3,0,212820590.5,234102649.5 + 06/12 02:00:00,0,0,0,0,21931.95426,32730.45366,196784668.5,0,141880393.7,0 + 06/12 03:00:00,0,0,0,0,21932.74186,32731.62905,196791735.3,0,141880393.7,0 + 06/12 04:00:00,0,0,0,0,21935.53763,32735.80136,196816820.4,0,141880393.7,0 + 06/12 05:00:00,0,0,0,0,21935.53763,32735.80136,196816820.4,0,141880393.7,0 + 06/12 06:00:00,0,0,0,0,21939.4255,32741.60347,196851704.3,0,141880393.7,0 + 06/12 07:00:00,0,0,0,0,87759.43865,130969.0056,787422399.2,0,141880393.7,156068433 + 06/12 08:00:00,0,0,0,0,350845.3376,523588.8663,3147963134,0,567521574.6,390171082.6 + 06/12 09:00:00,0,202529279.5,0,468917218.1,306751.0642,457784.1707,2752326845,671446497.5,567521574.6,390171082.6 + 06/12 10:00:00,0,121787823.6,0,276478334.2,218787.3331,326510.2865,1963071430,398266157.8,283760787.3,0 + 06/12 11:00:00,0,240416154.3,0,367540089.1,174638.765,260624.5635,1566947982,607956243.4,283760787.3,0 + 06/12 12:00:00,0,375808976,0,426306119.4,87249.92561,130208.6268,782850788.6,802115095.4,283760787.3,0 + 06/12 13:00:00,0,446183398.9,0,508731998,87096.21786,129979.2389,781471644.4,954915396.9,283760787.3,0 + 06/12 14:00:00,0,464174267.9,0,609066511.8,87082.52349,129958.8019,781348771.6,1073240780,283760787.3,0 + 06/12 15:00:00,0,436293041.4,0,649739615.3,130724.4548,195088.4385,1172926416,1086032657,283760787.3,0 + 06/12 16:00:00,0,307437454.3,0,516660534.6,218744.7061,326446.6715,1962688959,824097988.9,283760787.3,0 + 06/12 17:00:00,0,238472162.1,0,423603243.5,218584.5292,326207.6292,1961251770,662075405.6,354700984.2,0 + 06/12 18:00:00,0,119692272.5,0,293790143.8,306359.9874,457200.5419,2748817906,413482416.3,141880393.7,0 + 06/12 19:00:00,0,279005736.3,0,509697595.6,306665.104,457655.8868,2751555567,788703331.8,638461771.5,0 + 06/12 20:00:00,0,472471826.9,0,725538749.6,175414.7685,261782.643,1573910681,1198010577,638461771.5,702307948.6 + 06/12 21:00:00,0,380609861.1,0,585937620.1,175380.3358,261731.2569,1573601734,966547481.2,496581377.8,702307948.6 + 06/12 22:00:00,0,293886036.6,0,460782305.3,87718.80972,130908.3725,787057855.8,754668341.9,354700984.2,702307948.6 + 06/12 23:00:00,0,215206387.1,0,347344275.3,87743.03957,130944.5322,787275258.4,562550662.5,354700984.2,624273732.1 + 06/12 24:00:00,0,93890449.32,0,169343455.8,43881.51644,65487.18475,393727324.3,263233905.1,354700984.2,468205299.1 + 06/13 01:00:00,0,0,0,0,43881.6991,65487.45734,393728963.2,0,212820590.5,234102649.5 + 06/13 02:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 06/13 03:00:00,0,0,0,0,21939.4255,32741.60347,196851704.3,0,141880393.7,0 + 06/13 04:00:00,0,0,0,0,21923.27144,32717.49574,196706761.9,0,141880393.7,0 + 06/13 05:00:00,0,0,0,0,21938.6666,32740.47091,196844895,0,141880393.7,0 + 06/13 06:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 06/13 07:00:00,0,0,0,0,87756.78882,130965.0511,787398623.6,0,141880393.7,156068433 + 06/13 08:00:00,0,219596224.2,0,334679726,350829.537,523565.286,3147821363,554275950.1,567521574.6,390171082.6 + 06/13 09:00:00,0,365331162.6,0,587000295.2,306829.1286,457900.6712,2753027279,952331457.8,567521574.6,390171082.6 + 06/13 10:00:00,0,151390056.4,0,299686652.7,218808.1226,326541.3119,1963257964,451076709.2,283760787.3,0 + 06/13 11:00:00,0,227102904,0,342292146.4,174828.507,260907.7276,1568650444,569395050.4,283760787.3,0 + 06/13 12:00:00,0,386027573.4,0,427762813.5,87200.87508,130135.4256,782410682.3,813790387,283760787.3,0 + 06/13 13:00:00,0,470242192.3,0,522591400.1,87068.69351,129938.1626,781224681.9,992833592.4,283760787.3,0 + 06/13 14:00:00,0,487805689.8,0,641059289.6,86907.65187,129697.8299,779779734.3,1128864979,283760787.3,0 + 06/13 15:00:00,0,497128055.2,0,737424697.7,130145.7422,194224.7889,1167733912,1234552753,283760787.3,0 + 06/13 16:00:00,0,481377705.6,0,839161380.4,217112.6577,324011.0616,1948045389,1320539086,283760787.3,0 + 06/13 17:00:00,0,419506693.8,0,846223828.5,217345.3581,324358.3352,1950133296,1265730522,354700984.2,0 + 06/13 18:00:00,0,279845744,0,683813408.9,304931.1972,455068.2672,2735998072,963659153,141880393.7,0 + 06/13 19:00:00,0,427046524.5,0,817046791,305246.701,455539.1136,2738828932,1244093316,638461771.5,0 + 06/13 20:00:00,0,613269343.9,0,956493807.4,175029.8665,261208.2292,1570457144,1569763151,638461771.5,702307948.6 + 06/13 21:00:00,0,467783921.6,0,721060795.7,175237.2023,261517.6496,1572317467,1188844717,496581377.8,702307948.6 + 06/13 22:00:00,0,380332389.7,0,593320871.5,87598.70293,130729.1294,785980196.5,973653261.2,354700984.2,702307948.6 + 06/13 23:00:00,0,316954809.4,0,500384873.5,87660.10097,130820.7576,786531091,817339682.9,354700984.2,624273732.1 + 06/13 24:00:00,0,202007466.3,0,331798504.6,43864.47985,65461.75996,393574463.3,533805970.9,354700984.2,468205299.1 + 06/14 01:00:00,0,16661147.74,0,54354053.49,43867.50865,65466.28003,393601639.3,71015201.23,212820590.5,234102649.5 + 06/14 02:00:00,0,0,0,0,21935.75989,32736.13305,196818814.6,0,141880393.7,0 + 06/14 03:00:00,0,0,0,0,21940.38001,32743.02794,196860268.6,0,141880393.7,0 + 06/14 04:00:00,0,0,0,0,21940.75822,32743.59237,196863662.1,0,141880393.7,0 + 06/14 05:00:00,0,0,0,0,21939.1972,32741.26277,196849655.9,0,141880393.7,0 + 06/14 06:00:00,0,0,0,0,21936.35745,32737.02482,196824176.1,0,141880393.7,0 + 06/14 07:00:00,0,136610511,0,176322884.9,87703.29249,130885.2151,786918627.3,312933395.8,141880393.7,156068433 + 06/14 08:00:00,0,520739286.3,0,743750049.2,350640.4039,523283.0306,3146124364,1264489336,567521574.6,390171082.6 + 06/14 09:00:00,0,522772800.1,0,747533477.9,306546.5707,457478.9921,2750492026,1270306278,567521574.6,390171082.6 + 06/14 10:00:00,0,296212336.9,0,404387701.1,218700.6831,326380.9731,1962293962,700600038.1,283760787.3,0 + 06/14 11:00:00,0,308789416.8,0,406874171.9,174616.3009,260591.0388,1566746423,715663588.6,283760787.3,0 + 06/14 12:00:00,0,481195184.5,0,622911546.7,87123.19921,130019.5049,781713734.9,1104106731,283760787.3,0 + 06/14 13:00:00,0,537648851.8,0,701559075.8,87026.3912,129875.0321,780845124,1239207928,283760787.3,0 + 06/14 14:00:00,0,581145279.1,0,774134300.3,86907.65187,129697.8299,779779734.3,1355279579,283760787.3,0 + 06/14 15:00:00,0,559829692.6,0,761824591.7,130170.5113,194261.7534,1167956153,1321654284,283760787.3,0 + 06/14 16:00:00,0,487005324.2,0,701708230,216698.1983,323392.5375,1944326649,1188713554,283760787.3,0 + 06/14 17:00:00,0,513975593.8,0,782461786.6,216783.7381,323520.1939,1945094155,1296437380,354700984.2,0 + 06/14 18:00:00,0,363864935.7,0,505666925.7,304283.5013,454101.6693,2730186614,869531861.4,141880393.7,0 + 06/14 19:00:00,0,587345861.3,0,839923548.9,305023.7279,455206.3566,2736828304,1427269410,638461771.5,0 + 06/14 20:00:00,0,838753683.1,0,1227894107,174788.2803,260847.6946,1568289510,2066647790,638461771.5,702307948.6 + 06/14 21:00:00,0,704204955.7,0,1032365052,174942.5189,261077.8748,1569673417,1736570008,496581377.8,702307948.6 + 06/14 22:00:00,0,590233603.7,0,866516332.5,87523.24903,130616.5248,785303185.7,1456749936,354700984.2,702307948.6 + 06/14 23:00:00,0,529207633.4,0,779503401.1,87523.24903,130616.5248,785303185.7,1308711035,354700984.2,624273732.1 + 06/14 24:00:00,0,435845013.9,0,641989539.4,43769.7305,65320.35946,392724323.9,1077834553,354700984.2,468205299.1 + 06/15 01:00:00,0,235742976.8,0,346315836.6,43769.7305,65320.35946,392724323.9,582058813.4,212820590.5,234102649.5 + 06/15 02:00:00,0,68179113.76,0,99454283.23,21890.68219,32668.86072,196414354.5,167633397,141880393.7,0 + 06/15 03:00:00,0,34121096.86,0,52071405.27,21899.67573,32682.28236,196495049.1,86192502.13,141880393.7,0 + 06/15 04:00:00,0,11786545.6,0,21550350.92,21901.36908,32684.80945,196510242.7,33336896.52,141880393.7,0 + 06/15 05:00:00,0,5560681.883,0,11136979.09,21907.79073,32694.39289,196567861,16697660.97,141880393.7,0 + 06/15 06:00:00,0,29325770.58,0,40287674.17,21906.23811,32692.07582,196553930.1,69613444.74,141880393.7,0 + 06/15 07:00:00,0,137683580,0,196512027.1,21903.02727,32687.28407,196525120.8,334195607.1,141880393.7,156068433 + 06/15 08:00:00,0,401892641.4,0,590179501.2,87643.16119,130795.4773,786379098.7,992072142.7,567521574.6,390171082.6 + 06/15 09:00:00,0,277566671.4,0,418000016.9,219163.6633,327071.908,1966448057,695566688.4,567521574.6,390171082.6 + 06/15 10:00:00,0,0,0,0,219093.0813,326966.574,1965814759,0,283760787.3,0 + 06/15 11:00:00,0,0,0,0,218979.4724,326797.0282,1964795402,0,283760787.3,0 + 06/15 12:00:00,0,0,0,0,131398.0544,196093.6941,1178970295,0,283760787.3,0 + 06/15 13:00:00,0,0,0,0,131366.3094,196046.319,1178685462,0,283760787.3,0 + 06/15 14:00:00,0,0,0,0,131355.3065,196029.8987,1178586739,0,283760787.3,0 + 06/15 15:00:00,0,0,0,0,131344.0931,196013.1643,1178486127,0,283760787.3,0 + 06/15 16:00:00,0,0,0,0,306442.8954,457324.2707,2749561798,0,283760787.3,0 + 06/15 17:00:00,0,0,0,0,393998.0083,587988.348,3535150883,0,354700984.2,0 + 06/15 18:00:00,0,0,0,0,306882.4882,457980.303,2753506048,0,141880393.7,0 + 06/15 19:00:00,0,0,0,0,306961.5237,458098.2528,2754215196,0,638461771.5,0 + 06/15 20:00:00,0,246838220.5,0,473303639,263145.4287,392708.7007,2361074866,720141859.5,638461771.5,702307948.6 + 06/15 21:00:00,0,255854011.7,0,424348741.7,219268.4606,327228.3037,1967388352,680202753.4,496581377.8,702307948.6 + 06/15 22:00:00,0,192541979.4,0,324192453.9,175430.2858,261805.8005,1574049911,516734433.4,354700984.2,702307948.6 + 06/15 23:00:00,0,140337648.3,0,245732331.7,131593.4395,196385.2799,1180723390,386069979.9,354700984.2,624273732.1 + 06/15 24:00:00,0,59381785.77,0,128531668.6,87728.9597,130923.5199,787148926.6,187913454.4,354700984.2,468205299.1 + 06/16 01:00:00,0,0,0,0,43867.50865,65466.28003,393601639.3,0,212820590.5,234102649.5 + 06/16 02:00:00,0,0,0,0,21933.75433,32733.14002,196800819.6,0,141880393.7,0 + 06/16 03:00:00,0,0,0,0,21935.12685,32735.18832,196813134.6,0,141880393.7,0 + 06/16 04:00:00,0,0,0,0,21938.81269,32740.68894,196846205.9,0,141880393.7,0 + 06/16 05:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 06/16 06:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 06/16 07:00:00,0,0,0,0,21940.75822,32743.59237,196863662.1,0,141880393.7,156068433 + 06/16 08:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,567521574.6,390171082.6 + 06/16 09:00:00,80434278.8,0,71027271.72,0,87725.71815,130918.6823,938581392.3,0,567521574.6,390171082.6 + 06/16 10:00:00,18382407.33,0,0,0,131521.0664,196277.2727,1198456428,0,283760787.3,0 + 06/16 11:00:00,29125388.3,0,27687729.91,0,131437.4287,196152.4549,1236136699,0,283760787.3,0 + 06/16 12:00:00,0,0,0,0,87531.42498,130628.7263,785376544.4,0,283760787.3,0 + 06/16 13:00:00,0,6858596.297,0,0,87237.86852,130190.6332,782742606.3,6858596.297,283760787.3,0 + 06/16 14:00:00,0,425344809.8,0,593319699.2,129913.9018,193878.7986,1165653721,1018664509,283760787.3,0 + 06/16 15:00:00,0,524193130.4,0,815111295.2,172850.1766,257955.3389,1550899856,1339304426,283760787.3,0 + 06/16 16:00:00,0,648735909.3,0,1043997352,214715.4659,320433.5794,1926536563,1692733261,283760787.3,0 + 06/16 17:00:00,0,746536198.1,0,1307392820,257455.6093,384217.4204,2310022907,2053929018,354700984.2,0 + 06/16 18:00:00,0,624519736.8,0,1247616771,301063.4505,449296.1822,2701294678,1872136508,141880393.7,0 + 06/16 19:00:00,0,822885330.2,0,1536491867,172695.5716,257724.612,1549512661,2359377197,638461771.5,0 + 06/16 20:00:00,0,1025847267,0,1527345955,130044.6799,194073.9671,1166827129,2553193222,638461771.5,702307948.6 + 06/16 21:00:00,0,891244912.4,0,1332192419,86555.38238,129172.1157,776618992.9,2223437331,496581377.8,702307948.6 + 06/16 22:00:00,0,789269989,0,1193455921,86763.82816,129483.1926,778489274.7,1982725910,354700984.2,702307948.6 + 06/16 23:00:00,0,687630149.8,0,1043405271,86922.9646,129720.682,779917127.9,1731035421,354700984.2,624273732.1 + 06/16 24:00:00,0,539065496.9,0,824001398,87149.63654,130058.959,781950944.1,1363066895,354700984.2,468205299.1 + 06/17 01:00:00,0,303571648.6,0,474280941.7,43600.43754,65067.71278,391205341.2,777852590.4,212820590.5,234102649.5 + 06/17 02:00:00,0,117081638,0,198859091.7,21815.46137,32556.60389,195739434.9,315940729.7,141880393.7,0 + 06/17 03:00:00,0,86283756,0,157748734,21824.19515,32569.63787,195817798.9,244032490,141880393.7,0 + 06/17 04:00:00,0,15939394.95,0,42984504.77,21874.47061,32644.66715,196268895.9,58923899.71,141880393.7,0 + 06/17 05:00:00,0,0,0,0,21896.18362,32677.07086,196463716.1,0,141880393.7,0 + 06/17 06:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 06/17 07:00:00,0,65040199.2,0,122502365.5,87555.11296,130664.0773,785589085.1,187542564.7,141880393.7,156068433 + 06/17 08:00:00,0,542322415.5,0,814662252.6,349921.0929,522209.557,3139670340,1356984668,567521574.6,390171082.6 + 06/17 09:00:00,0,507290587.2,0,763595267.6,305578.5265,456034.3179,2741806240,1270885855,567521574.6,390171082.6 + 06/17 10:00:00,0,261918212.9,0,399531275.8,217807.998,325048.7623,1954284337,661449488.7,283760787.3,0 + 06/17 11:00:00,0,325513269.3,0,463011698.9,174165.047,259917.6039,1562697543,788524968.2,283760787.3,0 + 06/17 12:00:00,0,387515837.6,0,498757381.6,87026.3912,129875.0321,780845124,886273219.1,283760787.3,0 + 06/17 13:00:00,0,316741784.2,0,382101901.1,87523.24903,130616.5248,785303185.7,698843685.4,283760787.3,0 + 06/17 14:00:00,0,252180424.6,0,329742919,87213.34314,130154.0324,782522552.1,581923343.6,283760787.3,0 + 06/17 15:00:00,0,275593992.8,0,403316846.6,130724.4548,195088.4385,1172926416,678910839.4,283760787.3,0 + 06/17 16:00:00,0,298614846,0,494546347.9,217457.183,324525.2186,1951136646,793161193.9,283760787.3,0 + 06/17 17:00:00,0,357590282.3,0,749638502.2,217457.183,324525.2186,1951136646,1107228784,354700984.2,0 + 06/17 18:00:00,0,233544673.7,0,668683065.6,304931.1972,455068.2672,2735998072,902227739.4,141880393.7,0 + 06/17 19:00:00,0,379575906.1,0,875985147.2,305914.9316,456536.3567,2744824638,1255561053,638461771.5,0 + 06/17 20:00:00,0,524099827.1,0,844738960.6,175155.0792,261395.0921,1571580617,1368838788,638461771.5,702307948.6 + 06/17 21:00:00,0,378086305.6,0,599774262.4,175341.3769,261673.116,1573252175,977860568,496581377.8,702307948.6 + 06/17 22:00:00,0,263914967.3,0,434634203.8,87722.33481,130913.6332,787089484.8,698549171.1,354700984.2,702307948.6 + 06/17 23:00:00,0,182235553.1,0,313982325.2,87753.57065,130960.2484,787369748.6,496217878.3,354700984.2,624273732.1 + 06/17 24:00:00,0,81947222.34,0,164057747,43881.51644,65487.18475,393727324.3,246004969.4,354700984.2,468205299.1 + 06/18 01:00:00,0,0,0,0,43882.1764,65488.16965,393733245.8,0,212820590.5,234102649.5 + 06/18 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 06/18 03:00:00,0,0,0,0,21935.53763,32735.80136,196816820.4,0,141880393.7,0 + 06/18 04:00:00,0,0,0,0,21932.74186,32731.62905,196791735.3,0,141880393.7,0 + 06/18 05:00:00,0,0,0,0,21934.89191,32734.8377,196811026.6,0,141880393.7,0 + 06/18 06:00:00,0,26895655.14,0,0,21941.08185,32744.07534,196866565.9,26895655.14,141880393.7,0 + 06/18 07:00:00,0,272841100,0,272586329.7,87740.5074,130940.7533,787252538.5,545427429.7,141880393.7,156068433 + 06/18 08:00:00,0,543482955.2,0,816303504.1,350421.9053,522956.9512,3144163883,1359786459,567521574.6,390171082.6 + 06/18 09:00:00,0,525290843.5,0,837444395.3,306388.1135,457242.5162,2749070267,1362735239,567521574.6,390171082.6 + 06/18 10:00:00,0,289171145.9,0,488776640.3,218608.4558,326243.3365,1961466452,777947786.2,283760787.3,0 + 06/18 11:00:00,0,368224858.9,0,529379670.1,174499.8512,260417.2536,1565701577,897604529,283760787.3,0 + 06/18 12:00:00,0,486448315.8,0,564639424.8,87136.48595,130039.3336,781832950.2,1051087741,283760787.3,0 + 06/18 13:00:00,0,558046507.9,0,628103782.1,87040.62723,129896.2775,780972856.9,1186150290,283760787.3,0 + 06/18 14:00:00,0,622242281.6,0,797540213.3,86796.7209,129532.2805,778784405.1,1419782495,283760787.3,0 + 06/18 15:00:00,0,652616510.4,0,968212831.3,130219.4521,194334.7907,1168395274,1620829342,283760787.3,0 + 06/18 16:00:00,0,636587927.1,0,1070718979,216991.8023,323830.7013,1946961013,1707306906,283760787.3,0 + 06/18 17:00:00,0,612735161.1,0,1112932300,216950.8522,323769.589,1946593588,1725667461,354700984.2,0 + 06/18 18:00:00,0,472603539.6,0,960292330,304491.2991,454411.7792,2732051082,1432895870,141880393.7,0 + 06/18 19:00:00,0,649459101.3,0,1168112368,304836.7625,454927.3362,2735150755,1817571469,638461771.5,0 + 06/18 20:00:00,0,859100880.3,0,1301373778,174475.737,260381.2665,1565485213,2160474659,638461771.5,702307948.6 + 06/18 21:00:00,0,694465465,0,1042617233,175062.85,261257.4525,1570753089,1737082698,496581377.8,702307948.6 + 06/18 22:00:00,0,555854289.5,0,842190558.5,87631.16293,130777.5716,786271444.2,1398044848,354700984.2,702307948.6 + 06/18 23:00:00,0,473458731.8,0,721986369.6,87670.68846,130836.558,786626087.3,1195445101,354700984.2,624273732.1 + 06/18 24:00:00,0,364938789.4,0,561806088.7,43849.52958,65439.44871,393440321.8,926744878.1,354700984.2,468205299.1 + 06/19 01:00:00,0,148951779.2,0,243118912.1,43868.91665,65468.38128,393614272.6,392070691.3,212820590.5,234102649.5 + 06/19 02:00:00,0,0,0,3350836.631,21933.01486,32732.03646,196794184.7,3350836.631,141880393.7,0 + 06/19 03:00:00,0,0,0,0,21932.23992,32730.87998,196787231.6,0,141880393.7,0 + 06/19 04:00:00,0,0,0,0,21940.38001,32743.02794,196860268.6,0,141880393.7,0 + 06/19 05:00:00,0,109257893.1,0,0,21932.23992,32730.87998,196787231.6,109257893.1,141880393.7,0 + 06/19 06:00:00,0,338612646.8,0,361513716.4,21899.67573,32682.28236,196495049.1,700126363.2,141880393.7,0 + 06/19 07:00:00,0,571526834.8,0,770408101.3,87489.1476,130565.633,784997210.2,1341934936,141880393.7,156068433 + 06/19 08:00:00,0,896763678.1,0,1346716810,349321.9066,521315.3531,3134294135,2243480489,567521574.6,390171082.6 + 06/19 09:00:00,0,779090643,0,1178949220,304931.1972,455068.2672,2735998072,1958039863,567521574.6,390171082.6 + 06/19 10:00:00,0,503778816.8,0,741773981.6,217671.7338,324845.4065,1953061705,1245552798,283760787.3,0 + 06/19 11:00:00,0,625601568.8,0,862219754.1,173721.8213,259256.15,1558720697,1487821323,283760787.3,0 + 06/19 12:00:00,0,739249313.3,0,954029578.4,86796.7209,129532.2805,778784405.1,1693278892,283760787.3,0 + 06/19 13:00:00,0,753103346.3,0,973555774.7,86845.06308,129604.4246,779218155.7,1726659121,283760787.3,0 + 06/19 14:00:00,0,600956374.5,0,808618939.3,86845.06308,129604.4246,779218155.7,1409575314,283760787.3,0 + 06/19 15:00:00,0,573063857.7,0,776706499.2,130314.9371,194477.2892,1169252015,1349770357,283760787.3,0 + 06/19 16:00:00,0,499115082,0,680296572.9,217493.7851,324579.8423,1951465059,1179411655,283760787.3,0 + 06/19 17:00:00,0,504237185.1,0,708142430.5,217493.7851,324579.8423,1951465059,1212379616,354700984.2,0 + 06/19 18:00:00,0,348447714.8,0,487666413,305114.3509,455341.5991,2737641420,836114127.8,141880393.7,0 + 06/19 19:00:00,0,500540736.5,0,721306951.1,305984.3571,456639.9648,2745447559,1221847688,638461771.5,0 + 06/19 20:00:00,0,646468544.6,0,960756028.8,175094.714,261305.0053,1571038990,1607224573,638461771.5,702307948.6 + 06/19 21:00:00,0,478446145.7,0,725130240.2,175237.2023,261517.6496,1572317467,1203576386,496581377.8,702307948.6 + 06/19 22:00:00,0,374948122.8,0,575465342.4,87618.60115,130758.8248,786158733.5,950413465.3,354700984.2,702307948.6 + 06/19 23:00:00,0,330619286.5,0,511362677.1,87612.10909,130749.1363,786100483.4,841981963.7,354700984.2,624273732.1 + 06/19 24:00:00,0,256125205.1,0,401178301.2,43802.73816,65369.6189,393020485.4,657303506.3,354700984.2,468205299.1 + 06/20 01:00:00,0,89134344.98,0,147429036.6,43799.35147,65364.56472,392990098.3,236563381.5,212820590.5,234102649.5 + 06/20 02:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 06/20 03:00:00,0,0,0,0,21903.02727,32687.28407,196525120.8,0,141880393.7,0 + 06/20 04:00:00,0,0,0,0,21903.02727,32687.28407,196525120.8,0,141880393.7,0 + 06/20 05:00:00,0,6431682.94,0,0,21916.36633,32707.1908,196644805.7,6431682.94,141880393.7,0 + 06/20 06:00:00,0,204073399.2,0,121693356.2,21903.02727,32687.28407,196525120.8,325766755.5,141880393.7,0 + 06/20 07:00:00,0,434900496.6,0,571317850.6,87489.1476,130565.633,784997210.2,1006218347,141880393.7,156068433 + 06/20 08:00:00,0,786541167.1,0,1192591788,349321.9066,521315.3531,3134294135,1979132955,567521574.6,390171082.6 + 06/20 09:00:00,0,657341095.6,0,1030801440,305246.701,455539.1136,2738828932,1688142536,567521574.6,390171082.6 + 06/20 10:00:00,0,384961451,0,611379174.4,217774.4412,324998.6833,1953983248,996340625.4,283760787.3,0 + 06/20 11:00:00,0,402696637.7,0,572570873.8,174219.5529,259998.9466,1563186598,975267511.4,283760787.3,0 + 06/20 12:00:00,0,490629733.1,0,588035623.5,86922.9646,129720.682,779917127.9,1078665357,283760787.3,0 + 06/20 13:00:00,0,566952928.6,0,659308485.7,86938.14323,129743.3341,780053318.3,1226261414,283760787.3,0 + 06/20 14:00:00,0,598272622.3,0,767982923.5,86953.18764,129765.7858,780188304.4,1366255546,283760787.3,0 + 06/20 15:00:00,0,562210561.9,0,788240532.3,130560.9408,194844.4162,1171459285,1350451094,283760787.3,0 + 06/20 16:00:00,0,490511606.6,0,727484667.1,217565.978,324687.5804,1952112810,1217996274,283760787.3,0 + 06/20 17:00:00,0,435649033.7,0,722125890.9,218002.1877,325338.5639,1956026706,1157774925,354700984.2,0 + 06/20 18:00:00,0,314542440.1,0,528118080.1,305457.698,455853.9978,2740722105,842660520.3,141880393.7,0 + 06/20 19:00:00,0,460448013.9,0,715204021.3,305578.5265,456034.3179,2741806240,1175652035,638461771.5,0 + 06/20 20:00:00,0,643753562,0,948782601.1,175110.2259,261328.1547,1571178170,1592536163,638461771.5,702307948.6 + 06/20 21:00:00,0,546314811.4,0,805209785.3,175140.4086,261373.1983,1571448985,1351524597,496581377.8,702307948.6 + 06/20 22:00:00,0,456162062.8,0,675587253.2,87547.35702,130652.5027,785519494.8,1131749316,354700984.2,702307948.6 + 06/20 23:00:00,0,369059313.8,0,550407869.7,87598.70293,130729.1294,785980196.5,919467183.5,354700984.2,624273732.1 + 06/20 24:00:00,0,250635796.3,0,378144615.6,43835.34423,65418.27901,393313043.7,628780411.9,354700984.2,468205299.1 + 06/21 01:00:00,0,83772779.64,0,132265726.5,43845.08396,65432.81423,393400433.5,216038506.2,212820590.5,234102649.5 + 06/21 02:00:00,0,0,0,0,21932.23992,32730.87998,196787231.6,0,141880393.7,0 + 06/21 03:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 06/21 04:00:00,0,0,0,0,21935.75989,32736.13305,196818814.6,0,141880393.7,0 + 06/21 05:00:00,0,0,0,0,21936.9195,32737.86361,196829219.2,0,141880393.7,0 + 06/21 06:00:00,0,229203695,0,133246840.1,21924.76479,32719.72435,196720160.9,362450535.1,141880393.7,0 + 06/21 07:00:00,0,360223184.3,0,453423044.3,87584.7345,130708.2834,785854864.6,813646228.7,141880393.7,156068433 + 06/21 08:00:00,0,583176776.9,0,852672646.7,350025.9107,522365.9833,3140610818,1435849424,567521574.6,390171082.6 + 06/21 09:00:00,0,534001228.9,0,816410967.3,306117.372,456838.4715,2746641037,1350412196,567521574.6,390171082.6 + 06/21 10:00:00,0,291700806.8,0,435002410.4,218722.869,326414.0826,1962493026,726703217.2,283760787.3,0 + 06/21 11:00:00,0,293232393.4,0,387449130.1,174924.2126,261050.5551,1569509164,680681523.5,283760787.3,0 + 06/21 12:00:00,0,244791486.2,0,303793331.6,87319.38249,130312.2817,783473991.2,548584817.8,283760787.3,0 + 06/21 13:00:00,0,380685744.8,0,453657012.5,87394.14013,130423.8473,784144754.8,834342757.3,283760787.3,0 + 06/21 14:00:00,0,329708337.4,0,414076595.2,87531.42498,130628.7263,785376544.4,743784932.6,283760787.3,0 + 06/21 15:00:00,0,275453748.5,0,353836795.9,131398.0544,196093.6941,1178970295,629290544.4,283760787.3,0 + 06/21 16:00:00,0,229701424.8,0,333495990.3,218906.8219,326688.6072,1964143545,563197415.1,283760787.3,0 + 06/21 17:00:00,0,203455602.1,0,364501596.7,218868.3925,326631.2566,1963798737,567957198.8,354700984.2,0 + 06/21 18:00:00,0,136915046.2,0,401069511.7,306521.3886,457441.4111,2750266079,537984558,141880393.7,0 + 06/21 19:00:00,0,280613098.1,0,671588040.3,306810.3534,457872.6518,2752858819,952201138.4,638461771.5,0 + 06/21 20:00:00,0,453928374.7,0,737400086.7,175341.3769,261673.116,1573252175,1191328461,638461771.5,702307948.6 + 06/21 21:00:00,0,346593328.7,0,544523890.3,175444.6696,261827.2663,1574178970,891117219,496581377.8,702307948.6 + 06/21 22:00:00,0,238355343.6,0,386616662.3,87755.25077,130962.7558,787384823.5,624972005.9,354700984.2,702307948.6 + 06/21 23:00:00,0,184383518.6,0,307245014.7,87755.25077,130962.7558,787384823.5,491628533.4,354700984.2,624273732.1 + 06/21 24:00:00,0,93749069.96,0,173706162,43881.92504,65487.79453,393730990.5,267455232,354700984.2,468205299.1 + 06/22 01:00:00,0,0,0,0,43874.52376,65476.74912,393664582.3,0,212820590.5,234102649.5 + 06/22 02:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 06/22 03:00:00,0,0,0,0,21939.06381,32741.06369,196848459,0,141880393.7,0 + 06/22 04:00:00,0,0,0,0,21940.70104,32743.50704,196863149.1,0,141880393.7,0 + 06/22 05:00:00,0,0,0,0,21940.89402,32743.79504,196864880.6,0,141880393.7,0 + 06/22 06:00:00,0,0,0,0,21939.1972,32741.26277,196849655.9,0,141880393.7,0 + 06/22 07:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,156068433 + 06/22 08:00:00,0,43901482.14,0,82926537.79,87728.9597,130923.5199,787148926.6,126828019.9,567521574.6,390171082.6 + 06/22 09:00:00,0,260675434.4,0,392686573.3,219278.336,327243.0414,1967476959,653362007.7,567521574.6,390171082.6 + 06/22 10:00:00,0,0,0,0,219268.4606,327228.3037,1967388352,0,283760787.3,0 + 06/22 11:00:00,0,0,0,0,219297.0243,327270.9311,1967644640,0,283760787.3,0 + 06/22 12:00:00,0,0,0,0,131583.5022,196370.4498,1180634227,0,283760787.3,0 + 06/22 13:00:00,81071633.62,0,92960732.11,0,131578.2146,196362.5587,1354619149,0,283760787.3,0 + 06/22 14:00:00,91104412.17,0,113615048.9,0,131578.2146,196362.5587,1385306245,0,283760787.3,0 + 06/22 15:00:00,54901884.06,0,66180556.15,0,131554.9387,196327.8226,1301460381,0,283760787.3,0 + 06/22 16:00:00,55709066.51,0,65776532.81,0,306961.5237,458098.2528,2875700795,0,283760787.3,0 + 06/22 17:00:00,45350620.01,0,47101282.12,0,394626.0793,588925.6583,3633238158,0,354700984.2,0 + 06/22 18:00:00,86078165.95,0,101629056.4,0,306730.3139,457753.2036,2939847885,0,141880393.7,0 + 06/22 19:00:00,0,0,0,0,306687.3336,457689.0614,2751755022,0,638461771.5,0 + 06/22 20:00:00,0,244642766.3,0,494440476.5,262688.1863,392026.3286,2356972254,739083242.8,638461771.5,702307948.6 + 06/22 21:00:00,0,325283067.6,0,531162307,218943.849,326743.8651,1964475771,856445374.6,496581377.8,702307948.6 + 06/22 22:00:00,0,227405119.2,0,384331845.5,175320.2019,261641.5153,1573062182,611736964.7,354700984.2,702307948.6 + 06/22 23:00:00,0,138970576.5,0,259118378.6,131572.7144,196354.3503,1180537433,398088955.1,354700984.2,624273732.1 + 06/22 24:00:00,0,24596299.87,0,93783407.27,87737.83331,130936.7626,787228545.1,118379707.1,354700984.2,468205299.1 + 06/23 01:00:00,0,0,0,0,43880.2752,65485.33236,393716187.2,0,212820590.5,234102649.5 + 06/23 02:00:00,0,0,0,0,21940.75822,32743.59237,196863662.1,0,141880393.7,0 + 06/23 03:00:00,0,0,0,0,21940.75822,32743.59237,196863662.1,0,141880393.7,0 + 06/23 04:00:00,0,0,0,0,21939.5462,32741.78359,196852787.2,0,141880393.7,0 + 06/23 05:00:00,0,0,0,0,21939.1972,32741.26277,196849655.9,0,141880393.7,0 + 06/23 06:00:00,0,0,0,0,21936.35745,32737.02482,196824176.1,0,141880393.7,0 + 06/23 07:00:00,0,0,0,0,21926.84606,32722.83037,196738835.2,0,141880393.7,156068433 + 06/23 08:00:00,0,276643765.2,0,447495204,21924.76479,32719.72435,196720160.9,724138969.2,567521574.6,390171082.6 + 06/23 09:00:00,0,260596282.3,0,406642020.7,87690.16792,130865.6285,786800867,667238303,567521574.6,390171082.6 + 06/23 10:00:00,0,30497604.65,0,49312374.24,131513.6555,196266.213,1180007527,79809978.89,283760787.3,0 + 06/23 11:00:00,0,107805438.3,0,164188774.7,131355.3065,196029.8987,1178586739,271994213,283760787.3,0 + 06/23 12:00:00,0,142099056.2,0,163578628.2,87531.42498,130628.7263,785376544.4,305677684.4,283760787.3,0 + 06/23 13:00:00,0,251868788.6,0,280019111.6,87362.93077,130377.2716,783864728.6,531887900.2,283760787.3,0 + 06/23 14:00:00,0,345174893.4,0,446082567.8,130856.8028,195285.9498,1174113909,791257461.3,283760787.3,0 + 06/23 15:00:00,0,371945952.5,0,586493974.4,174426.6863,260308.0649,1565045104,958439927,283760787.3,0 + 06/23 16:00:00,0,343397026.5,0,654095341.6,218064.1858,325431.0876,1956582984,997492368,283760787.3,0 + 06/23 17:00:00,0,297725007.4,0,653956884.2,262056.7527,391084.0001,2351306710,951681891.6,354700984.2,0 + 06/23 18:00:00,0,164169301.8,0,430383140.9,305984.3571,456639.9648,2745447559,594552442.7,141880393.7,0 + 06/23 19:00:00,0,263553482.9,0,591220412.3,175140.4086,261373.1983,1571448985,854773895.2,638461771.5,0 + 06/23 20:00:00,0,404722706.8,0,666096446.8,131455.8488,196179.9444,1179488856,1070819154,638461771.5,702307948.6 + 06/23 21:00:00,0,273292025.2,0,440624828.6,87753.57065,130960.2484,787369748.6,713916853.8,496581377.8,702307948.6 + 06/23 22:00:00,0,154193073.8,0,263774496.1,87764.32739,130976.3014,787466263.5,417967569.9,354700984.2,702307948.6 + 06/23 23:00:00,0,77735653.8,0,149839206.5,87754.66638,130961.8836,787379580.1,227574860.3,354700984.2,624273732.1 + 06/23 24:00:00,0,1706841.374,0,21757612.28,87744.59151,130946.8483,787289183.1,23464453.66,354700984.2,468205299.1 + 06/24 01:00:00,0,0,0,0,43880.59484,65485.80938,393719055.2,0,212820590.5,234102649.5 + 06/24 02:00:00,0,0,0,0,21940.84955,32743.72867,196864481.6,0,141880393.7,0 + 06/24 03:00:00,0,0,0,0,21933.49401,32732.75154,196798484,0,141880393.7,0 + 06/24 04:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 06/24 05:00:00,0,0,0,0,21930.27269,32727.94415,196769580.6,0,141880393.7,0 + 06/24 06:00:00,0,0,0,0,21941.05901,32744.04127,196866361,0,141880393.7,0 + 06/24 07:00:00,0,128138379.8,0,79103621.11,87745.42978,130948.0993,787296704.6,207242000.9,141880393.7,156068433 + 06/24 08:00:00,0,393796542.5,0,597135912.1,350760.6717,523462.5139,3147203468,990932454.6,567521574.6,390171082.6 + 06/24 09:00:00,0,384044483.1,0,628937076.6,306495.7151,457403.097,2750035724,1012981560,567521574.6,390171082.6 + 06/24 10:00:00,0,189117728.8,0,322507805.8,218510.6654,326097.3976,1960589027,511625534.6,283760787.3,0 + 06/24 11:00:00,0,234672430.4,0,331161390.2,174523.6909,260452.8311,1565915479,565833820.6,283760787.3,0 + 06/24 12:00:00,0,285591243.1,0,340962161.4,87225.67432,130172.4351,782633193.8,626553404.5,283760787.3,0 + 06/24 13:00:00,0,318526684.8,0,371314608.8,87225.67432,130172.4351,782633193.8,689841293.6,283760787.3,0 + 06/24 14:00:00,0,318981953.5,0,404222702.4,87394.14013,130423.8473,784144754.8,723204655.9,283760787.3,0 + 06/24 15:00:00,0,270262855.6,0,375366967.6,131075.8132,195612.7931,1176078983,645629823.2,283760787.3,0 + 06/24 16:00:00,0,215332209.6,0,326283163.9,218655.2657,326313.1939,1961886455,541615373.5,283760787.3,0 + 06/24 17:00:00,0,224087228.3,0,410777270.8,218584.5292,326207.6292,1961251770,634864499.2,354700984.2,0 + 06/24 18:00:00,0,109798525,0,258240553.9,306442.8954,457324.2707,2749561798,368039078.9,141880393.7,0 + 06/24 19:00:00,0,264974266.1,0,548131452.8,306709.0703,457721.5005,2751950055,813105718.9,638461771.5,0 + 06/24 20:00:00,0,487067613.3,0,763884009.9,175330.9306,261657.5264,1573158445,1250951623,638461771.5,702307948.6 + 06/24 21:00:00,0,421389422.3,0,649137701.9,175361.4218,261703.0303,1573432028,1070527124,496581377.8,702307948.6 + 06/24 22:00:00,0,351457343.9,0,547119289.9,87690.16792,130865.6285,786800867,898576633.8,354700984.2,702307948.6 + 06/24 23:00:00,0,301497341.5,0,474139049.7,87711.33441,130897.2166,786990783.5,775636391.1,354700984.2,624273732.1 + 06/24 24:00:00,0,205891911,0,333498745.5,43868.91665,65468.38128,393614272.6,539390656.5,354700984.2,468205299.1 + 06/25 01:00:00,0,15511424.43,0,49527987.45,43872.71489,65474.04963,393648352.3,65039411.87,212820590.5,234102649.5 + 06/25 02:00:00,0,0,0,0,21938.81269,32740.68894,196846205.9,0,141880393.7,0 + 06/25 03:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 06/25 04:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 06/25 05:00:00,0,0,0,0,21940.1376,32742.66618,196858093.6,0,141880393.7,0 + 06/25 06:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 06/25 07:00:00,0,0,0,0,87759.43865,130969.0056,787422399.2,0,141880393.7,156068433 + 06/25 08:00:00,0,0,0,0,351037.7546,523876.0224,3149689597,0,567521574.6,390171082.6 + 06/25 09:00:00,0,0,0,0,307161.9264,458397.3265,2756013311,0,567521574.6,390171082.6 + 06/25 10:00:00,91607599.02,0,113757344,0,219405.8688,327433.3667,2173986191,0,283760787.3,0 + 06/25 11:00:00,114342576.9,0,156173529.2,0,175516.3696,261934.2687,1845338404,0,283760787.3,0 + 06/25 12:00:00,77049553.85,0,112957608.4,0,87753.57065,130960.2484,977376910.8,0,283760787.3,0 + 06/25 13:00:00,16805589.52,0,33482753.75,0,87735.01731,130932.5601,837491621.8,0,283760787.3,0 + 06/25 14:00:00,0,0,0,0,87711.33441,130897.2166,786990783.5,0,283760787.3,0 + 06/25 15:00:00,0,0,0,0,131521.0664,196277.2727,1180074021,0,283760787.3,0 + 06/25 16:00:00,0,0,0,0,219077.9073,326943.9289,1965678610,0,283760787.3,0 + 06/25 17:00:00,0,0,0,136286833.2,219163.6633,327071.908,1966448057,136286833.2,354700984.2,0 + 06/25 18:00:00,0,0,0,0,306989.6704,458140.258,2754467742,0,141880393.7,0 + 06/25 19:00:00,0,0,0,46084574.49,307072.5606,458263.9602,2755211475,46084574.49,638461771.5,0 + 06/25 20:00:00,0,247353080.7,0,489982290.2,175507.1413,261920.4968,1574739497,737335370.8,638461771.5,702307948.6 + 06/25 21:00:00,0,195459926,0,337779209.4,175521.1008,261941.3295,1574864749,533239135.4,496581377.8,702307948.6 + 06/25 22:00:00,0,93459583.49,0,187377730.1,87763.03288,130974.3695,787454648.6,280837313.5,354700984.2,702307948.6 + 06/25 23:00:00,0,18566072.27,0,89942176.14,87763.97715,130975.7787,787463121,108508248.4,354700984.2,624273732.1 + 06/25 24:00:00,0,0,0,0,43882.11803,65488.08253,393732722,0,354700984.2,468205299.1 + 06/26 01:00:00,16911977.79,0,0,0,43882.1764,65488.16965,410645223.6,0,212820590.5,234102649.5 + 06/26 02:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 06/26 03:00:00,0,0,0,0,21940.89402,32743.79504,196864880.6,0,141880393.7,0 + 06/26 04:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 06/26 05:00:00,0,0,0,0,21941.03995,32744.01282,196866190,0,141880393.7,0 + 06/26 06:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 06/26 07:00:00,0,0,0,0,87763.97715,130975.7787,787463121,0,141880393.7,156068433 + 06/26 08:00:00,70735209.25,0,57599922.48,0,351056.6393,523904.2052,3278194172,0,567521574.6,390171082.6 + 06/26 09:00:00,114696931.7,0,147487757.3,0,307164.1639,458400.6657,3018218075,0,567521574.6,390171082.6 + 06/26 10:00:00,228406483.9,0,293649694.1,0,219405.17,327432.3238,2490671156,0,283760787.3,0 + 06/26 11:00:00,221165605.1,0,300083010.5,0,175528.7056,261952.6786,2096181599,0,283760787.3,0 + 06/26 12:00:00,187857109.1,0,257610471.2,0,87764.3528,130976.3393,1232934072,0,283760787.3,0 + 06/26 13:00:00,188258715.5,0,259029045.6,0,87764.15982,130976.0513,1234752521,0,283760787.3,0 + 06/26 14:00:00,183581832.8,0,250445275.2,0,87761.52003,130972.1118,1221468182,0,283760787.3,0 + 06/26 15:00:00,177407046.8,0,239935209.8,0,131639.158,196453.5084,1598475855,0,283760787.3,0 + 06/26 16:00:00,179232273.7,0,241679638.2,0,219398.5966,327422.514,2389467910,0,283760787.3,0 + 06/26 17:00:00,158068248.7,0,209776993.1,0,219395.462,327417.8359,2336373114,0,354700984.2,0 + 06/26 18:00:00,193183641,0,254456938.7,0,307143.3777,458369.6451,3203487462,0,141880393.7,0 + 06/26 19:00:00,0,0,0,0,307153.6467,458384.9703,2755939021,0,638461771.5,0 + 06/26 20:00:00,0,20013293.97,0,97249596.69,175526.0658,261948.739,1574909297,117262890.7,638461771.5,702307948.6 + 06/26 21:00:00,0,119866115.4,0,209757022.2,175522.3794,261943.2375,1574876221,329623137.7,496581377.8,702307948.6 + 06/26 22:00:00,0,5923522.622,0,67975259.08,87754.66638,130961.8836,787379580.1,73898781.7,354700984.2,702307948.6 + 06/26 23:00:00,0,0,0,0,87739.56762,130939.3508,787244106.3,0,354700984.2,624273732.1 + 06/26 24:00:00,0,0,0,0,43875.53125,65478.25267,393673622.1,0,354700984.2,468205299.1 + 06/27 01:00:00,59055948.38,0,28884772.99,0,43876.46773,65479.65024,481622746.1,0,212820590.5,234102649.5 + 06/27 02:00:00,0,0,0,0,21934.89191,32734.8377,196811026.6,0,141880393.7,0 + 06/27 03:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 06/27 04:00:00,33104880.33,0,28633716.09,0,21920.95262,32714.03521,258424552.6,0,141880393.7,0 + 06/27 05:00:00,0,0,0,0,21926.48439,32722.29063,196735590.1,0,141880393.7,0 + 06/27 06:00:00,0,0,0,0,21938.23387,32739.82512,196841012.4,0,141880393.7,0 + 06/27 07:00:00,0,56689861.84,0,0,87763.57609,130975.1802,787459522.5,56689861.84,141880393.7,156068433 + 06/27 08:00:00,0,420704449.5,0,567633311.7,350796.2366,523515.5897,3147522575,988337761.2,567521574.6,390171082.6 + 06/27 09:00:00,0,450031318.5,0,741158349.9,306359.9874,457200.5419,2748817906,1191189668,567521574.6,390171082.6 + 06/27 10:00:00,0,235119588.5,0,422023049.3,218154.6137,325566.0389,1957394349,657142637.8,283760787.3,0 + 06/27 11:00:00,0,294838998.5,0,434345929.4,174272.9719,260078.6671,1563665900,729184927.9,283760787.3,0 + 06/27 12:00:00,0,394961153.8,0,446644473.5,87068.69351,129938.1626,781224681.9,841605627.3,283760787.3,0 + 06/27 13:00:00,0,496318835.5,0,540424650.6,86938.14323,129743.3341,780053318.3,1036743486,283760787.3,0 + 06/27 14:00:00,0,568105354.7,0,724153908.5,86780.34089,129507.8356,778637435.3,1292259263,283760787.3,0 + 06/27 15:00:00,0,569681427,0,864280628.2,130095.6078,194149.97,1167284080,1433962055,283760787.3,0 + 06/27 16:00:00,0,526803845.2,0,947433758,216698.1983,323392.5375,1944326649,1474237603,283760787.3,0 + 06/27 17:00:00,0,504280120.5,0,1011786314,216783.7381,323520.1939,1945094155,1516066435,354700984.2,0 + 06/27 18:00:00,0,376133393,0,900286335.1,304068.1866,453780.3415,2728254701,1276419728,141880393.7,0 + 06/27 19:00:00,0,476541776.7,0,1055588733,305498.4558,455914.8233,2741087804,1532130510,638461771.5,0 + 06/27 20:00:00,0,551699108.6,0,900911226.2,175249.9049,261536.6065,1572431441,1452610335,638461771.5,702307948.6 + 06/27 21:00:00,0,434480846.3,0,679130148.5,175371.0202,261717.3546,1573518150,1113610995,496581377.8,702307948.6 + 06/27 22:00:00,0,346983919.8,0,550644411.3,87707.38425,130891.3215,786955340.7,897628331.1,354700984.2,702307948.6 + 06/27 23:00:00,0,249728268.3,0,407291653.9,87763.57609,130975.1802,787459522.5,657019922.2,354700984.2,624273732.1 + 06/27 24:00:00,0,171401998.7,0,291002438.2,43872.71489,65474.04963,393648352.3,462404436.9,354700984.2,468205299.1 + 06/28 01:00:00,0,13483845.84,0,50655960.02,43880.76001,65486.05588,393720537.2,64139805.86,212820590.5,234102649.5 + 06/28 02:00:00,0,0,0,0,21936.72263,32737.5698,196827452.7,0,141880393.7,0 + 06/28 03:00:00,0,0,0,0,21932.74186,32731.62905,196791735.3,0,141880393.7,0 + 06/28 04:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 06/28 05:00:00,0,0,0,0,21937.26188,32738.37456,196832291.2,0,141880393.7,0 + 06/28 06:00:00,0,89375282.62,0,0,21938.81269,32740.68894,196846205.9,89375282.62,141880393.7,0 + 06/28 07:00:00,0,386149335.3,0,407739192.1,87690.16792,130865.6285,786800867,793888527.4,141880393.7,156068433 + 06/28 08:00:00,0,680440943.1,0,1025844280,350059.733,522416.4583,3140914289,1706285223,567521574.6,390171082.6 + 06/28 09:00:00,0,653554967.4,0,1034828920,305656.6683,456150.9339,2742507368,1688383888,567521574.6,390171082.6 + 06/28 10:00:00,0,399703326.3,0,657180129.9,217874.0914,325147.3976,1954877360,1056883456,283760787.3,0 + 06/28 11:00:00,0,450900066,0,649079641.8,173936.1953,259576.074,1560644170,1099979708,283760787.3,0 + 06/28 12:00:00,0,567378619.2,0,687529226.5,86644.53643,129305.1659,777418928.5,1254907846,283760787.3,0 + 06/28 13:00:00,0,674808783.2,0,803456880.4,86518.80564,129117.5299,776290807.8,1478265664,283760787.3,0 + 06/28 14:00:00,0,718555394.6,0,955994864.5,86425.08828,128977.6695,775449927.9,1674550259,283760787.3,0 + 06/28 15:00:00,0,684013662.9,0,1028055107,129722.5621,193593.2502,1163936924,1712068770,283760787.3,0 + 06/28 16:00:00,0,609850030.7,0,1015978595,216433.6875,322997.7911,1941953323,1625828626,283760787.3,0 + 06/28 17:00:00,0,542148346.8,0,924270329.6,216388.4559,322930.2891,1941547482,1466418676,354700984.2,0 + 06/28 18:00:00,0,409444311.5,0,772402235.3,304283.5013,454101.6693,2730186614,1181846547,141880393.7,0 + 06/28 19:00:00,0,538833584.3,0,994468107.7,305374.7396,455730.1938,2739977760,1533301692,638461771.5,0 + 06/28 20:00:00,0,696494408.5,0,1067746737,174905.6278,261022.8198,1569342411,1764241146,638461771.5,702307948.6 + 06/28 21:00:00,0,560771440.8,0,845497418.5,175046.4981,261233.0495,1570606371,1406268859,496581377.8,702307948.6 + 06/28 22:00:00,0,433436253.1,0,661398954.5,87660.10097,130820.7576,786531091,1094835208,354700984.2,702307948.6 + 06/28 23:00:00,0,376239630.4,0,578765142,87631.16293,130777.5716,786271444.2,955004772.4,354700984.2,624273732.1 + 06/28 24:00:00,0,246164471,0,387746884.2,43876.78532,65480.1242,393684874.3,633911355.2,354700984.2,468205299.1 + 06/29 01:00:00,0,23949765.66,0,58880918.86,43881.17376,65486.67335,393724249.6,82830684.52,212820590.5,234102649.5 + 06/29 02:00:00,0,0,0,0,21939.5462,32741.78359,196852787.2,0,141880393.7,0 + 06/29 03:00:00,0,0,0,0,21940.58688,32743.33667,196862124.8,0,141880393.7,0 + 06/29 04:00:00,0,0,0,0,21940.04231,32742.52397,196857238.6,0,141880393.7,0 + 06/29 05:00:00,0,0,0,0,21941.0882,32744.08482,196866622.9,0,141880393.7,0 + 06/29 06:00:00,0,306444060.6,0,56536267.3,21921.37753,32714.66933,196689768.7,362980327.9,141880393.7,0 + 06/29 07:00:00,0,567316564.7,0,760097622.4,21886.83925,32663.12566,196379873.7,1327414187,141880393.7,156068433 + 06/29 08:00:00,0,832576706.7,0,1224359824,87330.47666,130328.8383,783573533.7,2056936531,567521574.6,390171082.6 + 06/29 09:00:00,0,831452491.3,0,1246724960,217807.998,325048.7623,1954284337,2078177451,567521574.6,390171082.6 + 06/29 10:00:00,0,599050881.5,0,904520995.8,217032.4201,323891.3179,1947325457,1503571877,283760787.3,0 + 06/29 11:00:00,0,721116245.9,0,1015185779,216388.4559,322930.2891,1941547482,1736302025,283760787.3,0 + 06/29 12:00:00,0,820952139.3,0,1042581678,129580.0424,193380.5589,1162658165,1863533817,283760787.3,0 + 06/29 13:00:00,0,797314873.3,0,1016428583,129833.0736,193758.1735,1164928489,1813743456,283760787.3,0 + 06/29 14:00:00,0,684602277.1,0,911724661.1,130243.6232,194370.8629,1168612150,1596326938,283760787.3,0 + 06/29 15:00:00,0,648132860.7,0,886893474.8,130243.6232,194370.8629,1168612150,1535026336,283760787.3,0 + 06/29 16:00:00,0,623167748.6,0,859354306.5,303673.3986,453191.174,2724712461,1482522055,283760787.3,0 + 06/29 17:00:00,0,615516888.2,0,894161580.9,390362.3229,582562.5829,3502529661,1509678469,354700984.2,0 + 06/29 18:00:00,0,507255173.2,0,755347777.2,304013.1873,453698.2625,2727761219,1262602950,141880393.7,0 + 06/29 19:00:00,0,700915875.3,0,1051641678,304388.3419,454258.1295,2731127297,1752557553,638461771.5,0 + 06/29 20:00:00,0,891980925.8,0,1301905055,261958.1475,390936.8452,2350421974,2193885981,638461771.5,702307948.6 + 06/29 21:00:00,0,771938588.1,0,1124830676,218241.9515,325696.3787,1958177989,1896769264,496581377.8,702307948.6 + 06/29 22:00:00,0,702939046.6,0,1025617946,174616.3009,260591.0388,1566746423,1728556993,354700984.2,702307948.6 + 06/29 23:00:00,0,632207685,0,924211784.3,131106.3993,195658.4386,1176353416,1556419469,354700984.2,624273732.1 + 06/29 24:00:00,0,530676568.8,0,775993339.4,87443.38232,130497.3346,784586580.9,1306669908,354700984.2,468205299.1 + 06/30 01:00:00,0,341145986.1,0,494472781.6,43721.69116,65248.66729,392293290.4,835618767.7,212820590.5,234102649.5 + 06/30 02:00:00,0,180902750.4,0,256729860.6,21860.84558,32624.33365,196146645.2,437632611,141880393.7,0 + 06/30 03:00:00,0,161095111.9,0,230671974,21860.84558,32624.33365,196146645.2,391767085.9,141880393.7,0 + 06/30 04:00:00,0,118723335.3,0,174704994.3,21863.20347,32627.85248,196167801.4,293428329.5,141880393.7,0 + 06/30 05:00:00,0,71953695.96,0,107111018.4,21865.52657,32631.31939,196188645.5,179064714.4,141880393.7,0 + 06/30 06:00:00,0,117867521.9,0,158195636.5,21853.56337,32613.46595,196081305.6,276063158.4,141880393.7,0 + 06/30 07:00:00,0,238684290.9,0,346503189.1,21832.61916,32582.20957,195893383.4,585187480,141880393.7,156068433 + 06/30 08:00:00,0,637440833.4,0,933932980.7,21809.46713,32547.65831,195685651.6,1571373814,567521574.6,390171082.6 + 06/30 09:00:00,0,555517996.7,0,806239946.4,87414.2535,130453.8638,784325222.2,1361757943,567521574.6,390171082.6 + 06/30 10:00:00,0,215121568.9,0,298007785.6,131121.3802,195680.7957,1176487833,513129354.5,283760787.3,0 + 06/30 11:00:00,0,241604638.2,0,330071307.3,131060.2085,195589.5052,1175938969,571675945.4,283760787.3,0 + 06/30 12:00:00,0,149933223.7,0,209444721.6,87330.47666,130328.8383,783573533.7,359377945.3,283760787.3,0 + 06/30 13:00:00,0,156122510.2,0,216222475.3,87383.87549,130408.5287,784052655.2,372344985.5,283760787.3,0 + 06/30 14:00:00,0,201509226.7,0,270172170.8,131246.8237,195868.0029,1177613376,471681397.6,283760787.3,0 + 06/30 15:00:00,0,139236326.1,0,189034116.6,175062.85,261257.4525,1570753089,328270442.6,283760787.3,0 + 06/30 16:00:00,0,80036333.47,0,118002628.7,218678.1486,326347.3435,1962091771,198038962.1,283760787.3,0 + 06/30 17:00:00,0,49028912.33,0,83494181.14,262413.7783,391616.8122,2354510126,132523093.5,354700984.2,0 + 06/30 18:00:00,0,0,0,0,306117.372,456838.4715,2746641037,0,141880393.7,0 + 06/30 19:00:00,0,131657917,0,242046319.6,175062.85,261257.4525,1570753089,373704236.6,638461771.5,0 + 06/30 20:00:00,0,474697238.8,0,744974556.9,131309.1915,195961.0784,1178172972,1219671796,638461771.5,702307948.6 + 06/30 21:00:00,0,379467367.9,0,602500658.6,87547.35702,130652.5027,785519494.8,981968026.5,496581377.8,702307948.6 + 06/30 22:00:00,0,300148112,0,479425729.5,87562.72875,130675.4429,785657417.9,779573841.5,354700984.2,702307948.6 + 06/30 23:00:00,0,254339236.4,0,409818627.4,87591.78897,130718.8113,785918160.9,664157863.8,354700984.2,624273732.1 + 06/30 24:00:00,0,150206075.3,0,264752828.6,87637.23253,130786.6296,786325903.7,414958903.9,354700984.2,468205299.1 + 07/01 01:00:00,0,0,0,0,43840.35545,65425.75758,393358006.9,0,212820590.5,234102649.5 + 07/01 02:00:00,0,0,0,0,21927.8336,32724.30414,196747695.9,0,141880393.7,0 + 07/01 03:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 07/01 04:00:00,0,0,0,0,21929.70243,32727.09311,196764464,0,141880393.7,0 + 07/01 05:00:00,0,0,0,0,21925.82312,32721.30377,196729656.8,0,141880393.7,0 + 07/01 06:00:00,0,86316306.48,0,0,21920.17773,32712.87879,196679003.5,86316306.48,141880393.7,0 + 07/01 07:00:00,0,443268047,0,448123553.5,87489.1476,130565.633,784997210.2,891391600.5,141880393.7,156068433 + 07/01 08:00:00,0,826134799.2,0,1241564814,348951.4741,520762.5329,3130970425,2067699614,567521574.6,390171082.6 + 07/01 09:00:00,0,801709530.3,0,1277258214,304542.0703,454487.5483,2732506627,2078967745,567521574.6,390171082.6 + 07/01 10:00:00,0,504132026.8,0,810626834.4,216654.9342,323327.9716,1943938461,1314758861,283760787.3,0 + 07/01 11:00:00,0,644607967.4,0,924985827.6,172888.1822,258012.0572,1551240862,1569593795,283760787.3,0 + 07/01 12:00:00,0,806910493.4,0,1001320383,86227.97887,128683.5105,773681361.8,1808230876,283760787.3,0 + 07/01 13:00:00,0,903317139.4,0,1103811567,86039.68143,128402.5022,771991861.2,2007128707,283760787.3,0 + 07/01 14:00:00,0,969274449.6,0,1303436597,85908.48833,128206.7144,770814729.9,2272711047,283760787.3,0 + 07/01 15:00:00,0,970432194.5,0,1453582003,128589.9131,191902.9259,1153774220,2424014198,283760787.3,0 + 07/01 16:00:00,0,897416645.7,0,1494722032,214374.4378,319924.6415,1923476685,2392138678,283760787.3,0 + 07/01 17:00:00,0,830140214.3,0,1501204009,214826.6649,320599.5288,1927534297,2331344223,354700984.2,0 + 07/01 18:00:00,0,645588022.6,0,1303772799,301868.9323,450498.2539,2708521870,1949360822,141880393.7,0 + 07/01 19:00:00,0,804247978.6,0,1521280884,303007.1625,452196.9075,2718734652,2325528863,638461771.5,0 + 07/01 20:00:00,0,954928037.8,0,1437257603,173845.9292,259441.3641,1559834256,2392185641,638461771.5,702307948.6 + 07/01 21:00:00,0,766651387.4,0,1143907530,174219.5529,259998.9466,1563186598,1910558917,496581377.8,702307948.6 + 07/01 22:00:00,0,630148465.7,0,950813629,87308.15043,130295.5194,783373211.4,1580962095,354700984.2,702307948.6 + 07/01 23:00:00,0,543704182.1,0,825173781.7,87383.87549,130408.5287,784052655.2,1368877964,354700984.2,624273732.1 + 07/01 24:00:00,0,444371799.9,0,678580885,43707.12675,65226.93189,392162611.1,1122952685,354700984.2,468205299.1 + 07/02 01:00:00,0,221171467.4,0,347783214,43785.10216,65343.29957,392862246.2,568954681.4,212820590.5,234102649.5 + 07/02 02:00:00,0,18996358.84,0,43970664.07,21912.23721,32701.02866,196607757.1,62967022.91,141880393.7,0 + 07/02 03:00:00,0,0,0,239188.4995,21913.64887,32703.13536,196620423.2,239188.4995,141880393.7,0 + 07/02 04:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 07/02 05:00:00,0,103657720,0,70276238.63,21906.23811,32692.07582,196553930.1,173933958.6,141880393.7,0 + 07/02 06:00:00,0,219576203.1,0,255118984.4,21880.81226,32654.13119,196325796.4,474695187.4,141880393.7,0 + 07/02 07:00:00,0,411901384,0,568505142.7,87330.47666,130328.8383,783573533.7,980406526.6,141880393.7,156068433 + 07/02 08:00:00,0,830785976.6,0,1208812372,348702.1153,520390.399,3128733051,2039598349,567521574.6,390171082.6 + 07/02 09:00:00,0,848740464.6,0,1261082631,304336.1567,454180.2503,2730659065,2109823096,567521574.6,390171082.6 + 07/02 10:00:00,0,501632918.3,0,728046840.4,217382.9691,324414.4645,1950470761,1229679759,283760787.3,0 + 07/02 11:00:00,0,533861617.9,0,738603066.2,173815.3037,259395.6598,1559559469,1272464684,283760787.3,0 + 07/02 12:00:00,0,559175645.1,0,744544038.3,87068.69351,129938.1626,781224681.9,1303719683,283760787.3,0 + 07/02 13:00:00,0,564798948.6,0,751949083.3,86982.87318,129810.0874,780454658.2,1316748032,283760787.3,0 + 07/02 14:00:00,0,545908979.6,0,735304119.6,87040.62723,129896.2775,780972856.9,1281213099,283760787.3,0 + 07/02 15:00:00,0,501047653.8,0,715652076.6,130314.9371,194477.2892,1169252015,1216699730,283760787.3,0 + 07/02 16:00:00,0,452289509.1,0,719013223.3,217152.2767,324070.1875,1948400871,1171302732,283760787.3,0 + 07/02 17:00:00,0,464499785.1,0,840232039.6,216698.1983,323392.5375,1944326649,1304731825,354700984.2,0 + 07/02 18:00:00,0,403605598.4,0,951379873.4,303556.4181,453016.5967,2723662853,1354985472,141880393.7,0 + 07/02 19:00:00,0,599317362.4,0,1263414393,304592.3692,454562.6125,2732957934,1862731755,638461771.5,0 + 07/02 20:00:00,0,800177680.4,0,1286385200,174523.6909,260452.8311,1565915479,2086562880,638461771.5,702307948.6 + 07/02 21:00:00,0,682735075.8,0,1067203633,174593.5612,260557.1029,1566542391,1749938709,496581377.8,702307948.6 + 07/02 22:00:00,0,592345618.1,0,930395367.3,87330.47666,130328.8383,783573533.7,1522740985,354700984.2,702307948.6 + 07/02 23:00:00,0,521048440.6,0,821647499.1,87424.10203,130468.5614,784413588.3,1342695940,354700984.2,624273732.1 + 07/02 24:00:00,0,386397790.2,0,618670460.9,43785.10216,65343.29957,392862246.2,1005068251,354700984.2,468205299.1 + 07/03 01:00:00,0,186924628.2,0,318115388.1,43765.71249,65314.36313,392688272.2,505040016.3,212820590.5,234102649.5 + 07/03 02:00:00,0,35781733.32,0,85747693.42,21892.55108,32671.64979,196431123.1,121529426.7,141880393.7,0 + 07/03 03:00:00,0,13601275.09,0,52755694.47,21896.18362,32677.07086,196463716.1,66356969.56,141880393.7,0 + 07/03 04:00:00,0,12285058.21,0,50586822.46,21890.68219,32668.86072,196414354.5,62871880.68,141880393.7,0 + 07/03 05:00:00,0,80888869.77,0,111763410.6,21876.61942,32647.87395,196288176.1,192652280.4,141880393.7,0 + 07/03 06:00:00,0,136991157.8,0,197544676.5,21870.06831,32638.09731,196229396.2,334535834.2,141880393.7,0 + 07/03 07:00:00,0,275782681.2,0,411299992.8,87394.14013,130423.8473,784144754.8,687082674,141880393.7,156068433 + 07/03 08:00:00,0,611996705.3,0,922997745.4,348902.6973,520689.7402,3130532775,1534994451,567521574.6,390171082.6 + 07/03 09:00:00,0,491735787.9,0,750948017.1,305416.4591,455792.4545,2740352089,1242683805,567521574.6,390171082.6 + 07/03 10:00:00,0,207730105.6,0,312145300,218064.1858,325431.0876,1956582984,519875405.6,283760787.3,0 + 07/03 11:00:00,0,313768716.4,0,434831580,174165.047,259917.6039,1562697543,748600296.4,283760787.3,0 + 07/03 12:00:00,0,375772502.6,0,503296536.3,86812.96804,129556.5272,778930182.7,879069038.9,283760787.3,0 + 07/03 13:00:00,0,533512315.9,0,661693708.5,86829.08215,129580.5753,779074766.7,1195206024,283760787.3,0 + 07/03 14:00:00,0,553821310.7,0,725219307.7,87068.69351,129938.1626,781224681.9,1279040618,283760787.3,0 + 07/03 15:00:00,0,516102944.2,0,740606362.3,130496.2711,194747.9054,1170879035,1256709307,283760787.3,0 + 07/03 16:00:00,0,554661232.2,0,942215688.5,217230.513,324186.9446,1949102847,1496876921,283760787.3,0 + 07/03 17:00:00,0,370277113.6,0,754265229.2,218787.3331,326510.2865,1963071430,1124542343,354700984.2,0 + 07/03 18:00:00,0,21779337.26,0,99403564.33,306571.2614,457515.8395,2750713563,121182901.6,141880393.7,0 + 07/03 19:00:00,0,212162641.1,0,493243462.9,306495.7151,457403.097,2750035724,705406104,638461771.5,0 + 07/03 20:00:00,0,455798731.1,0,738375439.4,175237.2023,261517.6496,1572317467,1194174170,638461771.5,702307948.6 + 07/03 21:00:00,0,339615110.2,0,547686418.2,175341.3769,261673.116,1573252175,887301528.4,496581377.8,702307948.6 + 07/03 22:00:00,0,259251220.8,0,426422977.2,87660.10097,130820.7576,786531091,685674198,354700984.2,702307948.6 + 07/03 23:00:00,0,211863895.2,0,353445969.4,87685.51011,130858.6773,786759074.8,565309864.6,354700984.2,624273732.1 + 07/03 24:00:00,0,144488659,0,248012219.3,43835.34423,65418.27901,393313043.7,392500878.3,354700984.2,468205299.1 + 07/04 01:00:00,0,0,0,21551653.04,43824.47443,65402.05732,393215514.3,21551653.04,212820590.5,234102649.5 + 07/04 02:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 07/04 03:00:00,0,0,0,0,21921.37753,32714.66933,196689768.7,0,141880393.7,0 + 07/04 04:00:00,0,0,0,0,21923.67107,32718.09213,196710347.5,0,141880393.7,0 + 07/04 05:00:00,0,0,0,0,21920.17773,32712.87879,196679003.5,0,141880393.7,0 + 07/04 06:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 07/04 07:00:00,0,0,0,0,87605.47633,130739.2378,786040970.9,0,141880393.7,156068433 + 07/04 08:00:00,0,430343402.2,0,637217931.2,350157.844,522562.8757,3141794591,1067561333,567521574.6,390171082.6 + 07/04 09:00:00,0,467150868.6,0,735220562.3,305457.698,455853.9978,2740722105,1202371431,567521574.6,390171082.6 + 07/04 10:00:00,0,342221117.5,0,596786326.1,217345.3581,324358.3352,1950133296,939007443.6,283760787.3,0 + 07/04 11:00:00,0,471510216,0,710823703.9,173460.8104,258866.6267,1556378773,1182333920,283760787.3,0 + 07/04 12:00:00,0,631610887.1,0,767885234.6,86537.1592,129144.92,776455485.3,1399496122,283760787.3,0 + 07/04 13:00:00,0,753104289.7,0,875594890.1,86462.96442,129034.1944,775789771.9,1628699180,283760787.3,0 + 07/04 14:00:00,0,830840828.6,0,1084324336,86207.56396,128653.044,773498188.8,1915165165,283760787.3,0 + 07/04 15:00:00,0,847661876.7,0,1300479419,128895.9989,192359.7173,1156520578,2148141296,283760787.3,0 + 07/04 16:00:00,0,797120937,0,1359813166,215045.3218,320925.8444,1929496198,2156934103,283760787.3,0 + 07/04 17:00:00,0,726158464.4,0,1308486625,215671.0656,321859.6818,1935110691,2034645090,354700984.2,0 + 07/04 18:00:00,0,573258553.8,0,1121902416,302554.3188,451521.1,2714671508,1695160970,141880393.7,0 + 07/04 19:00:00,0,762378907.4,0,1426481420,303615.14,453104.2311,2724189736,2188860328,638461771.5,0 + 07/04 20:00:00,0,932049669.1,0,1423247495,174109.4561,259834.6421,1562198753,2355297164,638461771.5,702307948.6 + 07/04 21:00:00,0,771653527.7,0,1146256491,174351.0577,260195.1995,1564366526,1917910019,496581377.8,702307948.6 + 07/04 22:00:00,0,646347326.4,0,981872068.8,87249.92561,130208.6268,782850788.6,1628219395,354700984.2,702307948.6 + 07/04 23:00:00,0,526530833.7,0,807540100.6,87480.27323,130552.3892,784917584.9,1334070934,354700984.2,624273732.1 + 07/04 24:00:00,0,398527417.8,0,616983829.9,43748.94122,65289.33429,392537791.9,1015511248,354700984.2,468205299.1 + 07/05 01:00:00,0,200301854.5,0,320810356,43753.23884,65295.74791,392576352.3,521112210.5,212820590.5,234102649.5 + 07/05 02:00:00,0,17443209.54,0,41084780.11,21903.02727,32687.28407,196525120.8,58527989.65,141880393.7,0 + 07/05 03:00:00,0,0,0,15939255.02,21890.68219,32668.86072,196414354.5,15939255.02,141880393.7,0 + 07/05 04:00:00,0,0,0,3005974.402,21906.23811,32692.07582,196553930.1,3005974.402,141880393.7,0 + 07/05 05:00:00,0,314116775.6,0,137059294.2,21897.94724,32679.70282,196479540.2,451176069.9,141880393.7,0 + 07/05 06:00:00,0,581815873.8,0,634574500.3,21860.84558,32624.33365,196146645.2,1216390374,141880393.7,0 + 07/05 07:00:00,0,741698441,0,1000498130,87237.86852,130190.6332,782742606.3,1742196571,141880393.7,156068433 + 07/05 08:00:00,0,1058931455,0,1567539584,347990.0561,519327.7477,3122344094,2626471039,567521574.6,390171082.6 + 07/05 09:00:00,0,990071511.5,0,1551240694,303556.4181,453016.5967,2723662853,2541312205,567521574.6,390171082.6 + 07/05 10:00:00,0,699296125.7,0,1095453571,216157.4111,322585.4861,1939474430,1794749697,283760787.3,0 + 07/05 11:00:00,0,766202645.9,0,1097710600,172415.1279,257306.0881,1546996378,1863913246,283760787.3,0 + 07/05 12:00:00,0,908960487.2,0,1148220949,85908.48833,128206.7144,770814729.9,2057181436,283760787.3,0 + 07/05 13:00:00,0,1014876474,0,1261680135,85585.04355,127724.0172,767912618.5,2276556609,283760787.3,0 + 07/05 14:00:00,0,1040784873,0,1402159290,85536.88273,127652.1437,767480495.1,2442944163,283760787.3,0 + 07/05 15:00:00,0,1018472918,0,1495979186,128341.5355,191532.2561,1151545650,2514452103,283760787.3,0 + 07/05 16:00:00,0,956740115,0,1523852594,213720.5969,318948.873,1917610092,2480592709,283760787.3,0 + 07/05 17:00:00,0,903661003.2,0,1540131985,214316.5219,319838.2098,1922957034,2443792988,354700984.2,0 + 07/05 18:00:00,0,753859262.5,0,1428990494,300757.3308,448839.3403,2698548016,2182849756,141880393.7,0 + 07/05 19:00:00,0,908218695.5,0,1684413667,302685.9783,451717.5838,2715852823,2592632363,638461771.5,0 + 07/05 20:00:00,0,1069693417,0,1604437815,173593.4418,259064.561,1557568810,2674131232,638461771.5,702307948.6 + 07/05 21:00:00,0,911514831,0,1354283449,174052.7824,259750.0643,1561690248,2265798280,496581377.8,702307948.6 + 07/05 22:00:00,0,794141336.5,0,1189438673,87096.21786,129979.2389,781471644.4,1983580010,354700984.2,702307948.6 + 07/05 23:00:00,0,716894645.8,0,1077553163,87213.34314,130154.0324,782522552.1,1794447809,354700984.2,624273732.1 + 07/05 24:00:00,0,612448856.1,0,923686783.3,43648.39029,65139.27573,391635597.7,1536135639,354700984.2,468205299.1 + 07/06 01:00:00,0,381196434.2,0,580439591.7,43702.13308,65219.47953,392117805.4,961636025.9,212820590.5,234102649.5 + 07/06 02:00:00,0,199458488.7,0,309754312.6,21845.96887,32602.13219,196013163.8,509212801.4,141880393.7,0 + 07/06 03:00:00,0,158512505.8,0,250423352.6,21865.52657,32631.31939,196188645.5,408935858.4,141880393.7,0 + 07/06 04:00:00,0,110464215.8,0,180814898.4,21882.85624,32657.18156,196344136.1,291279114.2,141880393.7,0 + 07/06 05:00:00,0,434929760.4,0,347135769.4,21863.20347,32627.85248,196167801.4,782065529.8,141880393.7,0 + 07/06 06:00:00,0,676893776.3,0,762499345.3,21838.06273,32590.33334,195942225.8,1439393122,141880393.7,0 + 07/06 07:00:00,0,864520794.5,0,1163177169,21767.17338,32484.54065,195306170.5,2027697963,141880393.7,156068433 + 07/06 08:00:00,0,1210360614,0,1771925355,86796.7209,129532.2805,778784405.1,2982285969,567521574.6,390171082.6 + 07/06 09:00:00,0,1203064727,0,1832021669,216523.1697,323131.331,1942756202,3035086396,567521574.6,390171082.6 + 07/06 10:00:00,0,912610918.3,0,1348622064,216388.4559,322930.2891,1941547482,2261232982,283760787.3,0 + 07/06 11:00:00,0,999445085.9,0,1386032352,216342.898,322862.3001,1941138713,2385477438,283760787.3,0 + 07/06 12:00:00,0,1018261358,0,1331000906,129637.6324,193466.5042,1163174892,2349262263,283760787.3,0 + 07/06 13:00:00,0,964902237.3,0,1251404255,129966.8046,193957.7489,1166128393,2216306492,283760787.3,0 + 07/06 14:00:00,0,777146349.9,0,1042670453,129887.1553,193838.8831,1165413738,1819816803,283760787.3,0 + 07/06 15:00:00,0,641045190.9,0,913645956.3,130664.6647,194999.21,1172389949,1554691147,283760787.3,0 + 07/06 16:00:00,0,393620547.5,0,620056387.7,305498.4558,455914.8233,2741087804,1013676935,283760787.3,0 + 07/06 17:00:00,0,286208400.3,0,525150569.7,392231.929,585352.7152,3519304719,811358969.9,354700984.2,0 + 07/06 18:00:00,0,222007959.5,0,537005957.5,305114.3509,455341.5991,2737641420,759013917,141880393.7,0 + 07/06 19:00:00,0,444438931.5,0,793585053.3,305374.7396,455730.1938,2739977760,1238023985,638461771.5,0 + 07/06 20:00:00,0,722796115.6,0,1094571987,262024.2985,391035.5666,2351015514,1817368103,638461771.5,702307948.6 + 07/06 21:00:00,0,586335882.2,0,897594439.3,218459.6887,326021.3219,1960131638,1483930321,496581377.8,702307948.6 + 07/06 22:00:00,0,490668936.2,0,759336084.5,174788.2803,260847.6946,1568289510,1250005021,354700984.2,702307948.6 + 07/06 23:00:00,0,451600409.4,0,701279292.3,131044.3962,195565.9074,1175797093,1152879702,354700984.2,624273732.1 + 07/06 24:00:00,0,373699108.1,0,584983083.7,87404.26617,130438.9591,784235610.8,958682191.8,354700984.2,468205299.1 + 07/07 01:00:00,0,195573868.1,0,316341906.5,43702.13308,65219.47953,392117805.4,511915774.7,212820590.5,234102649.5 + 07/07 02:00:00,0,37580886.82,0,87002118.32,21851.06654,32609.73976,196058902.7,124583005.1,141880393.7,0 + 07/07 03:00:00,0,4121527.815,0,37716390.3,21853.56337,32613.46595,196081305.6,41837918.12,141880393.7,0 + 07/07 04:00:00,0,0,0,378088.4962,21860.84558,32624.33365,196146645.2,378088.4962,141880393.7,0 + 07/07 05:00:00,0,0,0,0,21858.45292,32620.76292,196125177,0,141880393.7,0 + 07/07 06:00:00,0,0,0,0,21858.45292,32620.76292,196125177,0,141880393.7,0 + 07/07 07:00:00,0,85048215.83,0,190635172,21832.61916,32582.20957,195893383.4,275683387.9,141880393.7,156068433 + 07/07 08:00:00,0,584242354.4,0,892007236.8,21838.06273,32590.33334,195942225.8,1476249591,567521574.6,390171082.6 + 07/07 09:00:00,0,450587722.3,0,684389489.4,87296.78059,130278.5515,783271195.4,1134977212,567521574.6,390171082.6 + 07/07 10:00:00,0,198637184.8,0,291398599.5,130856.8028,195285.9498,1174113909,490035784.3,283760787.3,0 + 07/07 11:00:00,0,262895891.6,0,377222928.9,130962.2256,195443.2791,1175059817,640118820.5,283760787.3,0 + 07/07 12:00:00,0,373264979.2,0,477726591,87249.92561,130208.6268,782850788.6,850991570.2,283760787.3,0 + 07/07 13:00:00,0,364810722,0,437449118.5,87394.14013,130423.8473,784144754.8,802259840.5,283760787.3,0 + 07/07 14:00:00,0,280015423.6,0,379766882.6,131012.1492,195517.7833,1175507757,659782306.1,283760787.3,0 + 07/07 15:00:00,0,279951310.5,0,421021114.9,174905.6278,261022.8198,1569342411,700972425.4,283760787.3,0 + 07/07 16:00:00,0,198841235.4,0,340563474.6,218906.8219,326688.6072,1964143545,539404710,283760787.3,0 + 07/07 17:00:00,0,71153541.45,0,122184570.1,262893.4888,392332.7147,2358814333,193338111.6,354700984.2,0 + 07/07 18:00:00,0,0,0,0,306847.4096,457927.9531,2753191306,0,141880393.7,0 + 07/07 19:00:00,0,25259357.48,0,72047752.51,175371.0202,261717.3546,1573518150,97307109.98,638461771.5,0 + 07/07 20:00:00,0,308710154,0,506213374.5,131554.9387,196327.8226,1180377941,814923528.5,638461771.5,702307948.6 + 07/07 21:00:00,0,241025845.1,0,401011866.3,87707.38425,130891.3215,786955340.7,642037711.4,496581377.8,702307948.6 + 07/07 22:00:00,0,173134267.3,0,303237955.1,87715.14291,130902.9002,787024955.3,476372222.4,354700984.2,702307948.6 + 07/07 23:00:00,0,115952208.6,0,224270163.3,87722.33481,130913.6332,787089484.8,340222371.8,354700984.2,624273732.1 + 07/07 24:00:00,0,33689238.99,0,104771553.5,87725.71815,130918.6823,787119841.8,138460792.5,354700984.2,468205299.1 + 07/08 01:00:00,0,0,0,0,43864.47985,65461.75996,393574463.3,0,212820590.5,234102649.5 + 07/08 02:00:00,0,0,0,0,21931.42954,32729.67059,196779960.4,0,141880393.7,0 + 07/08 03:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 07/08 04:00:00,0,0,0,0,21929.70243,32727.09311,196764464,0,141880393.7,0 + 07/08 05:00:00,0,0,0,0,21928.78573,32725.72506,196756238.8,0,141880393.7,0 + 07/08 06:00:00,0,0,0,0,21926.84606,32722.83037,196738835.2,0,141880393.7,0 + 07/08 07:00:00,0,0,0,0,87690.16792,130865.6285,786800867,0,141880393.7,156068433 + 07/08 08:00:00,0,0,0,0,350760.6717,523462.5139,3147203468,0,567521574.6,390171082.6 + 07/08 09:00:00,0,37117295.58,0,115744050.2,306915.5877,458029.6996,2753803035,152861345.8,567521574.6,390171082.6 + 07/08 10:00:00,0,0,0,0,219189.4258,327110.3551,1966679211,0,283760787.3,0 + 07/08 11:00:00,0,0,0,0,175262.3259,261555.1431,1572542888,0,283760787.3,0 + 07/08 12:00:00,0,0,0,0,87605.47633,130739.2378,786040970.9,0,283760787.3,0 + 07/08 13:00:00,0,0,0,0,87570.20432,130686.5991,785724492.5,0,283760787.3,0 + 07/08 14:00:00,0,0,0,0,87570.20432,130686.5991,785724492.5,0,283760787.3,0 + 07/08 15:00:00,0,0,0,0,131455.8488,196179.9444,1179488856,0,283760787.3,0 + 07/08 16:00:00,33872551.22,0,39036802.47,0,219189.4258,327110.3551,2039588565,0,283760787.3,0 + 07/08 17:00:00,42135026.94,0,41410317.84,0,219122.3721,327010.2866,2049622916,0,354700984.2,0 + 07/08 18:00:00,56602028.27,0,33678498.98,0,306595.4603,457551.953,2841211215,0,141880393.7,0 + 07/08 19:00:00,0,0,0,0,306619.1671,457587.3323,2751143398,0,638461771.5,0 + 07/08 20:00:00,0,286636529.5,0,560302994.2,175320.2019,261641.5153,1573062182,846939523.7,638461771.5,702307948.6 + 07/08 21:00:00,0,251685933.9,0,428071658.2,175464.1189,261856.2917,1574353478,679757592.1,496581377.8,702307948.6 + 07/08 22:00:00,0,166640526.2,0,294640824.9,87735.01731,130932.5601,787203278.5,461281351.2,354700984.2,702307948.6 + 07/08 23:00:00,0,119953433.5,0,227773950,87745.42978,130948.0993,787296704.6,347727383.5,354700984.2,624273732.1 + 07/08 24:00:00,0,29313339.5,0,99191498.39,43878.39441,65482.52554,393699311.8,128504837.9,354700984.2,468205299.1 + 07/09 01:00:00,0,0,0,0,43880.76001,65486.05588,393720537.2,0,212820590.5,234102649.5 + 07/09 02:00:00,0,0,0,0,21939.1972,32741.26277,196849655.9,0,141880393.7,0 + 07/09 03:00:00,0,0,0,0,21938.81269,32740.68894,196846205.9,0,141880393.7,0 + 07/09 04:00:00,0,0,0,0,21936.35745,32737.02482,196824176.1,0,141880393.7,0 + 07/09 05:00:00,0,0,0,0,21933.01486,32732.03646,196794184.7,0,141880393.7,0 + 07/09 06:00:00,0,0,0,0,21929.70243,32727.09311,196764464,0,141880393.7,0 + 07/09 07:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,141880393.7,156068433 + 07/09 08:00:00,0,30138870.28,0,72926043.63,350595.7954,523216.4585,3145724114,103064913.9,567521574.6,390171082.6 + 07/09 09:00:00,0,229987998.1,0,391144028.1,306442.8954,457324.2707,2749561798,621132026.2,567521574.6,390171082.6 + 07/09 10:00:00,0,187836022.4,0,351161369.8,217938.8221,325243.9994,1955458157,538997392.2,283760787.3,0 + 07/09 11:00:00,0,370641849,0,567495037.7,173906.3753,259531.5716,1560376609,938136886.8,283760787.3,0 + 07/09 12:00:00,0,536475523.3,0,652448103.3,86626.96777,129278.9471,777261293.5,1188923627,283760787.3,0 + 07/09 13:00:00,0,695624921,0,800907321.1,86573.475,129199.1164,776781329.1,1496532242,283760787.3,0 + 07/09 14:00:00,0,780282959.9,0,1014625068,86425.08828,128977.6695,775449927.9,1794908028,283760787.3,0 + 07/09 15:00:00,0,773259538.3,0,1185994436,129694.4466,193551.2917,1163684658,1959253975,283760787.3,0 + 07/09 16:00:00,0,715826150.6,0,1195213537,215869.4645,322155.765,1936890826,1911039688,283760787.3,0 + 07/09 17:00:00,0,694089529,0,1263671490,216110.2277,322515.0715,1939051077,1957761019,354700984.2,0 + 07/09 18:00:00,0,555930360.1,0,1123606516,302751.1266,451814.8087,2716437367,1679536876,141880393.7,0 + 07/09 19:00:00,0,724668247.6,0,1358061265,304542.0703,454487.5483,2732506627,2082729512,638461771.5,0 + 07/09 20:00:00,0,943439330.1,0,1426576599,174052.7824,259750.0643,1561690248,2370015929,638461771.5,702307948.6 + 07/09 21:00:00,0,788391952.1,0,1186933311,174499.8512,260417.2536,1565701577,1975325263,496581377.8,702307948.6 + 07/09 22:00:00,0,632180100,0,964819787.9,87480.27323,130552.3892,784917584.9,1596999888,354700984.2,702307948.6 + 07/09 23:00:00,0,549983131,0,844550674,87489.1476,130565.633,784997210.2,1394533805,354700984.2,624273732.1 + 07/09 24:00:00,0,445492105.7,0,691038487.2,43769.7305,65320.35946,392724323.9,1136530593,354700984.2,468205299.1 + 07/10 01:00:00,0,249559476.1,0,398518216.2,43757.46662,65302.05729,392614286.1,648077692.3,212820590.5,234102649.5 + 07/10 02:00:00,0,74789829.14,0,135748528.9,21892.55108,32671.64979,196431123.1,210538358,141880393.7,0 + 07/10 03:00:00,0,19587950.82,0,53383865.25,21909.30813,32696.6574,196581475.9,72971816.07,141880393.7,0 + 07/10 04:00:00,0,0,0,3889143.09,21915.02524,32705.18941,196632772.8,3889143.09,141880393.7,0 + 07/10 05:00:00,0,209911080,0,93467942.33,21917.67211,32709.13951,196656521.8,303379022.3,141880393.7,0 + 07/10 06:00:00,0,502662899.4,0,554883533.1,21872.2869,32641.40826,196249302.6,1057546432,141880393.7,0 + 07/10 07:00:00,0,727153493.5,0,996520284.3,87362.93077,130377.2716,783864728.6,1723673778,141880393.7,156068433 + 07/10 08:00:00,0,1003308588,0,1487016230,348951.4741,520762.5329,3130970425,2490324819,567521574.6,390171082.6 + 07/10 09:00:00,0,917315895,0,1381989037,304642.1953,454636.9712,2733404999,2299304932,567521574.6,390171082.6 + 07/10 10:00:00,0,564298917.3,0,819552451.6,217382.9691,324414.4645,1950470761,1383851369,283760787.3,0 + 07/10 11:00:00,0,552558922.1,0,758921599.8,174219.5529,259998.9466,1563186598,1311480522,283760787.3,0 + 07/10 12:00:00,0,553527308.2,0,725689511.4,87096.21786,129979.2389,781471644.4,1279216820,283760787.3,0 + 07/10 13:00:00,0,555364308.8,0,739502570.7,87109.77647,129999.4733,781593299.2,1294866879,283760787.3,0 + 07/10 14:00:00,0,595459223.4,0,798816093.6,87068.69351,129938.1626,781224681.9,1394275317,283760787.3,0 + 07/10 15:00:00,0,570405660.9,0,778837426.1,130560.9408,194844.4162,1171459285,1349243087,283760787.3,0 + 07/10 16:00:00,0,519460610.9,0,755871640.4,217874.0914,325147.3976,1954877360,1275332251,283760787.3,0 + 07/10 17:00:00,0,463088389.1,0,732966149.3,217906.6272,325195.9529,1955169288,1196054538,354700984.2,0 + 07/10 18:00:00,0,317743140,0,537243994.4,305538.7321,455974.9301,2741449184,854987134.3,141880393.7,0 + 07/10 19:00:00,0,500767428.7,0,790053891,306051.8381,456740.671,2746053033,1290821320,638461771.5,0 + 07/10 20:00:00,0,664233540.9,0,1003035647,174995.7649,261157.3372,1570151167,1667269188,638461771.5,702307948.6 + 07/10 21:00:00,0,499275288.2,0,764821216.4,175012.9554,261182.9916,1570305409,1264096505,496581377.8,702307948.6 + 07/10 22:00:00,0,363191216.5,0,570912120.3,87555.11296,130664.0773,785589085.1,934103336.8,354700984.2,702307948.6 + 07/10 23:00:00,0,301865794.6,0,482513604.1,87523.24903,130616.5248,785303185.7,784379398.6,354700984.2,624273732.1 + 07/10 24:00:00,0,183362527.1,0,304340391.6,43824.47443,65402.05732,393215514.3,487702918.8,354700984.2,468205299.1 + 07/11 01:00:00,0,0,0,5619227.749,43849.52958,65439.44871,393440321.8,5619227.749,212820590.5,234102649.5 + 07/11 02:00:00,0,0,0,0,21923.67107,32718.09213,196710347.5,0,141880393.7,0 + 07/11 03:00:00,0,0,0,0,21921.37753,32714.66933,196689768.7,0,141880393.7,0 + 07/11 04:00:00,0,0,0,0,21925.82312,32721.30377,196729656.8,0,141880393.7,0 + 07/11 05:00:00,0,0,0,0,21925.82312,32721.30377,196729656.8,0,141880393.7,0 + 07/11 06:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 07/11 07:00:00,0,23529577.09,0,44132153.33,87631.16293,130777.5716,786271444.2,67661730.42,141880393.7,156068433 + 07/11 08:00:00,0,618789138,0,979608981,349991.5298,522314.6744,3140302335,1598398119,567521574.6,390171082.6 + 07/11 09:00:00,0,558156894.4,0,939445598.3,306149.408,456886.2808,2746928480,1497602493,567521574.6,390171082.6 + 07/11 10:00:00,0,243096509.5,0,447931330,218241.9515,325696.3787,1958177989,691027839.5,283760787.3,0 + 07/11 11:00:00,0,214969259,0,318641071.5,174960.5465,261104.7785,1569835170,533610330.4,283760787.3,0 + 07/11 12:00:00,0,117148808.7,0,123048630.2,87570.20432,130686.5991,785724492.5,240197438.9,283760787.3,0 + 07/11 13:00:00,0,211631201.2,0,203462996.9,87341.43283,130345.1889,783671838.1,415094198.2,283760787.3,0 + 07/11 14:00:00,0,291380843.8,0,366003191.4,87213.34314,130154.0324,782522552.1,657384035.2,283760787.3,0 + 07/11 15:00:00,0,246915479.4,0,388917227.8,131091.2102,195635.771,1176217132,635832707.2,283760787.3,0 + 07/11 16:00:00,0,175570604.8,0,363678830.5,217906.6272,325195.9529,1955169288,539249435.2,283760787.3,0 + 07/11 17:00:00,0,182609223.2,0,495313034.8,218094.6713,325476.5831,1956856516,677922258,354700984.2,0 + 07/11 18:00:00,0,81688385.36,0,405083325,305695.0149,456208.161,2742851433,486771710.4,141880393.7,0 + 07/11 19:00:00,0,197550298.2,0,596691918.2,306546.5707,457478.9921,2750492026,794242216.4,638461771.5,0 + 07/11 20:00:00,0,330789191.9,0,588313239.4,175444.6696,261827.2663,1574178970,919102431.2,638461771.5,702307948.6 + 07/11 21:00:00,0,240627335.4,0,414387236.6,175481.0148,261881.5066,1574505077,655014572,496581377.8,702307948.6 + 07/11 22:00:00,0,142901020,0,267708126,87764.32739,130976.3014,787466263.5,410609146,354700984.2,702307948.6 + 07/11 23:00:00,0,99593307.92,0,201182560.5,87762.34752,130973.3467,787448499.2,300775868.5,354700984.2,624273732.1 + 07/11 24:00:00,0,35711557.01,0,99134665,43882.07991,65488.02565,393732380,134846222,354700984.2,468205299.1 + 07/12 01:00:00,0,0,0,0,43878.12762,65482.12739,393696918,0,212820590.5,234102649.5 + 07/12 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 07/12 03:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 07/12 04:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 07/12 05:00:00,0,0,0,0,21932.74186,32731.62905,196791735.3,0,141880393.7,0 + 07/12 06:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 07/12 07:00:00,0,52927452.7,0,5215542.163,87732.05943,130928.1458,787176738.9,58142994.86,141880393.7,156068433 + 07/12 08:00:00,0,424509844.4,0,661234898.4,350760.6717,523462.5139,3147203468,1085744743,567521574.6,390171082.6 + 07/12 09:00:00,0,408866359.3,0,655721081.7,306302.2663,457114.401,2748300003,1064587441,567521574.6,390171082.6 + 07/12 10:00:00,0,240014582.5,0,399121845.1,218560.2551,326171.4034,1961033971,639136427.7,283760787.3,0 + 07/12 11:00:00,0,303726018,0,443703007.6,174475.737,260381.2665,1565485213,747429025.6,283760787.3,0 + 07/12 12:00:00,0,393136608.5,0,458941306.5,87225.67432,130172.4351,782633193.8,852077915.1,283760787.3,0 + 07/12 13:00:00,0,483627416.4,0,539116969.3,87068.69351,129938.1626,781224681.9,1022744386,283760787.3,0 + 07/12 14:00:00,0,525623699.2,0,673088823.5,86968.09767,129788.037,780322084.8,1198712523,283760787.3,0 + 07/12 15:00:00,0,496661090.7,0,744107566.8,130644.3268,194968.8584,1172207467,1240768657,283760787.3,0 + 07/12 16:00:00,0,410251833.2,0,728822075.6,217706.3087,324897.0049,1953371929,1139073909,283760787.3,0 + 07/12 17:00:00,0,370953786.7,0,763780641.4,217774.4412,324998.6833,1953983248,1134734428,354700984.2,0 + 07/12 18:00:00,0,265468009,0,701508630.8,305114.3509,455341.5991,2737641420,966976639.8,141880393.7,0 + 07/12 19:00:00,0,395356266.6,0,907851267.9,305843.5642,456429.8506,2744184293,1303207535,638461771.5,0 + 07/12 20:00:00,0,546833313.2,0,883195643.4,175155.0792,261395.0921,1571580617,1430028957,638461771.5,702307948.6 + 07/12 21:00:00,0,421805532.2,0,661730583.3,175341.3769,261673.116,1573252175,1083536115,496581377.8,702307948.6 + 07/12 22:00:00,0,315066574.3,0,505480917.8,87722.33481,130913.6332,787089484.8,820547492.1,354700984.2,702307948.6 + 07/12 23:00:00,0,249819771.4,0,409514904.2,87732.05943,130928.1458,787176738.9,659334675.6,354700984.2,624273732.1 + 07/12 24:00:00,0,154541008.9,0,268306330.2,43874.89213,65477.29886,393667887.6,422847339,354700984.2,468205299.1 + 07/13 01:00:00,0,0,0,12399409.1,43872.71489,65474.04963,393648352.3,12399409.1,212820590.5,234102649.5 + 07/13 02:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 07/13 03:00:00,0,0,0,0,21941.05901,32744.04127,196866361,0,141880393.7,0 + 07/13 04:00:00,0,0,0,0,21936.14788,32736.71206,196822295.8,0,141880393.7,0 + 07/13 05:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 07/13 06:00:00,0,37647470.85,0,0,21939.1972,32741.26277,196849655.9,37647470.85,141880393.7,0 + 07/13 07:00:00,0,373417897.2,0,436355454.1,21921.37753,32714.66933,196689768.7,809773351.3,141880393.7,156068433 + 07/13 08:00:00,0,655978770.3,0,996209196.3,87598.70293,130729.1294,785980196.5,1652187967,567521574.6,390171082.6 + 07/13 09:00:00,0,611489162.6,0,960910793.1,218560.2551,326171.4034,1961033971,1572399956,567521574.6,390171082.6 + 07/13 10:00:00,0,344783567.5,0,553420541,217970.6757,325291.5365,1955743964,898204108.5,283760787.3,0 + 07/13 11:00:00,0,491186513.7,0,710925748,217307.4115,324301.7051,1949792820,1202112262,283760787.3,0 + 07/13 12:00:00,0,688377282.9,0,850442104.7,130018.919,194035.5225,1166595989,1538819388,283760787.3,0 + 07/13 13:00:00,0,784242507.6,0,948921778.5,129750.4828,193634.918,1164187443,1733164286,283760787.3,0 + 07/13 14:00:00,0,808267549.6,0,1083551790,129666.1366,193509.0429,1163430646,1891819339,283760787.3,0 + 07/13 15:00:00,0,782047239.6,0,1168400602,129492.2074,193249.4772,1161870065,1950447842,283760787.3,0 + 07/13 16:00:00,0,718448784.2,0,1186685042,302487.809,451421.8431,2714074748,1905133826,283760787.3,0 + 07/13 17:00:00,0,646442837.4,0,1117336448,389167.6863,580779.7506,3491810773,1763779286,354700984.2,0 + 07/13 18:00:00,0,520625575.2,0,997868166.5,303255.8775,452568.0807,2720966250,1518493742,141880393.7,0 + 07/13 19:00:00,0,633624947.6,0,1233938291,304491.2991,454411.7792,2732051082,1867563239,638461771.5,0 + 07/13 20:00:00,0,794747473.3,0,1209764274,261713.6056,390571.8997,2348227819,2004511747,638461771.5,702307948.6 + 07/13 21:00:00,0,646465277.4,0,972825543.1,218433.6808,325982.5086,1959898282,1619290820,496581377.8,702307948.6 + 07/13 22:00:00,0,551266491.6,0,839006733.2,174788.2803,260847.6946,1568289510,1390273225,354700984.2,702307948.6 + 07/13 23:00:00,0,496990666.8,0,760644688.3,131121.3802,195680.7957,1176487833,1257635355,354700984.2,624273732.1 + 07/13 24:00:00,0,398879413.9,0,615596340,87497.88244,130578.6686,785075583.7,1014475754,354700984.2,468205299.1 + 07/14 01:00:00,0,180875114.5,0,292679798.5,43806.05454,65374.56815,393050241.7,473554913.1,212820590.5,234102649.5 + 07/14 02:00:00,0,14415789.71,0,43505081.08,21901.36908,32684.80945,196510242.7,57920870.79,141880393.7,0 + 07/14 03:00:00,0,0,0,5095371.713,21916.36633,32707.1908,196644805.7,5095371.713,141880393.7,0 + 07/14 04:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 07/14 05:00:00,0,120615227.8,0,41499228.31,21907.79073,32694.39289,196567861,162114456.1,141880393.7,0 + 07/14 06:00:00,0,349452990.3,0,364455556.1,21901.36908,32684.80945,196510242.7,713908546.4,141880393.7,0 + 07/14 07:00:00,0,508313409.6,0,682575831.8,21858.45292,32620.76292,196125177,1190889241,141880393.7,156068433 + 07/14 08:00:00,0,927884284.6,0,1360105111,21784.12149,32509.83339,195458237.6,2287989395,567521574.6,390171082.6 + 07/14 09:00:00,0,911683822,0,1366197760,87026.3912,129875.0321,780845124,2277881582,567521574.6,390171082.6 + 07/14 10:00:00,0,554457354.5,0,779040210.3,130874.8884,195312.9402,1174276183,1333497565,283760787.3,0 + 07/14 11:00:00,0,357098928.7,0,485965835.3,130995.715,195493.2574,1175360301,843064764,283760787.3,0 + 07/14 12:00:00,0,261901428.3,0,352413194.3,87341.43283,130345.1889,783671838.1,614314622.5,283760787.3,0 + 07/14 13:00:00,0,120766283.7,0,178729481.2,87213.34314,130154.0324,782522552.1,299495764.9,283760787.3,0 + 07/14 14:00:00,0,166880429,0,247892812.5,130763.2932,195146.3996,1173274894,414773241.5,283760787.3,0 + 07/14 15:00:00,0,191110305.6,0,287822245.7,174109.4561,259834.6421,1562198753,478932551.4,283760787.3,0 + 07/14 16:00:00,0,236780123.7,0,358484874.2,217230.513,324186.9446,1949102847,595264997.9,283760787.3,0 + 07/14 17:00:00,0,366160301.7,0,600245251.2,260487.2465,388741.7258,2337224300,966405552.8,354700984.2,0 + 07/14 18:00:00,0,374181522.9,0,863788535.6,303556.4181,453016.5967,2723662853,1237970058,141880393.7,0 + 07/14 19:00:00,0,645893571.2,0,1224273963,173753.2495,259303.0523,1559002686,1870167534,638461771.5,0 + 07/14 20:00:00,0,948339877,0,1406881002,130407.2149,194615.0011,1170079978,2355220879,638461771.5,702307948.6 + 07/14 21:00:00,0,773333415.9,0,1163157160,87040.62723,129896.2775,780972856.9,1936490575,496581377.8,702307948.6 + 07/14 22:00:00,0,653089160,0,1000128752,87123.19921,130019.5049,781713734.9,1653217912,354700984.2,702307948.6 + 07/14 23:00:00,0,604350902.7,0,929440553.4,87082.52349,129958.8019,781348771.6,1533791456,354700984.2,624273732.1 + 07/14 24:00:00,0,503070164.9,0,777519401.6,87175.52883,130097.5997,782183262.8,1280589567,354700984.2,468205299.1 + 07/15 01:00:00,0,255160422.6,0,402785379.2,43654.07521,65147.7597,391686605.7,657945801.8,212820590.5,234102649.5 + 07/15 02:00:00,0,66891744.8,0,133070384.3,21821.31827,32565.34452,195791986,199962129.1,141880393.7,0 + 07/15 03:00:00,0,49405445.91,0,111042372.7,21832.61916,32582.20957,195893383.4,160447818.6,141880393.7,0 + 07/15 04:00:00,0,38191108.71,0,97857514.41,21832.61916,32582.20957,195893383.4,136048623.1,141880393.7,0 + 07/15 05:00:00,0,80687770.83,0,136475163.2,21827.03761,32573.87985,195843302.9,217162934.1,141880393.7,0 + 07/15 06:00:00,0,132015339.6,0,219367421,21809.46713,32547.65831,195685651.6,351382760.6,141880393.7,0 + 07/15 07:00:00,0,344868624.5,0,514111735.6,87200.87508,130135.4256,782410682.3,858980360.1,141880393.7,156068433 + 07/15 08:00:00,0,769767405.3,0,1138537558,348439.1059,519997.8932,3126373197,1908304963,567521574.6,390171082.6 + 07/15 09:00:00,0,621400844,0,919109634.6,304836.7625,454927.3362,2735150755,1540510479,567521574.6,390171082.6 + 07/15 10:00:00,0,248792860.6,0,357070516.9,217530.0502,324633.963,1951790448,605863377.6,283760787.3,0 + 07/15 11:00:00,0,349502262.9,0,495509408.1,173690.1262,259208.8493,1558436311,845011671,283760787.3,0 + 07/15 12:00:00,0,486252189.4,0,661265801.3,86661.97367,129331.1886,777575384.3,1147517991,283760787.3,0 + 07/15 13:00:00,0,559301338.1,0,774572953,86462.96442,129034.1944,775789771.9,1333874291,283760787.3,0 + 07/15 14:00:00,0,637959527.3,0,889708109.5,86425.08828,128977.6695,775449927.9,1527667637,283760787.3,0 + 07/15 15:00:00,0,663489100.5,0,935527005.5,129666.1366,193509.0429,1163430646,1599016106,283760787.3,0 + 07/15 16:00:00,0,628461296.3,0,904412981,215869.4645,322155.765,1936890826,1532874277,283760787.3,0 + 07/15 17:00:00,0,641319936.1,0,971655356.7,216110.2277,322515.0715,1939051077,1612975293,354700984.2,0 + 07/15 18:00:00,0,492016924.8,0,711240219.3,302815.8197,451911.3545,2717017827,1203257144,141880393.7,0 + 07/15 19:00:00,0,820008933.3,0,1205486357,303132.4375,452383.8634,2719858683,2025495290,638461771.5,0 + 07/15 20:00:00,0,1059416315,0,1572253166,173815.3037,259395.6598,1559559469,2631669481,638461771.5,702307948.6 + 07/15 21:00:00,0,858169048.4,0,1280276072,173906.3753,259531.5716,1560376609,2138445120,496581377.8,702307948.6 + 07/15 22:00:00,0,705310493.4,0,1061063696,87109.77647,129999.4733,781593299.2,1766374190,354700984.2,702307948.6 + 07/15 23:00:00,0,563199172.8,0,856091762.4,87308.15043,130295.5194,783373211.4,1419290935,354700984.2,624273732.1 + 07/15 24:00:00,0,401901412.1,0,620634086.1,43697.07006,65211.92366,392072377.4,1022535498,354700984.2,468205299.1 + 07/16 01:00:00,0,188416168.2,0,300452412.3,43702.13308,65219.47953,392117805.4,488868580.5,212820590.5,234102649.5 + 07/16 02:00:00,0,26618772.34,0,71416410.07,21845.96887,32602.13219,196013163.8,98035182.42,141880393.7,0 + 07/16 03:00:00,0,7051737.813,0,41931766.48,21856.02551,32617.14034,196103397.1,48983504.29,141880393.7,0 + 07/16 04:00:00,0,6055638.591,0,47308900.25,21845.96887,32602.13219,196013163.8,53364538.84,141880393.7,0 + 07/16 05:00:00,0,43804347.81,0,88179708.45,21840.73269,32594.3179,195966182.1,131984056.3,141880393.7,0 + 07/16 06:00:00,0,197174035,0,262307363.4,21832.61916,32582.20957,195893383.4,459481398.4,141880393.7,0 + 07/16 07:00:00,0,530210021.3,0,740121872.3,87352.25091,130361.3334,783768903.4,1270331894,141880393.7,156068433 + 07/16 08:00:00,0,670770382.5,0,1009336731,349047.3819,520905.6623,3131830959,1680107114,567521574.6,390171082.6 + 07/16 09:00:00,0,637449282.5,0,953514163.6,304788.8322,454855.8068,2734720701,1590963446,567521574.6,390171082.6 + 07/16 10:00:00,0,386975819.1,0,594221508.3,217191.5619,324128.8153,1948753358,981197327.5,283760787.3,0 + 07/16 11:00:00,0,485971191,0,711498268.7,173392.9065,258765.2894,1555769505,1197469460,283760787.3,0 + 07/16 12:00:00,0,606835583.9,0,750175366.3,86591.43688,129225.9221,776942492.3,1357010950,283760787.3,0 + 07/16 13:00:00,0,720133759,0,852064199.6,86481.70807,129062.1668,775957949.5,1572197959,283760787.3,0 + 07/16 14:00:00,0,775396935.6,0,1008177162,86481.70807,129062.1668,775957949.5,1783574098,283760787.3,0 + 07/16 15:00:00,0,755254562.8,0,1101468577,129913.9018,193878.7986,1165653721,1856723139,283760787.3,0 + 07/16 16:00:00,0,533502530.8,0,871312464.6,217382.9691,324414.4645,1950470761,1404814995,283760787.3,0 + 07/16 17:00:00,0,283884323.1,0,461359779.8,218326.1916,325822.0957,1958933834,745244102.8,354700984.2,0 + 07/16 18:00:00,0,92646893.81,0,195590141.9,305914.9316,456536.3567,2744824638,288237035.7,141880393.7,0 + 07/16 19:00:00,0,328170674.9,0,598646334.3,306149.408,456886.2808,2746928480,926817009.3,638461771.5,0 + 07/16 20:00:00,0,581411825.2,0,907772457.4,175094.714,261305.0053,1571038990,1489184283,638461771.5,702307948.6 + 07/16 21:00:00,0,486581223.7,0,751616974.1,175125.4575,261350.8857,1571314836,1238198198,496581377.8,702307948.6 + 07/16 22:00:00,0,380997700,0,595279418.3,87624.95245,130768.3033,786215720.6,976277118.3,354700984.2,702307948.6 + 07/16 23:00:00,0,307103099.3,0,487272157.5,87643.16119,130795.4773,786379098.7,794375256.8,354700984.2,624273732.1 + 07/16 24:00:00,0,203829471.1,0,333560044,43837.88517,65422.07102,393335842.3,537389515.1,354700984.2,468205299.1 + 07/17 01:00:00,0,14803103.81,0,50272227.97,43845.08396,65432.81423,393400433.5,65075331.79,212820590.5,234102649.5 + 07/17 02:00:00,0,0,0,0,21923.67107,32718.09213,196710347.5,0,141880393.7,0 + 07/17 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 07/17 04:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 07/17 05:00:00,0,0,0,0,21933.01486,32732.03646,196794184.7,0,141880393.7,0 + 07/17 06:00:00,0,132869580.9,0,31155095.84,21890.68219,32668.86072,196414354.5,164024676.8,141880393.7,0 + 07/17 07:00:00,0,482810133.8,0,681134951,87539.461,130640.7189,785448647.7,1163945085,141880393.7,156068433 + 07/17 08:00:00,0,798650275.6,0,1210854233,349493.8893,521572.0138,3135837251,2009504509,567521574.6,390171082.6 + 07/17 09:00:00,0,729322430.9,0,1162686601,305374.7396,455730.1938,2739977760,1892009032,567521574.6,390171082.6 + 07/17 10:00:00,0,409919755.9,0,687769221.8,217774.4412,324998.6833,1953983248,1097688978,283760787.3,0 + 07/17 11:00:00,0,511827225,0,742663075.8,173876.2865,259486.6682,1560106637,1254490301,283760787.3,0 + 07/17 12:00:00,0,602045944.4,0,731086862.2,86796.7209,129532.2805,778784405.1,1333132807,283760787.3,0 + 07/17 13:00:00,0,697438086.3,0,834367259.3,86591.43688,129225.9221,776942492.3,1531805346,283760787.3,0 + 07/17 14:00:00,0,768211301.9,0,1028808745,86444.0911,129006.0286,775620430.8,1797020047,283760787.3,0 + 07/17 15:00:00,0,767386479,0,1153296978,129750.4828,193634.918,1164187443,1920683457,283760787.3,0 + 07/17 16:00:00,0,690674228.6,0,1166040458,216014.8904,322372.7935,1938195662,1856714687,283760787.3,0 + 07/17 17:00:00,0,671798524.5,0,1255594757,215918.2618,322228.5885,1937328661,1927393281,354700984.2,0 + 07/17 18:00:00,0,511085359.8,0,1106480933,303255.8775,452568.0807,2720966250,1617566293,141880393.7,0 + 07/17 19:00:00,0,660924658.4,0,1294220836,304491.2991,454411.7792,2732051082,1955145494,638461771.5,0 + 07/17 20:00:00,0,831295536.1,0,1247642840,174593.5612,260557.1029,1566542391,2078938376,638461771.5,702307948.6 + 07/17 21:00:00,0,671508954.6,0,1014284846,174867.6233,260966.1034,1569001416,1685793801,496581377.8,702307948.6 + 07/17 22:00:00,0,572644519.3,0,874990541.6,87373.47233,130393.0035,783959312.8,1447635061,354700984.2,702307948.6 + 07/17 23:00:00,0,478139031.7,0,737061786.1,87547.35702,130652.5027,785519494.8,1215200818,354700984.2,624273732.1 + 07/17 24:00:00,0,329899726.7,0,518507141.6,43821.5806,65397.73867,393189549.3,848406868.2,354700984.2,468205299.1 + 07/18 01:00:00,0,150333598,0,251146677.2,43785.10216,65343.29957,392862246.2,401480275.2,212820590.5,234102649.5 + 07/18 02:00:00,0,4026404.78,0,15624047.86,21913.64887,32703.13536,196620423.2,19650452.64,141880393.7,0 + 07/18 03:00:00,0,0,0,0,21907.79073,32694.39289,196567861,0,141880393.7,0 + 07/18 04:00:00,0,0,0,0,21920.17773,32712.87879,196679003.5,0,141880393.7,0 + 07/18 05:00:00,0,2350425.812,0,0,21923.67107,32718.09213,196710347.5,2350425.812,141880393.7,0 + 07/18 06:00:00,0,319942856.2,0,249203253.6,21906.23811,32692.07582,196553930.1,569146109.7,141880393.7,0 + 07/18 07:00:00,0,504990335.8,0,675155906.3,87531.42498,130628.7263,785376544.4,1180146242,141880393.7,156068433 + 07/18 08:00:00,0,830376497.6,0,1267863484,349409.0036,521445.3334,3135075613,2098239981,567521574.6,390171082.6 + 07/18 09:00:00,0,800587850.4,0,1277957303,304836.7625,454927.3362,2735150755,2078545153,567521574.6,390171082.6 + 07/18 10:00:00,0,542096279.5,0,868680193.6,216991.8023,323830.7013,1946961013,1410776473,283760787.3,0 + 07/18 11:00:00,0,641067523.4,0,924004484.1,173392.9065,258765.2894,1555769505,1565072008,283760787.3,0 + 07/18 12:00:00,0,783894990.4,0,981503192.3,86328.13827,128832.9848,774580043,1765398183,283760787.3,0 + 07/18 13:00:00,0,913981394.1,0,1122778335,86103.58505,128497.8697,772565237.1,2036759729,283760787.3,0 + 07/18 14:00:00,0,921394487.5,0,1230329836,85996.45062,128337.9861,771603972.4,2151724324,283760787.3,0 + 07/18 15:00:00,0,864897731.6,0,1266527855,129027.1931,192555.5067,1157697719,2131425586,283760787.3,0 + 07/18 16:00:00,0,846389987.4,0,1376267078,215045.3218,320925.8444,1929496198,2222657065,283760787.3,0 + 07/18 17:00:00,0,835111104.4,0,1473853295,215467.5546,321555.9693,1933284686,2308964399,354700984.2,0 + 07/18 18:00:00,0,673691840,0,1211357784,302880.0572,452007.2202,2717594199,1885049624,141880393.7,0 + 07/18 19:00:00,0,807613309,0,1446654768,304836.7625,454927.3362,2735150755,2254268077,638461771.5,0 + 07/18 20:00:00,0,971430373.2,0,1436704922,174426.6863,260308.0649,1565045104,2408135295,638461771.5,702307948.6 + 07/18 21:00:00,0,803165215.3,0,1191059350,174638.765,260624.5635,1566947982,1994224565,496581377.8,702307948.6 + 07/18 22:00:00,0,666463231.2,0,997354650,87414.2535,130453.8638,784325222.2,1663817881,354700984.2,702307948.6 + 07/18 23:00:00,0,581031680,0,874216588.7,87489.1476,130565.633,784997210.2,1455248269,354700984.2,624273732.1 + 07/18 24:00:00,0,478085935.4,0,722752881.5,43740.13662,65276.19462,392458792.5,1200838817,354700984.2,468205299.1 + 07/19 01:00:00,0,275353056.2,0,422081774.9,43744.5738,65282.81651,392498605.1,697434831,212820590.5,234102649.5 + 07/19 02:00:00,0,89731902.17,0,146687229.2,21884.86525,32660.17973,196362161.9,236419131.4,141880393.7,0 + 07/19 03:00:00,0,52264987.27,0,91466250.86,21890.68219,32668.86072,196414354.5,143731238.1,141880393.7,0 + 07/19 04:00:00,0,34252614.88,0,65743484,21890.68219,32668.86072,196414354.5,99996098.89,141880393.7,0 + 07/19 05:00:00,0,36973595.38,0,60361876.18,21892.55108,32671.64979,196431123.1,97335471.56,141880393.7,0 + 07/19 06:00:00,0,121002030.9,0,160254056,21882.85624,32657.18156,196344136.1,281256086.9,141880393.7,0 + 07/19 07:00:00,0,239232387,0,346449113.4,87471.25944,130538.9374,784836708.6,585681500.4,141880393.7,156068433 + 07/19 08:00:00,0,603156999.9,0,879275286.6,349617.0647,521755.8362,3136942443,1482432286,567521574.6,390171082.6 + 07/19 09:00:00,0,681755337.3,0,990760522.6,305538.7321,455974.9301,2741449184,1672515860,567521574.6,390171082.6 + 07/19 10:00:00,0,447564086.9,0,677481104.3,217420.2442,324470.0925,1950805212,1125045191,283760787.3,0 + 07/19 11:00:00,0,469684933.7,0,666637894.2,173845.9292,259441.3641,1559834256,1136322828,283760787.3,0 + 07/19 12:00:00,0,507395536,0,652937328,86845.06308,129604.4246,779218155.7,1160332864,283760787.3,0 + 07/19 13:00:00,0,511499657.9,0,650314145,87012.02009,129853.5852,780716179.1,1161813803,283760787.3,0 + 07/19 14:00:00,0,451644747.1,0,608265454.2,87054.72804,129917.321,781099376.6,1059910201,283760787.3,0 + 07/19 15:00:00,0,529414379.5,0,725716894.3,130384.4469,194581.023,1169875692,1255131274,283760787.3,0 + 07/19 16:00:00,0,502103802.1,0,700585225.5,217530.0502,324633.963,1951790448,1202689028,283760787.3,0 + 07/19 17:00:00,0,409687351.4,0,564889869.1,217636.8201,324793.3026,1952748442,974577220.5,354700984.2,0 + 07/19 18:00:00,0,292920829.6,0,401958564.9,304592.3692,454562.6125,2732957934,694879394.4,141880393.7,0 + 07/19 19:00:00,0,564858200,0,814166717,304230.3761,454022.3871,2729709948,1379024917,638461771.5,0 + 07/19 20:00:00,0,853434788.4,0,1254828163,174052.7824,259750.0643,1561690248,2108262952,638461771.5,702307948.6 + 07/19 21:00:00,0,740631214.6,0,1093299234,174272.9719,260078.6671,1563665900,1833930448,496581377.8,702307948.6 + 07/19 22:00:00,0,613176640.6,0,911359479,87200.87508,130135.4256,782410682.3,1524536120,354700984.2,702307948.6 + 07/19 23:00:00,0,513023799.6,0,780198425.7,87285.27307,130261.3781,783167944.1,1293222225,354700984.2,624273732.1 + 07/19 24:00:00,0,403035476.3,0,619559293.2,43665.23833,65164.41913,391786766.9,1022594770,354700984.2,468205299.1 + 07/20 01:00:00,0,219717091.2,0,342859690.3,43670.71642,65172.59443,391835919.1,562576781.4,212820590.5,234102649.5 + 07/20 02:00:00,0,48584312.65,0,96489516.37,21845.96887,32602.13219,196013163.8,145073829,141880393.7,0 + 07/20 03:00:00,0,16421316.85,0,53187623.53,21858.45292,32620.76292,196125177,69608940.38,141880393.7,0 + 07/20 04:00:00,0,36535.54264,0,21817913.01,21863.20347,32627.85248,196167801.4,21854448.55,141880393.7,0 + 07/20 05:00:00,0,13977663.87,0,25239532.05,21870.06831,32638.09731,196229396.2,39217195.92,141880393.7,0 + 07/20 06:00:00,0,129173150,0,155478994,21865.52657,32631.31939,196188645.5,284652144.1,141880393.7,0 + 07/20 07:00:00,0,404118881.6,0,580559293.5,21827.03761,32573.87985,195843302.9,984678175.1,141880393.7,156068433 + 07/20 08:00:00,0,849609749.6,0,1279758129,87175.52883,130097.5997,782183262.8,2129367878,567521574.6,390171082.6 + 07/20 09:00:00,0,724131775.5,0,1116774721,217671.7338,324845.4065,1953061705,1840906496,567521574.6,390171082.6 + 07/20 10:00:00,0,486672710,0,747735004,217382.9691,324414.4645,1950470761,1234407714,283760787.3,0 + 07/20 11:00:00,0,555562303.3,0,789018542.7,217112.6577,324011.0616,1948045389,1344580846,283760787.3,0 + 07/20 12:00:00,0,710007454.1,0,889902924,129966.8046,193957.7489,1166128393,1599910378,283760787.3,0 + 07/20 13:00:00,0,810677016.9,0,992998140.1,129805.7388,193717.3801,1164683228,1803675157,283760787.3,0 + 07/20 14:00:00,0,835817317.5,0,1125154424,129608.9342,193423.6761,1162917397,1960971742,283760787.3,0 + 07/20 15:00:00,0,828693459.7,0,1210915104,130018.919,194035.5225,1166595989,2039608563,283760787.3,0 + 07/20 16:00:00,0,769082681.7,0,1223420575,303194.3872,452476.3148,2720414527,1992503256,283760787.3,0 + 07/20 17:00:00,0,752367663.9,0,1308957078,389251.4484,580904.7541,3492562329,2061324742,354700984.2,0 + 07/20 18:00:00,0,563985990.1,0,1117242571,303731.1931,453277.4245,2725231024,1681228561,141880393.7,0 + 07/20 19:00:00,0,683665673.8,0,1206452309,303957.7208,453615.4862,2727263545,1890117982,638461771.5,0 + 07/20 20:00:00,0,878145822.1,0,1332269075,261677.023,390517.3052,2347899581,2210414897,638461771.5,702307948.6 + 07/20 21:00:00,0,783717952,0,1173052549,217420.2442,324470.0925,1950805212,1956770501,496581377.8,702307948.6 + 07/20 22:00:00,0,658486703.7,0,992124374.3,174570.5461,260522.7561,1566335888,1650611078,354700984.2,702307948.6 + 07/20 23:00:00,0,558324717.7,0,847748488.9,130979.0737,195468.4226,1175210987,1406073207,354700984.2,624273732.1 + 07/20 24:00:00,0,424583881.4,0,649441273.7,87497.88244,130578.6686,785075583.7,1074025155,354700984.2,468205299.1 + 07/21 01:00:00,0,212540966.6,0,333062053.3,43744.5738,65282.81651,392498605.1,545603019.9,212820590.5,234102649.5 + 07/21 02:00:00,0,45130719.26,0,82050969.02,21886.83925,32663.12566,196379873.7,127181688.3,141880393.7,0 + 07/21 03:00:00,0,6140797.035,0,19761281.29,21901.36908,32684.80945,196510242.7,25902078.32,141880393.7,0 + 07/21 04:00:00,0,0,0,0,21920.17773,32712.87879,196679003.5,0,141880393.7,0 + 07/21 05:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 07/21 06:00:00,0,298230258.7,0,237037062.7,21894.3849,32674.38651,196447577.1,535267321.4,141880393.7,0 + 07/21 07:00:00,0,581772005.6,0,809933870.7,21874.47061,32644.66715,196268895.9,1391705876,141880393.7,156068433 + 07/21 08:00:00,0,916614868.6,0,1381350647,21815.46137,32556.60389,195739434.9,2297965516,567521574.6,390171082.6 + 07/21 09:00:00,0,925159940,0,1467649548,87082.52349,129958.8019,781348771.6,2392809488,567521574.6,390171082.6 + 07/21 10:00:00,0,581312727.6,0,934149144.5,130361.4778,194546.7448,1169669601,1515461872,283760787.3,0 + 07/21 11:00:00,0,636014943.4,0,907493049.8,130267.5946,194406.6369,1168827234,1543507993,283760787.3,0 + 07/21 12:00:00,0,714319943.9,0,882969859.9,86713.49525,129408.0776,778037662.2,1597289804,283760787.3,0 + 07/21 13:00:00,0,788177450.3,0,952349790.4,86591.43688,129225.9221,776942492.3,1740527241,283760787.3,0 + 07/21 14:00:00,0,794539454.3,0,1045048191,129805.7388,193717.3801,1164683228,1839587645,283760787.3,0 + 07/21 15:00:00,0,774435892,0,1121293341,173146.95,258398.2328,1553562658,1895729233,283760787.3,0 + 07/21 16:00:00,0,580623546.3,0,864336686.7,216909.5704,323707.9815,1946223187,1444960233,283760787.3,0 + 07/21 17:00:00,0,422121656.2,0,656479992.3,261206.0805,389814.4877,2343674046,1078601649,354700984.2,0 + 07/21 18:00:00,0,280193221.7,0,579785891.1,304740.4273,454783.569,2734286387,859979112.8,141880393.7,0 + 07/21 19:00:00,0,471285746.4,0,952389734.9,174299.2731,260117.9181,1563901888,1423675481,638461771.5,0 + 07/21 20:00:00,0,700347229.5,0,1098520265,131028.3764,195542,1175653355,1798867494,638461771.5,702307948.6 + 07/21 21:00:00,0,602029994.9,0,929294351.9,87352.25091,130361.3334,783768903.4,1531324347,496581377.8,702307948.6 + 07/21 22:00:00,0,509003854.1,0,790107644.6,87424.10203,130468.5614,784413588.3,1299111499,354700984.2,702307948.6 + 07/21 23:00:00,0,436228120.4,0,681187750.7,87489.1476,130565.633,784997210.2,1117415871,354700984.2,624273732.1 + 07/21 24:00:00,0,354546044.2,0,557948965.5,87452.81389,130511.4099,784671205.7,912495009.6,354700984.2,468205299.1 + 07/22 01:00:00,0,172908417.1,0,281994612.6,43744.5738,65282.81651,392498605.1,454903029.6,212820590.5,234102649.5 + 07/22 02:00:00,0,13900794.67,0,43401163.68,21886.83925,32663.12566,196379873.7,57301958.35,141880393.7,0 + 07/22 03:00:00,0,0,0,1317511.076,21904.65029,32689.7062,196539683.4,1317511.076,141880393.7,0 + 07/22 04:00:00,0,0,0,0,21904.65029,32689.7062,196539683.4,0,141880393.7,0 + 07/22 05:00:00,0,0,0,0,21907.79073,32694.39289,196567861,0,141880393.7,0 + 07/22 06:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 07/22 07:00:00,0,223149324.6,0,334780192.8,87471.25944,130538.9374,784836708.6,557929517.4,141880393.7,156068433 + 07/22 08:00:00,0,705195457,0,1093030081,349493.8893,521572.0138,3135837251,1798225538,567521574.6,390171082.6 + 07/22 09:00:00,0,515140330.4,0,786804494.5,305578.5265,456034.3179,2741806240,1301944825,567521574.6,390171082.6 + 07/22 10:00:00,0,316978299.2,0,476715884.9,217420.2442,324470.0925,1950805212,793694184,283760787.3,0 + 07/22 11:00:00,0,452315773.8,0,655379172.8,173845.9292,259441.3641,1559834256,1107694947,283760787.3,0 + 07/22 12:00:00,0,604272508.5,0,715846150.1,86763.82816,129483.1926,778489274.7,1320118659,283760787.3,0 + 07/22 13:00:00,0,619543287.6,0,695805940.3,86907.65187,129697.8299,779779734.3,1315349228,283760787.3,0 + 07/22 14:00:00,0,569454516.1,0,726087071.8,86907.65187,129697.8299,779779734.3,1295541588,283760787.3,0 + 07/22 15:00:00,0,474278495.8,0,694430443.1,130664.6647,194999.21,1172389949,1168708939,283760787.3,0 + 07/22 16:00:00,0,351967027.3,0,588179299.3,217970.6757,325291.5365,1955743964,940146326.6,283760787.3,0 + 07/22 17:00:00,0,273524381.7,0,524453222.5,218353.5821,325862.9722,1959179595,797977604.2,354700984.2,0 + 07/22 18:00:00,0,120839416.2,0,364176713.7,305984.3571,456639.9648,2745447559,485016129.9,141880393.7,0 + 07/22 19:00:00,0,253307522.4,0,650324751.1,306388.1135,457242.5162,2749070267,903632273.5,638461771.5,0 + 07/22 20:00:00,0,405175256,0,654164650,175414.7685,261782.643,1573910681,1059339906,638461771.5,702307948.6 + 07/22 21:00:00,0,305174096.9,0,485881565.4,175422.6688,261794.4331,1573981567,791055662.3,496581377.8,702307948.6 + 07/22 22:00:00,0,239471985.7,0,389496567.7,87703.29249,130885.2151,786918627.3,628968553.4,354700984.2,702307948.6 + 07/22 23:00:00,0,181285747.4,0,303914597.1,87735.01731,130932.5601,787203278.5,485200344.5,354700984.2,624273732.1 + 07/22 24:00:00,0,67914729.33,0,132136715.5,43881.51644,65487.18475,393727324.3,200051444.8,354700984.2,468205299.1 + 07/23 01:00:00,0,0,0,0,43881.034,65486.46476,393722995.5,0,212820590.5,234102649.5 + 07/23 02:00:00,0,0,0,0,21938.23387,32739.82512,196841012.4,0,141880393.7,0 + 07/23 03:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 07/23 04:00:00,0,0,0,0,21936.14788,32736.71206,196822295.8,0,141880393.7,0 + 07/23 05:00:00,0,0,0,0,21940.04231,32742.52397,196857238.6,0,141880393.7,0 + 07/23 06:00:00,0,0,0,0,21939.5462,32741.78359,196852787.2,0,141880393.7,0 + 07/23 07:00:00,0,0,0,0,87711.33441,130897.2166,786990783.5,0,141880393.7,156068433 + 07/23 08:00:00,0,2060376.245,0,0,350421.9053,522956.9512,3144163883,2060376.245,567521574.6,390171082.6 + 07/23 09:00:00,0,296368462.4,0,474128064.8,306180.9563,456933.3624,2747211547,770496527.3,567521574.6,390171082.6 + 07/23 10:00:00,0,131095550.6,0,243807524.9,218560.2551,326171.4034,1961033971,374903075.6,283760787.3,0 + 07/23 11:00:00,0,166364660.8,0,244288496.8,174616.3009,260591.0388,1566746423,410653157.6,283760787.3,0 + 07/23 12:00:00,0,119007862.2,0,122010335.2,87562.72875,130675.4429,785657417.9,241018197.3,283760787.3,0 + 07/23 13:00:00,0,141564854.9,0,142416368,87261.84547,130226.4156,782957739.7,283981222.9,283760787.3,0 + 07/23 14:00:00,0,217287308.6,0,278458007,87026.3912,129875.0321,780845124,495745315.5,283760787.3,0 + 07/23 15:00:00,0,235367933.3,0,356724474.5,130452.1465,194682.0555,1170483127,592092407.8,283760787.3,0 + 07/23 16:00:00,0,250112112.4,0,462270476.3,217565.978,324687.5804,1952112810,712382588.7,283760787.3,0 + 07/23 17:00:00,0,247784395,0,556533970.6,217671.7338,324845.4065,1953061705,804318365.5,354700984.2,0 + 07/23 18:00:00,0,141417357.7,0,463338855.6,305069.2781,455274.334,2737237004,604756213.2,141880393.7,0 + 07/23 19:00:00,0,260905304.4,0,666577433.5,306212.0166,456979.7156,2747490236,927482737.8,638461771.5,0 + 07/23 20:00:00,0,417245993,0,692097788.2,175351.5407,261688.2841,1573343369,1109343781,638461771.5,702307948.6 + 07/23 21:00:00,0,307396972.4,0,507601011.7,175451.4363,261837.3647,1574239684,814997984.1,496581377.8,702307948.6 + 07/23 22:00:00,0,192630151.5,0,337494051.4,87762.34752,130973.3467,787448499.2,530124202.9,354700984.2,702307948.6 + 07/23 23:00:00,0,157779166.8,0,284375872.8,87740.5074,130940.7533,787252538.5,442155039.6,354700984.2,624273732.1 + 07/23 24:00:00,0,75333099.69,0,159015754.5,43881.78805,65487.59008,393729761.3,234348854.2,354700984.2,468205299.1 + 07/24 01:00:00,0,0,0,0,43881.034,65486.46476,393722995.5,0,212820590.5,234102649.5 + 07/24 02:00:00,0,0,0,0,21936.72263,32737.5698,196827452.7,0,141880393.7,0 + 07/24 03:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 07/24 04:00:00,0,0,0,0,21922.12971,32715.79186,196696517.6,0,141880393.7,0 + 07/24 05:00:00,0,0,0,0,21932.74186,32731.62905,196791735.3,0,141880393.7,0 + 07/24 06:00:00,0,0,0,0,21941.08185,32744.07534,196866565.9,0,141880393.7,0 + 07/24 07:00:00,0,89480646.57,0,0,87745.42978,130948.0993,787296704.6,89480646.57,141880393.7,156068433 + 07/24 08:00:00,0,436438220.4,0,666742268.8,350722.8436,523406.0606,3146864055,1103180489,567521574.6,390171082.6 + 07/24 09:00:00,0,468462538.3,0,771754058.1,306331.3716,457157.8367,2748561150,1240216596,567521574.6,390171082.6 + 07/24 10:00:00,0,280638035.7,0,473352561.7,218154.6137,325566.0389,1957394349,753990597.4,283760787.3,0 + 07/24 11:00:00,0,324560765.2,0,469263865.4,174246.3984,260039.0098,1563427470,793824630.6,283760787.3,0 + 07/24 12:00:00,0,452181438.6,0,538159579.2,86953.18764,129765.7858,780188304.4,990341017.8,283760787.3,0 + 07/24 13:00:00,0,555431274.8,0,644452670.2,86747.18287,129458.3518,778339924.7,1199883945,283760787.3,0 + 07/24 14:00:00,0,589819670.1,0,757170352.6,86730.40518,129433.3133,778189386.7,1346990023,283760787.3,0 + 07/24 15:00:00,0,575009652,0,837326946.3,130070.2429,194112.1164,1167056493,1412336598,283760787.3,0 + 07/24 16:00:00,0,556847979.4,0,928419465.4,216783.7381,323520.1939,1945094155,1485267445,283760787.3,0 + 07/24 17:00:00,0,446261428.8,0,856130669.4,216991.8023,323830.7013,1946961013,1302392098,354700984.2,0 + 07/24 18:00:00,0,299524429.4,0,691532249.6,304230.3761,454022.3871,2729709948,991056679,141880393.7,0 + 07/24 19:00:00,0,455960200.5,0,966179430.2,305289.8601,455603.5227,2739216178,1422139631,638461771.5,0 + 07/24 20:00:00,0,642603024.3,0,987272103.6,174886.7646,260994.6692,1569173162,1629875128,638461771.5,702307948.6 + 07/24 21:00:00,0,539639248.8,0,825465880.1,174886.7646,260994.6692,1569173162,1365105129,496581377.8,702307948.6 + 07/24 22:00:00,0,432952782.2,0,672395001.2,87584.7345,130708.2834,785854864.6,1105347783,354700984.2,702307948.6 + 07/24 23:00:00,0,339690237.6,0,536128415.7,87665.46532,130828.7632,786579222.7,875818653.3,354700984.2,624273732.1 + 07/24 24:00:00,0,246173042.8,0,397905059.5,43827.29773,65406.27071,393240846.4,644078102.4,354700984.2,468205299.1 + 07/25 01:00:00,0,72781844.22,0,137454709.8,43832.73266,65414.3816,393289611.3,210236554,212820590.5,234102649.5 + 07/25 02:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 07/25 03:00:00,0,0,0,0,21935.12685,32735.18832,196813134.6,0,141880393.7,0 + 07/25 04:00:00,0,0,0,0,21912.23721,32701.02866,196607757.1,0,141880393.7,0 + 07/25 05:00:00,0,0,0,0,21936.35745,32737.02482,196824176.1,0,141880393.7,0 + 07/25 06:00:00,0,166944739.1,0,98489156.19,21906.23811,32692.07582,196553930.1,265433895.3,141880393.7,0 + 07/25 07:00:00,0,497158846.2,0,716813935.9,87424.10203,130468.5614,784413588.3,1213972782,141880393.7,156068433 + 07/25 08:00:00,0,842867953.3,0,1289522180,348803.5003,520541.7023,3129642729,2132390133,567521574.6,390171082.6 + 07/25 09:00:00,0,816351686.4,0,1251670455,304388.3419,454258.1295,2731127297,2068022141,567521574.6,390171082.6 + 07/25 10:00:00,0,649029893.6,0,976616836.3,216741.1331,323456.6118,1944711882,1625646730,283760787.3,0 + 07/25 11:00:00,0,750681890,0,1050981806,172695.5716,257724.612,1549512661,1801663696,283760787.3,0 + 07/25 12:00:00,0,902382023.6,0,1128186230,86082.4098,128466.2685,772375241.9,2030568253,283760787.3,0 + 07/25 13:00:00,0,1018262959,0,1283550309,85886.18634,128173.4317,770614625.1,2301813269,283760787.3,0 + 07/25 14:00:00,0,1028373556,0,1381811314,85930.66596,128239.8115,771013718.9,2410184870,283760787.3,0 + 07/25 15:00:00,0,1045388561,0,1497798679,128761.8153,192159.4664,1155316614,2543187240,283760787.3,0 + 07/25 16:00:00,0,983383259.6,0,1487711534,214140.9371,319576.1735,1921381598,2471094794,283760787.3,0 + 07/25 17:00:00,0,932982169.3,0,1517643975,214715.4659,320433.5794,1926536563,2450626144,354700984.2,0 + 07/25 18:00:00,0,724325993.8,0,1321131130,301138.885,449408.7579,2701971514,2045457124,141880393.7,0 + 07/25 19:00:00,0,884715580.9,0,1557574174,301582.2344,450070.3964,2705949471,2442289755,638461771.5,0 + 07/25 20:00:00,0,1092945813,0,1646289103,172925.9288,258068.3889,1551579544,2739234916,638461771.5,702307948.6 + 07/25 21:00:00,0,947522817.4,0,1409922793,173392.9065,258765.2894,1555769505,2357445610,496581377.8,702307948.6 + 07/25 22:00:00,0,807679959.1,0,1203665794,86892.20521,129674.7778,779641139,2011345753,354700984.2,702307948.6 + 07/25 23:00:00,0,729619460.3,0,1088781194,86892.20521,129674.7778,779641139,1818400654,354700984.2,624273732.1 + 07/25 24:00:00,0,646831879.7,0,965552183.5,43398.36045,64766.14026,389392202.6,1612384063,354700984.2,468205299.1 + 07/26 01:00:00,0,496448442,0,731459507.5,43339.63967,64678.50749,388865329.8,1227907950,212820590.5,234102649.5 + 07/26 02:00:00,0,341007367.8,0,506948515.4,21707.27054,32395.14382,194768691.7,847955883.2,141880393.7,0 + 07/26 03:00:00,0,322997398.7,0,483602756.8,21723.0513,32418.69446,194910284.7,806600155.5,141880393.7,0 + 07/26 04:00:00,0,342772466,0,514774601.1,21686.79572,32364.58794,194584981.2,857547067,141880393.7,0 + 07/26 05:00:00,0,417256907.1,0,582932385.3,21669.81983,32339.25375,194432664.9,1000189292,141880393.7,0 + 07/26 06:00:00,0,589004398.5,0,785769897.7,21665.49342,32332.79716,194393846.1,1374774296,141880393.7,0 + 07/26 07:00:00,0,799499416.7,0,1149294230,86555.38238,129172.1157,776618992.9,1948793646,141880393.7,156068433 + 07/26 08:00:00,0,1033089590,0,1524442499,346148.6368,516579.6802,3105821941,2557532089,567521574.6,390171082.6 + 07/26 09:00:00,0,905055644,0,1319947458,302815.8197,451911.3545,2717017827,2225003102,567521574.6,390171082.6 + 07/26 10:00:00,0,541344579.9,0,764136648.6,216909.5704,323707.9815,1946223187,1305481228,283760787.3,0 + 07/26 11:00:00,0,482957095.7,0,666345389.5,173876.2865,259486.6682,1560106637,1149302485,283760787.3,0 + 07/26 12:00:00,0,509278448.6,0,697036328.6,86812.96804,129556.5272,778930182.7,1206314777,283760787.3,0 + 07/26 13:00:00,0,462239430.2,0,642698352.6,86780.34089,129507.8356,778637435.3,1104937783,283760787.3,0 + 07/26 14:00:00,0,465192768.7,0,650927181.8,86730.40518,129433.3133,778189386.7,1116119950,283760787.3,0 + 07/26 15:00:00,0,254575330.2,0,349658071.6,131193.1594,195787.9163,1177131873,604233401.8,283760787.3,0 + 07/26 16:00:00,0,160382466.2,0,217644055.8,218678.1486,326347.3435,1962091771,378026521.9,283760787.3,0 + 07/26 17:00:00,0,54461775.39,0,83530521.49,218744.7061,326446.6715,1962688959,137992296.9,354700984.2,0 + 07/26 18:00:00,0,0,0,0,305843.5642,456429.8506,2744184293,0,141880393.7,0 + 07/26 19:00:00,0,246181576.2,0,466870311.8,306051.8381,456740.671,2746053033,713051888,638461771.5,0 + 07/26 20:00:00,0,596750003.8,0,934154213,174886.7646,260994.6692,1569173162,1530904217,638461771.5,702307948.6 + 07/26 21:00:00,0,481572501.3,0,747538470.5,174942.5189,261077.8748,1569673417,1229110972,496581377.8,702307948.6 + 07/26 22:00:00,0,364427326.8,0,573477091.1,87555.11296,130664.0773,785589085.1,937904417.9,354700984.2,702307948.6 + 07/26 23:00:00,0,272694121.5,0,437244939.7,87624.95245,130768.3033,786215720.6,709939061.2,354700984.2,624273732.1 + 07/26 24:00:00,0,170723820.4,0,284365017.9,43827.29773,65406.27071,393240846.4,455088838.3,354700984.2,468205299.1 + 07/27 01:00:00,0,757242.2461,0,10479285.62,43847.34214,65436.18426,393420695,11236527.87,212820590.5,234102649.5 + 07/27 02:00:00,0,0,0,0,21936.9195,32737.86361,196829219.2,0,141880393.7,0 + 07/27 03:00:00,0,0,0,0,21940.58688,32743.33667,196862124.8,0,141880393.7,0 + 07/27 04:00:00,0,0,0,0,21941.05901,32744.04127,196866361,0,141880393.7,0 + 07/27 05:00:00,0,0,0,0,21938.39266,32740.0621,196842437.1,0,141880393.7,0 + 07/27 06:00:00,0,0,0,0,21926.84606,32722.83037,196738835.2,0,141880393.7,0 + 07/27 07:00:00,0,185088968.5,0,172487847.9,21912.23721,32701.02866,196607757.1,357576816.4,141880393.7,156068433 + 07/27 08:00:00,0,438135067.6,0,663427023.8,87637.23253,130786.6296,786325903.7,1101562091,567521574.6,390171082.6 + 07/27 09:00:00,0,327577012.8,0,512260564.6,219163.6633,327071.908,1966448057,839837577.5,567521574.6,390171082.6 + 07/27 10:00:00,0,96112070.57,0,142532718.4,219107.903,326988.6933,1965947747,238644788.9,283760787.3,0 + 07/27 11:00:00,0,160331518.8,0,214569279.5,218925.5108,326716.4979,1964311231,374900798.3,283760787.3,0 + 07/27 12:00:00,0,253853184.3,0,292342754.2,131075.8132,195612.7931,1176078983,546195938.5,283760787.3,0 + 07/27 13:00:00,0,357333065.7,0,388082104.4,130962.2256,195443.2791,1175059817,745415170.1,283760787.3,0 + 07/27 14:00:00,0,373533683.3,0,466688357.1,130962.2256,195443.2791,1175059817,840222040.4,283760787.3,0 + 07/27 15:00:00,0,356332226.4,0,517167684.5,130874.8884,195312.9402,1174276183,873499911,283760787.3,0 + 07/27 16:00:00,0,320261646.6,0,543848984.8,305203.0628,455473.9895,2738437388,864110631.3,283760787.3,0 + 07/27 17:00:00,0,292809553,0,588095051.9,392835.5126,586253.4816,3524720379,880904604.9,354700984.2,0 + 07/27 18:00:00,0,149229628.4,0,461140737.6,306302.2663,457114.401,2748300003,610370366,141880393.7,0 + 07/27 19:00:00,0,246778912.5,0,605947794.8,306595.4603,457551.953,2750930688,852726707.2,638461771.5,0 + 07/27 20:00:00,0,444854941.3,0,707060081.9,262996.396,392486.2896,2359737668,1151915023,638461771.5,702307948.6 + 07/27 21:00:00,0,305700558.5,0,489093980,219383.9266,327400.621,1968424371,794794538.5,496581377.8,702307948.6 + 07/27 22:00:00,0,172170575.4,0,294477481.9,175528.6548,261952.6027,1574932527,466648057.3,354700984.2,702307948.6 + 07/27 23:00:00,0,93757095.82,0,178834787.3,131643.102,196459.3943,1181168987,272591883.1,354700984.2,624273732.1 + 07/27 24:00:00,0,4851295.013,0,33673401.33,87754.66638,130961.8836,787379580.1,38524696.35,354700984.2,468205299.1 + 07/28 01:00:00,0,0,0,0,43872.29575,65473.42413,393644591.6,0,212820590.5,234102649.5 + 07/28 02:00:00,0,0,0,0,21926.48439,32722.29063,196735590.1,0,141880393.7,0 + 07/28 03:00:00,0,0,0,0,21915.8909,32706.48129,196640539.9,0,141880393.7,0 + 07/28 04:00:00,0,0,0,0,21928.44938,32725.2231,196753220.9,0,141880393.7,0 + 07/28 05:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 07/28 06:00:00,0,0,0,0,21938.23387,32739.82512,196841012.4,0,141880393.7,0 + 07/28 07:00:00,0,0,0,0,21936.35745,32737.02482,196824176.1,0,141880393.7,156068433 + 07/28 08:00:00,0,385125546.6,0,501399301.5,21920.17773,32712.87879,196679003.5,886524848.1,567521574.6,390171082.6 + 07/28 09:00:00,0,474448769.7,0,785221543.4,87577.53959,130697.546,785790308.3,1259670313,567521574.6,390171082.6 + 07/28 10:00:00,0,271162192.5,0,483869567.9,131297.1375,195943.0894,1178064817,755031760.3,283760787.3,0 + 07/28 11:00:00,0,343287599.7,0,496170277.2,131136.153,195702.8421,1176620382,839457876.8,283760787.3,0 + 07/28 12:00:00,0,465141713,0,530271207.7,87341.43283,130345.1889,783671838.1,995412920.7,283760787.3,0 + 07/28 13:00:00,0,549468187.5,0,600803457,87237.86852,130190.6332,782742606.3,1150271644,283760787.3,0 + 07/28 14:00:00,0,566550622.5,0,705596814.9,130801.3126,195203.1384,1173616023,1272147437,283760787.3,0 + 07/28 15:00:00,0,565183726.4,0,787601754.3,174451.3486,260344.8701,1565266388,1352785481,283760787.3,0 + 07/28 16:00:00,0,476865974.3,0,747929453.1,218184.07,325609.9985,1957658646,1224795427,283760787.3,0 + 07/28 17:00:00,0,398717563.8,0,692448502.6,262151.6265,391225.5862,2352157966,1091166066,354700984.2,0 + 07/28 18:00:00,0,239013245,0,464886255.2,305914.9316,456536.3567,2744824638,703899500.3,141880393.7,0 + 07/28 19:00:00,0,417597033.2,0,713522617.4,174788.2803,260847.6946,1568289510,1131119651,638461771.5,0 + 07/28 20:00:00,0,658875991.9,0,986425886.2,131220.4099,195828.5839,1177376377,1645301878,638461771.5,702307948.6 + 07/28 21:00:00,0,575729216.6,0,863617364.6,87489.1476,130565.633,784997210.2,1439346581,496581377.8,702307948.6 + 07/28 22:00:00,0,505202254.4,0,761857804,87489.1476,130565.633,784997210.2,1267060058,354700984.2,702307948.6 + 07/28 23:00:00,0,453574895.1,0,687399242,87562.72875,130675.4429,785657417.9,1140974137,354700984.2,624273732.1 + 07/28 24:00:00,0,343390315.1,0,526258359.9,87637.23253,130786.6296,786325903.7,869648675,354700984.2,468205299.1 + 07/29 01:00:00,0,142324204.8,0,228698616.6,43821.5806,65397.73867,393189549.3,371022821.4,212820590.5,234102649.5 + 07/29 02:00:00,0,546918.4723,0,5270883.195,21906.23811,32692.07582,196553930.1,5817801.667,141880393.7,0 + 07/29 03:00:00,0,0,0,0,21907.79073,32694.39289,196567861,0,141880393.7,0 + 07/29 04:00:00,0,0,0,0,21897.94724,32679.70282,196479540.2,0,141880393.7,0 + 07/29 05:00:00,0,0,0,0,21894.3849,32674.38651,196447577.1,0,141880393.7,0 + 07/29 06:00:00,0,0,0,25684760.56,21880.81226,32654.13119,196325796.4,25684760.56,141880393.7,0 + 07/29 07:00:00,0,63504127.53,0,113898906.4,87591.78897,130718.8113,785918160.9,177403034,141880393.7,156068433 + 07/29 08:00:00,0,360238627.5,0,557093846.3,349956.5904,522262.5321,3139988841,917332473.8,567521574.6,390171082.6 + 07/29 09:00:00,0,349807923,0,545213114,305617.8387,456092.986,2742158969,895021037,567521574.6,390171082.6 + 07/29 10:00:00,0,161093028.6,0,281466771.3,217906.6272,325195.9529,1955169288,442559799.8,283760787.3,0 + 07/29 11:00:00,0,217506072.6,0,327757334.4,174165.047,259917.6039,1562697543,545263407,283760787.3,0 + 07/29 12:00:00,0,333310377.1,0,416597583.5,87054.72804,129917.321,781099376.6,749907960.6,283760787.3,0 + 07/29 13:00:00,0,331758492.2,0,404228434.2,87082.52349,129958.8019,781348771.6,735986926.4,283760787.3,0 + 07/29 14:00:00,0,374547252.8,0,503175842.6,86892.20521,129674.7778,779641139,877723095.4,283760787.3,0 + 07/29 15:00:00,0,454133884.3,0,650588681.6,129966.8046,193957.7489,1166128393,1104722566,283760787.3,0 + 07/29 16:00:00,0,310653338.7,0,481357085.1,218459.6887,326021.3219,1960131638,792010423.8,283760787.3,0 + 07/29 17:00:00,0,107119317.2,0,175737668.5,218560.2551,326171.4034,1961033971,282856985.7,354700984.2,0 + 07/29 18:00:00,0,14315024.78,0,118644777.1,305949.8872,456588.5233,2745138278,132959801.9,141880393.7,0 + 07/29 19:00:00,0,314549107.8,0,608113162,306051.8381,456740.671,2746053033,922662269.9,638461771.5,0 + 07/29 20:00:00,0,652092855.8,0,994440392.7,174886.7646,260994.6692,1569173162,1646533248,638461771.5,702307948.6 + 07/29 21:00:00,0,498255488,0,767371176.6,175029.8665,261208.2292,1570457144,1265626665,496581377.8,702307948.6 + 07/29 22:00:00,0,374991075.4,0,589413503.1,87547.35702,130652.5027,785519494.8,964404578.5,354700984.2,702307948.6 + 07/29 23:00:00,0,332799150.8,0,527243349.2,87523.24903,130616.5248,785303185.7,860042500.1,354700984.2,624273732.1 + 07/29 24:00:00,0,262897899.7,0,421326267.9,43765.71249,65314.36313,392688272.2,684224167.6,354700984.2,468205299.1 + 07/30 01:00:00,0,65445137,0,132433959.5,43788.7698,65348.77302,392895154.1,197879096.5,212820590.5,234102649.5 + 07/30 02:00:00,0,0,0,0,21890.68219,32668.86072,196414354.5,0,141880393.7,0 + 07/30 03:00:00,0,0,0,0,21907.79073,32694.39289,196567861,0,141880393.7,0 + 07/30 04:00:00,0,0,0,0,21921.37753,32714.66933,196689768.7,0,141880393.7,0 + 07/30 05:00:00,0,0,0,0,21920.17773,32712.87879,196679003.5,0,141880393.7,0 + 07/30 06:00:00,0,1787977.502,0,0,21904.65029,32689.7062,196539683.4,1787977.502,141880393.7,0 + 07/30 07:00:00,0,347095194.7,0,358974538.7,87555.11296,130664.0773,785589085.1,706069733.4,141880393.7,156068433 + 07/30 08:00:00,0,706561562.6,0,1104498882,349811.2556,522045.6397,3138684823,1811060445,567521574.6,390171082.6 + 07/30 09:00:00,0,688520232.4,0,1117593346,305656.6683,456150.9339,2742507368,1806113578,567521574.6,390171082.6 + 07/30 10:00:00,0,326687785.9,0,550173844.9,218326.1916,325822.0957,1958933834,876861630.8,283760787.3,0 + 07/30 11:00:00,0,366685222.8,0,511306185.4,174475.737,260381.2665,1565485213,877991408.2,283760787.3,0 + 07/30 12:00:00,0,455724474.2,0,559720009.5,87026.3912,129875.0321,780845124,1015444484,283760787.3,0 + 07/30 13:00:00,0,493913633.2,0,597647492.9,86845.06308,129604.4246,779218155.7,1091561126,283760787.3,0 + 07/30 14:00:00,0,514900666.6,0,671578648.5,86481.70807,129062.1668,775957949.5,1186479315,283760787.3,0 + 07/30 15:00:00,0,469809460.3,0,657313120.3,130452.1465,194682.0555,1170483127,1127122581,283760787.3,0 + 07/30 16:00:00,0,430374717.2,0,674419068.4,217382.9691,324414.4645,1950470761,1104793786,283760787.3,0 + 07/30 17:00:00,0,394736119.2,0,666785294.9,217565.978,324687.5804,1952112810,1061521414,354700984.2,0 + 07/30 18:00:00,0,284276291.1,0,602671003.2,305246.701,455539.1136,2738828932,886947294.4,141880393.7,0 + 07/30 19:00:00,0,442070113.3,0,818782539.5,305578.5265,456034.3179,2741806240,1260852653,638461771.5,0 + 07/30 20:00:00,0,596779591.6,0,907367088.4,175309.1909,261625.0829,1572963386,1504146680,638461771.5,702307948.6 + 07/30 21:00:00,0,483121490,0,734068361.1,175210.9527,261478.4756,1572081942,1217189851,496581377.8,702307948.6 + 07/30 22:00:00,0,388223380.4,0,596160880.6,87670.68846,130836.558,786626087.3,984384261,354700984.2,702307948.6 + 07/30 23:00:00,0,309916811.5,0,482417220.5,87694.68428,130872.3685,786841390.1,792334032,354700984.2,624273732.1 + 07/30 24:00:00,0,216357143.6,0,344906136.6,43855.6672,65448.60828,393495391.7,561263280.3,354700984.2,468205299.1 + 07/31 01:00:00,0,41141575.91,0,83394994.37,43859.40486,65454.18623,393528927.9,124536570.3,212820590.5,234102649.5 + 07/31 02:00:00,0,0,0,0,21933.75433,32733.14002,196800819.6,0,141880393.7,0 + 07/31 03:00:00,0,0,0,0,21935.75989,32736.13305,196818814.6,0,141880393.7,0 + 07/31 04:00:00,0,0,0,0,21940.1376,32742.66618,196858093.6,0,141880393.7,0 + 07/31 05:00:00,0,0,0,0,21940.38001,32743.02794,196860268.6,0,141880393.7,0 + 07/31 06:00:00,0,0,0,0,21938.81269,32740.68894,196846205.9,0,141880393.7,0 + 07/31 07:00:00,0,83167997.32,0,51319740.81,87711.33441,130897.2166,786990783.5,134487738.1,141880393.7,156068433 + 07/31 08:00:00,0,498917145.3,0,734645592.5,350548.9301,523146.5185,3145303615,1233562738,567521574.6,390171082.6 + 07/31 09:00:00,0,568711368.3,0,840570532.5,306149.408,456886.2808,2746928480,1409281901,567521574.6,390171082.6 + 07/31 10:00:00,0,348944093.5,0,486596814.8,218560.2551,326171.4034,1961033971,835540908.2,283760787.3,0 + 07/31 11:00:00,0,287638924.8,0,378344973.6,174682.8657,260690.3777,1567343676,665983898.5,283760787.3,0 + 07/31 12:00:00,0,317045560,0,410134081,87273.628,130243.9994,783063458.6,727179641,283760787.3,0 + 07/31 13:00:00,0,311607552.6,0,404190612.3,87285.27307,130261.3781,783167944.1,715798164.9,283760787.3,0 + 07/31 14:00:00,0,355931717.2,0,463343761.1,87330.47666,130328.8383,783573533.7,819275478.2,283760787.3,0 + 07/31 15:00:00,0,290472632.3,0,384474975.8,130945.1709,195417.8272,1174906793,674947608.1,283760787.3,0 + 07/31 16:00:00,0,262803902.9,0,354438869.1,218124.814,325521.567,1957126972,617242772,283760787.3,0 + 07/31 17:00:00,0,250889042.8,0,348265077,218298.4562,325780.7043,1958684978,599154119.8,354700984.2,0 + 07/31 18:00:00,0,141171427.8,0,195082599.9,305770.2577,456320.4506,2743526550,336254027.7,141880393.7,0 + 07/31 19:00:00,0,346235302.8,0,512681182.4,306242.5885,457025.3401,2747764543,858916485.2,638461771.5,0 + 07/31 20:00:00,0,584522731.8,0,874707730.2,175110.2259,261328.1547,1571178170,1459230462,638461771.5,702307948.6 + 07/31 21:00:00,0,448598523,0,677555473.9,175210.9527,261478.4756,1572081942,1126153997,496581377.8,702307948.6 + 07/31 22:00:00,0,318553912.2,0,494402444.8,87637.23253,130786.6296,786325903.7,812956357,354700984.2,702307948.6 + 07/31 23:00:00,0,257114120.6,0,409449383.4,87643.16119,130795.4773,786379098.7,666563504,354700984.2,624273732.1 + 07/31 24:00:00,0,186850231.3,0,305571590.9,43818.61627,65393.31481,393162951.9,492421822.2,354700984.2,468205299.1 + 08/01 01:00:00,0,21075925,0,59445323.1,43809.30058,65379.41241,393079366.7,80521248.1,212820590.5,234102649.5 + 08/01 02:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/01 03:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 08/01 04:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 08/01 05:00:00,0,0,0,0,21903.02727,32687.28407,196525120.8,0,141880393.7,0 + 08/01 06:00:00,0,0,0,0,21904.65029,32689.7062,196539683.4,0,141880393.7,0 + 08/01 07:00:00,0,0,0,0,87570.20432,130686.5991,785724492.5,0,141880393.7,156068433 + 08/01 08:00:00,0,325040475.4,0,569639708.7,350092.9961,522466.0991,3141212743,894680184.1,567521574.6,390171082.6 + 08/01 09:00:00,0,410299467.4,0,642518771.6,306180.9563,456933.3624,2747211547,1052818239,567521574.6,390171082.6 + 08/01 10:00:00,0,128204254,0,248099903.1,218433.6808,325982.5086,1959898282,376304157.1,283760787.3,0 + 08/01 11:00:00,0,304066886.4,0,448190679.5,174475.737,260381.2665,1565485213,752257565.9,283760787.3,0 + 08/01 12:00:00,0,454202055.8,0,524502945.6,87237.86852,130190.6332,782742606.3,978705001.4,283760787.3,0 + 08/01 13:00:00,0,449225031,0,499821705.2,87237.86852,130190.6332,782742606.3,949046736.2,283760787.3,0 + 08/01 14:00:00,0,457010718.7,0,580053839.1,87096.21786,129979.2389,781471644.4,1037064558,283760787.3,0 + 08/01 15:00:00,0,554409502.3,0,802524777,130644.3268,194968.8584,1172207467,1356934279,283760787.3,0 + 08/01 16:00:00,0,506008359.7,0,830439452.1,217740.5446,324948.0973,1953679111,1336447812,283760787.3,0 + 08/01 17:00:00,0,454014809.8,0,824297339.9,217740.5446,324948.0973,1953679111,1278312150,354700984.2,0 + 08/01 18:00:00,0,288591831.2,0,661186054.1,305332.5398,455667.2163,2739599122,949777885.4,141880393.7,0 + 08/01 19:00:00,0,378461690.2,0,796344966.4,306180.9563,456933.3624,2747211547,1174806657,638461771.5,0 + 08/01 20:00:00,0,484197978.7,0,737623391.3,175444.6696,261827.2663,1574178970,1221821370,638461771.5,702307948.6 + 08/01 21:00:00,0,378407290.2,0,584764859.2,175398.1183,261757.7948,1573761287,963172149.4,496581377.8,702307948.6 + 08/01 22:00:00,0,296255120.8,0,465803036,87722.33481,130913.6332,787089484.8,762058156.8,354700984.2,702307948.6 + 08/01 23:00:00,0,237428185.7,0,379829341.1,87722.33481,130913.6332,787089484.8,617257526.9,354700984.2,624273732.1 + 08/01 24:00:00,0,155073272.6,0,257839938.5,43861.16741,65456.81659,393544742.4,412913211.1,354700984.2,468205299.1 + 08/02 01:00:00,0,1822919.797,0,12001822.83,43868.91665,65468.38128,393614272.6,13824742.63,212820590.5,234102649.5 + 08/02 02:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/02 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 08/02 04:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 08/02 05:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 08/02 06:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 08/02 07:00:00,0,0,0,0,87763.97715,130975.7787,787463121,0,141880393.7,156068433 + 08/02 08:00:00,0,301123475.2,0,413353501.5,350951.3332,523747.0503,3148914181,714476976.6,567521574.6,390171082.6 + 08/02 09:00:00,0,375259634.4,0,635828571.5,306847.4096,457927.9531,2753191306,1011088206,567521574.6,390171082.6 + 08/02 10:00:00,0,162339729.9,0,318663118.7,218925.5108,326716.4979,1964311231,481002848.6,283760787.3,0 + 08/02 11:00:00,0,253425653.8,0,370898468.3,174848.2041,260937.1228,1568827177,624324122.1,283760787.3,0 + 08/02 12:00:00,0,362132474.7,0,386339014.3,87373.47233,130393.0035,783959312.8,748471489,283760787.3,0 + 08/02 13:00:00,0,431503569.3,0,421293072.8,87373.47233,130393.0035,783959312.8,852796642.1,283760787.3,0 + 08/02 14:00:00,0,480723296.3,0,557963132.2,87308.15043,130295.5194,783373211.4,1038686428,283760787.3,0 + 08/02 15:00:00,0,469179706.9,0,666301426.9,131060.2085,195589.5052,1175938969,1135481134,283760787.3,0 + 08/02 16:00:00,0,405579012,0,704069819.7,218270.3761,325738.7985,1958433029,1109648832,283760787.3,0 + 08/02 17:00:00,0,358370913.2,0,724011678.6,218433.6808,325982.5086,1959898282,1082382592,354700984.2,0 + 08/02 18:00:00,0,200650825.7,0,581296682.4,306180.9563,456933.3624,2747211547,781947508.1,141880393.7,0 + 08/02 19:00:00,0,282880882.4,0,685037954.8,306751.0642,457784.1707,2752326845,967918837.2,638461771.5,0 + 08/02 20:00:00,0,418103393.3,0,658537456.3,175518.8773,261938.0112,1574844798,1076640850,638461771.5,702307948.6 + 08/02 21:00:00,0,324478570.9,0,518795404.9,175518.8773,261938.0112,1574844798,843273975.9,496581377.8,702307948.6 + 08/02 22:00:00,0,228724206.2,0,378143000.8,87763.85009,130975.5891,787461980.9,606867207,354700984.2,702307948.6 + 08/02 23:00:00,0,155780272,0,271635719,87759.00667,130968.3609,787418523.3,427415991,354700984.2,624273732.1 + 08/02 24:00:00,0,48515870.2,0,113545738.4,43868.42139,65467.64217,393609828.8,162061608.6,354700984.2,468205299.1 + 08/03 01:00:00,0,0,0,0,43848.75562,65438.29369,393433377.5,0,212820590.5,234102649.5 + 08/03 02:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 08/03 03:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 08/03 04:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 08/03 05:00:00,3773957.768,0,0,0,21900.76769,32683.91195,200278804.5,0,141880393.7,0 + 08/03 06:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 08/03 07:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,156068433 + 08/03 08:00:00,0,399376514,0,567145692.2,87737.83331,130936.7626,787228545.1,966522206.2,567521574.6,390171082.6 + 08/03 09:00:00,0,474530377.9,0,790400954.5,219107.903,326988.6933,1965947747,1264931332,567521574.6,390171082.6 + 08/03 10:00:00,0,246230019.6,0,410141020.5,218925.5108,326716.4979,1964311231,656371040.1,283760787.3,0 + 08/03 11:00:00,0,345541096.6,0,475631733.8,218270.3761,325738.7985,1958433029,821172830.4,283760787.3,0 + 08/03 12:00:00,0,387097830,0,486768471,130962.2256,195443.2791,1175059817,873866301,283760787.3,0 + 08/03 13:00:00,0,479663986.8,0,613987584,130539.5868,194812.5482,1171267686,1093651571,283760787.3,0 + 08/03 14:00:00,0,503392111.7,0,654984847.9,130763.2932,195146.3996,1173274894,1158376960,283760787.3,0 + 08/03 15:00:00,0,423530245.7,0,601305873.9,130644.3268,194968.8584,1172207467,1024836120,283760787.3,0 + 08/03 16:00:00,0,524120030,0,890838613.3,304283.5013,454101.6693,2730186614,1414958643,283760787.3,0 + 08/03 17:00:00,0,492270688,0,983632831.8,391618.7604,584437.6446,3513803058,1475903520,354700984.2,0 + 08/03 18:00:00,0,316487552.4,0,826537423.1,305114.3509,455341.5991,2737641420,1143024976,141880393.7,0 + 08/03 19:00:00,0,408633447.3,0,919016708.1,305984.3571,456639.9648,2745447559,1327650155,638461771.5,0 + 08/03 20:00:00,0,604903414,0,913593621.4,262710.613,392059.7974,2357173477,1518497035,638461771.5,702307948.6 + 08/03 21:00:00,0,492317068.7,0,763190159.4,219013.6908,326848.0945,1965102427,1255507228,496581377.8,702307948.6 + 08/03 22:00:00,0,397511985.1,0,628416487.5,175286.3224,261590.9547,1572758197,1025928473,354700984.2,702307948.6 + 08/03 23:00:00,0,338222208.1,0,545843011.3,131464.7418,196193.216,1179568648,884065219.4,354700984.2,624273732.1 + 08/03 24:00:00,0,232658698.7,0,389081082.3,87670.68846,130836.558,786626087.3,621739780.9,354700984.2,468205299.1 + 08/04 01:00:00,0,28526884.56,0,75443647.38,43849.52958,65439.44871,393440321.8,103970531.9,212820590.5,234102649.5 + 08/04 02:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 08/04 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/04 04:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 08/04 05:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 08/04 06:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/04 07:00:00,0,320436811.4,0,266426074.8,21917.67211,32709.13951,196656521.8,586862886.3,141880393.7,156068433 + 08/04 08:00:00,0,694372009.4,0,1077854371,21880.81226,32654.13119,196325796.4,1772226380,567521574.6,390171082.6 + 08/04 09:00:00,0,702319574,0,1143757631,87373.47233,130393.0035,783959312.8,1846077205,567521574.6,390171082.6 + 08/04 10:00:00,0,422405492.3,0,711400149.7,130763.2932,195146.3996,1173274894,1133805642,283760787.3,0 + 08/04 11:00:00,0,485696678.9,0,704582412.7,130407.2149,194615.0011,1170079978,1190279092,283760787.3,0 + 08/04 12:00:00,0,668749479.4,0,810532901.4,86573.475,129199.1164,776781329.1,1479282381,283760787.3,0 + 08/04 13:00:00,0,811771869.9,0,953709988.3,86462.96442,129034.1944,775789771.9,1765481858,283760787.3,0 + 08/04 14:00:00,0,922628356.6,0,1216620440,129218.335,192840.76,1159412742,2139248796,283760787.3,0 + 08/04 15:00:00,0,888909211.3,0,1311992020,172496.5327,257427.5737,1547726783,2200901231,283760787.3,0 + 08/04 16:00:00,0,782445726.9,0,1297909942,215620.6659,321784.4671,1934658479,2080355669,283760787.3,0 + 08/04 17:00:00,0,637306432.5,0,1169074883,259101.9142,386674.3061,2324794393,1806381315,354700984.2,0 + 08/04 18:00:00,0,443818936.5,0,952855200.9,303007.1625,452196.9075,2718734652,1396674137,141880393.7,0 + 08/04 19:00:00,0,538471840.9,0,1079181542,173876.2865,259486.6682,1560106637,1617653383,638461771.5,0 + 08/04 20:00:00,0,792934229.2,0,1187684873,130644.3268,194968.8584,1172207467,1980619102,638461771.5,702307948.6 + 08/04 21:00:00,0,662879664,0,1001909070,87175.52883,130097.5997,782183262.8,1664788734,496581377.8,702307948.6 + 08/04 22:00:00,0,538919312.1,0,820498971,87308.15043,130295.5194,783373211.4,1359418283,354700984.2,702307948.6 + 08/04 23:00:00,0,472763448.2,0,723685201.6,87373.47233,130393.0035,783959312.8,1196448650,354700984.2,624273732.1 + 08/04 24:00:00,0,400226132,0,617870425.4,87424.10203,130468.5614,784413588.3,1018096557,354700984.2,468205299.1 + 08/05 01:00:00,0,186337514.9,0,300140275.3,43761.62452,65308.26238,392651592.8,486477790.2,212820590.5,234102649.5 + 08/05 02:00:00,0,10014727.35,0,29858594.76,21892.55108,32671.64979,196431123.1,39873322.11,141880393.7,0 + 08/05 03:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 08/05 04:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 08/05 05:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 08/05 06:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 08/05 07:00:00,0,83224371.3,0,126799419,87570.20432,130686.5991,785724492.5,210023790.4,141880393.7,156068433 + 08/05 08:00:00,0,529585885.5,0,794423742.5,349921.0929,522209.557,3139670340,1324009628,567521574.6,390171082.6 + 08/05 09:00:00,0,580816789.5,0,862373042.5,305578.5265,456034.3179,2741806240,1443189832,567521574.6,390171082.6 + 08/05 10:00:00,0,277688577.4,0,396934413.6,218270.3761,325738.7985,1958433029,674622991,283760787.3,0 + 08/05 11:00:00,0,286664861.1,0,386394919.8,174616.3009,260591.0388,1566746423,673059780.9,283760787.3,0 + 08/05 12:00:00,0,322536898.2,0,416889210.6,87175.52883,130097.5997,782183262.8,739426108.7,283760787.3,0 + 08/05 13:00:00,0,382925628.9,0,497345458.6,87026.3912,129875.0321,780845124,880271087.5,283760787.3,0 + 08/05 14:00:00,0,420152067.2,0,557796231,87026.3912,129875.0321,780845124,977948298.1,283760787.3,0 + 08/05 15:00:00,0,399615243.8,0,541675476.1,130539.5868,194812.5482,1171267686,941290719.8,283760787.3,0 + 08/05 16:00:00,0,373494602,0,519657722.5,217740.5446,324948.0973,1953679111,893152324.5,283760787.3,0 + 08/05 17:00:00,0,304805189.6,0,436591704.9,217740.5446,324948.0973,1953679111,741396894.4,354700984.2,0 + 08/05 18:00:00,0,105873904.8,0,158386186.5,305578.5265,456034.3179,2741806240,264260091.3,141880393.7,0 + 08/05 19:00:00,0,340666224.9,0,529806694.9,305807.1532,456375.5121,2743857595,870472919.7,638461771.5,0 + 08/05 20:00:00,0,651263800.6,0,1001823382,174848.2041,260937.1228,1568827177,1653087183,638461771.5,702307948.6 + 08/05 21:00:00,0,489134364.5,0,757326492,175046.4981,261233.0495,1570606371,1246460857,496581377.8,702307948.6 + 08/05 22:00:00,0,364173108,0,573314315,87570.20432,130686.5991,785724492.5,937487423,354700984.2,702307948.6 + 08/05 23:00:00,0,298273732.7,0,476682896.1,87605.47633,130739.2378,786040970.9,774956628.8,354700984.2,624273732.1 + 08/05 24:00:00,0,216046597.2,0,351291975.3,43802.73816,65369.6189,393020485.4,567338572.5,354700984.2,468205299.1 + 08/06 01:00:00,0,14446734.51,0,69448471.55,43802.73816,65369.6189,393020485.4,83895206.05,212820590.5,234102649.5 + 08/06 02:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/06 03:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/06 04:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 08/06 05:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/06 06:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/06 07:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,141880393.7,156068433 + 08/06 08:00:00,0,229380198.6,0,414817866.6,350682.7538,523346.2321,3146504349,644198065.3,567521574.6,390171082.6 + 08/06 09:00:00,0,359163962.3,0,596731209.6,306619.1671,457587.3323,2751143398,955895172,567521574.6,390171082.6 + 08/06 10:00:00,0,183468056.7,0,317111570.3,218700.6831,326380.9731,1962293962,500579627,283760787.3,0 + 08/06 11:00:00,0,262696223.8,0,380795944.2,174746.9447,260786.0069,1567918626,643492168.1,283760787.3,0 + 08/06 12:00:00,0,367786647.6,0,404582247.1,87237.86852,130190.6332,782742606.3,772368894.7,283760787.3,0 + 08/06 13:00:00,0,418913712.3,0,438669235.5,87237.86852,130190.6332,782742606.3,857582947.8,283760787.3,0 + 08/06 14:00:00,0,449605378.9,0,541951039.9,87237.86852,130190.6332,782742606.3,991556418.8,283760787.3,0 + 08/06 15:00:00,0,451313064.7,0,649601178.1,130856.8028,195285.9498,1174113909,1100914243,283760787.3,0 + 08/06 16:00:00,0,405005568.8,0,715002873.9,218094.6713,325476.5831,1956856516,1120008443,283760787.3,0 + 08/06 17:00:00,0,349195458.1,0,736886663.4,218270.3761,325738.7985,1958433029,1086082121,354700984.2,0 + 08/06 18:00:00,0,199374899.2,0,604131343.9,305984.3571,456639.9648,2745447559,803506243.1,141880393.7,0 + 08/06 19:00:00,0,308541757.5,0,733392631.2,306331.3716,457157.8367,2748561150,1041934389,638461771.5,0 + 08/06 20:00:00,0,448264011.2,0,704457626.5,175444.6696,261827.2663,1574178970,1152721638,638461771.5,702307948.6 + 08/06 21:00:00,0,337376709.6,0,537486658.6,175475.6666,261873.5251,1574457090,874863368.1,496581377.8,702307948.6 + 08/06 22:00:00,0,222318255.7,0,367243809.9,87763.97715,130975.7787,787463121,589562065.6,354700984.2,702307948.6 + 08/06 23:00:00,0,141191492.4,0,247275762.8,87763.85009,130975.5891,787461980.9,388467255.2,354700984.2,624273732.1 + 08/06 24:00:00,0,44016388.84,0,102023183.6,43879.50333,65484.18046,393709261.7,146039572.4,354700984.2,468205299.1 + 08/07 01:00:00,0,0,0,0,43868.42139,65467.64217,393609828.8,0,212820590.5,234102649.5 + 08/07 02:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 08/07 03:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 08/07 04:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 08/07 05:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 08/07 06:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 08/07 07:00:00,0,0,0,0,87763.97715,130975.7787,787463121,0,141880393.7,156068433 + 08/07 08:00:00,0,148043235.4,0,202681835.8,350796.2366,523515.5897,3147522575,350725071.2,567521574.6,390171082.6 + 08/07 09:00:00,0,397512393.9,0,676772491,306619.1671,457587.3323,2751143398,1074284885,567521574.6,390171082.6 + 08/07 10:00:00,0,194630059.9,0,362945605.8,218808.1226,326541.3119,1963257964,557575665.7,283760787.3,0 + 08/07 11:00:00,0,291745826.6,0,420784577.6,174746.9447,260786.0069,1567918626,712530404.2,283760787.3,0 + 08/07 12:00:00,0,367547230.9,0,395861194.4,87373.47233,130393.0035,783959312.8,763408425.3,283760787.3,0 + 08/07 13:00:00,0,497624500.5,0,514871973.7,87308.15043,130295.5194,783373211.4,1012496474,283760787.3,0 + 08/07 14:00:00,0,588886955.4,0,721037084.2,87175.52883,130097.5997,782183262.8,1309924040,283760787.3,0 + 08/07 15:00:00,0,632595255.9,0,883014304.8,130539.5868,194812.5482,1171267686,1515609561,283760787.3,0 + 08/07 16:00:00,0,596135113,0,932926596.3,217740.5446,324948.0973,1953679111,1529061709,283760787.3,0 + 08/07 17:00:00,0,524706424.8,0,904172016.9,217938.8221,325243.9994,1955458157,1428878442,354700984.2,0 + 08/07 18:00:00,0,352546511.9,0,699680630.3,305332.5398,455667.2163,2739599122,1052227142,141880393.7,0 + 08/07 19:00:00,0,509844103.4,0,891381645.6,305807.1532,456375.5121,2743857595,1401225749,638461771.5,0 + 08/07 20:00:00,0,741050536.2,0,1093830943,174960.5465,261104.7785,1569835170,1834881479,638461771.5,702307948.6 + 08/07 21:00:00,0,634665935.7,0,948049294.9,175046.4981,261233.0495,1570606371,1582715231,496581377.8,702307948.6 + 08/07 22:00:00,0,510260832.5,0,768757198.2,87643.16119,130795.4773,786379098.7,1279018031,354700984.2,702307948.6 + 08/07 23:00:00,0,452699967.5,0,686075981.2,87605.47633,130739.2378,786040970.9,1138775949,354700984.2,624273732.1 + 08/07 24:00:00,0,347966146.7,0,533469418.1,43835.34423,65418.27901,393313043.7,881435564.8,354700984.2,468205299.1 + 08/08 01:00:00,0,91289880.05,0,153917237.9,43868.91665,65468.38128,393614272.6,245207117.9,212820590.5,234102649.5 + 08/08 02:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/08 03:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/08 04:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/08 05:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/08 06:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/08 07:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,141880393.7,156068433 + 08/08 08:00:00,0,335930650.2,0,498104174.9,350796.2366,523515.5897,3147522575,834034825.1,567521574.6,390171082.6 + 08/08 09:00:00,0,276299960.8,0,415626262.5,306946.707,458076.141,2754082253,691926223.3,567521574.6,390171082.6 + 08/08 10:00:00,0,0,0,0,219247.6479,327197.2435,1967201609,0,283760787.3,0 + 08/08 11:00:00,0,0,0,0,175341.3769,261673.116,1573252175,0,283760787.3,0 + 08/08 12:00:00,1267425.363,0,0,0,87670.68846,130836.558,787893512.7,0,283760787.3,0 + 08/08 13:00:00,49500681.96,0,61907496.98,0,87643.16119,130795.4773,897787277.6,0,283760787.3,0 + 08/08 14:00:00,13139699.06,0,15679035.96,0,87605.47633,130739.2378,814859705.9,0,283760787.3,0 + 08/08 15:00:00,0,0,0,0,131408.2145,196108.8567,1179061456,0,283760787.3,0 + 08/08 16:00:00,0,0,0,0,218925.5108,326716.4979,1964311231,0,283760787.3,0 + 08/08 17:00:00,0,0,0,0,218925.5108,326716.4979,1964311231,0,354700984.2,0 + 08/08 18:00:00,0,0,0,0,306495.7151,457403.097,2750035724,0,141880393.7,0 + 08/08 19:00:00,0,0,0,0,306495.7151,457403.097,2750035724,0,638461771.5,0 + 08/08 20:00:00,0,446055481.3,0,747564322.6,175140.4086,261373.1983,1571448985,1193619804,638461771.5,702307948.6 + 08/08 21:00:00,0,402527955.1,0,636590593.7,175140.4086,261373.1983,1571448985,1039118549,496581377.8,702307948.6 + 08/08 22:00:00,0,331077326.9,0,527469617.1,87570.20432,130686.5991,785724492.5,858546944,354700984.2,702307948.6 + 08/08 23:00:00,0,295869229.9,0,473352343.8,87570.20432,130686.5991,785724492.5,769221573.8,354700984.2,624273732.1 + 08/08 24:00:00,0,222659994.1,0,361810829.2,43785.10216,65343.29957,392862246.2,584470823.3,354700984.2,468205299.1 + 08/09 01:00:00,0,28860699.8,0,92151337.77,43785.10216,65343.29957,392862246.2,121012037.6,212820590.5,234102649.5 + 08/09 02:00:00,0,0,0,0,21892.55108,32671.64979,196431123.1,0,141880393.7,0 + 08/09 03:00:00,0,0,0,0,21892.55108,32671.64979,196431123.1,0,141880393.7,0 + 08/09 04:00:00,0,0,0,0,21892.55108,32671.64979,196431123.1,0,141880393.7,0 + 08/09 05:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/09 06:00:00,0,0,0,0,21892.55108,32671.64979,196431123.1,0,141880393.7,0 + 08/09 07:00:00,0,0,0,0,87523.24903,130616.5248,785303185.7,0,141880393.7,156068433 + 08/09 08:00:00,0,340097908.8,0,528563311.5,350092.9961,522466.0991,3141212743,868661220.3,567521574.6,390171082.6 + 08/09 09:00:00,0,336846102,0,522844954.9,306331.3716,457157.8367,2748561150,859691056.9,567521574.6,390171082.6 + 08/09 10:00:00,0,0,0,0,218808.1226,326541.3119,1963257964,0,283760787.3,0 + 08/09 11:00:00,0,0,0,0,175046.4981,261233.0495,1570606371,0,283760787.3,0 + 08/09 12:00:00,0,0,0,0,87480.27323,130552.3892,784917584.9,0,283760787.3,0 + 08/09 13:00:00,0,0,0,0,87424.10203,130468.5614,784413588.3,0,283760787.3,0 + 08/09 14:00:00,0,0,0,0,87480.27323,130552.3892,784917584.9,0,283760787.3,0 + 08/09 15:00:00,0,0,0,0,131220.4099,195828.5839,1177376377,0,283760787.3,0 + 08/09 16:00:00,0,0,0,0,218700.6831,326380.9731,1962293962,0,283760787.3,0 + 08/09 17:00:00,0,0,0,0,218700.6831,326380.9731,1962293962,0,354700984.2,0 + 08/09 18:00:00,0,0,0,0,306331.3716,457157.8367,2748561150,0,141880393.7,0 + 08/09 19:00:00,0,59458449.46,0,183499469.5,306331.3716,457157.8367,2748561150,242957919,638461771.5,0 + 08/09 20:00:00,0,631261253.7,0,954065742,175046.4981,261233.0495,1570606371,1585326996,638461771.5,702307948.6 + 08/09 21:00:00,0,464868510.3,0,729337464.4,175140.4086,261373.1983,1571448985,1194205975,496581377.8,702307948.6 + 08/09 22:00:00,0,357947779.8,0,567870177.7,87570.20432,130686.5991,785724492.5,925817957.5,354700984.2,702307948.6 + 08/09 23:00:00,0,314185491.2,0,501026453.4,87570.20432,130686.5991,785724492.5,815211944.5,354700984.2,624273732.1 + 08/09 24:00:00,0,241587823.8,0,389732713.1,43785.10216,65343.29957,392862246.2,631320536.9,354700984.2,468205299.1 + 08/10 01:00:00,0,26494718.48,0,87120001.09,43802.73816,65369.6189,393020485.4,113614719.6,212820590.5,234102649.5 + 08/10 02:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/10 03:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/10 04:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/10 05:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/10 06:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 08/10 07:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,156068433 + 08/10 08:00:00,0,184316784.8,0,290035816,87605.47633,130739.2378,786040970.9,474352600.8,567521574.6,390171082.6 + 08/10 09:00:00,0,278473234.3,0,454791221.3,218925.5108,326716.4979,1964311231,733264455.6,567521574.6,390171082.6 + 08/10 10:00:00,0,0,0,0,218808.1226,326541.3119,1963257964,0,283760787.3,0 + 08/10 11:00:00,0,0,0,0,218560.2551,326171.4034,1961033971,0,283760787.3,0 + 08/10 12:00:00,0,26892056.72,0,57202975.26,131220.4099,195828.5839,1177376377,84095031.97,283760787.3,0 + 08/10 13:00:00,0,35270463.15,0,61566015.11,131220.4099,195828.5839,1177376377,96836478.26,283760787.3,0 + 08/10 14:00:00,0,59496827.97,0,94791971.01,131136.153,195702.8421,1176620382,154288799,283760787.3,0 + 08/10 15:00:00,0,64609705.97,0,102981074.2,131220.4099,195828.5839,1177376377,167590780.2,283760787.3,0 + 08/10 16:00:00,0,4974295.836,0,19530175.45,306180.9563,456933.3624,2747211547,24504471.28,283760787.3,0 + 08/10 17:00:00,0,34010265.41,0,80021338,393661.2296,587485.7516,3532129132,114031603.4,354700984.2,0 + 08/10 18:00:00,0,0,0,4452979.281,306180.9563,456933.3624,2747211547,4452979.281,141880393.7,0 + 08/10 19:00:00,0,194689585.9,0,437617888.2,306331.3716,457157.8367,2748561150,632307474.1,638461771.5,0 + 08/10 20:00:00,0,609957416,0,931083227.5,262710.613,392059.7974,2357173477,1541040643,638461771.5,702307948.6 + 08/10 21:00:00,0,435838554.7,0,686241058.1,219107.903,326988.6933,1965947747,1122079613,496581377.8,702307948.6 + 08/10 22:00:00,0,340300742,0,543310823,175210.9527,261478.4756,1572081942,883611565,354700984.2,702307948.6 + 08/10 23:00:00,0,277406842.1,0,450549731.6,131506.0327,196254.837,1179939131,727956573.7,354700984.2,624273732.1 + 08/10 24:00:00,0,147633426.2,0,254591010,87722.33481,130913.6332,787089484.8,402224436.2,354700984.2,468205299.1 + 08/11 01:00:00,0,0,0,0,43861.16741,65456.81659,393544742.4,0,212820590.5,234102649.5 + 08/11 02:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/11 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/11 04:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 08/11 05:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/11 06:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/11 07:00:00,0,12026135.67,0,0,21924.76479,32719.72435,196720160.9,12026135.67,141880393.7,156068433 + 08/11 08:00:00,0,424937393.7,0,683614143.7,21892.55108,32671.64979,196431123.1,1108551537,567521574.6,390171082.6 + 08/11 09:00:00,0,595697677.6,0,986711379.8,87308.15043,130295.5194,783373211.4,1582409057,567521574.6,390171082.6 + 08/11 10:00:00,0,443734109.1,0,752892448.1,130539.5868,194812.5482,1171267686,1196626557,283760787.3,0 + 08/11 11:00:00,0,676323882.4,0,940459078.1,130018.919,194035.5225,1166595989,1616782961,283760787.3,0 + 08/11 12:00:00,0,879251020.8,0,1041769608,86462.96442,129034.1944,775789771.9,1921020629,283760787.3,0 + 08/11 13:00:00,0,1012042416,0,1187752931,86248.26636,128713.7868,773863391.5,2199795346,283760787.3,0 + 08/11 14:00:00,0,1067381997,0,1374763405,129218.335,192840.76,1159412742,2442145401,283760787.3,0 + 08/11 15:00:00,0,1106791320,0,1551229170,172036.2574,256740.6755,1543596959,2658020489,283760787.3,0 + 08/11 16:00:00,0,1003002094,0,1603446727,215045.3218,320925.8444,1929496198,2606448821,283760787.3,0 + 08/11 17:00:00,0,903515578.7,0,1629934131,258436.6701,385681.52,2318825484,2533449710,354700984.2,0 + 08/11 18:00:00,0,589864649.3,0,1358892771,302620.3755,451619.6806,2715264202,1948757420,141880393.7,0 + 08/11 19:00:00,0,683999109.9,0,1331174036,173876.2865,259486.6682,1560106637,2015173145,638461771.5,0 + 08/11 20:00:00,0,890120189,0,1341662362,130763.2932,195146.3996,1173274894,2231782551,638461771.5,702307948.6 + 08/11 21:00:00,0,749008166.6,0,1142361138,87308.15043,130295.5194,783373211.4,1891369305,496581377.8,702307948.6 + 08/11 22:00:00,0,640526393.2,0,979984544.5,87308.15043,130295.5194,783373211.4,1620510938,354700984.2,702307948.6 + 08/11 23:00:00,0,563581724.9,0,862571488.2,87373.47233,130393.0035,783959312.8,1426153213,354700984.2,624273732.1 + 08/11 24:00:00,0,441555178.3,0,665876984.4,87480.27323,130552.3892,784917584.9,1107432163,354700984.2,468205299.1 + 08/12 01:00:00,0,231323599.1,0,362154477.1,43740.13662,65276.19462,392458792.5,593478076.1,212820590.5,234102649.5 + 08/12 02:00:00,0,54284236.33,0,102246745.2,21880.81226,32654.13119,196325796.4,156530981.5,141880393.7,0 + 08/12 03:00:00,0,30904081,0,68745908.18,21880.81226,32654.13119,196325796.4,99649989.17,141880393.7,0 + 08/12 04:00:00,0,16617267.37,0,52839236.84,21880.81226,32654.13119,196325796.4,69456504.22,141880393.7,0 + 08/12 05:00:00,0,17625707.92,0,24291284.01,21892.55108,32671.64979,196431123.1,41916991.93,141880393.7,0 + 08/12 06:00:00,0,397937151.7,0,320185934,21870.06831,32638.09731,196229396.2,718123085.6,141880393.7,0 + 08/12 07:00:00,0,577479527.8,0,879563847.1,87373.47233,130393.0035,783959312.8,1457043375,141880393.7,156068433 + 08/12 08:00:00,0,942413920.3,0,1495997143,348702.1153,520390.399,3128733051,2438411063,567521574.6,390171082.6 + 08/12 09:00:00,0,835894998.1,0,1319140198,304592.3692,454562.6125,2732957934,2155035196,567521574.6,390171082.6 + 08/12 10:00:00,0,584371471.4,0,858445654.6,217345.3581,324358.3352,1950133296,1442817126,283760787.3,0 + 08/12 11:00:00,0,658398908.7,0,894832657.1,173358.5587,258714.03,1555461319,1553231566,283760787.3,0 + 08/12 12:00:00,0,801416411.5,0,979568974.6,86573.475,129199.1164,776781329.1,1780985386,283760787.3,0 + 08/12 13:00:00,0,738532235.5,0,953443389.3,86462.96442,129034.1944,775789771.9,1691975625,283760787.3,0 + 08/12 14:00:00,0,666473105.3,0,908054120.8,86367.30473,128891.4354,774931464.4,1574527226,283760787.3,0 + 08/12 15:00:00,0,674490749.7,0,940959592.3,129860.2125,193798.6746,1165171994,1615450342,283760787.3,0 + 08/12 16:00:00,0,544620397.3,0,762070218.3,216433.6875,322997.7911,1941953323,1306690616,283760787.3,0 + 08/12 17:00:00,0,567921072.1,0,807773071,216157.4111,322585.4861,1939474430,1375694143,354700984.2,0 + 08/12 18:00:00,0,449865041.7,0,686513710.3,303377.4777,452749.5524,2722057308,1136378752,141880393.7,0 + 08/12 19:00:00,0,790169734,0,1150468279,303377.4777,452749.5524,2722057308,1940638013,638461771.5,0 + 08/12 20:00:00,0,1026308398,0,1514886773,173876.2865,259486.6682,1560106637,2541195171,638461771.5,702307948.6 + 08/12 21:00:00,0,827834539.2,0,1230247519,174192.4357,259958.4778,1562943289,2058082058,496581377.8,702307948.6 + 08/12 22:00:00,0,714498744.2,0,1068434523,87096.21786,129979.2389,781471644.4,1782933267,354700984.2,702307948.6 + 08/12 23:00:00,0,663828582.1,0,995725763,87096.21786,129979.2389,781471644.4,1659554345,354700984.2,624273732.1 + 08/12 24:00:00,0,545436125.8,0,824979103.7,43587.76441,65048.79987,391091631.4,1370415229,354700984.2,468205299.1 + 08/13 01:00:00,0,305022439.9,0,469505121.5,43618.93426,65095.31662,391371303.2,774527561.4,212820590.5,234102649.5 + 08/13 02:00:00,0,129353493.1,0,210573813.8,21809.46713,32547.65831,195685651.6,339927306.9,141880393.7,0 + 08/13 03:00:00,0,124778733.5,0,209914654.2,21809.46713,32547.65831,195685651.6,334693387.7,141880393.7,0 + 08/13 04:00:00,0,62406790.8,0,122591112.4,21856.02551,32617.14034,196103397.1,184997903.2,141880393.7,0 + 08/13 05:00:00,0,57230905.81,0,80097047.26,21856.02551,32617.14034,196103397.1,137327953.1,141880393.7,0 + 08/13 06:00:00,0,368386949.4,0,325625707.2,21856.02551,32617.14034,196103397.1,694012656.6,141880393.7,0 + 08/13 07:00:00,0,542941465.5,0,821188309.2,87373.47233,130393.0035,783959312.8,1364129775,141880393.7,156068433 + 08/13 08:00:00,0,845806424.6,0,1322910952,348702.1153,520390.399,3128733051,2168717376,567521574.6,390171082.6 + 08/13 09:00:00,0,663285682.7,0,983514549.8,305332.5398,455667.2163,2739599122,1646800232,567521574.6,390171082.6 + 08/13 10:00:00,0,315251872,0,437441576.7,217565.978,324687.5804,1952112810,752693448.7,283760787.3,0 + 08/13 11:00:00,0,450957799.5,0,613397887.4,174052.7824,259750.0643,1561690248,1064355687,283760787.3,0 + 08/13 12:00:00,0,534483158.3,0,651937040.6,86860.91066,129628.075,779360348.3,1186420199,283760787.3,0 + 08/13 13:00:00,0,638731095.1,0,763987455.6,86860.91066,129628.075,779360348.3,1402718551,283760787.3,0 + 08/13 14:00:00,0,720088679.2,0,914820303.7,86860.91066,129628.075,779360348.3,1634908983,283760787.3,0 + 08/13 15:00:00,0,676756541.4,0,922155580.3,130291.366,194442.1125,1169040523,1598912122,283760787.3,0 + 08/13 16:00:00,0,494426687.8,0,670849739.4,217565.978,324687.5804,1952112810,1165276427,283760787.3,0 + 08/13 17:00:00,0,384619476.5,0,521051454.7,217565.978,324687.5804,1952112810,905670931.2,354700984.2,0 + 08/13 18:00:00,0,253621676.6,0,352538707.4,304836.7625,454927.3362,2735150755,606160384,141880393.7,0 + 08/13 19:00:00,0,562910919.6,0,860168036.2,305114.3509,455341.5991,2737641420,1423078956,638461771.5,0 + 08/13 20:00:00,0,893263614.2,0,1322681595,174475.737,260381.2665,1565485213,2215945209,638461771.5,702307948.6 + 08/13 21:00:00,0,753690286.2,0,1115609239,174616.3009,260591.0388,1566746423,1869299525,496581377.8,702307948.6 + 08/13 22:00:00,0,644901429.5,0,957194692.9,87308.15043,130295.5194,783373211.4,1602096122,354700984.2,702307948.6 + 08/13 23:00:00,0,569602698,0,855318658.2,87308.15043,130295.5194,783373211.4,1424921356,354700984.2,624273732.1 + 08/13 24:00:00,0,470628202.3,0,714353247.7,43654.07521,65147.7597,391686605.7,1184981450,354700984.2,468205299.1 + 08/14 01:00:00,0,256255232.2,0,394881643.5,43686.73617,65196.50173,391979656.4,651136875.7,212820590.5,234102649.5 + 08/14 02:00:00,0,69383477.66,0,117527644.8,21856.02551,32617.14034,196103397.1,186911122.4,141880393.7,0 + 08/14 03:00:00,0,61851668.92,0,112784626.5,21843.36808,32598.25086,195989828.2,174636295.4,141880393.7,0 + 08/14 04:00:00,0,47492445.4,0,99643220.36,21843.36808,32598.25086,195989828.2,147135665.8,141880393.7,0 + 08/14 05:00:00,0,0,0,3419670.47,21910.7903,32698.86933,196594774.7,3419670.47,141880393.7,0 + 08/14 06:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 08/14 07:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,141880393.7,156068433 + 08/14 08:00:00,0,117635386.4,0,181340481,350951.3332,523747.0503,3148914181,298975867.4,567521574.6,390171082.6 + 08/14 09:00:00,0,91501720.22,0,180646065.5,307082.4166,458278.669,2755299908,272147785.8,567521574.6,390171082.6 + 08/14 10:00:00,0,0,0,0,219344.5833,327341.9064,1968071363,0,283760787.3,0 + 08/14 11:00:00,34723755.74,0,46156883.04,0,175475.6666,261873.5251,1655337729,0,283760787.3,0 + 08/14 12:00:00,6997257.21,0,19417311.19,0,87722.33481,130913.6332,813504053.2,0,283760787.3,0 + 08/14 13:00:00,0,0,963426.5442,0,87699.05915,130878.8974,787844070.2,0,283760787.3,0 + 08/14 14:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,283760787.3,0 + 08/14 15:00:00,0,0,0,0,131583.5022,196370.4498,1180634227,0,283760787.3,0 + 08/14 16:00:00,3691072.439,0,14185800.87,0,219305.837,327284.0829,1985600585,0,283760787.3,0 + 08/14 17:00:00,26528100.66,0,27992217,0,219305.837,327284.0829,2022244030,0,354700984.2,0 + 08/14 18:00:00,93028061.57,0,125358764.3,0,307082.4166,458278.669,2973686734,0,141880393.7,0 + 08/14 19:00:00,0,0,0,0,307131.1196,458351.3517,2755736897,0,638461771.5,0 + 08/14 20:00:00,0,51128458.14,0,142739408.7,175503.4969,261915.0581,1574706798,193867866.8,638461771.5,702307948.6 + 08/14 21:00:00,0,203387765.7,0,337916002.5,175503.4969,261915.0581,1574706798,541303768.2,496581377.8,702307948.6 + 08/14 22:00:00,0,130122338.3,0,235874973.5,87751.74847,130957.529,787353399.1,365997311.8,354700984.2,702307948.6 + 08/14 23:00:00,0,87180806.36,0,178312565.3,87751.74847,130957.529,787353399.1,265493371.7,354700984.2,624273732.1 + 08/14 24:00:00,0,10425307.02,0,67417796.66,43875.87423,65478.76452,393676699.5,77843103.68,354700984.2,468205299.1 + 08/15 01:00:00,0,0,0,0,43875.87423,65478.76452,393676699.5,0,212820590.5,234102649.5 + 08/15 02:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/15 03:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/15 04:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/15 05:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/15 06:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/15 07:00:00,0,0,0,0,87737.83331,130936.7626,787228545.1,0,141880393.7,156068433 + 08/15 08:00:00,0,0,0,0,350951.3332,523747.0503,3148914181,0,567521574.6,390171082.6 + 08/15 09:00:00,0,0,0,34221814.36,307082.4166,458278.669,2755299908,34221814.36,567521574.6,390171082.6 + 08/15 10:00:00,0,0,0,0,219344.5833,327341.9064,1968071363,0,283760787.3,0 + 08/15 11:00:00,82777022.25,0,98239990.17,0,175475.6666,261873.5251,1755474103,0,283760787.3,0 + 08/15 12:00:00,11279940.9,0,25320343.27,0,87722.33481,130913.6332,823689768.9,0,283760787.3,0 + 08/15 13:00:00,0,0,11129504.37,0,87722.33481,130913.6332,798218989.1,0,283760787.3,0 + 08/15 14:00:00,8729694.328,0,21590713.63,0,87722.33481,130913.6332,817409892.7,0,283760787.3,0 + 08/15 15:00:00,29702914.55,0,43557073.69,0,131583.5022,196370.4498,1253894215,0,283760787.3,0 + 08/15 16:00:00,50554856.74,0,67240069.98,0,219247.6479,327197.2435,2084996536,0,283760787.3,0 + 08/15 17:00:00,76859404.62,0,96210773.32,0,219247.6479,327197.2435,2140271787,0,354700984.2,0 + 08/15 18:00:00,114449377.3,0,148250936.3,0,306946.707,458076.141,3016782566,0,141880393.7,0 + 08/15 19:00:00,0,0,0,0,306946.707,458076.141,2754082253,0,638461771.5,0 + 08/15 20:00:00,0,221953700.2,0,376108451.5,175444.6696,261827.2663,1574178970,598062151.7,638461771.5,702307948.6 + 08/15 21:00:00,0,216654052.9,0,368655497.1,175444.6696,261827.2663,1574178970,585309550,496581377.8,702307948.6 + 08/15 22:00:00,0,142158476.5,0,260905441.5,87737.83331,130936.7626,787228545.1,403063918,354700984.2,702307948.6 + 08/15 23:00:00,0,97397960.94,0,197641370.9,87737.83331,130936.7626,787228545.1,295039331.8,354700984.2,624273732.1 + 08/15 24:00:00,0,19841208.78,0,87514693.81,43868.91665,65468.38128,393614272.6,107355902.6,354700984.2,468205299.1 + 08/16 01:00:00,0,0,0,0,43868.91665,65468.38128,393614272.6,0,212820590.5,234102649.5 + 08/16 02:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/16 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/16 04:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/16 05:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/16 06:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/16 07:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,141880393.7,156068433 + 08/16 08:00:00,0,0,0,0,350682.7538,523346.2321,3146504349,0,567521574.6,390171082.6 + 08/16 09:00:00,0,207963546.4,0,420435929.8,306495.7151,457403.097,2750035724,628399476.2,567521574.6,390171082.6 + 08/16 10:00:00,0,0,0,0,218925.5108,326716.4979,1964311231,0,283760787.3,0 + 08/16 11:00:00,0,0,0,0,175140.4086,261373.1983,1571448985,0,283760787.3,0 + 08/16 12:00:00,0,0,0,0,87605.47633,130739.2378,786040970.9,0,283760787.3,0 + 08/16 13:00:00,0,0,0,0,87523.24903,130616.5248,785303185.7,0,283760787.3,0 + 08/16 14:00:00,0,74331774.86,0,69796442.42,87523.24903,130616.5248,785303185.7,144128217.3,283760787.3,0 + 08/16 15:00:00,0,231670305,0,323351319.9,131136.153,195702.8421,1176620382,555021624.9,283760787.3,0 + 08/16 16:00:00,0,108029720.9,0,221331942.4,219013.6908,326848.0945,1965102427,329361663.4,283760787.3,0 + 08/16 17:00:00,0,11578144.76,0,72178571.16,219013.6908,326848.0945,1965102427,83756715.93,354700984.2,0 + 08/16 18:00:00,0,0,0,0,306751.0642,457784.1707,2752326845,0,141880393.7,0 + 08/16 19:00:00,0,63913305.07,0,159642824.9,306847.4096,457927.9531,2753191306,223556130,638461771.5,0 + 08/16 20:00:00,0,383108153.5,0,617153780.2,175398.1183,261757.7948,1573761287,1000261934,638461771.5,702307948.6 + 08/16 21:00:00,0,313793109,0,508431031.1,175398.1183,261757.7948,1573761287,822224140.1,496581377.8,702307948.6 + 08/16 22:00:00,0,229546733.3,0,381476618.8,87699.05915,130878.8974,786880643.7,611023352.1,354700984.2,702307948.6 + 08/16 23:00:00,0,178636303.2,0,301389460.1,87699.05915,130878.8974,786880643.7,480025763.2,354700984.2,624273732.1 + 08/16 24:00:00,0,74008038.6,0,154874885.8,43868.91665,65468.38128,393614272.6,228882924.4,354700984.2,468205299.1 + 08/17 01:00:00,0,0,0,0,43861.16741,65456.81659,393544742.4,0,212820590.5,234102649.5 + 08/17 02:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 08/17 03:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 08/17 04:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/17 05:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/17 06:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/17 07:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,156068433 + 08/17 08:00:00,0,442551463,0,698306383.7,87605.47633,130739.2378,786040970.9,1140857847,567521574.6,390171082.6 + 08/17 09:00:00,0,576679520.8,0,953410291.8,218700.6831,326380.9731,1962293962,1530089813,567521574.6,390171082.6 + 08/17 10:00:00,0,374834027.9,0,625649481.4,218270.3761,325738.7985,1958433029,1000483509,283760787.3,0 + 08/17 11:00:00,0,495039621,0,692063343.2,217938.8221,325243.9994,1955458157,1187102964,283760787.3,0 + 08/17 12:00:00,0,635407448.6,0,717811978.4,130644.3268,194968.8584,1172207467,1353219427,283760787.3,0 + 08/17 13:00:00,0,721263739,0,789609574.1,130407.2149,194615.0011,1170079978,1510873313,283760787.3,0 + 08/17 14:00:00,0,735877072.7,0,911623234.3,130291.366,194442.1125,1169040523,1647500307,283760787.3,0 + 08/17 15:00:00,0,714415298.6,0,1014539682,130145.7422,194224.7889,1167733912,1728954981,283760787.3,0 + 08/17 16:00:00,0,618132043,0,1016848544,304592.3692,454562.6125,2732957934,1634980587,283760787.3,0 + 08/17 17:00:00,0,536788176.3,0,990821752.7,391221.6446,583845.0034,3510239933,1527609929,354700984.2,0 + 08/17 18:00:00,0,309615633.2,0,812377186.6,305332.5398,455667.2163,2739599122,1121992820,141880393.7,0 + 08/17 19:00:00,0,373847500.9,0,725392425.6,306495.7151,457403.097,2750035724,1099239927,638461771.5,0 + 08/17 20:00:00,0,585477868.9,0,879904216.3,262710.613,392059.7974,2357173477,1465382085,638461771.5,702307948.6 + 08/17 21:00:00,0,423419160.4,0,653363004.3,219379.3712,327393.8226,1968383498,1076782165,496581377.8,702307948.6 + 08/17 22:00:00,0,270162466.9,0,431503979.9,175527.7002,261951.1781,1574923962,701666446.8,354700984.2,702307948.6 + 08/17 23:00:00,0,195164979.2,0,322789539.4,131645.7751,196463.3836,1181192971,517954518.6,354700984.2,624273732.1 + 08/17 24:00:00,0,116784995.1,0,207697054.4,87763.97715,130975.7787,787463121,324482049.6,354700984.2,468205299.1 + 08/18 01:00:00,0,0,0,0,43875.53125,65478.25267,393673622.1,0,212820590.5,234102649.5 + 08/18 02:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/18 03:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 08/18 04:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 08/18 05:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 08/18 06:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 08/18 07:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,156068433 + 08/18 08:00:00,0,314132613.8,0,481112079.3,21924.76479,32719.72435,196720160.9,795244693.2,567521574.6,390171082.6 + 08/18 09:00:00,0,482324332.7,0,823283888.6,87643.16119,130795.4773,786379098.7,1305608221,567521574.6,390171082.6 + 08/18 10:00:00,0,296884469.5,0,517479199.6,131284.8735,195924.7872,1177954779,814363669.1,283760787.3,0 + 08/18 11:00:00,0,411590956.4,0,572154979.9,131060.2085,195589.5052,1175938969,983745936.3,283760787.3,0 + 08/18 12:00:00,0,594497838.5,0,659766968.2,87237.86852,130190.6332,782742606.3,1254264807,283760787.3,0 + 08/18 13:00:00,0,706434241.9,0,759831350.4,87096.21786,129979.2389,781471644.4,1466265592,283760787.3,0 + 08/18 14:00:00,0,750857231.5,0,909301325.2,130539.5868,194812.5482,1171267686,1660158557,283760787.3,0 + 08/18 15:00:00,0,719320114.5,0,1000873409,174192.4357,259958.4778,1562943289,1720193523,283760787.3,0 + 08/18 16:00:00,0,668709444.6,0,1086811074,217345.3581,324358.3352,1950133296,1755520519,283760787.3,0 + 08/18 17:00:00,0,608892483.7,0,1118498400,261288.6536,389937.7168,2344414933,1727390884,354700984.2,0 + 08/18 18:00:00,0,368387194.4,0,906448868.5,305332.5398,455667.2163,2739599122,1274836063,141880393.7,0 + 08/18 19:00:00,0,462248818.5,0,857525023.2,175046.4981,261233.0495,1570606371,1319773842,638461771.5,0 + 08/18 20:00:00,0,671785483.5,0,999430780.9,131464.7418,196193.216,1179568648,1671216264,638461771.5,702307948.6 + 08/18 21:00:00,0,520264269.1,0,792703639.2,87722.33481,130913.6332,787089484.8,1312967908,496581377.8,702307948.6 + 08/18 22:00:00,0,412772907.4,0,637543527.8,87722.33481,130913.6332,787089484.8,1050316435,354700984.2,702307948.6 + 08/18 23:00:00,0,349868760.8,0,546899949.5,87737.83331,130936.7626,787228545.1,896768710.3,354700984.2,624273732.1 + 08/18 24:00:00,0,228369087.2,0,369249392.1,87759.43865,130969.0056,787422399.2,597618479.3,354700984.2,468205299.1 + 08/19 01:00:00,0,14414049.9,0,52151006.49,43879.71932,65484.50279,393711199.6,66565056.39,212820590.5,234102649.5 + 08/19 02:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 08/19 03:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 08/19 04:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/19 05:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 08/19 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/19 07:00:00,0,49373362.31,0,0,87751.74847,130957.529,787353399.1,49373362.31,141880393.7,156068433 + 08/19 08:00:00,0,634356988,0,1010577734,350682.7538,523346.2321,3146504349,1644934722,567521574.6,390171082.6 + 08/19 09:00:00,0,663532677.7,0,1095882854,305984.3571,456639.9648,2745447559,1759415532,567521574.6,390171082.6 + 08/19 10:00:00,0,435929504.4,0,723670538.6,218094.6713,325476.5831,1956856516,1159600043,283760787.3,0 + 08/19 11:00:00,0,570837232.2,0,786711030.8,174052.7824,259750.0643,1561690248,1357548263,283760787.3,0 + 08/19 12:00:00,0,718047433.5,0,817570062.2,86938.14323,129743.3341,780053318.3,1535617496,283760787.3,0 + 08/19 13:00:00,0,802277424.8,0,881196954.2,86763.82816,129483.1926,778489274.7,1683474379,283760787.3,0 + 08/19 14:00:00,0,835700753.6,0,1031829707,86573.475,129199.1164,776781329.1,1867530460,283760787.3,0 + 08/19 15:00:00,0,790385134.7,0,1120182505,129860.2125,193798.6746,1165171994,1910567640,283760787.3,0 + 08/19 16:00:00,0,712551847.2,0,1161931348,216433.6875,322997.7911,1941953323,1874483195,283760787.3,0 + 08/19 17:00:00,0,670696642.2,0,1234015401,216909.5704,323707.9815,1946223187,1904712043,354700984.2,0 + 08/19 18:00:00,0,395787686.3,0,962338815.6,304283.5013,454101.6693,2730186614,1358126502,141880393.7,0 + 08/19 19:00:00,0,558681358.2,0,976494876.2,305578.5265,456034.3179,2741806240,1535176234,638461771.5,0 + 08/19 20:00:00,0,781086513.7,0,1186158552,174960.5465,261104.7785,1569835170,1967245066,638461771.5,702307948.6 + 08/19 21:00:00,0,672407329.1,0,1027548493,174960.5465,261104.7785,1569835170,1699955823,496581377.8,702307948.6 + 08/19 22:00:00,0,549581520.7,0,845981651.5,87570.20432,130686.5991,785724492.5,1395563172,354700984.2,702307948.6 + 08/19 23:00:00,0,452552819.5,0,702045112.9,87605.47633,130739.2378,786040970.9,1154597932,354700984.2,624273732.1 + 08/19 24:00:00,0,356196920.8,0,558671493.8,43785.10216,65343.29957,392862246.2,914868414.6,354700984.2,468205299.1 + 08/20 01:00:00,0,116168523.6,0,200638179.5,43849.52958,65439.44871,393440321.8,316806703.1,212820590.5,234102649.5 + 08/20 02:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/20 03:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/20 04:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 08/20 05:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/20 06:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/20 07:00:00,0,270635844.4,0,401162722.8,87605.47633,130739.2378,786040970.9,671798567.2,141880393.7,156068433 + 08/20 08:00:00,0,645474737.9,0,1012634401,350092.9961,522466.0991,3141212743,1658109138,567521574.6,390171082.6 + 08/20 09:00:00,0,565863881.5,0,844296970.7,306180.9563,456933.3624,2747211547,1410160852,567521574.6,390171082.6 + 08/20 10:00:00,0,213694035.5,0,289481963.6,218560.2551,326171.4034,1961033971,503175999.1,283760787.3,0 + 08/20 11:00:00,0,333476569.2,0,440599467.2,174616.3009,260591.0388,1566746423,774076036.4,283760787.3,0 + 08/20 12:00:00,0,382272516,0,467564112.8,86938.14323,129743.3341,780053318.3,849836628.9,283760787.3,0 + 08/20 13:00:00,0,681056556.9,0,765565030.5,86763.82816,129483.1926,778489274.7,1446621587,283760787.3,0 + 08/20 14:00:00,0,743168689.9,0,936569975.2,86462.96442,129034.1944,775789771.9,1679738665,283760787.3,0 + 08/20 15:00:00,0,830241111.5,0,1161531487,129694.4466,193551.2917,1163684658,1991772598,283760787.3,0 + 08/20 16:00:00,0,737114930.8,0,1179492456,215918.2618,322228.5885,1937328661,1916607386,283760787.3,0 + 08/20 17:00:00,0,650882842.1,0,1144593051,216157.4111,322585.4861,1939474430,1795475894,354700984.2,0 + 08/20 18:00:00,0,405815076.1,0,940349721.3,303673.3986,453191.174,2724712461,1346164797,141880393.7,0 + 08/20 19:00:00,0,571889527.7,0,963132687.4,304836.7625,454927.3362,2735150755,1535022215,638461771.5,0 + 08/20 20:00:00,0,891271676.7,0,1293258184,174192.4357,259958.4778,1562943289,2184529861,638461771.5,702307948.6 + 08/20 21:00:00,0,770727013.6,0,1152544637,174475.737,260381.2665,1565485213,1923271650,496581377.8,702307948.6 + 08/20 22:00:00,0,680953803.3,0,1028122960,87237.86852,130190.6332,782742606.3,1709076763,354700984.2,702307948.6 + 08/20 23:00:00,0,653942288.2,0,990395209,87175.52883,130097.5997,782183262.8,1644337497,354700984.2,624273732.1 + 08/20 24:00:00,0,560348842.4,0,852161887,43618.93426,65095.31662,391371303.2,1412510729,354700984.2,468205299.1 + 08/21 01:00:00,0,352104810.7,0,541833991.1,43618.93426,65095.31662,391371303.2,893938801.8,212820590.5,234102649.5 + 08/21 02:00:00,0,168633419.2,0,268076919.2,21827.03761,32573.87985,195843302.9,436710338.4,141880393.7,0 + 08/21 03:00:00,0,135633353.1,0,220324173.1,21843.36808,32598.25086,195989828.2,355957526.2,141880393.7,0 + 08/21 04:00:00,0,116968078.2,0,193655795.9,21843.36808,32598.25086,195989828.2,310623874.1,141880393.7,0 + 08/21 05:00:00,0,77365599.82,0,130176728,21870.06831,32638.09731,196229396.2,207542327.8,141880393.7,0 + 08/21 06:00:00,0,172060654.8,0,204887549.8,21856.02551,32617.14034,196103397.1,376948204.6,141880393.7,0 + 08/21 07:00:00,0,476039643,0,710858252.7,87308.15043,130295.5194,783373211.4,1186897896,141880393.7,156068433 + 08/21 08:00:00,0,965084801.8,0,1489067553,348384.8714,519916.9557,3125886578,2454152354,567521574.6,390171082.6 + 08/21 09:00:00,0,913706580.3,0,1463361428,304013.1873,453698.2625,2727761219,2377068008,567521574.6,390171082.6 + 08/21 10:00:00,0,600451540.7,0,966420737.1,216698.1983,323392.5375,1944326649,1566872278,283760787.3,0 + 08/21 11:00:00,0,810581210.9,0,1125571907,172734.6095,257782.8708,1549862929,1936153117,283760787.3,0 + 08/21 12:00:00,0,1022811478,0,1217371431,86018.12872,128370.3378,771798479.4,2240182909,283760787.3,0 + 08/21 13:00:00,0,1174784538,0,1382654305,85772.81869,128004.246,769597432.7,2557438843,283760787.3,0 + 08/21 14:00:00,0,1226610607,0,1593378378,85656.37484,127830.4694,768552639.2,2819988985,283760787.3,0 + 08/21 15:00:00,0,1215164668,0,1701226146,128268.9315,191423.9046,1150894210,2916390814,283760787.3,0 + 08/21 16:00:00,0,1122592149,0,1795548981,213781.5526,319039.841,1918157017,2918141130,283760787.3,0 + 08/21 17:00:00,0,1023976910,0,1814998909,213781.5526,319039.841,1918157017,2838975820,354700984.2,0 + 08/21 18:00:00,0,744975515.3,0,1527959821,300679.7091,448723.5005,2697851555,2272935336,141880393.7,0 + 08/21 19:00:00,0,994089142.2,0,1517984160,301509.4484,449961.7733,2705296398,2512073303,638461771.5,0 + 08/21 20:00:00,0,1288118414,0,1874266091,172734.6095,257782.8708,1549862929,3162384505,638461771.5,702307948.6 + 08/21 21:00:00,0,1099609957,0,1630668485,173146.95,258398.2328,1553562658,2730278442,496581377.8,702307948.6 + 08/21 22:00:00,0,954274238.7,0,1421572147,86763.82816,129483.1926,778489274.7,2375846386,354700984.2,702307948.6 + 08/21 23:00:00,0,867486278,0,1294821535,86860.91066,129628.075,779360348.3,2162307813,354700984.2,624273732.1 + 08/21 24:00:00,0,776549594.8,0,1160693653,43430.45533,64814.03749,389680174.2,1937243248,354700984.2,468205299.1 + 08/22 01:00:00,0,552252028.9,0,826921217.4,43469.07162,64871.66704,390026659.2,1379173246,212820590.5,234102649.5 + 08/22 02:00:00,0,370387377,0,555423141.8,21734.53581,32435.83352,195013329.6,925810518.8,141880393.7,0 + 08/22 03:00:00,0,377345782.4,0,567170213.5,21734.53581,32435.83352,195013329.6,944515995.8,141880393.7,0 + 08/22 04:00:00,0,353306516.8,0,533276018.8,21756.5978,32468.75804,195211281,886582535.6,141880393.7,0 + 08/22 05:00:00,0,330893672.2,0,500721888.9,21756.5978,32468.75804,195211281,831615561.2,141880393.7,0 + 08/22 06:00:00,0,320433256.1,0,481416624.5,21774.05446,32494.80973,195367911.1,801849880.6,141880393.7,0 + 08/22 07:00:00,0,492091777.4,0,735342294.9,87096.21786,129979.2389,781471644.4,1227434072,141880393.7,156068433 + 08/22 08:00:00,0,930419848.4,0,1417929308,347752.5729,518973.3363,3120213273,2348349156,567521574.6,390171082.6 + 08/22 09:00:00,0,1007653669,0,1582467092,303673.3986,453191.174,2724712461,2590120761,567521574.6,390171082.6 + 08/22 10:00:00,0,653541670.1,0,1032102309,216433.6875,322997.7911,1941953323,1685643979,283760787.3,0 + 08/22 11:00:00,0,824398946.1,0,1140168536,172925.9288,258068.3889,1551579544,1964567482,283760787.3,0 + 08/22 12:00:00,0,1002286897,0,1213340932,86248.26636,128713.7868,773863391.5,2215627829,283760787.3,0 + 08/22 13:00:00,0,1127911598,0,1305594379,85908.48833,128206.7144,770814729.9,2433505977,283760787.3,0 + 08/22 14:00:00,0,1194771017,0,1492556452,85772.81869,128004.246,769597432.7,2687327469,283760787.3,0 + 08/22 15:00:00,0,1141518326,0,1565799814,128862.7325,192310.0716,1156222095,2707318140,283760787.3,0 + 08/22 16:00:00,0,1015222012,0,1540068730,215045.3218,320925.8444,1929496198,2555290742,283760787.3,0 + 08/22 17:00:00,0,881443581.6,0,1490123495,215620.6659,321784.4671,1934658479,2371567077,354700984.2,0 + 08/22 18:00:00,0,574114045.9,0,1210155023,302620.3755,451619.6806,2715264202,1784269068,141880393.7,0 + 08/22 19:00:00,0,723853345.7,0,1165027083,303673.3986,453191.174,2724712461,1888880429,638461771.5,0 + 08/22 20:00:00,0,1007195347,0,1455610211,173876.2865,259486.6682,1560106637,2462805558,638461771.5,702307948.6 + 08/22 21:00:00,0,879412394.5,0,1301670575,173876.2865,259486.6682,1560106637,2181082970,496581377.8,702307948.6 + 08/22 22:00:00,0,793974190.2,0,1183894807,86763.82816,129483.1926,778489274.7,1977868997,354700984.2,702307948.6 + 08/22 23:00:00,0,658216770.5,0,990212535.5,87175.52883,130097.5997,782183262.8,1648429306,354700984.2,624273732.1 + 08/22 24:00:00,0,508913571,0,774558693.5,43618.93426,65095.31662,391371303.2,1283472264,354700984.2,468205299.1 + 08/23 01:00:00,0,280058275.7,0,435490001.2,43654.07521,65147.7597,391686605.7,715548276.8,212820590.5,234102649.5 + 08/23 02:00:00,0,94522562.13,0,163412196.7,21827.03761,32573.87985,195843302.9,257934758.9,141880393.7,0 + 08/23 03:00:00,0,52925072.93,0,111664472.1,21843.36808,32598.25086,195989828.2,164589545,141880393.7,0 + 08/23 04:00:00,0,25626889.57,0,77781468.79,21843.36808,32598.25086,195989828.2,103408358.4,141880393.7,0 + 08/23 05:00:00,0,0,0,6776903.628,21892.55108,32671.64979,196431123.1,6776903.628,141880393.7,0 + 08/23 06:00:00,0,283959146.8,0,199597453.3,21870.06831,32638.09731,196229396.2,483556600,141880393.7,0 + 08/23 07:00:00,0,584784839.1,0,889765011.6,87424.10203,130468.5614,784413588.3,1474549851,141880393.7,156068433 + 08/23 08:00:00,0,841908486.8,0,1358219155,349232.6017,521182.0776,3133492846,2200127641,567521574.6,390171082.6 + 08/23 09:00:00,0,770750645.7,0,1272968287,305114.3509,455341.5991,2737641420,2043718933,567521574.6,390171082.6 + 08/23 10:00:00,0,467289164.5,0,773870473.8,217740.5446,324948.0973,1953679111,1241159638,283760787.3,0 + 08/23 11:00:00,0,491211118.9,0,677656947.5,174192.4357,259958.4778,1562943289,1168868066,283760787.3,0 + 08/23 12:00:00,0,506670566.5,0,603697915.5,86938.14323,129743.3341,780053318.3,1110368482,283760787.3,0 + 08/23 13:00:00,0,602387439.4,0,675420157.9,86938.14323,129743.3341,780053318.3,1277807597,283760787.3,0 + 08/23 14:00:00,0,659159611.3,0,798259559.1,86938.14323,129743.3341,780053318.3,1457419170,283760787.3,0 + 08/23 15:00:00,0,646463398.4,0,909446328.8,130291.366,194442.1125,1169040523,1555909727,283760787.3,0 + 08/23 16:00:00,0,578138451.7,0,970951168.7,217345.3581,324358.3352,1950133296,1549089620,283760787.3,0 + 08/23 17:00:00,0,488467858.8,0,948481102.9,217565.978,324687.5804,1952112810,1436948962,354700984.2,0 + 08/23 18:00:00,0,238870123.8,0,671705430.6,305332.5398,455667.2163,2739599122,910575554.3,141880393.7,0 + 08/23 19:00:00,0,325328198.8,0,566655291.1,306751.0642,457784.1707,2752326845,891983490,638461771.5,0 + 08/23 20:00:00,0,563010181.5,0,855488980.4,175210.9527,261478.4756,1572081942,1418499162,638461771.5,702307948.6 + 08/23 21:00:00,0,450654343.7,0,692949245.3,175286.3224,261590.9547,1572758197,1143603589,496581377.8,702307948.6 + 08/23 22:00:00,0,329347973.3,0,514357865.3,87699.05915,130878.8974,786880643.7,843705838.6,354700984.2,702307948.6 + 08/23 23:00:00,0,243467949.2,0,389219192.7,87737.83331,130936.7626,787228545.1,632687142,354700984.2,624273732.1 + 08/23 24:00:00,0,153260288.1,0,256710254.5,43868.91665,65468.38128,393614272.6,409970542.7,354700984.2,468205299.1 + 08/24 01:00:00,0,0,0,6632613.58,43879.71932,65484.50279,393711199.6,6632613.58,212820590.5,234102649.5 + 08/24 02:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 08/24 03:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 08/24 04:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/24 05:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/24 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/24 07:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,156068433 + 08/24 08:00:00,0,318883034,0,532382532.2,87670.68846,130836.558,786626087.3,851265566.2,567521574.6,390171082.6 + 08/24 09:00:00,0,458132188.4,0,783555459.1,218925.5108,326716.4979,1964311231,1241687648,567521574.6,390171082.6 + 08/24 10:00:00,0,294896340.8,0,517102392.4,218700.6831,326380.9731,1962293962,811998733.2,283760787.3,0 + 08/24 11:00:00,0,392244592.6,0,541784339.8,218808.1226,326541.3119,1963257964,934028932.4,283760787.3,0 + 08/24 12:00:00,0,513905421.1,0,553643228.7,131060.2085,195589.5052,1175938969,1067548650,283760787.3,0 + 08/24 13:00:00,0,604242245.8,0,621121325.5,130856.8028,195285.9498,1174113909,1225363571,283760787.3,0 + 08/24 14:00:00,0,648046348.7,0,764561751.8,130763.2932,195146.3996,1173274894,1412608100,283760787.3,0 + 08/24 15:00:00,0,625266616.1,0,868992915.5,130856.8028,195285.9498,1174113909,1494259532,283760787.3,0 + 08/24 16:00:00,0,533406874.5,0,856726310.6,305114.3509,455341.5991,2737641420,1390133185,283760787.3,0 + 08/24 17:00:00,0,421883210.1,0,769277388.1,392886.6769,586329.8373,3525179451,1191160598,354700984.2,0 + 08/24 18:00:00,0,188919127.1,0,441755864.1,305984.3571,456639.9648,2745447559,630674991.2,141880393.7,0 + 08/24 19:00:00,0,304106526.5,0,495913338,306495.7151,457403.097,2750035724,800019864.5,638461771.5,0 + 08/24 20:00:00,0,515582240.3,0,778757279.9,263097.1775,392636.6923,2360641931,1294339520,638461771.5,702307948.6 + 08/24 21:00:00,0,417814602,0,639806899.7,219247.6479,327197.2435,1967201609,1057621502,496581377.8,702307948.6 + 08/24 22:00:00,0,335712686.6,0,520156953.1,175444.6696,261827.2663,1574178970,855869639.6,354700984.2,702307948.6 + 08/24 23:00:00,0,311028325.5,0,485046289.1,131506.0327,196254.837,1179939131,796074614.6,354700984.2,624273732.1 + 08/24 24:00:00,0,241223255,0,382744398.7,87670.68846,130836.558,786626087.3,623967653.7,354700984.2,468205299.1 + 08/25 01:00:00,0,43103754.87,0,85553320.42,43849.52958,65439.44871,393440321.8,128657075.3,212820590.5,234102649.5 + 08/25 02:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 08/25 03:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 08/25 04:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 08/25 05:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/25 06:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 08/25 07:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,156068433 + 08/25 08:00:00,0,177240951.9,0,290401893.7,21930.5837,32728.40829,196772371.2,467642845.6,567521574.6,390171082.6 + 08/25 09:00:00,0,315269796.1,0,489638008.5,87670.68846,130836.558,786626087.3,804907804.7,567521574.6,390171082.6 + 08/25 10:00:00,0,127466115.1,0,192530405,131355.3065,196029.8987,1178586739,319996520.1,283760787.3,0 + 08/25 11:00:00,0,242286550,0,325987404,131136.153,195702.8421,1176620382,568273954,283760787.3,0 + 08/25 12:00:00,0,375627373.5,0,460381362.2,87175.52883,130097.5997,782183262.8,836008735.7,283760787.3,0 + 08/25 13:00:00,0,452124780.7,0,532153792.9,87096.21786,129979.2389,781471644.4,984278573.5,283760787.3,0 + 08/25 14:00:00,0,511436293.1,0,646318869.6,130407.2149,194615.0011,1170079978,1157755163,283760787.3,0 + 08/25 15:00:00,0,511692577.8,0,711682600.9,173527.6563,258966.3852,1556978549,1223375179,283760787.3,0 + 08/25 16:00:00,0,389456883.3,0,566905000,217565.978,324687.5804,1952112810,956361883.3,283760787.3,0 + 08/25 17:00:00,0,281012594.2,0,423531740.5,260814.4297,389230.0022,2340159955,704544334.7,354700984.2,0 + 08/25 18:00:00,0,163972588.2,0,345452506.8,305114.3509,455341.5991,2737641420,509425095,141880393.7,0 + 08/25 19:00:00,0,369655518.8,0,588271560.5,174616.3009,260591.0388,1566746423,957927079.3,638461771.5,0 + 08/25 20:00:00,0,674210968.7,0,1022246532,131136.153,195702.8421,1176620382,1696457500,638461771.5,702307948.6 + 08/25 21:00:00,0,532175404.2,0,812535662.6,87480.27323,130552.3892,784917584.9,1344711067,496581377.8,702307948.6 + 08/25 22:00:00,0,422626528.2,0,651274787.9,87523.24903,130616.5248,785303185.7,1073901316,354700984.2,702307948.6 + 08/25 23:00:00,0,353119372.9,0,551713666.2,87570.20432,130686.5991,785724492.5,904833039.2,354700984.2,624273732.1 + 08/25 24:00:00,0,277157003.3,0,438631588.5,87523.24903,130616.5248,785303185.7,715788591.8,354700984.2,468205299.1 + 08/26 01:00:00,0,101024867.3,0,171266362.5,43785.10216,65343.29957,392862246.2,272291229.8,212820590.5,234102649.5 + 08/26 02:00:00,0,0,0,0,21892.55108,32671.64979,196431123.1,0,141880393.7,0 + 08/26 03:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 08/26 04:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 08/26 05:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 08/26 06:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 08/26 07:00:00,0,0,0,0,87605.47633,130739.2378,786040970.9,0,141880393.7,156068433 + 08/26 08:00:00,0,406266409.1,0,677227106.5,350092.9961,522466.0991,3141212743,1083493516,567521574.6,390171082.6 + 08/26 09:00:00,0,477630914.7,0,748743902.9,305807.1532,456375.5121,2743857595,1226374818,567521574.6,390171082.6 + 08/26 10:00:00,0,235028606.9,0,365483592.9,218270.3761,325738.7985,1958433029,600512199.8,283760787.3,0 + 08/26 11:00:00,0,507034540.4,0,686504903.2,174192.4357,259958.4778,1562943289,1193539444,283760787.3,0 + 08/26 12:00:00,0,731267631.6,0,862669526.7,86860.91066,129628.075,779360348.3,1593937158,283760787.3,0 + 08/26 13:00:00,0,917783024.1,0,1034130837,86573.475,129199.1164,776781329.1,1951913861,283760787.3,0 + 08/26 14:00:00,0,1029418767,0,1255571844,86462.96442,129034.1944,775789771.9,2284990611,283760787.3,0 + 08/26 15:00:00,0,1065744107,0,1452618244,129550.9571,193337.1531,1162397197,2518362351,283760787.3,0 + 08/26 16:00:00,0,927644167.2,0,1447629258,216157.4111,322585.4861,1939474430,2375273425,283760787.3,0 + 08/26 17:00:00,0,829602085.3,0,1423546270,216157.4111,322585.4861,1939474430,2253148355,354700984.2,0 + 08/26 18:00:00,0,595497603.3,0,1134521942,303007.1625,452196.9075,2718734652,1730019545,141880393.7,0 + 08/26 19:00:00,0,754662966.5,0,1149932203,304836.7625,454927.3362,2735150755,1904595169,638461771.5,0 + 08/26 20:00:00,0,1023051377,0,1506118418,174192.4357,259958.4778,1562943289,2529169795,638461771.5,702307948.6 + 08/26 21:00:00,0,908366878.3,0,1339659729,174475.737,260381.2665,1565485213,2248026607,496581377.8,702307948.6 + 08/26 22:00:00,0,781234970.4,0,1153783917,87308.15043,130295.5194,783373211.4,1935018887,354700984.2,702307948.6 + 08/26 23:00:00,0,697688827.3,0,1031899401,87373.47233,130393.0035,783959312.8,1729588229,354700984.2,624273732.1 + 08/26 24:00:00,0,582127546.1,0,861635807.1,43712.05102,65234.28069,392206794.1,1443763353,354700984.2,468205299.1 + 08/27 01:00:00,0,371144419.5,0,550424334.3,43712.05102,65234.28069,392206794.1,921568753.7,212820590.5,234102649.5 + 08/27 02:00:00,0,134799481.7,0,208764649.3,21870.06831,32638.09731,196229396.2,343564130.9,141880393.7,0 + 08/27 03:00:00,0,72799729.38,0,123809411.6,21870.06831,32638.09731,196229396.2,196609141,141880393.7,0 + 08/27 04:00:00,0,60648962.59,0,108418968.2,21870.06831,32638.09731,196229396.2,169067930.8,141880393.7,0 + 08/27 05:00:00,0,21617109.11,0,51528319.63,21892.55108,32671.64979,196431123.1,73145428.74,141880393.7,0 + 08/27 06:00:00,0,110886627.1,0,126890117.1,21880.81226,32654.13119,196325796.4,237776744.2,141880393.7,0 + 08/27 07:00:00,0,383632051.9,0,575475628.5,87373.47233,130393.0035,783959312.8,959107680.4,141880393.7,156068433 + 08/27 08:00:00,0,896090201.3,0,1381968471,348702.1153,520390.399,3128733051,2278058672,567521574.6,390171082.6 + 08/27 09:00:00,0,849894440.1,0,1336221169,304592.3692,454562.6125,2732957934,2186115609,567521574.6,390171082.6 + 08/27 10:00:00,0,596827682.5,0,911427675.7,216909.5704,323707.9815,1946223187,1508255358,283760787.3,0 + 08/27 11:00:00,0,681564450.4,0,942897748.5,172925.9288,258068.3889,1551579544,1624462199,283760787.3,0 + 08/27 12:00:00,0,804936900.4,0,993592985.6,86367.30473,128891.4354,774931464.4,1798529886,283760787.3,0 + 08/27 13:00:00,0,914964031.7,0,1096895274,86248.26636,128713.7868,773863391.5,2011859306,283760787.3,0 + 08/27 14:00:00,0,961862013.8,0,1204286828,86248.26636,128713.7868,773863391.5,2166148842,283760787.3,0 + 08/27 15:00:00,0,871752117.1,0,1193449279,129694.4466,193551.2917,1163684658,2065201397,283760787.3,0 + 08/27 16:00:00,0,708254027.9,0,1035042430,216157.4111,322585.4861,1939474430,1743296458,283760787.3,0 + 08/27 17:00:00,0,711700346.8,0,1155470069,216157.4111,322585.4861,1939474430,1867170416,354700984.2,0 + 08/27 18:00:00,0,468506585.7,0,907540419.6,303673.3986,453191.174,2724712461,1376047005,141880393.7,0 + 08/27 19:00:00,0,718565907.9,0,1085661756,304283.5013,454101.6693,2730186614,1804227664,638461771.5,0 + 08/27 20:00:00,0,1044517485,0,1539135813,173876.2865,259486.6682,1560106637,2583653298,638461771.5,702307948.6 + 08/27 21:00:00,0,866228332.8,0,1284558861,174192.4357,259958.4778,1562943289,2150787194,496581377.8,702307948.6 + 08/27 22:00:00,0,772197250.2,0,1146918480,87175.52883,130097.5997,782183262.8,1919115730,354700984.2,702307948.6 + 08/27 23:00:00,0,738287571.6,0,1098230660,87175.52883,130097.5997,782183262.8,1836518232,354700984.2,624273732.1 + 08/27 24:00:00,0,643116183.1,0,958062261.1,43618.93426,65095.31662,391371303.2,1601178444,354700984.2,468205299.1 + 08/28 01:00:00,0,456951227.1,0,680798353.2,43587.76441,65048.79987,391091631.4,1137749580,212820590.5,234102649.5 + 08/28 02:00:00,0,301938962.9,0,449884934.6,21793.88221,32524.39994,195545815.7,751823897.5,141880393.7,0 + 08/28 03:00:00,0,288236502.1,0,431496832.5,21809.46713,32547.65831,195685651.6,719733334.6,141880393.7,0 + 08/28 04:00:00,0,274426306.4,0,413129470.2,21809.46713,32547.65831,195685651.6,687555776.6,141880393.7,0 + 08/28 05:00:00,0,246630956.4,0,374124541.9,21827.03761,32573.87985,195843302.9,620755498.4,141880393.7,0 + 08/28 06:00:00,0,265183432.2,0,399521904.1,21809.46713,32547.65831,195685651.6,664705336.2,141880393.7,0 + 08/28 07:00:00,0,439698402.7,0,656568743.4,87175.52883,130097.5997,782183262.8,1096267146,141880393.7,156068433 + 08/28 08:00:00,0,912454126.3,0,1370390761,348384.8714,519916.9557,3125886578,2282844887,567521574.6,390171082.6 + 08/28 09:00:00,0,745866320.3,0,1098273026,304283.5013,454101.6693,2730186614,1844139347,567521574.6,390171082.6 + 08/28 10:00:00,0,449486348.2,0,657055660.8,216698.1983,323392.5375,1944326649,1106542009,283760787.3,0 + 08/28 11:00:00,0,562378014.5,0,793011836.9,173146.95,258398.2328,1553562658,1355389851,283760787.3,0 + 08/28 12:00:00,0,632495988.5,0,882263809.3,86248.26636,128713.7868,773863391.5,1514759798,283760787.3,0 + 08/28 13:00:00,0,644769103.1,0,899844846.4,86367.30473,128891.4354,774931464.4,1544613949,283760787.3,0 + 08/28 14:00:00,0,738601616.2,0,1014393830,86248.26636,128713.7868,773863391.5,1752995446,283760787.3,0 + 08/28 15:00:00,0,751950838.7,0,1073391443,129372.3995,193070.6803,1160795087,1825342282,283760787.3,0 + 08/28 16:00:00,0,675651547.7,0,1036686060,215363.8917,321401.2666,1932354570,1712337608,283760787.3,0 + 08/28 17:00:00,0,706304526.6,0,1183949799,215918.2618,322228.5885,1937328661,1890254326,354700984.2,0 + 08/28 18:00:00,0,466223854.9,0,734645488.2,303007.1625,452196.9075,2718734652,1200869343,141880393.7,0 + 08/28 19:00:00,0,775732187.3,0,1139670216,303377.4777,452749.5524,2722057308,1915402404,638461771.5,0 + 08/28 20:00:00,0,1092508570,0,1620069272,173721.8213,259256.15,1558720697,2712577841,638461771.5,702307948.6 + 08/28 21:00:00,0,886203220.9,0,1324286799,173876.2865,259486.6682,1560106637,2210490020,496581377.8,702307948.6 + 08/28 22:00:00,0,737569001,0,1109647702,87096.21786,129979.2389,781471644.4,1847216703,354700984.2,702307948.6 + 08/28 23:00:00,0,674057105.5,0,1016055730,87096.21786,129979.2389,781471644.4,1690112835,354700984.2,624273732.1 + 08/28 24:00:00,0,603589235.3,0,910529432.5,43548.10893,64989.61946,390735822.2,1514118668,354700984.2,468205299.1 + 08/29 01:00:00,0,402932201.6,0,611527998.4,43548.10893,64989.61946,390735822.2,1014460200,212820590.5,234102649.5 + 08/29 02:00:00,0,219693675.7,0,338604526.5,21774.05446,32494.80973,195367911.1,558298202.2,141880393.7,0 + 08/29 03:00:00,0,151475138.3,0,246319769,21827.03761,32573.87985,195843302.9,397794907.2,141880393.7,0 + 08/29 04:00:00,0,115820762.4,0,200572839.5,21809.46713,32547.65831,195685651.6,316393601.9,141880393.7,0 + 08/29 05:00:00,0,128583073.7,0,223818852.2,21793.88221,32524.39994,195545815.7,352401925.9,141880393.7,0 + 08/29 06:00:00,0,136097121.7,0,232575211.2,21809.46713,32547.65831,195685651.6,368672332.9,141880393.7,0 + 08/29 07:00:00,0,275787687.9,0,427211874.6,87237.86852,130190.6332,782742606.3,702999562.5,141880393.7,156068433 + 08/29 08:00:00,0,730536762.9,0,1131062588,348702.1153,520390.399,3128733051,1861599351,567521574.6,390171082.6 + 08/29 09:00:00,0,756582026,0,1187566745,304283.5013,454101.6693,2730186614,1944148771,567521574.6,390171082.6 + 08/29 10:00:00,0,509973011.6,0,799573265.1,216909.5704,323707.9815,1946223187,1309546277,283760787.3,0 + 08/29 11:00:00,0,682282231,0,893080480.9,173358.5587,258714.03,1555461319,1575362712,283760787.3,0 + 08/29 12:00:00,0,866535472,0,944556178.4,86462.96442,129034.1944,775789771.9,1811091650,283760787.3,0 + 08/29 13:00:00,0,987247216.4,0,1035144369,86462.96442,129034.1944,775789771.9,2022391586,283760787.3,0 + 08/29 14:00:00,0,906449564.8,0,1145879590,86462.96442,129034.1944,775789771.9,2052329155,283760787.3,0 + 08/29 15:00:00,0,762944997.6,0,1091414687,130145.7422,194224.7889,1167733912,1854359684,283760787.3,0 + 08/29 16:00:00,0,619911988.8,0,1003037444,217152.2767,324070.1875,1948400871,1622949432,283760787.3,0 + 08/29 17:00:00,0,434660729.9,0,813594180,217565.978,324687.5804,1952112810,1248254910,354700984.2,0 + 08/29 18:00:00,0,187256622.2,0,534571594.9,305578.5265,456034.3179,2741806240,721828217,141880393.7,0 + 08/29 19:00:00,0,374673813.5,0,556463065.9,305984.3571,456639.9648,2745447559,931136879.3,638461771.5,0 + 08/29 20:00:00,0,618956730.6,0,925772758.7,175210.9527,261478.4756,1572081942,1544729489,638461771.5,702307948.6 + 08/29 21:00:00,0,459228743.9,0,699308286.7,175398.1183,261757.7948,1573761287,1158537031,496581377.8,702307948.6 + 08/29 22:00:00,0,343883894.1,0,533157634.6,87699.05915,130878.8974,786880643.7,877041528.7,354700984.2,702307948.6 + 08/29 23:00:00,0,238582448.5,0,383952236.3,87737.83331,130936.7626,787228545.1,622534684.8,354700984.2,624273732.1 + 08/29 24:00:00,0,55065909.78,0,113485841.7,43881.92504,65487.79453,393730990.5,168551751.5,354700984.2,468205299.1 + 08/30 01:00:00,0,0,0,0,43881.92504,65487.79453,393730990.5,0,212820590.5,234102649.5 + 08/30 02:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 08/30 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 08/30 04:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 08/30 05:00:00,32435805.18,0,16236823,0,21924.37781,32719.14684,245389316.9,0,141880393.7,0 + 08/30 06:00:00,59471667.81,0,73131191.95,0,21924.37781,32719.14684,329319548.5,0,141880393.7,0 + 08/30 07:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,141880393.7,156068433 + 08/30 08:00:00,184683730.2,0,251714008.4,0,350870.0599,523625.7609,3584582694,0,567521574.6,390171082.6 + 08/30 09:00:00,63007980.44,0,46103351.7,0,307128.7188,458347.7687,2864826687,0,567521574.6,390171082.6 + 08/30 10:00:00,161313480.6,0,215192546.2,0,219397.5167,327420.9023,2345052335,0,283760787.3,0 + 08/30 11:00:00,172308982.6,0,242525677.8,0,175518.0133,261936.7218,1989671707,0,283760787.3,0 + 08/30 12:00:00,159081287.4,0,228842319.3,0,87763.97715,130975.7787,1175386728,0,283760787.3,0 + 08/30 13:00:00,89129371.7,0,156533114.1,0,87763.97715,130975.7787,1033125607,0,283760787.3,0 + 08/30 14:00:00,34610921.42,0,80798577.76,0,87759.43865,130969.0056,902831898.4,0,283760787.3,0 + 08/30 15:00:00,60406524.5,0,93080247.6,0,131645.7751,196463.3836,1334679744,0,283760787.3,0 + 08/30 16:00:00,117742415.4,0,153877420.5,0,219409.6252,327438.9727,2240274788,0,283760787.3,0 + 08/30 17:00:00,138296935.8,0,158823974.5,0,219397.5167,327420.9023,2265667219,0,354700984.2,0 + 08/30 18:00:00,230253092.3,0,277327278.6,0,307128.7188,458347.7687,3263295726,0,141880393.7,0 + 08/30 19:00:00,39142470.26,0,25933004.07,0,307078.9498,458273.4952,2820344276,0,638461771.5,0 + 08/30 20:00:00,0,0,0,11694726.57,175473.6856,261870.5687,1574439315,11694726.57,638461771.5,702307948.6 + 08/30 21:00:00,0,1022134.747,0,63833071.77,175395.0225,261753.1747,1573733510,64855206.51,496581377.8,702307948.6 + 08/30 22:00:00,0,0,0,0,87567.54766,130682.6344,785700655.5,0,354700984.2,702307948.6 + 08/30 23:00:00,0,0,0,0,87641.05768,130792.3381,786360224.9,0,354700984.2,624273732.1 + 08/30 24:00:00,75045699.62,0,52104919.68,0,43783.77383,65341.31722,520000947.1,0,354700984.2,468205299.1 + 08/31 01:00:00,245731458.1,0,317098060.7,0,43760.14595,65306.05583,955467845.3,0,212820590.5,234102649.5 + 08/31 02:00:00,0,0,0,0,21855.1492,32615.83257,196095534.4,0,141880393.7,0 + 08/31 03:00:00,98526932.42,0,94989173.54,0,21891.88691,32670.65861,389941269.8,0,141880393.7,0 + 08/31 04:00:00,156700723.4,0,210461545.6,0,21880.07298,32653.02792,563481432.1,0,141880393.7,0 + 08/31 05:00:00,206090253.2,0,277289985.4,0,21839.78206,32592.89921,679337891.2,0,141880393.7,0 + 08/31 06:00:00,82187994.98,0,187849942,0,21869.26663,32636.90091,466260140.1,0,141880393.7,0 + 08/31 07:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,156068433 + 08/31 08:00:00,94786892.79,0,97565785.81,0,87668.83723,130833.7953,978962155.8,0,567521574.6,390171082.6 + 08/31 09:00:00,401891.2213,0,0,53802238.23,219342.107,327338.2109,1968451035,53802238.23,567521574.6,390171082.6 + 08/31 10:00:00,0,0,0,40389751.62,219377.6563,327391.2634,1968368111,40389751.62,283760787.3,0 + 08/31 11:00:00,0,0,0,0,219409.6252,327438.9727,1968654952,0,283760787.3,0 + 08/31 12:00:00,0,0,0,0,131645.9657,196463.668,1181194682,0,283760787.3,0 + 08/31 13:00:00,0,17788572.08,0,0,131606.75,196405.1438,1180842818,17788572.08,283760787.3,0 + 08/31 14:00:00,0,21183501.26,0,0,131583.5022,196370.4498,1180634227,21183501.26,283760787.3,0 + 08/31 15:00:00,0,0,0,0,131606.75,196405.1438,1180842818,0,283760787.3,0 + 08/31 16:00:00,0,0,0,0,307082.4166,458278.669,2755299908,0,283760787.3,0 + 08/31 17:00:00,0,0,0,0,394917.4739,589360.5251,3543400797,0,354700984.2,0 + 08/31 18:00:00,0,0,0,0,307173.92,458415.2254,2756120924,0,141880393.7,0 + 08/31 19:00:00,0,0,0,0,307170.6151,458410.2932,2756091270,0,638461771.5,0 + 08/31 20:00:00,0,49893880.59,0,166313632.7,263290.7283,392925.5405,2362378568,216207513.3,638461771.5,702307948.6 + 08/31 21:00:00,0,177044289.3,0,292266315.5,219409.9429,327439.4467,1968657803,469310604.8,496581377.8,702307948.6 + 08/31 22:00:00,0,112247593.2,0,201365972.6,175528.6548,261952.6027,1574932527,313613565.8,354700984.2,702307948.6 + 08/31 23:00:00,0,60675085.9,0,121504826.6,131638.51,196452.5414,1181127785,182179912.5,354700984.2,624273732.1 + 08/31 24:00:00,0,0,0,589409.5827,87733.97606,130931.0061,787193935.9,589409.5827,354700984.2,468205299.1 + 09/01 01:00:00,2899019.62,0,0,0,43834.41861,65416.89766,396203758.2,0,212820590.5,234102649.5 + 09/01 02:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 09/01 03:00:00,11835978.2,0,0,0,21864.69998,32630.08582,208017207.1,0,141880393.7,0 + 09/01 04:00:00,173359451.3,0,245840064,0,21847.62152,32604.59854,615227507.5,0,141880393.7,0 + 09/01 05:00:00,196400167.2,0,267328723.8,0,21839.78206,32592.89921,659686543.6,0,141880393.7,0 + 09/01 06:00:00,123407053.6,0,219178148.7,0,21837.09974,32588.89621,538518787.7,0,141880393.7,0 + 09/01 07:00:00,24809670.45,0,26721807.58,0,21880.07298,32653.02792,247850641.2,0,141880393.7,156068433 + 09/01 08:00:00,219793368.8,0,322956279.8,0,21910.26442,32698.08453,739339704.9,0,567521574.6,390171082.6 + 09/01 09:00:00,152437990.5,0,173197483.5,0,87668.83723,130833.7953,1112244951,0,567521574.6,390171082.6 + 09/01 10:00:00,220589334.7,0,304178708.4,0,131576.2725,196359.6604,1705337401,0,283760787.3,0 + 09/01 11:00:00,114369882.2,0,170820453.1,0,131638.51,196452.5414,1466318120,0,283760787.3,0 + 09/01 12:00:00,607973.1367,0,18633430.69,0,87751.74847,130957.529,806594802.9,0,283760787.3,0 + 09/01 13:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,283760787.3,0 + 09/01 14:00:00,0,47967091.6,0,0,131606.75,196405.1438,1180842818,47967091.6,283760787.3,0 + 09/01 15:00:00,0,55673911.92,0,11685982.01,175398.1183,261757.7948,1573761287,67359893.93,283760787.3,0 + 09/01 16:00:00,0,65292971.16,0,167552673.3,219247.6479,327197.2435,1967201609,232845644.4,283760787.3,0 + 09/01 17:00:00,0,26208979.53,0,216849943.8,263213.4999,392810.2877,2361685635,243058923.3,354700984.2,0 + 09/01 18:00:00,0,0,0,38350770.19,307173.4753,458414.5617,2756116933,38350770.19,141880393.7,0 + 09/01 19:00:00,46375.29921,0,0,0,175435.03,261812.8805,1574138853,0,638461771.5,0 + 09/01 20:00:00,0,0,0,87501248.72,131503.2558,196250.693,1179914216,87501248.72,638461771.5,702307948.6 + 09/01 21:00:00,0,0,0,18867558.31,87567.54766,130682.6344,785700655.5,18867558.31,496581377.8,702307948.6 + 09/01 22:00:00,0,0,0,0,87477.0665,130547.6036,784888812.5,0,354700984.2,702307948.6 + 09/01 23:00:00,20588590.19,0,0,0,87477.0665,130547.6036,805477402.7,0,354700984.2,624273732.1 + 09/01 24:00:00,86150397.28,0,75129436.38,0,87567.54766,130682.6344,946980489.2,0,354700984.2,468205299.1 + 09/02 01:00:00,209233690.1,0,268181684.3,0,43783.77383,65341.31722,870265702.1,0,212820590.5,234102649.5 + 09/02 02:00:00,0,0,0,0,21891.88691,32670.65861,196425163.9,0,141880393.7,0 + 09/02 03:00:00,12105834.85,0,0,0,21880.07298,32653.02792,208424998.1,0,141880393.7,0 + 09/02 04:00:00,149378063.6,0,181424590.9,0,21891.88691,32670.65861,527227818.3,0,141880393.7,0 + 09/02 05:00:00,146022343.8,0,189479693.4,0,21880.07298,32653.02792,531821200.4,0,141880393.7,0 + 09/02 06:00:00,70503401.47,0,134453721.8,0,21891.88691,32670.65861,401382287.2,0,141880393.7,0 + 09/02 07:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,141880393.7,156068433 + 09/02 08:00:00,124672192,0,153970916.7,0,350870.0599,523625.7609,3426828064,0,567521574.6,390171082.6 + 09/02 09:00:00,39572255.22,0,0,0,307173.92,458415.2254,2795693179,0,567521574.6,390171082.6 + 09/02 10:00:00,0,0,0,0,219379.3712,327393.8226,1968383498,0,283760787.3,0 + 09/02 11:00:00,0,26059460.98,0,80295409.75,175444.6696,261827.2663,1574178970,106354870.7,283760787.3,0 + 09/02 12:00:00,0,216406838.2,0,147100378.6,87670.68846,130836.558,786626087.3,363507216.8,283760787.3,0 + 09/02 13:00:00,0,184625012.2,0,123691164.8,87699.05915,130878.8974,786880643.7,308316177,283760787.3,0 + 09/02 14:00:00,0,121784903.3,0,87322409.48,87699.05915,130878.8974,786880643.7,209107312.8,283760787.3,0 + 09/02 15:00:00,0,7209040.123,0,1514358.943,131506.0327,196254.837,1179939131,8723399.066,283760787.3,0 + 09/02 16:00:00,0,0,0,0,219176.7211,327091.3951,1966565218,0,283760787.3,0 + 09/02 17:00:00,0,0,0,0,219247.6479,327197.2435,1967201609,0,354700984.2,0 + 09/02 18:00:00,0,0,0,0,307028.1718,458197.7161,2754813197,0,141880393.7,0 + 09/02 19:00:00,0,0,0,0,307131.1196,458351.3517,2755736897,0,638461771.5,0 + 09/02 20:00:00,0,209457443.3,0,355337649.1,175475.6666,261873.5251,1574457090,564795092.4,638461771.5,702307948.6 + 09/02 21:00:00,0,208505044.1,0,346498681.2,175475.6666,261873.5251,1574457090,555003725.3,496581377.8,702307948.6 + 09/02 22:00:00,0,134737425.4,0,231877025.7,87751.74847,130957.529,787353399.1,366614451.1,354700984.2,702307948.6 + 09/02 23:00:00,0,71424389.66,0,134629152.7,87763.97715,130975.7787,787463121,206053542.4,354700984.2,624273732.1 + 09/02 24:00:00,0,641749.1324,0,19056360.07,43881.92504,65487.79453,393730990.5,19698109.2,354700984.2,468205299.1 + 09/03 01:00:00,0,0,0,0,43879.50333,65484.18046,393709261.7,0,212820590.5,234102649.5 + 09/03 02:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/03 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/03 04:00:00,30862095.38,0,0,0,21924.37781,32719.14684,227578784.1,0,141880393.7,0 + 09/03 05:00:00,86395359.71,0,114952894.6,0,21924.37781,32719.14684,398064943,0,141880393.7,0 + 09/03 06:00:00,93149649.42,0,112452547.8,0,21924.37781,32719.14684,402318885.9,0,141880393.7,0 + 09/03 07:00:00,22425845.31,0,11533205.6,0,87717.51498,130906.4402,821005289.7,0,141880393.7,156068433 + 09/03 08:00:00,218601199.1,0,320610032.7,0,350870.0599,523625.7609,3687396187,0,567521574.6,390171082.6 + 09/03 09:00:00,142453103.5,0,185763668,0,307173.92,458415.2254,3084337695,0,567521574.6,390171082.6 + 09/03 10:00:00,29873990.88,0,4785310.51,0,219344.5833,327341.9064,2002730664,0,283760787.3,0 + 09/03 11:00:00,1447514.511,0,9078524.724,0,175398.1183,261757.7948,1584287327,0,283760787.3,0 + 09/03 12:00:00,0,0,0,0,87670.68846,130836.558,786626087.3,0,283760787.3,0 + 09/03 13:00:00,0,0,0,0,87570.20432,130686.5991,785724492.5,0,283760787.3,0 + 09/03 14:00:00,0,0,0,0,87751.74847,130957.529,787353399.1,0,283760787.3,0 + 09/03 15:00:00,49886459.29,0,81089255.26,0,131627.6227,196436.2936,1312005813,0,283760787.3,0 + 09/03 16:00:00,123395123.5,0,176722193.8,0,219398.5966,327422.514,2268673315,0,283760787.3,0 + 09/03 17:00:00,154735985.4,0,210022473.7,0,219409.9429,327439.4467,2333416262,0,354700984.2,0 + 09/03 18:00:00,225672226.5,0,307704068.6,0,307173.92,458415.2254,3289497219,0,141880393.7,0 + 09/03 19:00:00,9904747.291,0,0,0,307173.92,458415.2254,2766025671,0,638461771.5,0 + 09/03 20:00:00,0,0,0,0,175527.7002,261951.1781,1574923962,0,638461771.5,702307948.6 + 09/03 21:00:00,0,67217924.39,0,192165038.4,175527.7002,261951.1781,1574923962,259382962.8,496581377.8,702307948.6 + 09/03 22:00:00,0,6738843.095,0,70922093.28,87759.00667,130968.3609,787418523.3,77660936.37,354700984.2,702307948.6 + 09/03 23:00:00,0,0,0,1371774.636,87759.00667,130968.3609,787418523.3,1371774.636,354700984.2,624273732.1 + 09/03 24:00:00,0,0,0,0,43868.42139,65467.64217,393609828.8,0,354700984.2,468205299.1 + 09/04 01:00:00,74142534.66,0,74297077.62,0,43868.42139,65467.64217,542049441.1,0,212820590.5,234102649.5 + 09/04 02:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/04 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/04 04:00:00,4889794.479,0,0,0,21934.2107,32733.82109,201694708.9,0,141880393.7,0 + 09/04 05:00:00,40099444.53,0,26662714.85,0,21929.37875,32726.61006,263523719.1,0,141880393.7,0 + 09/04 06:00:00,36372199.59,0,45622928.43,0,21924.37781,32719.14684,278711816.8,0,141880393.7,0 + 09/04 07:00:00,0,0,0,0,87736.84279,130935.2843,787219657.7,0,141880393.7,156068433 + 09/04 08:00:00,142164708.5,0,192885353.4,0,351055.9086,523903.1148,3484902546,0,567521574.6,390171082.6 + 09/04 09:00:00,17132589.24,0,0,0,307131.1196,458351.3517,2772869486,0,567521574.6,390171082.6 + 09/04 10:00:00,0,0,0,0,219379.3712,327393.8226,1968383498,0,283760787.3,0 + 09/04 11:00:00,0,0,0,0,175475.6666,261873.5251,1574457090,0,283760787.3,0 + 09/04 12:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,283760787.3,0 + 09/04 13:00:00,0,0,0,0,87699.05915,130878.8974,786880643.7,0,283760787.3,0 + 09/04 14:00:00,0,0,0,0,87643.16119,130795.4773,786379098.7,0,283760787.3,0 + 09/04 15:00:00,0,0,0,0,131464.7418,196193.216,1179568648,0,283760787.3,0 + 09/04 16:00:00,0,0,0,0,219247.6479,327197.2435,1967201609,0,283760787.3,0 + 09/04 17:00:00,0,0,0,0,219344.5833,327341.9064,1968071363,0,354700984.2,0 + 09/04 18:00:00,67924777.99,0,0,0,307158.0353,458391.5196,2823903175,0,141880393.7,0 + 09/04 19:00:00,0,0,0,0,307173.4753,458414.5617,2756116933,0,638461771.5,0 + 09/04 20:00:00,0,119149042.2,0,303986264.7,175518.0133,261936.7218,1574837047,423135307,638461771.5,702307948.6 + 09/04 21:00:00,0,94158765.17,0,208792113,175473.6856,261870.5687,1574439315,302950878.2,496581377.8,702307948.6 + 09/04 22:00:00,0,19819899.98,0,80411084.53,87736.84279,130935.2843,787219657.7,100230984.5,354700984.2,702307948.6 + 09/04 23:00:00,0,0,0,6639730.425,87717.51498,130906.4402,787046238.8,6639730.425,354700984.2,624273732.1 + 09/04 24:00:00,0,0,0,0,43858.75749,65453.22012,393523119.4,0,354700984.2,468205299.1 + 09/05 01:00:00,63533363.16,0,31318184.45,0,43858.75749,65453.22012,488374667,0,212820590.5,234102649.5 + 09/05 02:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/05 03:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/05 04:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/05 05:00:00,35826142.69,0,19245495.39,0,21924.37781,32719.14684,251788326.8,0,141880393.7,0 + 09/05 06:00:00,9453378.157,0,6642239.293,0,21929.37875,32726.61006,212857177.1,0,141880393.7,0 + 09/05 07:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,141880393.7,156068433 + 09/05 08:00:00,14018354.42,0,23603071.12,7430064.947,351006.9939,523830.1162,3187035022,7430064.947,567521574.6,390171082.6 + 09/05 09:00:00,0,171537132.1,0,511471289.5,306946.707,458076.141,2754082253,683008421.6,567521574.6,390171082.6 + 09/05 10:00:00,0,157523292.1,0,322755802.4,219107.903,326988.6933,1965947747,480279094.5,283760787.3,0 + 09/05 11:00:00,0,288075085,0,359551944,175140.4086,261373.1983,1571448985,647627029,283760787.3,0 + 09/05 12:00:00,0,405789897.3,0,409187536,87523.24903,130616.5248,785303185.7,814977433.3,283760787.3,0 + 09/05 13:00:00,0,473203694.7,0,488822377.3,87424.10203,130468.5614,784413588.3,962026072,283760787.3,0 + 09/05 14:00:00,0,506795310.1,0,592462075.3,87308.15043,130295.5194,783373211.4,1099257385,283760787.3,0 + 09/05 15:00:00,0,426324818.3,0,577315938.3,130856.8028,195285.9498,1174113909,1003640757,283760787.3,0 + 09/05 16:00:00,0,244511651,0,340667964.9,218433.6808,325982.5086,1959898282,585179616,283760787.3,0 + 09/05 17:00:00,0,96614438.95,0,142930917.2,218560.2551,326171.4034,1961033971,239545356.1,354700984.2,0 + 09/05 18:00:00,0,0,0,13050290.91,306180.9563,456933.3624,2747211547,13050290.91,141880393.7,0 + 09/05 19:00:00,0,202653051.7,0,346133455.7,306180.9563,456933.3624,2747211547,548786507.3,638461771.5,0 + 09/05 20:00:00,0,549675523.3,0,843658873.9,175046.4981,261233.0495,1570606371,1393334397,638461771.5,702307948.6 + 09/05 21:00:00,0,469330261.3,0,723095031,174960.5465,261104.7785,1569835170,1192425292,496581377.8,702307948.6 + 09/05 22:00:00,0,345450444.9,0,543526900.9,87643.16119,130795.4773,786379098.7,888977345.7,354700984.2,702307948.6 + 09/05 23:00:00,0,268877466.6,0,430959401.5,87643.16119,130795.4773,786379098.7,699836868.1,354700984.2,624273732.1 + 09/05 24:00:00,0,190013273.9,0,312144934.4,43821.5806,65397.73867,393189549.3,502158208.3,354700984.2,468205299.1 + 09/06 01:00:00,0,10377443.05,0,41601306.53,43835.34423,65418.27901,393313043.7,51978749.58,212820590.5,234102649.5 + 09/06 02:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 09/06 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 09/06 04:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 09/06 05:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 09/06 06:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 09/06 07:00:00,0,0,0,0,87759.43865,130969.0056,787422399.2,0,141880393.7,156068433 + 09/06 08:00:00,0,139489965.3,0,401660711.6,351006.9939,523830.1162,3149413596,541150676.8,567521574.6,390171082.6 + 09/06 09:00:00,0,315814608.2,0,583521141.8,307131.1196,458351.3517,2755736897,899335749.9,567521574.6,390171082.6 + 09/06 10:00:00,0,82322630.66,0,189944326.4,219344.5833,327341.9064,1968071363,272266957.1,283760787.3,0 + 09/06 11:00:00,0,199050575.8,0,227984119.6,175398.1183,261757.7948,1573761287,427034695.4,283760787.3,0 + 09/06 12:00:00,0,318648862.9,0,239262689.7,87670.68846,130836.558,786626087.3,557911552.6,283760787.3,0 + 09/06 13:00:00,0,407268023.9,0,298061692.1,87643.16119,130795.4773,786379098.7,705329716,283760787.3,0 + 09/06 14:00:00,0,476921985.4,0,458275757.5,87570.20432,130686.5991,785724492.5,935197742.9,283760787.3,0 + 09/06 15:00:00,0,448021282.4,0,580980190.8,131355.3065,196029.8987,1178586739,1029001473,283760787.3,0 + 09/06 16:00:00,0,350460928.3,0,616463071.6,218925.5108,326716.4979,1964311231,966923999.9,283760787.3,0 + 09/06 17:00:00,0,186562872,0,557495880,219107.903,326988.6933,1965947747,744058752,354700984.2,0 + 09/06 18:00:00,0,0,0,245221850.8,306847.4096,457927.9531,2753191306,245221850.8,141880393.7,0 + 09/06 19:00:00,0,83697615.46,0,190149123.5,307131.1196,458351.3517,2755736897,273846739,638461771.5,0 + 09/06 20:00:00,0,303672012.5,0,483819801,175475.6666,261873.5251,1574457090,787491813.6,638461771.5,702307948.6 + 09/06 21:00:00,0,222380248.1,0,362907997.2,175527.9543,261951.5574,1574926242,585288245.3,496581377.8,702307948.6 + 09/06 22:00:00,0,120008579.4,0,210467970.1,87759.00667,130968.3609,787418523.3,330476549.5,354700984.2,702307948.6 + 09/06 23:00:00,0,74349390.58,0,142005318.9,87763.85009,130975.5891,787461980.9,216354709.5,354700984.2,624273732.1 + 09/06 24:00:00,0,22102671.37,0,59585570.03,43881.92504,65487.79453,393730990.5,81688241.4,354700984.2,468205299.1 + 09/07 01:00:00,0,0,0,0,43881.92504,65487.79453,393730990.5,0,212820590.5,234102649.5 + 09/07 02:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 09/07 03:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/07 04:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/07 05:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/07 06:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/07 07:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,156068433 + 09/07 08:00:00,117673638,0,146722888.9,0,87697.51124,130876.5874,1051263282,0,567521574.6,390171082.6 + 09/07 09:00:00,85033595.67,0,100011604.5,0,219243.7781,327191.4684,2152212088,0,567521574.6,390171082.6 + 09/07 10:00:00,0,0,0,0,219342.107,327338.2109,1968049144,0,283760787.3,0 + 09/07 11:00:00,18383.11574,0,0,0,219409.9429,327439.4467,1968676186,0,283760787.3,0 + 09/07 12:00:00,0,0,0,0,131627.6227,196436.2936,1181030099,0,283760787.3,0 + 09/07 13:00:00,0,116989825.5,0,0,131606.75,196405.1438,1180842818,116989825.5,283760787.3,0 + 09/07 14:00:00,0,93108631.26,0,65762547.27,131548.5887,196318.3461,1180320965,158871178.5,283760787.3,0 + 09/07 15:00:00,0,62051247.83,0,63121517.37,131548.5887,196318.3461,1180320965,125172765.2,283760787.3,0 + 09/07 16:00:00,0,11308970.45,0,11032857.61,306847.4096,457927.9531,2753191306,22341828.06,283760787.3,0 + 09/07 17:00:00,0,10618396.45,0,67083197.66,394518.0981,588764.5111,3539817393,77701594.12,354700984.2,0 + 09/07 18:00:00,0,0,0,34215577.35,307028.1718,458197.7161,2754813197,34215577.35,141880393.7,0 + 09/07 19:00:00,0,0,0,79951405.78,307131.1196,458351.3517,2755736897,79951405.78,638461771.5,0 + 09/07 20:00:00,0,275896599,0,460895390.4,263291.9315,392927.3361,2362389363,736791989.4,638461771.5,702307948.6 + 09/07 21:00:00,0,205459472.1,0,343677615.7,219409.6252,327438.9727,1968654952,549137087.8,496581377.8,702307948.6 + 09/07 22:00:00,0,80998110.74,0,159825041.7,175435.03,261812.8805,1574092478,240823152.5,354700984.2,702307948.6 + 09/07 23:00:00,0,18177860.04,0,66242406.86,131605.2642,196402.9265,1180829487,84420266.9,354700984.2,624273732.1 + 09/07 24:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,354700984.2,468205299.1 + 09/08 01:00:00,17909059.33,0,0,0,43858.75749,65453.22012,411432178.7,0,212820590.5,234102649.5 + 09/08 02:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/08 03:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/08 04:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/08 05:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/08 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/08 07:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,156068433 + 09/08 08:00:00,105489639.9,0,123233522.7,0,21940.99429,32743.94467,425588942.9,0,567521574.6,390171082.6 + 09/08 09:00:00,58651938.86,0,71437029.4,0,87722.33481,130913.6332,917178453,0,567521574.6,390171082.6 + 09/08 10:00:00,0,0,0,0,131506.0327,196254.837,1179939131,0,283760787.3,0 + 09/08 11:00:00,0,0,0,0,131284.8735,195924.7872,1177954779,0,283760787.3,0 + 09/08 12:00:00,0,190536635.1,0,101584655.2,87237.86852,130190.6332,782742606.3,292121290.3,283760787.3,0 + 09/08 13:00:00,0,525038142.1,0,509791842.4,86938.14323,129743.3341,780053318.3,1034829985,283760787.3,0 + 09/08 14:00:00,0,680716743.4,0,781546882.2,130018.919,194035.5225,1166595989,1462263626,283760787.3,0 + 09/08 15:00:00,0,681279039.3,0,939482754.8,173358.5587,258714.03,1555461319,1620761794,283760787.3,0 + 09/08 16:00:00,0,595844871.9,0,984993468.1,216909.5704,323707.9815,1946223187,1580838340,283760787.3,0 + 09/08 17:00:00,0,465325998,0,1009064805,260582.732,388884.225,2338081045,1474390803,354700984.2,0 + 09/08 18:00:00,0,207950737.6,0,699509192.3,304836.7625,454927.3362,2735150755,907459929.9,141880393.7,0 + 09/08 19:00:00,0,377411703.3,0,605453506.5,174616.3009,260591.0388,1566746423,982865209.8,638461771.5,0 + 09/08 20:00:00,0,626028118.7,0,972638611.6,131284.8735,195924.7872,1177954779,1598666730,638461771.5,702307948.6 + 09/08 21:00:00,0,526700246.8,0,823384617.1,87523.24903,130616.5248,785303185.7,1350084864,496581377.8,702307948.6 + 09/08 22:00:00,0,421639525.8,0,665128331.9,87605.47633,130739.2378,786040970.9,1086767858,354700984.2,702307948.6 + 09/08 23:00:00,0,378645054.3,0,600225506.5,87523.24903,130616.5248,785303185.7,978870560.8,354700984.2,624273732.1 + 09/08 24:00:00,0,301922736,0,476292382.2,87570.20432,130686.5991,785724492.5,778215118.2,354700984.2,468205299.1 + 09/09 01:00:00,0,118833562.3,0,202047151.2,43785.10216,65343.29957,392862246.2,320880713.4,212820590.5,234102649.5 + 09/09 02:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 09/09 03:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 09/09 04:00:00,0,0,0,0,21917.67211,32709.13951,196656521.8,0,141880393.7,0 + 09/09 05:00:00,0,0,0,0,21924.76479,32719.72435,196720160.9,0,141880393.7,0 + 09/09 06:00:00,0,0,0,0,21910.7903,32698.86933,196594774.7,0,141880393.7,0 + 09/09 07:00:00,0,82723606.43,0,205366459.8,87643.16119,130795.4773,786379098.7,288090066.2,141880393.7,156068433 + 09/09 08:00:00,0,635336784.4,0,1028582367,349921.0929,522209.557,3139670340,1663919152,567521574.6,390171082.6 + 09/09 09:00:00,0,586587839.7,0,969427953.4,305578.5265,456034.3179,2741806240,1556015793,567521574.6,390171082.6 + 09/09 10:00:00,0,188338026,0,325574609,217938.8221,325243.9994,1955458157,513912635,283760787.3,0 + 09/09 11:00:00,0,322776285.7,0,439684364,174192.4357,259958.4778,1562943289,762460649.7,283760787.3,0 + 09/09 12:00:00,0,387700429.9,0,488853484.9,87096.21786,129979.2389,781471644.4,876553914.8,283760787.3,0 + 09/09 13:00:00,0,310811083.8,0,418059014.8,87026.3912,129875.0321,780845124,728870098.6,283760787.3,0 + 09/09 14:00:00,0,340105437.9,0,462433916.7,86938.14323,129743.3341,780053318.3,802539354.5,283760787.3,0 + 09/09 15:00:00,0,455057613.8,0,641428760.8,130291.366,194442.1125,1169040523,1096486375,283760787.3,0 + 09/09 16:00:00,0,575642912.1,0,976955786.9,217152.2767,324070.1875,1948400871,1552598699,283760787.3,0 + 09/09 17:00:00,0,386909176,0,742250539.3,217565.978,324687.5804,1952112810,1129159715,354700984.2,0 + 09/09 18:00:00,0,158121891.2,0,271683942.3,304836.7625,454927.3362,2735150755,429805833.5,141880393.7,0 + 09/09 19:00:00,0,310726940.5,0,480282333,306619.1671,457587.3323,2751143398,791009273.5,638461771.5,0 + 09/09 20:00:00,0,506448638.5,0,774993071.7,175286.3224,261590.9547,1572758197,1281441710,638461771.5,702307948.6 + 09/09 21:00:00,0,373510639.7,0,589830733.4,175341.3769,261673.116,1573252175,963341373.1,496581377.8,702307948.6 + 09/09 22:00:00,0,249277862.7,0,404978723.3,87722.33481,130913.6332,787089484.8,654256586,354700984.2,702307948.6 + 09/09 23:00:00,0,181122574.9,0,306389937.7,87722.33481,130913.6332,787089484.8,487512512.6,354700984.2,624273732.1 + 09/09 24:00:00,0,54598531.03,0,117393919.9,43881.98858,65487.88935,393731560.5,171992450.9,354700984.2,468205299.1 + 09/10 01:00:00,0,0,0,0,43881.92504,65487.79453,393730990.5,0,212820590.5,234102649.5 + 09/10 02:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/10 03:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/10 04:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 09/10 05:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/10 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/10 07:00:00,0,0,0,0,87736.84279,130935.2843,787219657.7,0,141880393.7,156068433 + 09/10 08:00:00,68220117.87,0,73048228.04,0,350870.0599,523625.7609,3289453301,0,567521574.6,390171082.6 + 09/10 09:00:00,78416948.37,0,93191117.26,0,307078.9498,458273.4952,2926876868,0,567521574.6,390171082.6 + 09/10 10:00:00,53172350.93,0,33424275.15,0,219409.6252,327438.9727,2055251578,0,283760787.3,0 + 09/10 11:00:00,993864.019,0,0,0,175518.8773,261938.0112,1575838663,0,283760787.3,0 + 09/10 12:00:00,0,9249966.218,0,0,87751.74847,130957.529,787353399.1,9249966.218,283760787.3,0 + 09/10 13:00:00,0,169688672,0,0,87737.83331,130936.7626,787228545.1,169688672,283760787.3,0 + 09/10 14:00:00,0,213420338.7,0,96697979.61,87737.83331,130936.7626,787228545.1,310118318.4,283760787.3,0 + 09/10 15:00:00,0,199087758.7,0,241153083.3,131583.5022,196370.4498,1180634227,440240842,283760787.3,0 + 09/10 16:00:00,0,139147242.6,0,304462936.9,219344.5833,327341.9064,1968071363,443610179.5,283760787.3,0 + 09/10 17:00:00,0,39404953.9,0,281131141.9,219398.5966,327422.514,1968555998,320536095.8,354700984.2,0 + 09/10 18:00:00,24595422.4,0,0,36030200.29,307173.4753,458414.5617,2780712356,36030200.29,141880393.7,0 + 09/10 19:00:00,0,0,0,0,307078.9498,458273.4952,2755268802,0,638461771.5,0 + 09/10 20:00:00,0,23272745.78,0,136094699.1,175282.1154,261584.6763,1572720450,159367444.9,638461771.5,702307948.6 + 09/10 21:00:00,0,26476705.9,0,86066378.48,175337.6745,261667.5906,1573218954,112543084.4,496581377.8,702307948.6 + 09/10 22:00:00,0,0,0,2156046.161,87603.07075,130735.6478,786019386.8,2156046.161,354700984.2,702307948.6 + 09/10 23:00:00,0,0,0,0,87567.54766,130682.6344,785700655.5,0,354700984.2,624273732.1 + 09/10 24:00:00,22717632.5,0,0,0,43783.77383,65341.31722,415567960.3,0,354700984.2,468205299.1 + 09/11 01:00:00,208044629.9,0,263936594.6,0,43738.53325,65273.80182,864425630.8,0,212820590.5,234102649.5 + 09/11 02:00:00,0,0,0,0,21855.1492,32615.83257,196095534.4,0,141880393.7,0 + 09/11 03:00:00,29683256.33,0,11122976.78,0,21792.73505,32522.68796,236341755.9,0,141880393.7,0 + 09/11 04:00:00,229399984,0,313721655.9,0,21808.3811,32546.03756,738797547,0,141880393.7,0 + 09/11 05:00:00,261878428.4,0,360948509.6,0,21772.83431,32492.98881,818183901.3,0,141880393.7,0 + 09/11 06:00:00,195381236.9,0,311907916.1,0,21808.3811,32546.03756,702965060.2,0,141880393.7,0 + 09/11 07:00:00,3627311.48,0,4404028.217,0,87477.0665,130547.6036,792920152.2,0,141880393.7,156068433 + 09/11 08:00:00,173541441.4,0,219883244.5,0,350675.3489,523335.1813,3539862595,0,567521574.6,390171082.6 + 09/11 09:00:00,0,0,0,101299870.1,307011.3024,458172.5408,2754661836,101299870.1,567521574.6,390171082.6 + 09/11 10:00:00,0,0,0,0,219377.6563,327391.2634,1968368111,0,283760787.3,0 + 09/11 11:00:00,0,30055941.19,0,42829263.97,175527.9543,261951.5574,1574926242,72885205.16,283760787.3,0 + 09/11 12:00:00,0,252061260.3,0,122522081.2,87751.74847,130957.529,787353399.1,374583341.4,283760787.3,0 + 09/11 13:00:00,0,385763129.2,0,247674236.7,87722.33481,130913.6332,787089484.8,633437365.8,283760787.3,0 + 09/11 14:00:00,0,445053254.5,0,407141975.8,87699.05915,130878.8974,786880643.7,852195230.3,283760787.3,0 + 09/11 15:00:00,0,425673174.7,0,542103080.4,131464.7418,196193.216,1179568648,967776255,283760787.3,0 + 09/11 16:00:00,0,327655673.6,0,564108934.5,219107.903,326988.6933,1965947747,891764608.1,283760787.3,0 + 09/11 17:00:00,0,183619303.3,0,512513602.5,219176.7211,327091.3951,1966565218,696132905.8,354700984.2,0 + 09/11 18:00:00,0,0,0,176398348.4,307131.1196,458351.3517,2755736897,176398348.4,141880393.7,0 + 09/11 19:00:00,0,34145612.49,0,126594501.8,307128.7188,458347.7687,2755715355,160740114.2,638461771.5,0 + 09/11 20:00:00,0,224554019.6,0,364186670.5,175395.0225,261753.1747,1573733510,588740690.1,638461771.5,702307948.6 + 09/11 21:00:00,0,128918113.1,0,223237690.3,175282.1154,261584.6763,1572720450,352155803.4,496581377.8,702307948.6 + 09/11 22:00:00,0,31836652.81,0,80240545.4,87567.54766,130682.6344,785700655.5,112077198.2,354700984.2,702307948.6 + 09/11 23:00:00,0,0,0,2732296.714,87567.54766,130682.6344,785700655.5,2732296.714,354700984.2,624273732.1 + 09/11 24:00:00,0,0,0,0,43738.53325,65273.80182,392444406.3,0,354700984.2,468205299.1 + 09/12 01:00:00,104314670.7,0,106874547.5,0,43760.14595,65306.05583,603827544.6,0,212820590.5,234102649.5 + 09/12 02:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 09/12 03:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 09/12 04:00:00,78386618.24,0,91738865.69,0,21839.78206,32592.89921,366083136.5,0,141880393.7,0 + 09/12 05:00:00,137395616.2,0,188010308.2,0,21808.3811,32546.03756,521081831.6,0,141880393.7,0 + 09/12 06:00:00,81166701.23,0,149013510.9,0,21839.78206,32592.89921,426137864.7,0,141880393.7,0 + 09/12 07:00:00,0,0,0,0,87603.07075,130735.6478,786019386.8,0,141880393.7,156068433 + 09/12 08:00:00,20606657.88,0,0,0,350947.3711,523741.1374,3169485289,0,567521574.6,390171082.6 + 09/12 09:00:00,0,68272402.49,0,318904492.5,307158.0353,458391.5196,2755978397,387176895,567521574.6,390171082.6 + 09/12 10:00:00,0,51578867.53,0,142523934.5,219305.837,327284.0829,1967723712,194102802,283760787.3,0 + 09/12 11:00:00,0,161900064.6,0,188809438.9,175341.3769,261673.116,1573252175,350709503.5,283760787.3,0 + 09/12 12:00:00,0,320746111,0,266153956.8,87480.27323,130552.3892,784917584.9,586900067.8,283760787.3,0 + 09/12 13:00:00,0,444715604.4,0,375410940.9,87424.10203,130468.5614,784413588.3,820126545.3,283760787.3,0 + 09/12 14:00:00,0,503997322.8,0,522555186.6,87373.47233,130393.0035,783959312.8,1026552509,283760787.3,0 + 09/12 15:00:00,0,480547509.2,0,638827113.8,130962.2256,195443.2791,1175059817,1119374623,283760787.3,0 + 09/12 16:00:00,0,374726689.2,0,641040882.1,218560.2551,326171.4034,1961033971,1015767571,283760787.3,0 + 09/12 17:00:00,0,208578980.2,0,523580269.1,218808.1226,326541.3119,1963257964,732159249.2,354700984.2,0 + 09/12 18:00:00,0,11156773.38,0,205597427.8,306751.0642,457784.1707,2752326845,216754201.1,141880393.7,0 + 09/12 19:00:00,0,127543227.6,0,232708137.2,307028.1718,458197.7161,2754813197,360251364.8,638461771.5,0 + 09/12 20:00:00,0,366145514,0,574281400.7,175444.6696,261827.2663,1574178970,940426914.7,638461771.5,702307948.6 + 09/12 21:00:00,0,256130446.7,0,413855323.7,175527.7002,261951.1781,1574923962,669985770.4,496581377.8,702307948.6 + 09/12 22:00:00,0,168398150.4,0,284527966.6,87763.97715,130975.7787,787463121,452926117,354700984.2,702307948.6 + 09/12 23:00:00,0,111163131.1,0,200404417.6,87759.00667,130968.3609,787418523.3,311567548.6,354700984.2,624273732.1 + 09/12 24:00:00,0,8545236.284,0,40579069.64,43868.42139,65467.64217,393609828.8,49124305.92,354700984.2,468205299.1 + 09/13 01:00:00,0,0,0,0,43868.42139,65467.64217,393609828.8,0,212820590.5,234102649.5 + 09/13 02:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/13 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/13 04:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/13 05:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/13 06:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 09/13 07:00:00,0,0,0,0,87717.51498,130906.4402,787046238.8,0,141880393.7,156068433 + 09/13 08:00:00,24001975.97,0,18504688.05,0,351055.4003,523902.3562,3192354588,0,567521574.6,390171082.6 + 09/13 09:00:00,0,26668281.77,0,195392883.7,307028.1718,458197.7161,2754813197,222061165.4,567521574.6,390171082.6 + 09/13 10:00:00,0,179583400.2,0,358103269.8,218925.5108,326716.4979,1964311231,537686670,283760787.3,0 + 09/13 11:00:00,0,366989603.1,0,459738443.4,174848.2041,260937.1228,1568827177,826728046.5,283760787.3,0 + 09/13 12:00:00,0,531025057.7,0,504197656.6,87308.15043,130295.5194,783373211.4,1035222714,283760787.3,0 + 09/13 13:00:00,0,628817627.4,0,577477493.2,87237.86852,130190.6332,782742606.3,1206295121,283760787.3,0 + 09/13 14:00:00,0,673869704.5,0,730967641.7,87096.21786,129979.2389,781471644.4,1404837346,283760787.3,0 + 09/13 15:00:00,0,656564727.9,0,877613267.6,130539.5868,194812.5482,1171267686,1534177995,283760787.3,0 + 09/13 16:00:00,0,556948843.3,0,914944035.3,217740.5446,324948.0973,1953679111,1471892879,283760787.3,0 + 09/13 17:00:00,0,391019113.6,0,849755035.2,218094.6713,325476.5831,1956856516,1240774149,354700984.2,0 + 09/13 18:00:00,0,159307242,0,461189962.2,305984.3571,456639.9648,2745447559,620497204.2,141880393.7,0 + 09/13 19:00:00,0,329167091.1,0,495071922.2,306751.0642,457784.1707,2752326845,824239013.4,638461771.5,0 + 09/13 20:00:00,0,543299769.8,0,824355966.1,175444.6696,261827.2663,1574178970,1367655736,638461771.5,702307948.6 + 09/13 21:00:00,0,410711503.9,0,630490240.6,175518.8773,261938.0112,1574844798,1041201745,496581377.8,702307948.6 + 09/13 22:00:00,0,296555659.1,0,464102083.1,87763.97715,130975.7787,787463121,760657742.1,354700984.2,702307948.6 + 09/13 23:00:00,0,214666328.3,0,345398794.9,87759.00667,130968.3609,787418523.3,560065123.2,354700984.2,624273732.1 + 09/13 24:00:00,0,152586421,0,254204629.6,43879.71932,65484.50279,393711199.6,406791050.6,354700984.2,468205299.1 + 09/14 01:00:00,0,0,0,4869385.365,43868.42139,65467.64217,393609828.8,4869385.365,212820590.5,234102649.5 + 09/14 02:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/14 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/14 04:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 09/14 05:00:00,0,0,0,0,21900.76769,32683.91195,196504846.7,0,141880393.7,0 + 09/14 06:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 09/14 07:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,156068433 + 09/14 08:00:00,0,50818891.24,0,247227713.7,87759.43865,130969.0056,787422399.2,298046604.9,567521574.6,390171082.6 + 09/14 09:00:00,0,404412053,0,754397056.1,219247.6479,327197.2435,1967201609,1158809109,567521574.6,390171082.6 + 09/14 10:00:00,0,314643955.8,0,544436671.7,218925.5108,326716.4979,1964311231,859080627.5,283760787.3,0 + 09/14 11:00:00,0,523993672.1,0,672591825.3,218270.3761,325738.7985,1958433029,1196585497,283760787.3,0 + 09/14 12:00:00,0,698912352.3,0,729740606.8,130856.8028,195285.9498,1174113909,1428652959,283760787.3,0 + 09/14 13:00:00,0,794542628.3,0,814268230.4,130644.3268,194968.8584,1172207467,1608810859,283760787.3,0 + 09/14 14:00:00,0,831011270,0,977609405.2,130407.2149,194615.0011,1170079978,1808620675,283760787.3,0 + 09/14 15:00:00,0,754429293.9,0,1043352767,130539.5868,194812.5482,1171267686,1797782060,283760787.3,0 + 09/14 16:00:00,0,595420090.8,0,963988005.8,304836.7625,454927.3362,2735150755,1559408097,283760787.3,0 + 09/14 17:00:00,0,426725652.8,0,890012015.5,392289.8797,585439.1988,3519824683,1316737668,354700984.2,0 + 09/14 18:00:00,0,141659599.3,0,446906985.5,306331.3716,457157.8367,2748561150,588566584.9,141880393.7,0 + 09/14 19:00:00,0,293233756.6,0,440685937.6,306619.1671,457587.3323,2751143398,733919694.2,638461771.5,0 + 09/14 20:00:00,0,558555299.8,0,843348978.7,262816.429,392217.7134,2358122913,1401904278,638461771.5,702307948.6 + 09/14 21:00:00,0,416749166,0,640691895.2,219247.6479,327197.2435,1967201609,1057441061,496581377.8,702307948.6 + 09/14 22:00:00,0,292957434.7,0,461512967.6,175475.6666,261873.5251,1574457090,754470402.2,354700984.2,702307948.6 + 09/14 23:00:00,0,208548030,0,339673740.2,131639.158,196453.5084,1181133599,548221770.2,354700984.2,624273732.1 + 09/14 24:00:00,0,83165896.53,0,156073031.1,87763.85009,130975.5891,787461980.9,239238927.6,354700984.2,468205299.1 + 09/15 01:00:00,0,0,0,0,43875.53125,65478.25267,393673622.1,0,212820590.5,234102649.5 + 09/15 02:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 09/15 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/15 04:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/15 05:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/15 06:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/15 07:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,156068433 + 09/15 08:00:00,0,82636009.5,0,232339321.9,21930.5837,32728.40829,196772371.2,314975331.4,567521574.6,390171082.6 + 09/15 09:00:00,0,509893493.6,0,866115839.6,87605.47633,130739.2378,786040970.9,1376009333,567521574.6,390171082.6 + 09/15 10:00:00,0,290929616.9,0,513901221.8,131220.4099,195828.5839,1177376377,804830838.7,283760787.3,0 + 09/15 11:00:00,0,519783524.3,0,667558231.7,130856.8028,195285.9498,1174113909,1187341756,283760787.3,0 + 09/15 12:00:00,0,733947369,0,771310848.9,87026.3912,129875.0321,780845124,1505258218,283760787.3,0 + 09/15 13:00:00,0,859515503,0,907634559.1,86860.91066,129628.075,779360348.3,1767150062,283760787.3,0 + 09/15 14:00:00,0,920697531.2,0,1095806350,130145.7422,194224.7889,1167733912,2016503881,283760787.3,0 + 09/15 15:00:00,0,901038215.8,0,1239056565,173527.6563,258966.3852,1556978549,2140094781,283760787.3,0 + 09/15 16:00:00,0,823686153.3,0,1312496107,216909.5704,323707.9815,1946223187,2136182261,283760787.3,0 + 09/15 17:00:00,0,649008418.1,0,1247865973,261079.1736,389625.0964,2342535372,1896874391,354700984.2,0 + 09/15 18:00:00,0,377542611.9,0,795029430.2,305578.5265,456034.3179,2741806240,1172572042,141880393.7,0 + 09/15 19:00:00,0,553939027.9,0,794937233.3,174960.5465,261104.7785,1569835170,1348876261,638461771.5,0 + 09/15 20:00:00,0,768571132.2,0,1137142084,131548.5887,196318.3461,1180320965,1905713217,638461771.5,702307948.6 + 09/15 21:00:00,0,602422531,0,899731502.6,87737.83331,130936.7626,787228545.1,1502154034,496581377.8,702307948.6 + 09/15 22:00:00,0,462975218.8,0,696427916.2,87759.43865,130969.0056,787422399.2,1159403135,354700984.2,702307948.6 + 09/15 23:00:00,0,381782044.8,0,579485123,87759.43865,130969.0056,787422399.2,961267167.8,354700984.2,624273732.1 + 09/15 24:00:00,0,271697105,0,419463252.6,87763.97715,130975.7787,787463121,691160357.6,354700984.2,468205299.1 + 09/16 01:00:00,0,64839818.72,0,114403616.3,43881.98858,65487.88935,393731560.5,179243435.1,212820590.5,234102649.5 + 09/16 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/16 03:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 09/16 04:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/16 05:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 09/16 06:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/16 07:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,141880393.7,156068433 + 09/16 08:00:00,0,216628628.5,0,404722252.2,351037.7546,523876.0224,3149689597,621350880.6,567521574.6,390171082.6 + 09/16 09:00:00,0,284120668.3,0,478973099.3,306946.707,458076.141,2754082253,763093767.6,567521574.6,390171082.6 + 09/16 10:00:00,0,183867614.7,0,323789823.5,218808.1226,326541.3119,1963257964,507657438.2,283760787.3,0 + 09/16 11:00:00,0,438829911.2,0,571289072.7,174192.4357,259958.4778,1562943289,1010118984,283760787.3,0 + 09/16 12:00:00,0,631447046.2,0,681601759.8,86938.14323,129743.3341,780053318.3,1313048806,283760787.3,0 + 09/16 13:00:00,0,751911357.2,0,785599982.4,86860.91066,129628.075,779360348.3,1537511340,283760787.3,0 + 09/16 14:00:00,0,801612279.8,0,959435563.4,86679.27934,129357.015,777730659.5,1761047843,283760787.3,0 + 09/16 15:00:00,0,740187366.1,0,1042995464,130145.7422,194224.7889,1167733912,1783182830,283760787.3,0 + 09/16 16:00:00,0,639416411.9,0,1065548528,217152.2767,324070.1875,1948400871,1704964939,283760787.3,0 + 09/16 17:00:00,0,475975705.4,0,970206245.8,217345.3581,324358.3352,1950133296,1446181951,354700984.2,0 + 09/16 18:00:00,0,221141401.3,0,542021393.4,305114.3509,455341.5991,2737641420,763162794.7,141880393.7,0 + 09/16 19:00:00,0,449539044.8,0,680027705.7,305578.5265,456034.3179,2741806240,1129566750,638461771.5,0 + 09/16 20:00:00,0,714033209.6,0,1082165886,174848.2041,260937.1228,1568827177,1796199095,638461771.5,702307948.6 + 09/16 21:00:00,0,571404287.8,0,872592128.4,175140.4086,261373.1983,1571448985,1443996416,496581377.8,702307948.6 + 09/16 22:00:00,0,448183747.6,0,690567999.4,87605.47633,130739.2378,786040970.9,1138751747,354700984.2,702307948.6 + 09/16 23:00:00,0,377011336.9,0,585872927.1,87643.16119,130795.4773,786379098.7,962884264,354700984.2,624273732.1 + 09/16 24:00:00,0,259272335.3,0,411961306.1,43849.52958,65439.44871,393440321.8,671233641.3,354700984.2,468205299.1 + 09/17 01:00:00,0,36224268.71,0,77560661,43868.91665,65468.38128,393614272.6,113784929.7,212820590.5,234102649.5 + 09/17 02:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/17 03:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/17 04:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 09/17 05:00:00,0,0,0,0,21939.85966,32742.2514,196855599.8,0,141880393.7,0 + 09/17 06:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 09/17 07:00:00,0,0,0,0,87763.97715,130975.7787,787463121,0,141880393.7,156068433 + 09/17 08:00:00,0,29648645.32,0,86948933.54,351006.9939,523830.1162,3149413596,116597578.9,567521574.6,390171082.6 + 09/17 09:00:00,0,273286452.4,0,485692575.2,307082.4166,458278.669,2755299908,758979027.6,567521574.6,390171082.6 + 09/17 10:00:00,0,0,0,12386834.83,218808.1226,326541.3119,1963257964,12386834.83,283760787.3,0 + 09/17 11:00:00,0,399137771.4,0,511976289.5,174475.737,260381.2665,1565485213,911114060.9,283760787.3,0 + 09/17 12:00:00,0,639183776.7,0,642238797.5,86938.14323,129743.3341,780053318.3,1281422574,283760787.3,0 + 09/17 13:00:00,0,813244058.3,0,804661855.6,86763.82816,129483.1926,778489274.7,1617905914,283760787.3,0 + 09/17 14:00:00,0,836743917,0,1020114554,86462.96442,129034.1944,775789771.9,1856858471,283760787.3,0 + 09/17 15:00:00,0,778134128.6,0,1111163920,129694.4466,193551.2917,1163684658,1889298049,283760787.3,0 + 09/17 16:00:00,0,669078302.1,0,1112871008,216433.6875,322997.7911,1941953323,1781949310,283760787.3,0 + 09/17 17:00:00,0,485761880.7,0,980148580,217152.2767,324070.1875,1948400871,1465910461,354700984.2,0 + 09/17 18:00:00,0,206233107.7,0,493859649.6,305332.5398,455667.2163,2739599122,700092757.2,141880393.7,0 + 09/17 19:00:00,0,458984571.8,0,694331365.6,305332.5398,455667.2163,2739599122,1153315937,638461771.5,0 + 09/17 20:00:00,0,763807624.5,0,1155824424,174616.3009,260591.0388,1566746423,1919632048,638461771.5,702307948.6 + 09/17 21:00:00,0,649707557.7,0,987283838.6,174848.2041,260937.1228,1568827177,1636991396,496581377.8,702307948.6 + 09/17 22:00:00,0,529097768.9,0,808582357.8,87480.27323,130552.3892,784917584.9,1337680127,354700984.2,702307948.6 + 09/17 23:00:00,0,433047293.3,0,666949631.5,87570.20432,130686.5991,785724492.5,1099996925,354700984.2,624273732.1 + 09/17 24:00:00,0,269433428.6,0,426269316.7,43849.52958,65439.44871,393440321.8,695702745.3,354700984.2,468205299.1 + 09/18 01:00:00,0,48299835.49,0,94340127.02,43849.52958,65439.44871,393440321.8,142639962.5,212820590.5,234102649.5 + 09/18 02:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 09/18 03:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 09/18 04:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 09/18 05:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 09/18 06:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 09/18 07:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,141880393.7,156068433 + 09/18 08:00:00,0,2198075.346,0,138638930.1,350889.3393,523654.5327,3148357939,140837005.5,567521574.6,390171082.6 + 09/18 09:00:00,0,133213684.1,0,249770263.8,306847.4096,457927.9531,2753191306,382983947.9,567521574.6,390171082.6 + 09/18 10:00:00,0,0,0,32043515.65,218808.1226,326541.3119,1963257964,32043515.65,283760787.3,0 + 09/18 11:00:00,0,248007375.2,0,267127910.7,174616.3009,260591.0388,1566746423,515135285.9,283760787.3,0 + 09/18 12:00:00,0,406396702.9,0,403238626.6,87175.52883,130097.5997,782183262.8,809635329.5,283760787.3,0 + 09/18 13:00:00,0,592485912.2,0,592564648.8,87026.3912,129875.0321,780845124,1185050561,283760787.3,0 + 09/18 14:00:00,0,603373898.6,0,676477959.7,87026.3912,129875.0321,780845124,1279851858,283760787.3,0 + 09/18 15:00:00,0,585348192.3,0,796688968.1,130145.7422,194224.7889,1167733912,1382037160,283760787.3,0 + 09/18 16:00:00,0,440761241.1,0,768010983,217565.978,324687.5804,1952112810,1208772224,283760787.3,0 + 09/18 17:00:00,0,154432915.3,0,282322995.4,218094.6713,325476.5831,1956856516,436755910.7,354700984.2,0 + 09/18 18:00:00,0,17590776.35,0,88037811.95,305578.5265,456034.3179,2741806240,105628588.3,141880393.7,0 + 09/18 19:00:00,0,263438513.2,0,414006614,305984.3571,456639.9648,2745447559,677445127.2,638461771.5,0 + 09/18 20:00:00,0,572069580.4,0,877595247,174960.5465,261104.7785,1569835170,1449664827,638461771.5,702307948.6 + 09/18 21:00:00,0,501386077.4,0,774714005.7,174746.9447,260786.0069,1567918626,1276100083,496581377.8,702307948.6 + 09/18 22:00:00,0,393158801.1,0,615162493,87523.24903,130616.5248,785303185.7,1008321294,354700984.2,702307948.6 + 09/18 23:00:00,0,299672698.3,0,478917070.4,87570.20432,130686.5991,785724492.5,778589768.8,354700984.2,624273732.1 + 09/18 24:00:00,0,177874462.7,0,293812266.5,43835.34423,65418.27901,393313043.7,471686729.3,354700984.2,468205299.1 + 09/19 01:00:00,0,0,0,5556943.518,43861.16741,65456.81659,393544742.4,5556943.518,212820590.5,234102649.5 + 09/19 02:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 09/19 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 09/19 04:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 09/19 05:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/19 06:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/19 07:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,141880393.7,156068433 + 09/19 08:00:00,0,0,0,101616326.8,351037.7546,523876.0224,3149689597,101616326.8,567521574.6,390171082.6 + 09/19 09:00:00,0,190466033.7,0,502626410.8,307082.4166,458278.669,2755299908,693092444.5,567521574.6,390171082.6 + 09/19 10:00:00,0,134387388.2,0,245213129.5,219247.6479,327197.2435,1967201609,379600517.7,283760787.3,0 + 09/19 11:00:00,0,280169341.4,0,283550466.4,175341.3769,261673.116,1573252175,563719807.8,283760787.3,0 + 09/19 12:00:00,0,438876688.8,0,338840327.1,87570.20432,130686.5991,785724492.5,777717015.9,283760787.3,0 + 09/19 13:00:00,0,546778875.9,0,430568359.5,87523.24903,130616.5248,785303185.7,977347235.4,283760787.3,0 + 09/19 14:00:00,0,578816206.8,0,555711940.7,87523.24903,130616.5248,785303185.7,1134528147,283760787.3,0 + 09/19 15:00:00,0,531762174.1,0,691488144.8,131136.153,195702.8421,1176620382,1223250319,283760787.3,0 + 09/19 16:00:00,0,350313290,0,680763507.1,218925.5108,326716.4979,1964311231,1031076797,283760787.3,0 + 09/19 17:00:00,0,97499569.12,0,551005870.8,219013.6908,326848.0945,1965102427,648505439.9,354700984.2,0 + 09/19 18:00:00,0,0,0,104146237.2,307028.1718,458197.7161,2754813197,104146237.2,141880393.7,0 + 09/19 19:00:00,0,28233678.24,0,89769400.27,307158.0353,458391.5196,2755978397,118003078.5,638461771.5,0 + 09/19 20:00:00,0,231329368.9,0,383853584.6,175518.0133,261936.7218,1574837047,615182953.5,638461771.5,702307948.6 + 09/19 21:00:00,0,142526005.3,0,246470341.7,175473.6856,261870.5687,1574439315,388996346.9,496581377.8,702307948.6 + 09/19 22:00:00,0,43489857.12,0,100187856.3,87668.83723,130833.7953,786609477.2,143677713.5,354700984.2,702307948.6 + 09/19 23:00:00,0,0,0,2319700.931,87567.54766,130682.6344,785700655.5,2319700.931,354700984.2,624273732.1 + 09/19 24:00:00,0,0,0,0,43783.77383,65341.31722,392850327.8,0,354700984.2,468205299.1 + 09/20 01:00:00,135511962.5,0,149054873.3,0,43738.53325,65273.80182,677011242.1,0,212820590.5,234102649.5 + 09/20 02:00:00,0,0,0,0,21839.78206,32592.89921,195957652.6,0,141880393.7,0 + 09/20 03:00:00,12940121.95,0,0,0,21826.02528,32572.3691,208774341.7,0,141880393.7,0 + 09/20 04:00:00,135584830.8,0,181298964.1,0,21839.78206,32592.89921,512841447.4,0,141880393.7,0 + 09/20 05:00:00,151890054.7,0,206645428.7,0,21826.02528,32572.3691,554369703.2,0,141880393.7,0 + 09/20 06:00:00,140682792.9,0,209507461.3,0,21808.3811,32546.03756,545866161.4,0,141880393.7,0 + 09/20 07:00:00,0,0,1300327.98,0,87567.54766,130682.6344,787000983.5,0,141880393.7,156068433 + 09/20 08:00:00,102120845,0,117325519.3,0,350947.3711,523741.1374,3368324995,0,567521574.6,390171082.6 + 09/20 09:00:00,0,53091173.46,0,351379332.7,307158.0353,458391.5196,2755978397,404470506.2,567521574.6,390171082.6 + 09/20 10:00:00,0,129485359.4,0,234111064.2,219247.6479,327197.2435,1967201609,363596423.6,283760787.3,0 + 09/20 11:00:00,0,287095267.4,0,301385264.2,175286.3224,261590.9547,1572758197,588480531.6,283760787.3,0 + 09/20 12:00:00,0,468314889.4,0,391329838.1,87424.10203,130468.5614,784413588.3,859644727.5,283760787.3,0 + 09/20 13:00:00,0,601879001.5,0,519838930.6,87308.15043,130295.5194,783373211.4,1121717932,283760787.3,0 + 09/20 14:00:00,0,635187093.2,0,660246340.9,87175.52883,130097.5997,782183262.8,1295433434,283760787.3,0 + 09/20 15:00:00,0,575626498.5,0,753565279.8,130763.2932,195146.3996,1173274894,1329191778,283760787.3,0 + 09/20 16:00:00,0,411603847.3,0,667210942.7,217740.5446,324948.0973,1953679111,1078814790,283760787.3,0 + 09/20 17:00:00,0,292926358.1,0,667145116.2,217938.8221,325243.9994,1955458157,960071474.2,354700984.2,0 + 09/20 18:00:00,0,150040474.3,0,259042229.3,306180.9563,456933.3624,2747211547,409082703.5,141880393.7,0 + 09/20 19:00:00,0,335461073.9,0,493094409.5,306847.4096,457927.9531,2753191306,828555483.5,638461771.5,0 + 09/20 20:00:00,0,562810560.4,0,842006490.4,175518.8773,261938.0112,1574844798,1404817051,638461771.5,702307948.6 + 09/20 21:00:00,0,431148918.6,0,649796653.5,175518.8773,261938.0112,1574844798,1080945572,496581377.8,702307948.6 + 09/20 22:00:00,0,310334133.3,0,474565613.7,87763.85009,130975.5891,787461980.9,784899747.1,354700984.2,702307948.6 + 09/20 23:00:00,0,214383625.9,0,336546962.8,87759.00667,130968.3609,787418523.3,550930588.6,354700984.2,624273732.1 + 09/20 24:00:00,0,120770631.4,0,200723078.9,43881.92504,65487.79453,393730990.5,321493710.2,354700984.2,468205299.1 + 09/21 01:00:00,0,0,0,0,43879.50333,65484.18046,393709261.7,0,212820590.5,234102649.5 + 09/21 02:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/21 03:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/21 04:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 09/21 05:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/21 06:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 09/21 07:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,156068433 + 09/21 08:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,567521574.6,390171082.6 + 09/21 09:00:00,0,47000990.17,0,140179674.3,219176.7211,327091.3951,1966565218,187180664.4,567521574.6,390171082.6 + 09/21 10:00:00,0,0,0,0,219176.7211,327091.3951,1966565218,0,283760787.3,0 + 09/21 11:00:00,0,0,0,0,219247.6479,327197.2435,1967201609,0,283760787.3,0 + 09/21 12:00:00,0,0,0,0,131506.0327,196254.837,1179939131,0,283760787.3,0 + 09/21 13:00:00,0,0,0,0,131464.7418,196193.216,1179568648,0,283760787.3,0 + 09/21 14:00:00,0,0,0,0,131220.4099,195828.5839,1177376377,0,283760787.3,0 + 09/21 15:00:00,0,0,0,0,131220.4099,195828.5839,1177376377,0,283760787.3,0 + 09/21 16:00:00,0,79840179.07,0,144573678.1,304836.7625,454927.3362,2735150755,224413857.2,283760787.3,0 + 09/21 17:00:00,0,129339193.6,0,213865273.6,392289.8797,585439.1988,3519824683,343204467.2,354700984.2,0 + 09/21 18:00:00,0,35207570.62,0,80299541.21,305114.3509,455341.5991,2737641420,115507111.8,141880393.7,0 + 09/21 19:00:00,0,319886038.9,0,496210343.9,305114.3509,455341.5991,2737641420,816096382.8,638461771.5,0 + 09/21 20:00:00,0,604195977.1,0,923748870.5,261924.4513,390886.5582,2350119634,1527944848,638461771.5,702307948.6 + 09/21 21:00:00,0,483033558.4,0,751529803.6,218433.6808,325982.5086,1959898282,1234563362,496581377.8,702307948.6 + 09/21 22:00:00,0,379228553.5,0,600195764.7,174848.2041,260937.1228,1568827177,979424318.3,354700984.2,702307948.6 + 09/21 23:00:00,0,310394317.7,0,496969195.5,131220.4099,195828.5839,1177376377,807363513.2,354700984.2,624273732.1 + 09/21 24:00:00,0,209001145.8,0,342957058.6,87570.20432,130686.5991,785724492.5,551958204.4,354700984.2,468205299.1 + 09/22 01:00:00,0,16926101.09,0,71234423.03,43785.10216,65343.29957,392862246.2,88160524.12,212820590.5,234102649.5 + 09/22 02:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 09/22 03:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 09/22 04:00:00,0,0,0,0,21892.55108,32671.64979,196431123.1,0,141880393.7,0 + 09/22 05:00:00,0,0,0,0,21901.36908,32684.80945,196510242.7,0,141880393.7,0 + 09/22 06:00:00,0,0,0,0,21937.93712,32739.38226,196838349.8,0,141880393.7,0 + 09/22 07:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,156068433 + 09/22 08:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,567521574.6,390171082.6 + 09/22 09:00:00,0,0,0,0,87763.97715,130975.7787,787463121,0,567521574.6,390171082.6 + 09/22 10:00:00,31134950.83,0,12290987.36,0,131645.7751,196463.3836,1224618910,0,283760787.3,0 + 09/22 11:00:00,88482209.32,0,138016465.2,0,131645.9657,196463.668,1407693356,0,283760787.3,0 + 09/22 12:00:00,47513349.28,0,94514418.98,0,87763.97715,130975.7787,929490889.3,0,283760787.3,0 + 09/22 13:00:00,20288664.16,0,66984571.73,0,87759.43865,130969.0056,874695635.1,0,283760787.3,0 + 09/22 14:00:00,35797675.66,0,74399381.05,0,131645.9657,196463.668,1291391738,0,283760787.3,0 + 09/22 15:00:00,104219034.4,0,147457278.6,0,175527.9543,261951.5574,1826602555,0,283760787.3,0 + 09/22 16:00:00,132821606.3,0,184273389.9,0,219409.6252,327438.9727,2285749949,0,283760787.3,0 + 09/22 17:00:00,145617630.8,0,197821826.8,0,263277.02,392905.0828,2705695028,0,354700984.2,0 + 09/22 18:00:00,210725998.7,0,289694242.3,0,307128.7188,458347.7687,3256135596,0,141880393.7,0 + 09/22 19:00:00,39949653.26,0,32706862.57,0,175473.6856,261870.5687,1647095831,0,638461771.5,0 + 09/22 20:00:00,0,0,0,0,131576.2725,196359.6604,1180569358,0,638461771.5,702307948.6 + 09/22 21:00:00,0,0,0,66289377.07,87717.51498,130906.4402,787046238.8,66289377.07,496581377.8,702307948.6 + 09/22 22:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,354700984.2,702307948.6 + 09/22 23:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,354700984.2,624273732.1 + 09/22 24:00:00,3600507.832,0,0,0,87697.51124,130876.5874,790467262.8,0,354700984.2,468205299.1 + 09/23 01:00:00,163311542.2,0,158783932.6,0,43848.75562,65438.29369,715528852.3,0,212820590.5,234102649.5 + 09/23 02:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/23 03:00:00,0,0,0,0,21917.20931,32708.44883,196652369.3,0,141880393.7,0 + 09/23 04:00:00,53212509.43,0,47221172.67,0,21924.37781,32719.14684,297150370.8,0,141880393.7,0 + 09/23 05:00:00,80548465.34,0,97249501.09,0,21917.20931,32708.44883,374450335.7,0,141880393.7,0 + 09/23 06:00:00,98101696.79,0,123772106.2,0,21910.26442,32698.08453,418463859.2,0,141880393.7,0 + 09/23 07:00:00,46602981.14,0,48382973.85,0,87641.05768,130792.3381,881346179.9,0,141880393.7,156068433 + 09/23 08:00:00,219356563.6,0,323261966.1,0,350675.3489,523335.1813,3689056438,0,567521574.6,390171082.6 + 09/23 09:00:00,156540686.2,0,202832952.8,0,306840.9303,457918.2836,3112506809,0,567521574.6,390171082.6 + 09/23 10:00:00,208082002.6,0,258842797.4,0,219243.7781,327191.4684,2434091688,0,283760787.3,0 + 09/23 11:00:00,202610567.6,0,295938190,0,175435.03,261812.8805,2072641235,0,283760787.3,0 + 09/23 12:00:00,245558331.7,0,348796807.8,0,87697.51124,130876.5874,1381221894,0,283760787.3,0 + 09/23 13:00:00,268705670.1,0,379699713.3,0,87668.83723,130833.7953,1435014861,0,283760787.3,0 + 09/23 14:00:00,270462207.2,0,381202234.4,0,87697.51124,130876.5874,1438531197,0,283760787.3,0 + 09/23 15:00:00,279500148.6,0,391334590.9,0,131546.2669,196314.8811,1851134872,0,283760787.3,0 + 09/23 16:00:00,297039942.7,0,413744689.3,0,219243.7781,327191.4684,2677951519,0,283760787.3,0 + 09/23 17:00:00,287554322.5,0,396543369.5,0,219243.7781,327191.4684,2651264579,0,354700984.2,0 + 09/23 18:00:00,338227598.7,0,468211377.2,0,306941.2893,458068.0558,3560472618,0,141880393.7,0 + 09/23 19:00:00,117443425.1,0,137725440.3,0,306840.9303,457918.2836,3008302035,0,638461771.5,0 + 09/23 20:00:00,0,0,0,0,175337.6745,261667.5906,1573218954,0,638461771.5,702307948.6 + 09/23 21:00:00,0,0,0,0,175282.1154,261584.6763,1572720450,0,496581377.8,702307948.6 + 09/23 22:00:00,0,0,0,0,87641.05768,130792.3381,786360224.9,0,354700984.2,702307948.6 + 09/23 23:00:00,23065979.24,0,0,0,87567.54766,130682.6344,808766634.8,0,354700984.2,624273732.1 + 09/23 24:00:00,113150738.8,0,111480675.9,0,43760.14595,65306.05583,617269741.1,0,354700984.2,468205299.1 + 09/24 01:00:00,249895408.5,0,329308307.3,0,43760.14595,65306.05583,971842042.3,0,212820590.5,234102649.5 + 09/24 02:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 09/24 03:00:00,68071001.28,0,58971767.79,0,21880.07298,32653.02792,323361932.3,0,141880393.7,0 + 09/24 04:00:00,150552857.9,0,210511671,0,21869.26663,32636.90091,557286732,0,141880393.7,0 + 09/24 05:00:00,156939063.1,0,208388435.3,0,21880.07298,32653.02792,561646661.6,0,141880393.7,0 + 09/24 06:00:00,147418852.3,0,197092297.3,0,21880.07298,32653.02792,540830312.9,0,141880393.7,0 + 09/24 07:00:00,49074219.14,0,52993383.57,0,87567.54766,130682.6344,887768258.3,0,141880393.7,156068433 + 09/24 08:00:00,217437023.5,0,320197285.3,0,350564.2307,523169.3525,3683075209,0,567521574.6,390171082.6 + 09/24 09:00:00,105956243.6,0,108986190.2,0,307011.3024,458172.5408,2969604270,0,567521574.6,390171082.6 + 09/24 10:00:00,0,0,0,0,219377.6563,327391.2634,1968368111,0,283760787.3,0 + 09/24 11:00:00,0,0,0,0,175527.7002,261951.1781,1574923962,0,283760787.3,0 + 09/24 12:00:00,0,42878858.69,0,0,87763.97715,130975.7787,787463121,42878858.69,283760787.3,0 + 09/24 13:00:00,0,74704391.49,0,0,87763.85009,130975.5891,787461980.9,74704391.49,283760787.3,0 + 09/24 14:00:00,0,14699345.57,0,0,87763.85009,130975.5891,787461980.9,14699345.57,283760787.3,0 + 09/24 15:00:00,0,0,0,0,131638.51,196452.5414,1181127785,0,283760787.3,0 + 09/24 16:00:00,0,0,44732545.46,0,219377.6563,327391.2634,2013100656,0,283760787.3,0 + 09/24 17:00:00,101634226,0,168274246,0,219377.6563,327391.2634,2238276583,0,354700984.2,0 + 09/24 18:00:00,214303142.2,0,311576090.8,0,307011.3024,458172.5408,3280541069,0,141880393.7,0 + 09/24 19:00:00,51506889.39,0,54081694.37,0,307011.3024,458172.5408,2860250420,0,638461771.5,0 + 09/24 20:00:00,0,0,0,0,175435.03,261812.8805,1574092478,0,638461771.5,702307948.6 + 09/24 21:00:00,0,0,0,0,175395.0225,261753.1747,1573733510,0,496581377.8,702307948.6 + 09/24 22:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,354700984.2,702307948.6 + 09/24 23:00:00,0,0,0,0,87697.51124,130876.5874,786866755,0,354700984.2,624273732.1 + 09/24 24:00:00,79565345.48,0,35776040.4,0,43848.75562,65438.29369,508774763.4,0,354700984.2,468205299.1 + 09/25 01:00:00,212943709.6,0,261818686.3,0,43848.75562,65438.29369,868195773.4,0,212820590.5,234102649.5 + 09/25 02:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/25 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/25 04:00:00,126063995.2,0,142327628.7,0,21917.20931,32708.44883,465043993.2,0,141880393.7,0 + 09/25 05:00:00,145014703.7,0,183013272.4,0,21910.26442,32698.08453,524618032.3,0,141880393.7,0 + 09/25 06:00:00,163526680.3,0,209770303,0,21900.76769,32683.91195,569801830,0,141880393.7,0 + 09/25 07:00:00,102038417.3,0,120938030.4,0,87603.07075,130735.6478,1008995835,0,141880393.7,156068433 + 09/25 08:00:00,220506805.3,0,324512768.4,0,350412.283,522942.5913,3689097121,0,567521574.6,390171082.6 + 09/25 09:00:00,253430646.7,0,294687076.4,0,306840.9303,457918.2836,3301250893,0,567521574.6,390171082.6 + 09/25 10:00:00,255393210.6,0,341928177.9,0,219243.7781,327191.4684,2564488276,0,283760787.3,0 + 09/25 11:00:00,206923231.2,0,303247978.5,0,175473.6856,261870.5687,2084610525,0,283760787.3,0 + 09/25 12:00:00,150486666.5,0,257609829.7,0,87736.84279,130935.2843,1195316154,0,283760787.3,0 + 09/25 13:00:00,71167541.3,0,203737092.3,0,87717.51498,130906.4402,1061950872,0,283760787.3,0 + 09/25 14:00:00,99708074.01,0,207110176.7,0,87717.51498,130906.4402,1093864490,0,283760787.3,0 + 09/25 15:00:00,73823055.89,0,116814473.4,0,131605.2642,196402.9265,1371467016,0,283760787.3,0 + 09/25 16:00:00,86528688.66,0,8102889.147,0,219342.107,327338.2109,2062680722,0,283760787.3,0 + 09/25 17:00:00,227015488,0,157492750,0,219172.0931,327084.4883,2351031931,0,354700984.2,0 + 09/25 18:00:00,353302942.6,0,441647112.7,0,306486.4168,457389.2205,3544902350,0,141880393.7,0 + 09/25 19:00:00,152883901,0,181642734.5,0,306486.4168,457389.2205,3084478930,0,638461771.5,0 + 09/25 20:00:00,0,0,0,0,174954.133,261095.2073,1569777625,0,638461771.5,702307948.6 + 09/25 21:00:00,8407413.389,0,0,0,174841.1936,260926.6606,1577171688,0,496581377.8,702307948.6 + 09/25 22:00:00,123026065.7,0,101018569.7,0,87233.52442,130184.1503,1006748264,0,354700984.2,702307948.6 + 09/25 23:00:00,194502893.1,0,236627572.1,0,87091.33724,129971.9553,1212558318,0,354700984.2,624273732.1 + 09/25 24:00:00,266005327.5,0,341790974.4,0,43545.66862,64985.97763,998510228.4,0,354700984.2,468205299.1 + 09/26 01:00:00,407749961.7,0,552187267,0,43510.63427,64933.69364,1350336809,0,212820590.5,234102649.5 + 09/26 02:00:00,34387956.48,0,23731568.46,0,21755.31713,32466.84682,253319315.2,0,141880393.7,0 + 09/26 03:00:00,269523031.9,0,343623361.4,0,21755.31713,32466.84682,808346183.6,0,141880393.7,0 + 09/26 04:00:00,301054414.3,0,410839486,0,21792.73505,32522.68796,907429423.1,0,141880393.7,0 + 09/26 05:00:00,294145490.9,0,399748223,0,21792.73505,32522.68796,889429236.7,0,141880393.7,0 + 09/26 06:00:00,292443658.7,0,397451997.9,0,21792.73505,32522.68796,885431179.4,0,141880393.7,0 + 09/26 07:00:00,211523888.5,0,280347786.4,0,87233.52442,130184.1503,1274575304,0,141880393.7,156068433 + 09/26 08:00:00,263761669.1,0,346097319.6,0,349908.266,522190.4145,3749414239,0,567521574.6,390171082.6 + 09/26 09:00:00,303999792.5,0,394422062.4,0,306486.4168,457389.2205,3448374149,0,567521574.6,390171082.6 + 09/26 10:00:00,263379557.3,0,352488043.7,0,219172.0931,327084.4883,2582391294,0,283760787.3,0 + 09/26 11:00:00,171566302.7,0,264017792,0,175435.03,261812.8805,2009676572,0,283760787.3,0 + 09/26 12:00:00,59926334.01,0,158722459,0,87759.00667,130968.3609,1006067316,0,283760787.3,0 + 09/26 13:00:00,55034456.68,0,135659932.1,0,87763.85009,130975.5891,978156369.7,0,283760787.3,0 + 09/26 14:00:00,116486392,0,179813565.9,0,87763.85009,130975.5891,1083761939,0,283760787.3,0 + 09/26 15:00:00,127340180.6,0,183041106.9,0,131645.7751,196463.3836,1491574259,0,283760787.3,0 + 09/26 16:00:00,196334120.3,0,267765193.2,0,219397.5167,327420.9023,2432645622,0,283760787.3,0 + 09/26 17:00:00,209699170.9,0,280339304.9,0,219409.6252,327438.9727,2458693428,0,354700984.2,0 + 09/26 18:00:00,259525369.2,0,352456147.7,0,307173.4753,458414.5617,3368098450,0,141880393.7,0 + 09/26 19:00:00,27244300.51,0,6182349.709,0,307173.4753,458414.5617,2789543583,0,638461771.5,0 + 09/26 20:00:00,0,0,0,0,175527.7002,261951.1781,1574923962,0,638461771.5,702307948.6 + 09/26 21:00:00,0,26576492.72,0,142158971.8,175518.0133,261936.7218,1574837047,168735464.6,496581377.8,702307948.6 + 09/26 22:00:00,0,0,0,42493981.31,87759.00667,130968.3609,787418523.3,42493981.31,354700984.2,702307948.6 + 09/26 23:00:00,0,0,0,0,87759.00667,130968.3609,787418523.3,0,354700984.2,624273732.1 + 09/26 24:00:00,0,0,0,0,43868.42139,65467.64217,393609828.8,0,354700984.2,468205299.1 + 09/27 01:00:00,84286660.55,0,99402500.86,0,43868.42139,65467.64217,577298990.3,0,212820590.5,234102649.5 + 09/27 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/27 03:00:00,0,0,0,0,21924.37781,32719.14684,196716688.7,0,141880393.7,0 + 09/27 04:00:00,25799371.51,0,0,0,21929.37875,32726.61006,222560931.2,0,141880393.7,0 + 09/27 05:00:00,50788536.57,0,62301234.72,0,21929.37875,32726.61006,309851331,0,141880393.7,0 + 09/27 06:00:00,30043540.93,0,31328993.55,0,21934.2107,32733.82109,258177448.9,0,141880393.7,0 + 09/27 07:00:00,0,0,0,0,87763.85009,130975.5891,787461980.9,0,141880393.7,156068433 + 09/27 08:00:00,74398135.07,0,86228940.56,0,350889.3393,523654.5327,3308985015,0,567521574.6,390171082.6 + 09/27 09:00:00,0,323581635.8,0,649588848.5,306619.1671,457587.3323,2751143398,973170484.3,567521574.6,390171082.6 + 09/27 10:00:00,0,208164674.1,0,342780872.6,218560.2551,326171.4034,1961033971,550945546.8,283760787.3,0 + 09/27 11:00:00,0,402560093.7,0,464934854.6,174475.737,260381.2665,1565485213,867494948.3,283760787.3,0 + 09/27 12:00:00,0,570255916.2,0,556838874.2,87096.21786,129979.2389,781471644.4,1127094790,283760787.3,0 + 09/27 13:00:00,0,691234616.2,0,673722799.2,87026.3912,129875.0321,780845124,1364957415,283760787.3,0 + 09/27 14:00:00,0,659316310.8,0,739592271.3,87096.21786,129979.2389,781471644.4,1398908582,283760787.3,0 + 09/27 15:00:00,0,433365093.6,0,587621269.7,130644.3268,194968.8584,1172207467,1020986363,283760787.3,0 + 09/27 16:00:00,0,260004675.4,0,393293247.7,217938.8221,325243.9994,1955458157,653297923.1,283760787.3,0 + 09/27 17:00:00,0,181385840.4,0,367867222.4,218433.6808,325982.5086,1959898282,549253062.8,354700984.2,0 + 09/27 18:00:00,0,19536363.14,0,53798809.65,306619.1671,457587.3323,2751143398,73335172.8,141880393.7,0 + 09/27 19:00:00,0,225937284.1,0,338064456.9,306847.4096,457927.9531,2753191306,564001741.1,638461771.5,0 + 09/27 20:00:00,0,517880034.8,0,780503676.9,175444.6696,261827.2663,1574178970,1298383712,638461771.5,702307948.6 + 09/27 21:00:00,0,402853546.4,0,612918767,175503.4969,261915.0581,1574706798,1015772313,496581377.8,702307948.6 + 09/27 22:00:00,0,304736153,0,469745364.9,87751.74847,130957.529,787353399.1,774481518,354700984.2,702307948.6 + 09/27 23:00:00,0,225846621.3,0,355234277.6,87763.97715,130975.7787,787463121,581080898.9,354700984.2,624273732.1 + 09/27 24:00:00,0,131586634.8,0,216841679.5,43879.71932,65484.50279,393711199.6,348428314.3,354700984.2,468205299.1 + 09/28 01:00:00,0,0,0,0,43881.98858,65487.88935,393731560.5,0,212820590.5,234102649.5 + 09/28 02:00:00,0,0,0,0,21940.99429,32743.94467,196865780.3,0,141880393.7,0 + 09/28 03:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/28 04:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 09/28 05:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 09/28 06:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,0 + 09/28 07:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,156068433 + 09/28 08:00:00,24666290.82,0,6356584.55,0,87759.00667,130968.3609,818441398.7,0,567521574.6,390171082.6 + 09/28 09:00:00,93519086.28,0,120233745.4,0,219397.5167,327420.9023,2182299140,0,567521574.6,390171082.6 + 09/28 10:00:00,53065496.79,0,49515509.74,0,219409.6252,327438.9727,2071235959,0,283760787.3,0 + 09/28 11:00:00,76889202.67,0,122233331.6,0,219409.6252,327438.9727,2167777487,0,283760787.3,0 + 09/28 12:00:00,27759564.35,0,77523857.76,0,131639.158,196453.5084,1286417021,0,283760787.3,0 + 09/28 13:00:00,0,0,18185578.81,0,131639.158,196453.5084,1199319178,0,283760787.3,0 + 09/28 14:00:00,0,0,0,0,131645.9657,196463.668,1181194682,0,283760787.3,0 + 09/28 15:00:00,2890046.3,0,73242330.51,0,131638.51,196452.5414,1257260162,0,283760787.3,0 + 09/28 16:00:00,152353325.3,0,207460798.7,0,307128.7188,458347.7687,3115529479,0,283760787.3,0 + 09/28 17:00:00,173857226.3,0,242522560.8,0,394815.7925,589208.7796,3958868247,0,354700984.2,0 + 09/28 18:00:00,233956341.5,0,325661312.9,0,307078.9498,458273.4952,3314886456,0,141880393.7,0 + 09/28 19:00:00,50638198.25,0,48917984.09,0,307078.9498,458273.4952,2854824984,0,638461771.5,0 + 09/28 20:00:00,0,0,0,0,263253.1875,392869.516,2362041733,0,638461771.5,702307948.6 + 09/28 21:00:00,0,0,0,46124561.13,219342.107,327338.2109,1968049144,46124561.13,496581377.8,702307948.6 + 09/28 22:00:00,0,0,0,0,175473.6856,261870.5687,1574439315,0,354700984.2,702307948.6 + 09/28 23:00:00,0,0,0,0,131626.5938,196434.758,1181020866,0,354700984.2,624273732.1 + 09/28 24:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,354700984.2,468205299.1 + 09/29 01:00:00,87895137.04,0,103751841,0,43868.42139,65467.64217,585256806.9,0,212820590.5,234102649.5 + 09/29 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/29 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/29 04:00:00,21406354.2,0,0,0,21934.2107,32733.82109,218211268.6,0,141880393.7,0 + 09/29 05:00:00,46090492.83,0,46487008.08,0,21937.76563,32739.12634,289414312,0,141880393.7,0 + 09/29 06:00:00,35197827.02,0,28197105.65,0,21939.75167,32742.09023,260249563.5,0,141880393.7,0 + 09/29 07:00:00,0,0,0,0,21939.75167,32742.09023,196854630.8,0,141880393.7,156068433 + 09/29 08:00:00,184967684.5,0,246722729.9,0,21940.96252,32743.89727,628555909.6,0,567521574.6,390171082.6 + 09/29 09:00:00,93943997.35,0,90188833.33,0,87763.97715,130975.7787,971595951.7,0,567521574.6,390171082.6 + 09/29 10:00:00,124992922.1,0,145763259.5,0,131639.158,196453.5084,1451889781,0,283760787.3,0 + 09/29 11:00:00,139555419.9,0,181052263.5,0,131627.6227,196436.2936,1501637782,0,283760787.3,0 + 09/29 12:00:00,99194827.65,0,125925631.7,0,87722.33481,130913.6332,1012209944,0,283760787.3,0 + 09/29 13:00:00,94198283.95,0,119323191.8,0,87737.83331,130936.7626,1000750021,0,283760787.3,0 + 09/29 14:00:00,118222868.1,0,152626687.7,0,131627.6227,196436.2936,1451879654,0,283760787.3,0 + 09/29 15:00:00,153887045.8,0,200495512.6,0,175518.8773,261938.0112,1929227357,0,283760787.3,0 + 09/29 16:00:00,168655986.4,0,220220095.1,0,219398.5966,327422.514,2357432080,0,283760787.3,0 + 09/29 17:00:00,155686220.6,0,198683135.5,0,263278.3159,392907.0168,2716636554,0,354700984.2,0 + 09/29 18:00:00,205649568.1,0,270905982.8,0,307173.92,458415.2254,3232676475,0,141880393.7,0 + 09/29 19:00:00,26606041.1,0,3378216.125,0,175527.7002,261951.1781,1604908219,0,638461771.5,0 + 09/29 20:00:00,0,0,0,0,131645.7751,196463.3836,1181192971,0,638461771.5,702307948.6 + 09/29 21:00:00,0,21215322.6,0,142509326.1,87759.00667,130968.3609,787418523.3,163724648.7,496581377.8,702307948.6 + 09/29 22:00:00,0,0,0,26003129.8,87759.00667,130968.3609,787418523.3,26003129.8,354700984.2,702307948.6 + 09/29 23:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,354700984.2,624273732.1 + 09/29 24:00:00,0,0,0,0,87751.06251,130956.5053,787347244.3,0,354700984.2,468205299.1 + 09/30 01:00:00,78923279.96,0,84294692.11,0,43875.53125,65478.25267,556891594.2,0,212820590.5,234102649.5 + 09/30 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/30 03:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 09/30 04:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 09/30 05:00:00,38411158.66,0,24045496.35,0,21929.37875,32726.61006,259218214.7,0,141880393.7,0 + 09/30 06:00:00,64571692.56,0,69533520.06,0,21929.37875,32726.61006,330866772.3,0,141880393.7,0 + 09/30 07:00:00,6551888.425,0,0,0,87717.51498,130906.4402,793598127.2,0,141880393.7,156068433 + 09/30 08:00:00,217307494.1,0,307688942.4,0,350870.0599,523625.7609,3673181392,0,567521574.6,390171082.6 + 09/30 09:00:00,211634818.3,0,261112606,0,307078.9498,458273.4952,3228016226,0,567521574.6,390171082.6 + 09/30 10:00:00,245543085.6,0,335013555,0,219342.107,327338.2109,2548605785,0,283760787.3,0 + 09/30 11:00:00,225078500.6,0,312857181.1,0,175502.125,261913.0107,2112630170,0,283760787.3,0 + 09/30 12:00:00,212556123.6,0,297793062.9,0,87751.06251,130956.5053,1297696431,0,283760787.3,0 + 09/30 13:00:00,212743529.6,0,298148276.2,0,87751.06251,130956.5053,1298239050,0,283760787.3,0 + 09/30 14:00:00,224364150.9,0,311847584.8,0,87751.06251,130956.5053,1323558980,0,283760787.3,0 + 09/30 15:00:00,242289613.2,0,333468715.3,0,131626.5938,196434.758,1756779195,0,283760787.3,0 + 09/30 16:00:00,277812776.4,0,380382221.2,0,219342.107,327338.2109,2626244142,0,283760787.3,0 + 09/30 17:00:00,289289918,0,391194797.1,0,219342.107,327338.2109,2648533859,0,354700984.2,0 + 09/30 18:00:00,336006243.6,0,458162184.6,0,307078.9498,458273.4952,3549437230,0,141880393.7,0 + 09/30 19:00:00,97112654.46,0,101303971,0,307114.1168,458325.9772,2954000964,0,638461771.5,0 + 09/30 20:00:00,0,0,0,0,175498.095,261906.9965,1574658329,0,638461771.5,702307948.6 + 09/30 21:00:00,0,0,0,49209258.69,175505.8709,261918.601,1574728099,49209258.69,496581377.8,702307948.6 + 09/30 22:00:00,0,0,0,0,87746.8905,130950.2792,787309810.9,0,354700984.2,702307948.6 + 09/30 23:00:00,0,0,0,0,87727.81702,130921.8146,787138673.9,0,354700984.2,624273732.1 + 09/30 24:00:00,21457892.84,0,0,0,43836.98481,65420.72735,414785656.6,0,354700984.2,468205299.1 + 10/01 01:00:00,221692851.6,0,241975110.1,0,43791.0891,65352.23426,856583925.8,0,212820590.5,234102649.5 + 10/01 02:00:00,0,0,0,0,21869.26663,32636.90091,196222203.1,0,141880393.7,0 + 10/01 03:00:00,120730993.3,0,125961780.9,0,21850.16542,32608.39496,442743591.6,0,141880393.7,0 + 10/01 04:00:00,195748745,0,268650481.1,0,21842.42981,32596.85062,660380635.7,0,141880393.7,0 + 10/01 05:00:00,212833058.1,0,287427214.3,0,21845.04298,32600.75041,696265128.6,0,141880393.7,0 + 10/01 06:00:00,200609528.1,0,275277155.1,0,21847.62152,32604.59854,671914675.4,0,141880393.7,0 + 10/01 07:00:00,36617345.87,0,38084809.39,0,87458.79993,130520.3433,859427070.8,0,141880393.7,156068433 + 10/01 08:00:00,220452344.2,0,321333412.1,0,350299.7324,522774.6248,3684853442,0,567521574.6,390171082.6 + 10/01 09:00:00,140785149,0,136049417.3,0,306764.1352,457803.6774,3029278691,0,567521574.6,390171082.6 + 10/01 10:00:00,118489744.9,0,160843477.4,0,219319.5426,327304.5366,2247179907,0,283760787.3,0 + 10/01 11:00:00,21841719.25,0,51276840.83,0,175521.1008,261941.3295,1647983309,0,283760787.3,0 + 10/01 12:00:00,0,0,0,0,87751.74847,130957.529,787353399.1,0,283760787.3,0 + 10/01 13:00:00,0,111951977.5,0,0,87665.46532,130828.7632,786579222.7,111951977.5,283760787.3,0 + 10/01 14:00:00,0,371412816.6,0,270104785.8,87577.53959,130697.546,785790308.3,641517602.4,283760787.3,0 + 10/01 15:00:00,0,346640246,0,449307504,131259.7165,195887.2437,1177729057,795947750,283760787.3,0 + 10/01 16:00:00,0,192690506.3,0,408905133.4,219046.5029,326897.062,1965396834,601595639.7,283760787.3,0 + 10/01 17:00:00,0,19366981.18,0,270337631.3,219176.7211,327091.3951,1966565218,289704612.4,354700984.2,0 + 10/01 18:00:00,0,0,0,0,307161.9264,458397.3265,2756013311,0,141880393.7,0 + 10/01 19:00:00,0,0,0,0,307151.957,458382.4486,2755923860,0,638461771.5,0 + 10/01 20:00:00,0,146916725.6,0,295486893.8,175395.0225,261753.1747,1573733510,442403619.4,638461771.5,702307948.6 + 10/01 21:00:00,0,103590835.1,0,189107326.1,175316.2976,261635.6885,1573027150,292698161.2,496581377.8,702307948.6 + 10/01 22:00:00,0,26753035.25,0,75613217.84,87628.95865,130774.282,786251666.2,102366253.1,354700984.2,702307948.6 + 10/01 23:00:00,0,0,0,21785056.92,87658.14878,130817.8443,786513574.9,21785056.92,354700984.2,624273732.1 + 10/01 24:00:00,0,0,0,0,43798.12355,65362.73221,392979080.7,0,354700984.2,468205299.1 + 10/02 01:00:00,68999437.26,0,53825593.42,0,43798.12355,65362.73221,515804111.4,0,212820590.5,234102649.5 + 10/02 02:00:00,0,0,0,0,21905.67445,32691.23463,196548872.7,0,141880393.7,0 + 10/02 03:00:00,0,0,0,0,21893.73327,32673.41405,196441730.4,0,141880393.7,0 + 10/02 04:00:00,10748166.27,0,0,0,21904.07404,32688.84624,207282679.3,0,141880393.7,0 + 10/02 05:00:00,50714000.95,0,62760166.6,0,21891.88691,32670.65861,309899331.4,0,141880393.7,0 + 10/02 06:00:00,26792087.19,0,30001994.57,0,21923.27144,32717.49574,253500843.6,0,141880393.7,0 + 10/02 07:00:00,0,0,0,0,87733.97606,130931.0061,787193935.9,0,141880393.7,156068433 + 10/02 08:00:00,128178377.4,0,174765192.8,0,351056.6393,523904.2052,3452802610,0,567521574.6,390171082.6 + 10/02 09:00:00,10181271.83,0,0,0,307143.3777,458369.6451,2766028154,0,567521574.6,390171082.6 + 10/02 10:00:00,0,0,0,0,219305.837,327284.0829,1967723712,0,283760787.3,0 + 10/02 11:00:00,0,0,0,0,175224.2182,261498.2726,1572200967,0,283760787.3,0 + 10/02 12:00:00,0,24358926.73,0,0,87462.1063,130525.2776,784754581.9,24358926.73,283760787.3,0 + 10/02 13:00:00,0,206535395.8,0,167018913.6,87506.47768,130591.4958,785152704.6,373554309.4,283760787.3,0 + 10/02 14:00:00,0,28715823.14,0,24821155.31,87539.461,130640.7189,785448647.7,53536978.45,283760787.3,0 + 10/02 15:00:00,0,0,0,0,131437.4287,196152.4549,1179323581,0,283760787.3,0 + 10/02 16:00:00,0,0,0,0,219201.7773,327128.7879,1966790035,0,283760787.3,0 + 10/02 17:00:00,58996315.24,0,71398682.54,0,219213.7753,327146.6933,2097292685,0,354700984.2,0 + 10/02 18:00:00,121369147.7,0,159616290.1,0,306899.2854,458005.3706,3034642199,0,141880393.7,0 + 10/02 19:00:00,0,0,0,0,306931.395,458053.2898,2753944865,0,638461771.5,0 + 10/02 20:00:00,0,243158896.2,0,405743226.9,175330.9306,261657.5264,1573158445,648902123.1,638461771.5,702307948.6 + 10/02 21:00:00,0,261207129.7,0,435142023.9,175297.8977,261608.2293,1572862057,696349153.6,496581377.8,702307948.6 + 10/02 22:00:00,0,217304527.3,0,370327540.1,87631.16293,130777.5716,786271444.2,587632067.3,354700984.2,702307948.6 + 10/02 23:00:00,0,205746486.1,0,351841967.4,87605.47633,130739.2378,786040970.9,557588453.5,354700984.2,624273732.1 + 10/02 24:00:00,0,152512997.9,0,270717953.8,43799.35147,65364.56472,392990098.3,423230951.7,354700984.2,468205299.1 + 10/03 01:00:00,0,0,0,26875472.03,43795.89448,65359.40564,392959080.4,26875472.03,212820590.5,234102649.5 + 10/03 02:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 10/03 03:00:00,0,0,0,0,21894.3849,32674.38651,196447577.1,0,141880393.7,0 + 10/03 04:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 10/03 05:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 10/03 06:00:00,0,0,0,0,21899.67573,32682.28236,196495049.1,0,141880393.7,0 + 10/03 07:00:00,0,0,0,0,87745.42978,130948.0993,787296704.6,0,141880393.7,156068433 + 10/03 08:00:00,0,27308258.52,0,191843700,351056.9442,523904.6603,3149861776,219151958.5,567521574.6,390171082.6 + 10/03 09:00:00,0,59344937.39,0,151786505.4,307068.9162,458258.5215,2755178776,211131442.8,567521574.6,390171082.6 + 10/03 10:00:00,0,0,0,0,219232.7144,327174.9574,1967067619,0,283760787.3,0 + 10/03 11:00:00,23755062.41,0,90969237.09,0,175282.1154,261584.6763,1687444749,0,283760787.3,0 + 10/03 12:00:00,476215.5111,0,78607370.46,0,87733.97606,130931.0061,866277521.9,0,283760787.3,0 + 10/03 13:00:00,0,0,17345459.45,0,87717.51498,130906.4402,804391698.2,0,283760787.3,0 + 10/03 14:00:00,0,0,17676243.48,0,87646.89577,130801.0507,804088850.7,0,283760787.3,0 + 10/03 15:00:00,0,0,212313026.3,0,131424.4443,196133.0774,1391520104,0,283760787.3,0 + 10/03 16:00:00,207699748.4,0,249334098.4,0,218955.4455,326761.1713,2421613667,0,283760787.3,0 + 10/03 17:00:00,290878851.1,0,374469214.7,0,218714.9768,326402.3046,2627770279,0,354700984.2,0 + 10/03 18:00:00,416238355.1,0,591532571.7,0,305524.3872,455953.5224,3749091402,0,141880393.7,0 + 10/03 19:00:00,234653360.6,0,318579419.9,0,305359.7069,455707.7595,3293075659,0,638461771.5,0 + 10/03 20:00:00,32523144.99,0,13687519.64,0,174467.0488,260368.3005,1611617922,0,638461771.5,702307948.6 + 10/03 21:00:00,108238250.2,0,119778352.9,0,174209.8888,259984.5242,1791116490,0,496581377.8,702307948.6 + 10/03 22:00:00,216634286.5,0,275801577.7,0,86823.3361,129572.0001,1271459074,0,354700984.2,702307948.6 + 10/03 23:00:00,281175941.1,0,367857244.4,0,86807.17441,129547.8809,1427911385,0,354700984.2,624273732.1 + 10/03 24:00:00,352746346.8,0,471402381.9,0,43378.94606,64737.16692,1213366735,0,354700984.2,468205299.1 + 10/04 01:00:00,504087776.7,0,694832412.9,0,43327.87718,64660.95358,1587679980,0,212820590.5,234102649.5 + 10/04 02:00:00,47054032.33,0,42571943.51,0,21672.58203,32343.37595,284083424.6,0,141880393.7,0 + 10/04 03:00:00,385247263.3,0,514000030.2,0,21685.29987,32362.35559,1093818853,0,141880393.7,0 + 10/04 04:00:00,395753989.4,0,547447656.5,0,21725.53613,32422.40273,1138134226,0,141880393.7,0 + 10/04 05:00:00,380358145.4,0,522662670.5,0,21751.71229,32461.46708,1098188262,0,141880393.7,0 + 10/04 06:00:00,368682067.7,0,509854847.3,0,21748.07373,32456.03702,1073671714,0,141880393.7,0 + 10/04 07:00:00,238658148.6,0,313921512.5,0,87091.33724,129971.9553,1334007514,0,141880393.7,156068433 + 10/04 08:00:00,416792980.3,0,562612226.1,0,348527.0044,520129.0698,4106567074,0,567521574.6,390171082.6 + 10/04 09:00:00,441081944.2,0,567379925.1,0,305443.0089,455832.0764,3749052177,0,567521574.6,390171082.6 + 10/04 10:00:00,422246435,0,574443046.9,0,218316.3149,325807.356,2955534697,0,283760787.3,0 + 10/04 11:00:00,357842864.2,0,532851334.6,0,174739.4385,260774.805,2458545475,0,283760787.3,0 + 10/04 12:00:00,307580308.7,0,506338512.7,0,87420.59679,130463.3303,1598300959,0,283760787.3,0 + 10/04 13:00:00,314148275.5,0,514181453.8,0,87520.29191,130612.1117,1613606382,0,283760787.3,0 + 10/04 14:00:00,305704646.9,0,487165476.7,0,87420.59679,130463.3303,1577252261,0,283760787.3,0 + 10/04 15:00:00,299748523.3,0,424564673.5,0,131100.9925,195650.3698,1900618101,0,283760787.3,0 + 10/04 16:00:00,317230130.9,0,311806710.5,0,218501.6542,326083.9496,2589545015,0,283760787.3,0 + 10/04 17:00:00,449031011.2,0,376712773.6,0,218450.4298,326007.5041,2785792347,0,354700984.2,0 + 10/04 18:00:00,563341324.4,0,742581722,0,305007.3264,455181.8796,4042604188,0,141880393.7,0 + 10/04 19:00:00,346031147.3,0,445805366.1,0,305231.1538,455515.9115,3530525949,0,638461771.5,0 + 10/04 20:00:00,106754094.2,0,91253246.45,0,174491.2611,260404.434,1763631843,0,638461771.5,702307948.6 + 10/04 21:00:00,157378441.3,0,166202254.3,0,174392.7683,260257.4469,1888321470,0,496581377.8,702307948.6 + 10/04 22:00:00,217343208,0,255988885,0,87170.94019,130090.7518,1255474184,0,354700984.2,702307948.6 + 10/04 23:00:00,245085847.2,0,297892201,0,87208.90109,130147.4033,1325460744,0,354700984.2,624273732.1 + 10/04 24:00:00,293949070.9,0,371270748.2,0,43616.76221,65092.07513,1056571634,0,354700984.2,468205299.1 + 10/05 01:00:00,421329541,0,561993610.9,0,43616.76221,65092.07513,1374674966,0,212820590.5,234102649.5 + 10/05 02:00:00,38496735.99,0,30175832.3,0,21802.22527,32536.85082,264293242.2,0,141880393.7,0 + 10/05 03:00:00,359923348.1,0,482731266.8,0,21795.93261,32527.45989,1038218828,0,141880393.7,0 + 10/05 04:00:00,324467649.8,0,437785431.7,0,21805.32031,32541.46974,957901525.7,0,141880393.7,0 + 10/05 05:00:00,325712069.1,0,439159768.1,0,21802.22527,32536.85082,960492511.2,0,141880393.7,0 + 10/05 06:00:00,327562254.7,0,442934205.1,0,21799.09603,32532.18086,966089056.5,0,141880393.7,0 + 10/05 07:00:00,242600529.5,0,316984217.2,0,21799.09603,32532.18086,755177343.5,0,141880393.7,156068433 + 10/05 08:00:00,305089859.9,0,396286748,0,87304.10114,130289.4764,1484713487,0,567521574.6,390171082.6 + 10/05 09:00:00,413315538.3,0,557508803.7,0,218551.492,326158.3257,2931779686,0,567521574.6,390171082.6 + 10/05 10:00:00,329209555.8,0,447666607.1,0,218714.9768,326402.3046,2739298376,0,283760787.3,0 + 10/05 11:00:00,269103043.5,0,392527706.7,0,218918.8691,326706.5861,2625882389,0,283760787.3,0 + 10/05 12:00:00,208656655.7,0,332413947.4,0,131461.5865,196188.5072,1720610941,0,283760787.3,0 + 10/05 13:00:00,186566492.1,0,308354937.7,0,131434.0467,196147.4078,1674214666,0,283760787.3,0 + 10/05 14:00:00,175195745.7,0,278742276.5,0,131525.7157,196284.2113,1634053759,0,283760787.3,0 + 10/05 15:00:00,178051000.8,0,254620613.2,0,131552.6928,196324.4709,1613029403,0,283760787.3,0 + 10/05 16:00:00,203038494.7,0,257896645.4,0,307058.3861,458242.8068,3216019434,0,283760787.3,0 + 10/05 17:00:00,245068179.4,0,291809093.3,0,394658.0783,588973.4126,4077950640,0,354700984.2,0 + 10/05 18:00:00,364181955,0,497540132.3,0,306231.7141,457009.1115,3609389059,0,141880393.7,0 + 10/05 19:00:00,233516173.7,0,303773431.2,0,305681.3602,456187.7832,3280018521,0,638461771.5,0 + 10/05 20:00:00,47474686.58,0,26144318.52,0,261589.1524,390386.1703,2420730167,0,638461771.5,702307948.6 + 10/05 21:00:00,85883843.32,0,80085937.22,0,218370.9974,325888.9621,2125305634,0,496581377.8,702307948.6 + 10/05 22:00:00,119579309.6,0,128485787.3,0,174780.9722,260836.7883,1816289035,0,354700984.2,702307948.6 + 10/05 23:00:00,170418067.3,0,203207086.4,0,130813.3516,195221.1049,1547349197,0,354700984.2,624273732.1 + 10/05 24:00:00,232156269.7,0,294381750.6,0,87257.59948,130220.079,1309457663,0,354700984.2,468205299.1 + 10/06 01:00:00,370319967.2,0,499873684.7,0,43585.4701,65045.37591,1261264698,0,212820590.5,234102649.5 + 10/06 02:00:00,0,0,0,0,21817.35778,32559.43403,195756450.5,0,141880393.7,0 + 10/06 03:00:00,191192778.4,0,206130088.9,0,21811.40763,32550.55425,593025930.1,0,141880393.7,0 + 10/06 04:00:00,273004793.9,0,370024942.3,0,21811.40763,32550.55425,838732799,0,141880393.7,0 + 10/06 05:00:00,294840899.3,0,399540775.7,0,21820.28134,32563.79704,890164357.2,0,141880393.7,0 + 10/06 06:00:00,311766814.3,0,420692613.3,0,21817.35778,32559.43403,928215878.2,0,141880393.7,0 + 10/06 07:00:00,255275692.6,0,336312387.4,0,21820.28134,32563.79704,787370762.1,0,141880393.7,156068433 + 10/06 08:00:00,403015889.3,0,542277878.8,0,21837.09974,32588.89621,1141227354,0,567521574.6,390171082.6 + 10/06 09:00:00,521849290,0,723748090.9,0,87369.71926,130387.4025,2029523019,0,567521574.6,390171082.6 + 10/06 10:00:00,499542331,0,684320809,0,131085.7291,195627.5912,2360031093,0,283760787.3,0 + 10/06 11:00:00,483844215.5,0,664742474.4,0,131130.8952,195694.9954,2325159896,0,283760787.3,0 + 10/06 12:00:00,413313933.6,0,575757770.8,0,87458.79993,130520.3433,1773796620,0,283760787.3,0 + 10/06 13:00:00,399152341.1,0,556465242,0,87477.0665,130547.6036,1740506396,0,283760787.3,0 + 10/06 14:00:00,434621990,0,596933399.1,0,131267.8892,195899.4403,2209357775,0,283760787.3,0 + 10/06 15:00:00,429313955.5,0,587925211,0,175073.2078,261272.9102,2588085192,0,283760787.3,0 + 10/06 16:00:00,440781928.5,0,601691749.4,0,218880.8901,326649.9075,3006384549,0,283760787.3,0 + 10/06 17:00:00,429751675,0,581965447,0,262680.0658,392014.21,3368616515,0,354700984.2,0 + 10/06 18:00:00,470098316.3,0,641043414,0,306460.0768,457349.9117,3860857689,0,141880393.7,0 + 10/06 19:00:00,265237980.9,0,335094287.4,0,175135.0953,261365.2689,2171733579,0,638461771.5,0 + 10/06 20:00:00,28703259.16,0,894622.8673,0,131340.0329,196007.105,1208047579,0,638461771.5,702307948.6 + 10/06 21:00:00,67941835.63,0,29138466,0,87567.54766,130682.6344,882780957.2,0,496581377.8,702307948.6 + 10/06 22:00:00,114613612.1,0,110864972.4,0,87560.02195,130671.4033,1011111716,0,354700984.2,702307948.6 + 10/06 23:00:00,139099165.6,0,147702480.8,0,87567.54766,130682.6344,1072502302,0,354700984.2,624273732.1 + 10/06 24:00:00,185685817.1,0,217478173.3,0,87582.1782,130704.4685,1188995919,0,354700984.2,468205299.1 + 10/07 01:00:00,308748579,0,401513879.2,0,43791.0891,65352.23426,1103178422,0,212820590.5,234102649.5 + 10/07 02:00:00,0,0,0,0,21893.73327,32673.41405,196441730.4,0,141880393.7,0 + 10/07 03:00:00,120771381.8,0,165682693.9,0,21893.73327,32673.41405,482895806.1,0,141880393.7,0 + 10/07 04:00:00,192340772.8,0,242109041.8,0,21895.54455,32676.11713,630907796.6,0,141880393.7,0 + 10/07 05:00:00,195383426,0,252497228.4,0,21899.06177,32681.36611,644370194.8,0,141880393.7,0 + 10/07 06:00:00,188119405.6,0,241545686.7,0,21904.07404,32688.84624,626199605.4,0,141880393.7,0 + 10/07 07:00:00,111477171.2,0,128781525.6,0,87668.83723,130833.7953,1026868174,0,141880393.7,156068433 + 10/07 08:00:00,219472482.3,0,322710403.9,0,350564.2307,523169.3525,3687623786,0,567521574.6,390171082.6 + 10/07 09:00:00,353943924.6,0,438761179.8,0,306701.3553,457709.9869,3544585936,0,567521574.6,390171082.6 + 10/07 10:00:00,386209180.4,0,527965282.5,0,219131.482,327023.8819,2880333773,0,283760787.3,0 + 10/07 11:00:00,349113177.2,0,485066158.2,0,175403.5904,261765.9611,2407989721,0,283760787.3,0 + 10/07 12:00:00,205012748.4,0,349177157.3,0,87730.96746,130926.5162,1341356847,0,283760787.3,0 + 10/07 13:00:00,110309355.9,0,270528228.1,0,87727.81702,130921.8146,1167976258,0,283760787.3,0 + 10/07 14:00:00,191288063.5,0,339009184.7,0,87552.35604,130659.963,1315861597,0,283760787.3,0 + 10/07 15:00:00,297193350.3,0,418333190.4,0,131470.3436,196201.576,1895145451,0,283760787.3,0 + 10/07 16:00:00,280739225.5,0,303185200.3,0,219158.909,327064.8129,2550329825,0,283760787.3,0 + 10/07 17:00:00,373593014.2,0,321530297.9,0,218861.375,326620.7839,2658859084,0,354700984.2,0 + 10/07 18:00:00,461020392.4,0,618088840,0,306378.1137,457227.5929,3828089776,0,141880393.7,0 + 10/07 19:00:00,243723331,0,300822369.5,0,306105.7998,456821.2014,3291082905,0,638461771.5,0 + 10/07 20:00:00,46816899.59,0,9921322.741,0,174653.0519,260645.8848,1623814394,0,638461771.5,702307948.6 + 10/07 21:00:00,107177049.7,0,97811821.26,0,174653.0519,260645.8848,1772065043,0,496581377.8,702307948.6 + 10/07 22:00:00,158687103.6,0,174565652.8,0,87337.53148,130339.3666,1116889590,0,354700984.2,702307948.6 + 10/07 23:00:00,196497999.1,0,231024268.9,0,87292.68206,130272.435,1210756689,0,354700984.2,624273732.1 + 10/07 24:00:00,257873397.5,0,322377857.4,0,43646.34103,65136.21749,971868465.6,0,354700984.2,468205299.1 + 10/08 01:00:00,396910969.9,0,529683215.4,0,43622.81527,65101.10849,1318000311,0,212820590.5,234102649.5 + 10/08 02:00:00,30404058.49,0,6868140.47,0,21805.32031,32541.46974,232920643.1,0,141880393.7,0 + 10/08 03:00:00,261569180.5,0,321383226.5,0,21799.09603,32532.18086,778545003.8,0,141880393.7,0 + 10/08 04:00:00,321353373.6,0,435400141.2,0,21792.73505,32522.68796,952289037.6,0,141880393.7,0 + 10/08 05:00:00,338649305.6,0,460021196.6,0,21772.83431,32492.98881,994027465.5,0,141880393.7,0 + 10/08 06:00:00,356415277.9,0,485851042.7,0,21755.31713,32466.84682,1037466111,0,141880393.7,0 + 10/08 07:00:00,237888325,0,303398191,0,87063.71593,129930.7342,1322466537,0,141880393.7,156068433 + 10/08 08:00:00,270698438.8,0,327491272.5,0,348885.1249,520663.5159,3728564818,0,567521574.6,390171082.6 + 10/08 09:00:00,386367909.6,0,460421600.2,0,306200.9675,456963.2264,3594180608,0,567521574.6,390171082.6 + 10/08 10:00:00,294405096.1,0,403033053.6,0,218370.9974,325888.9621,2656774004,0,283760787.3,0 + 10/08 11:00:00,291316765.3,0,446880138.6,0,175089.1,261296.6271,2309185522,0,283760787.3,0 + 10/08 12:00:00,256505268.6,0,411902195.1,0,87536.60392,130636.4551,1453830476,0,283760787.3,0 + 10/08 13:00:00,240868486.2,0,390011731.7,0,87582.1782,130704.4685,1416712146,0,283760787.3,0 + 10/08 14:00:00,243101706.7,0,371592685,0,87603.07075,130735.6478,1400713779,0,283760787.3,0 + 10/08 15:00:00,266737239.6,0,372940905.4,0,131404.6061,196103.4717,1818707225,0,283760787.3,0 + 10/08 16:00:00,323444969.1,0,415728240.7,0,218937.3327,326734.1405,2703590513,0,283760787.3,0 + 10/08 17:00:00,363146924.1,0,444781395.3,0,218861.375,326620.7839,2771664092,0,354700984.2,0 + 10/08 18:00:00,450180074.9,0,626476592.9,0,306105.7998,456821.2014,3823193872,0,141880393.7,0 + 10/08 19:00:00,235761190,0,303421558.1,0,306039.9176,456722.8813,3285128824,0,638461771.5,0 + 10/08 20:00:00,26106804.45,0,0,0,174718.2565,260743.1937,1593768025,0,638461771.5,702307948.6 + 10/08 21:00:00,99609279.58,0,91908475.83,0,174491.2611,260404.434,1757142258,0,496581377.8,702307948.6 + 10/08 22:00:00,172188305.6,0,203145388.6,0,87196.38413,130128.7234,1157704081,0,354700984.2,702307948.6 + 10/08 23:00:00,222340053.9,0,276188512.7,0,87118.41574,130012.3662,1280199382,0,354700984.2,624273732.1 + 10/08 24:00:00,293220533.9,0,380120615.9,0,43545.66862,64985.97763,1064055076,0,354700984.2,468205299.1 + 10/09 01:00:00,430592837,0,583785519.4,0,43545.66862,64985.97763,1405092283,0,212820590.5,234102649.5 + 10/09 02:00:00,36446936.62,0,29718584.69,0,21792.73505,32522.68796,261701044.1,0,141880393.7,0 + 10/09 03:00:00,350966057.2,0,475721531,0,21792.73505,32522.68796,1022223111,0,141880393.7,0 + 10/09 04:00:00,324279252.4,0,442340655.6,0,21786.2376,32512.9914,962097132.4,0,141880393.7,0 + 10/09 05:00:00,329779747,0,449205638.5,0,21789.50337,32517.86511,974491912.1,0,141880393.7,0 + 10/09 06:00:00,337940827,0,460286813.1,0,21779.60393,32503.09156,993645343.9,0,141880393.7,0 + 10/09 07:00:00,273055143.2,0,362400941.8,0,87170.94019,130090.7518,1417598176,0,141880393.7,156068433 + 10/09 08:00:00,386732444.1,0,503378889.9,0,349306.1038,521291.7695,4024263678,0,567521574.6,390171082.6 + 10/09 09:00:00,427154716.6,0,584458957.9,0,306138.0101,456869.2709,3758439886,0,567521574.6,390171082.6 + 10/09 10:00:00,305237532.4,0,423039093.2,0,218841.5098,326591.1378,2691834157,0,283760787.3,0 + 10/09 11:00:00,279270492.3,0,418255198.4,0,175232.5924,261510.7699,2269801795,0,283760787.3,0 + 10/09 12:00:00,219159002.1,0,362648680.6,0,87616.29618,130755.385,1367945735,0,283760787.3,0 + 10/09 13:00:00,233670427.8,0,382849651.1,0,87560.02195,130671.4033,1402153210,0,283760787.3,0 + 10/09 14:00:00,254879918.9,0,392227434.3,0,87552.35604,130659.963,1432671702,0,283760787.3,0 + 10/09 15:00:00,305271192.7,0,430239431.8,0,131255.1309,195880.4004,1913198537,0,283760787.3,0 + 10/09 16:00:00,369412616.1,0,487302931.7,0,218714.9768,326402.3046,2819137761,0,283760787.3,0 + 10/09 17:00:00,409031734.5,0,537677947,0,218575.8903,326194.7368,2907883939,0,354700984.2,0 + 10/09 18:00:00,490141896,0,686807762.2,0,305794.0174,456355.9087,3920689392,0,141880393.7,0 + 10/09 19:00:00,299345120.1,0,397948678.4,0,305143.0566,455384.4384,3435192780,0,638461771.5,0 + 10/09 20:00:00,92076763.03,0,87322721.62,0,174367.4609,260219.6791,1743913189,0,638461771.5,702307948.6 + 10/09 21:00:00,151157630.7,0,172329443.3,0,174209.8888,259984.5242,1886586961,0,496581377.8,702307948.6 + 10/09 22:00:00,208041373.3,0,255363269.9,0,87144.9504,130051.9656,1245313541,0,354700984.2,702307948.6 + 10/09 23:00:00,239312367.5,0,300491425.4,0,87144.9504,130051.9656,1321712690,0,354700984.2,624273732.1 + 10/09 24:00:00,296796060,0,384808042,0,43579.00673,65035.73022,1072617155,0,354700984.2,468205299.1 + 10/10 01:00:00,433836749.4,0,588332436.7,0,43559.20787,65006.18312,1413004594,0,212820590.5,234102649.5 + 10/10 02:00:00,44055491.72,0,49617506.58,0,21772.83431,32492.98881,289029961.6,0,141880393.7,0 + 10/10 03:00:00,403620969.5,0,557178688,0,21721.66251,32416.62187,1155697481,0,141880393.7,0 + 10/10 04:00:00,382643123.1,0,528033927.4,0,21733.18294,32433.81455,1105678241,0,141880393.7,0 + 10/10 05:00:00,383671558.1,0,528037257.9,0,21736.95604,32439.44539,1106743861,0,141880393.7,0 + 10/10 06:00:00,380613115.7,0,522233870.8,0,21751.71229,32461.46708,1098014432,0,141880393.7,0 + 10/10 07:00:00,284975277.7,0,377655700.8,0,87035.55288,129888.7047,1443558306,0,141880393.7,156068433 + 10/10 08:00:00,304024859.4,0,372401516.1,0,349030.3979,520880.316,3808104946,0,567521574.6,390171082.6 + 10/10 09:00:00,367562892.5,0,456819294.8,0,306006.2464,456672.6315,3570026148,0,567521574.6,390171082.6 + 10/10 10:00:00,218370025.4,0,296316176,0,218821.2947,326560.9695,2478062352,0,283760787.3,0 + 10/10 11:00:00,179129559.1,0,327682950.3,0,175120.0439,261342.8067,2078078771,0,283760787.3,0 + 10/10 12:00:00,26529878.95,0,241552748.2,0,87596.24709,130725.4644,1054040789,0,283760787.3,0 + 10/10 13:00:00,0,0,149377339.8,0,87641.05768,130792.3381,935737564.7,0,283760787.3,0 + 10/10 14:00:00,0,0,21973411.48,0,87683.81047,130856.1408,808717236.2,0,283760787.3,0 + 10/10 15:00:00,0,0,0,0,131518.4411,196273.3549,1180050465,0,283760787.3,0 + 10/10 16:00:00,0,0,0,0,219209.5262,327140.3521,1966859562,0,283760787.3,0 + 10/10 17:00:00,183374079.5,0,0,0,219040.7404,326888.4624,2148719210,0,354700984.2,0 + 10/10 18:00:00,313919016.2,0,435751379.9,0,306073.1022,456772.4047,3495914221,0,141880393.7,0 + 10/10 19:00:00,141391411.9,0,178164766.7,0,305642.8408,456130.2983,3061939480,0,638461771.5,0 + 10/10 20:00:00,0,0,0,0,174263.5022,260064.5349,1563580934,0,638461771.5,702307948.6 + 10/10 21:00:00,42158120.79,0,3470525.803,0,174155.1887,259902.8918,1608237737,0,496581377.8,702307948.6 + 10/10 22:00:00,132836507.8,0,162364800.9,0,86977.60589,129802.2267,1075608706,0,354700984.2,702307948.6 + 10/10 23:00:00,178040922.2,0,221039959.9,0,87006.84917,129845.8683,1179750665,0,354700984.2,624273732.1 + 10/10 24:00:00,228626005.7,0,292454712.1,0,43559.20787,65006.18312,911916125.4,0,354700984.2,468205299.1 + 10/11 01:00:00,361260209.9,0,487363300.6,0,43565.87556,65016.13373,1239518744,0,212820590.5,234102649.5 + 10/11 02:00:00,0,0,0,0,21808.3811,32546.03756,195675907.2,0,141880393.7,0 + 10/11 03:00:00,164068464.8,0,176856650.3,0,21823.17052,32568.10875,536733720.5,0,141880393.7,0 + 10/11 04:00:00,242629730.3,0,323657484.7,0,21831.63149,32580.7356,762171736.5,0,141880393.7,0 + 10/11 05:00:00,249562600.6,0,335073125.6,0,21831.63149,32580.7356,780520247.7,0,141880393.7,0 + 10/11 06:00:00,251369643.4,0,336663355.7,0,21839.78206,32592.89921,783990651.7,0,141880393.7,0 + 10/11 07:00:00,184184642.9,0,237658018.8,0,87400.66169,130433.5799,1206045931,0,141880393.7,156068433 + 10/11 08:00:00,270914214.7,0,359250052.9,0,349721.4244,521911.5789,3768043079,0,567521574.6,390171082.6 + 10/11 09:00:00,375486252,0,507810275.7,0,306460.0768,457349.9117,3633012486,0,567521574.6,390171082.6 + 10/11 10:00:00,154558228.2,0,216972023,0,218990.6177,326813.6611,2336425655,0,283760787.3,0 + 10/11 11:00:00,133133327.4,0,249275986,0,175316.2976,261635.6885,1955436463,0,283760787.3,0 + 10/11 12:00:00,98381048.82,0,235871897.2,0,87688.51884,130863.1674,1121039017,0,283760787.3,0 + 10/11 13:00:00,85313668.19,0,214781069.5,0,87709.93836,130895.1332,1087072995,0,283760787.3,0 + 10/11 14:00:00,151490828.9,0,253411874.8,0,87693.08578,130869.983,1191729751,0,283760787.3,0 + 10/11 15:00:00,183310500.2,0,266275291,0,131558.9064,196333.7438,1629999332,0,283760787.3,0 + 10/11 16:00:00,223683390.3,0,295689538.2,0,219254.488,327207.4514,2486635910,0,283760787.3,0 + 10/11 17:00:00,250534746.4,0,326774950.2,0,219184.924,327103.6368,2543948515,0,354700984.2,0 + 10/11 18:00:00,321767353.3,0,456123873.4,0,306722.7752,457741.9532,3529964249,0,141880393.7,0 + 10/11 19:00:00,115217124.5,0,145159974.5,0,306562.4901,457502.7495,3011011962,0,638461771.5,0 + 10/11 20:00:00,0,0,0,0,175149.8662,261387.3124,1571533843,0,638461771.5,702307948.6 + 10/11 21:00:00,0,0,0,0,175120.0439,261342.8067,1571266262,0,496581377.8,702307948.6 + 10/11 22:00:00,0,0,0,0,87560.02195,130671.4033,785633131,0,354700984.2,702307948.6 + 10/11 23:00:00,31043798,0,0,0,87544.55001,130648.3136,816538106.9,0,354700984.2,624273732.1 + 10/11 24:00:00,110841749.6,0,126954847.6,0,43751.71031,65293.46679,630359234.8,0,354700984.2,468205299.1 + 10/12 01:00:00,242123075.6,0,323145011.5,0,43760.14595,65306.05583,957906413.5,0,212820590.5,234102649.5 + 10/12 02:00:00,0,0,0,0,21884.15098,32659.11378,196355753.1,0,141880393.7,0 + 10/12 03:00:00,79784201.14,0,77708430.88,0,21884.15098,32659.11378,353848385.2,0,141880393.7,0 + 10/12 04:00:00,134969007,0,184342819.5,0,21886.1375,32662.07839,515685403.7,0,141880393.7,0 + 10/12 05:00:00,149651154.5,0,199862927.9,0,21882.12947,32656.09695,545851697.5,0,141880393.7,0 + 10/12 06:00:00,162874002.5,0,217706374.4,0,21875.85516,32646.73339,576861695.7,0,141880393.7,0 + 10/12 07:00:00,27434566.61,0,30710892.09,0,21882.12947,32656.09695,254483073.8,0,141880393.7,156068433 + 10/12 08:00:00,217564228.8,0,303114244,0,87641.05768,130792.3381,1307038698,0,567521574.6,390171082.6 + 10/12 09:00:00,19387144.59,0,0,0,219355.3763,327358.0136,1987555348,0,567521574.6,390171082.6 + 10/12 10:00:00,0,0,0,16418867.86,219409.6252,327438.9727,1968654952,16418867.86,283760787.3,0 + 10/12 11:00:00,0,23289240.72,0,0,219407.5822,327435.9237,1968636621,23289240.72,283760787.3,0 + 10/12 12:00:00,0,87295224.91,0,904464.8154,131627.6227,196436.2936,1181030099,88199689.73,283760787.3,0 + 10/12 13:00:00,0,80391803.77,0,50579627.02,131572.7144,196354.3503,1180537433,130971430.8,283760787.3,0 + 10/12 14:00:00,0,67860570.44,0,63661011.35,131498.198,196243.1448,1179868834,131521581.8,283760787.3,0 + 10/12 15:00:00,0,9740220.041,0,9858339.428,131645.9657,196463.668,1181194682,19598559.47,283760787.3,0 + 10/12 16:00:00,49338995.37,0,58973845.77,0,307160.5923,458395.3356,2864314182,0,283760787.3,0 + 10/12 17:00:00,172046101.1,0,237475232,0,394903.1485,589339.1465,3952793595,0,354700984.2,0 + 10/12 18:00:00,253048348.5,0,343972173.4,0,307141.3323,458366.5927,3352849052,0,141880393.7,0 + 10/12 19:00:00,63839033.32,0,57685096.33,0,307156.5233,458389.2632,2877488961,0,638461771.5,0 + 10/12 20:00:00,0,0,0,13933182.06,263277.02,392905.0828,2362255570,13933182.06,638461771.5,702307948.6 + 10/12 21:00:00,0,0,0,87065360.66,219367.2263,327375.698,1968274527,87065360.66,496581377.8,702307948.6 + 10/12 22:00:00,0,0,0,0,175442.1815,261823.5532,1574156645,0,354700984.2,702307948.6 + 10/12 23:00:00,0,0,0,0,131558.9064,196333.7438,1180413540,0,354700984.2,624273732.1 + 10/12 24:00:00,24010236.25,0,0,0,87697.51124,130876.5874,810876991.2,0,354700984.2,468205299.1 + 10/13 01:00:00,181275998.9,0,192359462.1,0,43846.54289,65434.99149,767048984.8,0,212820590.5,234102649.5 + 10/13 02:00:00,0,0,0,0,21923.27144,32717.49574,196706761.9,0,141880393.7,0 + 10/13 03:00:00,0,0,0,0,21923.27144,32717.49574,196706761.9,0,141880393.7,0 + 10/13 04:00:00,73496322.36,0,81079978.58,0,21915.8909,32706.48129,351216840.8,0,141880393.7,0 + 10/13 05:00:00,96558946.15,0,117794787.2,0,21920.95262,32714.03521,411039689.5,0,141880393.7,0 + 10/13 06:00:00,95730323.98,0,116828014.1,0,21920.95262,32714.03521,409244294.3,0,141880393.7,0 + 10/13 07:00:00,50433571.53,0,47405949.73,0,21917.20931,32708.44883,294491890.5,0,141880393.7,156068433 + 10/13 08:00:00,219623812.4,0,323009516.6,0,21908.76966,32695.8538,739209973.5,0,567521574.6,390171082.6 + 10/13 09:00:00,207411005.9,0,217755006.8,0,87683.81047,130856.1408,1211909837,0,567521574.6,390171082.6 + 10/13 10:00:00,132263396.7,0,174102834.9,0,131613.2258,196414.8082,1487267154,0,283760787.3,0 + 10/13 11:00:00,17691726.83,0,82907801.16,0,131638.51,196452.5414,1281727313,0,283760787.3,0 + 10/13 12:00:00,0,0,10236884.71,0,87763.57609,130975.1802,797696407.2,0,283760787.3,0 + 10/13 13:00:00,0,147970510.9,0,0,87747.67802,130951.4545,787316876.9,147970510.9,283760787.3,0 + 10/13 14:00:00,0,177113483,0,0,131572.7144,196354.3503,1180537433,177113483,283760787.3,0 + 10/13 15:00:00,0,68248508.72,0,98082383.61,175470.0346,261865.1201,1574406557,166330892.3,283760787.3,0 + 10/13 16:00:00,0,0,0,0,219330.1486,327320.3646,1967941847,0,283760787.3,0 + 10/13 17:00:00,19600683.14,0,0,0,263273.106,392899.2416,2381821135,0,354700984.2,0 + 10/13 18:00:00,170465887.8,0,247118134.5,0,307135.2741,458357.5517,3173358195,0,141880393.7,0 + 10/13 19:00:00,4123236.031,0,0,0,175502.125,261913.0107,1578817725,0,638461771.5,0 + 10/13 20:00:00,0,0,0,0,131581.6361,196367.6649,1180617484,0,638461771.5,702307948.6 + 10/13 21:00:00,0,0,0,29895839.65,87693.08578,130869.983,786827047.5,29895839.65,496581377.8,702307948.6 + 10/13 22:00:00,0,0,0,0,87693.08578,130869.983,786827047.5,0,354700984.2,702307948.6 + 10/13 23:00:00,0,0,0,0,87589.28288,130715.0713,785895675.1,0,354700984.2,624273732.1 + 10/13 24:00:00,72053846.46,0,73085095.87,0,87477.0665,130547.6036,930027754.8,0,354700984.2,468205299.1 + 10/14 01:00:00,276723528.3,0,366637642.7,0,43695.24304,65209.19708,1035417156,0,212820590.5,234102649.5 + 10/14 02:00:00,0,0,0,0,21831.63149,32580.7356,195884521.5,0,141880393.7,0 + 10/14 03:00:00,186198774.5,0,258390579.6,0,21828.84562,32576.57806,640448879.3,0,141880393.7,0 + 10/14 04:00:00,246125284.6,0,338436434.3,0,21811.40763,32550.55425,780264781.7,0,141880393.7,0 + 10/14 05:00:00,269606531.2,0,370565389.5,0,21802.22527,32536.85082,835792594.6,0,141880393.7,0 + 10/14 06:00:00,291352135.9,0,400298041.8,0,21789.50337,32517.86511,887156704.2,0,141880393.7,0 + 10/14 07:00:00,131755118.8,0,147820661.8,0,87233.52442,130184.1503,1062279409,0,141880393.7,156068433 + 10/14 08:00:00,221977515.7,0,323204075.5,0,349520.6876,521612.0066,3681259290,0,567521574.6,390171082.6 + 10/14 09:00:00,153837499.1,0,83812976.32,0,306378.1137,457227.5929,2986631019,0,567521574.6,390171082.6 + 10/14 10:00:00,58669308.2,0,49654839.65,0,219056.7445,326912.3463,2073812875,0,283760787.3,0 + 10/14 11:00:00,6317808.719,0,95705188.74,0,175367.6209,261712.2817,1675510647,0,283760787.3,0 + 10/14 12:00:00,0,0,42378208.68,0,87724.52477,130916.9014,829487342.9,0,283760787.3,0 + 10/14 13:00:00,0,112997701.6,3926819.155,0,87752.93547,130959.3005,791290868.6,112997701.6,283760787.3,0 + 10/14 14:00:00,0,99006011.89,0,0,87754.66638,130961.8836,787379580.1,99006011.89,283760787.3,0 + 10/14 15:00:00,0,42224944.89,0,0,131638.51,196452.5414,1181127785,42224944.89,283760787.3,0 + 10/14 16:00:00,0,0,0,98495759.72,219372.6188,327383.7456,1968322912,98495759.72,283760787.3,0 + 10/14 17:00:00,110446636.3,0,0,2111179.254,219072.3966,326935.7049,2076075802,2111179.254,354700984.2,0 + 10/14 18:00:00,309791995.4,0,411234101.8,0,306169.7328,456916.6127,3468136941,0,141880393.7,0 + 10/14 19:00:00,123275777.2,0,154631460,0,306105.7998,456821.2014,3024444442,0,638461771.5,0 + 10/14 20:00:00,0,0,0,0,174562.2507,260510.3763,1566261457,0,638461771.5,702307948.6 + 10/14 21:00:00,0,0,0,0,174630.7649,260612.6245,1566876202,0,496581377.8,702307948.6 + 10/14 22:00:00,47671355.84,0,13996402.87,0,87292.68206,130272.435,844902180.1,0,354700984.2,702307948.6 + 10/14 23:00:00,94987184.27,0,106686973.8,0,87304.10114,130289.4764,985011037.2,0,354700984.2,624273732.1 + 10/14 24:00:00,159057395.1,0,196072441.6,0,43646.34103,65136.21749,746747047.4,0,354700984.2,468205299.1 + 10/15 01:00:00,322310057.1,0,435828620,0,43559.20787,65006.18312,1148974085,0,212820590.5,234102649.5 + 10/15 02:00:00,0,0,0,0,21772.83431,32492.98881,195356963.2,0,141880393.7,0 + 10/15 03:00:00,168081069.2,0,194787618.4,0,21779.60393,32503.09156,558286391.4,0,141880393.7,0 + 10/15 04:00:00,272686775.8,0,373901448,0,21758.88822,32472.17618,841820055.6,0,141880393.7,0 + 10/15 05:00:00,285600427.7,0,393309652.7,0,21769.39859,32487.86148,874236216.6,0,141880393.7,0 + 10/15 06:00:00,281253053.9,0,385308036.8,0,21789.50337,32517.86511,862067617.2,0,141880393.7,0 + 10/15 07:00:00,170365178.4,0,213675200.5,0,87183.73045,130109.8395,1166297231,0,141880393.7,156068433 + 10/15 08:00:00,223331945.2,0,326725180.4,0,349908.266,522190.4145,3689612376,0,567521574.6,390171082.6 + 10/15 09:00:00,162865999.4,0,132303476.7,0,306743.7019,457773.1835,3047430263,0,567521574.6,390171082.6 + 10/15 10:00:00,0,0,0,0,219274.8459,327237.8329,1967445644,0,283760787.3,0 + 10/15 11:00:00,0,23416309.12,0,0,175515.404,261932.8278,1574813634,23416309.12,283760787.3,0 + 10/15 12:00:00,0,236195996.1,0,0,87764.32739,130976.3014,787466263.5,236195996.1,283760787.3,0 + 10/15 13:00:00,0,305012828.3,0,57629785.92,87760.5504,130970.6647,787432374.4,362642614.2,283760787.3,0 + 10/15 14:00:00,0,268949232.9,0,182489615.4,87755.25077,130962.7558,787384823.5,451438848.3,283760787.3,0 + 10/15 15:00:00,0,136703912.9,0,183695164,131643.5213,196460.02,1181172749,320399077,283760787.3,0 + 10/15 16:00:00,0,0,0,4620132.416,219367.2263,327375.698,1968274527,4620132.416,283760787.3,0 + 10/15 17:00:00,79556075.81,0,45343515.22,0,219243.7781,327191.4684,2092066479,0,354700984.2,0 + 10/15 18:00:00,201279055.8,0,320537709.9,0,306858.8937,457945.0915,3275111112,0,141880393.7,0 + 10/15 19:00:00,23004066.35,0,32130865.02,0,306764.1352,457803.6774,2807579056,0,638461771.5,0 + 10/15 20:00:00,0,0,0,0,175316.2976,261635.6885,1573027150,0,638461771.5,702307948.6 + 10/15 21:00:00,0,15300399.06,0,55986316.66,175327.1272,261651.8503,1573124319,71286715.72,496581377.8,702307948.6 + 10/15 22:00:00,0,0,0,0,87673.96962,130841.4547,786655527.6,0,354700984.2,702307948.6 + 10/15 23:00:00,0,0,0,0,87658.14878,130817.8443,786513574.9,0,354700984.2,624273732.1 + 10/15 24:00:00,0,0,0,0,43817.53931,65391.7076,393153288.9,0,354700984.2,468205299.1 + 10/16 01:00:00,180725189.8,0,192502974.2,0,43829.07439,65408.92213,766484951.4,0,212820590.5,234102649.5 + 10/16 02:00:00,0,0,0,0,21908.76966,32695.8538,196576644.4,0,141880393.7,0 + 10/16 03:00:00,36667598.53,0,19185340.01,0,21904.07404,32688.84624,252387451.6,0,141880393.7,0 + 10/16 04:00:00,186424146.8,0,247032462.4,0,21893.73327,32673.41405,629898339.5,0,141880393.7,0 + 10/16 05:00:00,196868138,0,259232505,0,21890.00549,32667.85083,652508925.8,0,141880393.7,0 + 10/16 06:00:00,235010604,0,312250702,0,21864.69998,32630.08582,743442535,0,141880393.7,0 + 10/16 07:00:00,210186223.3,0,273191062.7,0,87390.48608,130418.3942,1267489255,0,141880393.7,156068433 + 10/16 08:00:00,400603287.8,0,533885640.2,0,349520.6876,521612.0066,4070566627,0,567521574.6,390171082.6 + 10/16 09:00:00,531869041.2,0,740566618.8,0,305830.6017,456410.5058,4016503647,0,567521574.6,390171082.6 + 10/16 10:00:00,535151057.7,0,738681828.7,0,218476.2152,326045.9854,3234112809,0,283760787.3,0 + 10/16 11:00:00,497146552.2,0,690879984.1,0,174841.1936,260926.6606,2756790811,0,283760787.3,0 + 10/16 12:00:00,490722000.5,0,683136955.8,0,87410.69862,130448.5586,1958152282,0,283760787.3,0 + 10/16 13:00:00,474956743,0,661042978.2,0,87449.45776,130506.4014,1920640814,0,283760787.3,0 + 10/16 14:00:00,467065409.8,0,647954848.5,0,87458.79993,130520.3433,1899745174,0,283760787.3,0 + 10/16 15:00:00,491833748.1,0,681242451.6,0,131159.9647,195738.3777,2349910232,0,283760787.3,0 + 10/16 16:00:00,528489836.7,0,730952298.4,0,218501.6542,326083.9496,3219950309,0,283760787.3,0 + 10/16 17:00:00,525931170.5,0,722577863.9,0,218575.8903,326194.7368,3209683292,0,354700984.2,0 + 10/16 18:00:00,567321370.5,0,782920257.2,0,305972.0888,456621.656,4095579109,0,141880393.7,0 + 10/16 19:00:00,331418563.7,0,429773985.8,0,305972.0888,456621.656,3506530031,0,638461771.5,0 + 10/16 20:00:00,101159140.5,0,85980189.24,0,174780.9722,260836.7883,1755363267,0,638461771.5,702307948.6 + 10/16 21:00:00,155004796.7,0,165107521.8,0,174696.7979,260711.1697,1887581002,0,496581377.8,702307948.6 + 10/16 22:00:00,201726751.9,0,234689819.2,0,87359.12823,130371.5968,1220247181,0,354700984.2,702307948.6 + 10/16 23:00:00,222950269.8,0,266964500.4,0,87337.53148,130339.3666,1273551603,0,354700984.2,624273732.1 + 10/16 24:00:00,277561338.3,0,348822915.3,0,43663.26298,65161.47119,1018153297,0,354700984.2,468205299.1 + 10/17 01:00:00,402188179.5,0,535444778.6,0,43663.26298,65161.47119,1329402001,0,212820590.5,234102649.5 + 10/17 02:00:00,17562373.57,0,0,0,21828.84562,32576.57806,213421898.8,0,141880393.7,0 + 10/17 03:00:00,249441767.4,0,299293254.1,0,21805.32031,32541.46974,744383465.6,0,141880393.7,0 + 10/17 04:00:00,312708704.2,0,422254365.4,0,21817.35778,32559.43403,930719520.2,0,141880393.7,0 + 10/17 05:00:00,316696176.1,0,427650320.1,0,21808.3811,32546.03756,940022403.3,0,141880393.7,0 + 10/17 06:00:00,327213734,0,442724430,0,21799.09603,32532.18086,965530760.8,0,141880393.7,0 + 10/17 07:00:00,225548774.4,0,283161661.1,0,87063.71593,129930.7342,1289890456,0,141880393.7,156068433 + 10/17 08:00:00,249888287.8,0,331848632.9,0,349124.5014,521020.7527,3714259835,0,567521574.6,390171082.6 + 10/17 09:00:00,242794753.2,0,269793812.5,0,306261.9722,457054.2675,3260527029,0,567521574.6,390171082.6 + 10/17 10:00:00,196419619.9,0,253249586.5,0,218714.9768,326402.3046,2412091419,0,283760787.3,0 + 10/17 11:00:00,194843485.4,0,336957398,0,174971.9815,261121.8437,2101738654,0,283760787.3,0 + 10/17 12:00:00,172956719.9,0,345614019.3,0,87528.51786,130624.3878,1303921200,0,283760787.3,0 + 10/17 13:00:00,93388199.78,0,297503935.2,0,87458.79993,130520.3433,1175617051,0,283760787.3,0 + 10/17 14:00:00,143878717.1,0,304438805.1,0,87380.17191,130403.0017,1232336947,0,283760787.3,0 + 10/17 15:00:00,220349745.5,0,308000541.1,0,131054.5789,195581.1037,1704238744,0,283760787.3,0 + 10/17 16:00:00,344268776.7,0,393006529.1,0,218202.8134,325637.9704,2695102127,0,283760787.3,0 + 10/17 17:00:00,429419159.7,0,534202935.4,0,218173.5778,325594.3403,2921186600,0,354700984.2,0 + 10/17 18:00:00,513976530.5,0,723109923.6,0,305274.4843,455580.5764,3976164673,0,141880393.7,0 + 10/17 19:00:00,302674166.5,0,402408081.2,0,305187.3445,455450.532,3443378603,0,638461771.5,0 + 10/17 20:00:00,90251443.18,0,84203101.88,0,174316.0269,260142.9209,1738506757,0,638461771.5,702307948.6 + 10/17 21:00:00,151989103.7,0,172194506.6,0,174236.8315,260024.7325,1887525240,0,496581377.8,702307948.6 + 10/17 22:00:00,220921642.1,0,272059626.9,0,87077.59437,129951.4459,1274285814,0,354700984.2,702307948.6 + 10/17 23:00:00,267794074,0,339476464.2,0,87035.55288,129888.7047,1388197866,0,354700984.2,624273732.1 + 10/17 24:00:00,337230629.8,0,440935081.7,0,43503.42458,64922.93416,1168500603,0,354700984.2,468205299.1 + 10/18 01:00:00,479525588.6,0,651734523.4,0,43488.80295,64901.11336,1521463811,0,212820590.5,234102649.5 + 10/18 02:00:00,26545934.66,0,3467006.317,0,21725.53613,32422.40273,224945520.9,0,141880393.7,0 + 10/18 03:00:00,372782829.6,0,485426505.7,0,21697.71994,32380.89085,1052892334,0,141880393.7,0 + 10/18 04:00:00,435718000.2,0,601499104.4,0,21676.85433,32349.75177,1231712887,0,141880393.7,0 + 10/18 05:00:00,447303603.6,0,616763904.2,0,21681.09362,32356.07834,1258601327,0,141880393.7,0 + 10/18 06:00:00,456290800.9,0,628748335.8,0,21672.58203,32343.37595,1279496586,0,141880393.7,0 + 10/18 07:00:00,404358967,0,550526329.3,0,86724.37448,129424.3133,1733020572,0,141880393.7,156068433 + 10/18 08:00:00,561570205.2,0,772292480.9,0,346761.3125,517494.0152,4445181866,0,567521574.6,390171082.6 + 10/18 09:00:00,667203729.9,0,919717153.4,0,303652.6224,453160.1685,4311446930,0,567521574.6,390171082.6 + 10/18 10:00:00,681601765,0,951508822.7,0,217058.3402,323930.0002,3580668613,0,283760787.3,0 + 10/18 11:00:00,646379841.2,0,908437941.6,0,173614.3488,259095.7619,3112574181,0,283760787.3,0 + 10/18 12:00:00,659760671.7,0,925655439.2,0,86823.3361,129572.0001,2364439321,0,283760787.3,0 + 10/18 13:00:00,666497727.5,0,933823420.6,0,86839.36465,129595.9205,2379488175,0,283760787.3,0 + 10/18 14:00:00,654402646.2,0,915821364.9,0,86947.82418,129757.7816,2350364192,0,283760787.3,0 + 10/18 15:00:00,628888101.2,0,879605148.4,0,130466.4088,194703.3401,2679104346,0,283760787.3,0 + 10/18 16:00:00,640385879.5,0,891576513.6,0,217480.7373,324560.3702,3483310380,0,283760787.3,0 + 10/18 17:00:00,646848219,0,898861579.5,0,217444.0147,324505.5668,3496728292,0,354700984.2,0 + 10/18 18:00:00,695689372,0,970250683.1,0,304317.3846,454152.2355,4396430688,0,141880393.7,0 + 10/18 19:00:00,460759245,0,618183770.4,0,304264.5612,454073.4037,3808959689,0,638461771.5,0 + 10/18 20:00:00,227054180.6,0,268823705.1,0,173835.0103,259425.0692,2055614172,0,638461771.5,702307948.6 + 10/18 21:00:00,272930878.8,0,336327938.2,0,173804.2891,259379.2219,2168719456,0,496581377.8,702307948.6 + 10/18 22:00:00,326770342.1,0,416466430.7,0,86871.02177,129643.1644,1522687843,0,354700984.2,702307948.6 + 10/18 23:00:00,359792535.7,0,465379375.3,0,86855.25993,129619.642,1604481558,0,354700984.2,624273732.1 + 10/18 24:00:00,420942466,0,556121720.1,0,43411.66805,64786.00003,1366575791,0,354700984.2,468205299.1 + 10/19 01:00:00,569584338.2,0,777627318.2,0,43336.55355,64673.90187,1736049296,0,212820590.5,234102649.5 + 10/19 02:00:00,88400675.06,0,88426530.84,0,21646.25748,32304.09014,371048457.3,0,141880393.7,0 + 10/19 03:00:00,472316160.5,0,650742953.7,0,21668.27677,32336.95094,1317477934,0,141880393.7,0 + 10/19 04:00:00,484071412.4,0,668797567.7,0,21632.65304,32283.78736,1346968166,0,141880393.7,0 + 10/19 05:00:00,491287445.1,0,678793163.9,0,21641.75532,32297.37128,1364261465,0,141880393.7,0 + 10/19 06:00:00,480515256.3,0,662249645.9,0,21672.58203,32343.37595,1337222351,0,141880393.7,0 + 10/19 07:00:00,392481172.6,0,527514287.8,0,21672.58203,32343.37595,1114452909,0,141880393.7,156068433 + 10/19 08:00:00,475013341.6,0,627697346.9,0,86757.89212,129474.3338,1881146702,0,567521574.6,390171082.6 + 10/19 09:00:00,491012029.4,0,650787585.4,0,217255.3613,324224.0273,3091125414,0,567521574.6,390171082.6 + 10/19 10:00:00,390486460.2,0,543395495.2,0,217444.0147,324505.5668,2884900449,0,283760787.3,0 + 10/19 11:00:00,252626362,0,454666894.4,0,217659.2898,324826.8356,2660243308,0,283760787.3,0 + 10/19 12:00:00,157661399.9,0,405052600.9,0,130868.4458,195303.3255,1736932377,0,283760787.3,0 + 10/19 13:00:00,22742126.75,0,295438433.6,0,131038.6924,195557.3953,1493926476,0,283760787.3,0 + 10/19 14:00:00,0,0,163926632.5,0,131070.2579,195604.5025,1339955770,0,283760787.3,0 + 10/19 15:00:00,66794494.21,0,63699863.36,0,131116.0479,195672.8379,1306934347,0,283760787.3,0 + 10/19 16:00:00,228889671,0,93892109.78,0,305866.7013,456464.3795,3067173672,0,283760787.3,0 + 10/19 17:00:00,371749222.5,0,369965136.6,0,392440.0549,585663.3148,4262886490,0,354700984.2,0 + 10/19 18:00:00,489682160.9,0,681972412.5,0,304819.6803,454901.8434,3906652059,0,141880393.7,0 + 10/19 19:00:00,325823242.2,0,432843153.6,0,304624.4351,454610.4665,3491912041,0,638461771.5,0 + 10/19 20:00:00,127829342.4,0,136779839.9,0,260798.1953,389205.7746,2604623474,0,638461771.5,702307948.6 + 10/19 21:00:00,187246879.5,0,220515083.5,0,217406.9557,324450.2612,2358447944,0,496581377.8,702307948.6 + 10/19 22:00:00,248260208.9,0,309115198.9,0,173895.6484,259515.5631,2117655769,0,354700984.2,702307948.6 + 10/19 23:00:00,283129454.6,0,359135402.6,0,130488.4424,194736.2221,1813073649,0,354700984.2,624273732.1 + 10/19 24:00:00,328139221.2,0,424908329.2,0,87104.9444,129992.2621,1534597494,0,354700984.2,468205299.1 + 10/20 01:00:00,455918792,0,614913132.2,0,43545.66862,64985.97763,1461545851,0,212820590.5,234102649.5 + 10/20 02:00:00,45364726.01,0,49018481.81,0,21789.50337,32517.86511,289889734.3,0,141880393.7,0 + 10/20 03:00:00,361943952,0,489989273.1,0,21814.39987,32555.01975,1047663136,0,141880393.7,0 + 10/20 04:00:00,314093614.7,0,422949006.6,0,21820.28134,32563.79704,932825303.5,0,141880393.7,0 + 10/20 05:00:00,307806037.5,0,413223161.8,0,21828.84562,32576.57806,916888724.6,0,141880393.7,0 + 10/20 06:00:00,300002598.7,0,401531680.7,0,21837.09974,32588.89621,897467864.8,0,141880393.7,0 + 10/20 07:00:00,235355499,0,306300961.2,0,21826.02528,32572.3691,737490680,0,141880393.7,156068433 + 10/20 08:00:00,396045374.1,0,529765302.1,0,21842.42981,32596.85062,1121792086,0,567521574.6,390171082.6 + 10/20 09:00:00,466995592.4,0,647467061.2,0,87420.59679,130463.3303,1898844791,0,567521574.6,390171082.6 + 10/20 10:00:00,435685607.8,0,595612497.8,0,131228.9861,195841.3827,2208751433,0,283760787.3,0 + 10/20 11:00:00,416806783.7,0,575932732.9,0,131255.1309,195880.4004,2170427429,0,283760787.3,0 + 10/20 12:00:00,421475212.9,0,580443107.2,0,87560.02195,130671.4033,1787551451,0,283760787.3,0 + 10/20 13:00:00,436097881.3,0,598714076.4,0,87528.51786,130624.3878,1820162418,0,283760787.3,0 + 10/20 14:00:00,473422355.1,0,648083860.8,0,131242.1632,195861.0478,2299077775,0,283760787.3,0 + 10/20 15:00:00,484250379.6,0,663201202.8,0,174954.133,261095.2073,2717229207,0,283760787.3,0 + 10/20 16:00:00,487401637.7,0,666236342.7,0,218623.6444,326266.0034,3115240712,0,283760787.3,0 + 10/20 17:00:00,482711090.4,0,656579718,0,262457.9722,391682.7655,3494197464,0,354700984.2,0 + 10/20 18:00:00,507556303.1,0,693351217.8,0,306349.8125,457185.3572,3949634132,0,141880393.7,0 + 10/20 19:00:00,290957077.9,0,370354813.8,0,175104.7121,261319.926,2232440589,0,638461771.5,0 + 10/20 20:00:00,36632844.44,0,6288131.662,0,131394.3706,196088.1966,1221858218,0,638461771.5,702307948.6 + 10/20 21:00:00,54206762.72,0,9556077.697,0,87641.05768,130792.3381,850123065.3,0,496581377.8,702307948.6 + 10/20 22:00:00,77485244.89,0,55715582,0,87673.96962,130841.4547,919856354.4,0,354700984.2,702307948.6 + 10/20 23:00:00,98768428.42,0,89057187.14,0,87646.89577,130801.0507,974238222.7,0,354700984.2,624273732.1 + 10/20 24:00:00,146868488.8,0,161751967.3,0,87658.14878,130817.8443,1095134031,0,354700984.2,468205299.1 + 10/21 01:00:00,263904696.6,0,337260575.3,0,43834.41861,65416.89766,994470010.5,0,212820590.5,234102649.5 + 10/21 02:00:00,0,0,0,0,21902.43845,32686.40534,196519837.6,0,141880393.7,0 + 10/21 03:00:00,110513329.2,0,95851499.16,0,21902.43845,32686.40534,402884666,0,141880393.7,0 + 10/21 04:00:00,171835516.4,0,226571358.7,0,21899.06177,32681.36611,594896415.5,0,141880393.7,0 + 10/21 05:00:00,182218822.2,0,234285186.6,0,21904.07404,32688.84624,613038521.9,0,141880393.7,0 + 10/21 06:00:00,173914549.2,0,221792446.7,0,21907.23966,32693.57049,592269912.5,0,141880393.7,0 + 10/21 07:00:00,114781891.9,0,134346662.9,0,87635.07863,130783.4152,1035435133,0,141880393.7,156068433 + 10/21 08:00:00,246802672.5,0,323858699.7,0,350299.7324,522774.6248,3713729058,0,567521574.6,390171082.6 + 10/21 09:00:00,461468180.7,0,633904104.5,0,306291.7415,457098.6941,3843577853,0,567521574.6,390171082.6 + 10/21 10:00:00,459021439.7,0,629722648.9,0,218800.7298,326530.2792,3051935721,0,283760787.3,0 + 10/21 11:00:00,413582545.7,0,573716762.8,0,175104.7121,261319.926,2558428006,0,283760787.3,0 + 10/21 12:00:00,391456207.3,0,547209983.9,0,87544.55001,130648.3136,1724160500,0,283760787.3,0 + 10/21 13:00:00,369640085.6,0,520356362.9,0,87567.54766,130682.6344,1675697104,0,283760787.3,0 + 10/21 14:00:00,376358217.7,0,524062858.2,0,87628.95865,130774.282,1686672742,0,283760787.3,0 + 10/21 15:00:00,341277082.5,0,461889330.9,0,131304.9059,195954.6827,1981300932,0,283760787.3,0 + 10/21 16:00:00,417101945.9,0,548517965.4,0,218692.6663,326369.0091,2927841943,0,283760787.3,0 + 10/21 17:00:00,464226770,0,635765031,0,218599.9411,326230.6295,3061381855,0,354700984.2,0 + 10/21 18:00:00,539056586.7,0,747249495.6,0,305794.0174,456355.9087,4030045816,0,141880393.7,0 + 10/21 19:00:00,317186113.3,0,413074160.7,0,305719.3963,456244.5469,3473330469,0,638461771.5,0 + 10/21 20:00:00,73721075.61,0,50118696.11,0,174841.1936,260926.6606,1692604047,0,638461771.5,702307948.6 + 10/21 21:00:00,114248206.4,0,109616714.8,0,174760.3438,260806.0033,1791903771,0,496581377.8,702307948.6 + 10/21 22:00:00,184620883.6,0,214271567.8,0,87245.63054,130202.217,1181704703,0,354700984.2,702307948.6 + 10/21 23:00:00,212207336.6,0,255397139,0,87326.52596,130322.9424,1251142562,0,354700984.2,624273732.1 + 10/21 24:00:00,259385195.5,0,325757975,0,43657.69124,65153.15613,976862221,0,354700984.2,468205299.1 + 10/22 01:00:00,390561945.2,0,521609110.5,0,43646.34103,65136.21749,1303788266,0,212820590.5,234102649.5 + 10/22 02:00:00,13688647.13,0,0,0,21820.28134,32563.79704,209471329.3,0,141880393.7,0 + 10/22 03:00:00,245319777.7,0,296379242.6,0,21808.3811,32546.03756,737374927.5,0,141880393.7,0 + 10/22 04:00:00,314498133.1,0,424684652.4,0,21817.35778,32559.43403,934939236,0,141880393.7,0 + 10/22 05:00:00,314606919.8,0,423127461.4,0,21814.39987,32555.01975,933464291.9,0,141880393.7,0 + 10/22 06:00:00,309304406.7,0,414710342.7,0,21826.02528,32572.3691,919848969.2,0,141880393.7,0 + 10/22 07:00:00,248491115.1,0,324817109.4,0,87304.10114,130289.4764,1356645104,0,141880393.7,156068433 + 10/22 08:00:00,391087573.1,0,521492824.3,0,349393.5958,521422.3393,4047517764,0,567521574.6,390171082.6 + 10/22 09:00:00,449032931.3,0,609375733,0,305902.3159,456517.5295,3803120108,0,567521574.6,390171082.6 + 10/22 10:00:00,446552024.7,0,615388111.4,0,218575.8903,326194.7368,3023114394,0,283760787.3,0 + 10/22 11:00:00,418156832,0,589167883.7,0,175057.0357,261248.7756,2578025636,0,283760787.3,0 + 10/22 12:00:00,298399048.6,0,484638466.4,0,87544.55001,130648.3136,1568531824,0,283760787.3,0 + 10/22 13:00:00,271724541.4,0,455733579.5,0,87544.55001,130648.3136,1512952430,0,283760787.3,0 + 10/22 14:00:00,328835718.6,0,487693071.9,0,87552.35604,130659.963,1602093139,0,283760787.3,0 + 10/22 15:00:00,353001187.3,0,491346922,0,131362.3996,196040.4843,2022998491,0,283760787.3,0 + 10/22 16:00:00,388343886.6,0,511722033.6,0,218900.0549,326678.5083,2864148748,0,283760787.3,0 + 10/22 17:00:00,422330046.4,0,559963808.9,0,218861.375,326620.7839,2946029628,0,354700984.2,0 + 10/22 18:00:00,497118000.5,0,689894584.6,0,306231.7141,457009.1115,3934679557,0,141880393.7,0 + 10/22 19:00:00,288072753.8,0,373653916.6,0,305937.4452,456569.9552,3406753312,0,638461771.5,0 + 10/22 20:00:00,61618683.76,0,35679476.86,0,174860.7122,260955.7894,1666237567,0,638461771.5,702307948.6 + 10/22 21:00:00,96320545.4,0,86269694.57,0,174917.5999,261040.6865,1752040071,0,496581377.8,702307948.6 + 10/22 22:00:00,143380345.5,0,156078412.8,0,87449.45776,130506.4014,1084099851,0,354700984.2,702307948.6 + 10/22 23:00:00,189515317.4,0,224293523.4,0,87348.39894,130355.5848,1197543182,0,354700984.2,624273732.1 + 10/22 24:00:00,259092573,0,327390954.8,0,43657.69124,65153.15613,978202578.2,0,354700984.2,468205299.1 + 10/23 01:00:00,410249213.7,0,552335540.3,0,43598.19206,65064.36172,1353769948,0,212820590.5,234102649.5 + 10/23 02:00:00,33318086.57,0,17144932.88,0,21802.22527,32536.85082,246083693.4,0,141880393.7,0 + 10/23 03:00:00,284882869,0,360510495.1,0,21772.83431,32492.98881,840750327.3,0,141880393.7,0 + 10/23 04:00:00,349002813.9,0,477978130.7,0,21769.39859,32487.86148,1022307081,0,141880393.7,0 + 10/23 05:00:00,370571145.1,0,508479892.9,0,21740.69557,32445.02612,1074119636,0,141880393.7,0 + 10/23 06:00:00,394299091.9,0,542460453.2,0,21717.75544,32410.79111,1131622313,0,141880393.7,0 + 10/23 07:00:00,292561046.2,0,381082771.2,0,87035.55288,129888.7047,1454571145,0,141880393.7,156068433 + 10/23 08:00:00,296128682.7,0,338211412.1,0,348683.7608,520363.0073,3762908460,0,567521574.6,390171082.6 + 10/23 09:00:00,298305365.2,0,326494204.3,0,305830.6017,456410.5058,3368867556,0,567521574.6,390171082.6 + 10/23 10:00:00,226089997.8,0,312654904.4,0,218800.7298,326530.2792,2501936534,0,283760787.3,0 + 10/23 11:00:00,185088289.3,0,328615501,0,175232.5924,261510.7699,2085979895,0,283760787.3,0 + 10/23 12:00:00,123971517,0,283281165.5,0,87688.51884,130863.1674,1194038753,0,283760787.3,0 + 10/23 13:00:00,59317525.74,0,213376721.6,0,87705.93757,130889.1625,1059636608,0,283760787.3,0 + 10/23 14:00:00,4212904.465,0,73467205.66,0,87761.18968,130971.6188,865118220.5,0,283760787.3,0 + 10/23 15:00:00,0,0,0,0,131640.2538,196455.1438,1181143432,0,283760787.3,0 + 10/23 16:00:00,0,0,0,0,219405.17,327432.3238,1968614978,0,283760787.3,0 + 10/23 17:00:00,131597503.9,0,58408073.1,0,219302.7269,327279.4415,2157701383,0,354700984.2,0 + 10/23 18:00:00,266921374.2,0,389427289.2,0,306634.1383,457609.6747,3407626390,0,141880393.7,0 + 10/23 19:00:00,93808804.78,0,112636493.6,0,306261.9722,457054.2675,2954383761,0,638461771.5,0 + 10/23 20:00:00,0,0,0,0,175089.1,261296.6271,1570988618,0,638461771.5,702307948.6 + 10/23 21:00:00,0,0,0,0,174971.9815,261121.8437,1569937770,0,496581377.8,702307948.6 + 10/23 22:00:00,0,0,0,0,87477.0665,130547.6036,784888812.5,0,354700984.2,702307948.6 + 10/23 23:00:00,35236224.86,0,0,0,87390.48608,130418.3942,819348193.7,0,354700984.2,624273732.1 + 10/23 24:00:00,121229210,0,145156215.5,0,43695.24304,65209.19708,658441409.9,0,354700984.2,468205299.1 + 10/24 01:00:00,254356914.9,0,337627676,0,43695.24304,65209.19708,984040575.4,0,212820590.5,234102649.5 + 10/24 02:00:00,0,0,0,0,21837.09974,32588.89621,195933585.4,0,141880393.7,0 + 10/24 03:00:00,117496993,0,127307209.3,0,21820.28134,32563.79704,440586884.5,0,141880393.7,0 + 10/24 04:00:00,213933989.6,0,297371025,0,21776.2361,32498.06553,706692500.4,0,141880393.7,0 + 10/24 05:00:00,222262175.6,0,303483057.4,0,21820.28134,32563.79704,721527915.2,0,141880393.7,0 + 10/24 06:00:00,209404192.4,0,283168841.3,0,21828.84562,32576.57806,688432558.9,0,141880393.7,0 + 10/24 07:00:00,127586136.8,0,157510914.9,0,87337.53148,130339.3666,1068733885,0,141880393.7,156068433 + 10/24 08:00:00,223969419.6,0,329056507.4,0,350013.6825,522347.7343,3693527028,0,567521574.6,390171082.6 + 10/24 09:00:00,137292228.1,0,125944727.9,0,306876.3625,457971.1613,3016688042,0,567521574.6,390171082.6 + 10/24 10:00:00,154100158.6,0,186578246.1,0,219334.9401,327327.5154,2308663245,0,283760787.3,0 + 10/24 11:00:00,32710849.28,0,113068907.6,0,175509.3328,261923.7673,1720538917,0,283760787.3,0 + 10/24 12:00:00,34271545.52,0,105244078.3,0,87762.34752,130973.3467,926964123,0,283760787.3,0 + 10/24 13:00:00,0,53918600.5,0,0,87743.03957,130944.5322,787275258.4,53918600.5,283760787.3,0 + 10/24 14:00:00,0,205463781,0,36641439.24,87711.33441,130897.2166,786990783.5,242105220.3,283760787.3,0 + 10/24 15:00:00,0,155294400.9,0,272799620.2,131554.9387,196327.8226,1180377941,428094021.1,283760787.3,0 + 10/24 16:00:00,0,10735090.27,0,134717924,219369.195,327378.6361,1968292192,145453014.3,283760787.3,0 + 10/24 17:00:00,32030868.99,0,0,0,219408.4955,327437.2867,2000675685,0,354700984.2,0 + 10/24 18:00:00,180337567.1,0,251954635,0,307114.1168,458325.9772,3187876540,0,141880393.7,0 + 10/24 19:00:00,0,0,0,0,307135.2741,458357.5517,2755774173,0,638461771.5,0 + 10/24 20:00:00,0,0,0,21282832.51,175467.9521,261862.0123,1574387872,21282832.51,638461771.5,702307948.6 + 10/24 21:00:00,0,34925585.7,0,103454880.9,175257.9173,261548.5639,1572503332,138380466.6,496581377.8,702307948.6 + 10/24 22:00:00,0,0,0,0,87582.1782,130704.4685,785831928.2,0,354700984.2,702307948.6 + 10/24 23:00:00,0,0,0,0,87520.29191,130612.1117,785276652.9,0,354700984.2,624273732.1 + 10/24 24:00:00,45779659.41,0,10058756.13,0,43684.85963,65193.70125,447801234.7,0,354700984.2,468205299.1 + 10/25 01:00:00,237470636.2,0,338759605.8,0,43674.19947,65177.79242,968097412.7,0,212820590.5,234102649.5 + 10/25 02:00:00,0,0,0,0,21826.02528,32572.3691,195834219.8,0,141880393.7,0 + 10/25 03:00:00,124654621.4,0,148546403.2,0,21782.93778,32508.06687,468648641.3,0,141880393.7,0 + 10/25 04:00:00,181552982.4,0,253045692.7,0,21837.09974,32588.89621,630532260.6,0,141880393.7,0 + 10/25 05:00:00,163941729.9,0,220897614.6,0,21871.49768,32640.23046,581081565.8,0,141880393.7,0 + 10/25 06:00:00,199258567.4,0,271088617.8,0,21811.40763,32550.55425,666050248,0,141880393.7,0 + 10/25 07:00:00,122395855.7,0,142970827.4,0,87304.10114,130289.4764,1048703562,0,141880393.7,156068433 + 10/25 08:00:00,222426389.9,0,325284783.2,0,350114.0715,522497.5511,3689113014,0,567521574.6,390171082.6 + 10/25 09:00:00,90137496.4,0,0,0,306858.8937,457945.0915,2843431843,0,567521574.6,390171082.6 + 10/25 10:00:00,0,0,0,0,219327.4186,327316.2905,1967917353,0,283760787.3,0 + 10/25 11:00:00,0,106055967.9,0,0,175524.695,261946.6934,1574896998,106055967.9,283760787.3,0 + 10/25 12:00:00,0,297934274,0,109741251.9,87728.9597,130923.5199,787148926.6,407675525.9,283760787.3,0 + 10/25 13:00:00,0,388808704.5,0,206338193.3,87648.94886,130804.1146,786431028.6,595146897.7,283760787.3,0 + 10/25 14:00:00,0,379705105.1,0,344295820.3,87562.72875,130675.4429,785657417.9,724000925.4,283760787.3,0 + 10/25 15:00:00,0,288741094.8,0,435134721.1,131297.1375,195943.0894,1178064817,723875815.9,283760787.3,0 + 10/25 16:00:00,0,84540800.25,0,307676959.2,219163.6633,327071.908,1966448057,392217759.4,283760787.3,0 + 10/25 17:00:00,0,0,0,22228264.9,219330.1486,327320.3646,1967941847,22228264.9,354700984.2,0 + 10/25 18:00:00,12181224.87,0,0,0,307143.3777,458369.6451,2768028107,0,141880393.7,0 + 10/25 19:00:00,0,0,0,0,307164.1639,458400.6657,2756033386,0,638461771.5,0 + 10/25 20:00:00,0,52703100.9,0,120201222,175512.5105,261928.5096,1574787672,172904322.9,638461771.5,702307948.6 + 10/25 21:00:00,0,139991849.3,0,232482316.8,175502.125,261913.0107,1574694489,372474166.1,496581377.8,702307948.6 + 10/25 22:00:00,0,101887150.7,0,179647831.1,87764.3528,130976.3393,787466491.6,281534981.8,354700984.2,702307948.6 + 10/25 23:00:00,0,46696913.25,0,98070355.04,87742.15054,130943.2054,787267281.5,144767268.3,354700984.2,624273732.1 + 10/25 24:00:00,0,0,0,0,43858.75749,65453.22012,393523119.4,0,354700984.2,468205299.1 + 10/26 01:00:00,4893983.318,0,0,0,43862.26239,65458.4507,398448550.4,0,212820590.5,234102649.5 + 10/26 02:00:00,0,0,0,0,21914.53719,32704.46106,196628393.7,0,141880393.7,0 + 10/26 03:00:00,0,0,0,0,21929.37875,32726.61006,196761559.7,0,141880393.7,0 + 10/26 04:00:00,0,0,0,0,21923.27144,32717.49574,196706761.9,0,141880393.7,0 + 10/26 05:00:00,32124600,0,32943483.06,0,21902.43845,32686.40534,261587920.7,0,141880393.7,0 + 10/26 06:00:00,90256702.6,0,117900874.3,0,21888.08901,32664.99075,404548664,0,141880393.7,0 + 10/26 07:00:00,35397882.36,0,35054946.06,0,21895.54455,32676.11713,266910810.5,0,141880393.7,156068433 + 10/26 08:00:00,222369067.6,0,327898863.1,0,87609.7538,130745.6214,1336347281,0,567521574.6,390171082.6 + 10/26 09:00:00,188161981.8,0,226276753.5,0,219056.7445,326912.3463,2379927462,0,567521574.6,390171082.6 + 10/26 10:00:00,215346091.3,0,304998965.5,0,219145.3719,327044.6106,2486628994,0,283760787.3,0 + 10/26 11:00:00,174302048.8,0,264723209.2,0,219197.4018,327122.2581,2405776033,0,283760787.3,0 + 10/26 12:00:00,222357246.3,0,315236657,0,131546.2669,196314.8811,1717894036,0,283760787.3,0 + 10/26 13:00:00,204696417.3,0,294736242.3,0,131546.2669,196314.8811,1679732792,0,283760787.3,0 + 10/26 14:00:00,171273696,0,257235756.9,0,131564.9075,196342.6997,1608976839,0,283760787.3,0 + 10/26 15:00:00,185856714.2,0,255537831.2,0,131570.6963,196351.3386,1621913871,0,283760787.3,0 + 10/26 16:00:00,217761351.8,0,275227626.7,0,306998.2913,458153.1234,3247534071,0,283760787.3,0 + 10/26 17:00:00,229129067.8,0,304862043.3,0,394658.0783,588973.4126,4075064478,0,354700984.2,0 + 10/26 18:00:00,275509063.2,0,379581868.5,0,306925.8002,458044.9404,3408985598,0,141880393.7,0 + 10/26 19:00:00,87419155.32,0,98455901.53,0,306909.8159,458021.086,2939626304,0,638461771.5,0 + 10/26 20:00:00,0,0,0,0,263105.3856,392648.9417,2360715578,0,638461771.5,702307948.6 + 10/26 21:00:00,0,0,0,9523503.301,219274.8459,327237.8329,1967445644,9523503.301,496581377.8,702307948.6 + 10/26 22:00:00,0,0,0,0,175367.6209,261712.2817,1573487649,0,354700984.2,702307948.6 + 10/26 23:00:00,0,0,0,0,131558.9064,196333.7438,1180413540,0,354700984.2,624273732.1 + 10/26 24:00:00,30783888.05,0,0,0,87709.93836,130895.1332,817762145.5,0,354700984.2,468205299.1 + 10/27 01:00:00,173790401.9,0,202815834.2,0,43860.54538,65455.88829,770145397.3,0,212820590.5,234102649.5 + 10/27 02:00:00,0,0,0,0,21930.27269,32727.94415,196769580.6,0,141880393.7,0 + 10/27 03:00:00,0,0,0,0,21932.74186,32731.62905,196791735.3,0,141880393.7,0 + 10/27 04:00:00,26653951.77,0,0,0,21934.2107,32733.82109,223458866.2,0,141880393.7,0 + 10/27 05:00:00,47647345.5,0,54848639.3,0,21936.14788,32736.71206,299318280.6,0,141880393.7,0 + 10/27 06:00:00,39994207.39,0,35900278.4,0,21938.6666,32740.47091,272739380.8,0,141880393.7,0 + 10/27 07:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,156068433 + 10/27 08:00:00,214751643.3,0,290919991,0,21938.6666,32740.47091,702516529.2,0,567521574.6,390171082.6 + 10/27 09:00:00,128628322,0,161257659.7,0,87761.18968,130971.6188,1077324092,0,567521574.6,390171082.6 + 10/27 10:00:00,141688795,0,180558732.7,0,131646.5292,196464.5089,1503447265,0,283760787.3,0 + 10/27 11:00:00,103376772.9,0,156415463.8,0,131635.1832,196447.5766,1440890172,0,283760787.3,0 + 10/27 12:00:00,16957955.15,0,89906274.59,0,87740.5074,130940.7533,894116768.2,0,283760787.3,0 + 10/27 13:00:00,339446.7416,0,35291670.17,0,87722.33481,130913.6332,822720601.7,0,283760787.3,0 + 10/27 14:00:00,0,28104217.22,0,0,131598.0891,196392.2188,1180765108,28104217.22,283760787.3,0 + 10/27 15:00:00,0,57767159.61,0,78437973.72,175486.0791,261889.0644,1574550517,136205133.3,283760787.3,0 + 10/27 16:00:00,0,0,0,34273295.45,219369.195,327378.6361,1968292192,34273295.45,283760787.3,0 + 10/27 17:00:00,23246575.17,0,0,0,263249.3528,392863.7932,2385253900,0,354700984.2,0 + 10/27 18:00:00,115960898.6,0,122982483.7,0,307131.1196,458351.3517,2994680279,0,141880393.7,0 + 10/27 19:00:00,0,0,0,0,175503.4969,261915.0581,1574706798,0,638461771.5,0 + 10/27 20:00:00,0,51691283.8,0,160061640,131618.1447,196422.1489,1180945057,211752923.8,638461771.5,702307948.6 + 10/27 21:00:00,0,209391590.2,0,346728307.8,87749.78425,130954.5977,787335775.1,556119898,496581377.8,702307948.6 + 10/27 22:00:00,0,117720275.2,0,219291265.7,87760.5504,130970.6647,787432374.4,337011540.9,354700984.2,702307948.6 + 10/27 23:00:00,0,75041979.01,0,160509592.5,87755.25077,130962.7558,787384823.5,235551571.5,354700984.2,624273732.1 + 10/27 24:00:00,0,2256988.273,0,46982859.86,87759.43865,130969.0056,787422399.2,49239848.13,354700984.2,468205299.1 + 10/28 01:00:00,0,0,0,0,43880.76001,65486.05588,393720537.2,0,212820590.5,234102649.5 + 10/28 02:00:00,0,0,0,0,21940.89402,32743.79504,196864880.6,0,141880393.7,0 + 10/28 03:00:00,0,0,0,0,21941.0882,32744.08482,196866622.9,0,141880393.7,0 + 10/28 04:00:00,0,0,0,0,21940.96252,32743.89727,196865495.2,0,141880393.7,0 + 10/28 05:00:00,0,0,0,0,21940.04231,32742.52397,196857238.6,0,141880393.7,0 + 10/28 06:00:00,0,0,0,0,21937.76563,32739.12634,196836811.1,0,141880393.7,0 + 10/28 07:00:00,0,0,0,0,87739.56762,130939.3508,787244106.3,0,141880393.7,156068433 + 10/28 08:00:00,151317760.8,0,182422142.8,0,350935.9042,523724.0246,3482515647,0,567521574.6,390171082.6 + 10/28 09:00:00,140022426.9,0,145734244,0,307121.6663,458337.2438,3041408747,0,567521574.6,390171082.6 + 10/28 10:00:00,216845675.3,0,295765274.6,0,219397.5167,327420.9023,2481157258,0,283760787.3,0 + 10/28 11:00:00,105039725.3,0,190273945.9,0,175527.1522,261950.3603,1870232716,0,283760787.3,0 + 10/28 12:00:00,0,0,8107695.512,0,87760.5504,130970.6647,795540070,0,283760787.3,0 + 10/28 13:00:00,0,160427990.3,0,0,87758.18478,130967.1344,787411148.9,160427990.3,283760787.3,0 + 10/28 14:00:00,0,196354528.9,0,0,87732.05943,130928.1458,787176738.9,196354528.9,283760787.3,0 + 10/28 15:00:00,0,124312483.6,0,173003028.2,131567.0016,196345.8248,1180486175,297315511.8,283760787.3,0 + 10/28 16:00:00,0,8132306.965,0,141624477.6,219369.195,327378.6361,1968292192,149756784.6,283760787.3,0 + 10/28 17:00:00,5891369.417,0,0,0,219391.972,327412.6277,1974387929,0,354700984.2,0 + 10/28 18:00:00,188095748.9,0,251940320.8,0,307068.9162,458258.5215,3195214845,0,141880393.7,0 + 10/28 19:00:00,25527229.68,0,20297273.87,0,306909.8159,458021.086,2799575751,0,638461771.5,0 + 10/28 20:00:00,0,0,0,0,175467.9521,261862.0123,1574387872,0,638461771.5,702307948.6 + 10/28 21:00:00,0,60473163.31,0,143299655.3,175484.3011,261886.4109,1574534563,203772818.7,496581377.8,702307948.6 + 10/28 22:00:00,0,7352990.186,0,42200088.68,87709.93836,130895.1332,786978257.4,49553078.87,354700984.2,702307948.6 + 10/28 23:00:00,0,0,0,0,87717.51498,130906.4402,787046238.8,0,354700984.2,624273732.1 + 10/28 24:00:00,0,0,0,0,43865.48373,65463.25811,393583470.6,0,354700984.2,468205299.1 + 10/29 01:00:00,63891761.35,0,44726090.14,0,43862.26239,65458.4507,502172418.6,0,212820590.5,234102649.5 + 10/29 02:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 10/29 03:00:00,0,0,0,0,21933.49401,32732.75154,196798484,0,141880393.7,0 + 10/29 04:00:00,0,0,0,0,21934.2107,32733.82109,196804914.4,0,141880393.7,0 + 10/29 05:00:00,12196104.38,0,0,0,21934.2107,32733.82109,209001018.8,0,141880393.7,0 + 10/29 06:00:00,27903354.18,0,21035925.06,0,21934.2107,32733.82109,245744193.7,0,141880393.7,0 + 10/29 07:00:00,0,0,0,0,87733.97606,130931.0061,787193935.9,0,141880393.7,156068433 + 10/29 08:00:00,201685751.8,0,277088274.1,0,350935.9042,523724.0246,3627549770,0,567521574.6,390171082.6 + 10/29 09:00:00,185584064,0,201626248.5,0,307068.9162,458258.5215,3142389088,0,567521574.6,390171082.6 + 10/29 10:00:00,256063589.2,0,352197269.4,0,219348.9191,327348.377,2576371124,0,283760787.3,0 + 10/29 11:00:00,258648416.7,0,358054370.7,0,175489.183,261893.6965,2191281154,0,283760787.3,0 + 10/29 12:00:00,240149101.4,0,337685804.2,0,87757.702,130966.4139,1365241723,0,283760787.3,0 + 10/29 13:00:00,138467102.6,0,222450728.6,0,87743.03957,130944.5322,1148193090,0,283760787.3,0 + 10/29 14:00:00,42242797.13,0,85054301.72,0,87725.71815,130918.6823,914416940.6,0,283760787.3,0 + 10/29 15:00:00,56460296.82,0,57866771.55,0,131548.5887,196318.3461,1294648034,0,283760787.3,0 + 10/29 16:00:00,122334216.5,0,139510529.7,0,219369.195,327378.6361,2230136939,0,283760787.3,0 + 10/29 17:00:00,171924488.7,0,224602829.4,0,219410.5901,327440.4127,2365190928,0,354700984.2,0 + 10/29 18:00:00,253174798.1,0,347132283.2,0,307097.5269,458301.219,3355742567,0,141880393.7,0 + 10/29 19:00:00,49156210.33,0,43216813.51,0,307035.8367,458209.1549,2847254994,0,638461771.5,0 + 10/29 20:00:00,0,0,0,0,175498.095,261906.9965,1574658329,0,638461771.5,702307948.6 + 10/29 21:00:00,0,8702265.757,0,66120037.06,175467.9521,261862.0123,1574387872,74822302.82,496581377.8,702307948.6 + 10/29 22:00:00,0,0,0,3719699.756,87683.81047,130856.1408,786743824.7,3719699.756,354700984.2,702307948.6 + 10/29 23:00:00,0,0,0,0,87582.1782,130704.4685,785831928.2,0,354700984.2,624273732.1 + 10/29 24:00:00,7269667.581,0,0,0,43794.64144,65357.53565,400217505.1,0,354700984.2,468205299.1 + 10/30 01:00:00,186107427.4,0,206360951.5,0,43794.64144,65357.53565,785416216.5,0,212820590.5,234102649.5 + 10/30 02:00:00,0,0,0,0,21899.06177,32681.36611,196489540.4,0,141880393.7,0 + 10/30 03:00:00,27219954.96,0,16715088.78,0,21888.08901,32664.99075,240326130.9,0,141880393.7,0 + 10/30 04:00:00,127442404.4,0,174583482.1,0,21875.85516,32646.73339,498307205.2,0,141880393.7,0 + 10/30 05:00:00,144655696.8,0,193510175.7,0,21867.00072,32633.51935,534367744.8,0,141880393.7,0 + 10/30 06:00:00,168974936,0,227926964.4,0,21847.62152,32604.59854,592929892.7,0,141880393.7,0 + 10/30 07:00:00,116223021.4,0,134233461.9,0,87292.68206,130272.435,1033690905,0,141880393.7,156068433 + 10/30 08:00:00,221008865.7,0,323675424.3,0,350146.4157,522545.8205,3686376340,0,567521574.6,390171082.6 + 10/30 09:00:00,86305874.21,0,6425257.459,0,306803.5207,457862.4549,2845528644,0,567521574.6,390171082.6 + 10/30 10:00:00,0,0,0,0,219410.882,327440.8482,1968666229,0,283760787.3,0 + 10/30 11:00:00,0,140609263.1,0,20120516.99,175490.8596,261896.1985,1574593409,160729780,283760787.3,0 + 10/30 12:00:00,0,375709575,0,180622456.6,87665.46532,130828.7632,786579222.7,556332031.7,283760787.3,0 + 10/30 13:00:00,0,444132672.1,0,257680913.8,87598.70293,130729.1294,785980196.5,701813585.8,283760787.3,0 + 10/30 14:00:00,0,404669936.7,0,377744270.9,87547.35702,130652.5027,785519494.8,782414207.6,283760787.3,0 + 10/30 15:00:00,0,271931682.7,0,428303735.4,131387.6834,196078.2169,1178877241,700235418.1,283760787.3,0 + 10/30 16:00:00,0,79312947.38,0,248623150,219247.6479,327197.2435,1967201609,327936097.3,283760787.3,0 + 10/30 17:00:00,0,0,0,3372056.032,219388.1269,327406.8894,1968462059,3372056.032,354700984.2,0 + 10/30 18:00:00,39513474.67,0,56241455.15,0,307164.1639,458400.6657,2851788316,0,141880393.7,0 + 10/30 19:00:00,0,0,0,0,307078.9498,458273.4952,2755268802,0,638461771.5,0 + 10/30 20:00:00,0,66386440.03,0,122765011.2,175489.183,261893.6965,1574578366,189151451.2,638461771.5,702307948.6 + 10/30 21:00:00,0,139987290.9,0,227944389.5,175435.03,261812.8805,1574092478,367931680.4,496581377.8,702307948.6 + 10/30 22:00:00,0,33850503.76,0,74080734.41,87628.95865,130774.282,786251666.2,107931238.2,354700984.2,702307948.6 + 10/30 23:00:00,0,0,0,0,87536.60392,130636.4551,785423012.6,0,354700984.2,624273732.1 + 10/30 24:00:00,0,0,0,0,43742.99536,65280.46091,392484442.6,0,354700984.2,468205299.1 + 10/31 01:00:00,127085213.3,0,177221165.4,0,43764.25893,65312.19389,696981608.9,0,212820590.5,234102649.5 + 10/31 02:00:00,0,0,0,0,21910.26442,32698.08453,196590056.2,0,141880393.7,0 + 10/31 03:00:00,0,0,0,0,21880.07298,32653.02792,196319163.2,0,141880393.7,0 + 10/31 04:00:00,51907485.87,0,63435933.18,0,21882.12947,32656.09695,311681034.1,0,141880393.7,0 + 10/31 05:00:00,111700025.5,0,151329077.1,0,21857.58903,32619.47368,459146528.3,0,141880393.7,0 + 10/31 06:00:00,112582020,0,153299732.2,0,21884.15098,32659.11378,462237505.4,0,141880393.7,0 + 10/31 07:00:00,63441399.24,0,73968374.52,0,87430.3561,130477.8947,921879476.7,0,141880393.7,156068433 + 10/31 08:00:00,220071369.8,0,323960147.1,0,350695.8785,523365.8188,3690653627,0,567521574.6,390171082.6 + 10/31 09:00:00,71251976.67,0,27330195.04,52782769.33,307135.2741,458357.5517,2854356345,52782769.33,567521574.6,390171082.6 + 10/31 10:00:00,0,47448029.91,0,47760252.25,219337.5433,327331.4002,1968008196,95208282.16,283760787.3,0 + 10/31 11:00:00,0,299255940.9,0,206165834.8,175309.1909,261625.0829,1572963386,505421775.8,283760787.3,0 + 10/31 12:00:00,0,398380749.2,0,239595354.2,87612.10909,130749.1363,786100483.4,637976103.5,283760787.3,0 + 10/31 13:00:00,0,182024899.9,0,132327825.8,87605.47633,130739.2378,786040970.9,314352725.7,283760787.3,0 + 10/31 14:00:00,0,71567518.08,0,54005390.7,87598.70293,130729.1294,785980196.5,125572908.8,283760787.3,0 + 10/31 15:00:00,0,5170741.793,0,1498085.636,131366.3094,196046.319,1178685462,6668827.429,283760787.3,0 + 10/31 16:00:00,0,0,0,0,219093.0813,326966.574,1965814759,0,283760787.3,0 + 10/31 17:00:00,0,0,0,0,219189.4258,327110.3551,1966679211,0,354700984.2,0 + 10/31 18:00:00,57329212.4,0,69102478.3,0,306865.1962,457954.4971,2879782587,0,141880393.7,0 + 10/31 19:00:00,0,0,0,0,306975.8449,458119.6252,2754343692,0,638461771.5,0 + 10/31 20:00:00,0,196353391,0,364971051.2,175464.1189,261856.2917,1574353478,561324442.3,638461771.5,702307948.6 + 10/31 21:00:00,0,186964221.6,0,315411260.4,175510.5015,261925.5115,1574769647,502375482,496581377.8,702307948.6 + 10/31 22:00:00,0,68191673.52,0,150439169.2,87763.97715,130975.7787,787463121,218630842.7,354700984.2,702307948.6 + 10/31 23:00:00,0,568290.9856,0,46327200.22,87763.85009,130975.5891,787461980.9,46895491.2,354700984.2,624273732.1 + 10/31 24:00:00,0,0,0,0,43882.07991,65488.02565,393732380,0,354700984.2,468205299.1 + 11/01 01:00:00,18499921.43,0,0,0,43881.51644,65487.18475,412227245.7,0,212820590.5,234102649.5 + 11/01 02:00:00,0,0,0,0,21938.39266,32740.0621,196842437.1,0,141880393.7,0 + 11/01 03:00:00,0,0,0,0,21934.45833,32734.19064,196807136.3,0,141880393.7,0 + 11/01 04:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 11/01 05:00:00,0,0,0,0,21930.5837,32728.40829,196772371.2,0,141880393.7,0 + 11/01 06:00:00,0,0,0,0,21931.42954,32729.67059,196779960.4,0,141880393.7,0 + 11/01 07:00:00,0,0,0,0,87722.33481,130913.6332,787089484.8,0,141880393.7,156068433 + 11/01 08:00:00,0,0,0,0,350951.3332,523747.0503,3148914181,0,567521574.6,390171082.6 + 11/01 09:00:00,0,0,0,0,307173.92,458415.2254,2756120924,0,567521574.6,390171082.6 + 11/01 10:00:00,162635192.5,0,225185081.9,0,219397.5167,327420.9023,2356366583,0,283760787.3,0 + 11/01 11:00:00,229025843.2,0,322384788.3,0,175473.6856,261870.5687,2125849947,0,283760787.3,0 + 11/01 12:00:00,243958384,0,378711303.1,0,87641.05768,130792.3381,1409029912,0,283760787.3,0 + 11/01 13:00:00,269918976.5,0,428259802.6,0,87603.07075,130735.6478,1484198166,0,283760787.3,0 + 11/01 14:00:00,195676134.6,0,324293766.1,0,87668.83723,130833.7953,1306579378,0,283760787.3,0 + 11/01 15:00:00,187951828.1,0,224575361.2,0,131461.5865,196188.5072,1592067527,0,283760787.3,0 + 11/01 16:00:00,291408615.5,0,293964979.6,0,218918.8691,326706.5861,2549625234,0,283760787.3,0 + 11/01 17:00:00,409098872.6,0,543026211.5,0,218551.492,326158.3257,2913080428,0,354700984.2,0 + 11/01 18:00:00,489227935.3,0,678266938.4,0,305756.9488,456300.5889,3910902010,0,141880393.7,0 + 11/01 19:00:00,267921502,0,346701899,0,305756.9488,456300.5889,3358030537,0,638461771.5,0 + 11/01 20:00:00,50824651.93,0,24416707.85,0,174608.2023,260578.9528,1641915118,0,638461771.5,702307948.6 + 11/01 21:00:00,103587873.6,0,100143418.7,0,174608.2023,260578.9528,1770405051,0,496581377.8,702307948.6 + 11/01 22:00:00,176922778.9,0,207721601,0,87170.94019,130090.7518,1166786471,0,354700984.2,702307948.6 + 11/01 23:00:00,214463381.4,0,262727672.9,0,87233.52442,130184.1503,1259894683,0,354700984.2,624273732.1 + 11/01 24:00:00,278032448.5,0,356319781.2,0,43585.4701,65045.37591,1025423275,0,354700984.2,468205299.1 + 11/02 01:00:00,417674535.3,0,563603751.6,0,43585.4701,65045.37591,1372349333,0,212820590.5,234102649.5 + 11/02 02:00:00,34788248.61,0,22280358.51,0,21792.73505,32522.68796,252604129.9,0,141880393.7,0 + 11/02 03:00:00,263088044.4,0,329381477.6,0,21808.3811,32546.03756,788145429.1,0,141880393.7,0 + 11/02 04:00:00,314944837.6,0,428478226.2,0,21792.73505,32522.68796,938958586.6,0,141880393.7,0 + 11/02 05:00:00,323566654.7,0,440300567.3,0,21792.73505,32522.68796,959402744.9,0,141880393.7,0 + 11/02 06:00:00,319049238.3,0,432805756,0,21808.3811,32546.03756,947530901.6,0,141880393.7,0 + 11/02 07:00:00,264514048.7,0,346761499.7,0,21792.73505,32522.68796,806811071.2,0,141880393.7,156068433 + 11/02 08:00:00,317117873.6,0,399858289,0,87304.10114,130289.4764,1500313042,0,567521574.6,390171082.6 + 11/02 09:00:00,433075739.9,0,582185032.1,0,218260.2528,325723.691,2973602970,0,567521574.6,390171082.6 + 11/02 10:00:00,349279199.3,0,487826860.6,0,218397.8206,325928.9921,2796682586,0,283760787.3,0 + 11/02 11:00:00,278404516.5,0,446990813.9,0,218551.492,326158.3257,2686350674,0,283760787.3,0 + 11/02 12:00:00,182270877.6,0,381485242.6,0,131215.5998,195821.4055,1741089339,0,283760787.3,0 + 11/02 13:00:00,114812025.7,0,324818233.3,0,131215.5998,195821.4055,1616963478,0,283760787.3,0 + 11/02 14:00:00,100991318.2,0,249521942.5,0,131215.5998,195821.4055,1527846480,0,283760787.3,0 + 11/02 15:00:00,122464415.5,0,124203266.7,0,131215.5998,195821.4055,1424000901,0,283760787.3,0 + 11/02 16:00:00,265998957.8,0,245511057,0,305564.354,456013.1674,3253189092,0,283760787.3,0 + 11/02 17:00:00,414795197,0,562608659.7,0,391911.0176,584873.7987,4493829195,0,354700984.2,0 + 11/02 18:00:00,525940935.6,0,744490087.5,0,303993.4098,453668.7472,3998014788,0,141880393.7,0 + 11/02 19:00:00,386322157.7,0,530347094.3,0,303295.1403,452626.6751,3637987787,0,638461771.5,0 + 11/02 20:00:00,183419006.6,0,224624481.9,0,259967.2631,387965.7215,2740602233,0,638461771.5,702307948.6 + 11/02 21:00:00,259277162.9,0,332865608.8,0,216140.5786,322560.366,2531466172,0,496581377.8,702307948.6 + 11/02 22:00:00,341323872.5,0,451860080,0,172720.6816,257762.0854,2342921914,0,354700984.2,702307948.6 + 11/02 23:00:00,392423162,0,525462023.2,0,129361.5413,193054.4758,2078582847,0,354700984.2,624273732.1 + 11/02 24:00:00,447112334.7,0,605576910.2,0,86360.34081,128881.0427,1827558226,0,354700984.2,468205299.1 + 11/03 01:00:00,584519348.3,0,809613969.9,0,43120.51377,64351.49194,1781032539,0,212820590.5,234102649.5 + 11/03 02:00:00,116786316.5,0,130960084.9,0,21534.52267,32137.34116,440965111.2,0,141880393.7,0 + 11/03 03:00:00,510089151.7,0,718725066.4,0,21502.59811,32089.69811,1421746485,0,141880393.7,0 + 11/03 04:00:00,515206484,0,722236335.2,0,21534.52267,32137.34116,1430661529,0,141880393.7,0 + 11/03 05:00:00,518789644.5,0,726191510.2,0,21534.52267,32137.34116,1438199864,0,141880393.7,0 + 11/03 06:00:00,548034060.1,0,767617037.5,0,21475.13222,32048.709,1508336926,0,141880393.7,0 + 11/03 07:00:00,478330145.8,0,657278585.4,0,21560.25688,32175.74597,1329058341,0,141880393.7,156068433 + 11/03 08:00:00,565235071.4,0,748552444.4,0,21614.05786,32256.0366,1507719856,0,567521574.6,390171082.6 + 11/03 09:00:00,608166754.7,0,815455539.8,0,86655.75436,129321.9072,2201141876,0,567521574.6,390171082.6 + 11/03 10:00:00,596670054.7,0,833907088.7,0,130136.8382,194211.5008,2598231164,0,283760787.3,0 + 11/03 11:00:00,551220228.4,0,778015941,0,130399.0976,194602.8873,2499243315,0,283760787.3,0 + 11/03 12:00:00,502506685.7,0,722201451.8,0,87021.26854,129867.3873,2005507298,0,283760787.3,0 + 11/03 13:00:00,419829809.1,0,638570733.2,0,87170.94019,130090.7518,1840542634,0,283760787.3,0 + 11/03 14:00:00,384019196.4,0,577232207.9,0,130756.4103,195136.1277,2134464541,0,283760787.3,0 + 11/03 15:00:00,384619727.7,0,509231391.2,0,174467.0488,260368.3005,2459258376,0,283760787.3,0 + 11/03 16:00:00,492237416.8,0,657734862.4,0,217927.3505,325226.8796,3105327507,0,283760787.3,0 + 11/03 17:00:00,526011557.5,0,726833388.8,0,261274.0117,389915.8658,3597128505,0,354700984.2,0 + 11/03 18:00:00,582293688.9,0,811845920.4,0,304574.4399,454535.8555,4126936673,0,141880393.7,0 + 11/03 19:00:00,379172166.9,0,507027161.8,0,174182.6745,259943.9105,2449055035,0,638461771.5,0 + 11/03 20:00:00,147762197.4,0,161655566.1,0,130531.9028,194801.0809,1480616505,0,638461771.5,702307948.6 + 11/03 21:00:00,176865797.2,0,203859598.2,0,87170.94019,130090.7518,1162867487,0,496581377.8,702307948.6 + 11/03 22:00:00,230887268.4,0,282830261.1,0,87170.94019,130090.7518,1295859621,0,354700984.2,702307948.6 + 11/03 23:00:00,287080135.6,0,362763153.6,0,87091.33724,129971.9553,1431271142,0,354700984.2,624273732.1 + 11/03 24:00:00,357230316.8,0,464284824.4,0,87091.33724,129971.9553,1602942994,0,354700984.2,468205299.1 + 11/04 01:00:00,490916768,0,662464730,0,43545.66862,64985.97763,1544095424,0,212820590.5,234102649.5 + 11/04 02:00:00,25941009.56,0,0,0,21772.83431,32492.98881,221297972.8,0,141880393.7,0 + 11/04 03:00:00,342231184.9,0,433120670.9,0,21772.83431,32492.98881,970708819.1,0,141880393.7,0 + 11/04 04:00:00,370090810.5,0,501462090.9,0,21792.73505,32522.68796,1067088424,0,141880393.7,0 + 11/04 05:00:00,354045618.7,0,477438989.8,0,21808.3811,32546.03756,1027160516,0,141880393.7,0 + 11/04 06:00:00,334753527.1,0,449263326.2,0,21826.02528,32572.3691,979851073.1,0,141880393.7,0 + 11/04 07:00:00,270246758.6,0,353936289.1,0,87304.10114,130289.4764,1407519927,0,141880393.7,156068433 + 11/04 08:00:00,420254016.3,0,574771960.7,0,349436.5129,521486.3874,4130348418,0,567521574.6,390171082.6 + 11/04 09:00:00,538105938.7,0,746140069.2,0,305756.9488,456300.5889,4027653144,0,567521574.6,390171082.6 + 11/04 10:00:00,532581608.5,0,731398955.6,0,218692.6663,326369.0091,3226202595,0,283760787.3,0 + 11/04 11:00:00,497126084.7,0,682983263,0,175040.5838,261224.2233,2750662653,0,283760787.3,0 + 11/04 12:00:00,449150913.3,0,620648912.7,0,87520.29191,130612.1117,1855076479,0,283760787.3,0 + 11/04 13:00:00,463018285.2,0,636741794.8,0,87567.54766,130682.6344,1885460736,0,283760787.3,0 + 11/04 14:00:00,424242413.5,0,582677210.5,0,87641.05768,130792.3381,1793279849,0,283760787.3,0 + 11/04 15:00:00,397313959.7,0,534452180.5,0,131404.6061,196103.4717,2110795221,0,283760787.3,0 + 11/04 16:00:00,432952658.5,0,573507257.2,0,218800.7298,326530.2792,2969651548,0,283760787.3,0 + 11/04 17:00:00,455938175.2,0,621759479.7,0,218692.6663,326369.0091,3039919686,0,354700984.2,0 + 11/04 18:00:00,497440646.4,0,686449824.8,0,306169.7328,456916.6127,3931001315,0,141880393.7,0 + 11/04 19:00:00,251036439.9,0,318542746.9,0,306321.0217,457142.3908,3318047472,0,638461771.5,0 + 11/04 20:00:00,19387302.39,0,0,0,174954.133,261095.2073,1589164927,0,638461771.5,702307948.6 + 11/04 21:00:00,95246932.61,0,70264620.72,0,174608.2023,260578.9528,1732185312,0,496581377.8,702307948.6 + 11/04 22:00:00,182962721.6,0,215325334.8,0,87170.94019,130090.7518,1180430148,0,354700984.2,702307948.6 + 11/04 23:00:00,226389569.9,0,279276606.7,0,87170.94019,130090.7518,1287808268,0,354700984.2,624273732.1 + 11/04 24:00:00,264251824.1,0,335206006.3,0,43652.05057,65144.7382,991126270,0,354700984.2,468205299.1 + 11/05 01:00:00,393520880.9,0,527905857.3,0,43616.76221,65092.07513,1312778553,0,212820590.5,234102649.5 + 11/05 02:00:00,41615786.04,0,42344119.39,0,21755.31713,32466.84682,279159695.7,0,141880393.7,0 + 11/05 03:00:00,388654027.8,0,533431082.1,0,21733.18294,32433.81455,1117086301,0,141880393.7,0 + 11/05 04:00:00,363505523.9,0,500122029.8,0,21733.18294,32433.81455,1058628745,0,141880393.7,0 + 11/05 05:00:00,386264529.8,0,532602504,0,21689.47303,32368.58346,1113476037,0,141880393.7,0 + 11/05 06:00:00,412829590.8,0,570735026.5,0,21663.93859,32330.47679,1177944513,0,141880393.7,0 + 11/05 07:00:00,329729436.8,0,432484375.8,0,86855.25993,129619.642,1541523460,0,141880393.7,156068433 + 11/05 08:00:00,294078438,0,331725339.6,0,348085.0742,519469.5491,3749000421,0,567521574.6,390171082.6 + 11/05 09:00:00,285409519.1,0,303037538.8,0,305756.9488,456300.5889,3331854194,0,567521574.6,390171082.6 + 11/05 10:00:00,163714409.3,0,237518938.9,0,218800.7298,326530.2792,2364424980,0,283760787.3,0 + 11/05 11:00:00,52427958.99,0,239601199.8,0,175040.5838,261224.2233,1862582464,0,283760787.3,0 + 11/05 12:00:00,29436992.97,0,274810583,0,87520.29191,130612.1117,1089524229,0,283760787.3,0 + 11/05 13:00:00,88933094.66,0,306637663.8,0,87520.29191,130612.1117,1180847411,0,283760787.3,0 + 11/05 14:00:00,143481881.8,0,285947869.5,0,87603.07075,130735.6478,1215449138,0,283760787.3,0 + 11/05 15:00:00,173716102,0,239315661.9,0,131404.6061,196103.4717,1592060844,0,283760787.3,0 + 11/05 16:00:00,264458816.8,0,329104559.7,0,218918.8691,326706.5861,2557815015,0,283760787.3,0 + 11/05 17:00:00,357173424.7,0,504221364.8,0,218397.8206,325928.9921,2820971315,0,354700984.2,0 + 11/05 18:00:00,446083095.3,0,640970276.8,0,305564.354,456013.1674,3828732449,0,141880393.7,0 + 11/05 19:00:00,231948935.8,0,315735975.3,0,305564.354,456013.1674,3289363988,0,638461771.5,0 + 11/05 20:00:00,53173407.74,0,45766577.58,0,174042.5371,259734.7745,1660538307,0,638461771.5,702307948.6 + 11/05 21:00:00,126865211.7,0,151823705.2,0,174042.5371,259734.7745,1840287239,0,496581377.8,702307948.6 + 11/05 22:00:00,176833266.3,0,222199843.8,0,87091.33724,129971.9553,1180460963,0,354700984.2,702307948.6 + 11/05 23:00:00,227051980.9,0,294108760.7,0,86932.73176,129735.2582,1301165505,0,354700984.2,624273732.1 + 11/05 24:00:00,288696345.8,0,383687566,0,43510.63427,64933.69364,1062783492,0,354700984.2,468205299.1 + 11/06 01:00:00,429113823.9,0,591348772.6,0,43466.36588,64867.6291,1410464978,0,212820590.5,234102649.5 + 11/06 02:00:00,44653547.58,0,54125065.11,0,21733.18294,32433.81455,293779803.6,0,141880393.7,0 + 11/06 03:00:00,379738887,0,530751997.8,0,21733.18294,32433.81455,1105492076,0,141880393.7,0 + 11/06 04:00:00,338810561.2,0,470445914.9,0,21755.31713,32466.84682,1004456266,0,141880393.7,0 + 11/06 05:00:00,341884050.1,0,472367606.5,0,21772.83431,32492.98881,1009608620,0,141880393.7,0 + 11/06 06:00:00,363625906.4,0,499377522.1,0,21755.31713,32466.84682,1058203219,0,141880393.7,0 + 11/06 07:00:00,304974197.9,0,404277323.3,0,87091.33724,129971.9553,1490679374,0,141880393.7,156068433 + 11/06 08:00:00,405251234,0,518300804.8,0,348683.7608,520363.0073,4052120404,0,567521574.6,390171082.6 + 11/06 09:00:00,444871313.8,0,589767415.8,0,305564.354,456013.1674,3776317807,0,567521574.6,390171082.6 + 11/06 10:00:00,286959015.7,0,409782554.4,0,218800.7298,326530.2792,2659933202,0,283760787.3,0 + 11/06 11:00:00,152263842.4,0,328151177.2,0,175135.0953,261365.2689,2051816331,0,283760787.3,0 + 11/06 12:00:00,21973137.58,0,256188751.9,0,87641.05768,130792.3381,1064522114,0,283760787.3,0 + 11/06 13:00:00,0,0,210027182.2,0,87641.05768,130792.3381,996387407.1,0,283760787.3,0 + 11/06 14:00:00,0,0,118746316.9,0,87668.83723,130833.7953,905355794.1,0,283760787.3,0 + 11/06 15:00:00,34209479.76,0,37135431.44,0,131461.5865,196188.5072,1250885249,0,283760787.3,0 + 11/06 16:00:00,228470526,0,198883523.5,0,218692.6663,326369.0091,2389576081,0,283760787.3,0 + 11/06 17:00:00,399608888.7,0,548010440.7,0,218083.811,325460.3756,2904378401,0,354700984.2,0 + 11/06 18:00:00,528514131,0,755059127.9,0,304264.5612,454073.4037,4013589932,0,141880393.7,0 + 11/06 19:00:00,307274722.3,0,418962911.1,0,305098.2907,455317.6314,3463734953,0,638461771.5,0 + 11/06 20:00:00,102715885.6,0,111181774.6,0,173865.4635,259470.5164,1773907188,0,638461771.5,702307948.6 + 11/06 21:00:00,194126951.6,0,242026571.6,0,173515.7842,258948.6677,1993025550,0,496581377.8,702307948.6 + 11/06 22:00:00,278523696.6,0,364193384.6,0,86655.75436,129321.9072,1420236663,0,354700984.2,702307948.6 + 11/06 23:00:00,314722672.7,0,415106636.8,0,86757.89212,129474.3338,1508265323,0,354700984.2,624273732.1 + 11/06 24:00:00,381714880.9,0,512412145.8,0,43327.87718,64660.95358,1282886817,0,354700984.2,468205299.1 + 11/07 01:00:00,531899150.2,0,734707204.8,0,43283.51064,64594.74256,1654968066,0,212820590.5,234102649.5 + 11/07 02:00:00,51508603.56,0,55308335.92,0,21663.93859,32330.47679,301196834.9,0,141880393.7,0 + 11/07 03:00:00,397427577.2,0,533034131.8,0,21689.47303,32368.58346,1125070712,0,141880393.7,0 + 11/07 04:00:00,446564105.9,0,622795780.5,0,21614.05786,32256.0366,1263292226,0,141880393.7,0 + 11/07 05:00:00,482215998.7,0,673610279,0,21590.0852,32220.26067,1349543523,0,141880393.7,0 + 11/07 06:00:00,495726397.7,0,691636977.9,0,21590.0852,32220.26067,1381080621,0,141880393.7,0 + 11/07 07:00:00,418184560.4,0,568616089.9,0,86567.02127,129189.4851,1763524073,0,141880393.7,156068433 + 11/07 08:00:00,521051781.5,0,706314926.7,0,346268.0851,516757.9405,4334260400,0,567521574.6,390171082.6 + 11/07 09:00:00,679561662.2,0,926866454.5,0,302984.5745,452163.1979,4324960097,0,567521574.6,390171082.6 + 11/07 10:00:00,680334588.3,0,951366219.1,0,216894.7303,323685.8346,3577790841,0,283760787.3,0 + 11/07 11:00:00,636324715.7,0,899643640,0,174042.5371,259734.7745,3097566677,0,283760787.3,0 + 11/07 12:00:00,516980519,0,792996156.4,0,87021.26854,129867.3873,2090775836,0,283760787.3,0 + 11/07 13:00:00,586721377.8,0,859132877.1,0,87021.26854,129867.3873,2226653416,0,283760787.3,0 + 11/07 14:00:00,622517697,0,877711795.6,0,87021.26854,129867.3873,2281028654,0,283760787.3,0 + 11/07 15:00:00,612582296.2,0,857793811.4,0,130637.0059,194957.9329,2642517887,0,283760787.3,0 + 11/07 16:00:00,607864216.9,0,830775881.9,0,217553.1713,324668.4682,3390638001,0,283760787.3,0 + 11/07 17:00:00,638322826.4,0,888248627.6,0,217138.1498,324049.1051,3474845572,0,354700984.2,0 + 11/07 18:00:00,699763765.6,0,981749701.5,0,303652.6224,453160.1685,4406039514,0,141880393.7,0 + 11/07 19:00:00,467348966.8,0,633456086.1,0,303652.6224,453160.1685,3825331100,0,638461771.5,0 + 11/07 20:00:00,230677816.6,0,279818549.4,0,173515.7842,258948.6677,2067368393,0,638461771.5,702307948.6 + 11/07 21:00:00,259678834.8,0,322418981.7,0,173710.5199,259239.2841,2140717111,0,496581377.8,702307948.6 + 11/07 22:00:00,299249474.5,0,381769479.4,0,86855.25993,129619.642,1460328601,0,354700984.2,702307948.6 + 11/07 23:00:00,337753633.6,0,439126947.5,0,86757.89212,129474.3338,1555316595,0,354700984.2,624273732.1 + 11/07 24:00:00,387243391.5,0,512629951.6,0,43427.62997,64809.82102,1289528167,0,354700984.2,468205299.1 + 11/08 01:00:00,509087117.2,0,694628671.2,0,43427.62997,64809.82102,1593370612,0,212820590.5,234102649.5 + 11/08 02:00:00,46790413.13,0,34397333.7,0,21689.47303,32368.58346,275796750.2,0,141880393.7,0 + 11/08 03:00:00,393747977,0,518640442,0,21689.47303,32368.58346,1106997422,0,141880393.7,0 + 11/08 04:00:00,420169355.9,0,580717508.2,0,21689.47303,32368.58346,1195495867,0,141880393.7,0 + 11/08 05:00:00,433532337.3,0,599555332.9,0,21663.93859,32330.47679,1227467566,0,141880393.7,0 + 11/08 06:00:00,445484159.1,0,616581565.8,0,21663.93859,32330.47679,1256445620,0,141880393.7,0 + 11/08 07:00:00,415657181.8,0,570979543.2,0,86456.23145,129024.1464,1762366085,0,141880393.7,156068433 + 11/08 08:00:00,569633226.7,0,778454879.2,0,346268.0851,516757.9405,4454981798,0,567521574.6,390171082.6 + 11/08 09:00:00,672324268.2,0,931214638.5,0,302984.5745,452163.1979,4322070887,0,567521574.6,390171082.6 + 11/08 10:00:00,699628670.1,0,981625410.7,0,216417.5532,322973.7128,3623062638,0,283760787.3,0 + 11/08 11:00:00,693046036.1,0,972188176.7,0,173515.7842,258948.6677,3222106240,0,283760787.3,0 + 11/08 12:00:00,661852942.2,0,926654274.8,0,86932.73176,129735.2582,2368511981,0,283760787.3,0 + 11/08 13:00:00,648700612.4,0,907862579.4,0,86932.73176,129735.2582,2336567956,0,283760787.3,0 + 11/08 14:00:00,643760376.9,0,901806481.9,0,86932.73176,129735.2582,2325571623,0,283760787.3,0 + 11/08 15:00:00,650019472.6,0,905567706.2,0,130531.9028,194801.0809,2726785920,0,283760787.3,0 + 11/08 16:00:00,641098957.3,0,873278842.5,0,217553.1713,324668.4682,3466375702,0,283760787.3,0 + 11/08 17:00:00,635853886.3,0,878402436.4,0,217553.1713,324668.4682,3466254225,0,354700984.2,0 + 11/08 18:00:00,671493839,0,934490435.5,0,304574.4399,454535.8555,4338781338,0,141880393.7,0 + 11/08 19:00:00,442063267.7,0,591323213.8,0,304264.5612,454073.4037,3763403155,0,638461771.5,0 + 11/08 20:00:00,208294442.3,0,242358736.7,0,173865.4635,259470.5164,2010662707,0,638461771.5,702307948.6 + 11/08 21:00:00,249601717.4,0,303689150.2,0,173865.4635,259470.5164,2113300395,0,496581377.8,702307948.6 + 11/08 22:00:00,286683513.8,0,359314681.9,0,87021.26854,129867.3873,1426797357,0,354700984.2,702307948.6 + 11/08 23:00:00,304614656.1,0,386430084.7,0,87021.26854,129867.3873,1471843902,0,354700984.2,624273732.1 + 11/08 24:00:00,349976057.6,0,454589679.4,0,43545.66862,64985.97763,1195279664,0,354700984.2,468205299.1 + 11/09 01:00:00,482316477.2,0,652468683.7,0,43510.63427,64933.69364,1525184741,0,212820590.5,234102649.5 + 11/09 02:00:00,9064126.986,0,0,0,21772.83431,32492.98881,204421090.2,0,141880393.7,0 + 11/09 03:00:00,330149160,0,426944067.2,0,21772.83431,32492.98881,952450190.4,0,141880393.7,0 + 11/09 04:00:00,364171980.7,0,496327336.5,0,21772.83431,32492.98881,1055856280,0,141880393.7,0 + 11/09 05:00:00,387354628.7,0,529719513.5,0,21733.18294,32433.81455,1112075333,0,141880393.7,0 + 11/09 06:00:00,421874462.2,0,580010813.1,0,21689.47303,32368.58346,1196494279,0,141880393.7,0 + 11/09 07:00:00,380174869.9,0,502423310.1,0,21641.75532,32297.37128,1076779036,0,141880393.7,156068433 + 11/09 08:00:00,431819467,0,513322481,0,86655.75436,129321.9072,1722661529,0,567521574.6,390171082.6 + 11/09 09:00:00,525916838.4,0,710806414.9,0,217331.8294,324338.1455,3186735163,0,567521574.6,390171082.6 + 11/09 10:00:00,404292680.2,0,566905418,0,218083.811,325460.3756,2927957170,0,283760787.3,0 + 11/09 11:00:00,285067665.3,0,487711894.1,0,218260.2528,325723.691,2731121757,0,283760787.3,0 + 11/09 12:00:00,115468313.3,0,361748033,0,131215.5998,195821.4055,1654549565,0,283760787.3,0 + 11/09 13:00:00,8056062.543,0,270722938.3,0,131280.4379,195918.1675,1456693980,0,283760787.3,0 + 11/09 14:00:00,0,0,136213338,0,131215.5998,195821.4055,1313546557,0,283760787.3,0 + 11/09 15:00:00,52209662.77,0,48086531.28,0,131215.5998,195821.4055,1277629413,0,283760787.3,0 + 11/09 16:00:00,246507091.3,0,214807942.2,0,305317.3355,455644.5259,3200777734,0,283760787.3,0 + 11/09 17:00:00,405408264.8,0,560630826.6,0,391595.7084,584403.2427,4479635316,0,354700984.2,0 + 11/09 18:00:00,503252566.7,0,721357011.3,0,303993.4098,453668.7472,3952193343,0,141880393.7,0 + 11/09 19:00:00,324518613.2,0,449070256.5,0,304264.5612,454073.4037,3503605543,0,638461771.5,0 + 11/09 20:00:00,141424654.2,0,172859947.5,0,259701.0638,387568.4553,2644454871,0,638461771.5,702307948.6 + 11/09 21:00:00,207104960.7,0,267170634.4,0,216639.3859,323304.7679,2418074549,0,496581377.8,702307948.6 + 11/09 22:00:00,261149067,0,343980005.5,0,173311.5087,258643.8143,2160168236,0,354700984.2,702307948.6 + 11/09 23:00:00,317702785.3,0,425110809.6,0,129684.3472,193536.2196,1906407635,0,354700984.2,624273732.1 + 11/09 24:00:00,400465013.2,0,545752130.8,0,86360.34081,128881.0427,1721086125,0,354700984.2,468205299.1 + 11/10 01:00:00,552799851.1,0,771150037,0,43120.51377,64351.49194,1710849109,0,212820590.5,234102649.5 + 11/10 02:00:00,52904069.39,0,64475184.58,0,21614.05786,32256.0366,311311594,0,141880393.7,0 + 11/10 03:00:00,443296891,0,614542466.2,0,21534.52267,32137.34116,1251058067,0,141880393.7,0 + 11/10 04:00:00,468436619.6,0,659492032.4,0,21590.0852,32220.26067,1321645897,0,141880393.7,0 + 11/10 05:00:00,464045251.4,0,650841591.9,0,21590.0852,32220.26067,1308604088,0,141880393.7,0 + 11/10 06:00:00,463667062.8,0,648452998.8,0,21614.05786,32256.0366,1306052402,0,141880393.7,0 + 11/10 07:00:00,422787865.1,0,585706655.3,0,21590.0852,32220.26067,1202211766,0,141880393.7,156068433 + 11/10 08:00:00,573104260.9,0,783486182.3,0,21614.05786,32256.0366,1550522783,0,567521574.6,390171082.6 + 11/10 09:00:00,630392236.1,0,853671297.3,0,86456.23145,129024.1464,2259792894,0,567521574.6,390171082.6 + 11/10 10:00:00,631454758.3,0,887103727.4,0,129850.5319,193784.2277,2683643620,0,283760787.3,0 + 11/10 11:00:00,644519708.1,0,907772214.1,0,129983.6315,193982.8607,2718571294,0,283760787.3,0 + 11/10 12:00:00,655294686,0,916947600,0,86757.89212,129474.3338,2350678299,0,283760787.3,0 + 11/10 13:00:00,645727875.9,0,903613073.5,0,86757.89212,129474.3338,2327776963,0,283760787.3,0 + 11/10 14:00:00,643488237.4,0,898768080.4,0,130282.8899,194429.4631,2711220788,0,283760787.3,0 + 11/10 15:00:00,660786642.7,0,922012738.6,0,173515.7842,258948.6677,3139671408,0,283760787.3,0 + 11/10 16:00:00,674107325.7,0,940217829.1,0,216894.7303,323685.8346,3560415188,0,283760787.3,0 + 11/10 17:00:00,664416155.1,0,922965879.4,0,260273.6763,388423.0015,3922690075,0,354700984.2,0 + 11/10 18:00:00,703697933.1,0,980776770.3,0,303652.6224,453160.1685,4409000750,0,141880393.7,0 + 11/10 19:00:00,513156529.7,0,694680166.7,0,173311.5087,258643.8143,2762875859,0,638461771.5,0 + 11/10 20:00:00,281432824.6,0,347668604.8,0,129983.6315,193982.8607,1795380802,0,638461771.5,702307948.6 + 11/10 21:00:00,313890543.1,0,395306100.4,0,86757.89212,129474.3338,1487632657,0,496581377.8,702307948.6 + 11/10 22:00:00,366575877.9,0,473804562.7,0,86655.75436,129321.9072,1617900022,0,354700984.2,702307948.6 + 11/10 23:00:00,401893454.1,0,526213218.2,0,86655.75436,129321.9072,1705626254,0,354700984.2,624273732.1 + 11/10 24:00:00,456761119.7,0,607912337,0,86655.75436,129321.9072,1842193038,0,354700984.2,468205299.1 + 11/11 01:00:00,586436411.1,0,801615228.7,0,43327.87718,64660.95358,1776811431,0,212820590.5,234102649.5 + 11/11 02:00:00,89305246.75,0,87205325.11,0,21663.93859,32330.47679,370890467.2,0,141880393.7,0 + 11/11 03:00:00,468166754.7,0,644184562.5,0,21663.93859,32330.47679,1306731213,0,141880393.7,0 + 11/11 04:00:00,473072252.8,0,652105251.1,0,21663.93859,32330.47679,1319557399,0,141880393.7,0 + 11/11 05:00:00,475104312.2,0,654437546.6,0,21663.93859,32330.47679,1323921754,0,141880393.7,0 + 11/11 06:00:00,476202588.6,0,655592290.7,0,21663.93859,32330.47679,1326174775,0,141880393.7,0 + 11/11 07:00:00,424684148.5,0,578215002.8,0,86655.75436,129321.9072,1780418733,0,141880393.7,156068433 + 11/11 08:00:00,560328342.4,0,761258269.1,0,347421.0397,518478.5682,4438825200,0,567521574.6,390171082.6 + 11/11 09:00:00,650748855.3,0,888857393.5,0,304574.4399,454535.8555,4272403312,0,567521574.6,390171082.6 + 11/11 10:00:00,622128478.6,0,862313024,0,218083.811,325460.3756,3441200575,0,283760787.3,0 + 11/11 11:00:00,481352449.1,0,700687662.8,0,174718.2565,260743.1937,2749701333,0,283760787.3,0 + 11/11 12:00:00,324514355,0,542432103.2,0,87567.54766,130682.6344,1652647114,0,283760787.3,0 + 11/11 13:00:00,234259543.4,0,439591747.6,0,87603.07075,130735.6478,1459870678,0,283760787.3,0 + 11/11 14:00:00,284871732.8,0,436796282.6,0,87603.07075,130735.6478,1507687402,0,283760787.3,0 + 11/11 15:00:00,325090162.9,0,443724990.2,0,131351.3215,196023.9517,1947366136,0,283760787.3,0 + 11/11 16:00:00,397848141.8,0,515574854.6,0,218800.7298,326530.2792,2876614629,0,283760787.3,0 + 11/11 17:00:00,442773943.5,0,614098543.7,0,218692.6663,326369.0091,3019094518,0,354700984.2,0 + 11/11 18:00:00,488702606.6,0,681965083.4,0,306169.7328,456916.6127,3917778534,0,141880393.7,0 + 11/11 19:00:00,256738094.7,0,333240142.4,0,306169.7328,456916.6127,3337089081,0,638461771.5,0 + 11/11 20:00:00,26959098.95,0,2286180.069,0,174954.133,261095.2073,1599022904,0,638461771.5,702307948.6 + 11/11 21:00:00,81739417.31,0,60371545.76,0,174841.1936,260926.6606,1710875238,0,496581377.8,702307948.6 + 11/11 22:00:00,149797436.4,0,168796407.6,0,87359.12823,130371.5968,1102424454,0,354700984.2,702307948.6 + 11/11 23:00:00,187149890.5,0,223147156,0,87359.12823,130371.5968,1194127657,0,354700984.2,624273732.1 + 11/11 24:00:00,243942757.6,0,306551746.1,0,43679.56412,65185.79842,942409808.9,0,354700984.2,468205299.1 + 11/12 01:00:00,383903106.5,0,514403322.7,0,43652.05057,65144.7382,1289974869,0,212820590.5,234102649.5 + 11/12 02:00:00,9931761.421,0,0,0,21826.02528,32572.3691,205765981.2,0,141880393.7,0 + 11/12 03:00:00,222027244.4,0,263774991.7,0,21826.02528,32572.3691,681636455.9,0,141880393.7,0 + 11/12 04:00:00,299964980.9,0,406521955.6,0,21808.3811,32546.03756,902162843.8,0,141880393.7,0 + 11/12 05:00:00,311448468.5,0,422087681.1,0,21808.3811,32546.03756,929212056.8,0,141880393.7,0 + 11/12 06:00:00,305403421.1,0,412078152.5,0,21826.02528,32572.3691,913315793.5,0,141880393.7,0 + 11/12 07:00:00,238960296.1,0,305461876,0,87304.10114,130289.4764,1327759051,0,141880393.7,156068433 + 11/12 08:00:00,226240503.9,0,329201474.3,0,349908.266,522190.4145,3694997228,0,567521574.6,390171082.6 + 11/12 09:00:00,283801756.5,0,260798423.9,0,306486.4168,457389.2205,3294552475,0,567521574.6,390171082.6 + 11/12 10:00:00,328530007.8,0,452674567.4,0,219102.6442,326980.8453,2747105138,0,283760787.3,0 + 11/12 11:00:00,369092463.6,0,507315518.3,0,175282.1154,261584.6763,2449128432,0,283760787.3,0 + 11/12 12:00:00,353154081.6,0,486515984,0,87668.83723,130833.7953,1626279543,0,283760787.3,0 + 11/12 13:00:00,318118141.3,0,447960385.3,0,87641.05768,130792.3381,1552438751,0,283760787.3,0 + 11/12 14:00:00,350580436.8,0,490729598.5,0,87567.54766,130682.6344,1627010691,0,283760787.3,0 + 11/12 15:00:00,391640035.3,0,543119710.9,0,131351.3215,196023.9517,2113310729,0,283760787.3,0 + 11/12 16:00:00,422374089.6,0,584235988.7,0,218918.8691,326706.5861,2970861717,0,283760787.3,0 + 11/12 17:00:00,427306922,0,587882484.8,0,218800.7298,326530.2792,2978381039,0,354700984.2,0 + 11/12 18:00:00,474195632.3,0,656477056.6,0,306321.0217,457142.3908,3879140974,0,141880393.7,0 + 11/12 19:00:00,231812395,0,293143984.8,0,306486.4168,457389.2205,3274908674,0,638461771.5,0 + 11/12 20:00:00,30167255.3,0,0,0,174841.1936,260926.6606,1598931530,0,638461771.5,702307948.6 + 11/12 21:00:00,100149593.8,0,88668804.41,0,174841.1936,260926.6606,1757582673,0,496581377.8,702307948.6 + 11/12 22:00:00,157642160,0,175315188.6,0,87420.59679,130463.3303,1117339486,0,354700984.2,702307948.6 + 11/12 23:00:00,190204590.6,0,222556799.8,0,87420.59679,130463.3303,1197143528,0,354700984.2,624273732.1 + 11/12 24:00:00,246647475.7,0,305855075.8,0,43710.2984,65231.66514,944693620.3,0,354700984.2,468205299.1 + 11/13 01:00:00,376528111.8,0,499142535.2,0,43710.2984,65231.66514,1267861716,0,212820590.5,234102649.5 + 11/13 02:00:00,10140651.08,0,0,0,21839.78206,32592.89921,206098303.6,0,141880393.7,0 + 11/13 03:00:00,221741111.1,0,257203124.3,0,21839.78206,32592.89921,674901887.9,0,141880393.7,0 + 11/13 04:00:00,286498476.8,0,383587719.8,0,21839.78206,32592.89921,866043849.2,0,141880393.7,0 + 11/13 05:00:00,289982463,0,387769809.6,0,21839.78206,32592.89921,873709925.1,0,141880393.7,0 + 11/13 06:00:00,292839643.3,0,391202313.5,0,21839.78206,32592.89921,879999609.3,0,141880393.7,0 + 11/13 07:00:00,229286886.8,0,295932105,0,87420.59679,130463.3303,1309601129,0,141880393.7,156068433 + 11/13 08:00:00,362576820.3,0,481552915.3,0,350081.1676,522448.4467,3985236347,0,567521574.6,390171082.6 + 11/13 09:00:00,487760138.5,0,674966490,0,306321.0217,457142.3908,3911194914,0,567521574.6,390171082.6 + 11/13 10:00:00,461451277.5,0,631787407.8,0,218918.8691,326706.5861,3057490324,0,283760787.3,0 + 11/13 11:00:00,451793838.2,0,622087838.4,0,175040.5838,261224.2233,2644434982,0,283760787.3,0 + 11/13 12:00:00,448682712.7,0,615318336.5,0,87603.07075,130735.6478,1850020436,0,283760787.3,0 + 11/13 13:00:00,455867981.6,0,628026858.4,0,87477.0665,130547.6036,1868783652,0,283760787.3,0 + 11/13 14:00:00,501612083.6,0,696239049.9,0,87304.10114,130289.4764,1981188013,0,283760787.3,0 + 11/13 15:00:00,556254176,0,772417273.5,0,130850.2866,195276.2254,2502726893,0,283760787.3,0 + 11/13 16:00:00,568023009.4,0,785658741.2,0,218397.8206,325928.9921,3313258276,0,283760787.3,0 + 11/13 17:00:00,560511478.8,0,771020345.5,0,218260.2528,325723.691,3289874022,0,354700984.2,0 + 11/13 18:00:00,618472745.7,0,856388912.4,0,305317.3355,455644.5259,4214324359,0,141880393.7,0 + 11/13 19:00:00,388880644.4,0,511721102.6,0,305317.3355,455644.5259,3640064448,0,638461771.5,0 + 11/13 20:00:00,157464006.9,0,166060407.7,0,174341.8804,260181.5037,1887808597,0,638461771.5,702307948.6 + 11/13 21:00:00,194544602.2,0,221180034.5,0,174467.0488,260368.3005,1981131894,0,496581377.8,702307948.6 + 11/13 22:00:00,243100317.5,0,293686180,0,87233.52442,130184.1503,1319490126,0,354700984.2,702307948.6 + 11/13 23:00:00,251362933.7,0,306157954.6,0,87359.12823,130371.5968,1341351499,0,354700984.2,624273732.1 + 11/13 24:00:00,295013092,0,371933838.6,0,43652.05057,65144.7382,1058615370,0,354700984.2,468205299.1 + 11/14 01:00:00,415215463.8,0,552364851.3,0,43679.56412,65185.79842,1359495620,0,212820590.5,234102649.5 + 11/14 02:00:00,22248142.46,0,0,0,21839.78206,32592.89921,218205795,0,141880393.7,0 + 11/14 03:00:00,245895884.7,0,292832840,0,21826.02528,32572.3691,734562944.5,0,141880393.7,0 + 11/14 04:00:00,304034053.4,0,408688222.1,0,21826.02528,32572.3691,908556495.2,0,141880393.7,0 + 11/14 05:00:00,304314960.7,0,408691988.3,0,21826.02528,32572.3691,908841168.8,0,141880393.7,0 + 11/14 06:00:00,296046164.3,0,396240872.6,0,21839.78206,32592.89921,888244689.5,0,141880393.7,0 + 11/14 07:00:00,245360527.6,0,320608094.4,0,87304.10114,130289.4764,1349305501,0,141880393.7,156068433 + 11/14 08:00:00,406559457.5,0,550709107.6,0,349216.4046,521157.9056,4090616082,0,567521574.6,390171082.6 + 11/14 09:00:00,503026049.6,0,702912335,0,305564.354,456013.1674,3947617461,0,567521574.6,390171082.6 + 11/14 10:00:00,486144310.5,0,679606910.2,0,218083.811,325460.3756,3122510293,0,283760787.3,0 + 11/14 11:00:00,448608865.9,0,640719108.3,0,174608.2023,260578.9528,2656001732,0,283760787.3,0 + 11/14 12:00:00,456327023,0,650786658,0,87359.12823,130371.5968,1890944291,0,283760787.3,0 + 11/14 13:00:00,476544010.5,0,671115937.9,0,87420.59679,130463.3303,1932042086,0,283760787.3,0 + 11/14 14:00:00,493225183.9,0,685466544.6,0,87477.0665,130547.6036,1963580541,0,283760787.3,0 + 11/14 15:00:00,523542754.3,0,720500693.4,0,131280.4379,195918.1675,2421958427,0,283760787.3,0 + 11/14 16:00:00,508101389.8,0,696700732.5,0,218918.8691,326706.5861,3169053761,0,283760787.3,0 + 11/14 17:00:00,473559092.1,0,644992224.1,0,218918.8691,326706.5861,3082802955,0,354700984.2,0 + 11/14 18:00:00,521237966.4,0,716574106.7,0,306321.0217,457142.3908,3986280358,0,141880393.7,0 + 11/14 19:00:00,318851417.5,0,413449686.4,0,305756.9488,456300.5889,3475708240,0,638461771.5,0 + 11/14 20:00:00,112454111.2,0,104584088.8,0,174608.2023,260578.9528,1783711958,0,638461771.5,702307948.6 + 11/14 21:00:00,169231373.4,0,187494926.6,0,174467.0488,260368.3005,1922133558,0,496581377.8,702307948.6 + 11/14 22:00:00,218283553.8,0,259890100.5,0,87304.10114,130289.4764,1261510533,0,354700984.2,702307948.6 + 11/14 23:00:00,240136241.2,0,292198217.9,0,87304.10114,130289.4764,1315671338,0,354700984.2,624273732.1 + 11/14 24:00:00,307239779.7,0,391742040.2,0,43616.76221,65092.07513,1090333634,0,354700984.2,468205299.1 + 11/15 01:00:00,456987032.1,0,614347141.1,0,43585.4701,65045.37591,1462405219,0,212820590.5,234102649.5 + 11/15 02:00:00,14875933.44,0,0,0,21772.83431,32492.98881,210232896.7,0,141880393.7,0 + 11/15 03:00:00,359161386.2,0,476678876.3,0,21733.18294,32433.81455,1030841453,0,141880393.7,0 + 11/15 04:00:00,403821282.2,0,552136303.4,0,21733.18294,32433.81455,1150958777,0,141880393.7,0 + 11/15 05:00:00,415987268.1,0,569341889.5,0,21713.81498,32404.91051,1180156569,0,141880393.7,0 + 11/15 06:00:00,424294064.3,0,580975169.6,0,21713.81498,32404.91051,1200096646,0,141880393.7,0 + 11/15 07:00:00,373616113.1,0,504687819.5,0,86855.25993,129619.642,1657613580,0,141880393.7,156068433 + 11/15 08:00:00,520406712.8,0,723225086.6,0,347421.0397,518478.5682,4360870388,0,567521574.6,390171082.6 + 11/15 09:00:00,639728932.1,0,872802192.1,0,303993.4098,453668.7472,4240114889,0,567521574.6,390171082.6 + 11/15 10:00:00,639296129,0,894711701.6,0,217331.8294,324338.1455,3484019740,0,283760787.3,0 + 11/15 11:00:00,532885289.4,0,807350691.8,0,173865.4635,259470.5164,2900245509,0,283760787.3,0 + 11/15 12:00:00,398344607,0,711252880.2,0,87021.26854,129867.3873,1890396648,0,283760787.3,0 + 11/15 13:00:00,328776129.9,0,625024039,0,87170.94019,130090.7518,1735942260,0,283760787.3,0 + 11/15 14:00:00,350308415.7,0,576172470.1,0,87170.94019,130090.7518,1708622977,0,283760787.3,0 + 11/15 15:00:00,438500171.4,0,599215033.4,0,130637.0059,194957.9329,2209856984,0,283760787.3,0 + 11/15 16:00:00,556656444.7,0,743435327.9,0,217553.1713,324668.4682,3252089675,0,283760787.3,0 + 11/15 17:00:00,608035720.7,0,853314772.3,0,217331.8294,324338.1455,3411362403,0,354700984.2,0 + 11/15 18:00:00,659982205.5,0,928842467.9,0,304264.5612,454073.4037,4318841347,0,141880393.7,0 + 11/15 19:00:00,437706411.8,0,593366598.8,0,303993.4098,453668.7472,3758656775,0,638461771.5,0 + 11/15 20:00:00,213647401.6,0,256242237.3,0,173710.5199,259239.2841,2028508933,0,638461771.5,702307948.6 + 11/15 21:00:00,262979466.2,0,327141766.2,0,173710.5199,259239.2841,2148740527,0,496581377.8,702307948.6 + 11/15 22:00:00,328639561.7,0,422990766.6,0,86757.89212,129474.3338,1530066342,0,354700984.2,702307948.6 + 11/15 23:00:00,367795464.7,0,479762735.1,0,86757.89212,129474.3338,1625994213,0,354700984.2,624273732.1 + 11/15 24:00:00,424720708.7,0,563518974.2,0,43378.94606,64737.16692,1377457690,0,354700984.2,468205299.1 + 11/16 01:00:00,558207672.5,0,761951760.8,0,43378.94606,64737.16692,1709377440,0,212820590.5,234102649.5 + 11/16 02:00:00,65012352.89,0,75378231.94,0,21689.47303,32368.58346,334999588.2,0,141880393.7,0 + 11/16 03:00:00,459362965.2,0,631547978.1,0,21663.93859,32330.47679,1285290839,0,141880393.7,0 + 11/16 04:00:00,462152066.6,0,636249977,0,21689.47303,32368.58346,1293011047,0,141880393.7,0 + 11/16 05:00:00,459516002.5,0,631174683.4,0,21689.47303,32368.58346,1285299689,0,141880393.7,0 + 11/16 06:00:00,472383849.7,0,649440956.4,0,21663.93859,32330.47679,1316204702,0,141880393.7,0 + 11/16 07:00:00,415882454.9,0,562969905,0,21689.47303,32368.58346,1173461363,0,141880393.7,156068433 + 11/16 08:00:00,551950898,0,745116253.4,0,86757.89212,129474.3338,2075503165,0,567521574.6,390171082.6 + 11/16 09:00:00,640787239.8,0,872758757.8,0,216894.7303,323685.8346,3459636031,0,567521574.6,390171082.6 + 11/16 10:00:00,568158875.6,0,794928062.3,0,217331.8294,324338.1455,3313098847,0,283760787.3,0 + 11/16 11:00:00,504409702,0,735919272.2,0,217553.1713,324668.4682,3192326876,0,283760787.3,0 + 11/16 12:00:00,416820417.4,0,659272858.8,0,130756.4103,195136.1277,2249306413,0,283760787.3,0 + 11/16 13:00:00,269071322.5,0,545527586.3,0,130637.0059,194957.9329,1986740688,0,283760787.3,0 + 11/16 14:00:00,360905244.6,0,565804950.1,0,130756.4103,195136.1277,2099923332,0,283760787.3,0 + 11/16 15:00:00,369657253.8,0,485400191.3,0,130637.0059,194957.9329,2027199225,0,283760787.3,0 + 11/16 16:00:00,476540363.3,0,577822337,0,304574.4399,454535.8555,3787159764,0,283760787.3,0 + 11/16 17:00:00,584941464.3,0,813649781.9,0,390410.5145,582634.5023,4901553307,0,354700984.2,0 + 11/16 18:00:00,661741501.1,0,928956728.8,0,303295.1403,452626.6751,4312016765,0,141880393.7,0 + 11/16 19:00:00,486188563.1,0,663430675,0,302984.5745,452163.1979,3868151219,0,638461771.5,0 + 11/16 20:00:00,274822202.2,0,345277688.1,0,259368.6943,387072.4392,2947287971,0,638461771.5,702307948.6 + 11/16 21:00:00,331735352.1,0,427437555.9,0,216140.5786,322560.366,2698496308,0,496581377.8,702307948.6 + 11/16 22:00:00,387303538.9,0,508821884.9,0,172912.4629,258048.2928,2447584144,0,354700984.2,702307948.6 + 11/16 23:00:00,409135928.7,0,540131955.7,0,129850.5319,193784.2277,2114353019,0,354700984.2,624273732.1 + 11/16 24:00:00,460119542.5,0,615425364.1,0,86567.02127,129189.4851,1852268330,0,354700984.2,468205299.1 + 11/17 01:00:00,592294610,0,812260561.3,0,43283.51064,64594.74256,1792916883,0,212820590.5,234102649.5 + 11/17 02:00:00,80808433.85,0,76606374.48,0,21689.47303,32368.58346,352023811.7,0,141880393.7,0 + 11/17 03:00:00,452418895.1,0,620045541.3,0,21689.47303,32368.58346,1267073440,0,141880393.7,0 + 11/17 04:00:00,468780607.7,0,646298130.9,0,21663.93859,32330.47679,1309458634,0,141880393.7,0 + 11/17 05:00:00,508033626.8,0,703121606.6,0,21590.0852,32220.26067,1404872479,0,141880393.7,0 + 11/17 06:00:00,541620017.3,0,751605288.7,0,21560.25688,32175.74597,1486674916,0,141880393.7,0 + 11/17 07:00:00,499212474.4,0,687004715.3,0,21560.25688,32175.74597,1379666800,0,141880393.7,156068433 + 11/17 08:00:00,598483135.3,0,779101773,0,21590.0852,32220.26067,1571302153,0,567521574.6,390171082.6 + 11/17 09:00:00,601910278.6,0,797260755.4,0,86655.75436,129321.9072,2176690616,0,567521574.6,390171082.6 + 11/17 10:00:00,375682731.9,0,556366947.7,0,130399.0976,194602.8873,2102056825,0,283760787.3,0 + 11/17 11:00:00,241188427,0,498368226.3,0,130531.9028,194801.0809,1910755395,0,283760787.3,0 + 11/17 12:00:00,366623408.6,0,628104892.5,0,87021.26854,129867.3873,1775527462,0,283760787.3,0 + 11/17 13:00:00,437210291.3,0,674592562.9,0,87091.33724,129971.9553,1893230707,0,283760787.3,0 + 11/17 14:00:00,534252604.5,0,765393107.7,0,130399.0976,194602.8873,2469652858,0,283760787.3,0 + 11/17 15:00:00,580062866.8,0,824830870.4,0,173710.5199,259239.2841,2963513031,0,283760787.3,0 + 11/17 16:00:00,603572475.5,0,854889473,0,217138.1498,324049.1051,3406736066,0,283760787.3,0 + 11/17 17:00:00,591009593.7,0,832520669.1,0,260565.7798,388858.9261,3761459204,0,354700984.2,0 + 11/17 18:00:00,634173395.6,0,894112468,0,303993.4098,453668.7472,4255869628,0,141880393.7,0 + 11/17 19:00:00,438531895,0,598344563.8,0,173710.5199,259239.2841,2595495753,0,638461771.5,0 + 11/17 20:00:00,206569989.5,0,249723583.5,0,130282.8899,194429.4631,1625258044,0,638461771.5,702307948.6 + 11/17 21:00:00,244575479.9,0,303933878.4,0,86932.73176,129735.2582,1328514122,0,496581377.8,702307948.6 + 11/17 22:00:00,291045392.5,0,371699733.4,0,86932.73176,129735.2582,1442749890,0,354700984.2,702307948.6 + 11/17 23:00:00,320925016.4,0,414965222.2,0,86932.73176,129735.2582,1515895003,0,354700984.2,624273732.1 + 11/17 24:00:00,357703737.7,0,469038419.6,0,87091.33724,129971.9553,1608170010,0,354700984.2,468205299.1 + 11/18 01:00:00,455705539.9,0,615199629.8,0,43616.76221,65092.07513,1462256984,0,212820590.5,234102649.5 + 11/18 02:00:00,43134564.56,0,46242917.89,0,21808.3811,32546.03756,285053389.7,0,141880393.7,0 + 11/18 03:00:00,366805852.9,0,498284695.2,0,21808.3811,32546.03756,1060766455,0,141880393.7,0 + 11/18 04:00:00,329761546.2,0,446875072.9,0,21808.3811,32546.03756,972312526.3,0,141880393.7,0 + 11/18 05:00:00,330086829.8,0,446545523.9,0,21808.3811,32546.03756,972308260.9,0,141880393.7,0 + 11/18 06:00:00,330221311.5,0,446206217.7,0,21808.3811,32546.03756,972103436.4,0,141880393.7,0 + 11/18 07:00:00,283375760.4,0,375290152.1,0,87233.52442,130184.1503,1441369541,0,141880393.7,156068433 + 11/18 08:00:00,441796347.7,0,606963391.7,0,349216.4046,521157.9056,4182107256,0,567521574.6,390171082.6 + 11/18 09:00:00,571889096.9,0,778363161.5,0,305564.354,456013.1674,4091931335,0,567521574.6,390171082.6 + 11/18 10:00:00,547987543.8,0,757348862.8,0,218397.8206,325928.9921,3264912932,0,283760787.3,0 + 11/18 11:00:00,461699145.1,0,668311850.2,0,174841.1936,260926.6606,2698775270,0,283760787.3,0 + 11/18 12:00:00,337910897.1,0,559030404.7,0,87477.0665,130547.6036,1681830114,0,283760787.3,0 + 11/18 13:00:00,328954082.4,0,542926224.7,0,87603.07075,130735.6478,1657899694,0,283760787.3,0 + 11/18 14:00:00,307698132,0,478866574.9,0,87567.54766,130682.6344,1572265362,0,283760787.3,0 + 11/18 15:00:00,380915429,0,519309646.9,0,131351.3215,196023.9517,2078776059,0,283760787.3,0 + 11/18 16:00:00,465051646.1,0,615640958.5,0,218551.492,326158.3257,3041647948,0,283760787.3,0 + 11/18 17:00:00,549291057.6,0,761509552.6,0,217728.3431,324929.8881,3264370243,0,354700984.2,0 + 11/18 18:00:00,608899354.5,0,848852454.9,0,305098.2907,455317.6314,4195249129,0,141880393.7,0 + 11/18 19:00:00,380241781.3,0,505776716.5,0,304819.6803,454901.8434,3621015983,0,638461771.5,0 + 11/18 20:00:00,143687548.1,0,152070594.8,0,174341.8804,260181.5037,1860042325,0,638461771.5,702307948.6 + 11/18 21:00:00,192100189.3,0,222831316.1,0,174182.6745,259943.9105,1977787211,0,496581377.8,702307948.6 + 11/18 22:00:00,278287051.8,0,350043647.2,0,86855.25993,129619.642,1407640346,0,354700984.2,702307948.6 + 11/18 23:00:00,338787931.2,0,438988697.8,0,86757.89212,129474.3338,1556212642,0,354700984.2,624273732.1 + 11/18 24:00:00,404734023.1,0,536178413.2,0,43378.94606,64737.16692,1330130443,0,354700984.2,468205299.1 + 11/19 01:00:00,539601074.3,0,736681689.8,0,43378.94606,64737.16692,1665500771,0,212820590.5,234102649.5 + 11/19 02:00:00,61925830.3,0,73861088.86,0,21663.93859,32330.47679,330166814.5,0,141880393.7,0 + 11/19 03:00:00,439088446.3,0,600704333,0,21663.93859,32330.47679,1234172675,0,141880393.7,0 + 11/19 04:00:00,482619676.4,0,668016007.3,0,21614.05786,32256.0366,1344568024,0,141880393.7,0 + 11/19 05:00:00,510208600.4,0,707214936.7,0,21590.0852,32220.26067,1411140782,0,141880393.7,0 + 11/19 06:00:00,500310079.8,0,691430783.5,0,21641.75532,32297.37128,1385921719,0,141880393.7,0 + 11/19 07:00:00,430888163.9,0,586940527.9,0,86655.75436,129321.9072,1795348273,0,141880393.7,156068433 + 11/19 08:00:00,573035531.9,0,765052837.7,0,346623.0175,517287.6287,4448166696,0,567521574.6,390171082.6 + 11/19 09:00:00,676474451,0,921162307.6,0,303295.1403,452626.6751,4318955294,0,567521574.6,390171082.6 + 11/19 10:00:00,686856417.2,0,959980779.4,0,216894.7303,323685.8346,3592927230,0,283760787.3,0 + 11/19 11:00:00,664771411.4,0,950638972.1,0,173710.5199,259239.2841,3174029678,0,283760787.3,0 + 11/19 12:00:00,617142181.3,0,914771347.6,0,86932.73176,129735.2582,2311918293,0,283760787.3,0 + 11/19 13:00:00,498510512.8,0,791083059,0,87091.33724,129971.9553,2071021425,0,283760787.3,0 + 11/19 14:00:00,397859161.9,0,632828810.2,0,87233.52442,130184.1503,1813391601,0,283760787.3,0 + 11/19 15:00:00,373506166.6,0,496604655.7,0,130850.2866,195276.2254,2044166266,0,283760787.3,0 + 11/19 16:00:00,524177390.3,0,660772337.7,0,217331.8294,324338.1455,3134961638,0,283760787.3,0 + 11/19 17:00:00,629341159.7,0,876770887.6,0,217138.1498,324049.1051,3454386165,0,354700984.2,0 + 11/19 18:00:00,685476818.8,0,958755855.5,0,303652.6224,453160.1685,4368758721,0,141880393.7,0 + 11/19 19:00:00,448536743.3,0,603291601.4,0,303993.4098,453668.7472,3779412110,0,638461771.5,0 + 11/19 20:00:00,220295010.2,0,261850299.1,0,173515.7842,258948.6677,2039017336,0,638461771.5,702307948.6 + 11/19 21:00:00,293370953.5,0,368930123.2,0,173134.0425,258378.9702,2215747923,0,496581377.8,702307948.6 + 11/19 22:00:00,359401625.3,0,466312197.8,0,86567.02127,129189.4851,1602437246,0,354700984.2,702307948.6 + 11/19 23:00:00,392624461.7,0,514845818.7,0,86567.02127,129189.4851,1684193703,0,354700984.2,624273732.1 + 11/19 24:00:00,460207518.3,0,614555350,0,43228.11572,64512.0732,1462627548,0,354700984.2,468205299.1 + 11/20 01:00:00,608328459.9,0,835158341.4,0,43180.17041,64440.52135,1830921292,0,212820590.5,234102649.5 + 11/20 02:00:00,142843290.2,0,176813515.4,0,21534.52267,32137.34116,512875515.3,0,141880393.7,0 + 11/20 03:00:00,549325000.4,0,766871275.7,0,21502.59811,32089.69811,1509128542,0,141880393.7,0 + 11/20 04:00:00,568708749.9,0,792695036.1,0,21502.59811,32089.69811,1554336052,0,141880393.7,0 + 11/20 05:00:00,564684044.4,0,785198823.5,0,21534.52267,32137.34116,1543101578,0,141880393.7,0 + 11/20 06:00:00,543820372,0,753083829.9,0,21590.0852,32220.26067,1490621447,0,141880393.7,0 + 11/20 07:00:00,473796825.9,0,647785621.3,0,86456.23145,129024.1464,1897311807,0,141880393.7,156068433 + 11/20 08:00:00,579714163.7,0,761483218.5,0,346623.0175,517287.6287,4451275708,0,567521574.6,390171082.6 + 11/20 09:00:00,677382190,0,930519442.8,0,303652.6224,453160.1685,4332427680,0,567521574.6,390171082.6 + 11/20 10:00:00,696891108.4,0,970093003.7,0,216894.7303,323685.8346,3613074146,0,283760787.3,0 + 11/20 11:00:00,686590664.4,0,957119944.7,0,173710.5199,259239.2841,3202329903,0,283760787.3,0 + 11/20 12:00:00,684816573.9,0,953872034.3,0,86855.25993,129619.642,2417998255,0,283760787.3,0 + 11/20 13:00:00,649295961.2,0,910839507.8,0,86855.25993,129619.642,2339445116,0,283760787.3,0 + 11/20 14:00:00,656033068,0,917863305.3,0,86855.25993,129619.642,2353206020,0,283760787.3,0 + 11/20 15:00:00,677046489.7,0,944353851,0,130282.8899,194429.4631,2790364811,0,283760787.3,0 + 11/20 16:00:00,708693321.8,0,987635818.9,0,216894.7303,323685.8346,3642419174,0,283760787.3,0 + 11/20 17:00:00,702375425.5,0,975562359.1,0,216894.7303,323685.8346,3624027818,0,354700984.2,0 + 11/20 18:00:00,752103013.2,0,1048970114,0,303295.1403,452626.6751,4522391663,0,141880393.7,0 + 11/20 19:00:00,521937270.3,0,703733709.6,0,303295.1403,452626.6751,3946989515,0,638461771.5,0 + 11/20 20:00:00,285241599.8,0,349165478,0,173311.5087,258643.8143,2189446241,0,638461771.5,702307948.6 + 11/20 21:00:00,329740268.7,0,414394832.9,0,173311.5087,258643.8143,2299174265,0,496581377.8,702307948.6 + 11/20 22:00:00,380002501.7,0,489012390.6,0,86655.75436,129321.9072,1646534474,0,354700984.2,702307948.6 + 11/20 23:00:00,408601104.8,0,531363222.5,0,86655.75436,129321.9072,1717483909,0,354700984.2,624273732.1 + 11/20 24:00:00,463165538.1,0,612514957.2,0,43327.87718,64660.95358,1464440286,0,354700984.2,468205299.1 + 11/21 01:00:00,592848636.5,0,806157274.4,0,43327.87718,64660.95358,1787765702,0,212820590.5,234102649.5 + 11/21 02:00:00,114135000.8,0,112210796.8,0,21663.93859,32330.47679,420725692.9,0,141880393.7,0 + 11/21 03:00:00,486731836.5,0,671342584,0,21641.75532,32297.37128,1352255276,0,141880393.7,0 + 11/21 04:00:00,510336131.2,0,702267344.9,0,21614.05786,32256.0366,1406535816,0,141880393.7,0 + 11/21 05:00:00,521229236.8,0,717069833.1,0,21614.05786,32256.0366,1432231410,0,141880393.7,0 + 11/21 06:00:00,534360063.3,0,735399956.3,0,21590.0852,32220.26067,1463477265,0,141880393.7,0 + 11/21 07:00:00,491213397.4,0,669558593.2,0,86360.34081,128881.0427,1935640971,0,141880393.7,156068433 + 11/21 08:00:00,630892663.8,0,859360836,0,344964.1101,514811.9355,4585447264,0,567521574.6,390171082.6 + 11/21 09:00:00,609230793.3,0,851798801.4,0,301843.5964,450460.4436,4169324138,0,567521574.6,390171082.6 + 11/21 10:00:00,822610917.1,0,1143940092,0,215025.9811,320896.9811,3895873673,0,283760787.3,0 + 11/21 11:00:00,831542919.2,0,1168555846,0,171801.0577,256389.672,3541585393,0,283760787.3,0 + 11/21 12:00:00,845319540.2,0,1191607894,0,85764.59395,127991.9717,2806451071,0,283760787.3,0 + 11/21 13:00:00,871173182.1,0,1227984209,0,85624.23218,127782.5009,2867421630,0,283760787.3,0 + 11/21 14:00:00,895566615.1,0,1258424872,0,85624.23218,127782.5009,2922255726,0,283760787.3,0 + 11/21 15:00:00,921722381,0,1290745386,0,128436.3483,191673.7513,3364864126,0,283760787.3,0 + 11/21 16:00:00,951063400.8,0,1328985357,0,214060.5805,319456.2521,4200709355,0,283760787.3,0 + 11/21 17:00:00,931616921.5,0,1296858518,0,214411.4849,319979.9291,4152284530,0,354700984.2,0 + 11/21 18:00:00,965643620.9,0,1346856117,0,300176.0788,447971.9008,5005832464,0,141880393.7,0 + 11/21 19:00:00,714322047.7,0,971717595.7,0,300651.8511,448681.9261,4383641241,0,638461771.5,0 + 11/21 20:00:00,456345323.2,0,587242488.2,0,172020.7849,256717.5849,2587045943,0,638461771.5,702307948.6 + 11/21 21:00:00,492920109.8,0,642121653.2,0,172020.7849,256717.5849,2678499894,0,496581377.8,702307948.6 + 11/21 22:00:00,539995430.5,0,712928932.9,0,86010.39245,128358.7924,2024653429,0,354700984.2,702307948.6 + 11/21 23:00:00,575406035.2,0,765888622.9,0,85900.52887,128194.836,2112037972,0,354700984.2,624273732.1 + 11/21 24:00:00,646355353.3,0,871249554.9,0,42882.29697,63995.98583,1902366726,0,354700984.2,468205299.1 + 11/22 01:00:00,797144215.7,0,1095267506,0,42812.11609,63891.25043,2276543841,0,212820590.5,234102649.5 + 11/22 02:00:00,324673050.5,0,408252236.5,0,21406.05805,31945.62521,924991346.8,0,141880393.7,0 + 11/22 03:00:00,687898759.7,0,957206172,0,21406.05805,31945.62521,1837170991,0,141880393.7,0 + 11/22 04:00:00,699282582.8,0,968761040.7,0,21406.05805,31945.62521,1860109683,0,141880393.7,0 + 11/22 05:00:00,709295381,0,982853345.9,0,21375.97934,31900.73685,1883944905,0,141880393.7,0 + 11/22 06:00:00,766508258.1,0,1066534909,0,21193.83871,31628.91677,2023205087,0,141880393.7,0 + 11/22 07:00:00,736897974.5,0,1021361274,0,84939.15741,126760.1201,2520376648,0,141880393.7,156068433 + 11/22 08:00:00,609641166.4,0,827819339.6,0,340289.9924,507836.4516,4490715705,0,567521574.6,390171082.6 + 11/22 09:00:00,599118575.7,0,813965751.7,0,298744.4837,445835.4401,4093572053,0,567521574.6,390171082.6 + 11/22 10:00:00,586608726.7,0,853624349.1,0,214751.3222,320487.09,3367091360,0,283760787.3,0 + 11/22 11:00:00,430261173.8,0,804570244.5,0,172020.7849,256717.5849,2778289549,0,283760787.3,0 + 11/22 12:00:00,344884428.6,0,817990084.7,0,86010.39245,128358.7924,1934603579,0,283760787.3,0 + 11/22 13:00:00,383730290.8,0,833136246.8,0,86010.39245,128358.7924,1988595603,0,283760787.3,0 + 11/22 14:00:00,459027716.8,0,790038876.3,0,86138.09068,128549.3646,2021941432,0,283760787.3,0 + 11/22 15:00:00,600913761.2,0,881551469.1,0,129015.5887,192538.1887,2640058829,0,283760787.3,0 + 11/22 16:00:00,726718874,0,1047267250,0,214751.3222,320487.09,3700844408,0,283760787.3,0 + 11/22 17:00:00,767922200.3,0,1116018248,0,214411.4849,319979.9291,3807749539,0,354700984.2,0 + 11/22 18:00:00,825028183.9,0,1194182147,0,300176.0788,447971.9008,4712543057,0,141880393.7,0 + 11/22 19:00:00,598708419.5,0,850536041.4,0,300176.0788,447971.9008,4142577188,0,638461771.5,0 + 11/22 20:00:00,371373213.9,0,505857488,0,171529.1879,255983.9433,2416277974,0,638461771.5,702307948.6 + 11/22 21:00:00,444073044.3,0,609824817.9,0,171007.8347,255205.8948,2588267289,0,496581377.8,702307948.6 + 11/22 22:00:00,527109357,0,729997884.7,0,85355.56676,127381.5543,2022960878,0,354700984.2,702307948.6 + 11/22 23:00:00,561995359.7,0,778218446.3,0,85503.91737,127602.9474,2107398519,0,354700984.2,624273732.1 + 11/22 24:00:00,632288202.5,0,879109791.7,0,42677.78338,63690.77715,1894324812,0,354700984.2,468205299.1 + 11/23 01:00:00,780314756.9,0,1095985258,0,42677.78338,63690.77715,2259226833,0,212820590.5,234102649.5 + 11/23 02:00:00,310638931.3,0,409616527.5,0,21307.16634,31798.04281,911434211.7,0,141880393.7,0 + 11/23 03:00:00,731027200.5,0,1038492795,0,21193.83871,31628.91677,1959681915,0,141880393.7,0 + 11/23 04:00:00,758587691.7,0,1071832667,0,21234.78935,31690.03002,2020949708,0,141880393.7,0 + 11/23 05:00:00,776243648.4,0,1094247575,0,21193.83871,31628.91677,2060653143,0,141880393.7,0 + 11/23 06:00:00,783340973.6,0,1101598446,0,21234.78935,31690.03002,2075468770,0,141880393.7,0 + 11/23 07:00:00,733055084.8,0,1023973315,0,21234.78935,31690.03002,1947557750,0,141880393.7,156068433 + 11/23 08:00:00,667460724.8,0,899258583.3,0,84939.15741,126760.1201,2328836707,0,567521574.6,390171082.6 + 11/23 09:00:00,627345466.5,0,854298470.1,0,212681.2453,317397.7823,3389928436,0,567521574.6,390171082.6 + 11/23 10:00:00,609602979.1,0,898548490.1,0,213071.6634,317980.4281,3419938998,0,283760787.3,0 + 11/23 11:00:00,483247774.6,0,885717365.8,0,213388.9169,318453.8858,3283599230,0,283760787.3,0 + 11/23 12:00:00,516970125.1,0,928253952.9,0,128646.8909,191987.9575,2599509532,0,283760787.3,0 + 11/23 13:00:00,602269466.3,0,951632461.2,0,128850.7933,192292.254,2710016898,0,283760787.3,0 + 11/23 14:00:00,629293900.3,0,948052596.9,0,128850.7933,192292.254,2733461468,0,283760787.3,0 + 11/23 15:00:00,710862848.4,0,1022571893,0,129015.5887,192538.1887,2891028339,0,283760787.3,0 + 11/23 16:00:00,769195787.5,0,1096050513,0,300651.8511,448681.9261,4562847898,0,283760787.3,0 + 11/23 17:00:00,778616043.5,0,1108725282,0,386552.3799,576876.7621,5355686237,0,354700984.2,0 + 11/23 18:00:00,811054094.7,0,1154426539,0,301036.3736,449255.7735,4666532363,0,141880393.7,0 + 11/23 19:00:00,596019394.4,0,830807647.3,0,301483.3174,449922.7762,4131888979,0,638461771.5,0 + 11/23 20:00:00,355342862.1,0,468146563.2,0,258414.272,385648.0939,3142113943,0,638461771.5,702307948.6 + 11/23 21:00:00,400794357,0,533425457.9,0,215345.2267,321373.4116,2866406913,0,496581377.8,702307948.6 + 11/23 22:00:00,441201737.2,0,592149176.4,0,172482.0551,257405.9677,2580947796,0,354700984.2,702307948.6 + 11/23 23:00:00,465383062.9,0,627082218,0,129361.5413,193054.4758,2253162942,0,354700984.2,624273732.1 + 11/23 24:00:00,511112317.3,0,694268943.5,0,86360.34081,128881.0427,1980250241,0,354700984.2,468205299.1 + 11/24 01:00:00,627249956.5,0,867002681.1,0,43228.11572,64512.0732,1882117318,0,212820590.5,234102649.5 + 11/24 02:00:00,129309452.8,0,151550942.1,0,21614.05786,32256.0366,474792734.9,0,141880393.7,0 + 11/24 03:00:00,501052971.4,0,699435712.4,0,21614.05786,32256.0366,1394421024,0,141880393.7,0 + 11/24 04:00:00,522037932.7,0,726891519.2,0,21614.05786,32256.0366,1442861792,0,141880393.7,0 + 11/24 05:00:00,539660977.6,0,748262934.4,0,21614.05786,32256.0366,1481856252,0,141880393.7,0 + 11/24 06:00:00,539969321.8,0,744799634.2,0,21641.75532,32297.37128,1478949812,0,141880393.7,0 + 11/24 07:00:00,466263111.5,0,632724478.2,0,21689.47303,32368.58346,1293596593,0,141880393.7,156068433 + 11/24 08:00:00,581282685.4,0,776839948.5,0,21689.47303,32368.58346,1552731637,0,567521574.6,390171082.6 + 11/24 09:00:00,538824049.3,0,739081832.4,0,86655.75436,129321.9072,2055425463,0,567521574.6,390171082.6 + 11/24 10:00:00,701139554.7,0,971424394.2,0,130136.8382,194211.5008,2840217969,0,283760787.3,0 + 11/24 11:00:00,686890171.6,0,954155950,0,130136.8382,194211.5008,2808700142,0,283760787.3,0 + 11/24 12:00:00,690735471.9,0,958520494.2,0,86757.89212,129474.3338,2427691980,0,283760787.3,0 + 11/24 13:00:00,681927897.8,0,945172612.9,0,86855.25993,129619.642,2406410158,0,283760787.3,0 + 11/24 14:00:00,680323861.3,0,941900991.8,0,130282.8899,194429.4631,2791189324,0,283760787.3,0 + 11/24 15:00:00,690735638.6,0,955424306.3,0,173710.5199,259239.2841,3204779239,0,283760787.3,0 + 11/24 16:00:00,697673054,0,964459073.4,0,217138.1498,324049.1051,3610406245,0,283760787.3,0 + 11/24 17:00:00,676361692,0,932083874.8,0,260565.7798,388858.9261,3946374508,0,354700984.2,0 + 11/24 18:00:00,710540213.5,0,983200221.7,0,303993.4098,453668.7472,4421324200,0,141880393.7,0 + 11/24 19:00:00,506111977,0,677818709.8,0,173710.5199,259239.2841,2742549981,0,638461771.5,0 + 11/24 20:00:00,266208864.2,0,319519291.2,0,130282.8899,194429.4631,1754692626,0,638461771.5,702307948.6 + 11/24 21:00:00,307606102.8,0,380960583.3,0,86855.25993,129619.642,1467876333,0,496581377.8,702307948.6 + 11/24 22:00:00,355061391.6,0,452074757.1,0,86855.25993,129619.642,1586445796,0,354700984.2,702307948.6 + 11/24 23:00:00,381846045.8,0,492338157,0,86855.25993,129619.642,1653493850,0,354700984.2,624273732.1 + 11/24 24:00:00,429253614.6,0,563367352.8,0,86855.25993,129619.642,1771930615,0,354700984.2,468205299.1 + 11/25 01:00:00,551840444.2,0,747183516.4,0,43427.62997,64809.82102,1688678784,0,212820590.5,234102649.5 + 11/25 02:00:00,58766238.93,0,66717144.4,0,21713.81498,32404.91051,320310795.1,0,141880393.7,0 + 11/25 03:00:00,419776042.1,0,561029295.4,0,21713.81498,32404.91051,1175632749,0,141880393.7,0 + 11/25 04:00:00,447907780.1,0,613298607.1,0,21689.47303,32368.58346,1255815391,0,141880393.7,0 + 11/25 05:00:00,454547151,0,622587807.8,0,21689.47303,32368.58346,1271743962,0,141880393.7,0 + 11/25 06:00:00,455295120.6,0,623498508.6,0,21689.47303,32368.58346,1273402633,0,141880393.7,0 + 11/25 07:00:00,393924900.3,0,531513253.7,0,86855.25993,129619.642,1704747801,0,141880393.7,156068433 + 11/25 08:00:00,541360933.7,0,742150818.4,0,347421.0397,518478.5682,4400750341,0,567521574.6,390171082.6 + 11/25 09:00:00,674552815.6,0,925879099.7,0,303652.6224,453160.1685,4324957962,0,567521574.6,390171082.6 + 11/25 10:00:00,712332846.6,0,990462402.3,0,216894.7303,323685.8346,3648885283,0,283760787.3,0 + 11/25 11:00:00,706406698.2,0,986705312.2,0,173311.5087,258643.8143,3248151173,0,283760787.3,0 + 11/25 12:00:00,717021750.3,0,1001934433,0,86655.75436,129321.9072,2496475765,0,283760787.3,0 + 11/25 13:00:00,719763876.5,0,1007682432,0,86567.02127,129189.4851,2504169732,0,283760787.3,0 + 11/25 14:00:00,741946991.5,0,1039848314,0,86456.23145,129024.1464,2557524666,0,283760787.3,0 + 11/25 15:00:00,784060411.4,0,1097370365,0,129540.5112,193321.564,3043734247,0,283760787.3,0 + 11/25 16:00:00,816993726.4,0,1142763814,0,215602.5688,321757.4597,3894253643,0,283760787.3,0 + 11/25 17:00:00,810261598.9,0,1130343485,0,215602.5688,321757.4597,3875101187,0,354700984.2,0 + 11/25 18:00:00,863111694.4,0,1207224261,0,301483.3174,449922.7762,4775397892,0,141880393.7,0 + 11/25 19:00:00,644924006.1,0,879769430.9,0,301036.3736,449255.7735,4225745167,0,638461771.5,0 + 11/25 20:00:00,416064231.7,0,536841138.3,0,172020.7849,256717.5849,2496363501,0,638461771.5,702307948.6 + 11/25 21:00:00,463569103.6,0,606274751.1,0,172020.7849,256717.5849,2613301986,0,496581377.8,702307948.6 + 11/25 22:00:00,524582551.2,0,696592206.2,0,85900.52887,128194.836,1991918071,0,354700984.2,702307948.6 + 11/25 23:00:00,559447023.3,0,747999270.2,0,85900.52887,128194.836,2078189607,0,354700984.2,624273732.1 + 11/25 24:00:00,615050603.9,0,830433966.1,0,42950.26444,64097.41801,1830856227,0,354700984.2,468205299.1 + 11/26 01:00:00,757534512.3,0,1042400302,0,42882.29697,63995.98583,2184696633,0,212820590.5,234102649.5 + 11/26 02:00:00,251431503.5,0,314877199.8,0,21441.14849,31997.99291,758689612.4,0,141880393.7,0 + 11/26 03:00:00,660103141.9,0,922338725.4,0,21406.05805,31945.62521,1774507927,0,141880393.7,0 + 11/26 04:00:00,684341016.1,0,952276464.7,0,21375.97934,31900.73685,1828413659,0,141880393.7,0 + 11/26 05:00:00,685629109.3,0,952992320.9,0,21406.05805,31945.62521,1830687490,0,141880393.7,0 + 11/26 06:00:00,686575649.9,0,953213937.4,0,21406.05805,31945.62521,1831855647,0,141880393.7,0 + 11/26 07:00:00,638384335.6,0,880210492.8,0,85624.23218,127782.5009,2286859067,0,141880393.7,156068433 + 11/26 08:00:00,603247174,0,845513485.1,0,342496.9287,511130.0034,4521817615,0,567521574.6,390171082.6 + 11/26 09:00:00,713850961.1,0,971903339.3,0,299684.8126,447238.753,4374679137,0,567521574.6,390171082.6 + 11/26 10:00:00,870267111.1,0,1221518470,0,214411.4849,319979.9291,4015594672,0,283760787.3,0 + 11/26 11:00:00,822599707.8,0,1192901181,0,171529.1879,255983.9433,3554548161,0,283760787.3,0 + 11/26 12:00:00,680210438.9,0,1089656272,0,85624.23218,127782.5009,2538130950,0,283760787.3,0 + 11/26 13:00:00,671461256.4,0,1084351293,0,85624.23218,127782.5009,2524076788,0,283760787.3,0 + 11/26 14:00:00,713740773.2,0,1077464406,0,85624.23218,127782.5009,2559469418,0,283760787.3,0 + 11/26 15:00:00,807010616.3,0,1142378633,0,128436.3483,191673.7513,3101785608,0,283760787.3,0 + 11/26 16:00:00,904786642.9,0,1265631182,0,214060.5805,319456.2521,4091078422,0,283760787.3,0 + 11/26 17:00:00,923600094.4,0,1302199186,0,214060.5805,319456.2521,4146459878,0,354700984.2,0 + 11/26 18:00:00,979157927.2,0,1380998718,0,299263.7108,446610.3159,5045303141,0,141880393.7,0 + 11/26 19:00:00,762782545.3,0,1054129221,0,298744.4837,445835.4401,4497399491,0,638461771.5,0 + 11/26 20:00:00,544726296.6,0,725563215.7,0,170457.3307,254384.3425,2799719536,0,638461771.5,702307948.6 + 11/26 21:00:00,601483805.5,0,807192879.2,0,170457.3307,254384.3425,2938106708,0,496581377.8,702307948.6 + 11/26 22:00:00,647422786.6,0,873808446,0,85355.56676,127381.5543,2287084868,0,354700984.2,702307948.6 + 11/26 23:00:00,683158204,0,925346031.3,0,85228.66535,127192.1712,2373219247,0,354700984.2,624273732.1 + 11/26 24:00:00,747568515.2,0,1019720754,0,42614.33267,63596.08562,2149646775,0,354700984.2,468205299.1 + 11/27 01:00:00,881913872.3,0,1218896625,0,42614.33267,63596.08562,2483168003,0,212820590.5,234102649.5 + 11/27 02:00:00,396391214.5,0,533867711.5,0,21268.12453,31739.77823,1121087376,0,141880393.7,0 + 11/27 03:00:00,781996314.4,0,1090922115,0,21268.12453,31739.77823,2063746880,0,141880393.7,0 + 11/27 04:00:00,824040764.3,0,1149389879,0,21158.93241,31576.82388,2163279366,0,141880393.7,0 + 11/27 05:00:00,849289110.9,0,1184781391,0,21158.93241,31576.82388,2223919225,0,141880393.7,0 + 11/27 06:00:00,856166275.4,0,1193274910,0,21158.93241,31576.82388,2239289908,0,141880393.7,0 + 11/27 07:00:00,808774677.7,0,1121211255,0,84635.72966,126307.2955,2689380823,0,141880393.7,156068433 + 11/27 08:00:00,699226364.2,0,892453317.9,0,337857.9276,504206.9263,4623113156,0,567521574.6,390171082.6 + 11/27 09:00:00,660920743.6,0,882504730.4,0,296713.7419,442804.8347,4205692350,0,567521574.6,390171082.6 + 11/27 10:00:00,730349583.7,0,1056319529,0,212681.2453,317397.7823,3694953611,0,283760787.3,0 + 11/27 11:00:00,559713486.3,0,1002717460,0,171007.8347,255205.8948,3096800372,0,283760787.3,0 + 11/27 12:00:00,418013450.2,0,965804551.6,0,85764.59395,127991.9717,2153341638,0,283760787.3,0 + 11/27 13:00:00,376536313.8,0,915587381.7,0,85900.52887,128194.836,2062867009,0,283760787.3,0 + 11/27 14:00:00,435035302.8,0,812375878.3,0,86010.39245,128358.7924,2019140247,0,283760787.3,0 + 11/27 15:00:00,561681645.1,0,799293167.4,0,129015.5887,192538.1887,2518568411,0,283760787.3,0 + 11/27 16:00:00,729921704.6,0,977660392.8,0,214751.3222,320487.09,3634440381,0,283760787.3,0 + 11/27 17:00:00,856374270,0,1225941022,0,213759.7934,319007.3685,4000277075,0,354700984.2,0 + 11/27 18:00:00,938057720.6,0,1338639280,0,298744.4837,445835.4401,4957184726,0,141880393.7,0 + 11/27 19:00:00,748410611.4,0,1049141836,0,297287.0509,443660.4203,4464963344,0,638461771.5,0 + 11/27 20:00:00,551360165.2,0,749865914.2,0,169550.7097,253031.3341,2822521437,0,638461771.5,702307948.6 + 11/27 21:00:00,626748297.6,0,856835945.9,0,169271.4593,252614.591,3002374025,0,496581377.8,702307948.6 + 11/27 22:00:00,707636293.3,0,972628040.5,0,84464.48191,126051.7316,2438122702,0,354700984.2,702307948.6 + 11/27 23:00:00,788073560.9,0,1087829647,0,83957.88034,125295.6977,2629216089,0,354700984.2,624273732.1 + 11/27 24:00:00,863525920.3,0,1196507788,0,42070.12011,62783.92251,2437508262,0,354700984.2,468205299.1 + 11/28 01:00:00,1022037748,0,1429400309,0,41901.50308,62532.28458,2827399693,0,212820590.5,234102649.5 + 11/28 02:00:00,532475427.3,0,734247255.4,0,20989.47008,31323.92444,1455050903,0,141880393.7,0 + 11/28 03:00:00,921008061.1,0,1294191936,0,20950.75154,31266.14229,2403180815,0,141880393.7,0 + 11/28 04:00:00,958678015.4,0,1347214267,0,20903.43091,31195.52268,2493448515,0,141880393.7,0 + 11/28 05:00:00,927547780.6,0,1299174949,0,21072.3141,31447.55784,2415794269,0,141880393.7,0 + 11/28 06:00:00,947290082.8,0,1326983421,0,20903.43091,31195.52268,2461829737,0,141880393.7,0 + 11/28 07:00:00,925226270.3,0,1292258865,0,83613.72362,124782.0907,2967710067,0,141880393.7,156068433 + 11/28 08:00:00,782571391.7,0,1008190743,0,335831.5213,501182.791,4804013659,0,567521574.6,390171082.6 + 11/28 09:00:00,717970226.1,0,922073181.9,0,296225.0538,442075.5343,4297925525,0,567521574.6,390171082.6 + 11/28 10:00:00,762600647,0,1107742734,0,211589.3241,315768.2388,3768830608,0,283760787.3,0 + 11/28 11:00:00,588779930.9,0,1057271120,0,169550.7097,253031.3341,3167346409,0,283760787.3,0 + 11/28 12:00:00,451622467.9,0,1032380977,0,85072.4981,126959.1129,2247317244,0,283760787.3,0 + 11/28 13:00:00,407505964.4,0,976865194.1,0,85228.66535,127192.1712,2149086170,0,283760787.3,0 + 11/28 14:00:00,474699201.5,0,878502082.5,0,85355.56676,127381.5543,2119054920,0,283760787.3,0 + 11/28 15:00:00,580642790.1,0,845974929.3,0,128033.3501,191072.3315,2575398173,0,283760787.3,0 + 11/28 16:00:00,744122649.5,0,1022755570,0,213071.6634,317980.4281,3678665748,0,283760787.3,0 + 11/28 17:00:00,855847056.5,0,1247952322,0,212347.8935,316900.3002,4009092876,0,354700984.2,0 + 11/28 18:00:00,937800785.8,0,1362276497,0,296225.0538,442075.5343,4957959400,0,141880393.7,0 + 11/28 19:00:00,715747578.5,0,1024432824,0,296713.7419,442804.8347,4402447278,0,638461771.5,0 + 11/28 20:00:00,462963331.9,0,641991645,0,170144.9962,253918.2258,2631582576,0,638461771.5,702307948.6 + 11/28 21:00:00,534840054.7,0,743950156.7,0,169271.4593,252614.591,2797579993,0,496581377.8,702307948.6 + 11/28 22:00:00,622641283.1,0,870225987.8,0,84464.48191,126051.7316,2250725639,0,354700984.2,702307948.6 + 11/28 23:00:00,669564551.5,0,936200009.8,0,84464.48191,126051.7316,2363622930,0,354700984.2,624273732.1 + 11/28 24:00:00,757787608.1,0,1063587741,0,42070.12011,62783.92251,2198849902,0,354700984.2,468205299.1 + 11/29 01:00:00,902507116.8,0,1275770011,0,42144.6282,62895.11569,2556420206,0,212820590.5,234102649.5 + 11/29 02:00:00,404112819.7,0,563327536.8,0,21072.3141,31447.55784,1156511895,0,141880393.7,0 + 11/29 03:00:00,802633506.8,0,1143161466,0,21035.06005,31391.96125,2134532250,0,141880393.7,0 + 11/29 04:00:00,804227808.5,0,1141478873,0,21116.12048,31512.93289,2135171274,0,141880393.7,0 + 11/29 05:00:00,765438944.2,0,1081765242,0,21234.78935,31690.03002,2037733536,0,141880393.7,0 + 11/29 06:00:00,739930295.1,0,1042414016,0,21268.12453,31739.77823,1973172761,0,141880393.7,0 + 11/29 07:00:00,685375245.5,0,959564963.7,0,85072.4981,126959.1129,2408254009,0,141880393.7,156068433 + 11/29 08:00:00,637480154.4,0,897694183.5,0,340289.9924,507836.4516,4588429536,0,567521574.6,390171082.6 + 11/29 09:00:00,722992625.2,0,993483430.8,0,299263.7108,446610.3159,4401622552,0,567521574.6,390171082.6 + 11/29 10:00:00,812126539.8,0,1156862745,0,214060.5805,319456.2521,3889649883,0,283760787.3,0 + 11/29 11:00:00,731782534.2,0,1085270502,0,171801.0577,256389.672,3358539663,0,283760787.3,0 + 11/29 12:00:00,681624499.4,0,1038931696,0,86138.09068,128549.3646,2493431034,0,283760787.3,0 + 11/29 13:00:00,652732755.6,0,991815905.8,0,86360.34081,128881.0427,2419417642,0,283760787.3,0 + 11/29 14:00:00,642378667,0,947024511,0,86456.23145,129024.1464,2365132538,0,283760787.3,0 + 11/29 15:00:00,682664017.8,0,968068656,0,129540.5112,193321.564,2813036145,0,283760787.3,0 + 11/29 16:00:00,734827197.8,0,1020475391,0,215900.852,322202.6067,3692475040,0,283760787.3,0 + 11/29 17:00:00,760613139.1,0,1076261669,0,215602.5688,321757.4597,3771370910,0,354700984.2,0 + 11/29 18:00:00,807277933.7,0,1143564803,0,301843.5964,450460.4436,4659137281,0,141880393.7,0 + 11/29 19:00:00,568370842.7,0,784751451.6,0,301843.5964,450460.4436,4061416838,0,638461771.5,0 + 11/29 20:00:00,339690407,0,441431652.6,0,172276.1814,257098.7293,2326871738,0,638461771.5,702307948.6 + 11/29 21:00:00,388941451.3,0,513473602.4,0,172276.1814,257098.7293,2448164732,0,496581377.8,702307948.6 + 11/29 22:00:00,438414434,0,586744084.8,0,86138.09068,128549.3646,1798033358,0,354700984.2,702307948.6 + 11/29 23:00:00,466131367.2,0,627570470.8,0,86138.09068,128549.3646,1866576677,0,354700984.2,624273732.1 + 11/29 24:00:00,540329326.1,0,737525647.7,0,42950.26444,64097.41801,1663226631,0,354700984.2,468205299.1 + 11/30 01:00:00,678279913.6,0,942497508.7,0,43005.19622,64179.39622,2006641955,0,212820590.5,234102649.5 + 11/30 02:00:00,206890730.4,0,273213170.7,0,21375.97934,31900.73685,671900079.4,0,141880393.7,0 + 11/30 03:00:00,604909402,0,852743803.2,0,21475.13222,32048.709,1650339034,0,141880393.7,0 + 11/30 04:00:00,594264770.1,0,833003911.6,0,21475.13222,32048.709,1619954510,0,141880393.7,0 + 11/30 05:00:00,625154804.5,0,876601361.7,0,21406.05805,31945.62521,1693822226,0,141880393.7,0 + 11/30 06:00:00,657997983.1,0,923079867.5,0,21375.97934,31900.73685,1772874029,0,141880393.7,0 + 11/30 07:00:00,632789666.9,0,882684899.3,0,21338.89169,31845.38858,1706937975,0,141880393.7,156068433 + 11/30 08:00:00,546449055.5,0,731905361.3,0,85355.56676,127381.5543,2044208053,0,567521574.6,390171082.6 + 11/30 09:00:00,689515980.6,0,912011778,0,214060.5805,319456.2521,3522188356,0,567521574.6,390171082.6 + 11/30 10:00:00,539419721.7,0,795932703.1,0,214751.3222,320487.09,3262210709,0,283760787.3,0 + 11/30 11:00:00,409538664.6,0,754102074.7,0,215345.2267,321373.4116,3095827837,0,283760787.3,0 + 11/30 12:00:00,307183413.7,0,735794015.1,0,129361.5413,193054.4758,2203675090,0,283760787.3,0 + 11/30 13:00:00,274760358.5,0,710004213.5,0,129361.5413,193054.4758,2145462234,0,283760787.3,0 + 11/30 14:00:00,302183091.9,0,620011500,0,129361.5413,193054.4758,2082892253,0,283760787.3,0 + 11/30 15:00:00,425263770.8,0,613057089.9,0,129207.136,192824.047,2197633119,0,283760787.3,0 + 11/30 16:00:00,640876021.9,0,864504137.9,0,300176.0788,447971.9008,4198712886,0,283760787.3,0 + 11/30 17:00:00,774130222.2,0,1115499281,0,385309.0448,575021.2538,5346818578,0,354700984.2,0 + 11/30 18:00:00,865209705.1,0,1240820916,0,298744.4837,445835.4401,4786518346,0,141880393.7,0 + 11/30 19:00:00,726402233.2,0,1024415944,0,297474.9422,443940.8225,4419914930,0,638461771.5,0 + 11/30 20:00:00,534464152.7,0,730667170.4,0,254491.2373,379793.499,3548556374,0,638461771.5,702307948.6 + 11/30 21:00:00,610789522.9,0,838318037.2,0,211729.7951,315977.8725,3348855163,0,496581377.8,702307948.6 + 11/30 22:00:00,689300868.2,0,950668460.1,0,169158.1855,252445.5452,3157742759,0,354700984.2,702307948.6 + 11/30 23:00:00,736346780.9,0,1016857195,0,126825.9101,189270.3917,2891150662,0,354700984.2,624273732.1 + 11/30 24:00:00,800220168,0,1108705166,0,84579.09273,126222.7726,2667812049,0,354700984.2,468205299.1 + 12/01 01:00:00,939692460.2,0,1313926690,0,42317.86483,63153.64775,2633316596,0,212820590.5,234102649.5 + 12/01 02:00:00,425450281.2,0,579395767.8,0,21172.97951,31597.78725,1194820809,0,141880393.7,0 + 12/01 03:00:00,815010451.4,0,1146932305,0,21179.96083,31608.20593,2151980157,0,141880393.7,0 + 12/01 04:00:00,832728588,0,1169603624,0,21172.97951,31597.78725,2192306972,0,141880393.7,0 + 12/01 05:00:00,841320512.4,0,1180166322,0,21172.97951,31597.78725,2211461595,0,141880393.7,0 + 12/01 06:00:00,851386063.7,0,1192937634,0,21165.97001,31587.32653,2234235566,0,141880393.7,0 + 12/01 07:00:00,812676744.3,0,1133167122,0,21137.65168,31545.06528,2135501647,0,141880393.7,156068433 + 12/01 08:00:00,693117111.6,0,893102967.7,0,21158.93241,31576.82388,1776068802,0,567521574.6,390171082.6 + 12/01 09:00:00,609088843.3,0,816167535.7,0,85046.06161,126919.66,2188332977,0,567521574.6,390171082.6 + 12/01 10:00:00,617878113.1,0,903952303.8,0,127608.7472,190438.6694,2666801116,0,283760787.3,0 + 12/01 11:00:00,465570833.8,0,891086591.2,0,128108.2435,191184.0997,2506109861,0,283760787.3,0 + 12/01 12:00:00,325831294,0,864195845.8,0,85718.2962,127922.8786,1959135369,0,283760787.3,0 + 12/01 13:00:00,294433497.7,0,831514175.8,0,85764.59395,127991.9717,1895471310,0,283760787.3,0 + 12/01 14:00:00,370049508.8,0,740621885.3,0,128749.6766,192141.3511,2265879094,0,283760787.3,0 + 12/01 15:00:00,517441350.8,0,738706709.4,0,171389.9269,255776.1152,2793945812,0,283760787.3,0 + 12/01 16:00:00,733480629.7,0,981802308.2,0,213759.7934,319007.3685,3633244721,0,283760787.3,0 + 12/01 17:00:00,853808848.7,0,1222661631,0,256290.843,382479.1654,4376042510,0,354700984.2,0 + 12/01 18:00:00,932418356,0,1330191584,0,298210.2571,445038.1797,4938304313,0,141880393.7,0 + 12/01 19:00:00,767700890.1,0,1076828408,0,170144.9962,253918.2258,3371156898,0,638461771.5,0 + 12/01 20:00:00,557703400.3,0,758046088.7,0,127327.521,190018.9776,2458196884,0,638461771.5,702307948.6 + 12/01 21:00:00,638462111.2,0,873983870.7,0,84522.00941,126137.5835,2270820517,0,496581377.8,702307948.6 + 12/01 22:00:00,747751677.5,0,1033433989,0,83988.53945,125341.4523,2534773637,0,354700984.2,702307948.6 + 12/01 23:00:00,823097536.7,0,1142536653,0,83708.8295,124924.0233,2716712460,0,354700984.2,624273732.1 + 12/01 24:00:00,864952776.2,0,1202776412,0,84140.24021,125567.845,2822678295,0,354700984.2,468205299.1 + 12/02 01:00:00,1004999863,0,1409734859,0,41901.50308,62532.28458,2790696357,0,212820590.5,234102649.5 + 12/02 02:00:00,750448273.1,0,1068387210,0,20747.5862,30962.94569,2004993398,0,141880393.7,0 + 12/02 03:00:00,971898440.3,0,1377745412,0,20806.04338,31050.18507,2536326275,0,141880393.7,0 + 12/02 04:00:00,986347740.2,0,1396991224,0,20730.66614,30937.69482,2569345063,0,141880393.7,0 + 12/02 05:00:00,954712579.2,0,1348908701,0,20919.3076,31219.21648,2491319967,0,141880393.7,0 + 12/02 06:00:00,916925485,0,1292066835,0,20974.06138,31300.92904,2397182286,0,141880393.7,0 + 12/02 07:00:00,875874204.2,0,1229338287,0,83613.72362,124782.0907,2855437423,0,141880393.7,156068433 + 12/02 08:00:00,846343726.6,0,1156405081,0,334199.2301,498746.8187,5001354583,0,567521574.6,390171082.6 + 12/02 09:00:00,892842289.8,0,1208862018,0,292536.3581,436570.6584,4726489567,0,567521574.6,390171082.6 + 12/02 10:00:00,880829886.7,0,1288431848,0,209740.6138,313009.2904,4051161390,0,283760787.3,0 + 12/02 11:00:00,636222381.1,0,1104658744,0,168578.5128,251580.4628,3253453438,0,283760787.3,0 + 12/02 12:00:00,455989760.3,0,1010023408,0,84691.91803,126391.149,2225912209,0,283760787.3,0 + 12/02 13:00:00,413734741.5,0,939193219.2,0,84939.15741,126760.1201,2115045360,0,283760787.3,0 + 12/02 14:00:00,482282949.2,0,860099823.9,0,85405.4957,127456.0664,2108684397,0,283760787.3,0 + 12/02 15:00:00,587077040.4,0,873648930.5,0,128328.6095,191512.9658,2612155642,0,283760787.3,0 + 12/02 16:00:00,711570769.3,0,1018095877,0,214178.7709,319632.6352,3651387708,0,283760787.3,0 + 12/02 17:00:00,758746066,0,1116507352,0,214119.828,319544.671,3796445614,0,354700984.2,0 + 12/02 18:00:00,804026811.3,0,1176652611,0,299850.2792,447485.6893,4671088909,0,141880393.7,0 + 12/02 19:00:00,575062169.7,0,828187384.2,0,300014.0367,447730.075,4095128356,0,638461771.5,0 + 12/02 20:00:00,336292413.3,0,465319812.9,0,171666.2355,256188.4682,2341889159,0,638461771.5,702307948.6 + 12/02 21:00:00,375471101.5,0,519123059.6,0,171933.6431,256587.5376,2437270412,0,496581377.8,702307948.6 + 12/02 22:00:00,420581262.9,0,581772854.4,0,86096.02866,128486.5928,1774851555,0,354700984.2,702307948.6 + 12/02 23:00:00,440408585.5,0,606038575.6,0,86281.31085,128763.1012,1820607045,0,354700984.2,624273732.1 + 12/02 24:00:00,504865810.9,0,695147875,0,43189.88853,64455.02432,1587535372,0,354700984.2,468205299.1 + 12/03 01:00:00,657394626.5,0,911529558.9,0,43218.6559,64497.9557,1956703987,0,212820590.5,234102649.5 + 12/03 02:00:00,158049607.5,0,187907501.2,0,21632.65304,32283.78736,540056294.1,0,141880393.7,0 + 12/03 03:00:00,544339791.1,0,748349507.1,0,21650.72693,32310.76019,1486950652,0,141880393.7,0 + 12/03 04:00:00,536189844,0,737085599.6,0,21672.58203,32343.37595,1467732892,0,141880393.7,0 + 12/03 05:00:00,522396916.9,0,715804756.8,0,21672.58203,32343.37595,1432659122,0,141880393.7,0 + 12/03 06:00:00,514333971,0,703848473.5,0,21685.29987,32362.35559,1412754004,0,141880393.7,0 + 12/03 07:00:00,453982704.4,0,613550595.7,0,86774.45226,129499.0476,1846117900,0,141880393.7,156068433 + 12/03 08:00:00,579843963.1,0,773538419.3,0,347163.519,518094.2535,4468310363,0,567521574.6,390171082.6 + 12/03 09:00:00,534026391.7,0,731765145.2,0,303881.6763,453502.0002,3992372773,0,567521574.6,390171082.6 + 12/03 10:00:00,703084110.6,0,976821604.1,0,217138.1498,324049.1051,3628179833,0,283760787.3,0 + 12/03 11:00:00,699875704.8,0,973933473.6,0,173804.2891,259379.2219,3233269818,0,283760787.3,0 + 12/03 12:00:00,674203330.8,0,940835014.4,0,86962.78227,129780.1045,2395312737,0,283760787.3,0 + 12/03 13:00:00,634825283.7,0,892327250.7,0,87021.26854,129867.3873,2307951695,0,283760787.3,0 + 12/03 14:00:00,637025120.7,0,889071107.1,0,87035.55288,129888.7047,2307023555,0,283760787.3,0 + 12/03 15:00:00,675454596.7,0,936125613.7,0,130531.9028,194801.0809,2782778952,0,283760787.3,0 + 12/03 16:00:00,696775938,0,964813734.5,0,217480.7373,324560.3702,3612937659,0,283760787.3,0 + 12/03 17:00:00,682141601.7,0,941749833.8,0,217444.0147,324505.5668,3574909929,0,354700984.2,0 + 12/03 18:00:00,722657405.8,0,1002141011,0,304317.3846,454152.2355,4455289049,0,141880393.7,0 + 12/03 19:00:00,491102151.5,0,655519307,0,304157.5059,453913.6383,3875677577,0,638461771.5,0 + 12/03 20:00:00,251279352,0,297201223.2,0,173804.2891,259379.2219,2107941215,0,638461771.5,702307948.6 + 12/03 21:00:00,281419759.7,0,342529506.3,0,173895.6484,259515.5631,2184229627,0,496581377.8,702307948.6 + 12/03 22:00:00,327254753.2,0,411077162.6,0,86992.2949,129824.1481,1518871111,0,354700984.2,702307948.6 + 12/03 23:00:00,347297936.7,0,441051160.9,0,87049.70206,129909.8204,1569403379,0,354700984.2,624273732.1 + 12/03 24:00:00,387992131.3,0,502271900.1,0,43552.4722,64996.13105,1281039003,0,354700984.2,468205299.1 + 12/04 01:00:00,500795891.2,0,672003269,0,43565.87556,65016.13373,1563694394,0,212820590.5,234102649.5 + 12/04 02:00:00,30067707.88,0,2407099.543,0,21776.2361,32498.06553,227862293.3,0,141880393.7,0 + 12/04 03:00:00,353555441.1,0,446779273.8,0,21758.88822,32472.17618,995566546.7,0,141880393.7,0 + 12/04 04:00:00,384860821.8,0,521894104.5,0,21772.83431,32492.98881,1102111890,0,141880393.7,0 + 12/04 05:00:00,385747990.5,0,522964447.1,0,21762.42551,32477.45511,1103976008,0,141880393.7,0 + 12/04 06:00:00,392007041.5,0,532135378.2,0,21755.31713,32466.84682,1119342210,0,141880393.7,0 + 12/04 07:00:00,349199425.2,0,467847847.7,0,86962.78227,129780.1045,1597321665,0,141880393.7,156068433 + 12/04 08:00:00,512388986,0,710602728,0,347546.6001,518665.9499,4341356894,0,567521574.6,390171082.6 + 12/04 09:00:00,623077774.7,0,846057627.8,0,303937.7763,453585.7218,4196219996,0,567521574.6,390171082.6 + 12/04 10:00:00,654586196.4,0,912827053.6,0,217138.1498,324049.1051,3515687368,0,283760787.3,0 + 12/04 11:00:00,652432669.1,0,913806656.4,0,173710.5199,259239.2841,3124858620,0,283760787.3,0 + 12/04 12:00:00,631409079.5,0,893304084.1,0,86823.3361,129572.0001,2303736374,0,283760787.3,0 + 12/04 13:00:00,630913975.3,0,892162189.8,0,86871.02177,129643.1644,2302527235,0,283760787.3,0 + 12/04 14:00:00,644223252.5,0,904402920.8,0,86886.65002,129666.4875,2328217468,0,283760787.3,0 + 12/04 15:00:00,667856938.7,0,932733804,0,130353.2168,194534.4164,2770186222,0,283760787.3,0 + 12/04 16:00:00,693282849.4,0,966157244.4,0,217216.6251,324166.2187,3608418331,0,283760787.3,0 + 12/04 17:00:00,683470331.4,0,949299333.6,0,217138.1498,324049.1051,3581043783,0,354700984.2,0 + 12/04 18:00:00,725405566.9,0,1011249755,0,303937.7763,453585.7218,4463739915,0,141880393.7,0 + 12/04 19:00:00,488850471.4,0,656689670.4,0,303937.7763,453585.7218,3872624735,0,638461771.5,0 + 12/04 20:00:00,260663464.9,0,315118230.2,0,173515.7842,258948.6677,2132653722,0,638461771.5,702307948.6 + 12/04 21:00:00,312090154.9,0,390775522.6,0,173482.3989,258898.8447,2259438155,0,496581377.8,702307948.6 + 12/04 22:00:00,359968507.3,0,461859843.1,0,86774.45226,129499.0476,1600412950,0,354700984.2,702307948.6 + 12/04 23:00:00,404535921.1,0,527912007,0,86602.90772,129243.0408,1709493343,0,354700984.2,624273732.1 + 12/04 24:00:00,466703943.7,0,620155971.4,0,43319.13506,64647.90715,1475541267,0,354700984.2,468205299.1 + 12/05 01:00:00,595055119,0,811759347.5,0,43319.13506,64647.90715,1795495818,0,212820590.5,234102649.5 + 12/05 02:00:00,118454895.6,0,120737028.1,0,21646.25748,32304.09014,433413175.2,0,141880393.7,0 + 12/05 03:00:00,502733826.5,0,696770566.6,0,21614.05786,32256.0366,1393436733,0,141880393.7,0 + 12/05 04:00:00,520573628,0,719094750.6,0,21609.32795,32248.97785,1433558280,0,141880393.7,0 + 12/05 05:00:00,518430303.6,0,714849881.2,0,21628.053,32276.92244,1427338096,0,141880393.7,0 + 12/05 06:00:00,523827145.7,0,722002577,0,21614.05786,32256.0366,1439762063,0,141880393.7,0 + 12/05 07:00:00,489620489,0,669997106.6,0,86340.77588,128851.8447,1934311030,0,141880393.7,156068433 + 12/05 08:00:00,638949692.5,0,863888740.2,0,344041.5698,513435.1697,4589754695,0,567521574.6,390171082.6 + 12/05 09:00:00,678530448.3,0,904382915.2,0,300960.3434,449142.3089,4283282912,0,567521574.6,390171082.6 + 12/05 10:00:00,658555284.6,0,946379010.5,0,214639.2801,320319.8825,3530787280,0,283760787.3,0 + 12/05 11:00:00,654569491.5,0,996796741.1,0,171756.365,256322.9741,3192451853,0,283760787.3,0 + 12/05 12:00:00,667903729.9,0,1041192745,0,85900.52887,128194.836,2479839788,0,283760787.3,0 + 12/05 13:00:00,615134661.8,0,1010759263,0,85922.75099,128227.9995,2396836626,0,283760787.3,0 + 12/05 14:00:00,697423174.1,0,1044258876,0,85966.82154,128293.7688,2513020175,0,283760787.3,0 + 12/05 15:00:00,724595225.5,0,1018723107,0,128983.0043,192489.561,2900619567,0,283760787.3,0 + 12/05 16:00:00,812253162.1,0,1110773572,0,214917.0539,320734.422,3851372047,0,283760787.3,0 + 12/05 17:00:00,863615406.5,0,1214586634,0,214639.2801,320319.8825,4004055026,0,354700984.2,0 + 12/05 18:00:00,913207150.9,0,1285088242,0,300573.6387,448565.2048,4895195230,0,141880393.7,0 + 12/05 19:00:00,682929081.4,0,939005334.6,0,300415.9121,448329.8193,4317419049,0,638461771.5,0 + 12/05 20:00:00,469800554.6,0,618623064,0,171248.4644,255565.0017,2624952096,0,638461771.5,702307948.6 + 12/05 21:00:00,552319035.2,0,738186354.3,0,170761.1817,254837.7988,2822661719,0,496581377.8,702307948.6 + 12/05 22:00:00,642912144.5,0,870125117.4,0,85125.02185,127037.4974,2276822331,0,354700984.2,702307948.6 + 12/05 23:00:00,703682632.7,0,957970827.7,0,84939.15741,126760.1201,2423770859,0,354700984.2,624273732.1 + 12/05 24:00:00,794937580.3,0,1091524004,0,42317.86483,63153.64775,2266159030,0,354700984.2,468205299.1 + 12/06 01:00:00,963868555.2,0,1341171432,0,42174.05158,62939.02608,2683447067,0,212820590.5,234102649.5 + 12/06 02:00:00,460692717.4,0,624073939.3,0,21116.12048,31512.93289,1274231249,0,141880393.7,0 + 12/06 03:00:00,869335327.5,0,1220372932,0,21057.49359,31425.44026,2278646821,0,141880393.7,0 + 12/06 04:00:00,908633393.3,0,1274467625,0,20989.47008,31323.92444,2371429239,0,141880393.7,0 + 12/06 05:00:00,921576974.1,0,1291976608,0,20981.7789,31312.44639,2401812793,0,141880393.7,0 + 12/06 06:00:00,927386608.1,0,1299940457,0,20966.31759,31289.3725,2415447549,0,141880393.7,0 + 12/06 07:00:00,890031192.5,0,1243176512,0,83708.8295,124924.0233,2884285975,0,141880393.7,156068433 + 12/06 08:00:00,848040149.7,0,1147968398,0,334454.8945,499128.363,4996908274,0,567521574.6,390171082.6 + 12/06 09:00:00,912028851.6,0,1237982909,0,294490.8407,439487.4576,4792333634,0,567521574.6,390171082.6 + 12/06 10:00:00,1060968037,0,1497198709,0,211376.5168,315450.6528,4454744556,0,283760787.3,0 + 12/06 11:00:00,997521524.2,0,1420340463,0,169715.5407,253277.3219,3940636292,0,283760787.3,0 + 12/06 12:00:00,988162116.6,0,1397993353,0,85125.02185,127037.4974,3149940539,0,283760787.3,0 + 12/06 13:00:00,950285474.3,0,1342124087,0,85405.4957,127456.0664,3058711185,0,283760787.3,0 + 12/06 14:00:00,897605803.7,0,1261847127,0,86053.46204,128423.0679,2931568439,0,283760787.3,0 + 12/06 15:00:00,832907206.8,0,1162899340,0,129904.3616,193864.5611,3161374668,0,283760787.3,0 + 12/06 16:00:00,808037657.5,0,1123125244,0,216725.8203,323433.7595,3875737388,0,283760787.3,0 + 12/06 17:00:00,777886418.2,0,1077945474,0,216682.7677,323369.5094,3800020090,0,354700984.2,0 + 12/06 18:00:00,806426096.3,0,1121260688,0,303416.1485,452807.2633,4650091067,0,141880393.7,0 + 12/06 19:00:00,601054992.5,0,814197338.8,0,301984.588,450670.8543,4124811924,0,638461771.5,0 + 12/06 20:00:00,422958097.6,0,547223609.2,0,171711.4241,256255.906,2510864095,0,638461771.5,702307948.6 + 12/06 21:00:00,533078969.6,0,708430091,0,170660.8472,254688.0631,2772765138,0,496581377.8,702307948.6 + 12/06 22:00:00,631470143.9,0,853147744.3,0,85098.81827,126998.3922,2248167846,0,354700984.2,702307948.6 + 12/06 23:00:00,709395492.1,0,966976087.5,0,84691.91803,126391.149,2436270621,0,354700984.2,624273732.1 + 12/06 24:00:00,815473345.5,0,1122067905,0,42188.68131,62960.85895,2316079595,0,354700984.2,468205299.1 + 12/07 01:00:00,988549538.1,0,1377045187,0,42070.12011,62783.92251,2743069279,0,212820590.5,234102649.5 + 12/07 02:00:00,710992536,0,1000372881,0,20974.06138,31300.92904,1899555382,0,141880393.7,0 + 12/07 03:00:00,927461243.9,0,1302060849,0,20981.7789,31312.44639,2417781304,0,141880393.7,0 + 12/07 04:00:00,968451685.5,0,1359738635,0,20863.29282,31135.62206,2515386414,0,141880393.7,0 + 12/07 05:00:00,1010123263,0,1418490357,0,20822.52479,31074.78133,2615443922,0,141880393.7,0 + 12/07 06:00:00,1035163005,0,1452884216,0,20797.76566,31037.8317,2674655372,0,141880393.7,0 + 12/07 07:00:00,1008559993,0,1410295385,0,20747.5862,30962.94569,2605013293,0,141880393.7,156068433 + 12/07 08:00:00,933878899.5,0,1248746247,0,83091.14165,124002.2083,2928161206,0,567521574.6,390171082.6 + 12/07 09:00:00,827540160.6,0,1055466064,0,208874.5188,311716.7617,3757134835,0,567521574.6,390171082.6 + 12/07 10:00:00,805656734.1,0,1171952663,0,209585.4762,312777.7688,3858117079,0,283760787.3,0 + 12/07 11:00:00,702655836.8,0,1179627447,0,210123.849,313581.2167,3767621521,0,283760787.3,0 + 12/07 12:00:00,648889466.1,0,1185640224,0,126478.1015,188751.3348,2969355661,0,283760787.3,0 + 12/07 13:00:00,531156598.7,0,1079482479,0,126609.7686,188947.83,2746646433,0,283760787.3,0 + 12/07 14:00:00,693114281.7,0,1115561165,0,126783.0141,189206.3753,2946237249,0,283760787.3,0 + 12/07 15:00:00,851543490.3,0,1254267768,0,126825.9101,189270.3917,3243757945,0,283760787.3,0 + 12/07 16:00:00,922198247.3,0,1342145439,0,296026.8245,441779.7041,4920447189,0,283760787.3,0 + 12/07 17:00:00,926352541.6,0,1342634699,0,380987.4602,568571.8776,5687400857,0,354700984.2,0 + 12/07 18:00:00,981076778.3,0,1417110438,0,295726.5537,441331.5907,5051596536,0,141880393.7,0 + 12/07 19:00:00,791581717.5,0,1127614331,0,295927.1236,441630.914,4574404983,0,638461771.5,0 + 12/07 20:00:00,546625901.7,0,757436709.3,0,253991.6401,379047.9184,3583005022,0,638461771.5,702307948.6 + 12/07 21:00:00,586075502.9,0,811988287.3,0,212144.4258,316596.6524,3301531672,0,496581377.8,702307948.6 + 12/07 22:00:00,603962857.5,0,835391951.4,0,170559.5622,254536.9091,2969702106,0,354700984.2,702307948.6 + 12/07 23:00:00,630573625,0,871117614.7,0,127842.998,190788.2569,2648763757,0,354700984.2,624273732.1 + 12/07 24:00:00,707134418.2,0,980835729.6,0,85151.1086,127076.4284,2451989281,0,354700984.2,468205299.1 + 12/08 01:00:00,920124767.7,0,1292292382,0,42114.98719,62850.88052,2590294274,0,212820590.5,234102649.5 + 12/08 02:00:00,703459362.6,0,998842717,0,20911.38208,31207.38873,1889929654,0,141880393.7,0 + 12/08 03:00:00,1022916768,0,1452480397,0,20547.35392,30664.1263,2659758494,0,141880393.7,0 + 12/08 04:00:00,1139568408,0,1618399460,0,20391.76357,30431.9289,2940933161,0,141880393.7,0 + 12/08 05:00:00,1223733167,0,1735666163,0,20249.50297,30219.62433,3141088188,0,141880393.7,0 + 12/08 06:00:00,1302622700,0,1845703225,0,20112.80114,30015.61548,3328788225,0,141880393.7,0 + 12/08 07:00:00,1304009448,0,1841102770,0,20063.11078,29941.45939,3325128671,0,141880393.7,156068433 + 12/08 08:00:00,1291669906,0,1771262499,0,19972.57245,29806.34327,3242136502,0,567521574.6,390171082.6 + 12/08 09:00:00,1235602167,0,1640696550,0,79890.28981,119225.3731,3593115103,0,567521574.6,390171082.6 + 12/08 10:00:00,1237941584,0,1797021820,0,120198.5134,179379.905,4113445710,0,283760787.3,0 + 12/08 11:00:00,1052383593,0,1745165465,0,120736.1136,180182.2002,3880854988,0,283760787.3,0 + 12/08 12:00:00,916897512.4,0,1764921780,0,80687.33859,120414.8598,3405787207,0,283760787.3,0 + 12/08 13:00:00,911646689.3,0,1789201503,0,80804.40826,120589.5703,3425866515,0,283760787.3,0 + 12/08 14:00:00,985913656.2,0,1686974602,0,121554.7536,181403.9087,3763539442,0,283760787.3,0 + 12/08 15:00:00,1137922452,0,1664801786,0,162379.3693,242329.0857,4259674676,0,283760787.3,0 + 12/08 16:00:00,1385901534,0,1927755214,0,202205.1961,301763.7062,5127944797,0,283760787.3,0 + 12/08 17:00:00,1528773247,0,2182355782,0,241944.4991,361069.2017,5881978352,0,354700984.2,0 + 12/08 18:00:00,1608233225,0,2289646222,0,281579.216,420218.6168,6424351646,0,141880393.7,0 + 12/08 19:00:00,1437504861,0,2027213606,0,160184.3405,239053.3042,4901973988,0,638461771.5,0 + 12/08 20:00:00,1212424355,0,1686361372,0,120077.8945,179199.8978,3976185779,0,638461771.5,702307948.6 + 12/08 21:00:00,1264160821,0,1760807748,0,79971.24451,119346.1869,3742511322,0,496581377.8,702307948.6 + 12/08 22:00:00,1285856516,0,1792275673,0,80530.20791,120180.3636,3800690247,0,354700984.2,702307948.6 + 12/08 23:00:00,1287751646,0,1793754450,0,80959.44414,120820.9402,3807915480,0,354700984.2,624273732.1 + 12/08 24:00:00,1339698279,0,1869399301,0,80843.28123,120647.5829,3934464691,0,354700984.2,468205299.1 + 12/09 01:00:00,1484469614,0,2083933660,0,40284.80032,60119.57597,3929859029,0,212820590.5,234102649.5 + 12/09 02:00:00,996993143.8,0,1391078337,0,20132.55198,30045.09091,2568710996,0,141880393.7,0 + 12/09 03:00:00,1354524439,0,1910170621,0,20181.60914,30118.30205,3445774740,0,141880393.7,0 + 12/09 04:00:00,1340282031,0,1888642486,0,20268.72882,30248.31629,3410785879,0,141880393.7,0 + 12/09 05:00:00,1326783670,0,1866961477,0,20316.4507,30319.53471,3376034695,0,141880393.7,0 + 12/09 06:00:00,1312996098,0,1845071746,0,20373.0576,30404.01278,3340865298,0,141880393.7,0 + 12/09 07:00:00,1222720793,0,1709750056,0,82045.21972,122441.3124,3668622365,0,141880393.7,156068433 + 12/09 08:00:00,1142064172,0,1561617452,0,330314.2956,492949.0832,5667429787,0,567521574.6,390171082.6 + 12/09 09:00:00,1184014715,0,1613510906,0,289751.5542,432414.7181,5397324202,0,567521574.6,390171082.6 + 12/09 10:00:00,1298818562,0,1836603956,0,207475.862,309629.4569,4997001666,0,283760787.3,0 + 12/09 11:00:00,1299521629,0,1851260014,0,165980.6896,247703.5655,4640044961,0,283760787.3,0 + 12/09 12:00:00,1345717382,0,1902659170,0,82990.34478,123851.7827,3993008211,0,283760787.3,0 + 12/09 13:00:00,1353787161,0,1909283904,0,83057.63958,123952.2111,4008306527,0,283760787.3,0 + 12/09 14:00:00,1380774685,0,1940218162,0,83024.04052,123902.069,4065926841,0,283760787.3,0 + 12/09 15:00:00,1380891472,0,1939285765,0,124586.4594,185928.3166,4438030430,0,283760787.3,0 + 12/09 16:00:00,1391424142,0,1950530961,0,207977.6566,310378.317,5208036609,0,283760787.3,0 + 12/09 17:00:00,1361789916,0,1904519966,0,208225.2479,310747.8133,5134612902,0,354700984.2,0 + 12/09 18:00:00,1391291793,0,1948233914,0,291630.1965,435218.3358,5956180424,0,141880393.7,0 + 12/09 19:00:00,1133383787,0,1563394305,0,292199.196,436067.49,5318538161,0,638461771.5,0 + 12/09 20:00:00,873183324,0,1175820383,0,167099.6151,249373.4094,3548306595,0,638461771.5,702307948.6 + 12/09 21:00:00,900310955.7,0,1216798115,0,167417.659,249848.0466,3619265611,0,496581377.8,702307948.6 + 12/09 22:00:00,932818477.7,0,1266027919,0,83834.1905,125111.1075,2951049469,0,354700984.2,702307948.6 + 12/09 23:00:00,940826128.9,0,1279040427,0,83988.53945,125341.4523,2973454526,0,354700984.2,624273732.1 + 12/09 24:00:00,980770177.5,0,1339725404,0,42009.54631,62693.52438,2697426636,0,354700984.2,468205299.1 + 12/10 01:00:00,1099910509,0,1518627985,0,42039.94002,62738.88284,2995742257,0,212820590.5,234102649.5 + 12/10 02:00:00,569127237.1,0,776825488.4,0,21050.04271,31414.32083,1534824434,0,141880393.7,0 + 12/10 03:00:00,939843935.8,0,1302672819,0,21072.3141,31447.55784,2431588294,0,141880393.7,0 + 12/10 04:00:00,934821844,0,1297551892,0,21101.6281,31491.305,2421708295,0,141880393.7,0 + 12/10 05:00:00,920855557.7,0,1277300511,0,21123.32526,31523.68505,2387685306,0,141880393.7,0 + 12/10 06:00:00,908408664.8,0,1259609479,0,21137.65168,31545.06528,2357675925,0,141880393.7,0 + 12/10 07:00:00,840184799.2,0,1159176195,0,84579.09273,126222.7726,2758247710,0,141880393.7,156068433 + 12/10 08:00:00,801413771.5,0,1080255855,0,337857.9276,504206.9263,4913103101,0,567521574.6,390171082.6 + 12/10 09:00:00,961396486.2,0,1311702103,0,295827.0329,441481.5424,4927409460,0,567521574.6,390171082.6 + 12/10 10:00:00,1146055074,0,1602542351,0,211447.7318,315556.9315,4645814212,0,283760787.3,0 + 12/10 11:00:00,1104524682,0,1548783985,0,169495.3114,252948.6597,4174106963,0,283760787.3,0 + 12/10 12:00:00,1075798799,0,1505583534,0,85019.50904,126880.0339,3344220689,0,283760787.3,0 + 12/10 13:00:00,1019060580,0,1429761613,0,85228.66535,127192.1712,3213537205,0,283760787.3,0 + 12/10 14:00:00,1003387606,0,1404949376,0,85305.16164,127306.3315,3173738357,0,283760787.3,0 + 12/10 15:00:00,1000249414,0,1398578543,0,128182.4198,191294.7976,3548945940,0,283760787.3,0 + 12/10 16:00:00,1036756192,0,1448739238,0,213007.3265,317884.4141,4396705696,0,283760787.3,0 + 12/10 17:00:00,1050984021,0,1467854918,0,212212.5349,316698.296,4422917931,0,354700984.2,0 + 12/10 18:00:00,1073715096,0,1501748086,0,298568.0657,445572.1604,5254367997,0,141880393.7,0 + 12/10 19:00:00,812529018.3,0,1112120938,0,298744.4837,445835.4401,4605137682,0,638461771.5,0 + 12/10 20:00:00,546990937.5,0,716711223.7,0,171248.4644,255565.0017,2800230639,0,638461771.5,702307948.6 + 12/10 21:00:00,578094943.8,0,763251239,0,171200.8231,255493.9036,2877447199,0,496581377.8,702307948.6 + 12/10 22:00:00,622979066.4,0,830683345.1,0,85647.93119,127817.8684,2222139290,0,354700984.2,702307948.6 + 12/10 23:00:00,663233780.1,0,890815491.6,0,85430.281,127493.0551,2320573282,0,354700984.2,624273732.1 + 12/10 24:00:00,737317348.6,0,1000802560,0,42652.58082,63653.16577,2120820596,0,354700984.2,468205299.1 + 12/11 01:00:00,887640931.1,0,1224247963,0,42575.5543,63538.21418,2493898460,0,212820590.5,234102649.5 + 12/11 02:00:00,411822613,0,552820860.4,0,21228.03577,31679.95122,1155112227,0,141880393.7,0 + 12/11 03:00:00,807697136.8,0,1126973887,0,21214.44258,31659.66524,2125017812,0,141880393.7,0 + 12/11 04:00:00,846661126.1,0,1181345896,0,21130.50235,31534.39588,2217600656,0,141880393.7,0 + 12/11 05:00:00,895688670.4,0,1251848630,0,21027.52842,31380.72131,2336206999,0,141880393.7,0 + 12/11 06:00:00,932109450.9,0,1303762893,0,20981.7789,31312.44639,2424131555,0,141880393.7,0 + 12/11 07:00:00,918003836.6,0,1280300217,0,83549.80753,124686.7047,2947955498,0,141880393.7,156068433 + 12/11 08:00:00,863399352.5,0,1153209348,0,334582.1133,499318.2197,5018649899,0,567521574.6,390171082.6 + 12/11 09:00:00,805108921.8,0,1036543234,0,295012.3974,440265.8098,4488653702,0,567521574.6,390171082.6 + 12/11 10:00:00,811320045,0,1168595214,0,211938.3871,316289.1677,3881534456,0,283760787.3,0 + 12/11 11:00:00,671004574.2,0,1119378108,0,169824.2862,253439.6098,3314132708,0,283760787.3,0 + 12/11 12:00:00,578916551.2,0,1108582839,0,85072.4981,126959.1129,2450813190,0,283760787.3,0 + 12/11 13:00:00,653830516.4,0,1117627628,0,85355.56676,127381.5543,2537311780,0,283760787.3,0 + 12/11 14:00:00,632515676.8,0,1040752601,0,85330.4236,127344.0316,2438896316,0,283760787.3,0 + 12/11 15:00:00,740916257.5,0,1088216183,0,127957.7425,190959.4973,2977234503,0,283760787.3,0 + 12/11 16:00:00,837263020.1,0,1193208813,0,213262.9041,318265.8288,3943975272,0,283760787.3,0 + 12/11 17:00:00,872377407.1,0,1259684021,0,213199.4528,318171.1364,4044995549,0,354700984.2,0 + 12/11 18:00:00,914798971.1,0,1317904068,0,298568.0657,445572.1604,4911607853,0,141880393.7,0 + 12/11 19:00:00,690845475.8,0,978205579.6,0,298389.9879,445306.4035,4346358065,0,638461771.5,0 + 12/11 20:00:00,462781299.3,0,632844506.9,0,170610.3233,254612.6631,2626428557,0,638461771.5,702307948.6 + 12/11 21:00:00,511273508.7,0,700119224.5,0,170711.1335,254763.1086,2743100005,0,496581377.8,702307948.6 + 12/11 22:00:00,564123302,0,774869725.1,0,85405.4957,127456.0664,2105294651,0,354700984.2,702307948.6 + 12/11 23:00:00,590618096.8,0,810950255.5,0,85503.91737,127602.9474,2168753065,0,354700984.2,624273732.1 + 12/11 24:00:00,646092463.1,0,890517346.5,0,42764.1111,63819.60952,1920311204,0,354700984.2,468205299.1 + 12/12 01:00:00,791906134.9,0,1105010470,0,42690.29544,63709.44969,2279955688,0,212820590.5,234102649.5 + 12/12 02:00:00,325686459.2,0,425401084.2,0,21326.29041,31826.58288,942437887.3,0,141880393.7,0 + 12/12 03:00:00,705582349.9,0,996315767.1,0,21294.26957,31778.79614,1892961154,0,141880393.7,0 + 12/12 04:00:00,727880551.9,0,1023188075,0,21281.25546,31759.37436,1942014894,0,141880393.7,0 + 12/12 05:00:00,729688162.2,0,1023871640,0,21287.77715,31769.10709,1944564586,0,141880393.7,0 + 12/12 06:00:00,728738789.6,0,1021179198,0,21287.77715,31769.10709,1940922771,0,141880393.7,0 + 12/12 07:00:00,675761893.6,0,941273015.9,0,85151.1086,127076.4284,2381054043,0,141880393.7,156068433 + 12/12 08:00:00,629801370.1,0,883641690.7,0,340811.7224,508615.0625,4571379487,0,567521574.6,390171082.6 + 12/12 09:00:00,753248122.8,0,1030353485,0,298832.0681,445966.1479,4464875185,0,567521574.6,390171082.6 + 12/12 10:00:00,889724840.9,0,1253227662,0,213941.1738,319278.054,4062541723,0,283760787.3,0 + 12/12 11:00:00,860258689.4,0,1214376684,0,171889.6972,256521.9544,3616917319,0,283760787.3,0 + 12/12 12:00:00,795687632.4,0,1125074723,0,86360.34081,128881.0427,2695631336,0,283760787.3,0 + 12/12 13:00:00,716951623.6,0,1029092806,0,86530.61214,129135.1494,2522441172,0,283760787.3,0 + 12/12 14:00:00,661708620.9,0,965134291.6,0,86475.02148,129052.188,2402740866,0,283760787.3,0 + 12/12 15:00:00,666318702.9,0,934011567.6,0,129540.5112,193321.564,2762633741,0,283760787.3,0 + 12/12 16:00:00,748154897.5,0,1012270716,0,215802.7061,322056.1373,3696717450,0,283760787.3,0 + 12/12 17:00:00,818878689.9,0,1144176124,0,215187.0208,321137.3109,3893822408,0,354700984.2,0 + 12/12 18:00:00,893580717.7,0,1252789769,0,300573.6387,448565.2048,4843270323,0,141880393.7,0 + 12/12 19:00:00,714780149.1,0,982307753.2,0,298744.4837,445835.4401,4377575628,0,638461771.5,0 + 12/12 20:00:00,542583765.8,0,721570266.6,0,169824.2862,253439.6098,2787904058,0,638461771.5,702307948.6 + 12/12 21:00:00,645379258.4,0,870904520.9,0,169044.0188,252275.1671,3033032849,0,496581377.8,702307948.6 + 12/12 22:00:00,754512275.8,0,1030018784,0,84079.88003,125477.7657,2538938584,0,354700984.2,702307948.6 + 12/12 23:00:00,843463430.1,0,1158848426,0,83645.52832,124829.5549,2752822156,0,354700984.2,624273732.1 + 12/12 24:00:00,963260281,0,1333192155,0,41562.2732,62026.03019,2669370328,0,354700984.2,468205299.1 + 12/13 01:00:00,1130352700,0,1578700860,0,41562.2732,62026.03019,3081971452,0,212820590.5,234102649.5 + 12/13 02:00:00,637151612.3,0,876261625.8,0,20722.17019,30925.01576,1699343107,0,141880393.7,0 + 12/13 03:00:00,1079279548,0,1516520399,0,20600.7607,30743.82864,2780640469,0,141880393.7,0 + 12/13 04:00:00,1122266638,0,1578856571,0,20556.31097,30677.49347,2885564905,0,141880393.7,0 + 12/13 05:00:00,1161030432,0,1633661483,0,20474.90681,30556.00885,2978403211,0,141880393.7,0 + 12/13 06:00:00,1178247990,0,1656818580,0,20511.30493,30610.32809,3019104449,0,141880393.7,0 + 12/13 07:00:00,1136075384,0,1591425182,0,81972.59665,122332.9323,3463000471,0,141880393.7,156068433 + 12/13 08:00:00,1083727770,0,1465382544,0,327890.3866,489331.7293,5491109931,0,567521574.6,390171082.6 + 12/13 09:00:00,1051892452,0,1380513683,0,287411.2278,428922.0998,5011206115,0,567521574.6,390171082.6 + 12/13 10:00:00,1076358520,0,1556422958,0,205919.1577,307306.2879,4480393082,0,283760787.3,0 + 12/13 11:00:00,919927940.7,0,1522147852,0,165296.2837,246682.183,3925198273,0,283760787.3,0 + 12/13 12:00:00,824542687.6,0,1569797681,0,82543.65113,123185.1533,3134964065,0,283760787.3,0 + 12/13 13:00:00,815696746.2,0,1592459440,0,82578.57389,123237.2708,3149093227,0,283760787.3,0 + 12/13 14:00:00,895833307.4,0,1519166446,0,82648.14187,123341.0915,3156560993,0,283760787.3,0 + 12/13 15:00:00,1017245629,0,1477734640,0,124230.641,185397.3061,3609640879,0,283760787.3,0 + 12/13 16:00:00,1248471078,0,1725667408,0,206446.4347,308093.177,4826481088,0,283760787.3,0 + 12/13 17:00:00,1375382656,0,1954988919,0,206007.607,307438.2864,5178776792,0,354700984.2,0 + 12/13 18:00:00,1447949077,0,2053948076,0,287913.4407,429671.5841,6085203242,0,141880393.7,0 + 12/13 19:00:00,1245983196,0,1745260422,0,286776.5427,427974.9188,5564348879,0,638461771.5,0 + 12/13 20:00:00,1017170235,0,1398441302,0,164234.9873,245098.3427,3889211525,0,638461771.5,702307948.6 + 12/13 21:00:00,1072757333,0,1476917212,0,164090.4394,244882.6247,4021977576,0,496581377.8,702307948.6 + 12/13 22:00:00,1143455202,0,1578632541,0,81899.62723,122224.0354,3456932929,0,354700984.2,702307948.6 + 12/13 23:00:00,1190707347,0,1646000703,0,81789.52985,122059.7301,3570565386,0,354700984.2,624273732.1 + 12/13 24:00:00,1263531783,0,1752180034,0,40802.17118,60891.68148,3381809686,0,354700984.2,468205299.1 + 12/14 01:00:00,1378333608,0,1922124352,0,41040.70025,61247.65362,3668696034,0,212820590.5,234102649.5 + 12/14 02:00:00,828155407.3,0,1141196987,0,20591.91577,30730.62879,2154113555,0,141880393.7,0 + 12/14 03:00:00,1196847172,0,1672759165,0,20644.64347,30809.3177,3054840598,0,141880393.7,0 + 12/14 04:00:00,1174789054,0,1640257385,0,20730.66614,30937.69482,3001052538,0,141880393.7,0 + 12/14 05:00:00,1145970788,0,1597619479,0,20789.46337,31025.44167,2930123925,0,141880393.7,0 + 12/14 06:00:00,1107831114,0,1541755264,0,20887.45188,31171.67617,2836999239,0,141880393.7,0 + 12/14 07:00:00,1016499217,0,1406895523,0,20950.75154,31266.14229,2611375558,0,141880393.7,156068433 + 12/14 08:00:00,947512325.5,0,1280893270,0,84140.24021,125567.845,2983354702,0,567521574.6,390171082.6 + 12/14 09:00:00,968674666.9,0,1306926284,0,211869.1392,316185.8247,4176598820,0,567521574.6,390171082.6 + 12/14 10:00:00,1026316481,0,1436931485,0,212415.1417,317000.659,4369144849,0,283760787.3,0 + 12/14 11:00:00,1015761442,0,1431517283,0,212548.7726,317200.0849,4354374612,0,283760787.3,0 + 12/14 12:00:00,1014762888,0,1424593980,0,127804.3959,190730.6484,3586083028,0,283760787.3,0 + 12/14 13:00:00,936536332.4,0,1334555365,0,127995.6354,191016.0474,3419533755,0,283760787.3,0 + 12/14 14:00:00,920869597.9,0,1299403481,0,128292.3333,191458.8286,3371377262,0,283760787.3,0 + 12/14 15:00:00,942747856.9,0,1317186862,0,128255.8761,191404.4211,3410711789,0,283760787.3,0 + 12/14 16:00:00,963482739.2,0,1342529305,0,299601.4404,447114.3313,4994188823,0,283760787.3,0 + 12/14 17:00:00,942337525.7,0,1310318159,0,384657.7143,574049.2318,5704000690,0,354700984.2,0 + 12/14 18:00:00,980913267.5,0,1367945058,0,299517.6433,446989.2756,5036283233,0,141880393.7,0 + 12/14 19:00:00,783275222.9,0,1073023348,0,299005.9835,446225.693,4539132607,0,638461771.5,0 + 12/14 20:00:00,547819971.9,0,721564486.2,0,256290.843,382479.1654,3568956488,0,638461771.5,702307948.6 + 12/14 21:00:00,587824056.8,0,780563257,0,213637.3663,318824.6627,3285250618,0,496581377.8,702307948.6 + 12/14 22:00:00,617706430.5,0,825663128.5,0,171343.0167,255706.1082,2980746409,0,354700984.2,702307948.6 + 12/14 23:00:00,618014098,0,826985396.4,0,128783.568,192191.9295,2600511286,0,354700984.2,624273732.1 + 12/14 24:00:00,649516362.6,0,874720605,0,85988.66956,128326.374,2295771124,0,354700984.2,468205299.1 + 12/15 01:00:00,757497274.7,0,1036783705,0,43058.56142,64259.03651,2180624332,0,212820590.5,234102649.5 + 12/15 02:00:00,222516438,0,280914361.3,0,21539.73299,32145.11685,696696258.8,0,141880393.7,0 + 12/15 03:00:00,592021528.3,0,819296719.2,0,21604.56568,32241.87082,1605165419,0,141880393.7,0 + 12/15 04:00:00,600150559.5,0,826400724.6,0,21544.91162,32152.84525,1619863209,0,141880393.7,0 + 12/15 05:00:00,616269901,0,849984518.7,0,21529.28071,32129.51825,1659426096,0,141880393.7,0 + 12/15 06:00:00,613527123,0,845918818.4,0,21544.91162,32152.84525,1652757866,0,141880393.7,0 + 12/15 07:00:00,545622706.2,0,745059825.1,0,21575.31518,32198.21842,1484267252,0,141880393.7,156068433 + 12/15 08:00:00,658922805.4,0,897258003.5,0,21575.31518,32198.21842,1749765530,0,567521574.6,390171082.6 + 12/15 09:00:00,532329570.3,0,715831072.5,0,86281.31085,128763.1012,2022320526,0,567521574.6,390171082.6 + 12/15 10:00:00,544515445,0,783312866.6,0,129421.9663,193144.6519,2489068137,0,283760787.3,0 + 12/15 11:00:00,405410644.6,0,733452061.3,0,129511.1638,193277.767,2300902857,0,283760787.3,0 + 12/15 12:00:00,397703464,0,816168616.1,0,86074.80832,128454.9244,1986179118,0,283760787.3,0 + 12/15 13:00:00,497647626.2,0,913540939,0,85944.84862,128260.9772,2182329538,0,283760787.3,0 + 12/15 14:00:00,577392202,0,922345017,0,128783.568,192191.9295,2655249010,0,283760787.3,0 + 12/15 15:00:00,670445660.5,0,969173924.3,0,171343.0167,255706.1082,3176996434,0,283760787.3,0 + 12/15 16:00:00,808058364.8,0,1125865906,0,213941.1738,319278.054,3853513491,0,283760787.3,0 + 12/15 17:00:00,904073808.9,0,1282902956,0,254978.5219,380520.705,4474773982,0,354700984.2,0 + 12/15 18:00:00,1028385409,0,1460090763,0,295320.7692,440726.0127,5138244586,0,141880393.7,0 + 12/15 19:00:00,873362163.6,0,1222525205,0,168578.5128,251580.4628,3608459680,0,638461771.5,0 + 12/15 20:00:00,679164079.9,0,927534016.8,0,125751.2857,187666.6613,2735002706,0,638461771.5,702307948.6 + 12/15 21:00:00,736104338,0,1008606767,0,84019.09263,125387.0488,2498573214,0,496581377.8,702307948.6 + 12/15 22:00:00,773834253.6,0,1063031448,0,84140.24021,125567.845,2591814809,0,354700984.2,702307948.6 + 12/15 23:00:00,829106671.1,0,1143775954,0,83677.23038,124876.8659,2723677372,0,354700984.2,624273732.1 + 12/15 24:00:00,928111519.4,0,1289132174,0,83420.75719,124494.1146,2965737232,0,354700984.2,468205299.1 + 12/16 01:00:00,1044620320,0,1461302445,0,41948.12275,62601.85808,2882302696,0,212820590.5,234102649.5 + 12/16 02:00:00,569036993.6,0,793748157.1,0,20789.46337,31025.44167,1549318809,0,141880393.7,0 + 12/16 03:00:00,986397676.8,0,1390075957,0,20764.4099,30988.05277,2562782499,0,141880393.7,0 + 12/16 04:00:00,1000808616,0,1411301964,0,20781.1366,31013.01509,2598569526,0,141880393.7,0 + 12/16 05:00:00,1008359949,0,1420934744,0,20756.01013,30975.51726,2615528192,0,141880393.7,0 + 12/16 06:00:00,1009461476,0,1421319395,0,20781.1366,31013.01509,2617239817,0,141880393.7,0 + 12/16 07:00:00,973169312.5,0,1365673605,0,82820.42732,123598.2041,3081949990,0,141880393.7,156068433 + 12/16 08:00:00,953716532.8,0,1304444887,0,329894.119,492322.027,5218139545,0,567521574.6,390171082.6 + 12/16 09:00:00,931025153.9,0,1248567922,0,291400.1503,434875.0231,4794183700,0,567521574.6,390171082.6 + 12/16 10:00:00,1007218780,0,1442428916,0,209272.0737,312310.0583,4327343371,0,283760787.3,0 + 12/16 11:00:00,912811609.4,0,1402923837,0,167543.4354,250035.7507,3819020516,0,283760787.3,0 + 12/16 12:00:00,653790217.6,0,1265927498,0,84289.2564,125790.2314,2676003872,0,283760787.3,0 + 12/16 13:00:00,551803538.7,0,1184851002,0,84406.51242,125965.22,2493992777,0,283760787.3,0 + 12/16 14:00:00,537357860.9,0,1028349479,0,84522.00941,126137.5835,2324081874,0,283760787.3,0 + 12/16 15:00:00,651165959.3,0,985168483.9,0,126783.0141,189206.3753,2773896245,0,283760787.3,0 + 12/16 16:00:00,869571422,0,1226408398,0,210574.9359,314254.4026,3985365438,0,283760787.3,0 + 12/16 17:00:00,972207887.9,0,1418936528,0,210275.2842,313807.2131,4277841407,0,354700984.2,0 + 12/16 18:00:00,1038875424,0,1510196675,0,293636.8593,438213.0065,5183731616,0,141880393.7,0 + 12/16 19:00:00,819959804.2,0,1176736429,0,293636.8593,438213.0065,4631355750,0,638461771.5,0 + 12/16 20:00:00,607533333.5,0,853976139,0,167291.0566,249659.1098,2962530072,0,638461771.5,702307948.6 + 12/16 21:00:00,655943392.6,0,921116631.8,0,167915.7607,250591.3955,3083685787,0,496581377.8,702307948.6 + 12/16 22:00:00,740313554.1,0,1041271995,0,83517.69675,124638.7837,2530948879,0,354700984.2,702307948.6 + 12/16 23:00:00,815585916.8,0,1147262294,0,83322.91329,124348.0959,2710463844,0,354700984.2,624273732.1 + 12/16 24:00:00,908576188.9,0,1280137779,0,41545.57082,62001.10417,2561481998,0,354700984.2,468205299.1 + 12/17 01:00:00,1072925796,0,1520162903,0,41478.27635,61900.67633,2965252929,0,212820590.5,234102649.5 + 12/17 02:00:00,597132067.9,0,845440755.4,0,20635.91278,30796.28833,1627728747,0,141880393.7,0 + 12/17 03:00:00,1015090613,0,1444709878,0,20670.69661,30848.19845,2645268513,0,141880393.7,0 + 12/17 04:00:00,1049177377,0,1490887330,0,20627.15908,30783.22462,2725142088,0,141880393.7,0 + 12/17 05:00:00,1071341570,0,1518901005,0,20635.91278,30796.28833,2775398499,0,141880393.7,0 + 12/17 06:00:00,1092864710,0,1546707964,0,20600.7607,30743.82864,2824413196,0,141880393.7,0 + 12/17 07:00:00,1052303370,0,1482934364,0,82367.6631,122922.5152,3274282376,0,141880393.7,156068433 + 12/17 08:00:00,1009275897,0,1378150644,0,329186.5315,491266.049,5341055831,0,567521574.6,390171082.6 + 12/17 09:00:00,929861678,0,1215430401,0,289991.1055,432772.2157,4747240035,0,567521574.6,390171082.6 + 12/17 10:00:00,993238259,0,1431887786,0,207391.3817,309503.3816,4285947193,0,283760787.3,0 + 12/17 11:00:00,1072993758,0,1571354879,0,167099.6151,249373.4094,4143651525,0,283760787.3,0 + 12/17 12:00:00,962364592.4,0,1453162214,0,84229.97438,125701.761,3171281054,0,283760787.3,0 + 12/17 13:00:00,902587384.3,0,1374831508,0,84493.30105,126094.7402,3035535840,0,283760787.3,0 + 12/17 14:00:00,897171072.7,0,1324745383,0,84747.65569,126474.3299,2982315603,0,283760787.3,0 + 12/17 15:00:00,929059546.7,0,1329830971,0,127245.6186,189896.7495,3400603043,0,283760787.3,0 + 12/17 16:00:00,980531340.6,0,1393921848,0,212615.154,317299.1501,4282144684,0,283760787.3,0 + 12/17 17:00:00,944782071.1,0,1339756836,0,213262.9041,318265.8288,4198042346,0,354700984.2,0 + 12/17 18:00:00,956497362.5,0,1356195646,0,299263.7108,446610.3159,4997839505,0,141880393.7,0 + 12/17 19:00:00,703122863.4,0,976791839,0,299433.4222,446863.5869,4366583935,0,638461771.5,0 + 12/17 20:00:00,463481851.4,0,617859863.1,0,171007.8347,255205.8948,2615711141,0,638461771.5,702307948.6 + 12/17 21:00:00,506763080,0,681262910.4,0,171056.4444,255278.4381,2722831567,0,496581377.8,702307948.6 + 12/17 22:00:00,549116749,0,743971314.8,0,85600.41155,127746.9518,2061138572,0,354700984.2,702307948.6 + 12/17 23:00:00,565981469.5,0,768698302.4,0,85694.96343,127888.0576,2103578648,0,354700984.2,624273732.1 + 12/17 24:00:00,611175742.7,0,835810886,0,42870.75322,63978.75836,1831644870,0,354700984.2,468205299.1 + 12/18 01:00:00,734581330,0,1019434635,0,42893.77924,64013.12154,2138880808,0,212820590.5,234102649.5 + 12/18 02:00:00,208398347.6,0,274159855.6,0,21458.27943,32023.55852,675092819.8,0,141880393.7,0 + 12/18 03:00:00,606319869.4,0,853771118.9,0,21463.92801,32031.98825,1652676287,0,141880393.7,0 + 12/18 04:00:00,606074472.9,0,847660738.7,0,21475.13222,32048.709,1646421040,0,141880393.7,0 + 12/18 05:00:00,606831103.4,0,847817338.8,0,21469.54562,32040.37177,1647284145,0,141880393.7,0 + 12/18 06:00:00,594081491,0,828062647.1,0,21513.36551,32105.76698,1615173015,0,141880393.7,0 + 12/18 07:00:00,526313329.8,0,726547428.8,0,86158.93195,128580.4674,2025922596,0,141880393.7,156068433 + 12/18 08:00:00,640102706.9,0,879666171.9,0,345363.1035,515407.3788,4618542615,0,567521574.6,390171082.6 + 12/18 09:00:00,593500300,0,835123982.8,0,302329.2197,451185.1702,4141276087,0,567521574.6,390171082.6 + 12/18 10:00:00,714271495.9,0,998057660,0,216417.5532,322973.7128,3654137713,0,283760787.3,0 + 12/18 11:00:00,666252809.1,0,948068947.9,0,173380.6563,258747.0076,3169981347,0,283760787.3,0 + 12/18 12:00:00,619337619,0,897541060.9,0,86839.36465,129595.9205,2296045707,0,283760787.3,0 + 12/18 13:00:00,507420458,0,790168448,0,86947.82418,129757.7816,2077729087,0,283760787.3,0 + 12/18 14:00:00,606471113,0,865072871.1,0,86902.14454,129689.6109,2251274304,0,283760787.3,0 + 12/18 15:00:00,649762172.9,0,918728805.3,0,130259.047,194393.8808,2737241518,0,283760787.3,0 + 12/18 16:00:00,686674645.6,0,969613571.4,0,216595.6753,323239.5358,3599694977,0,283760787.3,0 + 12/18 17:00:00,688495451.7,0,969653825.2,0,216551.6363,323173.8135,3601160896,0,354700984.2,0 + 12/18 18:00:00,718777709.9,0,1013888822,0,303535.3107,452985.0967,4456139998,0,141880393.7,0 + 12/18 19:00:00,488711150.4,0,667951189.8,0,303172.2908,452443.339,3876878607,0,638461771.5,0 + 12/18 20:00:00,264787276.7,0,331273298.1,0,173205.8154,258486.0815,2150151404,0,638461771.5,702307948.6 + 12/18 21:00:00,317379247,0,407136709.6,0,173134.0425,258378.9702,2277962803,0,496581377.8,702307948.6 + 12/18 22:00:00,377051656.5,0,494303748.2,0,86530.61214,129135.1494,1647752146,0,354700984.2,702307948.6 + 12/18 23:00:00,409382815.6,0,540919841.3,0,86548.88195,129162.4147,1726863325,0,354700984.2,624273732.1 + 12/18 24:00:00,463532060.7,0,620465377.7,0,43283.51064,64594.74256,1472359150,0,354700984.2,468205299.1 + 12/19 01:00:00,592953690.7,0,812926956.4,0,43283.51064,64594.74256,1794242359,0,212820590.5,234102649.5 + 12/19 02:00:00,106044881.5,0,106446461.4,0,21646.25748,32304.09014,406712594.3,0,141880393.7,0 + 12/19 03:00:00,475046987,0,659509363.3,0,21646.25748,32304.09014,1328777602,0,141880393.7,0 + 12/19 04:00:00,477051927.9,0,658735532.4,0,21650.72693,32310.76019,1330048814,0,141880393.7,0 + 12/19 05:00:00,477879011.4,0,659293760.1,0,21650.72693,32310.76019,1331434125,0,141880393.7,0 + 12/19 06:00:00,479119066.9,0,660640692.1,0,21655.16363,32317.38135,1334060921,0,141880393.7,0 + 12/19 07:00:00,426690242.8,0,581524352,0,86620.65451,129269.5254,1785419243,0,141880393.7,156068433 + 12/19 08:00:00,593643827.8,0,801199670.7,0,346761.3125,517494.0152,4506162678,0,567521574.6,390171082.6 + 12/19 09:00:00,545060568.1,0,750194143.7,0,303416.1485,452807.2633,4017658994,0,567521574.6,390171082.6 + 12/19 10:00:00,735426798.2,0,1023218909,0,216894.7303,323685.8346,3704735740,0,283760787.3,0 + 12/19 11:00:00,721720535.9,0,1004701771,0,173548.9045,258998.0952,3283591506,0,283760787.3,0 + 12/19 12:00:00,691350013.5,0,962523448.2,0,86839.36465,129595.9205,2433040488,0,283760787.3,0 + 12/19 13:00:00,689546021,0,959675315.6,0,86823.3361,129572.0001,2428244547,0,283760787.3,0 + 12/19 14:00:00,716297390.8,0,996815066.8,0,86855.25993,129619.642,2492422105,0,283760787.3,0 + 12/19 15:00:00,720937549.9,0,1002773137,0,130235.0041,194358.0001,2892245502,0,283760787.3,0 + 12/19 16:00:00,733434601.8,0,1019409736,0,216977.1994,323808.9085,3699674326,0,283760787.3,0 + 12/19 17:00:00,708580161.6,0,981553483,0,217138.1498,324049.1051,3638407762,0,354700984.2,0 + 12/19 18:00:00,748765467.6,0,1042055228,0,303652.6224,453160.1685,4515346743,0,141880393.7,0 + 12/19 19:00:00,514843110.2,0,692060948.8,0,303652.6224,453160.1685,3931430106,0,638461771.5,0 + 12/19 20:00:00,280581735.9,0,341859405.5,0,173414.8346,258798.0142,2178407397,0,638461771.5,702307948.6 + 12/19 21:00:00,335483330.4,0,423288616.5,0,173241.309,258539.0508,2313181242,0,496581377.8,702307948.6 + 12/19 22:00:00,387738664.8,0,501383181.1,0,86620.65451,129269.5254,1666326494,0,354700984.2,702307948.6 + 12/19 23:00:00,418912365,0,547894711.8,0,86567.02127,129189.4851,1743530500,0,354700984.2,624273732.1 + 12/19 24:00:00,507409027.5,0,679331561.5,0,43120.51377,64351.49194,1573639810,0,354700984.2,468205299.1 + 12/20 01:00:00,666947965.1,0,916787699.4,0,43048.01433,64243.29641,1969984383,0,212820590.5,234102649.5 + 12/20 02:00:00,162930837.2,0,196003466.3,0,21550.05851,32160.52629,552292408.8,0,141880393.7,0 + 12/20 03:00:00,564959073.2,0,781320441.8,0,21507.9975,32097.75596,1539260228,0,141880393.7,0 + 12/20 04:00:00,622891858.7,0,869058444,0,21375.97934,31900.73685,1683746481,0,141880393.7,0 + 12/20 05:00:00,636745712.2,0,888149635,0,21423.74086,31972.0144,1717120066,0,141880393.7,0 + 12/20 06:00:00,714178170.5,0,1001264094,0,21130.50235,31534.39588,1905035898,0,141880393.7,0 + 12/20 07:00:00,665759354,0,928172388.1,0,85228.66535,127192.1712,2358646754,0,141880393.7,156068433 + 12/20 08:00:00,590298282.9,0,819079468.4,0,340604.4344,508305.7135,4465454284,0,567521574.6,390171082.6 + 12/20 09:00:00,539692854.7,0,714953140.1,0,299684.8126,447238.753,3943570831,0,567521574.6,390171082.6 + 12/20 10:00:00,519303062.3,0,760183762.5,0,215753.1518,321982.1842,3215334034,0,283760787.3,0 + 12/20 11:00:00,332304093.2,0,656340941.8,0,172950.043,258104.3759,2540440943,0,283760787.3,0 + 12/20 12:00:00,251211988.2,0,670051141.9,0,86493.68173,129080.0358,1697328513,0,283760787.3,0 + 12/20 13:00:00,356951238.4,0,739069883.7,0,86602.90772,129243.0408,1873066537,0,283760787.3,0 + 12/20 14:00:00,433872487.8,0,742705884.6,0,86360.34081,128881.0427,1951447353,0,283760787.3,0 + 12/20 15:00:00,474667892.6,0,710690346.9,0,129331.0417,193008.9593,2345782243,0,283760787.3,0 + 12/20 16:00:00,660752137.3,0,916389197,0,214751.3222,320487.09,3503999618,0,283760787.3,0 + 12/20 17:00:00,783274693.6,0,1131847569,0,214178.7709,319632.6352,3836843324,0,354700984.2,0 + 12/20 18:00:00,871396078.4,0,1252963368,0,299263.7108,446610.3159,4809505942,0,141880393.7,0 + 12/20 19:00:00,684290870.7,0,964401038.3,0,298479.2339,445439.5909,4326799678,0,638461771.5,0 + 12/20 20:00:00,482923656.4,0,656535028.6,0,170405.8612,254307.5313,2668426898,0,638461771.5,702307948.6 + 12/20 21:00:00,549996529.8,0,750536470.5,0,170302.2172,254152.8567,2828571266,0,496581377.8,702307948.6 + 12/20 22:00:00,639916415.8,0,879845692.9,0,84719.84333,126432.8237,2279911710,0,354700984.2,702307948.6 + 12/20 23:00:00,724857716.5,0,1002577358,0,84289.2564,125790.2314,2483721230,0,354700984.2,624273732.1 + 12/20 24:00:00,805259526.2,0,1119366557,0,42159.36717,62917.11159,2302901407,0,354700984.2,468205299.1 + 12/21 01:00:00,975813027.2,0,1370149665,0,41917.09525,62555.55376,2722064228,0,212820590.5,234102649.5 + 12/21 02:00:00,691221617.3,0,980292062.4,0,20966.31759,31289.3725,1859634164,0,141880393.7,0 + 12/21 03:00:00,902149893.4,0,1275869067,0,20927.20737,31231.00583,2365788528,0,141880393.7,0 + 12/21 04:00:00,961713355.4,0,1360943198,0,20730.66614,30937.69482,2508662653,0,141880393.7,0 + 12/21 05:00:00,1016200985,0,1438816471,0,20644.64347,30809.3177,2640251716,0,141880393.7,0 + 12/21 06:00:00,1058781719,0,1499493544,0,20538.37471,30650.72605,2742556025,0,141880393.7,0 + 12/21 07:00:00,1061987475,0,1500866632,0,20391.76357,30431.9289,2745819400,0,141880393.7,156068433 + 12/21 08:00:00,1044515461,0,1433936370,0,81529.6835,121671.9448,3209977692,0,567521574.6,390171082.6 + 12/21 09:00:00,933918637.7,0,1223004790,0,205919.1577,307306.2879,4004535033,0,567521574.6,390171082.6 + 12/21 10:00:00,865566452.9,0,1262643754,0,208225.2479,310747.8133,3996513227,0,283760787.3,0 + 12/21 11:00:00,678784807.6,0,1174527384,0,210123.849,313581.2167,3738650428,0,283760787.3,0 + 12/21 12:00:00,559013250.8,0,1156396712,0,126566.0439,188882.5769,2851024997,0,283760787.3,0 + 12/21 13:00:00,653857227.9,0,1220500208,0,126653.3284,189012.837,3010755631,0,283760787.3,0 + 12/21 14:00:00,657768107,0,1126911869,0,126825.9101,189270.3917,2922626663,0,283760787.3,0 + 12/21 15:00:00,758096936.9,0,1109364483,0,126953.5945,189460.9433,3006553756,0,283760787.3,0 + 12/21 16:00:00,962743712.5,0,1349876901,0,296323.5802,442222.5714,4971386759,0,283760787.3,0 + 12/21 17:00:00,1013527744,0,1439451634,0,381364.4506,569134.4844,5874775544,0,354700984.2,0 + 12/21 18:00:00,1051449868,0,1489440074,0,296906.4435,443092.4155,5204885834,0,141880393.7,0 + 12/21 19:00:00,846693308.8,0,1179980782,0,297002.1962,443235.3134,4691529125,0,638461771.5,0 + 12/21 20:00:00,613051368.6,0,828617209.5,0,254491.2373,379793.499,3725093629,0,638461771.5,702307948.6 + 12/21 21:00:00,673255458.9,0,915029667.7,0,211799.6083,316082.0593,3488659130,0,496581377.8,702307948.6 + 12/21 22:00:00,753027102.2,0,1030398600,0,168871.1045,252017.1161,3298623296,0,354700984.2,702307948.6 + 12/21 23:00:00,813479048.1,0,1117513795,0,126165.1705,188284.3279,3063011037,0,354700984.2,624273732.1 + 12/21 24:00:00,890131082.2,0,1229940693,0,84079.88003,125477.7657,2874479299,0,354700984.2,468205299.1 + 12/22 01:00:00,1024714841,0,1429351158,0,42070.12011,62783.92251,2831540552,0,212820590.5,234102649.5 + 12/22 02:00:00,559635508,0,778058294.7,0,20847.06066,31111.39777,1524744253,0,141880393.7,0 + 12/22 03:00:00,948525211.1,0,1331664832,0,20935.08134,31242.75665,2468030260,0,141880393.7,0 + 12/22 04:00:00,966123275.3,0,1357880186,0,20871.37114,31147.67785,2511272038,0,141880393.7,0 + 12/22 05:00:00,972395120,0,1366063012,0,20887.45188,31171.67617,2525870993,0,141880393.7,0 + 12/22 06:00:00,961148952.4,0,1349004025,0,20919.3076,31219.21648,2497851664,0,141880393.7,0 + 12/22 07:00:00,892269628,0,1246244479,0,20958.54762,31277.77688,2326564875,0,141880393.7,156068433 + 12/22 08:00:00,841609393.2,0,1148703093,0,21019.97001,31369.44142,2178914368,0,567521574.6,390171082.6 + 12/22 09:00:00,943432988.4,0,1295976680,0,84170.25937,125612.6445,2994628122,0,567521574.6,390171082.6 + 12/22 10:00:00,1041493545,0,1466116243,0,126825.9101,189270.3917,3645556474,0,283760787.3,0 + 12/22 11:00:00,961630796,0,1370025767,0,127163.0323,189773.5006,3472628082,0,283760787.3,0 + 12/22 12:00:00,896713885.6,0,1293909508,0,85072.4981,126959.1129,2953937194,0,283760787.3,0 + 12/22 13:00:00,850178443.5,0,1228362327,0,85380.59087,127418.8994,2844618935,0,283760787.3,0 + 12/22 14:00:00,834470017.9,0,1190779034,0,128328.6095,191512.9658,3176678723,0,283760787.3,0 + 12/22 15:00:00,810984567.6,0,1143079364,0,171295.8624,255635.7368,3491017689,0,283760787.3,0 + 12/22 16:00:00,878776556.1,0,1227375379,0,213513.7392,318640.1661,4021905994,0,283760787.3,0 + 12/22 17:00:00,891147832.5,0,1251330097,0,256216.4871,382368.1993,4441382801,0,354700984.2,0 + 12/22 18:00:00,956779878.1,0,1347897218,0,297474.9422,443940.8225,4973773849,0,141880393.7,0 + 12/22 19:00:00,746950722.5,0,1034156766,0,170610.3233,254612.6631,3311910239,0,638461771.5,0 + 12/22 20:00:00,476605116.5,0,630629231.6,0,128255.8761,191404.4211,2258011418,0,638461771.5,702307948.6 + 12/22 21:00:00,416543475.1,0,541829744.3,0,86673.10709,129347.8037,1736048498,0,496581377.8,702307948.6 + 12/22 22:00:00,393851721.7,0,508948245.2,0,86774.45226,129499.0476,1681384566,0,354700984.2,702307948.6 + 12/22 23:00:00,408507879.8,0,531130050.2,0,86790.87974,129523.5634,1718369925,0,354700984.2,624273732.1 + 12/22 24:00:00,454730887.2,0,600522772.2,0,86807.17441,129547.8809,1834131859,0,354700984.2,468205299.1 + 12/23 01:00:00,576624814.8,0,783140186.3,0,43411.66805,64786.00003,1749276606,0,212820590.5,234102649.5 + 12/23 02:00:00,84292161.53,0,79126570.85,0,21697.71994,32380.89085,358101731.2,0,141880393.7,0 + 12/23 03:00:00,461952414.8,0,630640032.5,0,21693.61306,32374.7619,1287238597,0,141880393.7,0 + 12/23 04:00:00,460739174,0,631089201.6,0,21705.83402,32393.00002,1286584178,0,141880393.7,0 + 12/23 05:00:00,450720164.7,0,615706363.3,0,21721.66251,32416.62187,1261324352,0,141880393.7,0 + 12/23 06:00:00,444828987.3,0,606856670,0,21721.66251,32416.62187,1246583481,0,141880393.7,0 + 12/23 07:00:00,390554124.2,0,525738571.2,0,86886.65002,129666.4875,1695883990,0,141880393.7,156068433 + 12/23 08:00:00,544974390.6,0,743991636.6,0,347546.6001,518665.9499,4407331207,0,567521574.6,390171082.6 + 12/23 09:00:00,639834261.7,0,872276730.5,0,304157.5059,453913.6383,4241167111,0,567521574.6,390171082.6 + 12/23 10:00:00,635344506.1,0,887232289.8,0,217216.6251,324166.2187,3471555033,0,283760787.3,0 + 12/23 11:00:00,587223203.3,0,840746197.6,0,173865.4635,259470.5164,2987978929,0,283760787.3,0 + 12/23 12:00:00,512533086.5,0,788706637.9,0,86932.73176,129735.2582,2081244488,0,283760787.3,0 + 12/23 13:00:00,516247922,0,795289940.7,0,86932.73176,129735.2582,2091542627,0,283760787.3,0 + 12/23 14:00:00,570811922.3,0,821433932.3,0,86977.60589,129802.2267,2172653252,0,283760787.3,0 + 12/23 15:00:00,587135889.7,0,825774353.5,0,130399.0976,194602.8873,2582917389,0,283760787.3,0 + 12/23 16:00:00,658942870.4,0,914547885.3,0,217098.4116,323989.8013,3521408322,0,283760787.3,0 + 12/23 17:00:00,682803845.2,0,954399985.2,0,216894.7303,323685.8346,3583293864,0,354700984.2,0 + 12/23 18:00:00,720392688.7,0,1008762052,0,303937.7763,453585.7218,4456239334,0,141880393.7,0 + 12/23 19:00:00,484601791,0,654396193,0,303825.1104,453417.5833,3865071681,0,638461771.5,0 + 12/23 20:00:00,267361123,0,328182985.7,0,173346.2142,258695.6075,2150894667,0,638461771.5,702307948.6 + 12/23 21:00:00,337619008.4,0,431077945.3,0,173061.2243,258270.2989,2321490437,0,496581377.8,702307948.6 + 12/23 22:00:00,411825643.8,0,540342350.3,0,86418.26274,128967.4833,1727556680,0,354700984.2,702307948.6 + 12/23 23:00:00,472471347,0,629116016.3,0,86200.23404,128642.1052,1875019784,0,354700984.2,624273732.1 + 12/23 24:00:00,555159954.9,0,750539105.2,0,43048.01433,64243.29641,1691947779,0,354700984.2,468205299.1 + 12/24 01:00:00,730282156.8,0,1009014605,0,42859.1481,63961.43929,2123850876,0,212820590.5,234102649.5 + 12/24 02:00:00,248649760.2,0,319201393.5,0,21394.11738,31927.8054,759810075.7,0,141880393.7,0 + 12/24 03:00:00,596773879.3,0,833213913.8,0,21585.19397,32212.96117,1623661152,0,141880393.7,0 + 12/24 04:00:00,594657290.6,0,824661008.9,0,21507.9975,32097.75596,1612299012,0,141880393.7,0 + 12/24 05:00:00,634004578.1,0,881349023.4,0,21452.59995,32015.08267,1707837259,0,141880393.7,0 + 12/24 06:00:00,662498940.9,0,922087188.5,0,21417.87709,31963.26352,1776758236,0,141880393.7,0 + 12/24 07:00:00,647804598,0,897970769.9,0,85330.4236,127344.0316,2311403406,0,141880393.7,156068433 + 12/24 08:00:00,639045469.6,0,879526867.7,0,338655.5202,505397.2245,4557162218,0,567521574.6,390171082.6 + 12/24 09:00:00,580922505.8,0,780548425,0,299684.8126,447238.753,4050395767,0,567521574.6,390171082.6 + 12/24 10:00:00,519321709.9,0,752376520.6,0,215397.3299,321451.1685,3204352825,0,283760787.3,0 + 12/24 11:00:00,336922534.1,0,686053024.6,0,172642.1649,257644.9099,2572009028,0,283760787.3,0 + 12/24 12:00:00,197315855.4,0,685724894.9,0,86360.34081,128881.0427,1657909731,0,283760787.3,0 + 12/24 13:00:00,127266211.8,0,644087618.6,0,86530.61214,129135.1494,1547750572,0,283760787.3,0 + 12/24 14:00:00,166675797.5,0,518127553.9,0,86567.02127,129189.4851,1461526774,0,283760787.3,0 + 12/24 15:00:00,301696628.3,0,501048965.7,0,129598.6266,193408.2934,1965570506,0,283760787.3,0 + 12/24 16:00:00,519574373.1,0,731768589.3,0,215397.3299,321451.1685,3183997557,0,283760787.3,0 + 12/24 17:00:00,652867744.6,0,972387798.7,0,214917.0539,320734.422,3553600856,0,354700984.2,0 + 12/24 18:00:00,737943259.3,0,1089426083,0,300256.4547,448091.8508,4521423242,0,141880393.7,0 + 12/24 19:00:00,557112481,0,808040163.6,0,299433.4222,446863.5869,4051821877,0,638461771.5,0 + 12/24 20:00:00,350450772.6,0,489682317.3,0,171343.0167,255706.1082,2377509939,0,638461771.5,702307948.6 + 12/24 21:00:00,398026788.2,0,551990728.9,0,171711.4241,256255.906,2490699905,0,496581377.8,702307948.6 + 12/24 22:00:00,468962520.9,0,649930986.6,0,85764.59395,127991.9717,1888417144,0,354700984.2,702307948.6 + 12/24 23:00:00,510962606.6,0,705180124.4,0,85900.52887,128194.836,1986886045,0,354700984.2,624273732.1 + 12/24 24:00:00,570933892,0,788482457.6,0,42972.42431,64130.4886,1744986836,0,354700984.2,468205299.1 + 12/25 01:00:00,708865927.4,0,989219213.6,0,42983.41077,64146.8844,2083754204,0,212820590.5,234102649.5 + 12/25 02:00:00,201431205.7,0,264834488.8,0,21491.70539,32073.4422,659100225.8,0,141880393.7,0 + 12/25 03:00:00,604450083.2,0,850165475.8,0,21502.59811,32089.69811,1647547825,0,141880393.7,0 + 12/25 04:00:00,610722617,0,853819939.4,0,21507.9975,32097.75596,1657523269,0,141880393.7,0 + 12/25 05:00:00,615795713.2,0,858561251.6,0,21507.9975,32097.75596,1667337677,0,141880393.7,0 + 12/25 06:00:00,628374674.2,0,873380407.6,0,21524.00717,32121.6482,1694879441,0,141880393.7,0 + 12/25 07:00:00,577452931.9,0,792953224.5,0,86220.69446,128672.6395,2144022159,0,141880393.7,156068433 + 12/25 08:00:00,696983908.8,0,955963107.6,0,345363.1035,515407.3788,4751720753,0,567521574.6,390171082.6 + 12/25 09:00:00,636907795.3,0,886363510.7,0,302463.9196,451386.1914,4237131706,0,567521574.6,390171082.6 + 12/25 10:00:00,810271399,0,1121390737,0,216417.5532,322973.7128,3873470693,0,283760787.3,0 + 12/25 11:00:00,806554628.1,0,1121839318,0,173170.0598,258432.7211,3482163957,0,283760787.3,0 + 12/25 12:00:00,766076790.3,0,1072402085,0,86585.02992,129216.3606,2615363881,0,283760787.3,0 + 12/25 13:00:00,739539470.1,0,1039464438,0,86690.32813,129373.5038,2556833703,0,283760787.3,0 + 12/25 14:00:00,731126752,0,1024320037,0,86724.37448,129424.3133,2533582066,0,283760787.3,0 + 12/25 15:00:00,750689856.7,0,1043869930,0,130136.8382,194211.5008,2962213807,0,283760787.3,0 + 12/25 16:00:00,770610829,0,1068603050,0,216977.1994,323808.9085,3786043867,0,283760787.3,0 + 12/25 17:00:00,747487776.8,0,1033222072,0,217017.936,323869.7024,3727905347,0,354700984.2,0 + 12/25 18:00:00,778467612.8,0,1079981581,0,303825.1104,453417.5833,4584522891,0,141880393.7,0 + 12/25 19:00:00,529399865.2,0,709064969.2,0,303710.5829,453246.6666,3963510933,0,638461771.5,0 + 12/25 20:00:00,278910092.6,0,335925141.6,0,173548.9045,258998.0952,2172004433,0,638461771.5,702307948.6 + 12/25 21:00:00,320081543.2,0,397625225.1,0,173515.7842,258948.6677,2274578795,0,496581377.8,702307948.6 + 12/25 22:00:00,364906129.2,0,465328610.1,0,86741.19947,129449.4223,1608520978,0,354700984.2,702307948.6 + 12/25 23:00:00,405726939.5,0,526272633.8,0,86741.19947,129449.4223,1710285812,0,354700984.2,624273732.1 + 12/25 24:00:00,461099995.2,0,608281072.4,0,43403.5872,64773.94047,1458820167,0,354700984.2,468205299.1 + 12/26 01:00:00,585618436.1,0,794112193.2,0,43411.66805,64786.00003,1769242234,0,212820590.5,234102649.5 + 12/26 02:00:00,87940775.89,0,80669954.45,0,21705.83402,32393.00002,363366532.9,0,141880393.7,0 + 12/26 03:00:00,452730082,0,616196482,0,21713.81498,32404.91051,1263753976,0,141880393.7,0 + 12/26 04:00:00,455135939.1,0,621494898.3,0,21709.84116,32398.98013,1271422594,0,141880393.7,0 + 12/26 05:00:00,459409390.1,0,627559807.4,0,21701.7936,32386.97024,1281688747,0,141880393.7,0 + 12/26 06:00:00,459014131.6,0,626929971.8,0,21705.83402,32393.00002,1280699906,0,141880393.7,0 + 12/26 07:00:00,416127915.5,0,562557230.9,0,86724.37448,129424.3133,1756820423,0,141880393.7,156068433 + 12/26 08:00:00,578459546.9,0,775327225.2,0,346897.4979,517697.2534,4466327877,0,567521574.6,390171082.6 + 12/26 09:00:00,654523862.2,0,890256817.5,0,303355.8748,452717.3131,4266644156,0,567521574.6,390171082.6 + 12/26 10:00:00,589370417.6,0,837061387,0,216682.7677,323369.5094,3370620002,0,283760787.3,0 + 12/26 11:00:00,466532736.9,0,755657135.7,0,173311.5087,258643.8143,2777229036,0,283760787.3,0 + 12/26 12:00:00,549303877,0,850206755.2,0,86690.32813,129373.5038,2177340427,0,283760787.3,0 + 12/26 13:00:00,567624879.4,0,870389632.7,0,86707.41731,129399.0071,2215997640,0,283760787.3,0 + 12/26 14:00:00,557309215,0,835076934.5,0,86673.10709,129347.8037,2170061429,0,283760787.3,0 + 12/26 15:00:00,548243921.6,0,782170437,0,129930.9818,193904.2881,2496221330,0,283760787.3,0 + 12/26 16:00:00,683558636.6,0,939747748.3,0,216045.6568,322418.7082,3561778099,0,283760787.3,0 + 12/26 17:00:00,742117164,0,1045111833,0,215997.7111,322347.1556,3725270517,0,354700984.2,0 + 12/26 18:00:00,816353690.8,0,1151279777,0,301483.3174,449922.7762,4672695404,0,141880393.7,0 + 12/26 19:00:00,614817819.9,0,846554062.4,0,301036.3736,449255.7735,4162423612,0,638461771.5,0 + 12/26 20:00:00,406913913.7,0,533023358.6,0,171666.2355,256188.4682,2480214205,0,638461771.5,702307948.6 + 12/26 21:00:00,491372655.8,0,655641653.4,0,171056.4444,255278.4381,2681819886,0,496581377.8,702307948.6 + 12/26 22:00:00,562184825.9,0,758932210.3,0,85552.40633,127675.3106,2088736817,0,354700984.2,702307948.6 + 12/26 23:00:00,631777337.3,0,859941171.9,0,85072.4981,126959.1129,2255032309,0,354700984.2,624273732.1 + 12/26 24:00:00,760975111.1,0,1049057854,0,42217.77614,63004.27901,2188832364,0,354700984.2,468205299.1 + 12/27 01:00:00,923132328.5,0,1288261027,0,42261.00471,63068.79177,2590580622,0,212820590.5,234102649.5 + 12/27 02:00:00,442164603.9,0,602414651.8,0,21050.04271,31414.32083,1233450964,0,141880393.7,0 + 12/27 03:00:00,868237323.4,0,1224385480,0,20974.06138,31300.92904,2280812769,0,141880393.7,0 + 12/27 04:00:00,896692811.2,0,1262330178,0,20989.47008,31323.92444,2347351209,0,141880393.7,0 + 12/27 05:00:00,918671384.9,0,1291953496,0,20942.92942,31254.46884,2398535515,0,141880393.7,0 + 12/27 06:00:00,951713423.3,0,1338295978,0,20863.29282,31135.62206,2477205494,0,141880393.7,0 + 12/27 07:00:00,937124609.9,0,1314173627,0,83057.63958,123952.2111,2996533699,0,141880393.7,156068433 + 12/27 08:00:00,910752651.6,0,1233682800,0,331281.7093,494392.8163,5116863743,0,567521574.6,390171082.6 + 12/27 09:00:00,855980209.9,0,1099737704,0,291284.6073,434702.591,4569271828,0,567521574.6,390171082.6 + 12/27 10:00:00,825115574.8,0,1188859679,0,210047.7316,313467.6219,3898630527,0,283760787.3,0 + 12/27 11:00:00,653743929.8,0,1130078871,0,168400.3417,251314.5667,3294796471,0,283760787.3,0 + 12/27 12:00:00,591577406.3,0,1191194829,0,84318.73434,125834.2232,2539322882,0,283760787.3,0 + 12/27 13:00:00,578637648.1,0,1192807435,0,84464.48191,126051.7316,2529303452,0,283760787.3,0 + 12/27 14:00:00,602336233.5,0,1099766407,0,84607.46713,126265.1175,2461243945,0,283760787.3,0 + 12/27 15:00:00,708260225.2,0,1068075601,0,126783.0141,189206.3753,2913897628,0,283760787.3,0 + 12/27 16:00:00,923073035.9,0,1282352147,0,210796.8358,314585.5579,4096801801,0,283760787.3,0 + 12/27 17:00:00,1067734498,0,1534295616,0,210199.7001,313694.4142,4488048925,0,354700984.2,0 + 12/27 18:00:00,1139861528,0,1631483967,0,293959.8881,438695.083,5408903391,0,141880393.7,0 + 12/27 19:00:00,932279544,0,1314313520,0,293310.5216,437725.992,4878324513,0,638461771.5,0 + 12/27 20:00:00,735360926.7,0,1014498120,0,166776.4852,248891.1821,3246262649,0,638461771.5,702307948.6 + 12/27 21:00:00,829173811.6,0,1148927228,0,165980.6896,247703.5655,3467364358,0,496581377.8,702307948.6 + 12/27 22:00:00,902048085.8,0,1253805818,0,83024.04052,123902.069,2900787898,0,354700984.2,702307948.6 + 12/27 23:00:00,905298052.1,0,1256250865,0,83581.81659,124734.4738,2911487562,0,354700984.2,624273732.1 + 12/27 24:00:00,989972311.2,0,1379520256,0,41393.07918,61773.53116,2740892364,0,354700984.2,468205299.1 + 12/28 01:00:00,1181647634,0,1662613937,0,41130.49153,61381.65487,3213305298,0,212820590.5,234102649.5 + 12/28 02:00:00,607310196.2,0,832871367.4,0,20879.42419,31159.69593,1627522396,0,141880393.7,0 + 12/28 03:00:00,983513436.4,0,1386659648,0,20797.76566,31037.8317,2556781235,0,141880393.7,0 + 12/28 04:00:00,980496946.7,0,1381409022,0,20935.08134,31242.75665,2549746185,0,141880393.7,0 + 12/28 05:00:00,956657962.3,0,1344324797,0,20958.54762,31277.77688,2489033527,0,141880393.7,0 + 12/28 06:00:00,935286276.4,0,1311724082,0,21019.97001,31369.44142,2435612239,0,141880393.7,0 + 12/28 07:00:00,881869282.6,0,1231038735,0,21004.77316,31346.76219,2301373545,0,141880393.7,156068433 + 12/28 08:00:00,857601527.6,0,1171969027,0,83988.53945,125341.4523,2783158525,0,567521574.6,390171082.6 + 12/28 09:00:00,982499515.2,0,1351564542,0,210123.849,313581.2167,4219402294,0,567521574.6,390171082.6 + 12/28 10:00:00,1100766382,0,1550508333,0,210574.9359,314254.4026,4540660334,0,283760787.3,0 + 12/28 11:00:00,971758454.8,0,1412512824,0,211233.2526,315236.8505,4279563650,0,283760787.3,0 + 12/28 12:00:00,1018994549,0,1454441070,0,126868.6391,189334.1589,3611765692,0,283760787.3,0 + 12/28 13:00:00,1034537739,0,1463923547,0,127037.877,189586.7235,3638309848,0,283760787.3,0 + 12/28 14:00:00,1037909256,0,1461976276,0,127204.4107,189835.2524,3641228320,0,283760787.3,0 + 12/28 15:00:00,1036881574,0,1457911414,0,127204.4107,189835.2524,3636135775,0,283760787.3,0 + 12/28 16:00:00,1041950862,0,1462576700,0,296906.4435,443092.4155,5168523455,0,283760787.3,0 + 12/28 17:00:00,1020264032,0,1428839707,0,381982.5629,570056.9328,5876445924,0,354700984.2,0 + 12/28 18:00:00,1048251728,0,1470700792,0,297287.0509,443660.4203,5186363416,0,141880393.7,0 + 12/28 19:00:00,864444081.1,0,1193216785,0,297287.0509,443660.4203,4725071762,0,638461771.5,0 + 12/28 20:00:00,598110121.4,0,793276631.4,0,256141.7726,382256.6982,3689621248,0,638461771.5,702307948.6 + 12/28 21:00:00,623831074.4,0,830570349.6,0,213199.4528,318171.1364,3367335545,0,496581377.8,702307948.6 + 12/28 22:00:00,674413904.4,0,905889717.9,0,170660.8472,254688.0631,3111559700,0,354700984.2,702307948.6 + 12/28 23:00:00,686221353,0,924227364.9,0,128182.4198,191294.7976,2760566701,0,354700984.2,624273732.1 + 12/28 24:00:00,720123737.6,0,975587214.4,0,85576.46953,127711.2216,2463546640,0,354700984.2,468205299.1 + 12/29 01:00:00,843389020.7,0,1159946991,0,42788.23476,63855.6108,2387253855,0,212820590.5,234102649.5 + 12/29 02:00:00,342644549.8,0,442842253.3,0,21406.05805,31945.62521,977552862.8,0,141880393.7,0 + 12/29 03:00:00,705082910.7,0,979416524.2,0,21417.87709,31963.26352,1876671541,0,141880393.7,0 + 12/29 04:00:00,704999028.5,0,976508498.9,0,21429.57405,31980.71964,1873784585,0,141880393.7,0 + 12/29 05:00:00,695000780.9,0,961575875.6,0,21452.59995,32015.08267,1849060314,0,141880393.7,0 + 12/29 06:00:00,681664830.3,0,941975586.3,0,21475.13222,32048.709,1816326245,0,141880393.7,0 + 12/29 07:00:00,620089803.9,0,850453230.4,0,21480.68775,32056.99987,1663278710,0,141880393.7,156068433 + 12/29 08:00:00,589491492.9,0,824522922.7,0,21507.9975,32097.75596,1606995128,0,567521574.6,390171082.6 + 12/29 09:00:00,643751646.4,0,894767373.8,0,86138.09068,128549.3646,2311393859,0,567521574.6,390171082.6 + 12/29 10:00:00,796212209.8,0,1103571878,0,129331.0417,193008.9593,3060208091,0,283760787.3,0 + 12/29 11:00:00,802596822,0,1117563023,0,129481.6237,193233.6824,3081934947,0,283760787.3,0 + 12/29 12:00:00,769511478.9,0,1073273124,0,86437.31181,128995.9114,2618344206,0,283760787.3,0 + 12/29 13:00:00,719745761.1,0,1007671032,0,86620.65451,129269.5254,2504621440,0,283760787.3,0 + 12/29 14:00:00,677590737.8,0,953335750,0,129957.4052,193943.7215,2796970544,0,283760787.3,0 + 12/29 15:00:00,657176276.9,0,915853757.9,0,173276.5402,258591.6286,3127755443,0,283760787.3,0 + 12/29 16:00:00,697808127.4,0,958286154.9,0,216725.8203,323433.7595,3600668770,0,283760787.3,0 + 12/29 17:00:00,704431612.2,0,975506727.9,0,259914.8103,387887.4429,4012026452,0,354700984.2,0 + 12/29 18:00:00,741184245.5,0,1030216158,0,303172.2908,452443.339,4491616671,0,141880393.7,0 + 12/29 19:00:00,545425987.7,0,737257116.5,0,173024.424,258215.3795,2835146397,0,638461771.5,0 + 12/29 20:00:00,317817259.4,0,397395786.2,0,129627.3941,193451.2249,1878296074,0,638461771.5,702307948.6 + 12/29 21:00:00,360891684.8,0,461571764,0,86437.31181,128995.9114,1598023052,0,496581377.8,702307948.6 + 12/29 22:00:00,401143477.7,0,522112122.1,0,86493.68173,129080.0358,1699320983,0,354700984.2,702307948.6 + 12/29 23:00:00,425252114.6,0,558504775.2,0,86475.02148,129052.188,1759654844,0,354700984.2,624273732.1 + 12/29 24:00:00,481587240.1,0,642859331.6,0,86437.31181,128995.9114,1900006175,0,354700984.2,468205299.1 + 12/30 01:00:00,618425171.8,0,847517997.8,0,43180.17041,64440.52135,1853377660,0,212820590.5,234102649.5 + 12/30 02:00:00,127993994,0,142451292.4,0,21594.94426,32227.51216,464206129.5,0,141880393.7,0 + 12/30 03:00:00,499564484,0,693491499.6,0,21599.77111,32234.71556,1386860136,0,141880393.7,0 + 12/30 04:00:00,496991074.5,0,686896621.1,0,21618.75537,32263.04699,1377862184,0,141880393.7,0 + 12/30 05:00:00,513255541.6,0,710385724.5,0,21565.30826,32183.28447,1417136200,0,141880393.7,0 + 12/30 06:00:00,527727140.6,0,731376083.1,0,21560.25688,32175.74597,1452552834,0,141880393.7,0 + 12/30 07:00:00,468146827.3,0,641861556,0,86340.77588,128851.8447,1884701817,0,141880393.7,156068433 + 12/30 08:00:00,600761826.6,0,811722896.4,0,345205.0428,515171.4947,4509840258,0,567521574.6,390171082.6 + 12/30 09:00:00,543698399.2,0,750837906,0,302192.7156,450981.4564,4005963325,0,567521574.6,390171082.6 + 12/30 10:00:00,691685405.6,0,971924017.6,0,216093.2795,322489.7785,3602508432,0,283760787.3,0 + 12/30 11:00:00,638143881.4,0,911008337.7,0,173205.8154,258486.0815,3103243048,0,283760787.3,0 + 12/30 12:00:00,584545861.1,0,850052260.6,0,86724.37448,129424.3133,2212733398,0,283760787.3,0 + 12/30 13:00:00,570132780.1,0,834764561.4,0,86673.10709,129347.8037,2182572620,0,283760787.3,0 + 12/30 14:00:00,586389442.8,0,844732707.2,0,86655.75436,129321.9072,2208641731,0,283760787.3,0 + 12/30 15:00:00,624453034.2,0,887055093.4,0,129957.4052,193943.7215,2677552183,0,283760787.3,0 + 12/30 16:00:00,670793659,0,947968419.2,0,216462.5748,323040.9014,3560974593,0,283760787.3,0 + 12/30 17:00:00,680889917.9,0,960066274.3,0,216140.5786,322560.366,3580279593,0,354700984.2,0 + 12/30 18:00:00,738360573.3,0,1044427931,0,302261.1928,451083.6494,4494829936,0,141880393.7,0 + 12/30 19:00:00,551039139.9,0,762172850.5,0,300651.8511,448681.9261,4010813588,0,638461771.5,0 + 12/30 20:00:00,310130382,0,400552169.7,0,172522.4661,257466.2757,2258642022,0,638461771.5,702307948.6 + 12/30 21:00:00,333386135.7,0,433805935.9,0,172562.6217,257526.2025,2315511839,0,496581377.8,702307948.6 + 12/30 22:00:00,387094332.7,0,513057612,0,86281.31085,128763.1012,1674311828,0,354700984.2,702307948.6 + 12/30 23:00:00,423764474.2,0,566611173.4,0,86220.69446,128672.6395,1763991650,0,354700984.2,624273732.1 + 12/30 24:00:00,494263286.8,0,670761431.3,0,43037.40416,64227.46218,1551178237,0,354700984.2,468205299.1 + 12/31 01:00:00,634328772.1,0,879381393.8,0,43048.01433,64243.29641,1899958885,0,212820590.5,234102649.5 + 12/31 02:00:00,142164591.8,0,172112644.6,0,21513.36551,32105.76698,507306113.4,0,141880393.7,0 + 12/31 03:00:00,562201894,0,786946487.4,0,21435.37661,31989.37918,1541477502,0,141880393.7,0 + 12/31 04:00:00,595345213.4,0,836387735.9,0,21423.74086,31972.0144,1623957668,0,141880393.7,0 + 12/31 05:00:00,620474704.8,0,871100225.6,0,21382.05555,31909.80476,1683425628,0,141880393.7,0 + 12/31 06:00:00,658438944.5,0,924910946.9,0,21313.57057,31807.60025,1774586106,0,141880393.7,0 + 12/31 07:00:00,654754890.9,0,916314971,0,84885.01398,126679.3184,2332701458,0,141880393.7,156068433 + 12/31 08:00:00,662177580.5,0,898916119.2,0,337392.4127,503512.2086,4588350336,0,567521574.6,390171082.6 + 12/31 09:00:00,689753581,0,909572093.5,0,296323.5802,442222.5714,4258091820,0,567521574.6,390171082.6 + 12/31 10:00:00,810535921.5,0,1153172223,0,211938.3871,316289.1677,3865327341,0,283760787.3,0 + 12/31 11:00:00,702212076.9,0,1083009799,0,170354.1565,254230.3691,3313726168,0,283760787.3,0 + 12/31 12:00:00,614381470.4,0,1039687164,0,85254.28227,127230.401,2419013494,0,283760787.3,0 + 12/31 13:00:00,583836922.7,0,1018977606,0,85430.281,127493.0551,2369338538,0,283760787.3,0 + 12/31 14:00:00,641262728.4,0,1013514543,0,85430.281,127493.0551,2421301281,0,283760787.3,0 + 12/31 15:00:00,659737789,0,977134340,0,128182.4198,191294.7976,2786990112,0,283760787.3,0 + 12/31 16:00:00,781826270.9,0,1111806569,0,213637.3663,318824.6627,3810496144,0,283760787.3,0 + 12/31 17:00:00,853921078.2,0,1230382493,0,212548.7726,317200.0849,3991399458,0,354700984.2,0 + 12/31 18:00:00,966258130,0,1391929623,0,295218.3611,440573.1826,5007037310,0,141880393.7,0 + 12/31 19:00:00,765374975.4,0,1087040209,0,295218.3611,440573.1826,4501264741,0,638461771.5,0 + 12/31 20:00:00,559253024.1,0,775386529.9,0,167977.0789,250682.9046,2841815495,0,638461771.5,702307948.6 + 12/31 21:00:00,649592229.4,0,905426512.5,0,167227.4472,249564.1815,3055468605,0,496581377.8,702307948.6 + 12/31 22:00:00,755406396.8,0,1058665792,0,83091.14165,124002.2083,2559608249,0,354700984.2,702307948.6 + 12/31 23:00:00,855630826.4,0,1203423150,0,82367.6631,122922.5152,2798098618,0,354700984.2,624273732.1 + 12/31 24:00:00,998092362.8,0,1410729488,0,40727.34765,60780.01755,2774248366,0,354700984.2,468205299.1 -- 2.39.2 From 8f8a6dbf7109e038cdbf27507fe42f8215413190 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 8 Sep 2023 05:05:58 -0400 Subject: [PATCH 045/101] small changes in importer --- hub/imports/results/energy_plus_workflow.py | 18 +++++++++--------- .../results/insel_monthly_energry_balance.py | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/hub/imports/results/energy_plus_workflow.py b/hub/imports/results/energy_plus_workflow.py index 191337ea..cbe7988a 100644 --- a/hub/imports/results/energy_plus_workflow.py +++ b/hub/imports/results/energy_plus_workflow.py @@ -75,17 +75,17 @@ class EnergyPlusWorkflow: :return: None """ for building in self._city.buildings: - file_name = building.name + '_out' + '.csv' + file_name = f'{building.name}_out.csv' energy_plus_output_file_path = Path(self._base_path / file_name).resolve() if energy_plus_output_file_path.is_file(): - building.heating_demand[cte.HOUR] = self._building_energy_demands(energy_plus_output_file_path)['Heating (J)'] - building.cooling_demand[cte.HOUR] = self._building_energy_demands(energy_plus_output_file_path)['Cooling (J)'] - building.domestic_hot_water_heat_demand[cte.HOUR] = ( - self._building_energy_demands(energy_plus_output_file_path))['DHW (J)'] - building.appliances_electrical_demand[cte.HOUR] = ( - self._building_energy_demands(energy_plus_output_file_path))['Appliances (J)'] - building.lighting_electrical_demand[cte.HOUR] = ( - self._building_energy_demands(energy_plus_output_file_path))['Lighting (J)'] + building_energy_demands = self._building_energy_demands(energy_plus_output_file_path) + building.heating_demand[cte.HOUR] = building_energy_demands['Heating (J)'] + building.cooling_demand[cte.HOUR] = building_energy_demands['Cooling (J)'] + building.domestic_hot_water_heat_demand[cte.HOUR] = building_energy_demands['DHW (J)'] + building.appliances_electrical_demand[cte.HOUR] = building_energy_demands['Appliances (J)'] + building.lighting_electrical_demand[cte.HOUR] = building_energy_demands['Lighting (J)'] + # todo: @Saeed, this a list of ONE value with the total energy of the year, exactly the same as cte.YEAR. + # You have to use the method to add hourly values from helpers/monthly_values building.heating_demand[cte.MONTH] = [sum(building.heating_demand[cte.HOUR])] building.cooling_demand[cte.MONTH] = [sum(building.cooling_demand[cte.HOUR])] building.domestic_hot_water_heat_demand[cte.MONTH] = [sum(building.domestic_hot_water_heat_demand[cte.HOUR])] diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py index 34aab2ec..1e63bef2 100644 --- a/hub/imports/results/insel_monthly_energry_balance.py +++ b/hub/imports/results/insel_monthly_energry_balance.py @@ -112,7 +112,7 @@ class InselMonthlyEnergyBalance: :return: None """ for building in self._city.buildings: - file_name = building.name + '.out' + file_name = f'{building.name}.out' insel_output_file_path = Path(self._base_path / file_name).resolve() if insel_output_file_path.is_file(): building.heating_demand[cte.MONTH], building.cooling_demand[cte.MONTH] \ -- 2.39.2 From cde3bfb4aefbfcc8b70d77b163c8cabb754a4a7d Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Fri, 8 Sep 2023 11:50:20 -0400 Subject: [PATCH 046/101] tried to get monthly values from the method in helpers/monthly values. --- hub/imports/results/energy_plus_workflow.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/hub/imports/results/energy_plus_workflow.py b/hub/imports/results/energy_plus_workflow.py index cbe7988a..627b3fd7 100644 --- a/hub/imports/results/energy_plus_workflow.py +++ b/hub/imports/results/energy_plus_workflow.py @@ -6,6 +6,7 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Project collaborator Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from pathlib import Path +from hub.helpers.monthly_values import MonthlyValues import csv import hub.helpers.constants as cte @@ -86,11 +87,14 @@ class EnergyPlusWorkflow: building.lighting_electrical_demand[cte.HOUR] = building_energy_demands['Lighting (J)'] # todo: @Saeed, this a list of ONE value with the total energy of the year, exactly the same as cte.YEAR. # You have to use the method to add hourly values from helpers/monthly_values - building.heating_demand[cte.MONTH] = [sum(building.heating_demand[cte.HOUR])] - building.cooling_demand[cte.MONTH] = [sum(building.cooling_demand[cte.HOUR])] - building.domestic_hot_water_heat_demand[cte.MONTH] = [sum(building.domestic_hot_water_heat_demand[cte.HOUR])] - building.appliances_electrical_demand[cte.MONTH] = [sum(building.appliances_electrical_demand[cte.HOUR])] - building.lighting_electrical_demand[cte.MONTH] = [sum(building.lighting_electrical_demand[cte.HOUR])] + building.heating_demand[cte.MONTH] = MonthlyValues.get_total_month(building.heating_demand[cte.HOUR]) + building.cooling_demand[cte.MONTH] = MonthlyValues.get_total_month(building.cooling_demand[cte.HOUR]) + building.domestic_hot_water_heat_demand[cte.MONTH] = ( + MonthlyValues.get_total_month(building.domestic_hot_water_heat_demand[cte.HOUR])) + building.appliances_electrical_demand[cte.MONTH] = ( + MonthlyValues.get_total_month(building.appliances_electrical_demand[cte.HOUR])) + building.lighting_electrical_demand[cte.MONTH] = ( + MonthlyValues.get_total_month(building.lighting_electrical_demand[cte.HOUR])) building.heating_demand[cte.YEAR] = [sum(building.heating_demand[cte.MONTH])] building.cooling_demand[cte.YEAR] = [sum(building.cooling_demand[cte.MONTH])] building.domestic_hot_water_heat_demand[cte.YEAR] = [sum(building.domestic_hot_water_heat_demand[cte.MONTH])] -- 2.39.2 From f0ffc2634856cbb73e233b36f0e4bcc389eee461 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 12 Sep 2023 13:15:30 -0400 Subject: [PATCH 047/101] tried to create a test --- tests/test_results_import.py | 9 +- .../summerschool_one_building.geojson | 294 + .../summerschool_one_building_out.csv | 8761 +++++++++++++++++ 3 files changed, 9063 insertions(+), 1 deletion(-) create mode 100644 tests/tests_data/summerschool_one_building.geojson create mode 100644 tests/tests_data/summerschool_one_building_out.csv diff --git a/tests/test_results_import.py b/tests/test_results_import.py index 1befac19..7f8df098 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -30,7 +30,7 @@ class TestResultsImport(TestCase): """ self._example_path = (Path(__file__).parent / 'tests_data').resolve() self._output_path = (Path(__file__).parent / 'tests_outputs').resolve() - file = 'test.geojson' + file = 'summerschool_one_building.geojson' file_path = (self._example_path / file).resolve() self._city = GeometryFactory('geojson', path=file_path, @@ -92,3 +92,10 @@ class TestResultsImport(TestCase): building.cooling_demand[cte.HOUR] = values self.assertIsNotNone(building.heating_peak_load) self.assertIsNotNone(building.cooling_peak_load) + + def test_energy_plus_results_import(self): + ResultFactory('energy_plus_workflow', self._city, self._example_path).enrich() + for building in self._city.buildings: + print(building.heating_demand) + print(building.cooling_demand) + diff --git a/tests/tests_data/summerschool_one_building.geojson b/tests/tests_data/summerschool_one_building.geojson new file mode 100644 index 00000000..0836973e --- /dev/null +++ b/tests/tests_data/summerschool_one_building.geojson @@ -0,0 +1,294 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "id": 12, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.57945149010348, + 45.49793915473101 + ], + [ + -73.57945502047383, + 45.497935600591106 + ], + [ + -73.57945748913181, + 45.49793681276347 + ], + [ + -73.57945995778985, + 45.49793802493576 + ], + [ + -73.57946108986009, + 45.49793688584562 + ], + [ + -73.57946222064952, + 45.49793574585649 + ], + [ + -73.57946503164756, + 45.497932909392325 + ], + [ + -73.5794800321942, + 45.497917804072586 + ], + [ + -73.57949503273288, + 45.49790269875081 + ], + [ + -73.57950823165471, + 45.49788939886833 + ], + [ + -73.57952143057031, + 45.497876098984314 + ], + [ + -73.57952481016481, + 45.49787269972034 + ], + [ + -73.57952818975889, + 45.49786930045622 + ], + [ + -73.57963374256275, + 45.49776298233438 + ], + [ + -73.57963739684415, + 45.497759299424665 + ], + [ + -73.57956562282082, + 45.49772405755894 + ], + [ + -73.5795624921933, + 45.497722521006246 + ], + [ + -73.57955974509859, + 45.4977252944393 + ], + [ + -73.57953557695755, + 45.497749634054365 + ], + [ + -73.5795114087957, + 45.497773973664174 + ], + [ + -73.57945076790263, + 45.49783505227953 + ], + [ + -73.57939012687844, + 45.49789613086214 + ], + [ + -73.57938759058709, + 45.49789868818189 + ], + [ + -73.57938505429556, + 45.49790124550157 + ], + [ + -73.57941717242674, + 45.49791701633786 + ], + [ + -73.5794136407655, + 45.497920563278754 + ], + [ + -73.57943256542505, + 45.497929854507255 + ], + [ + -73.57944202776348, + 45.49793450461953 + ], + [ + -73.57945149010348, + 45.49793915473101 + ] + ] + ] + }, + "properties": { + "OBJECTID_12": 12, + "gml_id": 1340982, + "gml_parent": "fme-gen-5fa2a82b-c38e-4bf0-9e8f-10a47b9f64f7", + "citygml_ta": "http://www.opengis.net/citygml/building/2.0", + "citygml_fe": "cityObjectMember", + "citygml__1": " ", + "citygml__2": " ", + "gml_descri": " ", + "gml_name": " ", + "citygml_cr": " ", + "citygml_te": " ", + "externalRe": " ", + "external_1": " ", + "external_2": " ", + "citygml_ge": " ", + "citygml_re": " ", + "citygml__3": " ", + "citygml_ap": " ", + "citygml_cl": " ", + "citygml__4": " ", + "citygml_fu": " ", + "citygml__5": " ", + "citygml_us": " ", + "citygml__6": " ", + "citygml_ye": " ", + "citygml__7": " ", + "citygml_ro": " ", + "citygml__8": " ", + "citygml_me": 19.113, + "citygml__9": "#m", + "citygml_st": " ", + "citygml_10": " ", + "citygml_11": " ", + "citygml_12": " ", + "citygml_13": " ", + "citygml_14": " ", + "citygml_ou": " ", + "citygml_in": " ", + "citygml_bo": " ", + "citygml_le": " ", + "citygml_15": " ", + "citygml_co": " ", + "citygml_ad": " ", + "Volume": "2931.350", + "parcelle": " ", + "OBJECTID": 1056, + "gml_id_1": "384b2b1c-2e25-4f6a-b082-d272dba3453f", + "gml_pare_1": 1340982, + "citygml_16": "http://www.opengis.net/citygml/building/2.0", + "citygml_17": "boundedBy", + "citygml_18": " ", + "citygml_19": " ", + "gml_desc_1": " ", + "gml_name_1": " ", + "citygml_20": " ", + "citygml_21": " ", + "external_3": " ", + "external_4": " ", + "external_5": " ", + "citygml_22": " ", + "citygml_23": " ", + "citygml_24": " ", + "citygml_25": " ", + "citygml_26": " ", + "citygml_op": " ", + "Area": 191.404, + "FID_": 0, + "Join_Count": 2, + "TARGET_FID": 1058, + "gml_id_12": 1340982, + "gml_pare_2": "fme-gen-5fa2a82b-c38e-4bf0-9e8f-10a47b9f64f7", + "citygml_27": "http://www.opengis.net/citygml/building/2.0", + "citygml_28": "cityObjectMember", + "citygml_29": " ", + "citygml_30": " ", + "gml_desc_2": " ", + "gml_name_2": " ", + "citygml_31": " ", + "citygml_32": " ", + "external_6": " ", + "external_7": " ", + "external_8": " ", + "citygml_33": " ", + "citygml_34": " ", + "citygml_35": " ", + "citygml_36": " ", + "citygml_37": " ", + "citygml_38": " ", + "citygml_39": " ", + "citygml_40": " ", + "citygml_41": " ", + "citygml_42": " ", + "citygml_43": " ", + "citygml_44": " ", + "citygml_45": " ", + "citygml_46": " ", + "citygml_47": 19.113, + "citygml_48": "#m", + "citygml_49": " ", + "citygml_50": " ", + "citygml_51": " ", + "citygml_52": " ", + "citygml_53": " ", + "citygml_54": " ", + "citygml_55": " ", + "citygml_56": " ", + "citygml_57": " ", + "citygml_58": " ", + "citygml_59": " ", + "citygml_60": " ", + "citygml_61": " ", + "Volume_1": "2931.350", + "Field": 0, + "Field1": 0, + "OBJECTID_1": 1056, + "gml_id_12_": "384b2b1c-2e25-4f6a-b082-d272dba3453f", + "gml_pare_3": 1340982, + "citygml_62": "http://www.opengis.net/citygml/building/2.0", + "citygml_63": "boundedBy", + "citygml_64": " ", + "citygml_65": " ", + "gml_desc_3": " ", + "gml_name_3": " ", + "citygml_66": " ", + "citygml_67": " ", + "external_9": " ", + "externa_10": " ", + "externa_11": " ", + "citygml_68": " ", + "citygml_69": " ", + "citygml_70": " ", + "citygml_71": " ", + "citygml_72": " ", + "citygml_73": " ", + "Area_1": 191.404, + "cityGML_hi": 0, + "Z_Min": 46.1162, + "Z_Max": 64.399, + "Shape_Leng": 63.6906066955, + "ID_UEV": "01036804", + "CIVIQUE_DE": " 2170", + "CIVIQUE_FI": " 2170", + "NOM_RUE": "rue Bishop (MTL)", + "MUNICIPALI": 50, + "ETAGE_HORS": 3, + "NOMBRE_LOG": 1, + "ANNEE_CONS": 1900, + "CODE_UTILI": 6000, + "LIBELLE_UT": "Immeuble à bureaux", + "CATEGORIE_": "Régulier", + "MATRICULE8": "9839-57-7770-3-000-0000", + "SUPERFICIE": 259, + "SUPERFIC_1": 490, + "NO_ARROND_": "REM19", + "Shape_Le_1": 0.00093336765858, + "Shape_Ar_1": 3.0845126501e-8, + "Z_Min_1": null, + "Z_Max_1": null, + "Shape_Length": 63.69060669550123, + "Shape_Area": 174.69050030775531 + } + } + ] +} \ No newline at end of file diff --git a/tests/tests_data/summerschool_one_building_out.csv b/tests/tests_data/summerschool_one_building_out.csv new file mode 100644 index 00000000..33f4aeb9 --- /dev/null +++ b/tests/tests_data/summerschool_one_building_out.csv @@ -0,0 +1,8761 @@ +Date/Time,12 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),12 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),DHW 12:Water Use Equipment Heating Rate [W](Hourly),DistrictHeating:Facility [J](Hourly),DistrictCooling:Facility [J](Hourly),InteriorEquipment:Electricity [J](Hourly),InteriorLights:Electricity [J](Hourly) + 01/01 01:00:00,0.0,0.0,280.8958649185797,1011225.1137068865,0.0,6143235.769355498,1802015.8256776133 + 01/01 02:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 01/01 03:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 01/01 04:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 01/01 05:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,1802015.8256776133 + 01/01 06:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 01/01 07:00:00,208482747.83812727,4643117.438491378,281.04843701946529,209494522.21139733,4643117.438491378,6143235.769355498,1802015.8256776133 + 01/01 08:00:00,92312652.38236164,0.0,561.5185742778631,94334119.24976193,0.0,9214853.654033246,10812094.954065679 + 01/01 09:00:00,4107652.7344076896,0.0,2804.9529355333186,14205483.302327637,0.0,24572943.077421994,28832253.210841814 + 01/01 10:00:00,0.0,18654128.30163589,2806.4675767898636,10103283.276443508,18654128.30163589,27644560.962099744,32436284.862197039 + 01/01 11:00:00,0.0,16181585.673176272,5053.667168500768,18193201.806602766,16181585.673176272,27644560.962099744,32436284.862197039 + 01/01 12:00:00,0.0,1128592.1573326868,5051.641638221755,18185909.89759832,1128592.1573326868,27644560.962099744,32436284.862197039 + 01/01 13:00:00,3441480.218210942,0.0,5051.641638221754,21627390.11580926,0.0,27644560.962099744,32436284.862197039 + 01/01 14:00:00,13378422.24274777,0.0,5048.915283959974,31554517.265003679,0.0,27644560.962099744,32436284.862197039 + 01/01 15:00:00,9120610.26070635,0.0,5045.867222116819,27285732.2603269,0.0,27644560.962099744,32436284.862197039 + 01/01 16:00:00,35660342.03519884,0.0,5036.174622254158,53790570.6753138,0.0,27644560.962099744,32436284.862197039 + 01/01 17:00:00,69763304.92551814,0.0,3910.8227167297179,83842266.70574513,0.0,27644560.962099744,32436284.862197039 + 01/01 18:00:00,85594345.01913218,0.0,2790.7805343607999,95641154.94283107,0.0,27644560.962099744,28832253.210841814 + 01/01 19:00:00,117287111.73333176,0.0,1671.2671675431023,123303673.53648693,0.0,15358089.423388744,18020158.25677613 + 01/01 20:00:00,139564638.05431653,0.0,1111.8127968355166,143567164.1229244,0.0,9214853.654033246,10812094.954065679 + 01/01 21:00:00,147274905.64585788,0.0,1110.4261429491178,151272439.76047469,0.0,9214853.654033246,10812094.954065679 + 01/01 22:00:00,0.0,0.0,1103.358357110972,3972090.085599501,0.0,6143235.769355498,3604031.6513552267 + 01/01 23:00:00,0.0,0.0,274.55731183768196,988406.3226156544,0.0,6143235.769355498,3604031.6513552267 + 01/01 24:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 01/02 01:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 01/02 02:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/02 03:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/02 04:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/02 05:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 01/02 06:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 01/02 07:00:00,576484313.3886368,16810196.39257349,272.17032681307486,577464126.565164,16810196.39257349,6143235.769355498,1802015.8256776133 + 01/02 08:00:00,215363627.18583036,0.0,544.3406536261497,217323253.53888453,0.0,9214853.654033246,10812094.954065679 + 01/02 09:00:00,132409534.91978874,0.0,2727.099515374481,142227093.17513687,0.0,24572943.077421994,28832253.210841814 + 01/02 10:00:00,84356689.34622866,0.0,2721.703268130748,94154821.11149937,0.0,27644560.962099744,32436284.862197039 + 01/02 11:00:00,90836429.5319799,0.0,4908.779127674067,108508034.39160654,0.0,27644560.962099744,32436284.862197039 + 01/02 12:00:00,107504900.11165081,0.0,4916.664865592452,125204893.62778364,0.0,27644560.962099744,32436284.862197039 + 01/02 13:00:00,110404963.65526593,0.0,4916.664865592452,128104957.17139876,0.0,27644560.962099744,32436284.862197039 + 01/02 14:00:00,125206468.57163897,0.0,4916.664865592452,142906462.0877718,0.0,27644560.962099744,32436284.862197039 + 01/02 15:00:00,138612202.6149826,0.0,4908.779127674067,156283807.47460927,0.0,27644560.962099744,32436284.862197039 + 01/02 16:00:00,151622259.93684373,0.0,4925.874561759427,169355408.35917766,0.0,27644560.962099744,32436284.862197039 + 01/02 17:00:00,156186161.8513614,0.0,3831.235770257331,169978610.62428779,0.0,27644560.962099744,32436284.862197039 + 01/02 18:00:00,160545512.7537175,0.0,2740.7423096507775,170412185.06846033,0.0,27644560.962099744,28832253.210841814 + 01/02 19:00:00,181447963.24611665,0.0,1647.343871026091,187378401.1818106,0.0,15358089.423388744,18020158.25677613 + 01/02 20:00:00,195106028.6560133,0.0,1098.2292473507274,199059653.94647593,0.0,9214853.654033246,10812094.954065679 + 01/02 21:00:00,192694944.11176456,0.0,1099.7912009278439,196654192.4351048,0.0,9214853.654033246,10812094.954065679 + 01/02 22:00:00,0.0,0.0,1101.6070055151936,3965785.2198546968,0.0,6143235.769355498,3604031.6513552267 + 01/02 23:00:00,0.0,0.0,275.40175137879836,991446.3049636739,0.0,6143235.769355498,3604031.6513552267 + 01/02 24:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/03 01:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/03 02:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/03 03:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/03 04:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 01/03 05:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 01/03 06:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 01/03 07:00:00,384326941.7113587,14910029.475807649,278.842748647338,385330775.6064892,14910029.475807649,6143235.769355498,1802015.8256776133 + 01/03 08:00:00,155749603.75471819,0.0,557.685497294676,157757271.544979,0.0,9214853.654033246,10812094.954065679 + 01/03 09:00:00,103987831.59201713,0.0,2788.4274864733799,114026170.5433213,0.0,24572943.077421994,28832253.210841814 + 01/03 10:00:00,96933219.95503426,0.0,2790.7805343607999,106980029.87873313,0.0,27644560.962099744,32436284.862197039 + 01/03 11:00:00,86124991.32017087,0.0,5028.200635795351,104226513.60903412,0.0,27644560.962099744,32436284.862197039 + 01/03 12:00:00,65285503.20315109,0.0,5039.447133316979,83427512.88309221,0.0,27644560.962099744,32436284.862197039 + 01/03 13:00:00,65723126.32628251,0.0,5039.447133316979,83865136.00622364,0.0,27644560.962099744,32436284.862197039 + 01/03 14:00:00,65918950.58072458,0.0,5036.174622254158,84049179.22083955,0.0,27644560.962099744,32436284.862197039 + 01/03 15:00:00,49862799.0176395,0.0,5031.956814710111,67977843.5505959,0.0,27644560.962099744,32436284.862197039 + 01/03 16:00:00,78609957.55725894,0.0,5031.956814710111,96725002.09021533,0.0,27644560.962099744,32436284.862197039 + 01/03 17:00:00,85785514.60674758,0.0,3913.7441892189747,99874993.68793589,0.0,27644560.962099744,32436284.862197039 + 01/03 18:00:00,94165790.34830459,0.0,2793.444797664084,104222191.61989528,0.0,27644560.962099744,28832253.210841814 + 01/03 19:00:00,122212318.47865972,0.0,1674.4683206164796,128240404.43287902,0.0,15358089.423388744,18020158.25677613 + 01/03 20:00:00,139976778.48390595,0.0,1115.370994589352,143992114.0644276,0.0,9214853.654033246,10812094.954065679 + 01/03 21:00:00,142486043.83687476,0.0,1115.370994589352,146501379.41739644,0.0,9214853.654033246,10812094.954065679 + 01/03 22:00:00,0.0,0.0,1112.9164335374313,4006499.1607347496,0.0,6143235.769355498,3604031.6513552267 + 01/03 23:00:00,0.0,0.0,276.192036184235,994291.3302632459,0.0,6143235.769355498,3604031.6513552267 + 01/03 24:00:00,0.0,0.0,274.5573118376818,988406.3226156544,0.0,6143235.769355498,1802015.8256776133 + 01/04 01:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 01/04 02:00:00,0.0,0.0,272.1703268130748,979813.1765270693,0.0,6143235.769355498,1802015.8256776133 + 01/04 03:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/04 04:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/04 05:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/04 06:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 01/04 07:00:00,600987001.3750628,17006768.640714937,271.1422021810507,601963113.3029146,17006768.640714937,6143235.769355498,1802015.8256776133 + 01/04 08:00:00,222548288.16045625,0.0,542.2844043621014,224500512.01615984,0.0,9214853.654033246,10812094.954065679 + 01/04 09:00:00,89156284.53576058,0.0,2717.0917538934938,98937814.84977716,0.0,24572943.077421994,28832253.210841814 + 01/04 10:00:00,48144817.16579757,0.0,2721.703268130748,57942948.93106826,0.0,27644560.962099744,32436284.862197039 + 01/04 11:00:00,55992634.85754438,0.0,4908.779127674067,73664239.71717102,0.0,27644560.962099744,32436284.862197039 + 01/04 12:00:00,71558761.10432828,0.0,4925.874561759427,89291909.52666222,0.0,27644560.962099744,32436284.862197039 + 01/04 13:00:00,70354383.76120705,0.0,4933.336157371399,88114393.92774409,0.0,27644560.962099744,32436284.862197039 + 01/04 14:00:00,51375518.0872772,0.0,4942.031613078273,69166831.894359,0.0,27644560.962099744,32436284.862197039 + 01/04 15:00:00,78602670.13694687,0.0,4949.060404175298,96419287.59197794,0.0,27644560.962099744,32436284.862197039 + 01/04 16:00:00,95794523.14166603,0.0,4949.060404175298,113611140.59669709,0.0,27644560.962099744,32436284.862197039 + 01/04 17:00:00,121724731.6324899,0.0,3855.624519303176,135604979.90198136,0.0,27644560.962099744,32436284.862197039 + 01/04 18:00:00,129973799.2498727,0.0,2749.4780023196096,139871920.0582233,0.0,27644560.962099744,28832253.210841814 + 01/04 19:00:00,153281885.4743742,0.0,1652.41050827279,159230563.30415625,0.0,15358089.423388744,18020158.25677613 + 01/04 20:00:00,166507882.6068504,0.0,1104.7681447369399,170485047.92790336,0.0,9214853.654033246,10812094.954065679 + 01/04 21:00:00,170388650.37517563,0.0,1103.3583571109724,174360740.46077515,0.0,9214853.654033246,10812094.954065679 + 01/04 22:00:00,0.0,0.0,1101.6070055151936,3965785.2198546968,0.0,6143235.769355498,3604031.6513552267 + 01/04 23:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,3604031.6513552267 + 01/04 24:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/05 01:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/05 02:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 01/05 03:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 01/05 04:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/05 05:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/05 06:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/05 07:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/05 08:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/05 09:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/05 10:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/05 11:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/05 12:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/05 13:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/05 14:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/05 15:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/05 16:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/05 17:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/05 18:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/05 19:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/05 20:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/05 21:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/05 22:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/05 23:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/05 24:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 01/06 01:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 01/06 02:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 01/06 03:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/06 04:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 01/06 05:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 01/06 06:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 01/06 07:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 01/06 08:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/06 09:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 01/06 10:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 01/06 11:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 01/06 12:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 01/06 13:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/06 14:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/06 15:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/06 16:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/06 17:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/06 18:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/06 19:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/06 20:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/06 21:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/06 22:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/06 23:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/06 24:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/07 01:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/07 02:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/07 03:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/07 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/07 05:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 01/07 06:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/07 07:00:00,542825829.0936655,15895644.332719502,271.70917538934938,543803982.1250671,15895644.332719502,6143235.769355498,1802015.8256776133 + 01/07 08:00:00,212442265.93211503,0.0,542.2844043621014,214394489.78781859,0.0,9214853.654033246,10812094.954065679 + 01/07 09:00:00,102754422.24180818,0.0,2705.605870451128,112494603.37543226,0.0,24572943.077421994,28832253.210841814 + 01/07 10:00:00,100198528.8033881,0.0,2700.6486774809598,109920864.04231954,0.0,27644560.962099744,32436284.862197039 + 01/07 11:00:00,121812231.09660548,0.0,4850.224820282697,139273040.4496232,0.0,27644560.962099744,32436284.862197039 + 01/07 12:00:00,129213578.14931628,0.0,4840.912335561223,146640862.5573367,0.0,27644560.962099744,32436284.862197039 + 01/07 13:00:00,131265149.93364357,0.0,4840.912335561223,148692434.34166397,0.0,27644560.962099744,32436284.862197039 + 01/07 14:00:00,119938976.39557114,0.0,4850.224820282697,137399785.74858887,0.0,27644560.962099744,32436284.862197039 + 01/07 15:00:00,63239571.53950313,0.0,4861.1676194657279,80739774.96957974,0.0,27644560.962099744,32436284.862197039 + 01/07 16:00:00,74523433.22137738,0.0,4850.224820282697,91984242.57439508,0.0,27644560.962099744,32436284.862197039 + 01/07 17:00:00,159375063.33250634,0.0,3765.1540387698389,172929617.87207777,0.0,27644560.962099744,32436284.862197039 + 01/07 18:00:00,177318552.0739434,0.0,2683.0602851108267,186977569.10034243,0.0,27644560.962099744,28832253.210841814 + 01/07 19:00:00,201659506.95640356,0.0,1609.836171066496,207454917.17224295,0.0,15358089.423388744,18020158.25677613 + 01/07 20:00:00,214729467.72633098,0.0,1075.758296791383,218602197.59477995,0.0,9214853.654033246,10812094.954065679 + 01/07 21:00:00,220287006.87312234,0.0,1075.758296791383,224159736.7415713,0.0,9214853.654033246,10812094.954065679 + 01/07 22:00:00,0.0,0.0,1073.2241140443308,3863606.810559591,0.0,6143235.769355498,3604031.6513552267 + 01/07 23:00:00,0.0,0.0,267.76762788994537,963963.4604038028,0.0,6143235.769355498,3604031.6513552267 + 01/07 24:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/08 01:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/08 02:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/08 03:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/08 04:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/08 05:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/08 06:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/08 07:00:00,704228286.5569668,15991956.211381825,266.5503893434902,705187867.9586033,15991956.211381825,6143235.769355498,1802015.8256776133 + 01/08 08:00:00,258918374.17076949,0.0,533.1007786869805,260837536.97404263,0.0,9214853.654033246,10812094.954065679 + 01/08 09:00:00,171292924.3221361,0.0,2665.503893434902,180888738.33850176,0.0,24572943.077421994,28832253.210841814 + 01/08 10:00:00,146566913.9958231,0.0,2665.503893434902,156162728.01218874,0.0,27644560.962099744,32436284.862197039 + 01/08 11:00:00,130277109.11178157,0.0,4797.907008182824,147549574.34123976,0.0,27644560.962099744,32436284.862197039 + 01/08 12:00:00,126511393.65378993,0.0,4807.965695240438,143820070.1566555,0.0,27644560.962099744,32436284.862197039 + 01/08 13:00:00,136996203.72003166,0.0,4797.907008182824,154268668.94948984,0.0,27644560.962099744,32436284.862197039 + 01/08 14:00:00,132207555.88832037,0.0,4807.965695240438,149516232.39118595,0.0,27644560.962099744,32436284.862197039 + 01/08 15:00:00,110671127.02929645,0.0,4807.965695240438,127979803.53216201,0.0,27644560.962099744,32436284.862197039 + 01/08 16:00:00,118824557.72415418,0.0,4807.965695240438,136133234.22701977,0.0,27644560.962099744,32436284.862197039 + 01/08 17:00:00,195421135.15306313,0.0,3731.705450808862,208855274.775975,0.0,27644560.962099744,32436284.862197039 + 01/08 18:00:00,215764125.37859584,0.0,2658.6785419915174,225335368.1297653,0.0,27644560.962099744,28832253.210841814 + 01/08 19:00:00,247621177.39898009,0.0,1591.0349938564296,253348903.37686325,0.0,15358089.423388744,18020158.25677613 + 01/08 20:00:00,270517457.86777749,0.0,1055.460738333893,274317116.5257795,0.0,9214853.654033246,10812094.954065679 + 01/08 21:00:00,277308851.3117855,0.0,1053.0295311390765,281099757.62388619,0.0,9214853.654033246,10812094.954065679 + 01/08 22:00:00,0.0,0.0,1053.029531139076,3790906.312100676,0.0,6143235.769355498,3604031.6513552267 + 01/08 23:00:00,0.0,0.0,262.5171083208211,945061.5899549555,0.0,6143235.769355498,3604031.6513552267 + 01/08 24:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/09 01:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/09 02:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/09 03:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/09 04:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/09 05:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/09 06:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/09 07:00:00,838045174.1582601,14824400.620408759,259.7049756466596,838980112.0705881,14824400.620408759,6143235.769355498,1802015.8256776133 + 01/09 08:00:00,308661282.2906575,0.0,519.4099512933192,310531158.1153134,0.0,9214853.654033246,10812094.954065679 + 01/09 09:00:00,163513023.29568304,0.0,2604.8673279390065,172890545.67626346,0.0,24572943.077421994,28832253.210841814 + 01/09 10:00:00,126228303.02792332,0.0,2611.29835177471,135628977.09431226,0.0,27644560.962099744,32436284.862197039 + 01/09 11:00:00,133033344.8171846,0.0,4725.307949774779,150044453.4363738,0.0,27644560.962099744,32436284.862197039 + 01/09 12:00:00,150237386.33814479,0.0,4738.632890125845,167296464.74259783,0.0,27644560.962099744,32436284.862197039 + 01/09 13:00:00,146900319.59046526,0.0,4762.501493879398,164045324.96843107,0.0,27644560.962099744,32436284.862197039 + 01/09 14:00:00,103457214.9700789,0.0,4797.907008182824,120729680.19953707,0.0,27644560.962099744,32436284.862197039 + 01/09 15:00:00,75341664.84507397,0.0,4807.965695240438,92650341.34793957,0.0,27644560.962099744,32436284.862197039 + 01/09 16:00:00,103640874.51730258,0.0,4807.965695240438,120949551.02016816,0.0,27644560.962099744,32436284.862197039 + 01/09 17:00:00,186196477.60042573,0.0,3739.528874075896,199658781.54709894,0.0,27644560.962099744,32436284.862197039 + 01/09 18:00:00,200892718.49689216,0.0,2671.092052911355,210508649.88737304,0.0,27644560.962099744,28832253.210841814 + 01/09 19:00:00,225752595.81510515,0.0,1599.3023360609412,231510084.22492454,0.0,15358089.423388744,18020158.25677613 + 01/09 20:00:00,246203817.37011389,0.0,1068.436821164542,250050189.92630623,0.0,9214853.654033246,10812094.954065679 + 01/09 21:00:00,246133270.91046364,0.0,1071.070511559781,249989124.75207884,0.0,9214853.654033246,10812094.954065679 + 01/09 22:00:00,0.0,0.0,1075.7582967913828,3872729.868448978,0.0,6143235.769355498,3604031.6513552267 + 01/09 23:00:00,0.0,0.0,269.4569344601499,970044.9640565395,0.0,6143235.769355498,3604031.6513552267 + 01/09 24:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/10 01:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/10 02:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/10 03:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/10 04:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/10 05:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/10 06:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/10 07:00:00,628225837.8874492,17851680.786915307,268.93957419784575,629194020.3545615,17851680.786915307,6143235.769355498,1802015.8256776133 + 01/10 08:00:00,256338164.45964036,0.0,537.8791483956915,258274529.39386485,0.0,9214853.654033246,10812094.954065679 + 01/10 09:00:00,192794282.6240952,0.0,2694.569344601498,202494732.2646606,0.0,24572943.077421994,28832253.210841814 + 01/10 10:00:00,166609265.34164546,0.0,2694.569344601498,176309714.98221085,0.0,27644560.962099744,32436284.862197039 + 01/10 11:00:00,152983806.58469249,0.0,4861.1676194657279,170484010.0147691,0.0,27644560.962099744,32436284.862197039 + 01/10 12:00:00,144491471.16355703,0.0,4870.09056681203,162023797.20408035,0.0,27644560.962099744,32436284.862197039 + 01/10 13:00:00,145857553.20518787,0.0,4870.09056681203,163389879.24571119,0.0,27644560.962099744,32436284.862197039 + 01/10 14:00:00,142009626.29752035,0.0,4890.765157008289,159616380.86275018,0.0,27644560.962099744,32436284.862197039 + 01/10 15:00:00,138700129.39183317,0.0,4899.065882635347,156336766.5693204,0.0,27644560.962099744,32436284.862197039 + 01/10 16:00:00,149272052.9248007,0.0,4908.779127674067,166943657.78442735,0.0,27644560.962099744,32436284.862197039 + 01/10 17:00:00,160559820.61559064,0.0,3817.9393215242737,174304402.17307804,0.0,27644560.962099744,32436284.862197039 + 01/10 18:00:00,165429799.59215576,0.0,2731.480480884695,175263129.32334066,0.0,27644560.962099744,28832253.210841814 + 01/10 19:00:00,190862934.29529209,0.0,1636.2597092246888,196753469.24850095,0.0,15358089.423388744,18020158.25677613 + 01/10 20:00:00,200626087.82027827,0.0,1094.6387915020949,204566787.46968577,0.0,9214853.654033246,10812094.954065679 + 01/10 21:00:00,186848940.70568986,0.0,1103.3583571109724,190821030.79128934,0.0,9214853.654033246,10812094.954065679 + 01/10 22:00:00,0.0,0.0,1114.1781116954017,4011041.2021034446,0.0,6143235.769355498,3604031.6513552267 + 01/10 23:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,3604031.6513552267 + 01/10 24:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/11 01:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/11 02:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/11 03:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/11 04:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 01/11 05:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 01/11 06:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 01/11 07:00:00,546816470.0813582,17153077.074901105,272.70995153744817,547798225.906893,17153077.074901105,6143235.769355498,1802015.8256776133 + 01/11 08:00:00,224066818.4534093,0.0,544.3406536261497,226026444.80646343,0.0,9214853.654033246,10812094.954065679 + 01/11 09:00:00,158423615.5292924,0.0,2700.6486774809598,168145950.76822389,0.0,24572943.077421994,28832253.210841814 + 01/11 10:00:00,159153496.29423804,0.0,2677.676278899452,168793130.89827607,0.0,27644560.962099744,32436284.862197039 + 01/11 11:00:00,175034437.421532,0.0,4797.907008182824,192306902.6509902,0.0,27644560.962099744,32436284.862197039 + 01/11 12:00:00,174353104.74608235,0.0,4785.621375584731,191581341.69818736,0.0,27644560.962099744,32436284.862197039 + 01/11 13:00:00,172217790.19794933,0.0,4797.907008182824,189490255.42740748,0.0,27644560.962099744,32436284.862197039 + 01/11 14:00:00,178993907.8305753,0.0,4797.907008182824,196266373.06003348,0.0,27644560.962099744,32436284.862197039 + 01/11 15:00:00,111138017.74724129,0.0,4797.907008182824,128410482.97669944,0.0,27644560.962099744,32436284.862197039 + 01/11 16:00:00,121655919.61393938,0.0,4785.621375584731,138884156.5660444,0.0,27644560.962099744,32436284.862197039 + 01/11 17:00:00,207790579.479901,0.0,3722.1499587881237,221190319.33153824,0.0,27644560.962099744,32436284.862197039 + 01/11 18:00:00,231644109.50976575,0.0,2645.8341632663325,241169112.4975245,0.0,27644560.962099744,28832253.210841814 + 01/11 19:00:00,262074643.54593615,0.0,1583.191107500839,267774131.53293915,0.0,15358089.423388744,18020158.25677613 + 01/11 20:00:00,283354635.1399203,0.0,1050.068433283284,287134881.4997401,0.0,9214853.654033246,10812094.954065679 + 01/11 21:00:00,289908349.1664806,0.0,1047.565171893584,293679583.7852975,0.0,9214853.654033246,10812094.954065679 + 01/11 22:00:00,0.0,0.0,1044.519340709884,3760269.6265555827,0.0,6143235.769355498,3604031.6513552267 + 01/11 23:00:00,0.0,0.0,260.48673279390069,937752.2380580423,0.0,6143235.769355498,3604031.6513552267 + 01/11 24:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/12 01:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 01/12 02:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 01/12 03:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 01/12 04:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 01/12 05:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 01/12 06:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 01/12 07:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 01/12 08:00:00,0.0,0.0,256.7491556465609,924296.9603276192,0.0,6143235.769355498,1802015.8256776133 + 01/12 09:00:00,0.0,0.0,257.4328481693972,926758.2534098297,0.0,6143235.769355498,1802015.8256776133 + 01/12 10:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 01/12 11:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 01/12 12:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/12 13:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/12 14:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/12 15:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/12 16:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/12 17:00:00,0.0,0.0,262.517108320821,945061.5899549556,0.0,6143235.769355498,1802015.8256776133 + 01/12 18:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/12 19:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/12 20:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/12 21:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/12 22:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/12 23:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/12 24:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/13 01:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/13 02:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/13 03:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/13 04:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/13 05:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/13 06:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/13 07:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/13 08:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/13 09:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/13 10:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 01/13 11:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/13 12:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/13 13:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/13 14:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/13 15:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/13 16:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/13 17:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/13 18:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/13 19:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/13 20:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/13 21:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/13 22:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/13 23:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/13 24:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/14 01:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/14 02:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/14 03:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/14 04:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/14 05:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/14 06:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 01/14 07:00:00,680604995.6334666,19280361.501862416,267.76762788994525,681568959.0938704,19280361.501862416,6143235.769355498,1802015.8256776133 + 01/14 08:00:00,271951401.228177,0.0,535.5352557798905,273879328.1489846,0.0,9214853.654033246,10812094.954065679 + 01/14 09:00:00,192992070.19418855,0.0,2677.676278899452,202631704.7982266,0.0,24572943.077421994,28832253.210841814 + 01/14 10:00:00,98782675.58512289,0.0,2683.0602851108267,108441692.61152184,0.0,27644560.962099744,32436284.862197039 + 01/14 11:00:00,87323855.97395355,0.0,4840.912335561223,104751140.38197395,0.0,27644560.962099744,32436284.862197039 + 01/14 12:00:00,108823913.67935235,0.0,4861.1676194657279,126324117.10942897,0.0,27644560.962099744,32436284.862197039 + 01/14 13:00:00,103129839.62068659,0.0,4880.559639258913,120699854.32201869,0.0,27644560.962099744,32436284.862197039 + 01/14 14:00:00,68138435.42693182,0.0,4899.065882635347,85775072.60441906,0.0,27644560.962099744,32436284.862197039 + 01/14 15:00:00,45321775.28637037,0.0,4899.065882635347,62958412.46385762,0.0,27644560.962099744,32436284.862197039 + 01/14 16:00:00,57496551.95526526,0.0,4908.779127674067,75168156.8148919,0.0,27644560.962099744,32436284.862197039 + 01/14 17:00:00,147548516.16599495,0.0,3803.9284554508906,161242658.60561816,0.0,27644560.962099744,32436284.862197039 + 01/14 18:00:00,170513478.0066012,0.0,2711.422021810507,180274597.285119,0.0,27644560.962099744,28832253.210841814 + 01/14 19:00:00,197458592.72756926,0.0,1623.363522270677,203302701.4077437,0.0,15358089.423388744,18020158.25677613 + 01/14 20:00:00,207180607.31466914,0.0,1086.8367015573975,211093219.44027577,0.0,9214853.654033246,10812094.954065679 + 01/14 21:00:00,202393242.4287834,0.0,1086.8367015573975,206305854.55439,0.0,9214853.654033246,10812094.954065679 + 01/14 22:00:00,0.0,0.0,1088.6813072522999,3919252.706108277,0.0,6143235.769355498,3604031.6513552267 + 01/14 23:00:00,0.0,0.0,272.1703268130748,979813.1765270694,0.0,6143235.769355498,3604031.6513552267 + 01/14 24:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/15 01:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/15 02:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 01/15 03:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/15 04:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/15 05:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 01/15 06:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 01/15 07:00:00,651728897.4836699,15670608.715589825,267.76762788994525,652692860.9440738,15670608.715589825,6143235.769355498,1802015.8256776133 + 01/15 08:00:00,250121619.62290538,0.0,531.7357083983035,252035868.17313928,0.0,9214853.654033246,10812094.954065679 + 01/15 09:00:00,118669718.96020723,0.0,2645.8341632663325,128194721.94796603,0.0,24572943.077421994,28832253.210841814 + 01/15 10:00:00,95024204.07384837,0.0,2638.6518458347325,104523350.7188534,0.0,27644560.962099744,32436284.862197039 + 01/15 11:00:00,112205488.71366908,0.0,4749.573322502519,129303952.67467815,0.0,27644560.962099744,32436284.862197039 + 01/15 12:00:00,138783694.1038781,0.0,4749.573322502519,155882158.06488718,0.0,27644560.962099744,32436284.862197039 + 01/15 13:00:00,148416708.29585973,0.0,4749.573322502519,165515172.25686879,0.0,27644560.962099744,32436284.862197039 + 01/15 14:00:00,116261823.16493353,0.0,4749.573322502519,133360287.1259426,0.0,27644560.962099744,32436284.862197039 + 01/15 15:00:00,83803944.34496174,0.0,4762.501493879398,100948949.72292757,0.0,27644560.962099744,32436284.862197039 + 01/15 16:00:00,106886970.9302437,0.0,4749.573322502519,123985434.89125277,0.0,27644560.962099744,32436284.862197039 + 01/15 17:00:00,215498590.55411617,0.0,3675.2395164914939,228729452.81348554,0.0,27644560.962099744,32436284.862197039 + 01/15 18:00:00,244582572.64637286,0.0,2618.9129297339607,254010659.1934151,0.0,27644560.962099744,28832253.210841814 + 01/15 19:00:00,277089564.5720054,0.0,1566.7790110648262,282729969.0118388,0.0,15358089.423388744,18020158.25677613 + 01/15 20:00:00,297721019.13651278,0.0,1041.9469311756027,301472028.088745,0.0,9214853.654033246,10812094.954065679 + 01/15 21:00:00,302453447.8102376,0.0,1038.8199025866384,306193199.4595495,0.0,9214853.654033246,10812094.954065679 + 01/15 22:00:00,0.0,0.0,1038.8199025866382,3739751.649311898,0.0,6143235.769355498,3604031.6513552267 + 01/15 23:00:00,0.0,0.0,258.91252718304426,932085.0978589589,0.0,6143235.769355498,3604031.6513552267 + 01/15 24:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 01/16 01:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 01/16 02:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 01/16 03:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 01/16 04:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 01/16 05:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/16 06:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/16 07:00:00,828512209.7179483,16602203.483125166,260.48673279390069,829449961.9560063,16602203.483125166,6143235.769355498,1802015.8256776133 + 01/16 08:00:00,324053784.1878317,0.0,522.259670354942,325933919.0011095,0.0,9214853.654033246,10812094.954065679 + 01/16 09:00:00,254200197.09309135,0.0,2618.9129297339607,263628283.6401336,0.0,24572943.077421994,28832253.210841814 + 01/16 10:00:00,219750210.40794135,0.0,2632.573827847691,229227476.18819303,0.0,27644560.962099744,32436284.862197039 + 01/16 11:00:00,191475544.78428874,0.0,4762.501493879398,208620550.16225458,0.0,27644560.962099744,32436284.862197039 + 01/16 12:00:00,179846531.5857117,0.0,4785.621375584731,197074768.5378167,0.0,27644560.962099744,32436284.862197039 + 01/16 13:00:00,170897290.48730148,0.0,4797.907008182824,188169755.71675969,0.0,27644560.962099744,32436284.862197039 + 01/16 14:00:00,150763724.1186886,0.0,4829.508513199488,168149954.76620678,0.0,27644560.962099744,32436284.862197039 + 01/16 15:00:00,93229451.75645843,0.0,4829.508513199488,110615682.40397659,0.0,27644560.962099744,32436284.862197039 + 01/16 16:00:00,99290355.89293015,0.0,4829.508513199488,116676586.54044831,0.0,27644560.962099744,32436284.862197039 + 01/16 17:00:00,191297954.2964283,0.0,3748.746790459232,204793442.74208153,0.0,27644560.962099744,32436284.862197039 + 01/16 18:00:00,216596149.49681086,0.0,2677.676278899452,226235784.1008489,0.0,27644560.962099744,28832253.210841814 + 01/16 19:00:00,241204332.10489003,0.0,1606.6057673396713,246988112.86731283,0.0,15358089.423388744,18020158.25677613 + 01/16 20:00:00,256063187.46162487,0.0,1071.070511559781,259919041.30324007,0.0,9214853.654033246,10812094.954065679 + 01/16 21:00:00,255253854.43561185,0.0,1073.2241140443308,259117461.2461714,0.0,9214853.654033246,10812094.954065679 + 01/16 22:00:00,0.0,0.0,1077.8277378405997,3880179.856226157,0.0,6143235.769355498,3604031.6513552267 + 01/16 23:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,3604031.6513552267 + 01/16 24:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/17 01:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/17 02:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/17 03:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/17 04:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/17 05:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 01/17 06:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/17 07:00:00,589843004.4630913,20507431.230468837,271.70917538934938,590821157.4944929,20507431.230468837,6143235.769355498,1802015.8256776133 + 01/17 08:00:00,239010138.92351524,0.0,543.4183507786987,240966444.98631854,0.0,9214853.654033246,10812094.954065679 + 01/17 09:00:00,158424823.93552966,0.0,2721.703268130748,168222955.70080037,0.0,24572943.077421994,28832253.210841814 + 01/17 10:00:00,108148334.74646893,0.0,2727.099515374481,117965893.00181708,0.0,27644560.962099744,32436284.862197039 + 01/17 11:00:00,119682857.9754438,0.0,4925.874561759427,137416006.3977777,0.0,27644560.962099744,32436284.862197039 + 01/17 12:00:00,110385192.5138621,0.0,4942.031613078273,128176506.32094388,0.0,27644560.962099744,32436284.862197039 + 01/17 13:00:00,107671734.91991559,0.0,4949.060404175298,125488352.37494667,0.0,27644560.962099744,32436284.862197039 + 01/17 14:00:00,100091542.42988447,0.0,4957.231524818371,117937575.9192306,0.0,27644560.962099744,32436284.862197039 + 01/17 15:00:00,88812098.70384623,0.0,4949.060404175298,106628716.15887729,0.0,27644560.962099744,32436284.862197039 + 01/17 16:00:00,94718176.4727751,0.0,4949.060404175298,112534793.92780619,0.0,27644560.962099744,32436284.862197039 + 01/17 17:00:00,137673428.95916979,0.0,3843.802365727545,151511117.47578896,0.0,27644560.962099744,32436284.862197039 + 01/17 18:00:00,152673138.42470039,0.0,2745.573118376818,162557201.6508569,0.0,27644560.962099744,28832253.210841814 + 01/17 19:00:00,177107970.4480996,0.0,1647.343871026091,183038408.38379354,0.0,15358089.423388744,18020158.25677613 + 01/17 20:00:00,192339384.51251943,0.0,1098.2292473507274,196293009.80298204,0.0,9214853.654033246,10812094.954065679 + 01/17 21:00:00,194087127.80287809,0.0,1098.2292473507274,198040753.09334067,0.0,9214853.654033246,10812094.954065679 + 01/17 22:00:00,0.0,0.0,1098.2292473507274,3953625.2904626179,0.0,6143235.769355498,3604031.6513552267 + 01/17 23:00:00,0.0,0.0,274.5573118376818,988406.3226156544,0.0,6143235.769355498,3604031.6513552267 + 01/17 24:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/18 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/18 02:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/18 03:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/18 04:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/18 05:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/18 06:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 01/18 07:00:00,522545867.2430595,17827405.235597634,273.6596978755237,523531042.15541139,17827405.235597634,6143235.769355498,1802015.8256776133 + 01/18 08:00:00,209213653.59788377,0.0,546.296096176939,211180319.54412074,0.0,9214853.654033246,10812094.954065679 + 01/18 09:00:00,117857337.28515099,0.0,2736.5969787552369,127709086.40866985,0.0,24572943.077421994,28832253.210841814 + 01/18 10:00:00,98422793.07570639,0.0,2740.7423096507775,108289465.3904492,0.0,27644560.962099744,32436284.862197039 + 01/18 11:00:00,100961453.96539827,0.0,4933.336157371399,118721464.13193532,0.0,27644560.962099744,32436284.862197039 + 01/18 12:00:00,99679107.56532517,0.0,4949.060404175298,117495725.02035626,0.0,27644560.962099744,32436284.862197039 + 01/18 13:00:00,96242722.22174952,0.0,4949.060404175298,114059339.67678058,0.0,27644560.962099744,32436284.862197039 + 01/18 14:00:00,99967776.17085937,0.0,4949.060404175298,117784393.62589044,0.0,27644560.962099744,32436284.862197039 + 01/18 15:00:00,97128232.3971943,0.0,4957.231524818371,114974265.88654045,0.0,27644560.962099744,32436284.862197039 + 01/18 16:00:00,98869494.47190242,0.0,4957.231524818371,116715527.96124855,0.0,27644560.962099744,32436284.862197039 + 01/18 17:00:00,130167298.34269817,0.0,3855.624519303176,144047546.6121896,0.0,27644560.962099744,32436284.862197039 + 01/18 18:00:00,144561705.42600966,0.0,2749.4780023196096,154459826.23436023,0.0,27644560.962099744,28832253.210841814 + 01/18 19:00:00,170577178.89213068,0.0,1649.6868013917659,176516051.377141,0.0,15358089.423388744,18020158.25677613 + 01/18 20:00:00,187923227.64609213,0.0,1098.2292473507274,191876852.93655474,0.0,9214853.654033246,10812094.954065679 + 01/18 21:00:00,188183075.85992018,0.0,1099.7912009278439,192142324.18326045,0.0,9214853.654033246,10812094.954065679 + 01/18 22:00:00,0.0,0.0,1099.7912009278437,3959248.3233402369,0.0,6143235.769355498,3604031.6513552267 + 01/18 23:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,3604031.6513552267 + 01/18 24:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 02:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 04:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 05:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 06:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 07:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 01/19 08:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 09:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/19 10:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/19 11:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/19 12:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/19 13:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/19 14:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/19 15:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/19 16:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/19 17:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/19 18:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/19 19:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/19 20:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/19 21:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/19 22:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/19 23:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/19 24:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/20 01:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 02:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 03:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 04:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 05:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 06:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 07:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/20 08:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 09:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 10:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/20 11:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 12:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 13:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 14:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/20 15:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 16:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/20 17:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/20 18:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 01/20 19:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 20:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 21:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 22:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 23:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/20 24:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 01/21 01:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/21 02:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/21 03:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 01/21 04:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/21 05:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/21 06:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/21 07:00:00,432398517.8877066,16204769.054269925,276.9272488078928,433395455.98341497,16204769.054269925,6143235.769355498,1802015.8256776133 + 01/21 08:00:00,162338544.91000284,0.0,550.8035027575967,164321437.51993019,0.0,9214853.654033246,10812094.954065679 + 01/21 09:00:00,39384533.00030344,0.0,2761.9203618423509,49327446.302935909,0.0,24572943.077421994,28832253.210841814 + 01/21 10:00:00,0.0,0.0,2765.999443852371,9957597.997868535,0.0,27644560.962099744,32436284.862197039 + 01/21 11:00:00,0.0,0.0,4991.485567824271,17969348.044167378,0.0,27644560.962099744,32436284.862197039 + 01/21 12:00:00,7502236.22274018,0.0,4996.91764327103,25491139.738515889,0.0,27644560.962099744,32436284.862197039 + 01/21 13:00:00,8607366.527642943,0.0,5013.801502629307,26657051.93710845,0.0,27644560.962099744,32436284.862197039 + 01/21 14:00:00,0.0,0.0,5013.801502629307,18049685.409465508,0.0,27644560.962099744,32436284.862197039 + 01/21 15:00:00,0.0,0.0,5013.801502629307,18049685.409465508,0.0,27644560.962099744,32436284.862197039 + 01/21 16:00:00,1962310.3903272073,0.0,5008.123950918437,19991556.61363358,0.0,27644560.962099744,32436284.862197039 + 01/21 17:00:00,60345989.66253737,0.0,3891.344788924307,74354830.90266487,0.0,27644560.962099744,32436284.862197039 + 01/21 18:00:00,84373192.80878714,0.0,2776.0653573727947,94367028.0953292,0.0,27644560.962099744,28832253.210841814 + 01/21 19:00:00,114254762.18321723,0.0,1663.8285226080905,120244544.86460637,0.0,15358089.423388744,18020158.25677613 + 01/21 20:00:00,131293104.94798504,0.0,1109.2190150720604,135286293.40224446,0.0,9214853.654033246,10812094.954065679 + 01/21 21:00:00,135803984.75558,0.0,1109.2190150720604,139797173.20983947,0.0,9214853.654033246,10812094.954065679 + 01/21 22:00:00,0.0,0.0,1109.2190150720599,3993188.454259418,0.0,6143235.769355498,3604031.6513552267 + 01/21 23:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,3604031.6513552267 + 01/21 24:00:00,0.0,0.0,276.9272488078928,996938.095708414,0.0,6143235.769355498,1802015.8256776133 + 01/22 01:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/22 02:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/22 03:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/22 04:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/22 05:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/22 06:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/22 07:00:00,457986711.53027459,16094853.769452885,275.8395892777431,458979734.0516744,16094853.769452885,6143235.769355498,1802015.8256776133 + 01/22 08:00:00,180356292.12604565,0.0,551.6791785554862,182342337.16884542,0.0,9214853.654033246,10812094.954065679 + 01/22 09:00:00,127337494.76999034,0.0,2758.3958927774308,137267719.9839891,0.0,24572943.077421994,28832253.210841814 + 01/22 10:00:00,110708063.37407243,0.0,2761.9203618423509,120650976.67670492,0.0,27644560.962099744,32436284.862197039 + 01/22 11:00:00,106653615.95395109,0.0,4971.456651316232,124550859.89868953,0.0,27644560.962099744,32436284.862197039 + 01/22 12:00:00,92611218.50084323,0.0,4971.456651316232,110508462.44558166,0.0,27644560.962099744,32436284.862197039 + 01/22 13:00:00,99763684.88636865,0.0,4978.798998934269,117687361.282532,0.0,27644560.962099744,32436284.862197039 + 01/22 14:00:00,95985228.46603185,0.0,4984.69047854207,113930114.1887833,0.0,27644560.962099744,32436284.862197039 + 01/22 15:00:00,77457883.08148273,0.0,4978.798998934269,95381559.47764611,0.0,27644560.962099744,32436284.862197039 + 01/22 16:00:00,91969461.39297185,0.0,4978.798998934269,109893137.78913519,0.0,27644560.962099744,32436284.862197039 + 01/22 17:00:00,104794888.84705828,0.0,3876.9814833104985,118752022.18697608,0.0,27644560.962099744,32436284.862197039 + 01/22 18:00:00,114955865.29452008,0.0,2765.999443852371,124913463.29238862,0.0,27644560.962099744,28832253.210841814 + 01/22 19:00:00,144255989.01391948,0.0,1659.5996663114227,150230547.8126406,0.0,15358089.423388744,18020158.25677613 + 01/22 20:00:00,161517815.997974,0.0,1106.3997775409485,165500855.19712139,0.0,9214853.654033246,10812094.954065679 + 01/22 21:00:00,166113442.13375939,0.0,1104.7681447369399,170090607.45481236,0.0,9214853.654033246,10812094.954065679 + 01/22 22:00:00,0.0,0.0,1104.7681447369399,3977165.321052983,0.0,6143235.769355498,3604031.6513552267 + 01/22 23:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,3604031.6513552267 + 01/22 24:00:00,0.0,0.0,275.839589277743,993022.5213998749,0.0,6143235.769355498,1802015.8256776133 + 01/23 01:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 01/23 02:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 01/23 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/23 04:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 01/23 05:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/23 06:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 01/23 07:00:00,456247528.1239259,18038130.0287774,276.19203618423497,457241819.4541891,18038130.0287774,6143235.769355498,1802015.8256776133 + 01/23 08:00:00,182719924.10409243,0.0,553.1998887704742,184711443.70366613,0.0,9214853.654033246,10812094.954065679 + 01/23 09:00:00,114553265.82475178,0.0,2765.999443852371,124510863.82262032,0.0,24572943.077421994,28832253.210841814 + 01/23 10:00:00,96115091.186759,0.0,2765.999443852371,106072689.18462754,0.0,27644560.962099744,32436284.862197039 + 01/23 11:00:00,102411663.5261751,0.0,4965.112606999375,120286068.91137284,0.0,27644560.962099744,32436284.862197039 + 01/23 12:00:00,108131056.87312562,0.0,4971.456651316232,126028300.81786405,0.0,27644560.962099744,32436284.862197039 + 01/23 13:00:00,114690891.82426402,0.0,4965.112606999375,132565297.20946178,0.0,27644560.962099744,32436284.862197039 + 01/23 14:00:00,115342563.52912975,0.0,4971.456651316232,133239807.47386818,0.0,27644560.962099744,32436284.862197039 + 01/23 15:00:00,114096537.02200076,0.0,4971.456651316232,131993780.9667392,0.0,27644560.962099744,32436284.862197039 + 01/23 16:00:00,123870999.02573587,0.0,4965.112606999375,141745404.4109336,0.0,27644560.962099744,32436284.862197039 + 01/23 17:00:00,131554309.35563039,0.0,3866.6885065792905,145474387.97931583,0.0,27644560.962099744,32436284.862197039 + 01/23 18:00:00,136497354.91653449,0.0,2761.9203618423509,146440268.21916694,0.0,27644560.962099744,28832253.210841814 + 01/23 19:00:00,163394964.79689939,0.0,1655.0375356664584,169353099.92529864,0.0,15358089.423388744,18020158.25677613 + 01/23 20:00:00,179775894.84073959,0.0,1103.3583571109724,183747984.9263391,0.0,9214853.654033246,10812094.954065679 + 01/23 21:00:00,179894403.81606186,0.0,1103.3583571109724,183866493.9016614,0.0,9214853.654033246,10812094.954065679 + 01/23 22:00:00,0.0,0.0,1103.358357110972,3972090.085599501,0.0,6143235.769355498,3604031.6513552267 + 01/23 23:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,3604031.6513552267 + 01/23 24:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 01/24 01:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/24 02:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 01/24 03:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/24 04:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/24 05:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/24 06:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 01/24 07:00:00,418432763.9288925,18624389.22292063,277.3047537680151,419431061.04245737,18624389.22292063,6143235.769355498,1802015.8256776133 + 01/24 08:00:00,168082285.58119685,0.0,554.6095075360302,170078879.80832655,0.0,9214853.654033246,10812094.954065679 + 01/24 09:00:00,111478780.55980385,0.0,2773.0475376801507,121461751.69545239,0.0,24572943.077421994,28832253.210841814 + 01/24 10:00:00,92440805.46628797,0.0,2773.0475376801507,102423776.60193652,0.0,27644560.962099744,32436284.862197039 + 01/24 11:00:00,88606913.85498719,0.0,4991.485567824271,106576261.89915459,0.0,27644560.962099744,32436284.862197039 + 01/24 12:00:00,82469053.58261022,0.0,4996.91764327103,100457957.09838592,0.0,27644560.962099744,32436284.862197039 + 01/24 13:00:00,87302448.92610605,0.0,4996.91764327103,105291352.44188178,0.0,27644560.962099744,32436284.862197039 + 01/24 14:00:00,91579184.00321183,0.0,4996.91764327103,109568087.51898754,0.0,27644560.962099744,32436284.862197039 + 01/24 15:00:00,97160256.76778706,0.0,4996.91764327103,115149160.28356278,0.0,27644560.962099744,32436284.862197039 + 01/24 16:00:00,103873120.5249749,0.0,4991.485567824271,121842468.56914228,0.0,27644560.962099744,32436284.862197039 + 01/24 17:00:00,110519742.36570765,0.0,3882.2665527522106,124495901.95561561,0.0,27644560.962099744,32436284.862197039 + 01/24 18:00:00,124584703.45017793,0.0,2765.999443852371,134542301.44804646,0.0,27644560.962099744,28832253.210841814 + 01/24 19:00:00,157201552.8936276,0.0,1655.0375356664584,163159688.02202688,0.0,15358089.423388744,18020158.25677613 + 01/24 20:00:00,182028575.8811738,0.0,1098.2292473507274,185982201.17163638,0.0,9214853.654033246,10812094.954065679 + 01/24 21:00:00,186783135.94849015,0.0,1099.7912009278439,190742384.27183036,0.0,9214853.654033246,10812094.954065679 + 01/24 22:00:00,0.0,0.0,1096.2969238603114,3946668.925897121,0.0,6143235.769355498,3604031.6513552267 + 01/24 23:00:00,0.0,0.0,273.1480480884696,983332.9731184903,0.0,6143235.769355498,3604031.6513552267 + 01/24 24:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 01/25 01:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 01/25 02:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/25 03:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 01/25 04:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/25 05:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/25 06:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/25 07:00:00,765398690.8390905,13761751.296325392,262.5171083208211,766343752.4290453,13761751.296325392,6143235.769355498,1802015.8256776133 + 01/25 08:00:00,275965503.4859037,0.0,522.259670354942,277845638.29918149,0.0,9214853.654033246,10812094.954065679 + 01/25 09:00:00,119756885.0744146,0.0,2625.17108320821,129207500.97396416,0.0,24572943.077421994,28832253.210841814 + 01/25 10:00:00,80346151.95656228,0.0,2638.6518458347325,89845298.60156732,0.0,27644560.962099744,32436284.862197039 + 01/25 11:00:00,90500430.11510617,0.0,4773.104981569289,107683608.04875559,0.0,27644560.962099744,32436284.862197039 + 01/25 12:00:00,117095400.13901729,0.0,4785.621375584731,134323637.0911223,0.0,27644560.962099744,32436284.862197039 + 01/25 13:00:00,124477157.8092817,0.0,4785.621375584731,141705394.76138673,0.0,27644560.962099744,32436284.862197039 + 01/25 14:00:00,92473058.16685266,0.0,4797.907008182824,109745523.39631082,0.0,27644560.962099744,32436284.862197039 + 01/25 15:00:00,58516490.041061419,0.0,4797.907008182824,75788955.27051959,0.0,27644560.962099744,32436284.862197039 + 01/25 16:00:00,68236624.45223212,0.0,4773.104981569289,85419802.38588156,0.0,27644560.962099744,32436284.862197039 + 01/25 17:00:00,169202146.5530147,0.0,3685.6033589867677,182470318.6453671,0.0,27644560.962099744,32436284.862197039 + 01/25 18:00:00,224029983.62983603,0.0,2618.9129297339607,233458070.17687828,0.0,27644560.962099744,28832253.210841814 + 01/25 19:00:00,259955826.74900968,0.0,1566.7790110648262,265596231.18884305,0.0,15358089.423388744,18020158.25677613 + 01/25 20:00:00,279105348.50190827,0.0,1041.9469311756027,282856357.45414039,0.0,9214853.654033246,10812094.954065679 + 01/25 21:00:00,277993919.7445284,0.0,1035.6501087321768,281722260.1359643,0.0,9214853.654033246,10812094.954065679 + 01/25 22:00:00,0.0,0.0,1029.7313926775885,3707033.013639318,0.0,6143235.769355498,3604031.6513552267 + 01/25 23:00:00,0.0,0.0,258.24418385587298,929679.0618811423,0.0,6143235.769355498,3604031.6513552267 + 01/25 24:00:00,0.0,0.0,256.7491556465609,924296.9603276192,0.0,6143235.769355498,1802015.8256776133 + 01/26 01:00:00,0.0,0.0,255.9198746214109,921311.5486370793,0.0,6143235.769355498,1802015.8256776133 + 01/26 02:00:00,0.0,0.0,255.9198746214109,921311.5486370793,0.0,6143235.769355498,1802015.8256776133 + 01/26 03:00:00,0.0,0.0,254.37536295863243,915751.3066510768,0.0,6143235.769355498,1802015.8256776133 + 01/26 04:00:00,0.0,0.0,254.37536295863243,915751.3066510768,0.0,6143235.769355498,1802015.8256776133 + 01/26 05:00:00,0.0,0.0,253.6633700495674,913188.1321784426,0.0,6143235.769355498,1802015.8256776133 + 01/26 06:00:00,0.0,0.0,251.1989319492238,904316.1550172058,0.0,6143235.769355498,1802015.8256776133 + 01/26 07:00:00,0.0,0.0,252.8011062133843,910083.9823681834,0.0,6143235.769355498,1802015.8256776133 + 01/26 08:00:00,0.0,0.0,251.9305357739626,906949.9287862654,0.0,6143235.769355498,1802015.8256776133 + 01/26 09:00:00,0.0,0.0,254.37536295863243,915751.3066510765,0.0,6143235.769355498,1802015.8256776133 + 01/26 10:00:00,0.0,0.0,258.24418385587298,929679.0618811426,0.0,6143235.769355498,1802015.8256776133 + 01/26 11:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 01/26 12:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/26 13:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/26 14:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/26 15:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 01/26 16:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/26 17:00:00,0.0,0.0,261.89129297339607,942808.6547042255,0.0,6143235.769355498,1802015.8256776133 + 01/26 18:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/26 19:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/26 20:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/26 21:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 01/26 22:00:00,0.0,0.0,255.22162660542529,918797.8557795311,0.0,6143235.769355498,1802015.8256776133 + 01/26 23:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 01/26 24:00:00,0.0,0.0,255.9198746214109,921311.5486370793,0.0,6143235.769355498,1802015.8256776133 + 01/27 01:00:00,0.0,0.0,255.22162660542529,918797.8557795311,0.0,6143235.769355498,1802015.8256776133 + 01/27 02:00:00,0.0,0.0,255.22162660542529,918797.8557795311,0.0,6143235.769355498,1802015.8256776133 + 01/27 03:00:00,0.0,0.0,256.7491556465609,924296.9603276192,0.0,6143235.769355498,1802015.8256776133 + 01/27 04:00:00,0.0,0.0,256.7491556465609,924296.9603276192,0.0,6143235.769355498,1802015.8256776133 + 01/27 05:00:00,0.0,0.0,256.7491556465609,924296.9603276192,0.0,6143235.769355498,1802015.8256776133 + 01/27 06:00:00,0.0,0.0,255.9198746214109,921311.5486370793,0.0,6143235.769355498,1802015.8256776133 + 01/27 07:00:00,0.0,0.0,256.7491556465609,924296.9603276192,0.0,6143235.769355498,1802015.8256776133 + 01/27 08:00:00,0.0,0.0,258.9125271830442,932085.0978589589,0.0,6143235.769355498,1802015.8256776133 + 01/27 09:00:00,0.0,0.0,259.7049756466597,934937.9123279745,0.0,6143235.769355498,1802015.8256776133 + 01/27 10:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 01/27 11:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/27 12:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/27 13:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 01/27 14:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/27 15:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/27 16:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/27 17:00:00,0.0,0.0,265.17249897607158,954620.9963138576,0.0,6143235.769355498,1802015.8256776133 + 01/27 18:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/27 19:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 01/27 20:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/27 21:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 01/27 22:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/27 23:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/27 24:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 01/28 01:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 01/28 02:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/28 03:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/28 04:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 01/28 05:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/28 06:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/28 07:00:00,777478844.6673797,15306731.655089895,261.891292973396,778421653.322084,15306731.655089895,6143235.769355498,1802015.8256776133 + 01/28 08:00:00,279278406.7720004,0.0,523.782585946792,281164024.08140888,0.0,9214853.654033246,10812094.954065679 + 01/28 09:00:00,138287884.04450248,0.0,2618.9129297339607,147715970.59154473,0.0,24572943.077421994,28832253.210841814 + 01/28 10:00:00,108543963.5205881,0.0,2632.573827847691,118021229.30083978,0.0,27644560.962099744,32436284.862197039 + 01/28 11:00:00,107274971.87370532,0.0,4738.632890125845,124334050.27815835,0.0,27644560.962099744,32436284.862197039 + 01/28 12:00:00,123042968.11191663,0.0,4749.573322502519,140141432.0729257,0.0,27644560.962099744,32436284.862197039 + 01/28 13:00:00,138170643.67371113,0.0,4749.573322502519,155269107.63472019,0.0,27644560.962099744,32436284.862197039 + 01/28 14:00:00,126343339.35721475,0.0,4738.632890125845,143402417.7616678,0.0,27644560.962099744,32436284.862197039 + 01/28 15:00:00,129606731.15423866,0.0,4738.632890125845,146665809.55869169,0.0,27644560.962099744,32436284.862197039 + 01/28 16:00:00,174428082.91477386,0.0,4738.632890125845,191487161.31922687,0.0,27644560.962099744,32436284.862197039 + 01/28 17:00:00,229990371.33979476,0.0,3675.2395164914939,243221233.59916414,0.0,27644560.962099744,32436284.862197039 + 01/28 18:00:00,251532178.7188084,0.0,2625.17108320821,260982794.61835794,0.0,27644560.962099744,28832253.210841814 + 01/28 19:00:00,274685175.5346694,0.0,1579.5442967086149,280371535.00282046,0.0,15358089.423388744,18020158.25677613 + 01/28 20:00:00,288998481.8654519,0.0,1053.0295311390765,292789388.1775525,0.0,9214853.654033246,10812094.954065679 + 01/28 21:00:00,290625503.2031734,0.0,1053.0295311390765,294416409.51527407,0.0,9214853.654033246,10812094.954065679 + 01/28 22:00:00,0.0,0.0,1053.029531139076,3790906.312100676,0.0,6143235.769355498,3604031.6513552267 + 01/28 23:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,3604031.6513552267 + 01/28 24:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/29 01:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/29 02:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 01/29 03:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/29 04:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 01/29 05:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/29 06:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 01/29 07:00:00,822884647.1691904,15711557.829815196,260.48673279390069,823822399.4072485,15711557.829815196,6143235.769355498,1802015.8256776133 + 01/29 08:00:00,313534759.31098237,0.0,519.4099512933192,315404635.1356383,0.0,9214853.654033246,10812094.954065679 + 01/29 09:00:00,219072683.44111286,0.0,2604.8673279390065,228450205.82169328,0.0,24572943.077421994,28832253.210841814 + 01/29 10:00:00,200724004.41773696,0.0,2604.8673279390065,210101526.79831738,0.0,27644560.962099744,32436284.862197039 + 01/29 11:00:00,189871079.48366488,0.0,4714.04327352113,206841635.26834096,0.0,27644560.962099744,32436284.862197039 + 01/29 12:00:00,180228295.7349223,0.0,4738.632890125845,197287374.13937534,0.0,27644560.962099744,32436284.862197039 + 01/29 13:00:00,172883685.1830139,0.0,4749.573322502519,189982149.14402295,0.0,27644560.962099744,32436284.862197039 + 01/29 14:00:00,131777211.61010395,0.0,4773.104981569289,148960389.5437534,0.0,27644560.962099744,32436284.862197039 + 01/29 15:00:00,93164534.06659092,0.0,4785.621375584731,110392771.01869595,0.0,27644560.962099744,32436284.862197039 + 01/29 16:00:00,83814932.674528,0.0,4785.621375584731,101043169.62663304,0.0,27644560.962099744,32436284.862197039 + 01/29 17:00:00,152260219.7548626,0.0,3712.4149856650017,165624913.7032566,0.0,27644560.962099744,32436284.862197039 + 01/29 18:00:00,219937124.12536443,0.0,2645.8341632663325,229462127.1131232,0.0,27644560.962099744,28832253.210841814 + 01/29 19:00:00,249219736.1800249,0.0,1583.191107500839,254919224.1670279,0.0,15358089.423388744,18020158.25677613 + 01/29 20:00:00,262844751.06797079,0.0,1055.460738333893,266644409.7259728,0.0,9214853.654033246,10812094.954065679 + 01/29 21:00:00,260443455.93396915,0.0,1055.460738333893,264243114.59197117,0.0,9214853.654033246,10812094.954065679 + 01/29 22:00:00,0.0,0.0,1050.0684332832846,3780246.359819824,0.0,6143235.769355498,3604031.6513552267 + 01/29 23:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,3604031.6513552267 + 01/29 24:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/30 01:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/30 02:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/30 03:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/30 04:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 01/30 05:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/30 06:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 01/30 07:00:00,759525876.6321395,15639967.954325304,263.86518458347327,760475791.2966399,15639967.954325304,6143235.769355498,1802015.8256776133 + 01/30 08:00:00,294279118.653699,0.0,529.1668326532665,296184119.25125077,0.0,9214853.654033246,10812094.954065679 + 01/30 09:00:00,238090739.14169855,0.0,2651.724989760716,247636949.10483713,0.0,24572943.077421994,28832253.210841814 + 01/30 10:00:00,220977338.23730556,0.0,2665.503893434902,230573152.25367124,0.0,27644560.962099744,32436284.862197039 + 01/30 11:00:00,204435127.4570241,0.0,4829.508513199488,221821358.10454227,0.0,27644560.962099744,32436284.862197039 + 01/30 12:00:00,180258290.40284414,0.0,4870.09056681203,197790616.44336749,0.0,27644560.962099744,32436284.862197039 + 01/30 13:00:00,170061597.20279337,0.0,4908.779127674067,187733202.06242,0.0,27644560.962099744,32436284.862197039 + 01/30 14:00:00,154661290.47700013,0.0,4949.060404175298,172477907.9320312,0.0,27644560.962099744,32436284.862197039 + 01/30 15:00:00,132697895.7597026,0.0,4965.112606999375,150572301.14490033,0.0,27644560.962099744,32436284.862197039 + 01/30 16:00:00,131491716.1291005,0.0,4984.69047854207,149436601.85185195,0.0,27644560.962099744,32436284.862197039 + 01/30 17:00:00,127710331.95415473,0.0,3891.344788924307,141719173.19428224,0.0,27644560.962099744,32436284.862197039 + 01/30 18:00:00,126349300.38448619,0.0,2782.291083843576,136365548.28632305,0.0,27644560.962099744,28832253.210841814 + 01/30 19:00:00,142187409.11783547,0.0,1673.056491884028,148210412.48861797,0.0,15358089.423388744,18020158.25677613 + 01/30 20:00:00,148804339.28497387,0.0,1116.31221374432,152823063.25445343,0.0,9214853.654033246,10812094.954065679 + 01/30 21:00:00,152075946.1567653,0.0,1111.8127968355166,156078472.22537319,0.0,9214853.654033246,10812094.954065679 + 01/30 22:00:00,0.0,0.0,1096.2969238603108,3946668.9258971216,0.0,6143235.769355498,3604031.6513552267 + 01/30 23:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,3604031.6513552267 + 01/30 24:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/31 01:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/31 02:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/31 03:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/31 04:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/31 05:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 01/31 06:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 01/31 07:00:00,606202867.0664741,16447090.175591957,270.064867748096,607175100.5903672,16447090.175591957,6143235.769355498,1802015.8256776133 + 01/31 08:00:00,248133684.2658617,0.0,538.9138689202997,250073774.1939748,0.0,9214853.654033246,10812094.954065679 + 01/31 09:00:00,187708227.33304505,0.0,2700.6486774809598,197430562.57197649,0.0,24572943.077421994,28832253.210841814 + 01/31 10:00:00,145984470.38953293,0.0,2705.605870451128,155724651.523157,0.0,27644560.962099744,32436284.862197039 + 01/31 11:00:00,113194618.67066922,0.0,4880.559639258913,130764633.3720013,0.0,27644560.962099744,32436284.862197039 + 01/31 12:00:00,132341965.10080947,0.0,4880.559639258913,149911979.80214156,0.0,27644560.962099744,32436284.862197039 + 01/31 13:00:00,140134702.39673148,0.0,4880.559639258913,157704717.09806357,0.0,27644560.962099744,32436284.862197039 + 01/31 14:00:00,138875688.22468926,0.0,4880.559639258913,156445702.92602135,0.0,27644560.962099744,32436284.862197039 + 01/31 15:00:00,138344981.5110093,0.0,4880.559639258913,155914996.2123414,0.0,27644560.962099744,32436284.862197039 + 01/31 16:00:00,160790257.58414705,0.0,4880.559639258913,178360272.28547914,0.0,27644560.962099744,32436284.862197039 + 01/31 17:00:00,169314455.30949686,0.0,3795.990830534709,182980022.2994218,0.0,27644560.962099744,32436284.862197039 + 01/31 18:00:00,187957533.4670424,0.0,2711.422021810507,197718652.7455602,0.0,27644560.962099744,28832253.210841814 + 01/31 19:00:00,215422822.6666386,0.0,1624.5364400402182,221271153.85078339,0.0,15358089.423388744,18020158.25677613 + 01/31 20:00:00,229729595.56504206,0.0,1084.5688087242029,233634043.27644915,0.0,9214853.654033246,10812094.954065679 + 01/31 21:00:00,227783508.41423265,0.0,1086.4628201177816,231694774.56665666,0.0,9214853.654033246,10812094.954065679 + 01/31 22:00:00,0.0,0.0,1089.4075094921914,3921867.034171886,0.0,6143235.769355498,3604031.6513552267 + 01/31 23:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,3604031.6513552267 + 01/31 24:00:00,0.0,0.0,275.3272076638477,991177.9475898516,0.0,6143235.769355498,1802015.8256776133 + 02/01 01:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 02/01 02:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 02/01 03:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 02/01 04:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 02/01 05:00:00,0.0,0.0,279.21344538220645,1005168.4033759432,0.0,6143235.769355498,1802015.8256776133 + 02/01 06:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 02/01 07:00:00,371996622.1683051,13611081.49460949,278.842748647338,373000456.06343546,13611081.49460949,6143235.769355498,1802015.8256776133 + 02/01 08:00:00,135963609.03564353,0.0,558.15610687216,137972971.0203833,0.0,9214853.654033246,10812094.954065679 + 02/01 09:00:00,58778689.1022654,0.0,2790.7805343607999,68825499.02596429,0.0,24572943.077421994,28832253.210841814 + 02/01 10:00:00,43160928.95055303,0.0,2790.7805343607999,53207738.87425191,0.0,27644560.962099744,32436284.862197039 + 02/01 11:00:00,31895895.300635846,0.0,5028.200635795351,49997417.589499119,0.0,27644560.962099744,32436284.862197039 + 02/01 12:00:00,6092748.305785633,0.0,5031.956814710111,24207792.838742034,0.0,27644560.962099744,32436284.862197039 + 02/01 13:00:00,1222959.5679736234,0.0,5036.174622254158,19353188.208088589,0.0,27644560.962099744,32436284.862197039 + 02/01 14:00:00,0.0,0.0,5036.174622254158,18130228.640114968,0.0,27644560.962099744,32436284.862197039 + 02/01 15:00:00,0.0,19656073.700633404,5036.174622254158,18130228.640114968,19656073.700633404,27644560.962099744,32436284.862197039 + 02/01 16:00:00,0.0,11859956.940604667,5039.447133316979,18142009.67994112,11859956.940604667,27644560.962099744,32436284.862197039 + 02/01 17:00:00,4950572.654307727,19631.24607616918,3919.5699925798719,19061024.62759526,19631.24607616918,27644560.962099744,32436284.862197039 + 02/01 18:00:00,67210935.0560204,0.0,2799.6928518427655,77289829.32265435,0.0,27644560.962099744,28832253.210841814 + 02/01 19:00:00,99707407.39509207,0.0,1677.3189382367037,105745755.5727442,0.0,15358089.423388744,18020158.25677613 + 02/01 20:00:00,114788579.68769363,0.0,1119.8771407371062,118820137.3943472,0.0,9214853.654033246,10812094.954065679 + 02/01 21:00:00,114186433.46174389,0.0,1119.8771407371062,118217991.16839747,0.0,9214853.654033246,10812094.954065679 + 02/01 22:00:00,0.0,0.0,1119.1499160564798,4028939.697803326,0.0,6143235.769355498,3604031.6513552267 + 02/01 23:00:00,0.0,0.0,279.5531563727839,1006391.362942022,0.0,6143235.769355498,3604031.6513552267 + 02/01 24:00:00,0.0,0.0,280.1712321101407,1008616.4355965066,0.0,6143235.769355498,1802015.8256776133 + 02/02 01:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 02:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/02 03:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 02/02 04:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 02/02 05:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/02 06:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 02/02 07:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/02 08:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 09:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 02/02 10:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 02/02 11:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/02 12:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 13:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 02/02 14:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/02 15:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/02 16:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 17:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/02 18:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 02/02 19:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/02 20:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 21:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 22:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/02 23:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 02/02 24:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/03 01:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 02/03 02:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 02/03 03:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 02/03 04:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 02/03 05:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/03 06:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 02/03 07:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 02/03 08:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 02/03 09:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 02/03 10:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 02/03 11:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 02/03 12:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 02/03 13:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/03 14:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 02/03 15:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/03 16:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/03 17:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/03 18:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/03 19:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 02/03 20:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 02/03 21:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 02/03 22:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 02/03 23:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/03 24:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/04 01:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 02/04 02:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 02/04 03:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 02/04 04:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 02/04 05:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 02/04 06:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 02/04 07:00:00,860723367.4552319,14039162.458324193,256.7491556465609,861647664.4155597,14039162.458324193,6143235.769355498,1802015.8256776133 + 02/04 08:00:00,337445721.06480517,0.0,510.4432532108505,339283316.7763642,0.0,9214853.654033246,10812094.954065679 + 02/04 09:00:00,246281611.26660634,0.0,2536.6337004956737,255413492.5883908,0.0,24572943.077421994,28832253.210841814 + 02/04 10:00:00,208561565.30839045,0.0,2528.0110621338428,217662405.13207228,0.0,27644560.962099744,32436284.862197039 + 02/04 11:00:00,185271464.31432573,0.0,4565.940660892214,201708850.69353766,0.0,27644560.962099744,32436284.862197039 + 02/04 12:00:00,201039430.21189279,0.0,4578.756533255384,217522953.73161219,0.0,27644560.962099744,32436284.862197039 + 02/04 13:00:00,208701171.9167599,0.0,4593.989278897654,225239533.32079146,0.0,27644560.962099744,32436284.862197039 + 02/04 14:00:00,175640661.5408976,0.0,4606.557743185397,192224269.41636504,0.0,27644560.962099744,32436284.862197039 + 02/04 15:00:00,138245650.80965475,0.0,4606.557743185397,154829258.68512217,0.0,27644560.962099744,32436284.862197039 + 02/04 16:00:00,127552262.41376633,0.0,4621.484801638096,144189607.69966347,0.0,27644560.962099744,32436284.862197039 + 02/04 17:00:00,192895122.7291373,0.0,3582.8782446997527,205793484.4100564,0.0,27644560.962099744,32436284.862197039 + 02/04 18:00:00,289173830.4132829,0.0,2559.198746214109,298386945.8996537,0.0,27644560.962099744,28832253.210841814 + 02/04 19:00:00,312241601.4931543,0.0,1535.5192477284657,317769470.7849768,0.0,15358089.423388744,18020158.25677613 + 02/04 20:00:00,325543843.5106906,0.0,1023.6794984856437,329229089.70523896,0.0,9214853.654033246,10812094.954065679 + 02/04 21:00:00,323256180.7711086,0.0,1020.8865064217011,326931372.19422677,0.0,9214853.654033246,10812094.954065679 + 02/04 22:00:00,0.0,0.0,1023.6794984856439,3685246.1945483156,0.0,6143235.769355498,3604031.6513552267 + 02/04 23:00:00,0.0,0.0,253.6633700495675,913188.1321784428,0.0,6143235.769355498,3604031.6513552267 + 02/04 24:00:00,0.0,0.0,254.37536295863243,915751.3066510768,0.0,6143235.769355498,1802015.8256776133 + 02/05 01:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 02/05 02:00:00,0.0,0.0,258.9125271830442,932085.097858959,0.0,6143235.769355498,1802015.8256776133 + 02/05 03:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 02/05 04:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 02/05 05:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/05 06:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 02/05 07:00:00,775873827.8986614,19823727.931330846,265.1724989760716,776828448.8949752,19823727.931330846,6143235.769355498,1802015.8256776133 + 02/05 08:00:00,294119851.11225226,0.0,530.3449979521432,296029093.10488,0.0,9214853.654033246,10812094.954065679 + 02/05 09:00:00,217887951.11327759,0.0,2658.6785419915174,227459193.86444707,0.0,24572943.077421994,28832253.210841814 + 02/05 10:00:00,171525273.42411316,0.0,2658.6785419915174,181096516.17528264,0.0,27644560.962099744,32436284.862197039 + 02/05 11:00:00,126012259.47644407,0.0,4807.965695240438,143320935.97930966,0.0,27644560.962099744,32436284.862197039 + 02/05 12:00:00,105619518.32906327,0.0,4840.912335561223,123046802.73708366,0.0,27644560.962099744,32436284.862197039 + 02/05 13:00:00,116272298.57869923,0.0,4829.508513199488,133658529.22621739,0.0,27644560.962099744,32436284.862197039 + 02/05 14:00:00,85606917.65039757,0.0,4890.765157008289,103213672.2156274,0.0,27644560.962099744,32436284.862197039 + 02/05 15:00:00,80638547.33757997,0.0,4916.664865592452,98338540.8537128,0.0,27644560.962099744,32436284.862197039 + 02/05 16:00:00,39506985.63923633,0.0,4925.874561759427,57240134.06157027,0.0,27644560.962099744,32436284.862197039 + 02/05 17:00:00,80382162.57617834,0.0,3831.235770257331,94174611.34910473,0.0,27644560.962099744,32436284.862197039 + 02/05 18:00:00,150139237.8796014,0.0,2736.5969787552369,159990987.00312025,0.0,27644560.962099744,28832253.210841814 + 02/05 19:00:00,190866545.98611135,0.0,1623.363522270677,196710654.66628579,0.0,15358089.423388744,18020158.25677613 + 02/05 20:00:00,217871640.08535633,0.0,1077.8277378405995,221751819.94158245,0.0,9214853.654033246,10812094.954065679 + 02/05 21:00:00,221140325.39626388,0.0,1075.758296791383,225013055.26471285,0.0,9214853.654033246,10812094.954065679 + 02/05 22:00:00,0.0,0.0,1073.2241140443308,3863606.810559591,0.0,6143235.769355498,3604031.6513552267 + 02/05 23:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,3604031.6513552267 + 02/05 24:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/06 01:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 02/06 02:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/06 03:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/06 04:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 02/06 05:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 02/06 06:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 02/06 07:00:00,578304184.5615143,18564846.790459124,272.70995153744817,579285940.3870491,18564846.790459124,6143235.769355498,1802015.8256776133 + 02/06 08:00:00,209690663.3221093,0.0,547.3193957510474,211661013.1468131,0.0,9214853.654033246,10812094.954065679 + 02/06 09:00:00,139984199.4532434,0.0,2731.480480884695,149817529.1844283,0.0,24572943.077421994,28832253.210841814 + 02/06 10:00:00,101836968.8107022,0.0,2745.573118376818,111721032.03685877,0.0,27644560.962099744,32436284.862197039 + 02/06 11:00:00,85369115.20853889,0.0,4957.231524818371,103215148.697885,0.0,27644560.962099744,32436284.862197039 + 02/06 12:00:00,65787945.95174919,0.0,4978.798998934269,83711622.34791255,0.0,27644560.962099744,32436284.862197039 + 02/06 13:00:00,47246941.97117084,0.0,5003.1575857598249,65258309.2799062,0.0,27644560.962099744,32436284.862197039 + 02/06 14:00:00,48240319.3497517,0.0,5013.801502629307,66290004.75921721,0.0,27644560.962099744,32436284.862197039 + 02/06 15:00:00,15527726.357377269,0.0,5008.123950918437,33556972.58068364,0.0,27644560.962099744,32436284.862197039 + 02/06 16:00:00,25968497.057539639,0.0,5008.123950918437,43997743.280846018,0.0,27644560.962099744,32436284.862197039 + 02/06 17:00:00,46615779.04866098,0.0,3886.491500321911,60607148.44981986,0.0,27644560.962099744,32436284.862197039 + 02/06 18:00:00,105847949.29058144,0.0,2761.9203618423509,115790862.5932139,0.0,27644560.962099744,28832253.210841814 + 02/06 19:00:00,131427790.38657229,0.0,1659.5996663114227,137402349.1852934,0.0,15358089.423388744,18020158.25677613 + 02/06 20:00:00,152624035.775284,0.0,1104.7681447369399,156601201.09633697,0.0,9214853.654033246,10812094.954065679 + 02/06 21:00:00,154613259.70544557,0.0,1103.3583571109724,158585349.79104508,0.0,9214853.654033246,10812094.954065679 + 02/06 22:00:00,0.0,0.0,1099.7912009278437,3959248.3233402369,0.0,6143235.769355498,3604031.6513552267 + 02/06 23:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,3604031.6513552267 + 02/06 24:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/07 01:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/07 02:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 02/07 03:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/07 04:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/07 05:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/07 06:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/07 07:00:00,606182854.7905094,15261245.847360772,271.70917538934938,607161007.821911,15261245.847360772,6143235.769355498,1802015.8256776133 + 02/07 08:00:00,195448477.45196767,0.0,540.129735496192,197392944.49975396,0.0,9214853.654033246,10812094.954065679 + 02/07 09:00:00,103189492.52819476,0.0,2731.480480884695,113022822.25937964,0.0,24572943.077421994,28832253.210841814 + 02/07 10:00:00,75040750.45384062,0.0,2758.3958927774308,84970975.66783938,0.0,27644560.962099744,32436284.862197039 + 02/07 11:00:00,67552010.234082,0.0,4984.69047854207,85496895.95683345,0.0,27644560.962099744,32436284.862197039 + 02/07 12:00:00,58297939.21871176,0.0,5003.1575857598249,76309306.52744714,0.0,27644560.962099744,32436284.862197039 + 02/07 13:00:00,55855300.77213855,0.0,5008.123950918437,73884546.99544493,0.0,27644560.962099744,32436284.862197039 + 02/07 14:00:00,14996518.293377866,0.0,5013.801502629307,33046203.70284337,0.0,27644560.962099744,32436284.862197039 + 02/07 15:00:00,0.0,15119224.579710935,5019.169475652085,18069010.112347507,15119224.579710935,27644560.962099744,32436284.862197039 + 02/07 16:00:00,0.0,26842317.090234139,5008.123950918437,18029246.223306374,26842317.090234139,27644560.962099744,32436284.862197039 + 02/07 17:00:00,6763699.837085789,796354.9819653913,3895.207517381006,20786446.89965741,796354.9819653913,27644560.962099744,32436284.862197039 + 02/07 18:00:00,90172806.61293583,0.0,2773.0475376801507,100155777.74858436,0.0,27644560.962099744,28832253.210841814 + 02/07 19:00:00,124526150.24259031,0.0,1659.5996663114227,130500709.0413114,0.0,15358089.423388744,18020158.25677613 + 02/07 20:00:00,151054464.99363087,0.0,1098.2292473507274,155008090.28409348,0.0,9214853.654033246,10812094.954065679 + 02/07 21:00:00,154094829.88296706,0.0,1101.6070055151934,158060615.10282178,0.0,9214853.654033246,10812094.954065679 + 02/07 22:00:00,0.0,0.0,1101.6070055151936,3965785.2198546968,0.0,6143235.769355498,3604031.6513552267 + 02/07 23:00:00,0.0,0.0,275.40175137879836,991446.3049636739,0.0,6143235.769355498,3604031.6513552267 + 02/07 24:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 02/08 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 02/08 02:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 02/08 03:00:00,0.0,0.0,271.7091753893493,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 02/08 04:00:00,0.0,0.0,269.45693446014988,970044.9640565394,0.0,6143235.769355498,1802015.8256776133 + 02/08 05:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/08 06:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/08 07:00:00,617055807.7099179,14342936.598051545,270.56058704511289,618029825.8232802,14342936.598051545,6143235.769355498,1802015.8256776133 + 02/08 08:00:00,155677117.88313733,0.0,544.3406536261497,157636744.23619146,0.0,9214853.654033246,10812094.954065679 + 02/08 09:00:00,17197741.37637496,0.0,2736.5969787552369,27049490.499893816,0.0,24572943.077421994,28832253.210841814 + 02/08 10:00:00,0.0,0.0,2749.4780023196096,9898120.808350595,0.0,27644560.962099744,32436284.862197039 + 02/08 11:00:00,0.0,2585903.0779187919,4971.456651316232,17897243.944738434,2585903.0779187919,27644560.962099744,32436284.862197039 + 02/08 12:00:00,0.0,0.0,5013.801502629307,18049685.409465508,0.0,27644560.962099744,32436284.862197039 + 02/08 13:00:00,0.0,0.0,5019.169475652085,18069010.112347507,0.0,27644560.962099744,32436284.862197039 + 02/08 14:00:00,0.0,22482269.117205636,5023.40496184944,18084257.862657984,22482269.117205636,27644560.962099744,32436284.862197039 + 02/08 15:00:00,0.0,64418231.544229317,5028.200635795351,18101522.288863265,64418231.544229317,27644560.962099744,32436284.862197039 + 02/08 16:00:00,0.0,66129465.43165273,5013.801502629307,18049685.409465508,66129465.43165273,27644560.962099744,32436284.862197039 + 02/08 17:00:00,0.0,20518110.729282548,3891.344788924307,14008841.240127506,20518110.729282548,27644560.962099744,32436284.862197039 + 02/08 18:00:00,76880034.55952215,0.0,2765.999443852371,86837632.55739069,0.0,27644560.962099744,28832253.210841814 + 02/08 19:00:00,112283138.66636336,0.0,1655.0375356664584,118241273.79476261,0.0,15358089.423388744,18020158.25677613 + 02/08 20:00:00,140546450.80517156,0.0,1098.2292473507274,144500076.09563417,0.0,9214853.654033246,10812094.954065679 + 02/08 21:00:00,147064485.35444979,0.0,1101.6070055151934,151030270.5743045,0.0,9214853.654033246,10812094.954065679 + 02/08 22:00:00,0.0,0.0,1103.3583571109719,3972090.0855995009,0.0,6143235.769355498,3604031.6513552267 + 02/08 23:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,3604031.6513552267 + 02/08 24:00:00,0.0,0.0,275.839589277743,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 02/09 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 02/09 02:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 02/09 03:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 02/09 04:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 02/09 05:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/09 06:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/09 07:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/09 08:00:00,0.0,0.0,272.70995153744817,981755.8255348135,0.0,6143235.769355498,1802015.8256776133 + 02/09 09:00:00,0.0,0.0,273.14804808846949,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/09 10:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 02/09 11:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 02/09 12:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 02/09 13:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 02/09 14:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 02/09 15:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 02/09 16:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 02/09 17:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/09 18:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/09 19:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/09 20:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/09 21:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/09 22:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/09 23:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 02/09 24:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 02/10 01:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 02/10 02:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/10 03:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 02/10 04:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 02/10 05:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 02/10 06:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 02/10 07:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 02/10 08:00:00,0.0,0.0,279.55315637278388,1006391.362942022,0.0,6143235.769355498,1802015.8256776133 + 02/10 09:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 02/10 10:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 02/10 11:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 02/10 12:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/10 13:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/10 14:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 02/10 15:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 02/10 16:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 02/10 17:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/10 18:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/10 19:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/10 20:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 02/10 21:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 02/10 22:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 02/10 23:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 02/10 24:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 02/11 01:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/11 02:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/11 03:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/11 04:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/11 05:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/11 06:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 02/11 07:00:00,347237069.4328148,14500926.163628897,279.3444797664084,348242709.55997386,14500926.163628897,6143235.769355498,1802015.8256776133 + 02/11 08:00:00,155715587.45000575,0.0,558.6889595328169,157726867.7043239,0.0,9214853.654033246,10812094.954065679 + 02/11 09:00:00,101811597.82095947,0.0,2793.444797664084,111867999.09255016,0.0,24572943.077421994,28832253.210841814 + 02/11 10:00:00,73491625.19924471,0.0,2795.5315637278397,83555538.82866493,0.0,27644560.962099744,32436284.862197039 + 02/11 11:00:00,49615012.25906026,0.0,5036.174622254158,67745240.89917523,0.0,27644560.962099744,32436284.862197039 + 02/11 12:00:00,34642594.22276478,0.0,5036.174622254158,52772822.86287974,0.0,27644560.962099744,32436284.862197039 + 02/11 13:00:00,40873354.54221361,0.0,5036.174622254158,59003583.18232858,0.0,27644560.962099744,32436284.862197039 + 02/11 14:00:00,49782937.60254143,0.0,5031.956814710111,67897982.13549784,0.0,27644560.962099744,32436284.862197039 + 02/11 15:00:00,71696850.28573239,0.0,5028.200635795351,89798372.57459566,0.0,27644560.962099744,32436284.862197039 + 02/11 16:00:00,84639862.99186456,0.0,5028.200635795351,102741385.28072784,0.0,27644560.962099744,32436284.862197039 + 02/11 17:00:00,105092520.44741759,0.0,3891.344788924307,119101361.68754509,0.0,27644560.962099744,32436284.862197039 + 02/11 18:00:00,127309449.4763188,0.0,2765.999443852371,137267047.47418735,0.0,27644560.962099744,28832253.210841814 + 02/11 19:00:00,161625866.33578376,0.0,1649.6868013917659,167564738.82079409,0.0,15358089.423388744,18020158.25677613 + 02/11 20:00:00,188493065.7809139,0.0,1096.2969238603112,192439734.706811,0.0,9214853.654033246,10812094.954065679 + 02/11 21:00:00,196430465.01363076,0.0,1094.6387915020949,200371164.6630383,0.0,9214853.654033246,10812094.954065679 + 02/11 22:00:00,0.0,0.0,1092.5921923538786,3933331.8924739628,0.0,6143235.769355498,3604031.6513552267 + 02/11 23:00:00,0.0,0.0,272.70995153744817,981755.8255348136,0.0,6143235.769355498,3604031.6513552267 + 02/11 24:00:00,0.0,0.0,271.7091753893493,978153.0314016575,0.0,6143235.769355498,1802015.8256776133 + 02/12 01:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/12 02:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/12 03:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/12 04:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/12 05:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/12 06:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/12 07:00:00,676295576.3745823,15810648.508017753,267.1092052911355,677257169.5136304,15810648.508017753,6143235.769355498,1802015.8256776133 + 02/12 08:00:00,270168354.619866,0.0,534.218410582271,272091540.8979622,0.0,9214853.654033246,10812094.954065679 + 02/12 09:00:00,210189058.99001787,0.0,2671.092052911355,219804990.38049875,0.0,24572943.077421994,28832253.210841814 + 02/12 10:00:00,156710745.16425405,0.0,2677.676278899452,166350379.76829208,0.0,27644560.962099744,32436284.862197039 + 02/12 11:00:00,84729463.11222953,0.0,4819.817302019013,102080805.39949799,0.0,27644560.962099744,32436284.862197039 + 02/12 12:00:00,99865716.86813399,0.0,4819.817302019013,117217059.15540244,0.0,27644560.962099744,32436284.862197039 + 02/12 13:00:00,117557690.75051812,0.0,4807.965695240438,134866367.2533837,0.0,27644560.962099744,32436284.862197039 + 02/12 14:00:00,92681189.62976648,0.0,4797.907008182824,109953654.85922465,0.0,27644560.962099744,32436284.862197039 + 02/12 15:00:00,59125338.07167329,0.0,4797.907008182824,76397803.30113146,0.0,27644560.962099744,32436284.862197039 + 02/12 16:00:00,53588380.282898668,0.0,4797.907008182824,70860845.51235682,0.0,27644560.962099744,32436284.862197039 + 02/12 17:00:00,94580779.9076027,0.0,3739.528874075896,108043083.85427591,0.0,27644560.962099744,32436284.862197039 + 02/12 18:00:00,207084764.11449299,0.0,2658.6785419915174,216656006.86566247,0.0,27644560.962099744,28832253.210841814 + 02/12 19:00:00,237721427.47725553,0.0,1595.2071251949104,243464173.1279572,0.0,15358089.423388744,18020158.25677613 + 02/12 20:00:00,257327289.9392548,0.0,1060.6899959042865,261145773.92451019,0.0,9214853.654033246,10812094.954065679 + 02/12 21:00:00,259946067.30533199,0.0,1060.6899959042865,263764551.29058738,0.0,9214853.654033246,10812094.954065679 + 02/12 22:00:00,0.0,0.0,1063.4714167966068,3828497.100467784,0.0,6143235.769355498,3604031.6513552267 + 02/12 23:00:00,0.0,0.0,265.86785419915187,957124.2751169462,0.0,6143235.769355498,3604031.6513552267 + 02/12 24:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/13 01:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 02/13 02:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 02/13 03:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 02/13 04:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 02/13 05:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 02/13 06:00:00,0.0,0.0,259.7049756466596,934937.9123279746,0.0,6143235.769355498,1802015.8256776133 + 02/13 07:00:00,818836673.2458255,13418618.064257844,258.9125271830442,819768758.3436846,13418618.064257844,6143235.769355498,1802015.8256776133 + 02/13 08:00:00,250713317.33168934,0.0,517.8250543660884,252577487.52740727,0.0,9214853.654033246,10812094.954065679 + 02/13 09:00:00,178074362.269589,0.0,2589.1252718304415,187395213.2481786,0.0,24572943.077421994,28832253.210841814 + 02/13 10:00:00,110743885.39328349,0.0,2589.1252718304415,120064736.37187308,0.0,27644560.962099744,32436284.862197039 + 02/13 11:00:00,116676634.8335796,0.0,4674.689561639873,133505517.25548315,0.0,27644560.962099744,32436284.862197039 + 02/13 12:00:00,147828923.6136032,0.0,4688.761190290212,164708463.89864797,0.0,27644560.962099744,32436284.862197039 + 02/13 13:00:00,155532144.67009957,0.0,4700.337033194479,172453357.9895997,0.0,27644560.962099744,32436284.862197039 + 02/13 14:00:00,123866546.22675571,0.0,4700.337033194479,140787759.54625584,0.0,27644560.962099744,32436284.862197039 + 02/13 15:00:00,89852769.62177484,0.0,4700.337033194479,106773982.94127494,0.0,27644560.962099744,32436284.862197039 + 02/13 16:00:00,87579298.92900434,0.0,4688.761190290212,104458839.2140491,0.0,27644560.962099744,32436284.862197039 + 02/13 17:00:00,134935535.97305737,0.0,3646.814259114609,148064067.30586995,0.0,27644560.962099744,32436284.862197039 + 02/13 18:00:00,250986902.46914,0.0,2597.0497564665959,260336281.59241975,0.0,27644560.962099744,28832253.210841814 + 02/13 19:00:00,283017390.74335756,0.0,1553.475163098265,288609901.33051136,0.0,15358089.423388744,18020158.25677613 + 02/13 20:00:00,300637983.2233896,0.0,1032.9767354234917,304356699.47091427,0.0,9214853.654033246,10812094.954065679 + 02/13 21:00:00,299074847.53766676,0.0,1038.8199025866384,302814599.1869787,0.0,9214853.654033246,10812094.954065679 + 02/13 22:00:00,0.0,0.0,1041.9469311756027,3751008.952232169,0.0,6143235.769355498,3604031.6513552267 + 02/13 23:00:00,0.0,0.0,258.91252718304437,932085.0978589589,0.0,6143235.769355498,3604031.6513552267 + 02/13 24:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 02/14 01:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 02/14 02:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 02/14 03:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 02/14 04:00:00,0.0,0.0,258.2441838558729,929679.0618811424,0.0,6143235.769355498,1802015.8256776133 + 02/14 05:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 02/14 06:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 02/14 07:00:00,877011037.1421152,13321759.10729399,255.91987462141095,877932348.6907524,13321759.10729399,6143235.769355498,1802015.8256776133 + 02/14 08:00:00,206166223.49084819,0.0,511.8397492428218,208008846.58812238,0.0,9214853.654033246,10812094.954065679 + 02/14 09:00:00,88639453.94175811,0.0,2589.1252718304415,97960304.9203477,0.0,24572943.077421994,28832253.210841814 + 02/14 10:00:00,66298698.17061608,0.0,2611.29835177471,75699372.23700504,0.0,27644560.962099744,32436284.862197039 + 02/14 11:00:00,92704793.94917837,0.0,4714.04327352113,109675349.73385445,0.0,27644560.962099744,32436284.862197039 + 02/14 12:00:00,126681503.45613916,0.0,4738.632890125845,143740581.86059226,0.0,27644560.962099744,32436284.862197039 + 02/14 13:00:00,126038895.31569977,0.0,4773.104981569289,143222073.2493492,0.0,27644560.962099744,32436284.862197039 + 02/14 14:00:00,83335964.653065,0.0,4797.907008182824,100608429.88252318,0.0,27644560.962099744,32436284.862197039 + 02/14 15:00:00,39431475.25585,0.0,4819.817302019013,56782817.54311845,0.0,27644560.962099744,32436284.862197039 + 02/14 16:00:00,25123489.779020154,0.0,4819.817302019013,42474832.0662886,0.0,27644560.962099744,32436284.862197039 + 02/14 17:00:00,62656487.89861382,0.0,3748.746790459232,76151976.34426706,0.0,27644560.962099744,32436284.862197039 + 02/14 18:00:00,183313311.63324727,0.0,2665.503893434902,192909125.6496129,0.0,27644560.962099744,28832253.210841814 + 02/14 19:00:00,211231945.4311241,0.0,1599.3023360609412,216989433.84094353,0.0,15358089.423388744,18020158.25677613 + 02/14 20:00:00,236660626.57257689,0.0,1053.0295311390765,240451532.8846776,0.0,9214853.654033246,10812094.954065679 + 02/14 21:00:00,236057957.6210969,0.0,1066.201557373961,239896283.2276432,0.0,9214853.654033246,10812094.954065679 + 02/14 22:00:00,0.0,0.0,1050.0684332832846,3780246.359819824,0.0,6143235.769355498,3604031.6513552267 + 02/14 23:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,3604031.6513552267 + 02/14 24:00:00,0.0,0.0,262.51710832082099,945061.5899549556,0.0,6143235.769355498,1802015.8256776133 + 02/15 01:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/15 02:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 02/15 03:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/15 04:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 02/15 05:00:00,0.0,0.0,261.129835177471,940067.4066388956,0.0,6143235.769355498,1802015.8256776133 + 02/15 06:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 02/15 07:00:00,809551325.408687,13207187.498275863,259.7049756466596,810486263.321015,13207187.498275863,6143235.769355498,1802015.8256776133 + 02/15 08:00:00,269211033.2689196,0.0,520.9734655878013,271086537.74503567,0.0,9214853.654033246,10812094.954065679 + 02/15 09:00:00,228105917.645181,0.0,2611.29835177471,237506591.71156997,0.0,24572943.077421994,28832253.210841814 + 02/15 10:00:00,212506688.7601652,0.0,2632.573827847691,221983954.54041688,0.0,27644560.962099744,32436284.862197039 + 02/15 11:00:00,193468581.31973434,0.0,4762.501493879398,210613586.69770015,0.0,27644560.962099744,32436284.862197039 + 02/15 12:00:00,180660911.41434277,0.0,4797.907008182824,197933376.6438009,0.0,27644560.962099744,32436284.862197039 + 02/15 13:00:00,191902455.5700425,0.0,4797.907008182824,209174920.79950065,0.0,27644560.962099744,32436284.862197039 + 02/15 14:00:00,190204549.5343985,0.0,4819.817302019013,207555891.82166697,0.0,27644560.962099744,32436284.862197039 + 02/15 15:00:00,180376713.1773842,0.0,4840.912335561223,197803997.58540458,0.0,27644560.962099744,32436284.862197039 + 02/15 16:00:00,183315646.6259637,0.0,4850.224820282697,200776455.9789814,0.0,27644560.962099744,32436284.862197039 + 02/15 17:00:00,187571114.12196357,0.0,3780.9081484733435,201182383.45646764,0.0,27644560.962099744,32436284.862197039 + 02/15 18:00:00,194510011.07283715,0.0,2700.6486774809598,204232346.3117686,0.0,27644560.962099744,28832253.210841814 + 02/15 19:00:00,213924454.53368498,0.0,1623.363522270677,219768563.2138594,0.0,15358089.423388744,18020158.25677613 + 02/15 20:00:00,226761943.3480643,0.0,1082.2423481804515,230658015.80151395,0.0,9214853.654033246,10812094.954065679 + 02/15 21:00:00,225789550.45553074,0.0,1082.2423481804515,229685622.90898038,0.0,9214853.654033246,10812094.954065679 + 02/15 22:00:00,0.0,0.0,1082.2423481804513,3896072.453449625,0.0,6143235.769355498,3604031.6513552267 + 02/15 23:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,3604031.6513552267 + 02/15 24:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/16 01:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/16 02:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/16 03:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/16 04:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/16 05:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/16 06:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/16 07:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 02/16 08:00:00,0.0,0.0,265.86785419915176,957124.2751169463,0.0,6143235.769355498,1802015.8256776133 + 02/16 09:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/16 10:00:00,0.0,0.0,270.06486774809596,972233.5238931455,0.0,6143235.769355498,1802015.8256776133 + 02/16 11:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 02/16 12:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/16 13:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/16 14:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/16 15:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/16 16:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/16 17:00:00,0.0,0.0,272.17032681307486,979813.1765270693,0.0,6143235.769355498,1802015.8256776133 + 02/16 18:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 02/16 19:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/16 20:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/16 21:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/16 22:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 02/16 23:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/16 24:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/17 01:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/17 02:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/17 03:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/17 04:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/17 05:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 02/17 06:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/17 07:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/17 08:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/17 09:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 02/17 10:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/17 11:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 02/17 12:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 02/17 13:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 02/17 14:00:00,0.0,0.0,276.92724880789276,996938.095708414,0.0,6143235.769355498,1802015.8256776133 + 02/17 15:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 02/17 16:00:00,0.0,0.0,276.92724880789276,996938.095708414,0.0,6143235.769355498,1802015.8256776133 + 02/17 17:00:00,0.0,0.0,276.192036184235,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 02/17 18:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/17 19:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/17 20:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 02/17 21:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 02/17 22:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/17 23:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/17 24:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/18 01:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 02/18 02:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/18 03:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/18 04:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/18 05:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/18 06:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 02/18 07:00:00,590664282.6714673,15577319.489292235,269.45693446014988,591634327.6355239,15577319.489292235,6143235.769355498,1802015.8256776133 + 02/18 08:00:00,125612884.86731266,0.0,542.2844043621014,127565108.72301622,0.0,9214853.654033246,10812094.954065679 + 02/18 09:00:00,14824921.639501805,0.0,2745.573118376818,24708984.86565835,0.0,24572943.077421994,28832253.210841814 + 02/18 10:00:00,0.0,0.0,2761.9203618423509,9942913.302632463,0.0,27644560.962099744,32436284.862197039 + 02/18 11:00:00,8966881.036733017,0.0,4978.798998934269,26890557.432896384,0.0,27644560.962099744,32436284.862197039 + 02/18 12:00:00,17758247.060039697,0.0,5008.123950918437,35787493.28334607,0.0,27644560.962099744,32436284.862197039 + 02/18 13:00:00,16661008.04177096,0.0,5023.40496184944,34745265.904428947,0.0,27644560.962099744,32436284.862197039 + 02/18 14:00:00,0.0,0.0,5028.200635795351,18101522.288863265,0.0,27644560.962099744,32436284.862197039 + 02/18 15:00:00,0.0,0.0,5036.174622254158,18130228.640114968,0.0,27644560.962099744,32436284.862197039 + 02/18 16:00:00,0.0,0.0,5031.956814710111,18115044.5329564,0.0,27644560.962099744,32436284.862197039 + 02/18 17:00:00,4509400.401481107,0.0,3913.7441892189747,18598879.482669414,0.0,27644560.962099744,32436284.862197039 + 02/18 18:00:00,56946899.404340717,0.0,2795.5315637278397,67010813.033760938,0.0,27644560.962099744,28832253.210841814 + 02/18 19:00:00,93075723.20038797,0.0,1671.2671675431023,99092285.00354314,0.0,15358089.423388744,18020158.25677613 + 02/18 20:00:00,119680709.27220327,0.0,1112.9164335374306,123687208.43293801,0.0,9214853.654033246,10812094.954065679 + 02/18 21:00:00,121846942.25656525,0.0,1114.1781116954015,125857983.45866871,0.0,9214853.654033246,10812094.954065679 + 02/18 22:00:00,0.0,0.0,1115.3709945893516,4015335.5805216676,0.0,6143235.769355498,3604031.6513552267 + 02/18 23:00:00,0.0,0.0,278.842748647338,1003833.8951304167,0.0,6143235.769355498,3604031.6513552267 + 02/18 24:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/19 01:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/19 02:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 02/19 03:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 02/19 04:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 02/19 05:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 02/19 06:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 02/19 07:00:00,448283744.27910467,13631632.179320345,274.07423096507775,449270411.51057896,13631632.179320345,6143235.769355498,1802015.8256776133 + 02/19 08:00:00,190827025.09998829,0.0,545.4199030748963,192790536.75105793,0.0,9214853.654033246,10812094.954065679 + 02/19 09:00:00,129505570.74836195,0.0,2717.0917538934938,139287101.06237854,0.0,24572943.077421994,28832253.210841814 + 02/19 10:00:00,81088164.36721838,0.0,2711.422021810507,90849283.64573619,0.0,27644560.962099744,32436284.862197039 + 02/19 11:00:00,28194780.97180445,0.0,4890.765157008289,45801535.53703429,0.0,27644560.962099744,32436284.862197039 + 02/19 12:00:00,39170364.514352958,0.0,4899.065882635347,56807001.6918402,0.0,27644560.962099744,32436284.862197039 + 02/19 13:00:00,52405292.650554317,0.0,4899.065882635347,70041929.82804157,0.0,27644560.962099744,32436284.862197039 + 02/19 14:00:00,23743670.287317125,0.0,4899.065882635347,41380307.46480438,0.0,27644560.962099744,32436284.862197039 + 02/19 15:00:00,0.0,0.0,4899.065882635347,17636637.17748725,0.0,27644560.962099744,32436284.862197039 + 02/19 16:00:00,0.0,0.0,4880.559639258913,17570014.70133209,0.0,27644560.962099744,32436284.862197039 + 02/19 17:00:00,29477781.464988777,0.0,3780.9081484733435,43089050.799492809,0.0,27644560.962099744,32436284.862197039 + 02/19 18:00:00,156049250.30606798,0.0,2694.569344601498,165749699.94663338,0.0,27644560.962099744,28832253.210841814 + 02/19 19:00:00,206866108.995403,0.0,1609.836171066496,212661519.21124239,0.0,15358089.423388744,18020158.25677613 + 02/19 20:00:00,233904334.49883173,0.0,1068.436821164542,237750707.0550241,0.0,9214853.654033246,10812094.954065679 + 02/19 21:00:00,245605488.639367,0.0,1063.471416796607,249433985.73983483,0.0,9214853.654033246,10812094.954065679 + 02/19 22:00:00,0.0,0.0,1060.6899959042863,3818483.985255431,0.0,6143235.769355498,3604031.6513552267 + 02/19 23:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,3604031.6513552267 + 02/19 24:00:00,0.0,0.0,263.86518458347327,949914.6645005036,0.0,6143235.769355498,1802015.8256776133 + 02/20 01:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 02/20 02:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 02/20 03:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/20 04:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/20 05:00:00,0.0,0.0,261.891292973396,942808.6547042256,0.0,6143235.769355498,1802015.8256776133 + 02/20 06:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 02/20 07:00:00,764019585.0560578,14493041.74123435,261.129835177471,764959652.4626968,14493041.74123435,6143235.769355498,1802015.8256776133 + 02/20 08:00:00,175614085.24622179,0.0,525.034216641642,177504208.42613168,0.0,9214853.654033246,10812094.954065679 + 02/20 09:00:00,60447794.43819183,0.0,2645.8341632663325,69972797.42595063,0.0,24572943.077421994,28832253.210841814 + 02/20 10:00:00,40219064.78692514,0.0,2658.6785419915174,49790307.5380946,0.0,27644560.962099744,32436284.862197039 + 02/20 11:00:00,60581552.66409392,0.0,4807.965695240438,77890229.1669595,0.0,27644560.962099744,32436284.862197039 + 02/20 12:00:00,87842659.21313723,0.0,4861.1676194657279,105342862.64321384,0.0,27644560.962099744,32436284.862197039 + 02/20 13:00:00,92858209.1784319,0.0,4870.09056681203,110390535.21895519,0.0,27644560.962099744,32436284.862197039 + 02/20 14:00:00,57875895.27984035,0.0,4890.765157008289,75482649.8450702,0.0,27644560.962099744,32436284.862197039 + 02/20 15:00:00,28133605.8106134,0.0,4899.065882635347,45770242.98810065,0.0,27644560.962099744,32436284.862197039 + 02/20 16:00:00,19446158.11325551,0.0,4899.065882635347,37082795.29074276,0.0,27644560.962099744,32436284.862197039 + 02/20 17:00:00,45365782.20255453,0.0,3810.384575383047,59083166.67393349,0.0,27644560.962099744,32436284.862197039 + 02/20 18:00:00,153803274.1402501,0.0,2717.0917538934938,163584804.45426668,0.0,27644560.962099744,28832253.210841814 + 02/20 19:00:00,199717218.808186,0.0,1623.363522270677,205561327.48836047,0.0,15358089.423388744,18020158.25677613 + 02/20 20:00:00,220683708.5395312,0.0,1082.2423481804515,224579780.99298085,0.0,9214853.654033246,10812094.954065679 + 02/20 21:00:00,222021416.1517009,0.0,1084.5688087242029,225925863.86310805,0.0,9214853.654033246,10812094.954065679 + 02/20 22:00:00,0.0,0.0,1080.2594709923838,3888934.095572582,0.0,6143235.769355498,3604031.6513552267 + 02/20 23:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,3604031.6513552267 + 02/20 24:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/21 01:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/21 02:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 02/21 03:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/21 04:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/21 05:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 02/21 06:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 02/21 07:00:00,634748270.8592472,17930568.917890017,268.93957419784575,635716453.3263595,17930568.917890017,6143235.769355498,1802015.8256776133 + 02/21 08:00:00,162316411.94018007,0.0,535.5352557798905,164244338.86098767,0.0,9214853.654033246,10812094.954065679 + 02/21 09:00:00,49649226.94378467,0.0,2694.569344601498,59349676.584350068,0.0,24572943.077421994,28832253.210841814 + 02/21 10:00:00,28344739.69311095,0.0,2705.605870451128,38084920.82673502,0.0,27644560.962099744,32436284.862197039 + 02/21 11:00:00,45972396.14444775,0.0,4880.559639258913,63542410.845779839,0.0,27644560.962099744,32436284.862197039 + 02/21 12:00:00,72439473.14293273,0.0,4899.065882635347,90076110.32041998,0.0,27644560.962099744,32436284.862197039 + 02/21 13:00:00,76844204.55687101,0.0,4908.779127674067,94515809.41649765,0.0,27644560.962099744,32436284.862197039 + 02/21 14:00:00,43465532.576982129,0.0,4916.664865592452,61165526.09311494,0.0,27644560.962099744,32436284.862197039 + 02/21 15:00:00,6639075.702904671,0.0,4933.336157371399,24399085.869441708,0.0,27644560.962099744,32436284.862197039 + 02/21 16:00:00,0.0,0.0,4942.031613078273,17791313.80708178,0.0,27644560.962099744,32436284.862197039 + 02/21 17:00:00,30166236.27812059,0.0,3837.0392335110884,43979577.51876051,0.0,27644560.962099744,32436284.862197039 + 02/21 18:00:00,140931797.0039001,0.0,2721.703268130748,150729928.7691708,0.0,27644560.962099744,28832253.210841814 + 02/21 19:00:00,183640073.80015043,0.0,1633.021960878449,189518952.8593128,0.0,15358089.423388744,18020158.25677613 + 02/21 20:00:00,199321467.41250447,0.0,1088.6813072522994,203240720.1186127,0.0,9214853.654033246,10812094.954065679 + 02/21 21:00:00,205399299.2544013,0.0,1086.8367015573975,209311911.38000793,0.0,9214853.654033246,10812094.954065679 + 02/21 22:00:00,0.0,0.0,1092.5921923538786,3933331.8924739628,0.0,6143235.769355498,3604031.6513552267 + 02/21 23:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,3604031.6513552267 + 02/21 24:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/22 01:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 02/22 02:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 02/22 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 02/22 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 02/22 05:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 02/22 06:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 02/22 07:00:00,460561227.6369721,17811238.302154434,276.5999443852371,461556987.43675896,17811238.302154434,6143235.769355498,1802015.8256776133 + 02/22 08:00:00,178104446.75253869,0.0,553.1998887704742,180095966.35211239,0.0,9214853.654033246,10812094.954065679 + 02/22 09:00:00,116468528.73386902,0.0,2782.291083843576,126484776.6357059,0.0,24572943.077421994,28832253.210841814 + 02/22 10:00:00,93434605.13725193,0.0,2782.291083843576,103450853.0390888,0.0,27644560.962099744,32436284.862197039 + 02/22 11:00:00,80080087.28181042,0.0,5013.801502629307,98129772.69127593,0.0,27644560.962099744,32436284.862197039 + 02/22 12:00:00,56709394.94347206,0.0,5023.40496184944,74793652.80613004,0.0,27644560.962099744,32436284.862197039 + 02/22 13:00:00,45601135.53825082,0.0,5023.40496184944,63685393.4009088,0.0,27644560.962099744,32436284.862197039 + 02/22 14:00:00,35065798.4104002,0.0,5028.200635795351,53167320.69926346,0.0,27644560.962099744,32436284.862197039 + 02/22 15:00:00,4267261.665673088,0.0,5031.956814710111,22382306.198629489,0.0,27644560.962099744,32436284.862197039 + 02/22 16:00:00,16700522.439890678,0.0,5028.200635795351,34802044.72875394,0.0,27644560.962099744,32436284.862197039 + 02/22 17:00:00,38887493.897480938,0.0,3913.7441892189747,52976972.97866923,0.0,27644560.962099744,32436284.862197039 + 02/22 18:00:00,81399758.60287456,0.0,2793.444797664084,91456159.87446526,0.0,27644560.962099744,28832253.210841814 + 02/22 19:00:00,110755359.17570596,0.0,1677.3189382367037,116793707.35335809,0.0,15358089.423388744,18020158.25677613 + 02/22 20:00:00,133950133.7536978,0.0,1119.1499160564795,137979073.45150114,0.0,9214853.654033246,10812094.954065679 + 02/22 21:00:00,141591686.28513707,0.0,1115.370994589352,145607021.86565874,0.0,9214853.654033246,10812094.954065679 + 02/22 22:00:00,0.0,0.0,1110.426142949118,3997534.1146168236,0.0,6143235.769355498,3604031.6513552267 + 02/22 23:00:00,0.0,0.0,274.94780023196116,989812.0808350594,0.0,6143235.769355498,3604031.6513552267 + 02/22 24:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/23 01:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 02/23 02:00:00,0.0,0.0,270.06486774809596,972233.5238931454,0.0,6143235.769355498,1802015.8256776133 + 02/23 03:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/23 04:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/23 05:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/23 06:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 02/23 07:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 02/23 08:00:00,0.0,0.0,264.58341632663328,952500.2987758798,0.0,6143235.769355498,1802015.8256776133 + 02/23 09:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 02/23 10:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 02/23 11:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/23 12:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/23 13:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/23 14:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/23 15:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/23 16:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/23 17:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/23 18:00:00,0.0,0.0,267.1092052911355,961593.1390480877,0.0,6143235.769355498,1802015.8256776133 + 02/23 19:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/23 20:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/23 21:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/23 22:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/23 23:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/23 24:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 01:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 02:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/24 03:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 04:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 05:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/24 06:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 07:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 08:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/24 09:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/24 10:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/24 11:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/24 12:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/24 13:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 14:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 15:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 16:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 02/24 17:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 18:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 19:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 20:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 21:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 22:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 02/24 23:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 02/24 24:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 01:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 02:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 03:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 04:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 05:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 06:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 02/25 07:00:00,688780192.7177596,16951217.340973498,266.5503893434902,689739774.1193962,16951217.340973498,6143235.769355498,1802015.8256776133 + 02/25 08:00:00,240257962.2496351,0.0,533.1007786869805,242177125.05290825,0.0,9214853.654033246,10812094.954065679 + 02/25 09:00:00,120769966.3853304,0.0,2658.6785419915174,130341209.13649985,0.0,24572943.077421994,28832253.210841814 + 02/25 10:00:00,51237507.44364389,0.0,2677.676278899452,60877142.04768191,0.0,27644560.962099744,32436284.862197039 + 02/25 11:00:00,56993537.08844266,0.0,4840.912335561223,74420821.49646306,0.0,27644560.962099744,32436284.862197039 + 02/25 12:00:00,83235353.96371731,0.0,4861.1676194657279,100735557.39379394,0.0,27644560.962099744,32436284.862197039 + 02/25 13:00:00,85926682.95058498,0.0,4880.559639258913,103496697.65191707,0.0,27644560.962099744,32436284.862197039 + 02/25 14:00:00,55965093.84733034,0.0,4880.559639258913,73535108.54866243,0.0,27644560.962099744,32436284.862197039 + 02/25 15:00:00,35517220.456689897,0.0,4880.559639258913,53087235.15802199,0.0,27644560.962099744,32436284.862197039 + 02/25 16:00:00,93350247.05896154,0.0,4870.09056681203,110882573.09948485,0.0,27644560.962099744,32436284.862197039 + 02/25 17:00:00,122251799.53782185,0.0,3765.1540387698389,135806354.07739324,0.0,27644560.962099744,32436284.862197039 + 02/25 18:00:00,188556499.0234187,0.0,2677.676278899452,198196133.6274567,0.0,27644560.962099744,28832253.210841814 + 02/25 19:00:00,232861887.60509355,0.0,1595.2071251949104,238604633.25579519,0.0,15358089.423388744,18020158.25677613 + 02/25 20:00:00,259860963.66386805,0.0,1058.333665306533,263670964.85897155,0.0,9214853.654033246,10812094.954065679 + 02/25 21:00:00,271370534.05674836,0.0,1053.0295311390765,275161440.36884906,0.0,9214853.654033246,10812094.954065679 + 02/25 22:00:00,0.0,0.0,1044.519340709884,3760269.6265555827,0.0,6143235.769355498,3604031.6513552267 + 02/25 23:00:00,0.0,0.0,260.4867327939007,937752.2380580423,0.0,6143235.769355498,3604031.6513552267 + 02/25 24:00:00,0.0,0.0,258.9125271830442,932085.0978589589,0.0,6143235.769355498,1802015.8256776133 + 02/26 01:00:00,0.0,0.0,257.4328481693972,926758.2534098298,0.0,6143235.769355498,1802015.8256776133 + 02/26 02:00:00,0.0,0.0,255.22162660542529,918797.8557795311,0.0,6143235.769355498,1802015.8256776133 + 02/26 03:00:00,0.0,0.0,252.8011062133843,910083.9823681834,0.0,6143235.769355498,1802015.8256776133 + 02/26 04:00:00,0.0,0.0,251.9305357739626,906949.9287862653,0.0,6143235.769355498,1802015.8256776133 + 02/26 05:00:00,0.0,0.0,251.9305357739626,906949.9287862653,0.0,6143235.769355498,1802015.8256776133 + 02/26 06:00:00,0.0,0.0,250.31391574543285,901130.0966835582,0.0,6143235.769355498,1802015.8256776133 + 02/26 07:00:00,957846565.0137799,9868139.929439404,251.9305357739626,958753514.9425662,9868139.929439404,6143235.769355498,1802015.8256776133 + 02/26 08:00:00,208796818.82589407,0.0,505.6022124267686,210616986.7906304,0.0,9214853.654033246,10812094.954065679 + 02/26 09:00:00,105676178.71957492,0.0,2552.216266054252,114864157.27737022,0.0,24572943.077421994,28832253.210841814 + 02/26 10:00:00,85123140.76286923,0.0,2582.441838558729,94419931.38168065,0.0,27644560.962099744,32436284.862197039 + 02/26 11:00:00,93046182.37888089,0.0,4688.761190290212,109925722.66392564,0.0,27644560.962099744,32436284.862197039 + 02/26 12:00:00,127821350.9899546,0.0,4700.337033194479,144742564.30945475,0.0,27644560.962099744,32436284.862197039 + 02/26 13:00:00,133116825.13749469,0.0,4725.307949774779,150127933.7566839,0.0,27644560.962099744,32436284.862197039 + 02/26 14:00:00,84842867.50630825,0.0,4738.632890125845,101901945.91076128,0.0,27644560.962099744,32436284.862197039 + 02/26 15:00:00,45088846.29800712,0.0,4749.573322502519,62187310.2590162,0.0,27644560.962099744,32436284.862197039 + 02/26 16:00:00,28323117.62823439,0.0,4762.501493879398,45468123.006200227,0.0,27644560.962099744,32436284.862197039 + 02/26 17:00:00,65536489.237031359,0.0,3704.167828572865,78871493.41989367,0.0,27644560.962099744,32436284.862197039 + 02/26 18:00:00,189823886.6349268,0.0,2638.6518458347325,199323033.27993188,0.0,27644560.962099744,28832253.210841814 + 02/26 19:00:00,238356764.65202976,0.0,1583.191107500839,244056252.63903276,0.0,15358089.423388744,18020158.25677613 + 02/26 20:00:00,254653876.00459678,0.0,1058.333665306533,258463877.1997003,0.0,9214853.654033246,10812094.954065679 + 02/26 21:00:00,257419533.96622897,0.0,1058.333665306533,261229535.1613325,0.0,9214853.654033246,10812094.954065679 + 02/26 22:00:00,0.0,0.0,1060.6899959042863,3818483.985255431,0.0,6143235.769355498,3604031.6513552267 + 02/26 23:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,3604031.6513552267 + 02/26 24:00:00,0.0,0.0,265.17249897607158,954620.9963138576,0.0,6143235.769355498,1802015.8256776133 + 02/27 01:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 02/27 02:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 02/27 03:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 02/27 04:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 02/27 05:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 02/27 06:00:00,0.0,0.0,260.48673279390069,937752.2380580424,0.0,6143235.769355498,1802015.8256776133 + 02/27 07:00:00,802844655.0250106,13684869.902159159,259.7049756466596,803779592.9373386,13684869.902159159,6143235.769355498,1802015.8256776133 + 02/27 08:00:00,176408232.20556189,0.0,520.9734655878013,178283736.68167795,0.0,9214853.654033246,10812094.954065679 + 02/27 09:00:00,85402192.31721193,0.0,2625.17108320821,94852808.21676147,0.0,24572943.077421994,28832253.210841814 + 02/27 10:00:00,61430821.4288708,0.0,2645.8341632663325,70955824.4166296,0.0,27644560.962099744,32436284.862197039 + 02/27 11:00:00,75399052.06537657,0.0,4807.965695240438,92707728.56824214,0.0,27644560.962099744,32436284.862197039 + 02/27 12:00:00,92911620.09022928,0.0,4861.1676194657279,110411823.52030589,0.0,27644560.962099744,32436284.862197039 + 02/27 13:00:00,104168384.81419215,0.0,4880.559639258913,121738399.51552424,0.0,27644560.962099744,32436284.862197039 + 02/27 14:00:00,99246256.50138666,0.0,4916.664865592452,116946250.01751949,0.0,27644560.962099744,32436284.862197039 + 02/27 15:00:00,57289258.47682825,0.0,4925.874561759427,75022406.89916219,0.0,27644560.962099744,32436284.862197039 + 02/27 16:00:00,99061633.53636992,0.0,4942.031613078273,116852947.34345171,0.0,27644560.962099744,32436284.862197039 + 02/27 17:00:00,117722473.52379753,0.0,3855.624519303176,131602721.79328896,0.0,27644560.962099744,32436284.862197039 + 02/27 18:00:00,138341935.88831736,0.0,2754.017513787983,148256398.93795408,0.0,27644560.962099744,28832253.210841814 + 02/27 19:00:00,172225436.22678677,0.0,1644.4453857904667,178145439.61563245,0.0,15358089.423388744,18020158.25677613 + 02/27 20:00:00,190784091.69412146,0.0,1096.2969238603112,194730760.62001858,0.0,9214853.654033246,10812094.954065679 + 02/27 21:00:00,194731187.79927386,0.0,1094.6387915020949,198671887.4486814,0.0,9214853.654033246,10812094.954065679 + 02/27 22:00:00,0.0,0.0,1090.839806149793,3927023.3021392545,0.0,6143235.769355498,3604031.6513552267 + 02/27 23:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,3604031.6513552267 + 02/27 24:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/28 01:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/28 02:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 02/28 03:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/28 04:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/28 05:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/28 06:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 02/28 07:00:00,561695645.9633492,17897446.216582788,272.70995153744817,562677401.788884,17897446.216582788,6143235.769355498,1802015.8256776133 + 02/28 08:00:00,215136461.2738193,0.0,545.4199030748963,217099972.92488895,0.0,9214853.654033246,10812094.954065679 + 02/28 09:00:00,152096908.65370808,0.0,2727.099515374481,161914466.90905623,0.0,24572943.077421994,28832253.210841814 + 02/28 10:00:00,104491892.14438112,0.0,2731.480480884695,114325221.87556602,0.0,27644560.962099744,32436284.862197039 + 02/28 11:00:00,66146096.9724841,0.0,4925.874561759427,83879245.39481804,0.0,27644560.962099744,32436284.862197039 + 02/28 12:00:00,80862343.47966165,0.0,4933.336157371399,98622353.64619868,0.0,27644560.962099744,32436284.862197039 + 02/28 13:00:00,59108095.89011668,0.0,4933.336157371399,76868106.05665371,0.0,27644560.962099744,32436284.862197039 + 02/28 14:00:00,60120656.80782683,0.0,4942.031613078273,77911970.6149086,0.0,27644560.962099744,32436284.862197039 + 02/28 15:00:00,37339203.09750869,0.0,4949.060404175298,55155820.552539769,0.0,27644560.962099744,32436284.862197039 + 02/28 16:00:00,20502537.549093356,0.0,4942.031613078273,38293851.35617514,0.0,27644560.962099744,32436284.862197039 + 02/28 17:00:00,55277590.72917966,0.0,3843.802365727545,69115279.24579881,0.0,27644560.962099744,32436284.862197039 + 02/28 18:00:00,113569912.3797777,0.0,2745.573118376818,123453975.60593425,0.0,27644560.962099744,28832253.210841814 + 02/28 19:00:00,147431514.41694249,0.0,1650.1474268764599,153372045.15369774,0.0,15358089.423388744,18020158.25677613 + 02/28 20:00:00,159480637.89735423,0.0,1100.4035923062389,163442090.82965667,0.0,9214853.654033246,10812094.954065679 + 02/28 21:00:00,161380889.22761853,0.0,1101.0088682456474,165344521.15330286,0.0,9214853.654033246,10812094.954065679 + 02/28 22:00:00,0.0,0.0,1101.308830655391,3964711.7903594078,0.0,6143235.769355498,3604031.6513552267 + 02/28 23:00:00,0.0,0.0,275.40175137879836,991446.3049636739,0.0,6143235.769355498,3604031.6513552267 + 02/28 24:00:00,0.0,0.0,275.3272076638477,991177.9475898516,0.0,6143235.769355498,1802015.8256776133 + 03/01 01:00:00,0.0,0.0,275.17678029103936,990636.4090477416,0.0,6143235.769355498,1802015.8256776133 + 03/01 02:00:00,0.0,0.0,275.0245711460767,990088.4561258762,0.0,6143235.769355498,1802015.8256776133 + 03/01 03:00:00,0.0,0.0,274.87058607084358,989534.1098550368,0.0,6143235.769355498,1802015.8256776133 + 03/01 04:00:00,0.0,0.0,274.87058607084358,989534.1098550368,0.0,6143235.769355498,1802015.8256776133 + 03/01 05:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/01 06:00:00,0.0,0.0,275.17678029103936,990636.4090477416,0.0,6143235.769355498,1802015.8256776133 + 03/01 07:00:00,483200372.6597321,16463344.358523066,274.94780023196099,484190184.7405671,16463344.358523066,6143235.769355498,1802015.8256776133 + 03/01 08:00:00,89898596.639567,0.0,551.6791785554862,91884641.68236676,0.0,9214853.654033246,10812094.954065679 + 03/01 09:00:00,4059341.4905467776,0.0,2769.2724880789276,14028722.447630912,0.0,24572943.077421994,28832253.210841814 + 03/01 10:00:00,0.0,1985178.4709296539,2773.0475376801507,9982971.135648542,1985178.4709296539,27644560.962099744,32436284.862197039 + 03/01 11:00:00,0.0,11632465.513995476,5008.123950918437,18029246.223306374,11632465.513995476,27644560.962099744,32436284.862197039 + 03/01 12:00:00,0.0,238642.84342579195,5023.40496184944,18084257.862657984,238642.84342579195,27644560.962099744,32436284.862197039 + 03/01 13:00:00,0.0,0.0,5023.40496184944,18084257.862657984,0.0,27644560.962099744,32436284.862197039 + 03/01 14:00:00,0.0,363993.5639202829,5023.40496184944,18084257.862657984,363993.5639202829,27644560.962099744,32436284.862197039 + 03/01 15:00:00,0.0,0.0,5028.200635795351,18101522.288863265,0.0,27644560.962099744,32436284.862197039 + 03/01 16:00:00,5359928.8685378259,0.0,5028.200635795351,23461451.15740109,0.0,27644560.962099744,32436284.862197039 + 03/01 17:00:00,30422528.052494155,0.0,3910.8227167297179,44501489.83272114,0.0,27644560.962099744,32436284.862197039 + 03/01 18:00:00,66974885.37652988,0.0,2790.7805343607999,77021695.30022875,0.0,27644560.962099744,28832253.210841814 + 03/01 19:00:00,104892467.15142417,0.0,1671.2671675431023,110909028.95457934,0.0,15358089.423388744,18020158.25677613 + 03/01 20:00:00,126617746.53434071,0.0,1112.9164335374306,130624245.69507545,0.0,9214853.654033246,10812094.954065679 + 03/01 21:00:00,130120814.87841192,0.0,1112.9164335374306,134127314.03914666,0.0,9214853.654033246,10812094.954065679 + 03/01 22:00:00,0.0,0.0,1112.9164335374306,4006499.1607347496,0.0,6143235.769355498,3604031.6513552267 + 03/01 23:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,3604031.6513552267 + 03/01 24:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/02 01:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/02 02:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/02 03:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/02 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/02 05:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/02 06:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/02 07:00:00,0.0,0.0,275.8395892777431,993022.5213998749,0.0,6143235.769355498,1802015.8256776133 + 03/02 08:00:00,0.0,0.0,275.8395892777431,993022.5213998752,0.0,6143235.769355498,1802015.8256776133 + 03/02 09:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 03/02 10:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/02 11:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 03/02 12:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 13:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/02 14:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 15:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 16:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 17:00:00,0.0,0.0,279.0780534360799,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 18:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 19:00:00,0.0,0.0,279.3444797664084,1005640.1271590702,0.0,6143235.769355498,1802015.8256776133 + 03/02 20:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 03/02 21:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 22:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/02 23:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 03/02 24:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 03/03 01:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/03 02:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/03 03:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/03 04:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/03 05:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/03 06:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 03/03 07:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/03 08:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 03/03 09:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 03/03 10:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/03 11:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 03/03 12:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 03/03 13:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 03/03 14:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 03/03 15:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 03/03 16:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 03/03 17:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 03/03 18:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 03/03 19:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 03/03 20:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 03/03 21:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 03/03 22:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/03 23:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/03 24:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/04 01:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/04 02:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/04 03:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 03/04 04:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/04 05:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/04 06:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/04 07:00:00,366581520.3454541,14146574.135496453,277.95319920887916,367582151.8626061,14146574.135496453,6143235.769355498,1802015.8256776133 + 03/04 08:00:00,118083012.09002954,0.0,553.8544976157856,120076888.28144637,0.0,9214853.654033246,10812094.954065679 + 03/04 09:00:00,48012048.17172322,0.0,2765.999443852371,57969646.169591758,0.0,24572943.077421994,28832253.210841814 + 03/04 10:00:00,18287059.4003911,0.0,2765.999443852371,28244657.398259637,0.0,27644560.962099744,32436284.862197039 + 03/04 11:00:00,18142769.84611425,0.0,4984.69047854207,36087655.5688657,0.0,27644560.962099744,32436284.862197039 + 03/04 12:00:00,23434591.119644688,0.0,4991.485567824271,41403939.16381206,0.0,27644560.962099744,32436284.862197039 + 03/04 13:00:00,7777220.596820575,0.0,5003.1575857598249,25788587.90555594,0.0,27644560.962099744,32436284.862197039 + 03/04 14:00:00,0.0,3924223.5973307287,5003.1575857598249,18011367.30873537,3924223.5973307287,27644560.962099744,32436284.862197039 + 03/04 15:00:00,0.0,50450721.739908028,5008.123950918437,18029246.223306374,50450721.739908028,27644560.962099744,32436284.862197039 + 03/04 16:00:00,0.0,66159086.75692253,5013.801502629307,18049685.409465508,66159086.75692253,27644560.962099744,32436284.862197039 + 03/04 17:00:00,0.0,18970944.054553559,3891.344788924307,14008841.240127506,18970944.054553559,27644560.962099744,32436284.862197039 + 03/04 18:00:00,42534329.562071669,0.0,2779.5319920887907,52540644.73359132,0.0,27644560.962099744,28832253.210841814 + 03/04 19:00:00,112091015.05040369,0.0,1665.6392144236766,118087316.22232892,0.0,15358089.423388744,18020158.25677613 + 03/04 20:00:00,133535728.6344122,0.0,1110.4261429491178,137533262.749029,0.0,9214853.654033246,10812094.954065679 + 03/04 21:00:00,143584950.9904966,0.0,1107.7089952315712,147572703.37333028,0.0,9214853.654033246,10812094.954065679 + 03/04 22:00:00,0.0,0.0,1109.2190150720604,3993188.4542594186,0.0,6143235.769355498,3604031.6513552267 + 03/04 23:00:00,0.0,0.0,276.9272488078928,996938.0957084142,0.0,6143235.769355498,3604031.6513552267 + 03/04 24:00:00,0.0,0.0,276.9272488078928,996938.095708414,0.0,6143235.769355498,1802015.8256776133 + 03/05 01:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/05 02:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/05 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/05 04:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/05 05:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/05 06:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/05 07:00:00,515862155.28933396,18328692.12028541,274.5573118376818,516850561.6119496,18328692.12028541,6143235.769355498,1802015.8256776133 + 03/05 08:00:00,211413045.36347918,0.0,548.1484619301556,213386379.82642774,0.0,9214853.654033246,10812094.954065679 + 03/05 09:00:00,156565643.12000955,0.0,2740.7423096507775,166432315.43475235,0.0,24572943.077421994,28832253.210841814 + 03/05 10:00:00,164935157.99109803,0.0,2736.5969787552369,174786907.11461688,0.0,27644560.962099744,32436284.862197039 + 03/05 11:00:00,159642534.28507514,0.0,4925.874561759427,177375682.70740903,0.0,27644560.962099744,32436284.862197039 + 03/05 12:00:00,141998837.30262805,0.0,4933.336157371399,159758847.4691651,0.0,27644560.962099744,32436284.862197039 + 03/05 13:00:00,125000803.7876383,0.0,4933.336157371399,142760813.95417536,0.0,27644560.962099744,32436284.862197039 + 03/05 14:00:00,120477005.10286589,0.0,4942.031613078273,138268318.90994767,0.0,27644560.962099744,32436284.862197039 + 03/05 15:00:00,116421398.4654296,0.0,4942.031613078273,134212712.2725114,0.0,27644560.962099744,32436284.862197039 + 03/05 16:00:00,118451335.32983604,0.0,4949.060404175298,136267952.7848671,0.0,27644560.962099744,32436284.862197039 + 03/05 17:00:00,123836791.60887967,0.0,3849.269203247453,137694160.7405705,0.0,27644560.962099744,32436284.862197039 + 03/05 18:00:00,146528049.46681754,0.0,2749.4780023196096,156426170.27516813,0.0,27644560.962099744,28832253.210841814 + 03/05 19:00:00,174864995.1515602,0.0,1649.6868013917659,180803867.63657055,0.0,15358089.423388744,18020158.25677613 + 03/05 20:00:00,188445354.82606489,0.0,1099.7912009278439,192404603.14940513,0.0,9214853.654033246,10812094.954065679 + 03/05 21:00:00,189445044.1272002,0.0,1099.7912009278439,193404292.45054046,0.0,9214853.654033246,10812094.954065679 + 03/05 22:00:00,0.0,0.0,1099.7912009278437,3959248.3233402369,0.0,6143235.769355498,3604031.6513552267 + 03/05 23:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,3604031.6513552267 + 03/05 24:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/06 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/06 02:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/06 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/06 04:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/06 05:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/06 06:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/06 07:00:00,511998269.3789723,18286102.092574575,274.5573118376818,512986675.701588,18286102.092574575,6143235.769355498,1802015.8256776133 + 03/06 08:00:00,171265012.8060696,0.0,549.1146236753637,173241825.45130093,0.0,9214853.654033246,10812094.954065679 + 03/06 09:00:00,93065446.04341161,0.0,2745.573118376818,102949509.26956815,0.0,24572943.077421994,28832253.210841814 + 03/06 10:00:00,77887152.29718428,0.0,2754.017513787983,87801615.34682101,0.0,27644560.962099744,32436284.862197039 + 03/06 11:00:00,75788738.76173505,0.0,4965.112606999375,93663144.14693281,0.0,27644560.962099744,32436284.862197039 + 03/06 12:00:00,72377894.06078457,0.0,4971.456651316232,90275138.005523,0.0,27644560.962099744,32436284.862197039 + 03/06 13:00:00,75771785.29770813,0.0,4978.798998934269,93695461.6938715,0.0,27644560.962099744,32436284.862197039 + 03/06 14:00:00,88027504.13224519,0.0,4991.485567824271,105996852.17641257,0.0,27644560.962099744,32436284.862197039 + 03/06 15:00:00,106450622.45009604,0.0,4996.91764327103,124439525.96587175,0.0,27644560.962099744,32436284.862197039 + 03/06 16:00:00,113103654.87205747,0.0,5003.1575857598249,131115022.18079284,0.0,27644560.962099744,32436284.862197039 + 03/06 17:00:00,116518131.05169934,0.0,3899.6233909339046,130556775.2590614,0.0,27644560.962099744,32436284.862197039 + 03/06 18:00:00,114962545.89296764,0.0,2790.7805343607999,125009355.81666652,0.0,27644560.962099744,28832253.210841814 + 03/06 19:00:00,137816280.2290901,0.0,1674.4683206164796,143844366.18330945,0.0,15358089.423388744,18020158.25677613 + 03/06 20:00:00,142448362.76657228,0.0,1119.1499160564795,146477302.46437563,0.0,9214853.654033246,10812094.954065679 + 03/06 21:00:00,137097568.87917335,0.0,1119.8771407371062,141129126.58582694,0.0,9214853.654033246,10812094.954065679 + 03/06 22:00:00,0.0,0.0,1119.8771407371065,4031557.7066535826,0.0,6143235.769355498,3604031.6513552267 + 03/06 23:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,3604031.6513552267 + 03/06 24:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 03/07 01:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/07 02:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/07 03:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/07 04:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/07 05:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/07 06:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/07 07:00:00,297680307.873067,13456862.645784118,279.3444797664084,298685948.00022616,13456862.645784118,6143235.769355498,1802015.8256776133 + 03/07 08:00:00,49018012.49166049,0.0,557.685497294676,51025680.28192133,0.0,9214853.654033246,10812094.954065679 + 03/07 09:00:00,0.0,5428510.124112251,2785.4452792385038,10027603.005258613,5428510.124112251,24572943.077421994,28832253.210841814 + 03/07 10:00:00,0.0,20477559.44022215,2785.4452792385038,10027603.005258613,20477559.44022215,27644560.962099744,32436284.862197039 + 03/07 11:00:00,0.0,1119313.0884564946,5008.123950918437,18029246.223306374,1119313.0884564946,27644560.962099744,32436284.862197039 + 03/07 12:00:00,13184841.975146085,0.0,5013.801502629307,31234527.38461159,0.0,27644560.962099744,32436284.862197039 + 03/07 13:00:00,25268185.08660762,0.0,5013.801502629307,43317870.49607313,0.0,27644560.962099744,32436284.862197039 + 03/07 14:00:00,4473623.5982520519,0.0,5019.169475652085,22542633.710599558,0.0,27644560.962099744,32436284.862197039 + 03/07 15:00:00,0.0,21111477.4172187,5019.169475652085,18069010.112347507,21111477.4172187,27644560.962099744,32436284.862197039 + 03/07 16:00:00,0.0,44987891.93545334,5019.169475652085,18069010.112347507,44987891.93545334,27644560.962099744,32436284.862197039 + 03/07 17:00:00,0.0,25987241.57998083,3907.092748105119,14065533.893178428,25987241.57998083,27644560.962099744,32436284.862197039 + 03/07 18:00:00,43988170.5303494,0.0,2782.2910838435766,54004418.432186279,0.0,27644560.962099744,28832253.210841814 + 03/07 19:00:00,124070008.09790272,0.0,1665.6392144236766,130066309.26982793,0.0,15358089.423388744,18020158.25677613 + 03/07 20:00:00,144856594.78637464,0.0,1109.2190150720604,148849783.24063406,0.0,9214853.654033246,10812094.954065679 + 03/07 21:00:00,146171491.49033953,0.0,1110.4261429491178,150169025.60495634,0.0,9214853.654033246,10812094.954065679 + 03/07 22:00:00,0.0,0.0,1110.4261429491174,3997534.1146168245,0.0,6143235.769355498,3604031.6513552267 + 03/07 23:00:00,0.0,0.0,276.9272488078928,996938.095708414,0.0,6143235.769355498,3604031.6513552267 + 03/07 24:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 03/08 01:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/08 02:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/08 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/08 04:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/08 05:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/08 06:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/08 07:00:00,493470626.1677111,16395746.98821326,274.0742309650778,494457293.3991854,16395746.98821326,6143235.769355498,1802015.8256776133 + 03/08 08:00:00,69499285.23680875,0.0,548.1484619301556,71472619.69975731,0.0,9214853.654033246,10812094.954065679 + 03/08 09:00:00,651016.788186453,0.0,2754.017513787983,10565479.83782319,0.0,24572943.077421994,28832253.210841814 + 03/08 10:00:00,0.0,0.0,2749.4780023196096,9898120.808350595,0.0,27644560.962099744,32436284.862197039 + 03/08 11:00:00,16760970.311481726,0.0,4971.456651316232,34658214.25622016,0.0,27644560.962099744,32436284.862197039 + 03/08 12:00:00,24585574.9183292,0.0,4971.456651316232,42482818.863067638,0.0,27644560.962099744,32436284.862197039 + 03/08 13:00:00,33373507.951475908,0.0,4978.798998934269,51297184.34763928,0.0,27644560.962099744,32436284.862197039 + 03/08 14:00:00,30776399.053192684,0.0,4978.798998934269,48700075.44935605,0.0,27644560.962099744,32436284.862197039 + 03/08 15:00:00,31439034.908213743,0.0,4978.798998934269,49362711.30437711,0.0,27644560.962099744,32436284.862197039 + 03/08 16:00:00,48003929.29814874,0.0,4978.798998934269,65927605.694312099,0.0,27644560.962099744,32436284.862197039 + 03/08 17:00:00,76679747.79978156,0.0,3872.399221393319,90620384.9967975,0.0,27644560.962099744,32436284.862197039 + 03/08 18:00:00,116445652.96484427,0.0,2761.9203618423509,126388566.26747674,0.0,27644560.962099744,28832253.210841814 + 03/08 19:00:00,156016950.96274949,0.0,1657.1522171054106,161982698.94432897,0.0,15358089.423388744,18020158.25677613 + 03/08 20:00:00,172029808.61231745,0.0,1104.7681447369399,176006973.93337045,0.0,9214853.654033246,10812094.954065679 + 03/08 21:00:00,174052366.1766581,0.0,1104.7681447369399,178029531.49771107,0.0,9214853.654033246,10812094.954065679 + 03/08 22:00:00,0.0,0.0,1104.7681447369399,3977165.321052983,0.0,6143235.769355498,3604031.6513552267 + 03/08 23:00:00,0.0,0.0,275.40175137879836,991446.3049636739,0.0,6143235.769355498,3604031.6513552267 + 03/08 24:00:00,0.0,0.0,275.4017513787983,991446.3049636739,0.0,6143235.769355498,1802015.8256776133 + 03/09 01:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/09 02:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/09 03:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/09 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/09 05:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/09 06:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/09 07:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/09 08:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/09 09:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/09 10:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/09 11:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/09 12:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/09 13:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/09 14:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/09 15:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/09 16:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/09 17:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/09 18:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/09 19:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/09 20:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/09 21:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/09 22:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/09 23:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/09 24:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/10 01:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/10 02:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/10 03:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/10 04:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/10 05:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/10 06:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 03/10 07:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 03/10 08:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 03/10 09:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/10 10:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/10 11:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 03/10 12:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 03/10 13:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/10 14:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 03/10 15:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 03/10 16:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 03/10 17:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/10 18:00:00,0.0,0.0,272.70995153744817,981755.8255348135,0.0,6143235.769355498,1802015.8256776133 + 03/10 19:00:00,0.0,0.0,272.17032681307486,979813.1765270693,0.0,6143235.769355498,1802015.8256776133 + 03/10 20:00:00,0.0,0.0,271.7091753893493,978153.0314016575,0.0,6143235.769355498,1802015.8256776133 + 03/10 21:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/10 22:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 03/10 23:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/10 24:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/11 01:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 03/11 02:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 03/11 03:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 03/11 04:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 03/11 05:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/11 06:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 03/11 07:00:00,705811681.203091,15273129.315118732,263.2573827847691,706759407.7811161,15273129.315118732,6143235.769355498,1802015.8256776133 + 03/11 08:00:00,142201983.87615348,0.0,527.7303691669465,144101813.20515449,0.0,9214853.654033246,10812094.954065679 + 03/11 09:00:00,58022818.63498349,0.0,2658.6785419915174,67594061.38615296,0.0,24572943.077421994,28832253.210841814 + 03/11 10:00:00,46412970.6102627,0.0,2665.503893434902,56008784.62662835,0.0,27644560.962099744,32436284.862197039 + 03/11 11:00:00,70742065.39893446,0.0,4819.817302019013,88093407.6862029,0.0,27644560.962099744,32436284.862197039 + 03/11 12:00:00,102608948.38530299,0.0,4829.508513199488,119995179.03282115,0.0,27644560.962099744,32436284.862197039 + 03/11 13:00:00,99054869.97127757,0.0,4861.1676194657279,116555073.40135418,0.0,27644560.962099744,32436284.862197039 + 03/11 14:00:00,55217125.6862678,0.0,4870.09056681203,72749451.72679112,0.0,27644560.962099744,32436284.862197039 + 03/11 15:00:00,13753716.864342859,0.0,4890.765157008289,31360471.4295727,0.0,27644560.962099744,32436284.862197039 + 03/11 16:00:00,0.0,0.0,4899.065882635347,17636637.17748725,0.0,27644560.962099744,32436284.862197039 + 03/11 17:00:00,10401425.082872756,0.0,3817.9393215242737,24146006.64036014,0.0,27644560.962099744,32436284.862197039 + 03/11 18:00:00,95209333.41251333,0.0,2721.703268130748,105007465.17778403,0.0,27644560.962099744,28832253.210841814 + 03/11 19:00:00,190644118.96954239,0.0,1633.021960878449,196522998.02870483,0.0,15358089.423388744,18020158.25677613 + 03/11 20:00:00,210760114.9496313,0.0,1084.5688087242029,214664562.6610384,0.0,9214853.654033246,10812094.954065679 + 03/11 21:00:00,216705084.64397634,0.0,1082.2423481804515,220601157.09742598,0.0,9214853.654033246,10812094.954065679 + 03/11 22:00:00,0.0,0.0,1077.8277378405997,3880179.856226157,0.0,6143235.769355498,3604031.6513552267 + 03/11 23:00:00,0.0,0.0,268.93957419784587,968182.4671122447,0.0,6143235.769355498,3604031.6513552267 + 03/11 24:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/12 01:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/12 02:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/12 03:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 03/12 04:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/12 05:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/12 06:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/12 07:00:00,627360416.8174466,16944943.068628406,268.93957419784575,628328599.2845589,16944943.068628406,6143235.769355498,1802015.8256776133 + 03/12 08:00:00,160274776.57904236,0.0,540.129735496192,162219243.62682865,0.0,9214853.654033246,10812094.954065679 + 03/12 09:00:00,76839703.48023203,0.0,2705.605870451128,86579884.6138561,0.0,24572943.077421994,28832253.210841814 + 03/12 10:00:00,11407451.828476968,0.0,2717.0917538934938,21188982.142493544,0.0,27644560.962099744,32436284.862197039 + 03/12 11:00:00,3773844.946611155,0.0,4942.031613078273,21565158.753692934,0.0,27644560.962099744,32436284.862197039 + 03/12 12:00:00,11367126.803788588,0.0,4965.112606999375,29241532.18898634,0.0,27644560.962099744,32436284.862197039 + 03/12 13:00:00,18607776.447598164,0.0,4971.456651316232,36505020.39233659,0.0,27644560.962099744,32436284.862197039 + 03/12 14:00:00,10451726.398008597,0.0,4978.798998934269,28375402.794171964,0.0,27644560.962099744,32436284.862197039 + 03/12 15:00:00,0.0,0.0,4991.485567824271,17969348.044167378,0.0,27644560.962099744,32436284.862197039 + 03/12 16:00:00,0.0,0.0,4991.485567824271,17969348.044167378,0.0,27644560.962099744,32436284.862197039 + 03/12 17:00:00,12400300.106588012,0.0,3876.9814833104985,26357433.446505809,0.0,27644560.962099744,32436284.862197039 + 03/12 18:00:00,61240756.76924662,0.0,2769.2724880789276,71210137.72633076,0.0,27644560.962099744,28832253.210841814 + 03/12 19:00:00,139239145.933407,0.0,1659.5996663114227,145213704.73212815,0.0,15358089.423388744,18020158.25677613 + 03/12 20:00:00,159413508.90699453,0.0,1106.3997775409485,163396548.10614193,0.0,9214853.654033246,10812094.954065679 + 03/12 21:00:00,166618037.8748681,0.0,1103.3583571109724,170590127.9604676,0.0,9214853.654033246,10812094.954065679 + 03/12 22:00:00,0.0,0.0,1101.6070055151936,3965785.2198546968,0.0,6143235.769355498,3604031.6513552267 + 03/12 23:00:00,0.0,0.0,275.40175137879836,991446.3049636739,0.0,6143235.769355498,3604031.6513552267 + 03/12 24:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/13 01:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/13 02:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/13 03:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/13 04:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 03/13 05:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 03/13 06:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/13 07:00:00,537043530.9771193,15768706.166796465,270.56058704511289,538017549.0904816,15768706.166796465,6143235.769355498,1802015.8256776133 + 03/13 08:00:00,48524309.31217393,0.0,545.4199030748963,50487820.96324356,0.0,9214853.654033246,10812094.954065679 + 03/13 09:00:00,0.0,8866615.911622467,2736.5969787552369,9851749.12351885,8866615.911622467,24572943.077421994,28832253.210841814 + 03/13 10:00:00,0.0,38082225.83479868,2758.3958927774308,9930225.21399875,38082225.83479868,27644560.962099744,32436284.862197039 + 03/13 11:00:00,0.0,21465773.991476537,4996.91764327103,17988903.515775708,21465773.991476537,27644560.962099744,32436284.862197039 + 03/13 12:00:00,0.0,1451370.6156687285,4991.485567824271,17969348.044167378,1451370.6156687285,27644560.962099744,32436284.862197039 + 03/13 13:00:00,0.0,506715.5288609966,4991.485567824271,17969348.044167378,506715.5288609966,27644560.962099744,32436284.862197039 + 03/13 14:00:00,0.0,37082841.41566954,4996.91764327103,17988903.515775708,37082841.41566954,27644560.962099744,32436284.862197039 + 03/13 15:00:00,0.0,63100540.16181274,4996.91764327103,17988903.515775708,63100540.16181274,27644560.962099744,32436284.862197039 + 03/13 16:00:00,0.0,52945122.85658733,4984.69047854207,17944885.722751455,52945122.85658733,27644560.962099744,32436284.862197039 + 03/13 17:00:00,0.0,17540535.154561975,3872.399221393319,13940637.197015949,17540535.154561975,27644560.962099744,32436284.862197039 + 03/13 18:00:00,31480178.16483272,0.0,2761.9203618423509,41423091.467465188,0.0,27644560.962099744,28832253.210841814 + 03/13 19:00:00,130776481.13153853,0.0,1655.0375356664584,136734616.25993777,0.0,15358089.423388744,18020158.25677613 + 03/13 20:00:00,155572713.26714484,0.0,1101.6070055151934,159538498.48699949,0.0,9214853.654033246,10812094.954065679 + 03/13 21:00:00,162250420.1103652,0.0,1103.3583571109724,166222510.19596476,0.0,9214853.654033246,10812094.954065679 + 03/13 22:00:00,0.0,0.0,1103.3583571109719,3972090.0855995009,0.0,6143235.769355498,3604031.6513552267 + 03/13 23:00:00,0.0,0.0,275.8395892777431,993022.5213998749,0.0,6143235.769355498,3604031.6513552267 + 03/13 24:00:00,0.0,0.0,275.4017513787983,991446.3049636739,0.0,6143235.769355498,1802015.8256776133 + 03/14 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/14 02:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/14 03:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/14 04:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/14 05:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/14 06:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,1802015.8256776133 + 03/14 07:00:00,507443305.044321,16982858.478300506,274.94780023196099,508433117.1251561,16982858.478300506,6143235.769355498,1802015.8256776133 + 03/14 08:00:00,174302738.6828431,0.0,552.3840723684699,176291321.3433696,0.0,9214853.654033246,10812094.954065679 + 03/14 09:00:00,117559831.34791999,0.0,2773.0475376801507,127542802.48356852,0.0,24572943.077421994,28832253.210841814 + 03/14 10:00:00,89350714.05733566,0.0,2773.0475376801507,99333685.1929842,0.0,27644560.962099744,32436284.862197039 + 03/14 11:00:00,84636201.52788335,0.0,4996.91764327103,102625105.04365906,0.0,27644560.962099744,32436284.862197039 + 03/14 12:00:00,82101981.3741666,0.0,4991.485567824271,100071329.41833398,0.0,27644560.962099744,32436284.862197039 + 03/14 13:00:00,85632318.79291412,0.0,4991.485567824271,103601666.83708149,0.0,27644560.962099744,32436284.862197039 + 03/14 14:00:00,88389086.5767192,0.0,4984.69047854207,106333972.29947065,0.0,27644560.962099744,32436284.862197039 + 03/14 15:00:00,88864234.678506,0.0,4984.69047854207,106809120.40125744,0.0,27644560.962099744,32436284.862197039 + 03/14 16:00:00,93218750.68413942,0.0,4991.485567824271,111188098.72830677,0.0,27644560.962099744,32436284.862197039 + 03/14 17:00:00,100814198.40690147,0.0,3882.2665527522106,114790357.99680943,0.0,27644560.962099744,32436284.862197039 + 03/14 18:00:00,112942986.12405309,0.0,2779.531992088791,122949301.29557275,0.0,27644560.962099744,28832253.210841814 + 03/14 19:00:00,136822672.43431438,0.0,1669.3746503061457,142832421.1754165,0.0,15358089.423388744,18020158.25677613 + 03/14 20:00:00,151699445.33552499,0.0,1111.8127968355166,155701971.40413285,0.0,9214853.654033246,10812094.954065679 + 03/14 21:00:00,151368636.15471343,0.0,1112.9164335374306,155375135.31544817,0.0,9214853.654033246,10812094.954065679 + 03/14 22:00:00,0.0,0.0,1112.9164335374304,4006499.160734749,0.0,6143235.769355498,3604031.6513552267 + 03/14 23:00:00,0.0,0.0,278.22910838435765,1001624.7901836876,0.0,6143235.769355498,3604031.6513552267 + 03/14 24:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/15 01:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/15 02:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/15 03:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/15 04:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/15 05:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/15 06:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/15 07:00:00,453957387.90572646,15523075.752711157,275.8395892777431,454950410.4271263,15523075.752711157,6143235.769355498,1802015.8256776133 + 03/15 08:00:00,151829025.6266756,0.0,550.8035027575967,153811918.23660294,0.0,9214853.654033246,10812094.954065679 + 03/15 09:00:00,82037915.4744028,0.0,2761.9203618423509,91980828.77703528,0.0,24572943.077421994,28832253.210841814 + 03/15 10:00:00,62055706.73558735,0.0,2761.9203618423509,71998620.03821981,0.0,27644560.962099744,32436284.862197039 + 03/15 11:00:00,70260822.66684343,0.0,5003.1575857598249,88272189.9755788,0.0,27644560.962099744,32436284.862197039 + 03/15 12:00:00,63134508.05270612,0.0,5013.801502629307,81184193.46217162,0.0,27644560.962099744,32436284.862197039 + 03/15 13:00:00,55372816.2064534,0.0,5023.40496184944,73457074.06911138,0.0,27644560.962099744,32436284.862197039 + 03/15 14:00:00,24512644.554237829,0.0,5031.956814710111,42627689.08719423,0.0,27644560.962099744,32436284.862197039 + 03/15 15:00:00,1533220.7352559546,0.0,5036.174622254158,19663449.37537092,0.0,27644560.962099744,32436284.862197039 + 03/15 16:00:00,32401352.562235327,0.0,5031.956814710111,50516397.09519172,0.0,27644560.962099744,32436284.862197039 + 03/15 17:00:00,58254798.868369,0.0,3907.092748105119,72320332.76154742,0.0,27644560.962099744,32436284.862197039 + 03/15 18:00:00,62135511.47234098,0.0,2790.7805343607999,72182321.39603986,0.0,27644560.962099744,28832253.210841814 + 03/15 19:00:00,117305093.08048633,0.0,1674.4683206164796,123333179.03470564,0.0,15358089.423388744,18020158.25677613 + 03/15 20:00:00,132133757.02115813,0.0,1116.31221374432,136152480.9906377,0.0,9214853.654033246,10812094.954065679 + 03/15 21:00:00,130718396.21818777,0.0,1117.3779190656338,134740956.72682406,0.0,9214853.654033246,10812094.954065679 + 03/15 22:00:00,0.0,0.0,1115.370994589352,4015335.5805216676,0.0,6143235.769355498,3604031.6513552267 + 03/15 23:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,3604031.6513552267 + 03/15 24:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 03/16 01:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/16 02:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 03/16 03:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/16 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/16 05:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/16 06:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/16 07:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 08:00:00,0.0,0.0,273.65969787552378,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 09:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/16 10:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 11:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 12:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 13:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/16 14:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/16 15:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 16:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 17:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/16 18:00:00,0.0,0.0,273.14804808846966,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/16 19:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 03/16 20:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 03/16 21:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/16 22:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 03/16 23:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 03/16 24:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/17 01:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/17 02:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 03/17 03:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 03/17 04:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/17 05:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/17 06:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 03/17 07:00:00,0.0,0.0,262.517108320821,945061.5899549557,0.0,6143235.769355498,1802015.8256776133 + 03/17 08:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 03/17 09:00:00,0.0,0.0,263.86518458347327,949914.6645005036,0.0,6143235.769355498,1802015.8256776133 + 03/17 10:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/17 11:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 03/17 12:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 03/17 13:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/17 14:00:00,0.0,0.0,268.9395741978457,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/17 15:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/17 16:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 03/17 17:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 03/17 18:00:00,0.0,0.0,271.70917538934938,978153.0314016576,0.0,6143235.769355498,1802015.8256776133 + 03/17 19:00:00,0.0,0.0,270.56058704511289,974018.1133624063,0.0,6143235.769355498,1802015.8256776133 + 03/17 20:00:00,0.0,0.0,269.45693446014988,970044.9640565394,0.0,6143235.769355498,1802015.8256776133 + 03/17 21:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/17 22:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/17 23:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 03/17 24:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 03/18 01:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 03/18 02:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/18 03:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 03/18 04:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/18 05:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/18 06:00:00,0.0,0.0,264.58341632663328,952500.2987758797,0.0,6143235.769355498,1802015.8256776133 + 03/18 07:00:00,666092487.7145313,16667168.174144902,265.8678541991517,667049611.9896484,16667168.174144902,6143235.769355498,1802015.8256776133 + 03/18 08:00:00,103524455.9979345,0.0,536.6120570221654,105456259.40321428,0.0,9214853.654033246,10812094.954065679 + 03/18 09:00:00,22975747.56560359,0.0,2700.6486774809598,32698082.804535044,0.0,24572943.077421994,28832253.210841814 + 03/18 10:00:00,9395922.412159604,0.0,2711.422021810507,19157041.690677428,0.0,27644560.962099744,32436284.862197039 + 03/18 11:00:00,25432983.242968479,0.0,4890.765157008289,43039737.80819832,0.0,27644560.962099744,32436284.862197039 + 03/18 12:00:00,40540438.358532059,0.0,4942.031613078273,58331752.16561384,0.0,27644560.962099744,32436284.862197039 + 03/18 13:00:00,35309539.63416085,0.0,4957.231524818371,53155573.12350698,0.0,27644560.962099744,32436284.862197039 + 03/18 14:00:00,5331652.981927123,0.0,4965.112606999375,23206058.367124879,0.0,27644560.962099744,32436284.862197039 + 03/18 15:00:00,0.0,0.0,4978.798998934269,17923676.396163368,0.0,27644560.962099744,32436284.862197039 + 03/18 16:00:00,4419439.936782606,0.0,4984.69047854207,22364325.65953406,0.0,27644560.962099744,32436284.862197039 + 03/18 17:00:00,12111899.288249558,0.0,3876.9814833104985,26069032.628167355,0.0,27644560.962099744,32436284.862197039 + 03/18 18:00:00,58309890.34668924,0.0,2769.2724880789276,68279271.30377338,0.0,27644560.962099744,28832253.210841814 + 03/18 19:00:00,121443945.7244415,0.0,1661.5634928473567,127425574.29869199,0.0,15358089.423388744,18020158.25677613 + 03/18 20:00:00,141251961.9636131,0.0,1104.7681447369399,145229127.28466607,0.0,9214853.654033246,10812094.954065679 + 03/18 21:00:00,148577485.54640503,0.0,1104.7681447369399,152554650.86745803,0.0,9214853.654033246,10812094.954065679 + 03/18 22:00:00,0.0,0.0,1101.6070055151936,3965785.2198546968,0.0,6143235.769355498,3604031.6513552267 + 03/18 23:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,3604031.6513552267 + 03/18 24:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/19 01:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/19 02:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/19 03:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 03/19 04:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 03/19 05:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 03/19 06:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 03/19 07:00:00,512580057.0867794,17106367.521203147,274.5573118376818,513568463.4093951,17106367.521203147,6143235.769355498,1802015.8256776133 + 03/19 08:00:00,147967259.92148037,0.0,550.8035027575967,149950152.5314077,0.0,9214853.654033246,10812094.954065679 + 03/19 09:00:00,105896464.27460452,0.0,2758.3958927774308,115826689.48860325,0.0,24572943.077421994,28832253.210841814 + 03/19 10:00:00,59352268.92429448,0.0,2765.999443852371,69309866.92216301,0.0,27644560.962099744,32436284.862197039 + 03/19 11:00:00,41446871.25570372,0.0,4991.485567824271,59416219.2998711,0.0,27644560.962099744,32436284.862197039 + 03/19 12:00:00,33532530.23384025,0.0,5008.123950918437,51561776.45714662,0.0,27644560.962099744,32436284.862197039 + 03/19 13:00:00,39812716.00323531,0.0,5013.801502629307,57862401.41270082,0.0,27644560.962099744,32436284.862197039 + 03/19 14:00:00,28282014.53034116,0.0,5023.40496184944,46366272.392999138,0.0,27644560.962099744,32436284.862197039 + 03/19 15:00:00,7074904.356526235,0.0,5031.956814710111,25189948.889482634,0.0,27644560.962099744,32436284.862197039 + 03/19 16:00:00,6124580.256510071,0.0,5031.956814710111,24239624.78946647,0.0,27644560.962099744,32436284.862197039 + 03/19 17:00:00,8101466.900477216,0.0,3913.7441892189747,22190945.98166552,0.0,27644560.962099744,32436284.862197039 + 03/19 18:00:00,56435801.54529713,0.0,2782.291083843576,66452049.447134,0.0,27644560.962099744,28832253.210841814 + 03/19 19:00:00,118429850.26446703,0.0,1667.7191952532749,124433639.36737883,0.0,15358089.423388744,18020158.25677613 + 03/19 20:00:00,140655471.53960277,0.0,1109.2190150720604,144648659.99386219,0.0,9214853.654033246,10812094.954065679 + 03/19 21:00:00,146752601.79929338,0.0,1109.2190150720604,150745790.2535528,0.0,9214853.654033246,10812094.954065679 + 03/19 22:00:00,0.0,0.0,1109.2190150720599,3993188.454259418,0.0,6143235.769355498,3604031.6513552267 + 03/19 23:00:00,0.0,0.0,275.8395892777431,993022.5213998749,0.0,6143235.769355498,3604031.6513552267 + 03/19 24:00:00,0.0,0.0,275.4017513787983,991446.3049636739,0.0,6143235.769355498,1802015.8256776133 + 03/20 01:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/20 02:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/20 03:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/20 04:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/20 05:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/20 06:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/20 07:00:00,408529286.8753639,15627191.605007356,274.07423096507775,409515954.1068381,15627191.605007356,6143235.769355498,1802015.8256776133 + 03/20 08:00:00,48041545.377486627,0.0,547.3193957510474,50011895.2021904,0.0,9214853.654033246,10812094.954065679 + 03/20 09:00:00,0.0,0.0,2731.480480884695,9833329.731184904,0.0,24572943.077421994,28832253.210841814 + 03/20 10:00:00,0.0,0.0,2736.5969787552369,9851749.123518853,0.0,27644560.962099744,32436284.862197039 + 03/20 11:00:00,0.0,0.0,4933.336157371399,17760010.166537037,0.0,27644560.962099744,32436284.862197039 + 03/20 12:00:00,9764897.625836077,0.0,4942.031613078273,27556211.432917857,0.0,27644560.962099744,32436284.862197039 + 03/20 13:00:00,12054405.812587735,0.0,4965.112606999375,29928811.19778549,0.0,27644560.962099744,32436284.862197039 + 03/20 14:00:00,0.0,12514817.16076542,4971.456651316232,17897243.944738434,12514817.16076542,27644560.962099744,32436284.862197039 + 03/20 15:00:00,0.0,56513933.68993147,4971.456651316232,17897243.944738434,56513933.68993147,27644560.962099744,32436284.862197039 + 03/20 16:00:00,0.0,66808033.04718299,4965.112606999375,17874405.38519775,66808033.04718299,27644560.962099744,32436284.862197039 + 03/20 17:00:00,0.0,50189952.90027952,3866.6885065792905,13920078.623685446,50189952.90027952,27644560.962099744,32436284.862197039 + 03/20 18:00:00,8151917.401464796,3846910.3901623624,2758.39589277743,18082142.615463549,3846910.3901623624,27644560.962099744,28832253.210841814 + 03/20 19:00:00,119197637.0969286,0.0,1652.41050827279,125146314.92671065,0.0,15358089.423388744,18020158.25677613 + 03/20 20:00:00,143092884.6215005,0.0,1101.6070055151934,147058669.84135518,0.0,9214853.654033246,10812094.954065679 + 03/20 21:00:00,145513694.79020978,0.0,1101.6070055151934,149479480.01006449,0.0,9214853.654033246,10812094.954065679 + 03/20 22:00:00,0.0,0.0,1096.2969238603108,3946668.9258971216,0.0,6143235.769355498,3604031.6513552267 + 03/20 23:00:00,0.0,0.0,272.1703268130749,979813.1765270694,0.0,6143235.769355498,3604031.6513552267 + 03/20 24:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 03/21 01:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 03/21 02:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 03/21 03:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 03/21 04:00:00,0.0,0.0,267.1092052911355,961593.1390480878,0.0,6143235.769355498,1802015.8256776133 + 03/21 05:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 03/21 06:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 03/21 07:00:00,578913001.2750933,13904253.219870555,265.17249897607169,579867622.2714074,13904253.219870555,6143235.769355498,1802015.8256776133 + 03/21 08:00:00,49800435.53605023,0.0,536.6120570221654,51732238.94133002,0.0,9214853.654033246,10812094.954065679 + 03/21 09:00:00,0.0,7240664.327948446,2717.0917538934938,9781530.314016577,7240664.327948446,24572943.077421994,28832253.210841814 + 03/21 10:00:00,0.0,36788459.476633328,2745.573118376818,9884063.226156544,36788459.476633328,27644560.962099744,32436284.862197039 + 03/21 11:00:00,0.0,23216437.220909984,4978.798998934269,17923676.396163368,23216437.220909984,27644560.962099744,32436284.862197039 + 03/21 12:00:00,0.0,2647892.904694355,4991.485567824271,17969348.044167378,2647892.904694355,27644560.962099744,32436284.862197039 + 03/21 13:00:00,0.0,0.0,4991.485567824271,17969348.044167378,0.0,27644560.962099744,32436284.862197039 + 03/21 14:00:00,0.0,35697084.21217832,4996.91764327103,17988903.515775708,35697084.21217832,27644560.962099744,32436284.862197039 + 03/21 15:00:00,0.0,76669751.85744415,5003.1575857598249,18011367.308735368,76669751.85744415,27644560.962099744,32436284.862197039 + 03/21 16:00:00,0.0,93272124.16278282,5003.1575857598249,18011367.308735368,93272124.16278282,27644560.962099744,32436284.862197039 + 03/21 17:00:00,0.0,73219159.90250938,3895.207517381006,14022747.06257162,73219159.90250938,27644560.962099744,32436284.862197039 + 03/21 18:00:00,4246174.414803539,10757998.105633133,2776.0653573727947,14240009.7013456,10757998.105633133,27644560.962099744,28832253.210841814 + 03/21 19:00:00,103522839.91071181,0.0,1659.5996663114227,109497398.70943292,0.0,15358089.423388744,18020158.25677613 + 03/21 20:00:00,136933477.9100087,0.0,1101.6070055151934,140899263.12986339,0.0,9214853.654033246,10812094.954065679 + 03/21 21:00:00,148657040.07071115,0.0,1099.7912009278439,152616288.39405138,0.0,9214853.654033246,10812094.954065679 + 03/21 22:00:00,0.0,0.0,1096.2969238603108,3946668.9258971216,0.0,6143235.769355498,3604031.6513552267 + 03/21 23:00:00,0.0,0.0,274.0742309650778,986667.23147428,0.0,6143235.769355498,3604031.6513552267 + 03/21 24:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/22 01:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/22 02:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 03/22 03:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 03/22 04:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 03/22 05:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 03/22 06:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 03/22 07:00:00,517125715.7933582,17031058.856674047,270.06486774809607,518097949.31725147,17031058.856674047,6143235.769355498,1802015.8256776133 + 03/22 08:00:00,53367809.28932708,0.0,543.4183507786987,55324115.35213039,0.0,9214853.654033246,10812094.954065679 + 03/22 09:00:00,0.0,0.0,2745.5731183768177,9884063.226156544,0.0,24572943.077421994,28832253.210841814 + 03/22 10:00:00,0.0,18834919.477868234,2761.9203618423509,9942913.302632463,18834919.477868234,27644560.962099744,32436284.862197039 + 03/22 11:00:00,0.0,7838123.643857235,4996.91764327103,17988903.515775708,7838123.643857235,27644560.962099744,32436284.862197039 + 03/22 12:00:00,0.0,0.0,5019.169475652085,18069010.112347507,0.0,27644560.962099744,32436284.862197039 + 03/22 13:00:00,0.0,2208740.0062211386,5028.200635795351,18101522.288863265,2208740.0062211386,27644560.962099744,32436284.862197039 + 03/22 14:00:00,0.0,44375174.01121595,5036.174622254158,18130228.640114968,44375174.01121595,27644560.962099744,32436284.862197039 + 03/22 15:00:00,0.0,82926814.85579051,5039.447133316979,18142009.67994112,82926814.85579051,27644560.962099744,32436284.862197039 + 03/22 16:00:00,0.0,93960629.34561429,5039.447133316979,18142009.67994112,93960629.34561429,27644560.962099744,32436284.862197039 + 03/22 17:00:00,0.0,72496094.64877546,3919.5699925798714,14110451.973287536,72496094.64877546,27644560.962099744,32436284.862197039 + 03/22 18:00:00,0.0,12380401.722621128,2795.5315637278397,10063913.629420223,12380401.722621128,27644560.962099744,28832253.210841814 + 03/22 19:00:00,72290323.7727908,0.0,1676.0668785984508,78324164.53574524,0.0,15358089.423388744,18020158.25677613 + 03/22 20:00:00,113054950.07104418,0.0,1112.9164335374306,117061449.23177892,0.0,9214853.654033246,10812094.954065679 + 03/22 21:00:00,120443887.02649515,0.0,1114.1781116954015,124454928.2285986,0.0,9214853.654033246,10812094.954065679 + 03/22 22:00:00,0.0,0.0,1112.9164335374308,4006499.1607347496,0.0,6143235.769355498,3604031.6513552267 + 03/22 23:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,3604031.6513552267 + 03/22 24:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 03/23 01:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 03/23 02:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/23 03:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/23 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/23 05:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/23 06:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 03/23 07:00:00,0.0,0.0,274.0742309650778,986667.2314742801,0.0,6143235.769355498,1802015.8256776133 + 03/23 08:00:00,0.0,0.0,276.59994438523708,995759.7997868534,0.0,6143235.769355498,1802015.8256776133 + 03/23 09:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/23 10:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 03/23 11:00:00,0.0,0.0,280.1712321101407,1008616.4355965066,0.0,6143235.769355498,1802015.8256776133 + 03/23 12:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/23 13:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 03/23 14:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 03/23 15:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 03/23 16:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 03/23 17:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 03/23 18:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 03/23 19:00:00,0.0,0.0,280.3259567842677,1009173.4444233637,0.0,6143235.769355498,1802015.8256776133 + 03/23 20:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 03/23 21:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/23 22:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/23 23:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/23 24:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/24 01:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/24 02:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 03/24 03:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/24 04:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/24 05:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/24 06:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/24 07:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/24 08:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/24 09:00:00,0.0,0.0,279.55315637278388,1006391.362942022,0.0,6143235.769355498,1802015.8256776133 + 03/24 10:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/24 11:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/24 12:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/24 13:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 03/24 14:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 03/24 15:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/24 16:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/24 17:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 03/24 18:00:00,0.0,0.0,280.32595678426767,1009173.4444233636,0.0,6143235.769355498,1802015.8256776133 + 03/24 19:00:00,0.0,0.0,280.1712321101407,1008616.4355965066,0.0,6143235.769355498,1802015.8256776133 + 03/24 20:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/24 21:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/24 22:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/24 23:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/24 24:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/25 01:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/25 02:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/25 03:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/25 04:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/25 05:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/25 06:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/25 07:00:00,307917690.04210957,12009482.210616772,279.3444797664084,308923330.16926869,12009482.210616772,6143235.769355498,1802015.8256776133 + 03/25 08:00:00,91673741.80690116,0.0,559.5749580282397,93688211.65580282,0.0,9214853.654033246,10812094.954065679 + 03/25 09:00:00,13843802.910159586,0.0,2799.6928518427655,23922697.176793539,0.0,24572943.077421994,28832253.210841814 + 03/25 10:00:00,0.0,0.0,2803.259567842677,10091734.444233638,0.0,27644560.962099744,32436284.862197039 + 03/25 11:00:00,0.0,30344269.142100827,5051.641638221754,18185909.89759832,30344269.142100827,27644560.962099744,32436284.862197039 + 03/25 12:00:00,0.0,14810687.362477897,5039.447133316979,18142009.67994112,14810687.362477897,27644560.962099744,32436284.862197039 + 03/25 13:00:00,0.0,12737451.455685724,5045.867222116819,18165121.99962055,12737451.455685724,27644560.962099744,32436284.862197039 + 03/25 14:00:00,0.0,41331085.62452277,5045.867222116819,18165121.99962055,41331085.62452277,27644560.962099744,32436284.862197039 + 03/25 15:00:00,0.0,71795208.16320813,5045.867222116819,18165121.99962055,71795208.16320813,27644560.962099744,32436284.862197039 + 03/25 16:00:00,0.0,87431363.06400126,5048.915283959974,18176095.022255906,87431363.06400126,27644560.962099744,32436284.862197039 + 03/25 17:00:00,0.0,71427092.94483169,3922.3972495419695,14120630.09835109,71427092.94483169,27644560.962099744,32436284.862197039 + 03/25 18:00:00,0.0,21593059.79147151,2799.6928518427655,10078894.266633956,21593059.79147151,27644560.962099744,28832253.210841814 + 03/25 19:00:00,72625838.31769867,0.0,1676.0668785984506,78659679.0806531,0.0,15358089.423388744,18020158.25677613 + 03/25 20:00:00,113801227.02663139,0.0,1116.31221374432,117819950.99611092,0.0,9214853.654033246,10812094.954065679 + 03/25 21:00:00,120966754.57200988,0.0,1115.370994589352,124982090.15253155,0.0,9214853.654033246,10812094.954065679 + 03/25 22:00:00,0.0,0.0,1114.1781116954017,4011041.2021034455,0.0,6143235.769355498,3604031.6513552267 + 03/25 23:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,3604031.6513552267 + 03/25 24:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 03/26 01:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 03/26 02:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/26 03:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/26 04:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/26 05:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/26 06:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/26 07:00:00,350602400.34746298,14830199.605906304,276.192036184235,351596691.6777262,14830199.605906304,6143235.769355498,1802015.8256776133 + 03/26 08:00:00,23354084.25479605,0.0,553.8544976157855,25347960.44621288,0.0,9214853.654033246,10812094.954065679 + 03/26 09:00:00,0.0,39470975.90808181,2779.5319920887907,10006315.171519649,39470975.90808181,24572943.077421994,28832253.210841814 + 03/26 10:00:00,0.0,63651530.367567438,2785.4452792385038,10027603.005258613,63651530.367567438,27644560.962099744,32436284.862197039 + 03/26 11:00:00,0.0,34378879.40028039,5019.169475652085,18069010.112347507,34378879.40028039,27644560.962099744,32436284.862197039 + 03/26 12:00:00,0.0,3688419.598665344,5019.169475652085,18069010.112347507,3688419.598665344,27644560.962099744,32436284.862197039 + 03/26 13:00:00,0.0,9312844.592182635,5028.200635795351,18101522.288863265,9312844.592182635,27644560.962099744,32436284.862197039 + 03/26 14:00:00,0.0,55147766.479531887,5031.956814710111,18115044.5329564,55147766.479531887,27644560.962099744,32436284.862197039 + 03/26 15:00:00,0.0,98895444.21009077,5036.174622254158,18130228.640114968,98895444.21009077,27644560.962099744,32436284.862197039 + 03/26 16:00:00,0.0,114702358.73373908,5039.447133316979,18142009.67994112,114702358.73373908,27644560.962099744,32436284.862197039 + 03/26 17:00:00,0.0,96188053.7474546,3917.024706197678,14101288.94231164,96188053.7474546,27644560.962099744,32436284.862197039 + 03/26 18:00:00,0.0,22753132.968562966,2795.5315637278397,10063913.629420223,22753132.968562966,27644560.962099744,28832253.210841814 + 03/26 19:00:00,59431723.65908697,0.0,1677.3189382367037,65470071.83673909,0.0,15358089.423388744,18020158.25677613 + 03/26 20:00:00,96881118.87169853,0.0,1117.3779190656338,100903679.3803348,0.0,9214853.654033246,10812094.954065679 + 03/26 21:00:00,103424315.8663769,0.0,1117.3779190656338,107446876.3750132,0.0,9214853.654033246,10812094.954065679 + 03/26 22:00:00,0.0,0.0,1117.377919065634,4022560.5086362815,0.0,6143235.769355498,3604031.6513552267 + 03/26 23:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,3604031.6513552267 + 03/26 24:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/27 01:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/27 02:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/27 03:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/27 04:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/27 05:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/27 06:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/27 07:00:00,282894595.01319018,12732800.042464117,278.54452792385049,283897355.31371608,12732800.042464117,6143235.769355498,1802015.8256776133 + 03/27 08:00:00,19927602.86688602,0.0,559.1063127455678,21940385.59277007,0.0,9214853.654033246,10812094.954065679 + 03/27 09:00:00,0.0,50681517.29970682,2799.6928518427655,10078894.266633956,50681517.29970682,24572943.077421994,28832253.210841814 + 03/27 10:00:00,0.0,56334160.33466919,2804.9529355333186,10097830.567919946,56334160.33466919,27644560.962099744,32436284.862197039 + 03/27 11:00:00,0.0,66851211.622405517,5053.667168500768,18193201.806602766,66851211.622405517,27644560.962099744,32436284.862197039 + 03/27 12:00:00,0.0,62375139.271750789,5058.871866350375,18211938.71886135,62375139.271750789,27644560.962099744,32436284.862197039 + 03/27 13:00:00,0.0,69283333.63505993,5060.849592564586,18219058.53323251,69283333.63505993,27644560.962099744,32436284.862197039 + 03/27 14:00:00,0.0,100276821.25165025,5061.732242735808,18222236.073848908,100276821.25165025,27644560.962099744,32436284.862197039 + 03/27 15:00:00,0.0,140448567.09023426,5061.751709148671,18222306.152935216,140448567.09023426,27644560.962099744,32436284.862197039 + 03/27 16:00:00,0.0,156218408.82233746,5061.751709148671,18222306.152935216,156218408.82233746,27644560.962099744,32436284.862197039 + 03/27 17:00:00,0.0,143333842.8106375,3936.9028554611838,14172850.27966026,143333842.8106375,27644560.962099744,32436284.862197039 + 03/27 18:00:00,0.0,75487163.73861279,2811.059149396714,10119812.93782817,75487163.73861279,27644560.962099744,28832253.210841814 + 03/27 19:00:00,8397021.401349938,0.0,1686.2906221167917,14467667.640970389,0.0,15358089.423388744,18020158.25677613 + 03/27 20:00:00,54829571.17522809,0.0,1121.9811742133275,58868703.40239606,0.0,9214853.654033246,10812094.954065679 + 03/27 21:00:00,76269081.95977538,0.0,1118.2126254911357,80294647.41154348,0.0,9214853.654033246,10812094.954065679 + 03/27 22:00:00,0.0,0.0,1117.377919065634,4022560.508636282,0.0,6143235.769355498,3604031.6513552267 + 03/27 23:00:00,0.0,0.0,279.3444797664084,1005640.1271590702,0.0,6143235.769355498,3604031.6513552267 + 03/27 24:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/28 01:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/28 02:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/28 03:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/28 04:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/28 05:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/28 06:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 03/28 07:00:00,332904913.20718666,12643813.280965787,278.842748647338,333908747.1023171,12643813.280965787,6143235.769355498,1802015.8256776133 + 03/28 08:00:00,82473918.47322275,0.0,558.15610687216,84483280.45796252,0.0,9214853.654033246,10812094.954065679 + 03/28 09:00:00,3515793.7278379856,0.0,2797.874790141198,13588142.972346299,0.0,24572943.077421994,28832253.210841814 + 03/28 10:00:00,0.0,45823009.35871495,2804.9529355333186,10097830.567919946,45823009.35871495,27644560.962099744,32436284.862197039 + 03/28 11:00:00,0.0,42106072.97090493,5048.915283959974,18176095.022255906,42106072.97090493,27644560.962099744,32436284.862197039 + 03/28 12:00:00,0.0,25136567.55244416,5055.801360046721,18200884.896168196,25136567.55244416,27644560.962099744,32436284.862197039 + 03/28 13:00:00,0.0,37327206.52063233,5058.871866350375,18211938.71886135,37327206.52063233,27644560.962099744,32436284.862197039 + 03/28 14:00:00,0.0,71043691.91174598,5060.849592564586,18219058.53323251,71043691.91174598,27644560.962099744,32436284.862197039 + 03/28 15:00:00,0.0,102117432.56709332,5061.732242735808,18222236.073848908,102117432.56709332,27644560.962099744,32436284.862197039 + 03/28 16:00:00,0.0,144141976.12608958,5057.805852315729,18208101.068336626,144141976.12608958,27644560.962099744,32436284.862197039 + 03/28 17:00:00,0.0,119221519.07863283,3936.736838370363,14172252.618133307,119221519.07863283,27644560.962099744,32436284.862197039 + 03/28 18:00:00,0.0,24037206.319094059,2811.5831069803255,10121699.185129172,24037206.319094059,27644560.962099744,28832253.210841814 + 03/28 19:00:00,10352715.96943412,0.0,1687.2505697162235,16426818.020412524,0.0,15358089.423388744,18020158.25677613 + 03/28 20:00:00,45451168.187760759,0.0,1124.7525870105513,49500277.500998739,0.0,9214853.654033246,10812094.954065679 + 03/28 21:00:00,56661621.661406878,0.0,1124.193748077861,60708719.154487188,0.0,9214853.654033246,10812094.954065679 + 03/28 22:00:00,0.0,0.0,1124.1937480778616,4047097.4930803005,0.0,6143235.769355498,3604031.6513552267 + 03/28 23:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,3604031.6513552267 + 03/28 24:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/29 01:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 03/29 02:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 03/29 03:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/29 04:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/29 05:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/29 06:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/29 07:00:00,292570225.3963163,10735445.971439036,279.78747901411989,293577460.3207671,10735445.971439036,6143235.769355498,1802015.8256776133 + 03/29 08:00:00,114582166.52333844,0.0,559.1063127455678,116594949.24922249,0.0,9214853.654033246,10812094.954065679 + 03/29 09:00:00,50962049.593267198,0.0,2797.8747901411986,61034398.83777552,0.0,24572943.077421994,28832253.210841814 + 03/29 10:00:00,30557663.21256417,0.0,2797.8747901411986,40630012.45707248,0.0,27644560.962099744,32436284.862197039 + 03/29 11:00:00,27290963.89145305,0.0,5036.174622254158,45421192.53156802,0.0,27644560.962099744,32436284.862197039 + 03/29 12:00:00,28963301.215739259,0.0,5036.174622254158,47093529.85585423,0.0,27644560.962099744,32436284.862197039 + 03/29 13:00:00,29967175.923616858,0.0,5036.174622254158,48097404.56373182,0.0,27644560.962099744,32436284.862197039 + 03/29 14:00:00,33175844.050154024,0.0,5036.174622254158,51306072.69026899,0.0,27644560.962099744,32436284.862197039 + 03/29 15:00:00,40491262.78228392,0.0,5036.174622254158,58621491.42239889,0.0,27644560.962099744,32436284.862197039 + 03/29 16:00:00,51947726.51302252,0.0,5036.174622254158,70077955.15313749,0.0,27644560.962099744,32436284.862197039 + 03/29 17:00:00,65134207.58986877,0.0,3910.8227167297179,79213169.37009576,0.0,27644560.962099744,32436284.862197039 + 03/29 18:00:00,78982475.30198542,0.0,2793.444797664084,89038876.57357612,0.0,27644560.962099744,28832253.210841814 + 03/29 19:00:00,108480226.32118419,0.0,1676.0668785984506,114514067.08413863,0.0,15358089.423388744,18020158.25677613 + 03/29 20:00:00,122683352.79575801,0.0,1117.3779190656338,126705913.30439429,0.0,9214853.654033246,10812094.954065679 + 03/29 21:00:00,123214504.45780713,0.0,1117.3779190656338,127237064.9664434,0.0,9214853.654033246,10812094.954065679 + 03/29 22:00:00,0.0,0.0,1116.31221374432,4018723.9694795517,0.0,6143235.769355498,3604031.6513552267 + 03/29 23:00:00,0.0,0.0,278.842748647338,1003833.8951304167,0.0,6143235.769355498,3604031.6513552267 + 03/29 24:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/30 01:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/30 02:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/30 03:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 03/30 04:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/30 05:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/30 06:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 03/30 07:00:00,0.0,0.0,277.95319920887916,1000631.5171519648,0.0,6143235.769355498,1802015.8256776133 + 03/30 08:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/30 09:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/30 10:00:00,0.0,0.0,279.55315637278388,1006391.362942022,0.0,6143235.769355498,1802015.8256776133 + 03/30 11:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/30 12:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/30 13:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/30 14:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 03/30 15:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/30 16:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/30 17:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/30 18:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 03/30 19:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 03/30 20:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 03/30 21:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/30 22:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 03/30 23:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/30 24:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/31 01:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 03/31 02:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/31 03:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/31 04:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 03/31 05:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/31 06:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 03/31 07:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 03/31 08:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 03/31 09:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 03/31 10:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 03/31 11:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/31 12:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 03/31 13:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/31 14:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 03/31 15:00:00,0.0,0.0,280.1712321101407,1008616.4355965066,0.0,6143235.769355498,1802015.8256776133 + 03/31 16:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 03/31 17:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/31 18:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 03/31 19:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 03/31 20:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 03/31 21:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 03/31 22:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/31 23:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 03/31 24:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 04/01 01:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 04/01 02:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 04/01 03:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 04/01 04:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 04/01 05:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 04/01 06:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 04/01 07:00:00,337445387.96951636,15703563.35696465,279.3444797664084,338451028.0966754,15703563.35696465,6143235.769355498,1802015.8256776133 + 04/01 08:00:00,145116910.190842,0.0,557.8766312398956,147125266.06330563,0.0,9214853.654033246,10812094.954065679 + 04/01 09:00:00,91508779.62362224,0.0,2788.4274864733799,101547118.5749264,0.0,24572943.077421994,28832253.210841814 + 04/01 10:00:00,53002538.87505901,0.0,2797.8747901411986,63074888.11956732,0.0,27644560.962099744,32436284.862197039 + 04/01 11:00:00,35304191.07313251,0.0,5038.810297854163,53443908.1454075,0.0,27644560.962099744,32436284.862197039 + 04/01 12:00:00,42128597.11061025,0.0,5043.082177982533,60283692.95134737,0.0,27644560.962099744,32436284.862197039 + 04/01 13:00:00,42351226.24706225,0.0,5046.918925309814,60520134.378177579,0.0,27644560.962099744,32436284.862197039 + 04/01 14:00:00,39076222.902192119,0.0,5051.641638221755,57262132.79979044,0.0,27644560.962099744,32436284.862197039 + 04/01 15:00:00,7858851.800798992,0.0,5052.478766426566,26047775.359934629,0.0,27644560.962099744,32436284.862197039 + 04/01 16:00:00,2474904.797436594,0.0,5055.125938333654,20673358.17543775,0.0,27644560.962099744,32436284.862197039 + 04/01 17:00:00,13561412.180933545,0.0,3931.2113027057569,27713772.870674269,0.0,27644560.962099744,32436284.862197039 + 04/01 18:00:00,35489151.24151067,0.0,2806.932648014759,45594108.7743638,0.0,27644560.962099744,28832253.210841814 + 04/01 19:00:00,82087246.72931192,0.0,1682.6449863076239,88144768.68001937,0.0,15358089.423388744,18020158.25677613 + 04/01 20:00:00,98563324.2727431,0.0,1122.3930353725053,102603939.20008414,0.0,9214853.654033246,10812094.954065679 + 04/01 21:00:00,102357760.83027685,0.0,1121.4216733155693,106394878.85421293,0.0,9214853.654033246,10812094.954065679 + 04/01 22:00:00,0.0,0.0,1122.191080621249,4039887.890236497,0.0,6143235.769355498,3604031.6513552267 + 04/01 23:00:00,0.0,0.0,280.412855737955,1009486.280656638,0.0,6143235.769355498,3604031.6513552267 + 04/01 24:00:00,0.0,0.0,280.32595678426767,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/02 01:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/02 02:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/02 03:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 04/02 04:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 04/02 05:00:00,0.0,0.0,280.0385700581902,1008138.8522094848,0.0,6143235.769355498,1802015.8256776133 + 04/02 06:00:00,0.0,0.0,280.296000388249,1009065.6013976964,0.0,6143235.769355498,1802015.8256776133 + 04/02 07:00:00,277011663.8550151,11967393.474763919,280.62275711068,278021905.7806136,11967393.474763919,6143235.769355498,1802015.8256776133 + 04/02 08:00:00,83671542.92023462,0.0,561.5185742778631,85693009.78763494,0.0,9214853.654033246,10812094.954065679 + 04/02 09:00:00,47486690.226724419,0.0,2805.982588431264,57588227.54507697,0.0,24572943.077421994,28832253.210841814 + 04/02 10:00:00,51247144.61356756,0.0,2804.12855737955,61342007.42013393,0.0,27644560.962099744,32436284.862197039 + 04/02 11:00:00,58843690.29647787,0.0,5045.328006988482,77006871.1216364,0.0,27644560.962099744,32436284.862197039 + 04/02 12:00:00,61349391.76056109,0.0,5041.304541348637,79498088.10941619,0.0,27644560.962099744,32436284.862197039 + 04/02 13:00:00,64756461.16702499,0.0,5038.16462277873,82893853.80902842,0.0,27644560.962099744,32436284.862197039 + 04/02 14:00:00,63771120.975651,0.0,5040.075123056625,81915391.41865486,0.0,27644560.962099744,32436284.862197039 + 04/02 15:00:00,62616072.933107789,0.0,5040.075123056625,80760343.37611163,0.0,27644560.962099744,32436284.862197039 + 04/02 16:00:00,70587952.59483329,0.0,5040.075123056625,88732223.03783714,0.0,27644560.962099744,32436284.862197039 + 04/02 17:00:00,81443290.47379396,0.0,3920.5399808146628,95557234.40472675,0.0,27644560.962099744,32436284.862197039 + 04/02 18:00:00,91987056.6571219,0.0,2800.724745193687,102069665.73981917,0.0,27644560.962099744,28832253.210841814 + 04/02 19:00:00,116981539.4630265,0.0,1680.8328351814478,123032537.6696797,0.0,15358089.423388744,18020158.25677613 + 04/02 20:00:00,127778156.26359454,0.0,1121.4216733155693,131815274.28753057,0.0,9214853.654033246,10812094.954065679 + 04/02 21:00:00,125912312.29749495,0.0,1121.4216733155693,129949430.32143098,0.0,9214853.654033246,10812094.954065679 + 04/02 22:00:00,0.0,0.0,1121.6514229518198,4037945.1226265525,0.0,6143235.769355498,3604031.6513552267 + 04/02 23:00:00,0.0,0.0,280.54777015531229,1009971.9725591242,0.0,6143235.769355498,3604031.6513552267 + 04/02 24:00:00,0.0,0.0,280.54777015531229,1009971.9725591242,0.0,6143235.769355498,1802015.8256776133 + 04/03 01:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 04/03 02:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 04/03 03:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 04/03 04:00:00,0.0,0.0,280.8958649185796,1011225.1137068865,0.0,6143235.769355498,1802015.8256776133 + 04/03 05:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 04/03 06:00:00,0.0,0.0,280.91337618146386,1011288.1542532698,0.0,6143235.769355498,1802015.8256776133 + 04/03 07:00:00,211708244.8006498,7168750.042599114,280.73777842562199,212718900.80298204,7168750.042599114,6143235.769355498,1802015.8256776133 + 04/03 08:00:00,88983952.01292885,0.0,561.0955403106245,91003895.95804709,0.0,9214853.654033246,10812094.954065679 + 04/03 09:00:00,42672213.22648431,0.0,2804.9529355333186,52770043.79440427,0.0,24572943.077421994,28832253.210841814 + 04/03 10:00:00,1189840.0160138612,0.0,2805.982588431264,11291377.334366411,0.0,27644560.962099744,32436284.862197039 + 04/03 11:00:00,0.0,0.0,5048.42958739715,18174346.51462974,0.0,27644560.962099744,32436284.862197039 + 04/03 12:00:00,7385891.65548557,0.0,5050.768659176276,25568658.828520165,0.0,27644560.962099744,32436284.862197039 + 04/03 13:00:00,25314040.237030098,0.0,5051.641638221755,43499950.134628418,0.0,27644560.962099744,32436284.862197039 + 04/03 14:00:00,23166231.70398535,0.0,5052.883876369465,41356613.65891543,0.0,27644560.962099744,32436284.862197039 + 04/03 15:00:00,23022074.39668589,0.0,5052.478766426566,41210997.95582153,0.0,27644560.962099744,32436284.862197039 + 04/03 16:00:00,27661212.76564835,0.0,5053.667168500768,45854414.57225111,0.0,27644560.962099744,32436284.862197039 + 04/03 17:00:00,29375195.39933183,0.0,3930.6300199450408,43525463.47113398,0.0,27644560.962099744,32436284.862197039 + 04/03 18:00:00,38536889.38258204,0.0,2805.477701553122,48636609.10817328,0.0,27644560.962099744,28832253.210841814 + 04/03 19:00:00,87519440.98540572,0.0,1680.2314203491415,93568274.09866265,0.0,15358089.423388744,18020158.25677613 + 04/03 20:00:00,113610711.97137977,0.0,1117.8845810922767,117635096.46331196,0.0,9214853.654033246,10812094.954065679 + 04/03 21:00:00,119114309.33761293,0.0,1117.2051460725475,123136247.8634741,0.0,9214853.654033246,10812094.954065679 + 04/03 22:00:00,0.0,0.0,1117.377919065634,4022560.5086362815,0.0,6143235.769355498,3604031.6513552267 + 04/03 23:00:00,0.0,0.0,279.12366754434449,1004845.20315964,0.0,6143235.769355498,3604031.6513552267 + 04/03 24:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 04/04 01:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 04/04 02:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 04/04 03:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 04/04 04:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 04/04 05:00:00,0.0,0.0,276.4658044910743,995276.8961678676,0.0,6143235.769355498,1802015.8256776133 + 04/04 06:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 04/04 07:00:00,301695490.4113485,15088852.43268659,278.28286811940168,302697308.7365784,15088852.43268659,6143235.769355498,1802015.8256776133 + 04/04 08:00:00,19582597.99547748,0.0,558.6889595328169,21593878.249795624,0.0,9214853.654033246,10812094.954065679 + 04/04 09:00:00,0.0,65517675.8216224,2798.2482103645836,10073693.5573125,65517675.8216224,24572943.077421994,28832253.210841814 + 04/04 10:00:00,0.0,59169765.19652914,2799.6928518427655,10078894.266633956,59169765.19652914,27644560.962099744,32436284.862197039 + 04/04 11:00:00,0.0,45242255.76266913,5044.779889708922,18161207.60295212,45242255.76266913,27644560.962099744,32436284.862197039 + 04/04 12:00:00,0.0,33976525.4320181,5048.915283959974,18176095.022255906,33976525.4320181,27644560.962099744,32436284.862197039 + 04/04 13:00:00,0.0,22438265.191990936,5052.478766426566,18188923.55913564,22438265.191990936,27644560.962099744,32436284.862197039 + 04/04 14:00:00,0.0,55200365.70801617,5052.0646857196029,18187432.868590569,55200365.70801617,27644560.962099744,32436284.862197039 + 04/04 15:00:00,0.0,35274026.31267556,5052.478766426566,18188923.55913564,35274026.31267556,27644560.962099744,32436284.862197039 + 04/04 16:00:00,0.0,6521966.890234476,5052.478766426566,18188923.55913564,6521966.890234476,27644560.962099744,32436284.862197039 + 04/04 17:00:00,0.0,0.0,3928.7185995495194,14143386.958378269,0.0,27644560.962099744,32436284.862197039 + 04/04 18:00:00,8311278.147610519,0.0,2803.8438473943408,18405115.998230149,0.0,27644560.962099744,28832253.210841814 + 04/04 19:00:00,68969946.01490164,0.0,1682.6449863076239,75027467.96560908,0.0,15358089.423388744,18020158.25677613 + 04/04 20:00:00,88491767.43881966,0.0,1121.9811742133275,92530899.66598764,0.0,9214853.654033246,10812094.954065679 + 04/04 21:00:00,110682777.04196689,0.0,1121.65142295182,114720722.16459346,0.0,9214853.654033246,10812094.954065679 + 04/04 22:00:00,0.0,0.0,1121.1840015529963,4036262.4055907868,0.0,6143235.769355498,3604031.6513552267 + 04/04 23:00:00,0.0,0.0,279.429409551333,1005945.8743847988,0.0,6143235.769355498,3604031.6513552267 + 04/04 24:00:00,0.0,0.0,278.8907726739134,1004006.7816260881,0.0,6143235.769355498,1802015.8256776133 + 04/05 01:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 04/05 02:00:00,0.0,0.0,278.8907726739134,1004006.7816260882,0.0,6143235.769355498,1802015.8256776133 + 04/05 03:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 04/05 04:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 04/05 05:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 04/05 06:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 04/05 07:00:00,347223549.6210089,14684227.17186112,278.9383156199478,348227727.55724069,14684227.17186112,6143235.769355498,1802015.8256776133 + 04/05 08:00:00,130596171.06620187,0.0,557.7815453478268,132604184.62945405,0.0,9214853.654033246,10812094.954065679 + 04/05 09:00:00,98380558.97645253,0.0,2790.7805343607999,108427368.9001514,0.0,24572943.077421994,28832253.210841814 + 04/05 10:00:00,84429154.01508768,0.0,2791.6879833739938,94479230.75523407,0.0,27644560.962099744,32436284.862197039 + 04/05 11:00:00,57641868.73311632,0.0,5028.969376453265,75746158.48834807,0.0,27644560.962099744,32436284.862197039 + 04/05 12:00:00,61816147.79084905,0.0,5033.397919180372,79936380.29989839,0.0,27644560.962099744,32436284.862197039 + 04/05 13:00:00,58715900.31762346,0.0,5036.8467786562509,76848548.72078598,0.0,27644560.962099744,32436284.862197039 + 04/05 14:00:00,25650673.448158415,0.0,5036.174622254158,43780902.08827339,0.0,27644560.962099744,32436284.862197039 + 04/05 15:00:00,21194771.276415215,0.0,5036.8467786562509,39327419.67957772,0.0,27644560.962099744,32436284.862197039 + 04/05 16:00:00,46454597.26635011,0.0,5038.16462277873,64591989.90835354,0.0,27644560.962099744,32436284.862197039 + 04/05 17:00:00,69604022.36701963,0.0,3920.5399808146628,83717966.29795242,0.0,27644560.962099744,32436284.862197039 + 04/05 18:00:00,72707945.99928996,0.0,2800.385700581902,82789334.5213848,0.0,27644560.962099744,28832253.210841814 + 04/05 19:00:00,103683311.53490986,0.0,1679.8157111056597,109730648.09489024,0.0,15358089.423388744,18020158.25677613 + 04/05 20:00:00,119383923.2170971,0.0,1119.5921383952733,123414454.91532009,0.0,9214853.654033246,10812094.954065679 + 04/05 21:00:00,120493930.35050652,0.0,1119.4466920635667,124523938.44193536,0.0,9214853.654033246,10812094.954065679 + 04/05 22:00:00,0.0,0.0,1119.2992841458334,4029477.422925,0.0,6143235.769355498,3604031.6513552267 + 04/05 23:00:00,0.0,0.0,279.67251629619826,1006821.0586663135,0.0,6143235.769355498,3604031.6513552267 + 04/05 24:00:00,0.0,0.0,279.3871875807369,1005793.8752906527,0.0,6143235.769355498,1802015.8256776133 + 04/06 01:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 04/06 02:00:00,0.0,0.0,279.30128651813689,1005484.6314652927,0.0,6143235.769355498,1802015.8256776133 + 04/06 03:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 04/06 04:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 04/06 05:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 04/06 06:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 04/06 07:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 04/06 08:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 04/06 09:00:00,0.0,0.0,277.3660442256075,998517.7592121869,0.0,6143235.769355498,1802015.8256776133 + 04/06 10:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 04/06 11:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 04/06 12:00:00,0.0,0.0,278.64585102076117,1003125.06367474,0.0,6143235.769355498,1802015.8256776133 + 04/06 13:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 04/06 14:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 04/06 15:00:00,0.0,0.0,277.95319920887916,1000631.5171519648,0.0,6143235.769355498,1802015.8256776133 + 04/06 16:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 04/06 17:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 04/06 18:00:00,0.0,0.0,277.78198444635839,1000015.14400689,0.0,6143235.769355498,1802015.8256776133 + 04/06 19:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 04/06 20:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 04/06 21:00:00,0.0,0.0,278.3361526068599,1002010.1493846957,0.0,6143235.769355498,1802015.8256776133 + 04/06 22:00:00,0.0,0.0,278.2828681194017,1001818.3252298462,0.0,6143235.769355498,1802015.8256776133 + 04/06 23:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 04/06 24:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 04/07 01:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 04/07 02:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 04/07 03:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 04/07 04:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 04/07 05:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 04/07 06:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 04/07 07:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 04/07 08:00:00,0.0,0.0,276.4658044910743,995276.8961678676,0.0,6143235.769355498,1802015.8256776133 + 04/07 09:00:00,0.0,0.0,276.4658044910743,995276.8961678676,0.0,6143235.769355498,1802015.8256776133 + 04/07 10:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 04/07 11:00:00,0.0,0.0,277.24299744802218,998074.7908128798,0.0,6143235.769355498,1802015.8256776133 + 04/07 12:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 04/07 13:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 04/07 14:00:00,0.0,0.0,278.64585102076117,1003125.0636747403,0.0,6143235.769355498,1802015.8256776133 + 04/07 15:00:00,0.0,0.0,278.79424400102109,1003659.2784036758,0.0,6143235.769355498,1802015.8256776133 + 04/07 16:00:00,0.0,0.0,278.8907726739134,1004006.7816260881,0.0,6143235.769355498,1802015.8256776133 + 04/07 17:00:00,0.0,0.0,278.4931494938053,1002575.3381776989,0.0,6143235.769355498,1802015.8256776133 + 04/07 18:00:00,0.0,0.0,278.22910838435765,1001624.7901836872,0.0,6143235.769355498,1802015.8256776133 + 04/07 19:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 04/07 20:00:00,0.0,0.0,277.6065357372794,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 04/07 21:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 04/07 22:00:00,0.0,0.0,277.05493926158837,997397.781341718,0.0,6143235.769355498,1802015.8256776133 + 04/07 23:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 04/07 24:00:00,0.0,0.0,276.3980475023251,995032.9710083703,0.0,6143235.769355498,1802015.8256776133 + 04/08 01:00:00,0.0,0.0,276.0524182789608,993788.7058042588,0.0,6143235.769355498,1802015.8256776133 + 04/08 02:00:00,0.0,0.0,275.7677417576176,992763.8703274235,0.0,6143235.769355498,1802015.8256776133 + 04/08 03:00:00,0.0,0.0,275.4758474910033,991713.050967612,0.0,6143235.769355498,1802015.8256776133 + 04/08 04:00:00,0.0,0.0,275.1008980765597,990363.2330756149,0.0,6143235.769355498,1802015.8256776133 + 04/08 05:00:00,0.0,0.0,274.7929294036084,989254.5458529902,0.0,6143235.769355498,1802015.8256776133 + 04/08 06:00:00,0.0,0.0,274.47789263962616,988120.4135026541,0.0,6143235.769355498,1802015.8256776133 + 04/08 07:00:00,361180044.17658928,16316353.906305522,275.17678029103947,362170680.58563706,16316353.906305522,6143235.769355498,1802015.8256776133 + 04/08 08:00:00,32755860.43277759,0.0,551.0989905789937,34739816.798861969,0.0,9214853.654033246,10812094.954065679 + 04/08 09:00:00,0.0,5920680.744460759,2765.999443852371,9957597.997868535,5920680.744460759,24572943.077421994,28832253.210841814 + 04/08 10:00:00,0.0,21501736.06449472,2768.627099133741,9967057.556881467,21501736.06449472,27644560.962099744,32436284.862197039 + 04/08 11:00:00,0.0,1579046.5709758807,5002.138781641752,18007699.613910308,1579046.5709758807,27644560.962099744,32436284.862197039 + 04/08 12:00:00,4311001.7837524809,0.0,5011.001304038242,22350606.478290149,0.0,27644560.962099744,32436284.862197039 + 04/08 13:00:00,10315914.532130449,0.0,5026.636948506647,28411807.54675438,0.0,27644560.962099744,32436284.862197039 + 04/08 14:00:00,0.0,12922804.024321897,5032.681757349319,18117654.32645755,12922804.024321897,27644560.962099744,32436284.862197039 + 04/08 15:00:00,0.0,63859697.21294634,5036.8467786562509,18132648.4031625,63859697.21294634,27644560.962099744,32436284.862197039 + 04/08 16:00:00,0.0,76616546.53272146,5039.447133316979,18142009.67994112,76616546.53272146,27644560.962099744,32436284.862197039 + 04/08 17:00:00,0.0,56699209.60002808,3916.4950623005167,14099382.22428186,56699209.60002808,27644560.962099744,32436284.862197039 + 04/08 18:00:00,0.0,4021049.2324932587,2794.7114527306919,10060961.22983049,4021049.2324932587,27644560.962099744,28832253.210841814 + 04/08 19:00:00,87876670.89882452,0.0,1672.7654640061265,93898626.56924656,0.0,15358089.423388744,18020158.25677613 + 04/08 20:00:00,124738205.65251033,0.0,1113.5558453418315,128747006.69574091,0.0,9214853.654033246,10812094.954065679 + 04/08 21:00:00,133022275.1029809,0.0,1111.1279377854335,137022335.67900843,0.0,9214853.654033246,10812094.954065679 + 04/08 22:00:00,0.0,0.0,1110.895884964594,3999225.185872539,0.0,6143235.769355498,3604031.6513552267 + 04/08 23:00:00,0.0,0.0,277.6654881510703,999595.7573438529,0.0,6143235.769355498,3604031.6513552267 + 04/08 24:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 04/09 01:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 04/09 02:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 04/09 03:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 04/09 04:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 04/09 05:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 04/09 06:00:00,0.0,0.0,278.2828681194017,1001818.3252298462,0.0,6143235.769355498,1802015.8256776133 + 04/09 07:00:00,361388673.62016806,14256560.32059392,278.64585102076117,362391798.6838427,14256560.32059392,6143235.769355498,1802015.8256776133 + 04/09 08:00:00,55360429.00792205,0.0,558.9422905461383,57372621.25388816,0.0,9214853.654033246,10812094.954065679 + 04/09 09:00:00,0.0,13911208.993315813,2798.616730158916,10075020.228572099,13911208.993315813,24572943.077421994,28832253.210841814 + 04/09 10:00:00,0.0,38549250.37792811,2802.0316498992426,10087313.939637274,38549250.37792811,27644560.962099744,32436284.862197039 + 04/09 11:00:00,0.0,32498814.420450666,5047.934958922871,18172565.852122338,32498814.420450666,27644560.962099744,32436284.862197039 + 04/09 12:00:00,0.0,26322427.64875818,5049.3920439509979,18177811.35822359,26322427.64875818,27644560.962099744,32436284.862197039 + 04/09 13:00:00,0.0,10828319.878618468,5049.859862795621,18179495.506064238,10828319.878618468,27644560.962099744,32436284.862197039 + 04/09 14:00:00,0.0,0.0,5049.859862795621,18179495.506064238,0.0,27644560.962099744,32436284.862197039 + 04/09 15:00:00,11340638.974476546,0.0,5046.397529920062,29507670.082188768,0.0,27644560.962099744,32436284.862197039 + 04/09 16:00:00,29668961.353629464,0.0,5039.447133316979,47810971.03357059,0.0,27644560.962099744,32436284.862197039 + 04/09 17:00:00,50521737.75660493,0.0,3912.596033822968,64607083.47836762,0.0,27644560.962099744,32436284.862197039 + 04/09 18:00:00,75389929.24511191,0.0,2789.383156199478,85431708.60743004,0.0,27644560.962099744,28832253.210841814 + 04/09 19:00:00,112772383.9779542,0.0,1671.8751061245669,118791134.36000264,0.0,15358089.423388744,18020158.25677613 + 04/09 20:00:00,132434153.04584296,0.0,1114.5834040830446,136446653.30054195,0.0,9214853.654033246,10812094.954065679 + 04/09 21:00:00,135471792.54162226,0.0,1114.5834040830446,139484292.7963212,0.0,9214853.654033246,10812094.954065679 + 04/09 22:00:00,0.0,0.0,1114.5834040830446,4012500.2546989608,0.0,6143235.769355498,3604031.6513552267 + 04/09 23:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,3604031.6513552267 + 04/09 24:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 04/10 01:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 04/10 02:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 04/10 03:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 04/10 04:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 04/10 05:00:00,0.0,0.0,278.4931494938053,1002575.338177699,0.0,6143235.769355498,1802015.8256776133 + 04/10 06:00:00,0.0,0.0,278.4931494938053,1002575.338177699,0.0,6143235.769355498,1802015.8256776133 + 04/10 07:00:00,360538730.0469064,14433637.417507537,278.4412937984862,361541118.70458099,14433637.417507537,6143235.769355498,1802015.8256776133 + 04/10 08:00:00,125303041.31668057,0.0,557.4905184007469,127310007.18292326,0.0,9214853.654033246,10812094.954065679 + 04/10 09:00:00,52596225.58703911,0.0,2791.2366754434444,62644677.61863551,0.0,24572943.077421994,28832253.210841814 + 04/10 10:00:00,39805574.03626975,0.0,2795.5315637278397,49869487.66568997,0.0,27644560.962099744,32436284.862197039 + 04/10 11:00:00,11608693.512316272,0.0,5036.8467786562509,29741341.915478775,0.0,27644560.962099744,32436284.862197039 + 04/10 12:00:00,7221611.8726512589,0.0,5046.397529920062,25388642.98036349,0.0,27644560.962099744,32436284.862197039 + 04/10 13:00:00,1594992.305286345,0.0,5052.478766426566,19783915.864421984,0.0,27644560.962099744,32436284.862197039 + 04/10 14:00:00,0.0,0.0,5056.125568534433,18202052.046723959,0.0,27644560.962099744,32436284.862197039 + 04/10 15:00:00,0.0,41277088.496212568,5058.871866350375,18211938.71886135,41277088.496212568,27644560.962099744,32436284.862197039 + 04/10 16:00:00,0.0,96026897.29540925,5060.418741752001,18217507.4703072,96026897.29540925,27644560.962099744,32436284.862197039 + 04/10 17:00:00,0.0,104193653.75295499,3935.335930525701,14167209.349892524,104193653.75295499,27644560.962099744,32436284.862197039 + 04/10 18:00:00,0.0,60162737.106332879,2809.934219866693,10115763.191520095,60162737.106332879,27644560.962099744,28832253.210841814 + 04/10 19:00:00,41363862.5035235,0.0,1683.130681316999,47423132.95626469,0.0,15358089.423388744,18020158.25677613 + 04/10 20:00:00,97827459.64764762,0.0,1120.0166940125833,101859519.74609292,0.0,9214853.654033246,10812094.954065679 + 04/10 21:00:00,108750690.48005127,0.0,1119.1499160564795,112779630.17785459,0.0,9214853.654033246,10812094.954065679 + 04/10 22:00:00,0.0,0.0,1117.8845810922767,4024384.4919321967,0.0,6143235.769355498,3604031.6513552267 + 04/10 23:00:00,0.0,0.0,279.3871875807369,1005793.8752906529,0.0,6143235.769355498,3604031.6513552267 + 04/10 24:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 04/11 01:00:00,0.0,0.0,278.3361526068599,1002010.1493846956,0.0,6143235.769355498,1802015.8256776133 + 04/11 02:00:00,0.0,0.0,278.06498287482517,1001033.9383493705,0.0,6143235.769355498,1802015.8256776133 + 04/11 03:00:00,0.0,0.0,277.4268682327064,998736.725637743,0.0,6143235.769355498,1802015.8256776133 + 04/11 04:00:00,0.0,0.0,276.4658044910743,995276.8961678676,0.0,6143235.769355498,1802015.8256776133 + 04/11 05:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 04/11 06:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 04/11 07:00:00,265849247.5099973,14729186.886398962,278.4412937984862,266851636.16767187,14729186.886398962,6143235.769355498,1802015.8256776133 + 04/11 08:00:00,18259955.72974642,0.0,557.7815453478268,20267969.2929986,0.0,9214853.654033246,10812094.954065679 + 04/11 09:00:00,0.0,40505802.65773144,2793.444797664084,10056401.271590703,40505802.65773144,24572943.077421994,28832253.210841814 + 04/11 10:00:00,0.0,46029210.38940151,2799.3390543634238,10077620.595708326,46029210.38940151,27644560.962099744,32436284.862197039 + 04/11 11:00:00,0.0,21472216.970092156,5044.2228755374239,18159202.351934725,21472216.970092156,27644560.962099744,32436284.862197039 + 04/11 12:00:00,0.0,1143029.5015138572,5050.318736005038,18181147.449618136,1143029.5015138572,27644560.962099744,32436284.862197039 + 04/11 13:00:00,0.0,6516449.651108727,5053.667168500768,18193201.806602766,6516449.651108727,27644560.962099744,32436284.862197039 + 04/11 14:00:00,0.0,46137374.39308221,5057.0441474515259,18205358.93082549,46137374.39308221,27644560.962099744,32436284.862197039 + 04/11 15:00:00,0.0,92710418.30041611,5059.717624961616,18214983.449861818,92710418.30041611,27644560.962099744,32436284.862197039 + 04/11 16:00:00,0.0,117913921.65372895,5060.086270832332,18216310.574996398,117913921.65372895,27644560.962099744,32436284.862197039 + 04/11 17:00:00,0.0,116593893.03035677,3936.216349772455,14170378.859180838,116593893.03035677,27644560.962099744,32436284.862197039 + 04/11 18:00:00,0.0,68877555.06832636,2809.4689708064026,10114088.29490305,68877555.06832636,27644560.962099744,28832253.210841814 + 04/11 19:00:00,36210714.09262833,0.0,1683.2866209318736,42270545.927983079,0.0,15358089.423388744,18020158.25677613 + 04/11 20:00:00,87502222.29396704,0.0,1121.0621977130939,91538046.20573417,0.0,9214853.654033246,10812094.954065679 + 04/11 21:00:00,100054106.06513033,0.0,1118.998589228719,104082500.98635373,0.0,9214853.654033246,10812094.954065679 + 04/11 22:00:00,0.0,0.0,1118.6900651847928,4027284.234665254,0.0,6143235.769355498,3604031.6513552267 + 04/11 23:00:00,0.0,0.0,279.2134453822064,1005168.4033759432,0.0,6143235.769355498,3604031.6513552267 + 04/11 24:00:00,0.0,0.0,278.2291083843576,1001624.7901836874,0.0,6143235.769355498,1802015.8256776133 + 04/12 01:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 04/12 02:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 04/12 03:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 04/12 04:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 04/12 05:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 04/12 06:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 04/12 07:00:00,248004839.41246624,14194842.018820854,279.3444797664084,249010479.5396253,14194842.018820854,6143235.769355498,1802015.8256776133 + 04/12 08:00:00,12453684.440248479,16896427.090684859,559.8678108726848,14469208.559390147,16896427.090684859,9214853.654033246,10812094.954065679 + 04/12 09:00:00,0.0,85039429.34927787,2803.5541832889227,10092795.05984012,85039429.34927787,24572943.077421994,28832253.210841814 + 04/12 10:00:00,0.0,62230633.01456636,2808.2081842161617,10109549.463178182,62230633.01456636,27644560.962099744,32436284.862197039 + 04/12 11:00:00,0.0,38616562.11058659,5057.611465444289,18207401.27559944,38616562.11058659,27644560.962099744,32436284.862197039 + 04/12 12:00:00,0.0,23039700.138592423,5060.086270832332,18216310.574996398,23039700.138592423,27644560.962099744,32436284.862197039 + 04/12 13:00:00,0.0,57261274.19637605,5061.697288956418,18222110.240243105,57261274.19637605,27644560.962099744,32436284.862197039 + 04/12 14:00:00,0.0,82807911.81281734,5061.782745849934,18222417.885059764,82807911.81281734,27644560.962099744,32436284.862197039 + 04/12 15:00:00,0.0,112022298.33173996,5061.583492814135,18221700.574130887,112022298.33173996,27644560.962099744,32436284.862197039 + 04/12 16:00:00,0.0,133536682.67480013,5061.518792190468,18221467.651885686,133536682.67480013,27644560.962099744,32436284.862197039 + 04/12 17:00:00,0.0,151468999.0274509,3936.6794709371426,14172046.095373713,151468999.0274509,27644560.962099744,32436284.862197039 + 04/12 18:00:00,0.0,102718557.57796031,2812.097206326422,10123549.94277512,102718557.57796031,27644560.962099744,28832253.210841814 + 04/12 19:00:00,5530671.201716281,554665.4436326819,1687.0305244393485,11603981.089697937,554665.4436326819,15358089.423388744,18020158.25677613 + 04/12 20:00:00,53579575.8025852,0.0,1124.501561998027,57627781.425778109,0.0,9214853.654033246,10812094.954065679 + 04/12 21:00:00,62027781.36844975,0.0,1124.0317118823583,66074295.53122624,0.0,9214853.654033246,10812094.954065679 + 04/12 22:00:00,0.0,0.0,1124.0317118823583,4046514.1627764895,0.0,6143235.769355498,3604031.6513552267 + 04/12 23:00:00,0.0,0.0,280.85934160633647,1011093.629782811,0.0,6143235.769355498,3604031.6513552267 + 04/12 24:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 04/13 01:00:00,0.0,0.0,280.69326480147586,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 04/13 02:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 04/13 03:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 04/13 04:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 04/13 05:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 04/13 06:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 04/13 07:00:00,0.0,0.0,280.2031649899243,1008731.3939637273,0.0,6143235.769355498,1802015.8256776133 + 04/13 08:00:00,0.0,0.0,280.54777015531229,1009971.9725591242,0.0,6143235.769355498,1802015.8256776133 + 04/13 09:00:00,0.0,0.0,280.8593416063364,1011093.629782811,0.0,6143235.769355498,1802015.8256776133 + 04/13 10:00:00,0.0,0.0,281.1253904995067,1012051.4057982243,0.0,6143235.769355498,1802015.8256776133 + 04/13 11:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 04/13 12:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 04/13 13:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 04/13 14:00:00,0.0,0.0,281.11312021485278,1012007.23277347,0.0,6143235.769355498,1802015.8256776133 + 04/13 15:00:00,0.0,0.0,280.9740645524247,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 04/13 16:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 04/13 17:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 04/13 18:00:00,0.0,0.0,281.1913907812245,1012289.0068124083,0.0,6143235.769355498,1802015.8256776133 + 04/13 19:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 04/13 20:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 04/13 21:00:00,0.0,0.0,281.14285597573919,1012114.281512661,0.0,6143235.769355498,1802015.8256776133 + 04/13 22:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 04/13 23:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 04/13 24:00:00,0.0,0.0,281.00792797058957,1011628.5406941223,0.0,6143235.769355498,1802015.8256776133 + 04/14 01:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 04/14 02:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 04/14 03:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 04/14 04:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 04/14 05:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 04/14 06:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 04/14 07:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 04/14 08:00:00,0.0,0.0,280.73777842562199,1010656.0023322391,0.0,6143235.769355498,1802015.8256776133 + 04/14 09:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 04/14 10:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 04/14 11:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 04/14 12:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/14 13:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 04/14 14:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 04/14 15:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 04/14 16:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 04/14 17:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 04/14 18:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 04/14 19:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 04/14 20:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 04/14 21:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 04/14 22:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 04/14 23:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 04/14 24:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 04/15 01:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 04/15 02:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/15 03:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 04/15 04:00:00,0.0,0.0,280.0385700581902,1008138.8522094848,0.0,6143235.769355498,1802015.8256776133 + 04/15 05:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 04/15 06:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 04/15 07:00:00,293589412.01518037,12288287.587325396,280.2031649899243,294598143.40914407,12288287.587325396,6143235.769355498,1802015.8256776133 + 04/15 08:00:00,94769341.45034723,0.0,561.24551422136,96789825.30154413,0.0,9214853.654033246,10812094.954065679 + 04/15 09:00:00,24451452.07514803,0.0,2808.5934160633639,34562388.37297614,0.0,24572943.077421994,28832253.210841814 + 04/15 10:00:00,0.0,0.0,2810.4843701946526,10117743.732700749,0.0,27644560.962099744,32436284.862197039 + 04/15 11:00:00,0.0,33726179.932988237,5058.871866350375,18211938.71886135,33726179.932988237,27644560.962099744,32436284.862197039 + 04/15 12:00:00,0.0,36784718.556063529,5060.571407563306,18218057.0672279,36784718.556063529,27644560.962099744,32436284.862197039 + 04/15 13:00:00,0.0,16286903.805768248,5060.418741752001,18217507.4703072,16286903.805768248,27644560.962099744,32436284.862197039 + 04/15 14:00:00,0.0,11284309.96107946,5061.538074089611,18221537.066722599,11284309.96107946,27644560.962099744,32436284.862197039 + 04/15 15:00:00,0.0,15769644.356973248,5059.717624961616,18214983.449861818,15769644.356973248,27644560.962099744,32436284.862197039 + 04/15 16:00:00,244034.4168360578,471469.6463397352,5060.086270832331,18460344.991832455,471469.6463397352,27644560.962099744,32436284.862197039 + 04/15 17:00:00,33297176.260054247,0.0,3934.3070558326915,47460681.66105194,0.0,27644560.962099744,32436284.862197039 + 04/15 18:00:00,53621396.81353195,0.0,2808.2081842161617,63730946.27671012,0.0,27644560.962099744,28832253.210841814 + 04/15 19:00:00,88796068.8937742,0.0,1683.73654266408,94857520.44736488,0.0,15358089.423388744,18020158.25677613 + 04/15 20:00:00,106567215.68797422,0.0,1122.8630836376588,110609522.78906979,0.0,9214853.654033246,10812094.954065679 + 04/15 21:00:00,107267487.93240151,0.0,1122.9511137024879,111310111.94173047,0.0,9214853.654033246,10812094.954065679 + 04/15 22:00:00,0.0,0.0,1122.9511137024875,4042624.009328956,0.0,6143235.769355498,3604031.6513552267 + 04/15 23:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,3604031.6513552267 + 04/15 24:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 04/16 01:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 04/16 02:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/16 03:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/16 04:00:00,0.0,0.0,280.296000388249,1009065.6013976964,0.0,6143235.769355498,1802015.8256776133 + 04/16 05:00:00,0.0,0.0,280.296000388249,1009065.6013976964,0.0,6143235.769355498,1802015.8256776133 + 04/16 06:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 04/16 07:00:00,285838991.49004229,11503430.088070732,280.2346041965235,286847836.0651497,11503430.088070732,6143235.769355498,1802015.8256776133 + 04/16 08:00:00,121424512.1998795,0.0,560.6519135685354,123442859.08872622,0.0,9214853.654033246,10812094.954065679 + 04/16 09:00:00,79535376.10153525,0.0,2802.0316498992426,89622690.04117252,0.0,24572943.077421994,28832253.210841814 + 04/16 10:00:00,69079801.12318313,0.0,2803.5541832889227,79172596.18302325,0.0,27644560.962099744,32436284.862197039 + 04/16 11:00:00,58768620.49146409,0.0,5046.397529920062,76935651.59917632,0.0,27644560.962099744,32436284.862197039 + 04/16 12:00:00,27811102.37482678,0.0,5046.918925309814,45980010.505942109,0.0,27644560.962099744,32436284.862197039 + 04/16 13:00:00,27798247.245987614,0.0,5048.915283959974,45974342.26824352,0.0,27644560.962099744,32436284.862197039 + 04/16 14:00:00,28421298.129875997,0.0,5050.768659176276,46604065.30291058,0.0,27644560.962099744,32436284.862197039 + 04/16 15:00:00,29193705.373797329,0.0,5052.478766426566,47382628.93293296,0.0,27644560.962099744,32436284.862197039 + 04/16 16:00:00,29404027.48526089,0.0,5053.667168500768,47597229.29186365,0.0,27644560.962099744,32436284.862197039 + 04/16 17:00:00,27778950.11471143,0.0,3932.0307824887088,41934260.93167077,0.0,27644560.962099744,32436284.862197039 + 04/16 18:00:00,39943827.63656697,0.0,2808.0080733612555,50052656.700667489,0.0,27644560.962099744,28832253.210841814 + 04/16 19:00:00,81475776.27936653,0.0,1682.6449863076239,87533298.23007398,0.0,15358089.423388744,18020158.25677613 + 04/16 20:00:00,112637840.23281035,0.0,1118.3737238554043,116663985.6386898,0.0,9214853.654033246,10812094.954065679 + 04/16 21:00:00,122466582.68807763,0.0,1116.8537815288258,126487256.30158141,0.0,9214853.654033246,10812094.954065679 + 04/16 22:00:00,0.0,0.0,1117.377919065634,4022560.5086362815,0.0,6143235.769355498,3604031.6513552267 + 04/16 23:00:00,0.0,0.0,278.842748647338,1003833.8951304167,0.0,6143235.769355498,3604031.6513552267 + 04/16 24:00:00,0.0,0.0,279.8248210364584,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 04/17 01:00:00,0.0,0.0,280.0385700581902,1008138.8522094848,0.0,6143235.769355498,1802015.8256776133 + 04/17 02:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 04/17 03:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 04/17 04:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 04/17 05:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 04/17 06:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 04/17 07:00:00,293723710.6216195,11445333.265649185,280.26554942827348,294732666.59956136,11445333.265649185,6143235.769355498,1802015.8256776133 + 04/17 08:00:00,91313970.23025944,0.0,561.3865296029517,93334961.73683007,0.0,9214853.654033246,10812094.954065679 + 04/17 09:00:00,6136907.971347472,0.0,2809.3038695655789,16250401.901783556,0.0,24572943.077421994,28832253.210841814 + 04/17 10:00:00,4123918.0500623595,0.0,2810.35435618958,14241193.732344846,0.0,27644560.962099744,32436284.862197039 + 04/17 11:00:00,0.0,14125225.613898334,5059.717624961616,18214983.449861818,14125225.613898334,27644560.962099744,32436284.862197039 + 04/17 12:00:00,0.0,24109348.066703105,5061.297340536311,18220670.42593072,24109348.066703105,27644560.962099744,32436284.862197039 + 04/17 13:00:00,0.0,19558686.450974645,5061.697288956418,18222110.240243105,19558686.450974645,27644560.962099744,32436284.862197039 + 04/17 14:00:00,0.0,27308320.87684814,5061.771114674688,18222376.012828877,27308320.87684814,27644560.962099744,32436284.862197039 + 04/17 15:00:00,0.0,49879479.97985073,5061.685719150848,18222068.588943054,49879479.97985073,27644560.962099744,32436284.862197039 + 04/17 16:00:00,0.0,56855625.45506934,5061.1694221599359,18220209.91977577,56855625.45506934,27644560.962099744,32436284.862197039 + 04/17 17:00:00,0.0,68074405.3481617,3936.9411357693386,14172988.088769619,68074405.3481617,27644560.962099744,32436284.862197039 + 04/17 18:00:00,0.0,40971990.74383252,2812.047621750471,10123371.438301696,40971990.74383252,27644560.962099744,28832253.210841814 + 04/17 19:00:00,14946615.093749786,0.0,1686.6954236107773,21018718.618748584,0.0,15358089.423388744,18020158.25677613 + 04/17 20:00:00,72238073.6585832,0.0,1122.7730592059034,76280056.67172444,0.0,9214853.654033246,10812094.954065679 + 04/17 21:00:00,89579365.12433747,0.0,1119.8771407371062,93610922.83099105,0.0,9214853.654033246,10812094.954065679 + 04/17 22:00:00,0.0,0.0,1120.9384167860943,4035378.3004299385,0.0,6143235.769355498,3604031.6513552267 + 04/17 23:00:00,0.0,0.0,279.25760825036925,1005327.3897013289,0.0,6143235.769355498,3604031.6513552267 + 04/17 24:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 04/18 01:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 04/18 02:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 04/18 03:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 04/18 04:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 04/18 05:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 04/18 06:00:00,0.0,0.0,279.25760825036937,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 04/18 07:00:00,162185844.88890056,10404827.240858533,279.8248210364583,163193214.2446318,10404827.240858533,6143235.769355498,1802015.8256776133 + 04/18 08:00:00,10360646.737397597,19612708.346085028,560.6519135685354,12378993.626244322,19612708.346085028,9214853.654033246,10812094.954065679 + 04/18 09:00:00,0.0,79255910.55546588,2804.6831041095276,10096859.1747943,79255910.55546588,24572943.077421994,28832253.210841814 + 04/18 10:00:00,0.0,74758744.13141749,2806.2275711067998,10102419.255984478,74758744.13141749,27644560.962099744,32436284.862197039 + 04/18 11:00:00,0.0,48961990.92025532,5054.41453205026,18195892.31538094,48961990.92025532,27644560.962099744,32436284.862197039 + 04/18 12:00:00,0.0,29245566.942459335,5059.096859452483,18212748.69402894,29245566.942459335,27644560.962099744,32436284.862197039 + 04/18 13:00:00,0.0,36310375.81906377,5060.418741752001,18217507.4703072,36310375.81906377,27644560.962099744,32436284.862197039 + 04/18 14:00:00,0.0,81048358.48692005,5061.782745849934,18222417.885059764,81048358.48692005,27644560.962099744,32436284.862197039 + 04/18 15:00:00,0.0,130312260.84327787,5061.4450340620419,18221202.12262335,130312260.84327787,27644560.962099744,32436284.862197039 + 04/18 16:00:00,0.0,153908293.03043259,5061.059441958677,18219813.991051239,153908293.03043259,27644560.962099744,32436284.862197039 + 04/18 17:00:00,0.0,144021837.15620623,3936.379565967859,14170966.437484293,144021837.15620623,27644560.962099744,32436284.862197039 + 04/18 18:00:00,0.0,91561266.06759142,2812.1008112638135,10123562.920549728,91561266.06759142,27644560.962099744,28832253.210841814 + 04/18 19:00:00,6785744.980525597,2901383.8351382405,1684.924910529697,12851474.658432506,2901383.8351382405,15358089.423388744,18020158.25677613 + 04/18 20:00:00,64266069.92687086,0.0,1123.2832736864646,68309889.71214214,0.0,9214853.654033246,10812094.954065679 + 04/18 21:00:00,75788316.83861465,0.0,1121.4216733155693,79825434.86255069,0.0,9214853.654033246,10812094.954065679 + 04/18 22:00:00,0.0,0.0,1120.2898980774749,4033043.6330789106,0.0,6143235.769355498,3604031.6513552267 + 04/18 23:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,3604031.6513552267 + 04/18 24:00:00,0.0,0.0,279.3871875807369,1005793.8752906527,0.0,6143235.769355498,1802015.8256776133 + 04/19 01:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 04/19 02:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 04/19 03:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 04/19 04:00:00,0.0,0.0,278.3361526068599,1002010.1493846957,0.0,6143235.769355498,1802015.8256776133 + 04/19 05:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 04/19 06:00:00,0.0,0.0,278.74525920037368,1003482.9331213442,0.0,6143235.769355498,1802015.8256776133 + 04/19 07:00:00,162394815.16221709,10197367.71356983,279.5123943454836,163401059.78186078,10197367.71356983,6143235.769355498,1802015.8256776133 + 04/19 08:00:00,10997719.439182962,19181618.062911586,560.82571147591,13016692.00049624,19181618.062911586,9214853.654033246,10812094.954065679 + 04/19 09:00:00,0.0,85890338.54988754,2808.4032990742518,10110251.876667306,85890338.54988754,24572943.077421994,28832253.210841814 + 04/19 10:00:00,0.0,86987459.8521855,2811.2539049950676,10120514.057982242,86987459.8521855,27644560.962099744,32436284.862197039 + 04/19 11:00:00,0.0,57099590.91490419,5059.3128182887189,18213526.145839387,57099590.91490419,27644560.962099744,32436284.862197039 + 04/19 12:00:00,0.0,31023003.231667907,5060.418741752001,18217507.4703072,31023003.231667907,27644560.962099744,32436284.862197039 + 04/19 13:00:00,0.0,35701496.03518978,5061.653275959559,18221951.793454414,35701496.03518978,27644560.962099744,32436284.862197039 + 04/19 14:00:00,0.0,63467145.60442552,5061.751709148671,18222306.152935216,63467145.60442552,27644560.962099744,32436284.862197039 + 04/19 15:00:00,0.0,89081617.55562487,5061.583492814135,18221700.574130887,89081617.55562487,27644560.962099744,32436284.862197039 + 04/19 16:00:00,0.0,120936904.12451099,5061.2703482087049,18220573.253551339,120936904.12451099,27644560.962099744,32436284.862197039 + 04/19 17:00:00,0.0,138957998.86910195,3936.7871610776599,14172433.779879576,138957998.86910195,27644560.962099744,32436284.862197039 + 04/19 18:00:00,0.0,107730341.05132789,2812.1008112638135,10123562.920549728,107730341.05132789,27644560.962099744,28832253.210841814 + 04/19 19:00:00,2378921.390173724,5725639.1379169649,1686.9050083200596,8451779.420125939,5725639.1379169649,15358089.423388744,18020158.25677613 + 04/19 20:00:00,55173968.14873211,0.0,1123.9136589876196,59220057.32108753,0.0,9214853.654033246,10812094.954065679 + 04/19 21:00:00,69320941.39057774,0.0,1122.293052445564,73361196.37938178,0.0,9214853.654033246,10812094.954065679 + 04/19 22:00:00,0.0,0.0,1122.1910806212493,4039887.890236497,0.0,6143235.769355498,3604031.6513552267 + 04/19 23:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,3604031.6513552267 + 04/19 24:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 04/20 01:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 04/20 02:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 04/20 03:00:00,0.0,0.0,278.3361526068599,1002010.1493846957,0.0,6143235.769355498,1802015.8256776133 + 04/20 04:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 04/20 05:00:00,0.0,0.0,277.4872252056943,998954.0107404995,0.0,6143235.769355498,1802015.8256776133 + 04/20 06:00:00,0.0,0.0,278.4931494938055,1002575.338177699,0.0,6143235.769355498,1802015.8256776133 + 04/20 07:00:00,0.0,0.0,279.71132627864025,1006960.7746031042,0.0,6143235.769355498,1802015.8256776133 + 04/20 08:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 04/20 09:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 04/20 10:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 04/20 11:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 04/20 12:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 04/20 13:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 04/20 14:00:00,0.0,0.0,280.9740645524247,1011506.632388729,0.0,6143235.769355498,1802015.8256776133 + 04/20 15:00:00,0.0,0.0,280.9740645524247,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 04/20 16:00:00,0.0,0.0,280.9084575166284,1011270.4470598623,0.0,6143235.769355498,1802015.8256776133 + 04/20 17:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 04/20 18:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 04/20 19:00:00,0.0,0.0,281.20734681865579,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 04/20 20:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 04/20 21:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 04/20 22:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 04/20 23:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 04/20 24:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 04/21 01:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 04/21 02:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/21 03:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 04/21 04:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 04/21 05:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 04/21 06:00:00,0.0,0.0,279.6725162961984,1006821.0586663135,0.0,6143235.769355498,1802015.8256776133 + 04/21 07:00:00,0.0,0.0,280.693264801476,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 04/21 08:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 04/21 09:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 04/21 10:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 04/21 11:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 04/21 12:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 04/21 13:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 04/21 14:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 04/21 15:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 04/21 16:00:00,0.0,0.0,279.5416380384865,1006349.8969385513,0.0,6143235.769355498,1802015.8256776133 + 04/21 17:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 04/21 18:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 04/21 19:00:00,0.0,0.0,280.9584140172027,1011450.2904619305,0.0,6143235.769355498,1802015.8256776133 + 04/21 20:00:00,0.0,0.0,281.04479834185136,1011761.2740306648,0.0,6143235.769355498,1802015.8256776133 + 04/21 21:00:00,0.0,0.0,281.14050011318155,1012105.8004074534,0.0,6143235.769355498,1802015.8256776133 + 04/21 22:00:00,0.0,0.0,281.04479834185136,1011761.2740306648,0.0,6143235.769355498,1802015.8256776133 + 04/21 23:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 04/21 24:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 04/22 01:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 04/22 02:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 04/22 03:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 04/22 04:00:00,0.0,0.0,281.14285597573919,1012114.281512661,0.0,6143235.769355498,1802015.8256776133 + 04/22 05:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 04/22 06:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 04/22 07:00:00,170451242.15917949,3673984.5962109037,281.10591493967146,171463223.45296235,3673984.5962109037,6143235.769355498,1802015.8256776133 + 04/22 08:00:00,43978622.29439428,0.0,562.4059195510622,46003283.6047781,0.0,9214853.654033246,10812094.954065679 + 04/22 09:00:00,0.0,0.0,2812.068468823897,10123446.48776603,0.0,24572943.077421994,28832253.210841814 + 04/22 10:00:00,0.0,17340290.442190678,2811.760790088853,10122338.84431987,17340290.442190678,27644560.962099744,32436284.862197039 + 04/22 11:00:00,0.0,45414773.95051888,5059.033926699838,18212522.136119419,45414773.95051888,27644560.962099744,32436284.862197039 + 04/22 12:00:00,0.0,36136193.78293987,5058.324164894676,18209966.993620837,36136193.78293987,27644560.962099744,32436284.862197039 + 04/22 13:00:00,0.0,37335238.41257721,5054.673424336896,18196824.327612826,37335238.41257721,27644560.962099744,32436284.862197039 + 04/22 14:00:00,0.0,51463162.312189217,5054.673424336896,18196824.327612826,51463162.312189217,27644560.962099744,32436284.862197039 + 04/22 15:00:00,0.0,40368431.4403014,5056.960726116803,18205058.61402049,40368431.4403014,27644560.962099744,32436284.862197039 + 04/22 16:00:00,0.0,27201915.864834757,5057.5331619436469,18207119.38299713,27201915.864834757,27644560.962099744,32436284.862197039 + 04/22 17:00:00,0.0,19870918.567128175,3933.636903733946,14161092.853442206,19870918.567128175,27644560.962099744,32436284.862197039 + 04/22 18:00:00,0.0,10238206.10417522,2810.5744037221318,10118067.853399674,10238206.10417522,27644560.962099744,28832253.210841814 + 04/22 19:00:00,11652978.261319526,0.0,1686.7912562133043,17725426.78368742,0.0,15358089.423388744,18020158.25677613 + 04/22 20:00:00,40194628.63260241,0.0,1124.624960757039,44243278.49132775,0.0,9214853.654033246,10812094.954065679 + 04/22 21:00:00,48274490.17275548,0.0,1124.8403245055254,52323915.340975377,0.0,9214853.654033246,10812094.954065679 + 04/22 22:00:00,0.0,0.0,1124.1417424758329,4046910.2729129947,0.0,6143235.769355498,3604031.6513552267 + 04/22 23:00:00,0.0,0.0,280.96290639529345,1011466.4630230563,0.0,6143235.769355498,3604031.6513552267 + 04/22 24:00:00,0.0,0.0,280.9934219866693,1011576.3191520097,0.0,6143235.769355498,1802015.8256776133 + 04/23 01:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 04/23 02:00:00,0.0,0.0,280.412855737955,1009486.280656638,0.0,6143235.769355498,1802015.8256776133 + 04/23 03:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 04/23 04:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 04/23 05:00:00,0.0,0.0,280.73777842562199,1010656.0023322391,0.0,6143235.769355498,1802015.8256776133 + 04/23 06:00:00,0.0,0.0,280.8008073361255,1010882.906410052,0.0,6143235.769355498,1802015.8256776133 + 04/23 07:00:00,86064233.8403052,7141019.221388497,281.035435618958,87075961.40853344,7141019.221388497,6143235.769355498,1802015.8256776133 + 04/23 08:00:00,0.0,73061423.00966105,562.4201622527627,2024712.5841099458,73061423.00966105,9214853.654033246,10812094.954065679 + 04/23 09:00:00,0.0,122366194.617478,2811.227493735838,10120418.977449017,122366194.617478,24572943.077421994,28832253.210841814 + 04/23 10:00:00,0.0,122826103.8254389,2809.422625620446,10113921.452233606,122826103.8254389,27644560.962099744,32436284.862197039 + 04/23 11:00:00,0.0,97235223.18909374,5053.558209946162,18192809.555806184,97235223.18909374,27644560.962099744,32436284.862197039 + 04/23 12:00:00,0.0,73581395.19421385,5050.189421770034,18180681.91837212,73581395.19421385,27644560.962099744,32436284.862197039 + 04/23 13:00:00,0.0,78684726.22054,5049.728009428017,18179020.83394086,78684726.22054,27644560.962099744,32436284.862197039 + 04/23 14:00:00,0.0,112321111.01548693,5041.7361831799539,18150250.25944783,112321111.01548693,27644560.962099744,32436284.862197039 + 04/23 15:00:00,0.0,132157133.78648333,5042.91743987145,18154502.78353722,132157133.78648333,27644560.962099744,32436284.862197039 + 04/23 16:00:00,0.0,120025203.11118672,5041.132250448796,18148076.101615669,120025203.11118672,27644560.962099744,32436284.862197039 + 04/23 17:00:00,0.0,114499994.2277846,3922.269119900016,14120168.831640058,114499994.2277846,27644560.962099744,32436284.862197039 + 04/23 18:00:00,0.0,100753261.3573059,2805.6607898722406,10100378.843540065,100753261.3573059,27644560.962099744,28832253.210841814 + 04/23 19:00:00,0.0,20921326.684800328,1685.2359042818117,6066849.255414521,20921326.684800328,15358089.423388744,18020158.25677613 + 04/23 20:00:00,19958077.310110108,0.0,1124.5620004527262,24006500.51173992,0.0,9214853.654033246,10812094.954065679 + 04/23 21:00:00,38332225.49128206,0.0,1124.8403245055254,42381650.659501958,0.0,9214853.654033246,10812094.954065679 + 04/23 22:00:00,0.0,0.0,1124.5015619980275,4048205.623192896,0.0,6143235.769355498,3604031.6513552267 + 04/23 23:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,3604031.6513552267 + 04/23 24:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 04/24 01:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 04/24 02:00:00,0.0,0.0,280.69326480147586,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 04/24 03:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,1802015.8256776133 + 04/24 04:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 04/24 05:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 04/24 06:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 04/24 07:00:00,129290671.45825216,1920738.164510819,280.94689708064018,130302080.28774247,1920738.164510819,6143235.769355498,1802015.8256776133 + 04/24 08:00:00,27033472.44469485,0.0,562.3554426828055,29057952.038352956,0.0,9214853.654033246,10812094.954065679 + 04/24 09:00:00,0.0,45443148.76772012,2811.9548845502597,10123037.584380934,45443148.76772012,24572943.077421994,28832253.210841814 + 04/24 10:00:00,0.0,116355637.10803166,2811.318760355507,10120747.537279826,116355637.10803166,27644560.962099744,32436284.862197039 + 04/24 11:00:00,0.0,77430215.19819565,5061.1694221599359,18220209.91977577,77430215.19819565,27644560.962099744,32436284.862197039 + 04/24 12:00:00,0.0,52127532.850016269,5060.67518742708,18218430.67473749,52127532.850016269,27644560.962099744,32436284.862197039 + 04/24 13:00:00,0.0,51932941.88174594,5060.373768639913,18217345.567103685,51932941.88174594,27644560.962099744,32436284.862197039 + 04/24 14:00:00,0.0,48662282.84694123,5061.751709148671,18222306.152935216,48662282.84694123,27644560.962099744,32436284.862197039 + 04/24 15:00:00,0.0,39590888.331714037,5061.639135312228,18221900.88712402,39590888.331714037,27644560.962099744,32436284.862197039 + 04/24 16:00:00,0.0,8279074.151099096,5061.583492814135,18221700.574130887,8279074.151099096,27644560.962099744,32436284.862197039 + 04/24 17:00:00,0.0,0.0,3936.6150593284498,14171814.213582419,0.0,27644560.962099744,32436284.862197039 + 04/24 18:00:00,0.0,0.0,2811.9548845502597,10123037.584380934,0.0,27644560.962099744,28832253.210841814 + 04/24 19:00:00,25310887.827708298,0.0,1687.2505697162235,31384989.878686705,0.0,15358089.423388744,18020158.25677613 + 04/24 20:00:00,57869011.91091108,0.0,1124.835141547187,61918418.42048095,0.0,9214853.654033246,10812094.954065679 + 04/24 21:00:00,65317153.465659748,0.0,1124.463615740518,69365222.4823256,0.0,9214853.654033246,10812094.954065679 + 04/24 22:00:00,0.0,0.0,1124.6332427921307,4048679.674051669,0.0,6143235.769355498,3604031.6513552267 + 04/24 23:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,3604031.6513552267 + 04/24 24:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 04/25 01:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 04/25 02:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 04/25 03:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 04/25 04:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 04/25 05:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 04/25 06:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 04/25 07:00:00,77276334.09429164,2462053.449922352,281.1508347200099,78288477.09928365,2462053.449922352,6143235.769355498,1802015.8256776133 + 04/25 08:00:00,0.0,67340102.56544145,562.4043483680254,2024655.6541248915,67340102.56544145,9214853.654033246,10812094.954065679 + 04/25 09:00:00,0.0,119813959.71888517,2808.9080425073605,10112068.953026498,119813959.71888517,24572943.077421994,28832253.210841814 + 04/25 10:00:00,0.0,126953192.06892599,2805.9121585081468,10101283.770629328,126953192.06892599,27644560.962099744,32436284.862197039 + 04/25 11:00:00,0.0,125697037.49454491,5034.606517262058,18124583.46214341,125697037.49454491,27644560.962099744,32436284.862197039 + 04/25 12:00:00,0.0,107857547.36693546,5032.476917973653,18116916.904705153,107857547.36693546,27644560.962099744,32436284.862197039 + 04/25 13:00:00,0.0,112943225.20343827,5024.808716663643,18089311.379989119,112943225.20343827,27644560.962099744,32436284.862197039 + 04/25 14:00:00,0.0,120195465.15765219,5020.647701879785,18074331.726767228,120195465.15765219,27644560.962099744,32436284.862197039 + 04/25 15:00:00,0.0,123968831.60174331,5012.612673294531,18045405.623860316,123968831.60174331,27644560.962099744,32436284.862197039 + 04/25 16:00:00,0.0,108578950.69772215,5015.368624929059,18055327.04974461,108578950.69772215,27644560.962099744,32436284.862197039 + 04/25 17:00:00,0.0,78487305.28733331,3898.698745895746,14035315.485224687,78487305.28733331,27644560.962099744,32436284.862197039 + 04/25 18:00:00,0.0,65194319.89593384,2789.7207043734176,10042994.535744302,65194319.89593384,27644560.962099744,28832253.210841814 + 04/25 19:00:00,0.0,20117691.26863161,1675.9936276291306,6033577.05946487,20117691.26863161,15358089.423388744,18020158.25677613 + 04/25 20:00:00,0.0,0.0,1117.6699071140648,4023611.665610633,0.0,9214853.654033246,10812094.954065679 + 04/25 21:00:00,0.0,0.0,1118.8014482804575,4027685.2138096468,0.0,9214853.654033246,10812094.954065679 + 04/25 22:00:00,0.0,0.0,1120.1154346278807,4032415.5646603705,0.0,6143235.769355498,3604031.6513552267 + 04/25 23:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,3604031.6513552267 + 04/25 24:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 04/26 01:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 04/26 02:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 04/26 03:00:00,0.0,0.0,280.4876864526107,1009755.6712293986,0.0,6143235.769355498,1802015.8256776133 + 04/26 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 04/26 05:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 04/26 06:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 04/26 07:00:00,9416355.683820337,55338911.24202955,280.1941529165231,10425054.63431982,55338911.24202955,6143235.769355498,1802015.8256776133 + 04/26 08:00:00,0.0,94365847.51540451,558.9187010673895,2012107.3238426024,94365847.51540451,9214853.654033246,10812094.954065679 + 04/26 09:00:00,0.0,159883567.25222374,2789.7207043734176,10042994.535744302,159883567.25222374,24572943.077421994,28832253.210841814 + 04/26 10:00:00,0.0,180706856.96676735,2784.7848184969618,10025225.346589063,180706856.96676735,27644560.962099744,32436284.862197039 + 04/26 11:00:00,0.0,165621192.5721067,4991.170954736036,17968215.437049729,165621192.5721067,27644560.962099744,32436284.862197039 + 04/26 12:00:00,0.0,123712506.40561855,4998.733597011079,17995440.949239885,123712506.40561855,27644560.962099744,32436284.862197039 + 04/26 13:00:00,0.0,93434522.45403417,5007.847777386004,18028251.998589618,93434522.45403417,27644560.962099744,32436284.862197039 + 04/26 14:00:00,0.0,64947036.92269318,5027.200926070828,18097923.33385498,64947036.92269318,27644560.962099744,32436284.862197039 + 04/26 15:00:00,0.0,76629799.96681664,5027.200926070828,18097923.33385498,76629799.96681664,27644560.962099744,32436284.862197039 + 04/26 16:00:00,0.0,52764995.098173368,5036.656923567859,18131964.92484429,52764995.098173368,27644560.962099744,32436284.862197039 + 04/26 17:00:00,0.0,28715267.31219534,3915.259787531378,14094935.235112962,28715267.31219534,27644560.962099744,32436284.862197039 + 04/26 18:00:00,0.0,16434420.427385983,2795.0073775272405,10062026.559098065,16434420.427385983,27644560.962099744,28832253.210841814 + 04/26 19:00:00,200587.28355540668,0.0,1680.5787277266514,6250670.703371352,0.0,15358089.423388744,18020158.25677613 + 04/26 20:00:00,32211951.399426264,0.0,1121.1496358397888,36248090.0884495,0.0,9214853.654033246,10812094.954065679 + 04/26 21:00:00,33670749.30784139,0.0,1121.5048587926154,37708166.7994948,0.0,9214853.654033246,10812094.954065679 + 04/26 22:00:00,0.0,0.0,1122.1617798728926,4039782.407542413,0.0,6143235.769355498,3604031.6513552267 + 04/26 23:00:00,0.0,0.0,280.56607898722407,1010037.8843540065,0.0,6143235.769355498,3604031.6513552267 + 04/26 24:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 04/27 01:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 04/27 02:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 04/27 03:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 04/27 04:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 04/27 05:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 04/27 06:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 04/27 07:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 04/27 08:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 04/27 09:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 04/27 10:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 04/27 11:00:00,0.0,0.0,278.63159027383656,1003073.7249858115,0.0,6143235.769355498,1802015.8256776133 + 04/27 12:00:00,0.0,0.0,278.4784818496962,1002522.5346589064,0.0,6143235.769355498,1802015.8256776133 + 04/27 13:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 04/27 14:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,1802015.8256776133 + 04/27 15:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 04/27 16:00:00,0.0,0.0,278.63159027383656,1003073.7249858115,0.0,6143235.769355498,1802015.8256776133 + 04/27 17:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,1802015.8256776133 + 04/27 18:00:00,0.0,0.0,279.88776540456527,1007595.955456435,0.0,6143235.769355498,1802015.8256776133 + 04/27 19:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 04/27 20:00:00,0.0,0.0,281.19908293411859,1012316.6985628267,0.0,6143235.769355498,1802015.8256776133 + 04/27 21:00:00,0.0,0.0,281.1652838380736,1012195.0218170651,0.0,6143235.769355498,1802015.8256776133 + 04/27 22:00:00,0.0,0.0,281.1253904995067,1012051.4057982243,0.0,6143235.769355498,1802015.8256776133 + 04/27 23:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 04/27 24:00:00,0.0,0.0,281.00792797058957,1011628.5406941223,0.0,6143235.769355498,1802015.8256776133 + 04/28 01:00:00,0.0,0.0,280.94689708064018,1011408.8294903046,0.0,6143235.769355498,1802015.8256776133 + 04/28 02:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 04/28 03:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 04/28 04:00:00,0.0,0.0,280.80080733612558,1010882.906410052,0.0,6143235.769355498,1802015.8256776133 + 04/28 05:00:00,0.0,0.0,280.80080733612558,1010882.906410052,0.0,6143235.769355498,1802015.8256776133 + 04/28 06:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 04/28 07:00:00,0.0,0.0,280.9934219866694,1011576.3191520098,0.0,6143235.769355498,1802015.8256776133 + 04/28 08:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 04/28 09:00:00,0.0,0.0,281.14285597573919,1012114.2815126609,0.0,6143235.769355498,1802015.8256776133 + 04/28 10:00:00,0.0,0.0,281.2000113426414,1012320.0408335091,0.0,6143235.769355498,1802015.8256776133 + 04/28 11:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 04/28 12:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 04/28 13:00:00,0.0,0.0,281.18678995203217,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 04/28 14:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 04/28 15:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 04/28 16:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 04/28 17:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 04/28 18:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 04/28 19:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 04/28 20:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,1802015.8256776133 + 04/28 21:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 04/28 22:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 04/28 23:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 04/28 24:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 04/29 01:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,1802015.8256776133 + 04/29 02:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 04/29 03:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 04/29 04:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 04/29 05:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 04/29 06:00:00,0.0,0.0,281.035435618958,1011727.5682282489,0.0,6143235.769355498,1802015.8256776133 + 04/29 07:00:00,78384947.26056732,329934.7464478388,281.0729343493732,79396809.82422509,329934.7464478388,6143235.769355498,1802015.8256776133 + 04/29 08:00:00,0.0,0.0,562.3016694400199,2024286.0099840714,0.0,9214853.654033246,10812094.954065679 + 04/29 09:00:00,0.0,46942504.63396825,2811.881467526378,10122773.283094962,46942504.63396825,24572943.077421994,28832253.210841814 + 04/29 10:00:00,0.0,29521996.6313047,2812.0734681865599,10123464.485471616,29521996.6313047,27644560.962099744,32436284.862197039 + 04/29 11:00:00,0.0,22045412.51230812,5061.781460274864,18222413.25698951,22045412.51230812,27644560.962099744,32436284.862197039 + 04/29 12:00:00,0.0,31509790.833088679,5060.812323406676,18218924.364264035,31509790.833088679,27644560.962099744,32436284.862197039 + 04/29 13:00:00,0.0,28573130.573529237,5060.940408660208,18219385.471176749,28573130.573529237,27644560.962099744,32436284.862197039 + 04/29 14:00:00,0.0,34429350.58181365,5061.362219136579,18220903.988891689,34429350.58181365,27644560.962099744,32436284.862197039 + 04/29 15:00:00,0.0,61714236.078193489,5059.461936710032,18214062.972156116,61714236.078193489,27644560.962099744,32436284.862197039 + 04/29 16:00:00,0.0,123854539.87266973,5057.805852315729,18208101.068336626,123854539.87266973,27644560.962099744,32436284.862197039 + 04/29 17:00:00,0.0,92075051.3602641,3936.080701332173,14169890.524795823,92075051.3602641,27644560.962099744,32436284.862197039 + 04/29 18:00:00,0.0,46807478.20890864,2811.4862152372668,10121350.37485416,46807478.20890864,27644560.962099744,28832253.210841814 + 04/29 19:00:00,0.0,6889434.303626502,1687.2583237958536,6074129.965665073,6889434.303626502,15358089.423388744,18020158.25677613 + 04/29 20:00:00,47723051.691836658,0.0,1124.463615740518,51771120.70850252,0.0,9214853.654033246,10812094.954065679 + 04/29 21:00:00,57474929.22914355,0.0,1124.501561998027,61523134.85233645,0.0,9214853.654033246,10812094.954065679 + 04/29 22:00:00,0.0,0.0,1124.381694435915,4047774.099969293,0.0,6143235.769355498,3604031.6513552267 + 04/29 23:00:00,0.0,0.0,281.06093663624906,1011819.3718904966,0.0,6143235.769355498,3604031.6513552267 + 04/29 24:00:00,0.0,0.0,280.91337618146386,1011288.1542532698,0.0,6143235.769355498,1802015.8256776133 + 04/30 01:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 04/30 02:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 04/30 03:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 04/30 04:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 04/30 05:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 04/30 06:00:00,0.0,0.0,280.13880586357467,1008499.7011088689,0.0,6143235.769355498,1802015.8256776133 + 04/30 07:00:00,81226564.95698186,6152833.838034629,280.69326480147586,82237060.71026714,6152833.838034629,6143235.769355498,1802015.8256776133 + 04/30 08:00:00,0.0,80623120.27092353,562.0158559411791,2023257.0813882447,80623120.27092353,9214853.654033246,10812094.954065679 + 04/30 09:00:00,0.0,126564082.07718008,2811.5083472000994,10121430.049920358,126564082.07718008,24572943.077421994,28832253.210841814 + 04/30 10:00:00,0.0,123674817.3118464,2812.097206326422,10123549.94277512,123674817.3118464,27644560.962099744,32436284.862197039 + 04/30 11:00:00,0.0,97740797.54459036,5061.059441958677,18219813.991051239,97740797.54459036,27644560.962099744,32436284.862197039 + 04/30 12:00:00,0.0,74638331.54525553,5058.806370153325,18211702.93255197,74638331.54525553,27644560.962099744,32436284.862197039 + 04/30 13:00:00,0.0,85389793.40308267,5055.707712845435,18200547.766243567,85389793.40308267,27644560.962099744,32436284.862197039 + 04/30 14:00:00,0.0,130830537.24475356,5052.769822133184,18189971.35967946,130830537.24475356,27644560.962099744,32436284.862197039 + 04/30 15:00:00,0.0,179000353.55476449,5051.519948731799,18185471.815434476,179000353.55476449,27644560.962099744,32436284.862197039 + 04/30 16:00:00,0.0,202719714.93579037,5047.792961919891,18172054.66291161,202719714.93579037,27644560.962099744,32436284.862197039 + 04/30 17:00:00,0.0,205134678.00762353,3928.2770219114056,14141797.27888106,205134678.00762353,27644560.962099744,32436284.862197039 + 04/30 18:00:00,0.0,175383616.67683194,2806.867869988213,10104724.331957568,175383616.67683194,27644560.962099744,28832253.210841814 + 04/30 19:00:00,0.0,54891646.31342745,1686.0231736031295,6069683.424971266,54891646.31342745,15358089.423388744,18020158.25677613 + 04/30 20:00:00,1292297.7555943302,0.0,1124.411954607005,5340180.792179548,0.0,9214853.654033246,10812094.954065679 + 04/30 21:00:00,15777843.624826599,0.0,1124.679875990817,19826691.178393537,0.0,9214853.654033246,10812094.954065679 + 04/30 22:00:00,0.0,0.0,1124.8273875295589,4049378.5951064119,0.0,6143235.769355498,3604031.6513552267 + 04/30 23:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,3604031.6513552267 + 04/30 24:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 05/01 01:00:00,0.0,0.0,280.8958649185796,1011225.1137068864,0.0,6143235.769355498,1802015.8256776133 + 05/01 02:00:00,0.0,0.0,280.69326480147586,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 05/01 03:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 05/01 04:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/01 05:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 05/01 06:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 05/01 07:00:00,173078636.6909066,6502437.814595158,280.96290639529345,174090103.15392969,6502437.814595158,6143235.769355498,1802015.8256776133 + 05/01 08:00:00,13598576.733859582,33048758.44231861,562.3166213960651,15622916.570885418,33048758.44231861,9214853.654033246,10812094.954065679 + 05/01 09:00:00,0.0,92853295.63769049,2812.0842828603724,10123503.41829734,92853295.63769049,24572943.077421994,28832253.210841814 + 05/01 10:00:00,0.0,82158374.19802378,2812.0842828603724,10123503.41829734,82158374.19802378,27644560.962099744,32436284.862197039 + 05/01 11:00:00,0.0,66183330.83027397,5060.209488724509,18216754.159408235,66183330.83027397,27644560.962099744,32436284.862197039 + 05/01 12:00:00,0.0,47646939.6599724,5061.518792190468,18221467.651885686,47646939.6599724,27644560.962099744,32436284.862197039 + 05/01 13:00:00,0.0,45788063.42920467,5059.033926699838,18212522.136119419,45788063.42920467,27644560.962099744,32436284.862197039 + 05/01 14:00:00,0.0,65253378.334637288,5059.033926699838,18212522.136119419,65253378.334637288,27644560.962099744,32436284.862197039 + 05/01 15:00:00,0.0,83167278.43719504,5060.209488724509,18216754.159408235,83167278.43719504,27644560.962099744,32436284.862197039 + 05/01 16:00:00,0.0,83825728.85830049,5060.209488724509,18216754.159408235,83825728.85830049,27644560.962099744,32436284.862197039 + 05/01 17:00:00,0.0,73957736.21223283,3935.718491230173,14168586.568428623,73957736.21223283,27644560.962099744,32436284.862197039 + 05/01 18:00:00,0.0,42963232.639727409,2811.227493735838,10120418.977449017,42963232.639727409,27644560.962099744,28832253.210841814 + 05/01 19:00:00,0.0,3385364.492542709,1687.2505697162235,6074102.0509784049,3385364.492542709,15358089.423388744,18020158.25677613 + 05/01 20:00:00,26532058.64835432,0.0,1124.7525870105513,30581167.9615923,0.0,9214853.654033246,10812094.954065679 + 05/01 21:00:00,41961708.252841208,0.0,1124.829387274624,46011094.04702985,0.0,9214853.654033246,10812094.954065679 + 05/01 22:00:00,0.0,0.0,1124.752587010551,4049109.3132379839,0.0,6143235.769355498,3604031.6513552267 + 05/01 23:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,3604031.6513552267 + 05/01 24:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 05/02 01:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/02 02:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/02 03:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/02 04:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/02 05:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/02 06:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/02 07:00:00,207294844.23884524,6869912.799193422,280.87785333592896,208306004.51085455,6869912.799193422,6143235.769355498,1802015.8256776133 + 05/02 08:00:00,47454474.37648788,0.0,562.2118298793429,49478436.96405351,0.0,9214853.654033246,10812094.954065679 + 05/02 09:00:00,0.0,0.0,2810.4843701946526,10117743.732700749,0.0,24572943.077421994,28832253.210841814 + 05/02 10:00:00,0.0,6635246.614940118,2811.059149396714,10119812.93782817,6635246.614940118,27644560.962099744,32436284.862197039 + 05/02 11:00:00,0.0,16255070.764286368,5059.906468914086,18215663.28809071,16255070.764286368,27644560.962099744,32436284.862197039 + 05/02 12:00:00,0.0,21423588.822625929,5061.386641547481,18220991.909570934,21423588.822625929,27644560.962099744,32436284.862197039 + 05/02 13:00:00,0.0,4162945.156218647,5061.386641547481,18220991.909570934,4162945.156218647,27644560.962099744,32436284.862197039 + 05/02 14:00:00,5596250.224370667,0.0,5061.386641547481,23817242.1339416,0.0,27644560.962099744,32436284.862197039 + 05/02 15:00:00,705620.6507132447,0.0,5061.386641547481,18926612.560284176,0.0,27644560.962099744,32436284.862197039 + 05/02 16:00:00,0.0,1932568.5332608119,5061.751709148671,18222306.152935216,1932568.5332608119,27644560.962099744,32436284.862197039 + 05/02 17:00:00,0.0,49810737.22450035,3936.917996004521,14172904.785616275,49810737.22450035,27644560.962099744,32436284.862197039 + 05/02 18:00:00,0.0,61195537.50693897,2812.0842828603724,10123503.41829734,61195537.50693897,27644560.962099744,28832253.210841814 + 05/02 19:00:00,621809.2792401149,1823311.033451959,1687.244080911936,6695887.970523084,1823311.033451959,15358089.423388744,18020158.25677613 + 05/02 20:00:00,54676340.92391019,0.0,1124.829387274624,58725726.71809884,0.0,9214853.654033246,10812094.954065679 + 05/02 21:00:00,57382914.478006478,0.0,1124.829387274624,61432300.272195119,0.0,9214853.654033246,10812094.954065679 + 05/02 22:00:00,0.0,0.0,1124.7525870105517,4049109.3132379839,0.0,6143235.769355498,3604031.6513552267 + 05/02 23:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,3604031.6513552267 + 05/02 24:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 05/03 01:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/03 02:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/03 03:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/03 04:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/03 05:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/03 06:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/03 07:00:00,250569257.49436877,8817307.622355137,280.6467576789864,251579585.8220131,8817307.622355137,6143235.769355498,1802015.8256776133 + 05/03 08:00:00,85895047.5010379,0.0,561.2935153579728,87915704.15632659,0.0,9214853.654033246,10812094.954065679 + 05/03 09:00:00,48907900.526201289,0.0,2808.778533359289,59019503.24629472,0.0,24572943.077421994,28832253.210841814 + 05/03 10:00:00,25510591.163226885,0.0,2810.4843701946526,35628334.89592764,0.0,27644560.962099744,32436284.862197039 + 05/03 11:00:00,2841666.6763114167,0.0,5060.849592564586,21060725.20954393,0.0,27644560.962099744,32436284.862197039 + 05/03 12:00:00,0.0,0.0,5060.849592564586,18219058.53323251,0.0,27644560.962099744,32436284.862197039 + 05/03 13:00:00,0.0,0.0,5060.849592564586,18219058.53323251,0.0,27644560.962099744,32436284.862197039 + 05/03 14:00:00,9724489.666486767,0.0,5059.906468914086,27940152.954577477,0.0,27644560.962099744,32436284.862197039 + 05/03 15:00:00,12095786.820982747,0.0,5058.871866350375,30307725.539844097,0.0,27644560.962099744,32436284.862197039 + 05/03 16:00:00,20556834.664942899,0.0,5057.332315115281,38763230.99935791,0.0,27644560.962099744,32436284.862197039 + 05/03 17:00:00,40511585.778299998,0.0,3932.2899467030049,54667829.58643081,0.0,27644560.962099744,32436284.862197039 + 05/03 18:00:00,60563642.81621219,0.0,2807.592871389315,70670977.15321373,0.0,27644560.962099744,28832253.210841814 + 05/03 19:00:00,93482593.62901011,0.0,1683.8805460739182,99544563.59487622,0.0,15358089.423388744,18020158.25677613 + 05/03 20:00:00,111134407.61471667,0.0,1122.5870307159456,115175720.92529406,0.0,9214853.654033246,10812094.954065679 + 05/03 21:00:00,114706154.39076574,0.0,1121.9811742133275,118745286.61793372,0.0,9214853.654033246,10812094.954065679 + 05/03 22:00:00,0.0,0.0,1121.3038271370706,4036693.7776934548,0.0,6143235.769355498,3604031.6513552267 + 05/03 23:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,3604031.6513552267 + 05/03 24:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/04 01:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/04 02:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/04 03:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/04 04:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 05/04 05:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 05/04 06:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/04 07:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/04 08:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 05/04 09:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/04 10:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/04 11:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/04 12:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/04 13:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/04 14:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/04 15:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/04 16:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/04 17:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/04 18:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/04 19:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/04 20:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/04 21:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/04 22:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/04 23:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/04 24:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/05 01:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/05 02:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/05 03:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/05 04:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/05 05:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/05 06:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/05 07:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/05 08:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/05 09:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/05 10:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/05 11:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/05 12:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/05 13:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/05 14:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/05 15:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/05 16:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/05 17:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/05 18:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/05 19:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/05 20:00:00,0.0,0.0,281.19548845502598,1012303.7584380934,0.0,6143235.769355498,1802015.8256776133 + 05/05 21:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/05 22:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/05 23:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/05 24:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 05/06 01:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/06 02:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/06 03:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/06 04:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/06 05:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 05/06 06:00:00,0.0,0.0,280.32595678426778,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 05/06 07:00:00,151129322.3030219,1924005.9387487076,280.7592871389316,152140055.73672209,1924005.9387487076,6143235.769355498,1802015.8256776133 + 05/06 08:00:00,18599497.432752763,24941498.74170725,562.0968740389305,20623046.179292907,24941498.74170725,9214853.654033246,10812094.954065679 + 05/06 09:00:00,0.0,90963956.67825409,2812.0734681865599,10123464.485471616,90963956.67825409,24572943.077421994,28832253.210841814 + 05/06 10:00:00,0.0,96489469.42474659,2811.9548845502597,10123037.584380934,96489469.42474659,27644560.962099744,32436284.862197039 + 05/06 11:00:00,0.0,77969003.94062475,5060.209488724509,18216754.159408235,77969003.94062475,27644560.962099744,32436284.862197039 + 05/06 12:00:00,0.0,63237149.99012276,5056.034476513249,18201724.115447698,63237149.99012276,27644560.962099744,32436284.862197039 + 05/06 13:00:00,0.0,70485902.95553328,5051.945540179122,18187003.94464484,70485902.95553328,27644560.962099744,32436284.862197039 + 05/06 14:00:00,0.0,97224071.88218765,5056.034476513249,18201724.115447698,97224071.88218765,27644560.962099744,32436284.862197039 + 05/06 15:00:00,0.0,87266231.39923409,5054.310673359228,18195518.42409322,87266231.39923409,27644560.962099744,32436284.862197039 + 05/06 16:00:00,0.0,84124102.16592103,5051.945540179122,18187003.94464484,84124102.16592103,27644560.962099744,32436284.862197039 + 05/06 17:00:00,0.0,84236769.29615098,3929.2909756948718,14145447.512501538,84236769.29615098,27644560.962099744,32436284.862197039 + 05/06 18:00:00,0.0,79864101.47828633,2808.9080425073605,10112068.953026498,79864101.47828633,27644560.962099744,28832253.210841814 + 05/06 19:00:00,0.0,19520123.600533997,1686.344642233279,6070840.712039805,19520123.600533997,15358089.423388744,18020158.25677613 + 05/06 20:00:00,9738088.457800989,0.0,1124.7819538201039,13787303.49155336,0.0,9214853.654033246,10812094.954065679 + 05/06 21:00:00,34682942.76793888,0.0,1124.833713144149,38732344.135257828,0.0,9214853.654033246,10812094.954065679 + 05/06 22:00:00,0.0,0.0,1124.7525870105513,4049109.3132379848,0.0,6143235.769355498,3604031.6513552267 + 05/06 23:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,3604031.6513552267 + 05/06 24:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 05/07 01:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 05/07 02:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/07 03:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/07 04:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/07 05:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/07 06:00:00,0.0,0.0,280.9629063952934,1011466.463023056,0.0,6143235.769355498,1802015.8256776133 + 05/07 07:00:00,71908549.86397159,4411737.415011982,281.04843701946529,72920324.23724169,4411737.415011982,6143235.769355498,1802015.8256776133 + 05/07 08:00:00,0.0,78778699.95949537,562.414693637312,2024692.897094323,78778699.95949537,9214853.654033246,10812094.954065679 + 05/07 09:00:00,0.0,131534798.51648702,2810.5744037221318,10118067.853399674,131534798.51648702,24572943.077421994,28832253.210841814 + 05/07 10:00:00,0.0,135705218.33085496,2806.636411210623,10103891.080358243,135705218.33085496,27644560.962099744,32436284.862197039 + 05/07 11:00:00,0.0,108940793.41470039,5043.494752497416,18156581.1089907,108940793.41470039,27644560.962099744,32436284.862197039 + 05/07 12:00:00,0.0,87244116.95840538,5040.5194558254629,18145870.040971668,87244116.95840538,27644560.962099744,32436284.862197039 + 05/07 13:00:00,0.0,93733663.46379008,5036.656923567859,18131964.92484429,93733663.46379008,27644560.962099744,32436284.862197039 + 05/07 14:00:00,0.0,132097405.04282217,5033.195572411864,18119504.06068271,132097405.04282217,27644560.962099744,32436284.862197039 + 05/07 15:00:00,0.0,173062986.37239454,5033.195572411864,18119504.06068271,173062986.37239454,27644560.962099744,32436284.862197039 + 05/07 16:00:00,0.0,192965484.75751234,5033.195572411864,18119504.06068271,192965484.75751234,27644560.962099744,32436284.862197039 + 05/07 17:00:00,0.0,202300357.69875286,3914.7076674314496,14092947.602753219,202300357.69875286,27644560.962099744,32436284.862197039 + 05/07 18:00:00,0.0,182570632.69200308,2800.2885865697014,10081038.911650924,182570632.69200308,27644560.962099744,28832253.210841814 + 05/07 19:00:00,0.0,87177027.80304703,1682.257288188923,6056126.237480123,87177027.80304703,15358089.423388744,18020158.25677613 + 05/07 20:00:00,0.0,0.0,1123.956856070162,4046244.6818525835,0.0,9214853.654033246,10812094.954065679 + 05/07 21:00:00,9497921.878456176,0.0,1123.956856070162,13544166.560308759,0.0,9214853.654033246,10812094.954065679 + 05/07 22:00:00,0.0,0.0,1123.1801496353838,4043448.538687382,0.0,6143235.769355498,3604031.6513552267 + 05/07 23:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,3604031.6513552267 + 05/07 24:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/08 01:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/08 02:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/08 03:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/08 04:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/08 05:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/08 06:00:00,0.0,0.0,280.87785333592907,1011160.2720093441,0.0,6143235.769355498,1802015.8256776133 + 05/08 07:00:00,47500546.21160891,1469053.4052364124,281.10591493967146,48512527.50539174,1469053.4052364124,6143235.769355498,1802015.8256776133 + 05/08 08:00:00,0.0,64940112.37124081,562.3267120733566,2024376.1634640839,64940112.37124081,9214853.654033246,10812094.954065679 + 05/08 09:00:00,0.0,122801769.58400384,2809.892140175405,10115611.704631459,122801769.58400384,24572943.077421994,28832253.210841814 + 05/08 10:00:00,0.0,143236160.68022926,2805.1431403977505,10098515.3054319,143236160.68022926,27644560.962099744,32436284.862197039 + 05/08 11:00:00,0.0,144241197.12252153,5043.494752497416,18156581.1089907,144241197.12252153,27644560.962099744,32436284.862197039 + 05/08 12:00:00,0.0,148633682.93839599,5028.752104001549,18103507.574405578,148633682.93839599,27644560.962099744,32436284.862197039 + 05/08 13:00:00,0.0,144968968.10951815,5028.752104001549,18103507.574405578,144968968.10951815,27644560.962099744,32436284.862197039 + 05/08 14:00:00,0.0,166350299.8003444,5028.752104001549,18103507.574405578,166350299.8003444,27644560.962099744,32436284.862197039 + 05/08 15:00:00,0.0,175879880.7442547,5028.752104001549,18103507.574405578,175879880.7442547,27644560.962099744,32436284.862197039 + 05/08 16:00:00,0.0,153083511.7488362,5033.195572411864,18119504.06068271,153083511.7488362,27644560.962099744,32436284.862197039 + 05/08 17:00:00,0.0,98257769.42763081,3917.399829441667,14102639.385990002,98257769.42763081,27644560.962099744,32436284.862197039 + 05/08 18:00:00,0.0,60658250.66355921,2798.142735315477,10073313.847135717,60658250.66355921,27644560.962099744,28832253.210841814 + 05/08 19:00:00,0.0,15010283.377073866,1681.1649174991385,6052193.702996898,15010283.377073866,15358089.423388744,18020158.25677613 + 05/08 20:00:00,0.0,0.0,1123.1801496353838,4043448.5386873816,0.0,9214853.654033246,10812094.954065679 + 05/08 21:00:00,11163153.356174587,0.0,1124.2297614888528,15210380.497534458,0.0,9214853.654033246,10812094.954065679 + 05/08 22:00:00,0.0,0.0,1124.6534241467132,4048752.3269281678,0.0,6143235.769355498,3604031.6513552267 + 05/08 23:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,3604031.6513552267 + 05/08 24:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/09 01:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/09 02:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/09 03:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/09 04:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/09 05:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/09 06:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/09 07:00:00,63690385.21554351,0.0,281.1633560366783,64702573.29727554,0.0,6143235.769355498,1802015.8256776133 + 05/09 08:00:00,0.0,20878.108238358982,561.9784280350809,2023122.3409262917,20878.108238358982,9214853.654033246,10812094.954065679 + 05/09 09:00:00,0.0,54237019.136055488,2809.892140175405,10115611.704631459,54237019.136055488,24572943.077421994,28832253.210841814 + 05/09 10:00:00,0.0,60389914.320081908,2807.9503740884595,10108621.346718453,60389914.320081908,27644560.962099744,32436284.862197039 + 05/09 11:00:00,0.0,71775945.55670163,5049.257652715951,18177327.549777423,71775945.55670163,27644560.962099744,32436284.862197039 + 05/09 12:00:00,0.0,71950577.33714688,5040.5194558254629,18145870.040971668,71950577.33714688,27644560.962099744,32436284.862197039 + 05/09 13:00:00,0.0,72434161.04593987,5036.656923567859,18131964.92484429,72434161.04593987,27644560.962099744,32436284.862197039 + 05/09 14:00:00,0.0,108224464.09618253,5028.752104001549,18103507.574405578,108224464.09618253,27644560.962099744,32436284.862197039 + 05/09 15:00:00,0.0,144960321.99386714,5024.808716663643,18089311.379989119,144960321.99386714,27644560.962099744,32436284.862197039 + 05/09 16:00:00,0.0,183209571.21574516,5024.808716663643,18089311.379989119,183209571.21574516,27644560.962099744,32436284.862197039 + 05/09 17:00:00,0.0,191013393.697753,3911.2516364456489,14080505.891204335,191013393.697753,27644560.962099744,32436284.862197039 + 05/09 18:00:00,0.0,162071168.67884136,2798.142735315477,10073313.847135717,162071168.67884136,27644560.962099744,28832253.210841814 + 05/09 19:00:00,0.0,82556749.81566966,1683.0858842386504,6059109.183259142,82556749.81566966,15358089.423388744,18020158.25677613 + 05/09 20:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,9214853.654033246,10812094.954065679 + 05/09 21:00:00,13293275.845754413,0.0,1124.4909974943353,17341443.43673402,0.0,9214853.654033246,10812094.954065679 + 05/09 22:00:00,0.0,0.0,1124.4909974943353,4048167.590979607,0.0,6143235.769355498,3604031.6513552267 + 05/09 23:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,3604031.6513552267 + 05/09 24:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/10 01:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/10 02:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 05/10 03:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/10 04:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 05/10 05:00:00,0.0,0.0,280.87785333592896,1011160.2720093441,0.0,6143235.769355498,1802015.8256776133 + 05/10 06:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/10 07:00:00,10327060.467850792,47698914.85701209,281.20842828603727,11339410.809680524,47698914.85701209,6143235.769355498,1802015.8256776133 + 05/10 08:00:00,0.0,116869023.1188828,561.978428035081,2023122.3409262917,116869023.1188828,9214853.654033246,10812094.954065679 + 05/10 09:00:00,0.0,164011905.9326972,2805.1431403977505,10098515.3054319,164011905.9326972,24572943.077421994,28832253.210841814 + 05/10 10:00:00,0.0,159540448.03047139,2801.9415291652305,10086989.50499483,159540448.03047139,27644560.962099744,32436284.862197039 + 05/10 11:00:00,0.0,133928690.37651016,5028.752104001549,18103507.574405578,133928690.37651016,27644560.962099744,32436284.862197039 + 05/10 12:00:00,0.0,113312916.73523161,5019.789470548218,18071242.093973586,113312916.73523161,27644560.962099744,32436284.862197039 + 05/10 13:00:00,0.0,127396314.25767574,5009.779427979722,18035205.940727,127396314.25767574,27644560.962099744,32436284.862197039 + 05/10 14:00:00,0.0,169554691.88062895,4998.733597011079,17995440.949239885,169554691.88062895,27644560.962099744,32436284.862197039 + 05/10 15:00:00,0.0,214202320.69074423,4992.276563779235,17972195.62960525,214202320.69074423,27644560.962099744,32436284.862197039 + 05/10 16:00:00,0.0,244853577.09991295,4992.276563779235,17972195.62960525,244853577.09991295,27644560.962099744,32436284.862197039 + 05/10 17:00:00,0.0,249408438.67800815,3887.9039087863936,13996454.071631017,249408438.67800815,27644560.962099744,32436284.862197039 + 05/10 18:00:00,0.0,219516166.7043785,2783.2107933220675,10019558.855959442,219516166.7043785,27644560.962099744,28832253.210841814 + 05/10 19:00:00,0.0,123834029.18437936,1676.2507013338498,6034502.524801859,123834029.18437936,15358089.423388744,18020158.25677613 + 05/10 20:00:00,0.0,10886614.352014676,1120.1154346278807,4032415.5646603705,10886614.352014676,9214853.654033246,10812094.954065679 + 05/10 21:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,9214853.654033246,10812094.954065679 + 05/10 22:00:00,0.0,0.0,1121.5048587926154,4037417.4916534156,0.0,6143235.769355498,3604031.6513552267 + 05/10 23:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,3604031.6513552267 + 05/10 24:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/11 01:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/11 02:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/11 03:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/11 04:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/11 05:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/11 06:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/11 07:00:00,0.0,0.0,280.79503740884595,1010862.1346718455,0.0,6143235.769355498,1802015.8256776133 + 05/11 08:00:00,0.0,0.0,280.37621469815385,1009354.3729133537,0.0,6143235.769355498,1802015.8256776133 + 05/11 09:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 05/11 10:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 05/11 11:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 05/11 12:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 05/11 13:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 05/11 14:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 05/11 15:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 05/11 16:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 05/11 17:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 05/11 18:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 05/11 19:00:00,0.0,0.0,278.58103207774578,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 05/11 20:00:00,0.0,0.0,279.8142735315476,1007331.3847135712,0.0,6143235.769355498,1802015.8256776133 + 05/11 21:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 05/11 22:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 05/11 23:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 05/11 24:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/12 01:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/12 02:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/12 03:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/12 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/12 05:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/12 06:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/12 07:00:00,0.0,0.0,280.37621469815385,1009354.3729133537,0.0,6143235.769355498,1802015.8256776133 + 05/12 08:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 05/12 09:00:00,0.0,0.0,279.1560398146469,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 05/12 10:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 05/12 11:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 05/12 12:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 05/12 13:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 05/12 14:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 05/12 15:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 05/12 16:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 05/12 17:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 05/12 18:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 05/12 19:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/12 20:00:00,0.0,0.0,280.66364112106228,1010389.1080358243,0.0,6143235.769355498,1802015.8256776133 + 05/12 21:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/12 22:00:00,0.0,0.0,281.19548845502598,1012303.7584380934,0.0,6143235.769355498,1802015.8256776133 + 05/12 23:00:00,0.0,0.0,281.15831069803257,1012169.9185129171,0.0,6143235.769355498,1802015.8256776133 + 05/12 24:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/13 01:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/13 02:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/13 03:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/13 04:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/13 05:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/13 06:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/13 07:00:00,124246063.64996527,1359207.0669485075,280.87785333592896,125257223.9219746,1359207.0669485075,6143235.769355498,1802015.8256776133 + 05/13 08:00:00,39854176.42018008,0.0,561.7557066718578,41876496.96419877,0.0,9214853.654033246,10812094.954065679 + 05/13 09:00:00,0.0,0.0,2809.629063952934,10114664.630230563,0.0,24572943.077421994,28832253.210841814 + 05/13 10:00:00,0.0,0.0,2810.4843701946526,10117743.732700749,0.0,27644560.962099744,32436284.862197039 + 05/13 11:00:00,0.0,5189340.609831822,5059.906468914086,18215663.28809071,5189340.609831822,27644560.962099744,32436284.862197039 + 05/13 12:00:00,0.0,0.0,5060.849592564586,18219058.53323251,0.0,27644560.962099744,32436284.862197039 + 05/13 13:00:00,0.0,13436934.538953832,5061.386641547481,18220991.909570934,13436934.538953832,27644560.962099744,32436284.862197039 + 05/13 14:00:00,0.0,50653356.43744272,5061.732242735808,18222236.073848908,50653356.43744272,27644560.962099744,32436284.862197039 + 05/13 15:00:00,0.0,77650615.81775262,5061.732242735808,18222236.073848908,77650615.81775262,27644560.962099744,32436284.862197039 + 05/13 16:00:00,0.0,77009089.62762255,5061.732242735808,18222236.073848908,77009089.62762255,27644560.962099744,32436284.862197039 + 05/13 17:00:00,0.0,50838146.406263019,3936.736838370363,14172252.618133307,50838146.406263019,27644560.962099744,32436284.862197039 + 05/13 18:00:00,0.0,48483158.74619631,2812.0842828603724,10123503.41829734,48483158.74619631,27644560.962099744,28832253.210841814 + 05/13 19:00:00,0.0,21168443.40480756,1687.244080911936,6074078.691282969,21168443.40480756,15358089.423388744,18020158.25677613 + 05/13 20:00:00,37720384.47748248,0.0,1124.6332427921303,41769064.151534158,0.0,9214853.654033246,10812094.954065679 + 05/13 21:00:00,62555281.49191314,0.0,1124.4236597586858,66603206.667044419,0.0,9214853.654033246,10812094.954065679 + 05/13 22:00:00,0.0,0.0,1124.4236597586863,4047925.175131269,0.0,6143235.769355498,3604031.6513552267 + 05/13 23:00:00,0.0,0.0,281.15831069803257,1012169.9185129171,0.0,6143235.769355498,3604031.6513552267 + 05/13 24:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 05/14 01:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/14 02:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/14 03:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/14 04:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/14 05:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/14 06:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/14 07:00:00,197548714.92337904,6046142.106588268,280.9629063952934,198560181.38640214,6046142.106588268,6143235.769355498,1802015.8256776133 + 05/14 08:00:00,41014525.44770478,0.0,562.0968740389305,43038074.19424493,0.0,9214853.654033246,10812094.954065679 + 05/14 09:00:00,0.0,24396446.88600868,2811.5831069803255,10121699.185129172,24396446.88600868,24572943.077421994,28832253.210841814 + 05/14 10:00:00,0.0,40611097.56939791,2811.059149396714,10119812.93782817,40611097.56939791,27644560.962099744,32436284.862197039 + 05/14 11:00:00,0.0,32859056.902196614,5061.386641547481,18220991.909570934,32859056.902196614,27644560.962099744,32436284.862197039 + 05/14 12:00:00,0.0,18088427.08810815,5060.849592564586,18219058.53323251,18088427.08810815,27644560.962099744,32436284.862197039 + 05/14 13:00:00,0.0,19595877.550316927,5061.518792190468,18221467.651885686,19595877.550316927,27644560.962099744,32436284.862197039 + 05/14 14:00:00,0.0,41263793.74064051,5061.518792190468,18221467.651885686,41263793.74064051,27644560.962099744,32436284.862197039 + 05/14 15:00:00,0.0,63080010.09691634,5061.751709148671,18222306.152935216,63080010.09691634,27644560.962099744,32436284.862197039 + 05/14 16:00:00,0.0,76499281.72320996,5061.518792190468,18221467.651885686,76499281.72320996,27644560.962099744,32436284.862197039 + 05/14 17:00:00,0.0,113656625.98529023,3936.736838370363,14172252.618133307,113656625.98529023,27644560.962099744,32436284.862197039 + 05/14 18:00:00,0.0,97504253.44510973,2812.0842828603724,10123503.41829734,97504253.44510973,27644560.962099744,28832253.210841814 + 05/14 19:00:00,0.0,29864639.10365243,1686.9498641881954,6073019.511077503,29864639.10365243,15358089.423388744,18020158.25677613 + 05/14 20:00:00,47761592.554739419,0.0,1122.5870307159456,51802905.86531682,0.0,9214853.654033246,10812094.954065679 + 05/14 21:00:00,75499386.15455774,0.0,1123.0371485557262,79542319.88935834,0.0,9214853.654033246,10812094.954065679 + 05/14 22:00:00,0.0,0.0,1122.5870307159453,4041313.3105774039,0.0,6143235.769355498,3604031.6513552267 + 05/14 23:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,3604031.6513552267 + 05/14 24:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/15 01:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 05/15 02:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 05/15 03:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/15 04:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/15 05:00:00,0.0,0.0,279.5531563727839,1006391.362942022,0.0,6143235.769355498,1802015.8256776133 + 05/15 06:00:00,0.0,0.0,280.4952935533318,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/15 07:00:00,64960877.09531149,8691978.096125707,281.10591493967146,65972858.38909432,8691978.096125707,6143235.769355498,1802015.8256776133 + 05/15 08:00:00,0.0,90991598.44113796,562.3762935052756,2024554.656618992,90991598.44113796,9214853.654033246,10812094.954065679 + 05/15 09:00:00,0.0,126500366.57965404,2811.633560366782,10121880.817320416,126500366.57965404,24572943.077421994,28832253.210841814 + 05/15 10:00:00,0.0,124114354.16773005,2808.9080425073605,10112068.953026498,124114354.16773005,27644560.962099744,32436284.862197039 + 05/15 11:00:00,0.0,100057731.61924494,5046.771864566769,18168378.712440369,100057731.61924494,27644560.962099744,32436284.862197039 + 05/15 12:00:00,0.0,82986359.9408699,5036.656923567859,18131964.92484429,82986359.9408699,27644560.962099744,32436284.862197039 + 05/15 13:00:00,0.0,102870283.30987688,5024.808716663643,18089311.379989119,102870283.30987688,27644560.962099744,32436284.862197039 + 05/15 14:00:00,0.0,149668706.67851893,5009.779427979722,18035205.940727,149668706.67851893,27644560.962099744,32436284.862197039 + 05/15 15:00:00,0.0,194607380.70184509,5003.882041634825,18013975.34988537,194607380.70184509,27644560.962099744,32436284.862197039 + 05/15 16:00:00,0.0,210432588.1465035,5003.882041634825,18013975.34988537,210432588.1465035,27644560.962099744,32436284.862197039 + 05/15 17:00:00,0.0,215945162.00071506,3891.908254604863,14010869.716577508,215945162.00071506,27644560.962099744,32436284.862197039 + 05/15 18:00:00,0.0,187738605.8427508,2783.2107933220675,10019558.855959442,187738605.8427508,27644560.962099744,28832253.210841814 + 05/15 19:00:00,0.0,97990254.82880938,1680.1731519418209,6048623.346990555,97990254.82880938,15358089.423388744,18020158.25677613 + 05/15 20:00:00,0.0,849490.4282945673,1121.5048587926154,4037417.4916534156,849490.4282945673,9214853.654033246,10812094.954065679 + 05/15 21:00:00,924638.8102994941,0.0,1123.1801496353838,4968087.348986875,0.0,9214853.654033246,10812094.954065679 + 05/15 22:00:00,0.0,0.0,1123.956856070162,4046244.6818525835,0.0,6143235.769355498,3604031.6513552267 + 05/15 23:00:00,0.0,0.0,280.66364112106228,1010389.1080358243,0.0,6143235.769355498,3604031.6513552267 + 05/15 24:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/16 01:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/16 02:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/16 03:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/16 04:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/16 05:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/16 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/16 07:00:00,31096620.924336249,0.0,281.0574403722132,32108427.709676215,0.0,6143235.769355498,1802015.8256776133 + 05/16 08:00:00,4392994.106530556,0.0,561.7816085014721,6415407.897135856,0.0,9214853.654033246,10812094.954065679 + 05/16 09:00:00,0.0,56810341.959126669,2805.1431403977505,10098515.3054319,56810341.959126669,24572943.077421994,28832253.210841814 + 05/16 10:00:00,0.0,121440568.76641897,2801.9415291652305,10086989.50499483,121440568.76641897,27644560.962099744,32436284.862197039 + 05/16 11:00:00,0.0,117682190.65683672,5033.195572411864,18119504.06068271,117682190.65683672,27644560.962099744,32436284.862197039 + 05/16 12:00:00,0.0,130178902.96963857,5009.779427979722,18035205.940727,130178902.96963857,27644560.962099744,32436284.862197039 + 05/16 13:00:00,0.0,150966554.93475194,4998.733597011079,17995440.949239885,150966554.93475194,27644560.962099744,32436284.862197039 + 05/16 14:00:00,0.0,169731632.85579247,4992.276563779235,17972195.62960525,169731632.85579247,27644560.962099744,32436284.862197039 + 05/16 15:00:00,0.0,204003054.89096643,4998.733597011079,17995440.949239885,204003054.89096643,27644560.962099744,32436284.862197039 + 05/16 16:00:00,0.0,226727329.88053964,5003.882041634825,18013975.34988537,226727329.88053964,27644560.962099744,32436284.862197039 + 05/16 17:00:00,0.0,217028294.72523243,3896.4951106508935,14027382.398343217,217028294.72523243,27644560.962099744,32436284.862197039 + 05/16 18:00:00,0.0,186519219.5009059,2788.771928082343,10039578.941096435,186519219.5009059,27644560.962099744,28832253.210841814 + 05/16 19:00:00,0.0,102726653.86586479,1678.8856411892862,6043988.30828143,102726653.86586479,15358089.423388744,18020158.25677613 + 05/16 20:00:00,0.0,1944903.8101582055,1120.7766116660924,4034795.801997932,1944903.8101582055,9214853.654033246,10812094.954065679 + 05/16 21:00:00,0.0,0.0,1121.5048587926154,4037417.4916534156,0.0,9214853.654033246,10812094.954065679 + 05/16 22:00:00,0.0,0.0,1122.6545644842493,4041556.4321432977,0.0,6143235.769355498,3604031.6513552267 + 05/16 23:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,3604031.6513552267 + 05/16 24:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/17 01:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/17 02:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/17 03:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/17 04:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/17 05:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/17 06:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/17 07:00:00,77195271.8053587,0.0,280.89080425073606,78206478.70066135,0.0,6143235.769355498,1802015.8256776133 + 05/17 08:00:00,19430718.931571414,0.0,561.5900748176919,21452443.200915103,0.0,9214853.654033246,10812094.954065679 + 05/17 09:00:00,0.0,7569607.238005707,2810.5744037221318,10118067.853399674,7569607.238005707,24572943.077421994,28832253.210841814 + 05/17 10:00:00,0.0,19356337.892728844,2811.227493735838,10120418.977449017,19356337.892728844,27644560.962099744,32436284.862197039 + 05/17 11:00:00,0.0,17257588.53192891,5057.805852315729,18208101.068336626,17257588.53192891,27644560.962099744,32436284.862197039 + 05/17 12:00:00,0.0,36046052.07076751,5046.771864566769,18168378.712440369,36046052.07076751,27644560.962099744,32436284.862197039 + 05/17 13:00:00,0.0,56318740.76141749,5043.494752497416,18156581.1089907,56318740.76141749,27644560.962099744,32436284.862197039 + 05/17 14:00:00,0.0,69645108.84464517,5028.752104001549,18103507.574405578,69645108.84464517,27644560.962099744,32436284.862197039 + 05/17 15:00:00,0.0,100643254.43539226,5028.752104001549,18103507.574405578,100643254.43539226,27644560.962099744,32436284.862197039 + 05/17 16:00:00,0.0,147543380.02298586,5024.808716663643,18089311.379989119,147543380.02298586,27644560.962099744,32436284.862197039 + 05/17 17:00:00,0.0,191055477.96755246,3908.184557405055,14069464.406658197,191055477.96755246,27644560.962099744,32436284.862197039 + 05/17 18:00:00,0.0,179223879.76398606,2791.560398146468,10049617.433327284,179223879.76398606,27644560.962099744,28832253.210841814 + 05/17 19:00:00,0.0,94630340.01142533,1682.257288188923,6056126.237480123,94630340.01142533,15358089.423388744,18020158.25677613 + 05/17 20:00:00,0.0,0.0,1122.0572561591003,4039406.122172761,0.0,9214853.654033246,10812094.954065679 + 05/17 21:00:00,10716930.56346397,0.0,1123.956856070162,14763175.245316554,0.0,9214853.654033246,10812094.954065679 + 05/17 22:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,6143235.769355498,3604031.6513552267 + 05/17 23:00:00,0.0,0.0,281.0574403722132,1011806.7853399674,0.0,6143235.769355498,3604031.6513552267 + 05/17 24:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/18 01:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/18 02:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/18 03:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/18 04:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/18 05:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/18 06:00:00,0.0,0.0,281.195488455026,1012303.7584380934,0.0,6143235.769355498,1802015.8256776133 + 05/18 07:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/18 08:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/18 09:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/18 10:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 05/18 11:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 05/18 12:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 05/18 13:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 05/18 14:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 05/18 15:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 05/18 16:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 05/18 17:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 05/18 18:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 05/18 19:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 05/18 20:00:00,0.0,0.0,278.8771928082344,1003957.8941096438,0.0,6143235.769355498,1802015.8256776133 + 05/18 21:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 05/18 22:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 05/18 23:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 05/18 24:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 05/19 01:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 05/19 02:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 05/19 03:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 05/19 04:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/19 05:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 05/19 06:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 05/19 07:00:00,0.0,0.0,278.8771928082343,1003957.8941096437,0.0,6143235.769355498,1802015.8256776133 + 05/19 08:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 05/19 09:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 05/19 10:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 05/19 11:00:00,0.0,0.0,274.6139225997442,988610.1213590793,0.0,6143235.769355498,1802015.8256776133 + 05/19 12:00:00,0.0,0.0,273.2959715016912,983865.4974060884,0.0,6143235.769355498,1802015.8256776133 + 05/19 13:00:00,0.0,0.0,272.7733548618156,981984.0775025362,0.0,6143235.769355498,1802015.8256776133 + 05/19 14:00:00,0.0,0.0,271.7758665381043,978393.1195371755,0.0,6143235.769355498,1802015.8256776133 + 05/19 15:00:00,0.0,0.0,272.32621797395168,980374.384706226,0.0,6143235.769355498,1802015.8256776133 + 05/19 16:00:00,0.0,0.0,271.2106542962435,976358.3554664765,0.0,6143235.769355498,1802015.8256776133 + 05/19 17:00:00,0.0,0.0,272.3262179739517,980374.3847062262,0.0,6143235.769355498,1802015.8256776133 + 05/19 18:00:00,0.0,0.0,274.6139225997442,988610.1213590792,0.0,6143235.769355498,1802015.8256776133 + 05/19 19:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 05/19 20:00:00,0.0,0.0,277.0369333783289,997332.9601619836,0.0,6143235.769355498,1802015.8256776133 + 05/19 21:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 05/19 22:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 05/19 23:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 05/19 24:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 05/20 01:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 05/20 02:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 05/20 03:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 05/20 04:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 05/20 05:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 05/20 06:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 05/20 07:00:00,0.0,127060137.90005754,278.8771928082343,1003957.8941096435,127060137.90005754,6143235.769355498,1802015.8256776133 + 05/20 08:00:00,0.0,161311987.84033749,555.9868935149806,2001552.8166539302,161311987.84033749,9214853.654033246,10812094.954065679 + 05/20 09:00:00,0.0,214309288.10436837,2773.486979877353,9984553.12755847,214309288.10436837,24572943.077421994,28832253.210841814 + 05/20 10:00:00,0.0,188920550.79457397,2766.475342609733,9959311.23339504,188920550.79457397,27644560.962099744,32436284.862197039 + 05/20 11:00:00,0.0,180960741.23636625,4958.187575192403,17849475.27069265,180960741.23636625,27644560.962099744,32436284.862197039 + 05/20 12:00:00,0.0,179059264.5363407,4958.187575192403,17849475.27069265,179059264.5363407,27644560.962099744,32436284.862197039 + 05/20 13:00:00,0.0,190699386.8492818,4951.427083625727,17825137.501052619,190699386.8492818,27644560.962099744,32436284.862197039 + 05/20 14:00:00,0.0,174750691.90192855,4973.587050109994,17904913.38039598,174750691.90192855,27644560.962099744,32436284.862197039 + 05/20 15:00:00,0.0,98675815.18502265,5003.882041634825,18013975.34988537,98675815.18502265,27644560.962099744,32436284.862197039 + 05/20 16:00:00,0.0,65756427.15406289,5024.808716663643,18089311.379989119,65756427.15406289,27644560.962099744,32436284.862197039 + 05/20 17:00:00,0.0,59904705.87604828,3914.7076674314496,14092947.602753219,59904705.87604828,27644560.962099744,32436284.862197039 + 05/20 18:00:00,0.0,35270289.19033684,2796.2197624510356,10066391.144823729,35270289.19033684,27644560.962099744,28832253.210841814 + 05/20 19:00:00,0.0,0.0,1680.1731519418209,6048623.346990555,0.0,15358089.423388744,18020158.25677613 + 05/20 20:00:00,15782262.858070773,0.0,1121.5048587926154,19819680.349724186,0.0,9214853.654033246,10812094.954065679 + 05/20 21:00:00,23827621.962433168,0.0,1121.5048587926154,27865039.454086584,0.0,9214853.654033246,10812094.954065679 + 05/20 22:00:00,0.0,0.0,1121.5048587926154,4037417.491653415,0.0,6143235.769355498,3604031.6513552267 + 05/20 23:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,3604031.6513552267 + 05/20 24:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/21 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/21 02:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/21 03:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 05/21 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/21 05:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/21 06:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/21 07:00:00,46351711.3427146,0.0,281.0574403722132,47363518.12805458,0.0,6143235.769355498,1802015.8256776133 + 05/21 08:00:00,0.0,23254378.993866844,561.7816085014721,2022413.7906052995,23254378.993866844,9214853.654033246,10812094.954065679 + 05/21 09:00:00,0.0,62054368.61713902,2805.1431403977505,10098515.3054319,62054368.61713902,24572943.077421994,28832253.210841814 + 05/21 10:00:00,0.0,105724213.5824978,2801.9415291652305,10086989.50499483,105724213.5824978,27644560.962099744,32436284.862197039 + 05/21 11:00:00,0.0,121956434.7498694,5033.195572411864,18119504.06068271,121956434.7498694,27644560.962099744,32436284.862197039 + 05/21 12:00:00,0.0,127576705.8853118,5036.656923567859,18131964.92484429,127576705.8853118,27644560.962099744,32436284.862197039 + 05/21 13:00:00,0.0,123433125.78380469,5033.195572411864,18119504.06068271,123433125.78380469,27644560.962099744,32436284.862197039 + 05/21 14:00:00,0.0,124628723.23136673,5040.5194558254629,18145870.040971668,124628723.23136673,27644560.962099744,32436284.862197039 + 05/21 15:00:00,0.0,105914448.33908506,5043.494752497416,18156581.1089907,105914448.33908506,27644560.962099744,32436284.862197039 + 05/21 16:00:00,0.0,84521349.92415294,5043.494752497416,18156581.1089907,84521349.92415294,27644560.962099744,32436284.862197039 + 05/21 17:00:00,0.0,70846066.2499351,3925.267005774153,14130961.220786952,70846066.2499351,27644560.962099744,32436284.862197039 + 05/21 18:00:00,0.0,47783611.09454065,2801.9415291652305,10086989.50499483,47783611.09454065,27644560.962099744,28832253.210841814 + 05/21 19:00:00,0.0,19105269.59709352,1683.0858842386504,6059109.183259142,19105269.59709352,15358089.423388744,18020158.25677613 + 05/21 20:00:00,0.0,0.0,1122.6545644842493,4041556.4321432977,0.0,9214853.654033246,10812094.954065679 + 05/21 21:00:00,16601845.018441845,0.0,1123.956856070162,20648089.700294429,0.0,9214853.654033246,10812094.954065679 + 05/21 22:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,6143235.769355498,3604031.6513552267 + 05/21 23:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,3604031.6513552267 + 05/21 24:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/22 01:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/22 02:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/22 03:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/22 04:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/22 05:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/22 06:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/22 07:00:00,112239516.59570925,0.0,281.20842828603727,113251866.93753897,0.0,6143235.769355498,1802015.8256776133 + 05/22 08:00:00,26129318.794780196,0.0,562.4168565720745,28154019.478439664,0.0,9214853.654033246,10812094.954065679 + 05/22 09:00:00,0.0,57879216.71454657,2811.633560366782,10121880.817320416,57879216.71454657,24572943.077421994,28832253.210841814 + 05/22 10:00:00,0.0,76400260.47718297,2810.5744037221318,10118067.853399674,76400260.47718297,27644560.962099744,32436284.862197039 + 05/22 11:00:00,0.0,45626998.43706393,5057.805852315729,18208101.068336626,45626998.43706393,27644560.962099744,32436284.862197039 + 05/22 12:00:00,0.0,53578812.44196395,5056.034476513249,18201724.115447698,53578812.44196395,27644560.962099744,32436284.862197039 + 05/22 13:00:00,0.0,59654888.80205701,5049.257652715951,18177327.549777423,59654888.80205701,27644560.962099744,32436284.862197039 + 05/22 14:00:00,0.0,71922340.69791463,5051.945540179122,18187003.94464484,71922340.69791463,27644560.962099744,32436284.862197039 + 05/22 15:00:00,0.0,95610346.9295292,5049.257652715951,18177327.549777423,95610346.9295292,27644560.962099744,32436284.862197039 + 05/22 16:00:00,0.0,122893961.76373033,5036.656923567859,18131964.92484429,122893961.76373033,27644560.962099744,32436284.862197039 + 05/22 17:00:00,0.0,143356192.005622,3920.404021197581,14113454.476311293,143356192.005622,27644560.962099744,32436284.862197039 + 05/22 18:00:00,0.0,134789052.39019726,2803.762146981538,10093543.729133537,134789052.39019726,27644560.962099744,28832253.210841814 + 05/22 19:00:00,0.0,77527344.18202585,1684.7702244530759,6065172.808031073,77527344.18202585,15358089.423388744,18020158.25677613 + 05/22 20:00:00,4124250.5045162506,205067.5146032531,1124.4909974943353,8172418.095495857,205067.5146032531,9214853.654033246,10812094.954065679 + 05/22 21:00:00,37383587.898417,0.0,1124.829387274624,41432973.692605648,0.0,9214853.654033246,10812094.954065679 + 05/22 22:00:00,0.0,0.0,1124.1937480778616,4047097.4930803,0.0,6143235.769355498,3604031.6513552267 + 05/22 23:00:00,0.0,0.0,280.9629063952934,1011466.4630230563,0.0,6143235.769355498,3604031.6513552267 + 05/22 24:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/23 01:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/23 02:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 05/23 03:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/23 04:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 05/23 05:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 05/23 06:00:00,0.0,0.0,280.17123211014089,1008616.4355965064,0.0,6143235.769355498,1802015.8256776133 + 05/23 07:00:00,51829209.9848006,0.0,280.3259567842677,52838383.42922398,0.0,6143235.769355498,1802015.8256776133 + 05/23 08:00:00,0.0,50217983.14748693,561.5185742778631,2021466.8674003073,50217983.14748693,9214853.654033246,10812094.954065679 + 05/23 09:00:00,0.0,89539658.6997657,2808.778533359289,10111602.72009344,89539658.6997657,24572943.077421994,28832253.210841814 + 05/23 10:00:00,0.0,83756812.73376705,2809.629063952934,10114664.630230563,83756812.73376705,27644560.962099744,32436284.862197039 + 05/23 11:00:00,0.0,60485168.435085248,5060.849592564586,18219058.53323251,60485168.435085248,27644560.962099744,32436284.862197039 + 05/23 12:00:00,0.0,42774767.850176889,5061.732242735808,18222236.073848908,42774767.850176889,27644560.962099744,32436284.862197039 + 05/23 13:00:00,0.0,51614950.023926127,5060.940408660208,18219385.471176749,51614950.023926127,27644560.962099744,32436284.862197039 + 05/23 14:00:00,0.0,89784657.77137086,5060.209488724509,18216754.159408235,89784657.77137086,27644560.962099744,32436284.862197039 + 05/23 15:00:00,0.0,142913880.58406724,5057.805852315729,18208101.068336626,142913880.58406724,27644560.962099744,32436284.862197039 + 05/23 16:00:00,0.0,165258064.78548766,5054.310673359228,18195518.42409322,165258064.78548766,27644560.962099744,32436284.862197039 + 05/23 17:00:00,0.0,154831276.0405814,3927.20039655685,14137921.42760466,154831276.0405814,27644560.962099744,32436284.862197039 + 05/23 18:00:00,0.0,154495875.68113847,2807.9503740884595,10108621.346718453,154495875.68113847,27644560.962099744,28832253.210841814 + 05/23 19:00:00,0.0,82814765.09234058,1686.344642233279,6070840.712039805,82814765.09234058,15358089.423388744,18020158.25677613 + 05/23 20:00:00,4265235.831472452,0.0,1124.833713144149,8314637.198791388,0.0,9214853.654033246,10812094.954065679 + 05/23 21:00:00,33903443.4354343,0.0,1124.7819538201039,37952658.46918668,0.0,9214853.654033246,10812094.954065679 + 05/23 22:00:00,0.0,0.0,1124.63324279213,4048679.6740516687,0.0,6143235.769355498,3604031.6513552267 + 05/23 23:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,3604031.6513552267 + 05/23 24:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 05/24 01:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/24 02:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/24 03:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 05/24 04:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 05/24 05:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 05/24 06:00:00,0.0,0.0,280.8778533359289,1011160.2720093441,0.0,6143235.769355498,1802015.8256776133 + 05/24 07:00:00,25839346.002559738,34613106.23830766,281.15831069803257,26851515.921072648,34613106.23830766,6143235.769355498,1802015.8256776133 + 05/24 08:00:00,0.0,97347837.36605907,562.4168565720745,2024700.683659468,97347837.36605907,9214853.654033246,10812094.954065679 + 05/24 09:00:00,0.0,127364072.95186883,2811.633560366782,10121880.817320416,127364072.95186883,24572943.077421994,28832253.210841814 + 05/24 10:00:00,0.0,104048898.53238891,2810.5744037221318,10118067.853399674,104048898.53238891,27644560.962099744,32436284.862197039 + 05/24 11:00:00,0.0,94721472.63633177,5057.805852315729,18208101.068336626,94721472.63633177,27644560.962099744,32436284.862197039 + 05/24 12:00:00,0.0,91355931.39444787,5057.805852315729,18208101.068336626,91355931.39444787,27644560.962099744,32436284.862197039 + 05/24 13:00:00,0.0,101695595.91552085,5051.945540179122,18187003.94464484,101695595.91552085,27644560.962099744,32436284.862197039 + 05/24 14:00:00,0.0,131311480.32062508,5049.257652715951,18177327.549777423,131311480.32062508,27644560.962099744,32436284.862197039 + 05/24 15:00:00,0.0,129587855.8112675,5049.257652715951,18177327.549777423,129587855.8112675,27644560.962099744,32436284.862197039 + 05/24 16:00:00,0.0,123336734.69604679,5049.257652715951,18177327.549777423,123336734.69604679,27644560.962099744,32436284.862197039 + 05/24 17:00:00,0.0,66615149.179155427,3927.20039655685,14137921.42760466,66615149.179155427,27644560.962099744,32436284.862197039 + 05/24 18:00:00,0.0,38200232.79362086,2805.1431403977505,10098515.3054319,38200232.79362086,27644560.962099744,28832253.210841814 + 05/24 19:00:00,0.0,3638729.51969258,1684.7702244530759,6065172.808031073,3638729.51969258,15358089.423388744,18020158.25677613 + 05/24 20:00:00,10503420.688563066,0.0,1122.6545644842493,14544977.120706365,0.0,9214853.654033246,10812094.954065679 + 05/24 21:00:00,34558397.651607949,0.0,1123.1801496353838,38601846.19029533,0.0,9214853.654033246,10812094.954065679 + 05/24 22:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,6143235.769355498,3604031.6513552267 + 05/24 23:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,3604031.6513552267 + 05/24 24:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/25 01:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/25 02:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/25 03:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/25 04:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/25 05:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/25 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/25 07:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/25 08:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/25 09:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/25 10:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/25 11:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/25 12:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/25 13:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/25 14:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/25 15:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/25 16:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/25 17:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/25 18:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/25 19:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/25 20:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/25 21:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/25 22:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/25 23:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/25 24:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/26 01:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/26 02:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/26 03:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/26 04:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/26 05:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/26 06:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/26 07:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/26 08:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/26 09:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/26 10:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/26 11:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/26 12:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/26 13:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 05/26 14:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/26 15:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/26 16:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 05/26 17:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/26 18:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/26 19:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/26 20:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/26 21:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/26 22:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/26 23:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/26 24:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/27 01:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/27 02:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/27 03:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/27 04:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/27 05:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/27 06:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/27 07:00:00,183581233.76196287,4788868.307328577,281.18814675263777,184593511.09027238,4788868.307328577,6143235.769355498,1802015.8256776133 + 05/27 08:00:00,84000029.3588085,0.0,562.3166213960651,86024369.19583434,0.0,9214853.654033246,10812094.954065679 + 05/27 09:00:00,37946188.12256067,0.0,2811.5831069803255,48067887.30768986,0.0,24572943.077421994,28832253.210841814 + 05/27 10:00:00,9975416.018238128,0.0,2811.881467526378,20098189.30133309,0.0,27644560.962099744,32436284.862197039 + 05/27 11:00:00,0.0,0.0,5061.518792190468,18221467.651885686,0.0,27644560.962099744,32436284.862197039 + 05/27 12:00:00,0.0,20971331.851627269,5060.209488724509,18216754.159408235,20971331.851627269,27644560.962099744,32436284.862197039 + 05/27 13:00:00,0.0,13755984.64974279,5060.209488724509,18216754.159408235,13755984.64974279,27644560.962099744,32436284.862197039 + 05/27 14:00:00,0.0,36697302.23590298,5060.940408660208,18219385.471176749,36697302.23590298,27644560.962099744,32436284.862197039 + 05/27 15:00:00,0.0,46481931.462220977,5057.805852315729,18208101.068336626,46481931.462220977,27644560.962099744,32436284.862197039 + 05/27 16:00:00,0.0,31619246.710809858,5059.033926699838,18212522.136119419,31619246.710809858,27644560.962099744,32436284.862197039 + 05/27 17:00:00,0.0,33579796.04839793,3935.718491230173,14168586.568428623,33579796.04839793,27644560.962099744,32436284.862197039 + 05/27 18:00:00,0.0,19413671.910328378,2811.227493735838,10120418.977449017,19413671.910328378,27644560.962099744,28832253.210841814 + 05/27 19:00:00,0.0,0.0,1686.736496241503,6072251.386469411,0.0,15358089.423388744,18020158.25677613 + 05/27 20:00:00,47208352.12114614,0.0,1124.7525870105513,51257461.43438413,0.0,9214853.654033246,10812094.954065679 + 05/27 21:00:00,54264308.853754628,0.0,1124.7525870105513,58313418.16699261,0.0,9214853.654033246,10812094.954065679 + 05/27 22:00:00,0.0,0.0,1124.8293872746243,4049385.794188646,0.0,6143235.769355498,3604031.6513552267 + 05/27 23:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,3604031.6513552267 + 05/27 24:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/28 01:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 05/28 02:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 05/28 03:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 05/28 04:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/28 05:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 05/28 06:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 05/28 07:00:00,69324192.08748673,0.0,281.10591493967146,70336173.38126956,0.0,6143235.769355498,1802015.8256776133 + 05/28 08:00:00,34089084.44614622,0.0,562.414693637312,36113777.34324054,0.0,9214853.654033246,10812094.954065679 + 05/28 09:00:00,0.0,49578302.01240219,2810.5744037221318,10118067.853399674,49578302.01240219,24572943.077421994,28832253.210841814 + 05/28 10:00:00,0.0,108819636.49933498,2807.9503740884595,10108621.346718453,108819636.49933498,27644560.962099744,32436284.862197039 + 05/28 11:00:00,0.0,92604628.00076266,5046.771864566769,18168378.712440369,92604628.00076266,27644560.962099744,32436284.862197039 + 05/28 12:00:00,0.0,73662615.38300628,5040.5194558254629,18145870.040971668,73662615.38300628,27644560.962099744,32436284.862197039 + 05/28 13:00:00,0.0,80126008.52697833,5036.656923567859,18131964.92484429,80126008.52697833,27644560.962099744,32436284.862197039 + 05/28 14:00:00,0.0,120358429.3679175,5033.195572411864,18119504.06068271,120358429.3679175,27644560.962099744,32436284.862197039 + 05/28 15:00:00,0.0,160869425.06024073,5028.752104001549,18103507.574405578,160869425.06024073,27644560.962099744,32436284.862197039 + 05/28 16:00:00,0.0,181534774.3170922,5028.752104001549,18103507.574405578,181534774.3170922,27644560.962099744,32436284.862197039 + 05/28 17:00:00,0.0,166929293.7929802,3911.2516364456489,14080505.891204335,166929293.7929802,27644560.962099744,32436284.862197039 + 05/28 18:00:00,0.0,162304625.9513041,2793.7511688897495,10057504.208003099,162304625.9513041,27644560.962099744,28832253.210841814 + 05/28 19:00:00,0.0,92888434.95852877,1680.1731519418209,6048623.346990555,92888434.95852877,15358089.423388744,18020158.25677613 + 05/28 20:00:00,0.0,5169158.394469895,1122.6545644842493,4041556.4321432977,5169158.394469895,9214853.654033246,10812094.954065679 + 05/28 21:00:00,12044701.106090062,0.0,1124.6534241467132,16093453.43301823,0.0,9214853.654033246,10812094.954065679 + 05/28 22:00:00,0.0,0.0,1124.4909974943353,4048167.590979607,0.0,6143235.769355498,3604031.6513552267 + 05/28 23:00:00,0.0,0.0,281.0574403722132,1011806.7853399674,0.0,6143235.769355498,3604031.6513552267 + 05/28 24:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/29 01:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/29 02:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/29 03:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/29 04:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 05/29 05:00:00,0.0,0.0,281.15831069803257,1012169.9185129171,0.0,6143235.769355498,1802015.8256776133 + 05/29 06:00:00,0.0,0.0,281.12274937358378,1012041.8977449016,0.0,6143235.769355498,1802015.8256776133 + 05/29 07:00:00,0.0,74476130.55545306,280.9892140175405,1011561.1704631458,74476130.55545306,6143235.769355498,1802015.8256776133 + 05/29 08:00:00,0.0,126009390.10176739,561.0286280795501,2019703.0610863805,126009390.10176739,9214853.654033246,10812094.954065679 + 05/29 09:00:00,0.0,159216978.29243339,2803.762146981538,10093543.729133537,159216978.29243339,24572943.077421994,28832253.210841814 + 05/29 10:00:00,0.0,154230220.6892599,2800.2885865697014,10081038.911650924,154230220.6892599,27644560.962099744,32436284.862197039 + 05/29 11:00:00,0.0,132549635.03503903,5024.808716663643,18089311.379989119,132549635.03503903,27644560.962099744,32436284.862197039 + 05/29 12:00:00,0.0,113450255.15055609,5014.458577399421,18052050.878637919,113450255.15055609,27644560.962099744,32436284.862197039 + 05/29 13:00:00,0.0,124080725.4291347,4998.733597011079,17995440.949239885,124080725.4291347,27644560.962099744,32436284.862197039 + 05/29 14:00:00,0.0,163470477.87093965,4992.276563779235,17972195.62960525,163470477.87093965,27644560.962099744,32436284.862197039 + 05/29 15:00:00,0.0,212559643.84629516,4986.664800809918,17951993.282915705,212559643.84629516,27644560.962099744,32436284.862197039 + 05/29 16:00:00,0.0,243165531.7719078,4986.664800809918,17951993.282915705,243165531.7719078,27644560.962099744,32436284.862197039 + 05/29 17:00:00,0.0,251275739.5118837,3882.8817718282937,13978374.378581858,251275739.5118837,27644560.962099744,32436284.862197039 + 05/29 18:00:00,0.0,232048120.3289195,2777.07422056171,9997467.194022155,232048120.3289195,27644560.962099744,28832253.210841814 + 05/29 19:00:00,0.0,149133455.35276995,1674.9362388878809,6029770.459996371,149133455.35276995,15358089.423388744,18020158.25677613 + 05/29 20:00:00,0.0,23956556.801550945,1119.2570941261905,4029325.5388542858,23956556.801550945,9214853.654033246,10812094.954065679 + 05/29 21:00:00,0.0,6286411.6359621719,1118.4879049804143,4026556.457929491,6286411.6359621719,9214853.654033246,10812094.954065679 + 05/29 22:00:00,0.0,0.0,1120.1154346278807,4032415.5646603705,0.0,6143235.769355498,3604031.6513552267 + 05/29 23:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,3604031.6513552267 + 05/29 24:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 05/30 01:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 05/30 02:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/30 03:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 05/30 04:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 05/30 05:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/30 06:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/30 07:00:00,0.0,124198309.0858404,280.6636411210623,1010389.1080358244,124198309.0858404,6143235.769355498,1802015.8256776133 + 05/30 08:00:00,0.0,145714645.0507562,560.3883058330462,2017397.900998966,145714645.0507562,9214853.654033246,10812094.954065679 + 05/30 09:00:00,0.0,180545079.3005705,2796.2197624510356,10066391.144823729,180545079.3005705,24572943.077421994,28832253.210841814 + 05/30 10:00:00,0.0,181218917.34618569,2788.771928082343,10039578.941096435,181218917.34618569,27644560.962099744,32436284.862197039 + 05/30 11:00:00,0.0,158964739.4111502,5003.882041634825,18013975.34988537,158964739.4111502,27644560.962099744,32436284.862197039 + 05/30 12:00:00,0.0,140320677.70966325,4992.276563779235,17972195.62960525,140320677.70966325,27644560.962099744,32436284.862197039 + 05/30 13:00:00,0.0,149335422.0806033,4973.587050109994,17904913.38039598,149335422.0806033,27644560.962099744,32436284.862197039 + 05/30 14:00:00,0.0,185121164.8129626,4973.587050109994,17904913.38039598,185121164.8129626,27644560.962099744,32436284.862197039 + 05/30 15:00:00,0.0,224803354.60183219,4973.587050109994,17904913.38039598,224803354.60183219,27644560.962099744,32436284.862197039 + 05/30 16:00:00,0.0,246610830.0418753,4966.0338521185099,17877721.867626635,246610830.0418753,27644560.962099744,32436284.862197039 + 05/30 17:00:00,0.0,254685208.62496204,3868.3454834188835,13926043.74030798,254685208.62496204,27644560.962099744,32436284.862197039 + 05/30 18:00:00,0.0,236064330.01776169,2770.3693337832876,9973329.601619835,236064330.01776169,27644560.962099744,28832253.210841814 + 05/30 19:00:00,0.0,151906526.75534828,1669.9264759932406,6011735.3135756659,151906526.75534828,15358089.423388744,18020158.25677613 + 05/30 20:00:00,0.0,29178838.214385127,1118.4879049804143,4026556.457929491,29178838.214385127,9214853.654033246,10812094.954065679 + 05/30 21:00:00,0.0,3929954.847603511,1120.7766116660924,4034795.801997932,3929954.847603511,9214853.654033246,10812094.954065679 + 05/30 22:00:00,0.0,0.0,1120.7766116660924,4034795.801997932,0.0,6143235.769355498,3604031.6513552267 + 05/30 23:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,3604031.6513552267 + 05/30 24:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 05/31 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 05/31 02:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 05/31 03:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 05/31 04:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 05/31 05:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 05/31 06:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 05/31 07:00:00,24868950.470561625,0.0,281.15831069803257,25881120.389074536,0.0,6143235.769355498,1802015.8256776133 + 05/31 08:00:00,1931123.817595036,49754176.45777881,562.414693637312,3955816.7146893588,49754176.45777881,9214853.654033246,10812094.954065679 + 05/31 09:00:00,0.0,109359370.12499692,2812.0842828603724,10123503.41829734,109359370.12499692,24572943.077421994,28832253.210841814 + 05/31 10:00:00,0.0,108304481.29299309,2811.227493735838,10120418.977449017,108304481.29299309,27644560.962099744,32436284.862197039 + 05/31 11:00:00,0.0,90808451.7578328,5056.034476513249,18201724.115447698,90808451.7578328,27644560.962099744,32436284.862197039 + 05/31 12:00:00,0.0,74513092.39766051,5051.945540179122,18187003.94464484,74513092.39766051,27644560.962099744,32436284.862197039 + 05/31 13:00:00,0.0,86313092.40871306,5046.771864566769,18168378.712440369,86313092.40871306,27644560.962099744,32436284.862197039 + 05/31 14:00:00,0.0,130383047.87251207,5046.771864566769,18168378.712440369,130383047.87251207,27644560.962099744,32436284.862197039 + 05/31 15:00:00,0.0,174895058.40095926,5040.5194558254629,18145870.040971668,174895058.40095926,27644560.962099744,32436284.862197039 + 05/31 16:00:00,0.0,198227104.70300646,5040.5194558254629,18145870.040971668,198227104.70300646,27644560.962099744,32436284.862197039 + 05/31 17:00:00,0.0,206483665.50482465,3917.399829441667,14102639.385990002,206483665.50482465,27644560.962099744,32436284.862197039 + 05/31 18:00:00,0.0,185041659.24628616,2801.9415291652305,10086989.50499483,185041659.24628616,27644560.962099744,28832253.210841814 + 05/31 19:00:00,0.0,104665446.44536776,1684.8911414456318,6065608.109204275,104665446.44536776,15358089.423388744,18020158.25677613 + 05/31 20:00:00,0.0,5522040.02511677,1123.896258209699,4046026.5295549167,5522040.02511677,9214853.654033246,10812094.954065679 + 05/31 21:00:00,5784955.565787356,0.0,1124.278322129851,9832357.52545482,0.0,9214853.654033246,10812094.954065679 + 05/31 22:00:00,0.0,0.0,1124.411954607005,4047883.0365852185,0.0,6143235.769355498,3604031.6513552267 + 05/31 23:00:00,0.0,0.0,281.04479834185136,1011761.2740306648,0.0,6143235.769355498,3604031.6513552267 + 05/31 24:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 06/01 01:00:00,0.0,0.0,280.4876864526107,1009755.6712293986,0.0,6143235.769355498,1802015.8256776133 + 06/01 02:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 06/01 03:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 06/01 04:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/01 05:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 06/01 06:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 06/01 07:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/01 08:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/01 09:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/01 10:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/01 11:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/01 12:00:00,0.0,0.0,276.6475342609733,995931.1233395038,0.0,6143235.769355498,1802015.8256776133 + 06/01 13:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/01 14:00:00,0.0,0.0,275.07928242365156,990285.4167251455,0.0,6143235.769355498,1802015.8256776133 + 06/01 15:00:00,0.0,0.0,274.2140149055173,987170.4536598623,0.0,6143235.769355498,1802015.8256776133 + 06/01 16:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/01 17:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/01 18:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/01 19:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/01 20:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 06/01 21:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/01 22:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/01 23:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/01 24:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/02 01:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/02 02:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/02 03:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/02 04:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/02 05:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/02 06:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/02 07:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 06/02 08:00:00,0.0,0.0,276.6475342609733,995931.123339504,0.0,6143235.769355498,1802015.8256776133 + 06/02 09:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/02 10:00:00,0.0,0.0,274.6139225997442,988610.1213590793,0.0,6143235.769355498,1802015.8256776133 + 06/02 11:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 06/02 12:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 06/02 13:00:00,0.0,0.0,272.7733548618156,981984.0775025362,0.0,6143235.769355498,1802015.8256776133 + 06/02 14:00:00,0.0,0.0,272.32621797395168,980374.3847062261,0.0,6143235.769355498,1802015.8256776133 + 06/02 15:00:00,0.0,0.0,272.32621797395168,980374.384706226,0.0,6143235.769355498,1802015.8256776133 + 06/02 16:00:00,0.0,0.0,273.2959715016912,983865.4974060884,0.0,6143235.769355498,1802015.8256776133 + 06/02 17:00:00,0.0,0.0,272.7733548618156,981984.0775025362,0.0,6143235.769355498,1802015.8256776133 + 06/02 18:00:00,0.0,0.0,273.2959715016912,983865.4974060884,0.0,6143235.769355498,1802015.8256776133 + 06/02 19:00:00,0.0,0.0,274.21401490551735,987170.4536598623,0.0,6143235.769355498,1802015.8256776133 + 06/02 20:00:00,0.0,0.0,275.89076956213958,993206.7704237019,0.0,6143235.769355498,1802015.8256776133 + 06/02 21:00:00,0.0,0.0,276.6475342609733,995931.123339504,0.0,6143235.769355498,1802015.8256776133 + 06/02 22:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/02 23:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 06/02 24:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/03 01:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 06/03 02:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/03 03:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/03 04:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/03 05:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/03 06:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/03 07:00:00,22962515.148955365,0.0,280.51431403977508,23972366.679498555,0.0,6143235.769355498,1802015.8256776133 + 06/03 08:00:00,25813438.712995508,0.0,561.0286280795501,27833141.774081895,0.0,9214853.654033246,10812094.954065679 + 06/03 09:00:00,0.0,50611584.602811757,2805.1431403977505,10098515.3054319,50611584.602811757,24572943.077421994,28832253.210841814 + 06/03 10:00:00,0.0,102378501.78420314,2800.2885865697014,10081038.911650924,102378501.78420314,27644560.962099744,32436284.862197039 + 06/03 11:00:00,0.0,109189146.60513073,5033.195572411864,18119504.06068271,109189146.60513073,27644560.962099744,32436284.862197039 + 06/03 12:00:00,0.0,87708644.11880178,5040.5194558254629,18145870.040971668,87708644.11880178,27644560.962099744,32436284.862197039 + 06/03 13:00:00,0.0,73626105.7324026,5043.494752497416,18156581.1089907,73626105.7324026,27644560.962099744,32436284.862197039 + 06/03 14:00:00,0.0,87768626.42585628,5043.494752497416,18156581.1089907,87768626.42585628,27644560.962099744,32436284.862197039 + 06/03 15:00:00,0.0,76582619.64594251,5036.656923567859,18131964.92484429,76582619.64594251,27644560.962099744,32436284.862197039 + 06/03 16:00:00,0.0,99811636.82761297,5036.656923567859,18131964.92484429,99811636.82761297,27644560.962099744,32436284.862197039 + 06/03 17:00:00,0.0,82290862.34406719,3914.7076674314496,14092947.602753219,82290862.34406719,27644560.962099744,32436284.862197039 + 06/03 18:00:00,0.0,74714041.20568607,2800.2885865697014,10081038.911650924,74714041.20568607,27644560.962099744,28832253.210841814 + 06/03 19:00:00,0.0,32894142.72315368,1682.257288188923,6056126.237480123,32894142.72315368,15358089.423388744,18020158.25677613 + 06/03 20:00:00,1051105.8761243013,0.0,1123.1801496353838,5094554.414811682,0.0,9214853.654033246,10812094.954065679 + 06/03 21:00:00,26717019.19377524,0.0,1124.2297614888528,30764246.33513511,0.0,9214853.654033246,10812094.954065679 + 06/03 22:00:00,0.0,0.0,1124.7819538201039,4049215.033752374,0.0,6143235.769355498,3604031.6513552267 + 06/03 23:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,3604031.6513552267 + 06/03 24:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/04 01:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 06/04 02:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 06/04 03:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 06/04 04:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 06/04 05:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 06/04 06:00:00,0.0,0.0,281.1881467526379,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/04 07:00:00,23654969.153440656,41606389.51076648,281.19548845502598,24667272.91187875,41606389.51076648,6143235.769355498,1802015.8256776133 + 06/04 08:00:00,0.0,103951624.82827024,561.7816085014721,2022413.7906052995,103951624.82827024,9214853.654033246,10812094.954065679 + 06/04 09:00:00,0.0,133902640.51259095,2807.9503740884595,10108621.346718453,133902640.51259095,24572943.077421994,28832253.210841814 + 06/04 10:00:00,0.0,130943910.92559971,2805.1431403977505,10098515.3054319,130943910.92559971,27644560.962099744,32436284.862197039 + 06/04 11:00:00,0.0,116199442.2229211,5043.494752497416,18156581.1089907,116199442.2229211,27644560.962099744,32436284.862197039 + 06/04 12:00:00,0.0,98150485.49390275,5040.5194558254629,18145870.040971668,98150485.49390275,27644560.962099744,32436284.862197039 + 06/04 13:00:00,0.0,102563861.34488935,5033.195572411864,18119504.06068271,102563861.34488935,27644560.962099744,32436284.862197039 + 06/04 14:00:00,0.0,139504543.55657403,5033.195572411864,18119504.06068271,139504543.55657403,27644560.962099744,32436284.862197039 + 06/04 15:00:00,0.0,147427310.61606855,5024.808716663643,18089311.379989119,147427310.61606855,27644560.962099744,32436284.862197039 + 06/04 16:00:00,0.0,182650911.88058649,5024.808716663643,18089311.379989119,182650911.88058649,27644560.962099744,32436284.862197039 + 06/04 17:00:00,0.0,174225249.35854007,3914.7076674314496,14092947.602753219,174225249.35854007,27644560.962099744,32436284.862197039 + 06/04 18:00:00,0.0,102725464.34785953,2798.142735315477,10073313.847135717,102725464.34785953,27644560.962099744,28832253.210841814 + 06/04 19:00:00,0.0,42541853.1574582,1678.8856411892862,6043988.30828143,42541853.1574582,15358089.423388744,18020158.25677613 + 06/04 20:00:00,0.0,3820123.165730588,1120.7766116660924,4034795.801997932,3820123.165730588,9214853.654033246,10812094.954065679 + 06/04 21:00:00,0.0,0.0,1122.0572561591003,4039406.122172761,0.0,9214853.654033246,10812094.954065679 + 06/04 22:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,6143235.769355498,3604031.6513552267 + 06/04 23:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,3604031.6513552267 + 06/04 24:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/05 01:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/05 02:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 06/05 03:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/05 04:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/05 05:00:00,0.0,0.0,281.1227493735838,1012041.8977449018,0.0,6143235.769355498,1802015.8256776133 + 06/05 06:00:00,0.0,0.0,280.98921401754066,1011561.170463146,0.0,6143235.769355498,1802015.8256776133 + 06/05 07:00:00,0.0,75588573.77122134,280.79503740884595,1010862.1346718454,75588573.77122134,6143235.769355498,1802015.8256776133 + 06/05 08:00:00,0.0,110721201.00004685,560.7524293963077,2018708.7458267078,110721201.00004685,9214853.654033246,10812094.954065679 + 06/05 09:00:00,0.0,141826994.07943196,2800.2885865697014,10081038.911650924,141826994.07943196,24572943.077421994,28832253.210841814 + 06/05 10:00:00,0.0,147133652.1264723,2798.142735315477,10073313.847135717,147133652.1264723,27644560.962099744,32436284.862197039 + 06/05 11:00:00,0.0,128416389.87222624,5028.752104001549,18103507.574405578,128416389.87222624,27644560.962099744,32436284.862197039 + 06/05 12:00:00,0.0,114525069.81179106,5028.752104001549,18103507.574405578,114525069.81179106,27644560.962099744,32436284.862197039 + 06/05 13:00:00,0.0,113739602.17433599,5019.789470548218,18071242.093973586,113739602.17433599,27644560.962099744,32436284.862197039 + 06/05 14:00:00,0.0,132530484.1298541,5009.779427979722,18035205.940727,132530484.1298541,27644560.962099744,32436284.862197039 + 06/05 15:00:00,0.0,182667684.0736416,5003.882041634825,18013975.34988537,182667684.0736416,27644560.962099744,32436284.862197039 + 06/05 16:00:00,0.0,151660469.18696968,5028.752104001549,18103507.574405578,151660469.18696968,27644560.962099744,32436284.862197039 + 06/05 17:00:00,0.0,81922146.37424265,3920.404021197581,14113454.476311293,81922146.37424265,27644560.962099744,32436284.862197039 + 06/05 18:00:00,0.0,147823376.9925089,2798.142735315477,10073313.847135717,147823376.9925089,27644560.962099744,28832253.210841814 + 06/05 19:00:00,0.0,92079636.63410367,1680.1731519418209,6048623.346990555,92079636.63410367,15358089.423388744,18020158.25677613 + 06/05 20:00:00,0.0,4413440.733606771,1123.5632170029442,4044827.581210599,4413440.733606771,9214853.654033246,10812094.954065679 + 06/05 21:00:00,23706898.004688577,0.0,1124.4909974943353,27755065.59566818,0.0,9214853.654033246,10812094.954065679 + 06/05 22:00:00,0.0,0.0,1124.6534241467132,4048752.3269281678,0.0,6143235.769355498,3604031.6513552267 + 06/05 23:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,3604031.6513552267 + 06/05 24:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 06/06 01:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/06 02:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 06/06 03:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/06 04:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/06 05:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/06 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/06 07:00:00,32960320.41695231,0.0,281.1227493735838,33972362.314697209,0.0,6143235.769355498,1802015.8256776133 + 06/06 08:00:00,10530140.074921024,0.0,562.1148807444264,12553753.645600956,0.0,9214853.654033246,10812094.954065679 + 06/06 09:00:00,0.0,30777345.963111439,2809.892140175405,10115611.704631459,30777345.963111439,24572943.077421994,28832253.210841814 + 06/06 10:00:00,0.0,63554177.36519246,2806.636411210623,10103891.080358243,63554177.36519246,27644560.962099744,32436284.862197039 + 06/06 11:00:00,0.0,74289330.37367897,5046.771864566769,18168378.712440369,74289330.37367897,27644560.962099744,32436284.862197039 + 06/06 12:00:00,0.0,65394781.092685859,5046.771864566769,18168378.712440369,65394781.092685859,27644560.962099744,32436284.862197039 + 06/06 13:00:00,0.0,60038740.26333392,5049.257652715951,18177327.549777423,60038740.26333392,27644560.962099744,32436284.862197039 + 06/06 14:00:00,0.0,46592035.93715663,5049.257652715951,18177327.549777423,46592035.93715663,27644560.962099744,32436284.862197039 + 06/06 15:00:00,0.0,46609392.99066431,5054.310673359228,18195518.42409322,46609392.99066431,27644560.962099744,32436284.862197039 + 06/06 16:00:00,0.0,40780336.72196242,5051.945540179122,18187003.94464484,40780336.72196242,27644560.962099744,32436284.862197039 + 06/06 17:00:00,0.0,40159835.0779284,3929.2909756948718,14145447.512501538,40159835.0779284,27644560.962099744,32436284.862197039 + 06/06 18:00:00,0.0,32504217.230747995,2806.636411210623,10103891.080358243,32504217.230747995,27644560.962099744,28832253.210841814 + 06/06 19:00:00,0.0,0.0,1683.0858842386504,6059109.183259142,0.0,15358089.423388744,18020158.25677613 + 06/06 20:00:00,11556355.666975858,0.0,1123.563217002944,15601183.248186456,0.0,9214853.654033246,10812094.954065679 + 06/06 21:00:00,36558907.972990337,0.0,1124.2297614888528,40606135.11435021,0.0,9214853.654033246,10812094.954065679 + 06/06 22:00:00,0.0,0.0,1123.956856070162,4046244.681852584,0.0,6143235.769355498,3604031.6513552267 + 06/06 23:00:00,0.0,0.0,281.0574403722132,1011806.7853399674,0.0,6143235.769355498,3604031.6513552267 + 06/06 24:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/07 01:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/07 02:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/07 03:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/07 04:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/07 05:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/07 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/07 07:00:00,62486085.86604113,0.0,281.0574403722132,63497892.65138111,0.0,6143235.769355498,1802015.8256776133 + 06/07 08:00:00,10090693.984661874,0.0,561.7816085014721,12113107.775267173,0.0,9214853.654033246,10812094.954065679 + 06/07 09:00:00,0.0,22685378.870357913,2806.636411210623,10103891.080358243,22685378.870357913,24572943.077421994,28832253.210841814 + 06/07 10:00:00,0.0,65458126.09383485,2805.1431403977505,10098515.3054319,65458126.09383485,27644560.962099744,32436284.862197039 + 06/07 11:00:00,0.0,88353623.21711593,5036.656923567859,18131964.92484429,88353623.21711593,27644560.962099744,32436284.862197039 + 06/07 12:00:00,0.0,86351285.572545,5040.5194558254629,18145870.040971668,86351285.572545,27644560.962099744,32436284.862197039 + 06/07 13:00:00,0.0,97468816.84946957,5019.789470548218,18071242.093973586,97468816.84946957,27644560.962099744,32436284.862197039 + 06/07 14:00:00,0.0,131095448.94248995,5024.808716663643,18089311.379989119,131095448.94248995,27644560.962099744,32436284.862197039 + 06/07 15:00:00,0.0,155917638.01628704,5019.789470548218,18071242.093973586,155917638.01628704,27644560.962099744,32436284.862197039 + 06/07 16:00:00,0.0,158486867.10786394,5024.808716663643,18089311.379989119,158486867.10786394,27644560.962099744,32436284.862197039 + 06/07 17:00:00,0.0,120781383.51915017,3911.2516364456489,14080505.891204335,120781383.51915017,27644560.962099744,32436284.862197039 + 06/07 18:00:00,0.0,68955835.3421334,2793.7511688897495,10057504.208003099,68955835.3421334,27644560.962099744,28832253.210841814 + 06/07 19:00:00,0.0,16378839.35136583,1676.2507013338498,6034502.524801859,16378839.35136583,15358089.423388744,18020158.25677613 + 06/07 20:00:00,0.0,0.0,1118.4879049804143,4026556.457929491,0.0,9214853.654033246,10812094.954065679 + 06/07 21:00:00,502204.4871072748,0.0,1119.2570941261905,4531530.02596156,0.0,9214853.654033246,10812094.954065679 + 06/07 22:00:00,0.0,0.0,1120.7766116660924,4034795.801997932,0.0,6143235.769355498,3604031.6513552267 + 06/07 23:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,3604031.6513552267 + 06/07 24:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/08 01:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/08 02:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 06/08 03:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/08 04:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/08 05:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/08 06:00:00,0.0,0.0,280.6636411210623,1010389.1080358243,0.0,6143235.769355498,1802015.8256776133 + 06/08 07:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/08 08:00:00,0.0,0.0,279.8142735315476,1007331.3847135713,0.0,6143235.769355498,1802015.8256776133 + 06/08 09:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/08 10:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/08 11:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 06/08 12:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/08 13:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/08 14:00:00,0.0,0.0,275.07928242365156,990285.4167251454,0.0,6143235.769355498,1802015.8256776133 + 06/08 15:00:00,0.0,0.0,275.07928242365156,990285.4167251454,0.0,6143235.769355498,1802015.8256776133 + 06/08 16:00:00,0.0,0.0,275.4548652884668,991637.5150384804,0.0,6143235.769355498,1802015.8256776133 + 06/08 17:00:00,0.0,0.0,275.07928242365156,990285.4167251455,0.0,6143235.769355498,1802015.8256776133 + 06/08 18:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/08 19:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 06/08 20:00:00,0.0,0.0,277.9934467574903,1000776.4083269649,0.0,6143235.769355498,1802015.8256776133 + 06/08 21:00:00,0.0,0.0,278.32107933220677,1001955.8855959444,0.0,6143235.769355498,1802015.8256776133 + 06/08 22:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/08 23:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/08 24:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/09 01:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/09 02:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/09 03:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/09 04:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/09 05:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/09 06:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/09 07:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/09 08:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/09 09:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/09 10:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/09 11:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/09 12:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/09 13:00:00,0.0,0.0,274.6139225997442,988610.1213590793,0.0,6143235.769355498,1802015.8256776133 + 06/09 14:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 06/09 15:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 06/09 16:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 06/09 17:00:00,0.0,0.0,274.21401490551735,987170.4536598624,0.0,6143235.769355498,1802015.8256776133 + 06/09 18:00:00,0.0,0.0,275.07928242365156,990285.4167251455,0.0,6143235.769355498,1802015.8256776133 + 06/09 19:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/09 20:00:00,0.0,0.0,277.0369333783287,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/09 21:00:00,0.0,0.0,276.6475342609733,995931.123339504,0.0,6143235.769355498,1802015.8256776133 + 06/09 22:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 06/09 23:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/09 24:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/10 01:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/10 02:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/10 03:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/10 04:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/10 05:00:00,0.0,0.0,280.1941529165231,1008698.9504994832,0.0,6143235.769355498,1802015.8256776133 + 06/10 06:00:00,0.0,0.0,279.6219762451036,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/10 07:00:00,0.0,116908390.14178375,278.8771928082343,1003957.8941096437,116908390.14178375,6143235.769355498,1802015.8256776133 + 06/10 08:00:00,0.0,96811487.80053303,555.9868935149806,2001552.8166539302,96811487.80053303,9214853.654033246,10812094.954065679 + 06/10 09:00:00,0.0,191218301.32142607,2770.3693337832876,9973329.601619835,191218301.32142607,24572943.077421994,28832253.210841814 + 06/10 10:00:00,0.0,216688963.7587049,2758.907695621394,9932067.704237018,216688963.7587049,27644560.962099744,32436284.862197039 + 06/10 11:00:00,0.0,199327889.95717538,4943.050606795395,17794982.184463424,199327889.95717538,27644560.962099744,32436284.862197039 + 06/10 12:00:00,0.0,179360371.1237063,4926.955315864072,17737039.137110659,179360371.1237063,27644560.962099744,32436284.862197039 + 06/10 13:00:00,0.0,184375100.9633839,4935.8522682993129,17769068.165877526,184375100.9633839,27644560.962099744,32436284.862197039 + 06/10 14:00:00,0.0,215844932.72801519,4909.920387512683,17675713.39504566,215844932.72801519,27644560.962099744,32436284.862197039 + 06/10 15:00:00,0.0,255905755.07036776,4909.920387512683,17675713.39504566,255905755.07036776,27644560.962099744,32436284.862197039 + 06/10 16:00:00,0.0,278080303.8194064,4891.965597685878,17611076.15166916,278080303.8194064,27644560.962099744,32436284.862197039 + 06/10 17:00:00,0.0,279501280.6929899,3818.82696806542,13747777.085035513,279501280.6929899,27644560.962099744,32436284.862197039 + 06/10 18:00:00,0.0,259168269.6683101,2746.139225997442,9886101.213590792,259168269.6683101,27644560.962099744,28832253.210841814 + 06/10 19:00:00,0.0,195242184.8174724,1647.6835355984652,5931660.728154475,195242184.8174724,15358089.423388744,18020158.25677613 + 06/10 20:00:00,0.0,76328164.56519327,1103.5630782485578,3972827.081694808,76328164.56519327,9214853.654033246,10812094.954065679 + 06/10 21:00:00,0.0,46547631.16812809,1108.147733513315,3989331.840647934,46547631.16812809,9214853.654033246,10812094.954065679 + 06/10 22:00:00,0.0,0.0,1109.3947919509413,3993821.2510233887,0.0,6143235.769355498,3604031.6513552267 + 06/10 23:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,3604031.6513552267 + 06/10 24:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/11 01:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/11 02:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/11 03:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/11 04:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/11 05:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/11 06:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/11 07:00:00,0.0,148194172.52469824,278.32107933220677,1001955.8855959443,148194172.52469824,6143235.769355498,1802015.8256776133 + 06/11 08:00:00,0.0,140044957.47068564,555.414844112342,1999493.4388044314,140044957.47068564,9214853.654033246,10812094.954065679 + 06/11 09:00:00,0.0,168971461.35555709,2766.475342609733,9959311.23339504,168971461.35555709,24572943.077421994,28832253.210841814 + 06/11 10:00:00,0.0,181091038.02260018,2773.486979877353,9984553.12755847,181091038.02260018,27644560.962099744,32436284.862197039 + 06/11 11:00:00,0.0,152951817.3022368,4979.655616697521,17926760.220111077,152951817.3022368,27644560.962099744,32436284.862197039 + 06/11 12:00:00,0.0,124501765.06164596,4986.664800809918,17951993.282915705,124501765.06164596,27644560.962099744,32436284.862197039 + 06/11 13:00:00,0.0,135793011.62771855,4979.655616697521,17926760.220111077,135793011.62771855,27644560.962099744,32436284.862197039 + 06/11 14:00:00,0.0,168061840.7408432,4958.187575192403,17849475.27069265,168061840.7408432,27644560.962099744,32436284.862197039 + 06/11 15:00:00,0.0,230124592.29360856,4951.427083625727,17825137.501052619,230124592.29360856,27644560.962099744,32436284.862197039 + 06/11 16:00:00,0.0,229124244.80143333,4951.427083625727,17825137.501052619,229124244.80143333,27644560.962099744,32436284.862197039 + 06/11 17:00:00,0.0,233930123.26931507,3844.5949163964185,13840541.699027107,233930123.26931507,27644560.962099744,32436284.862197039 + 06/11 18:00:00,0.0,210587949.3492545,2754.5486528846679,9916375.150384805,210587949.3492545,27644560.962099744,28832253.210841814 + 06/11 19:00:00,0.0,135387548.8986948,1659.88520556584,5975586.740037024,135387548.8986948,15358089.423388744,18020158.25677613 + 06/11 20:00:00,0.0,36110055.56196672,1113.284317328827,4007823.542383777,36110055.56196672,9214853.654033246,10812094.954065679 + 06/11 21:00:00,0.0,7807713.9521999279,1116.6241592585873,4019846.973330914,7807713.9521999279,9214853.654033246,10812094.954065679 + 06/11 22:00:00,0.0,0.0,1119.2570941261902,4029325.538854285,0.0,6143235.769355498,3604031.6513552267 + 06/11 23:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,3604031.6513552267 + 06/11 24:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/12 01:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/12 02:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/12 03:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/12 04:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 06/12 05:00:00,0.0,0.0,281.20842828603727,1012350.3418297342,0.0,6143235.769355498,1802015.8256776133 + 06/12 06:00:00,0.0,0.0,280.8908042507361,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 06/12 07:00:00,0.0,103773350.3959116,280.37621469815385,1009354.3729133539,103773350.3959116,6143235.769355498,1802015.8256776133 + 06/12 08:00:00,0.0,148739489.57744725,559.2439524902071,2013278.2289647456,148739489.57744725,9214853.654033246,10812094.954065679 + 06/12 09:00:00,0.0,183956194.88990046,2796.2197624510356,10066391.144823729,183956194.88990046,24572943.077421994,28832253.210841814 + 06/12 10:00:00,0.0,184291003.0404777,2785.810320777456,10028917.154798843,184291003.0404777,27644560.962099744,32436284.862197039 + 06/12 11:00:00,0.0,156683780.21331615,5009.779427979722,18035205.940727,156683780.21331615,27644560.962099744,32436284.862197039 + 06/12 12:00:00,0.0,128232449.59998897,5014.458577399421,18052050.878637919,128232449.59998897,27644560.962099744,32436284.862197039 + 06/12 13:00:00,0.0,130001009.73595345,4998.733597011079,17995440.949239885,130001009.73595345,27644560.962099744,32436284.862197039 + 06/12 14:00:00,0.0,166630860.10290719,4986.664800809918,17951993.282915705,166630860.10290719,27644560.962099744,32436284.862197039 + 06/12 15:00:00,0.0,201924120.15051285,4986.664800809918,17951993.282915705,201924120.15051285,27644560.962099744,32436284.862197039 + 06/12 16:00:00,0.0,228319764.16363425,4992.276563779235,17972195.62960525,228319764.16363425,27644560.962099744,32436284.862197039 + 06/12 17:00:00,0.0,239476418.80089975,3887.9039087863936,13996454.071631017,239476418.80089975,27644560.962099744,32436284.862197039 + 06/12 18:00:00,0.0,217844091.31419794,2783.2107933220675,10019558.855959442,217844091.31419794,27644560.962099744,28832253.210841814 + 06/12 19:00:00,0.0,137043567.03558038,1674.9362388878809,6029770.459996371,137043567.03558038,15358089.423388744,18020158.25677613 + 06/12 20:00:00,0.0,25846553.576903289,1120.7766116660924,4034795.801997932,25846553.576903289,9214853.654033246,10812094.954065679 + 06/12 21:00:00,0.0,324754.01945227637,1120.1154346278807,4032415.5646603705,324754.01945227637,9214853.654033246,10812094.954065679 + 06/12 22:00:00,0.0,0.0,1121.5048587926154,4037417.491653415,0.0,6143235.769355498,3604031.6513552267 + 06/12 23:00:00,0.0,0.0,280.890804250736,1011206.8953026496,0.0,6143235.769355498,3604031.6513552267 + 06/12 24:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/13 01:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/13 02:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/13 03:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/13 04:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/13 05:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/13 06:00:00,0.0,0.0,281.20842828603738,1012350.3418297342,0.0,6143235.769355498,1802015.8256776133 + 06/13 07:00:00,0.0,48929858.71331814,281.19548845502598,1012303.7584380935,48929858.71331814,6143235.769355498,1802015.8256776133 + 06/13 08:00:00,0.0,104807654.75277293,562.1148807444264,2023613.570679935,104807654.75277293,9214853.654033246,10812094.954065679 + 06/13 09:00:00,0.0,138344434.4140734,2809.892140175405,10115611.704631459,138344434.4140734,24572943.077421994,28832253.210841814 + 06/13 10:00:00,0.0,132515638.27921751,2808.9080425073605,10112068.953026498,132515638.27921751,27644560.962099744,32436284.862197039 + 06/13 11:00:00,0.0,104997318.68086484,5054.310673359228,18195518.42409322,104997318.68086484,27644560.962099744,32436284.862197039 + 06/13 12:00:00,0.0,79903090.8138133,5051.945540179122,18187003.94464484,79903090.8138133,27644560.962099744,32436284.862197039 + 06/13 13:00:00,0.0,88643080.7202799,5043.494752497416,18156581.1089907,88643080.7202799,27644560.962099744,32436284.862197039 + 06/13 14:00:00,0.0,123044283.07635619,5040.5194558254629,18145870.040971668,123044283.07635619,27644560.962099744,32436284.862197039 + 06/13 15:00:00,0.0,167681510.83587749,5040.5194558254629,18145870.040971668,167681510.83587749,27644560.962099744,32436284.862197039 + 06/13 16:00:00,0.0,200899056.52184693,5036.656923567859,18131964.92484429,200899056.52184693,27644560.962099744,32436284.862197039 + 06/13 17:00:00,0.0,220482656.85190026,3914.7076674314496,14092947.602753219,220482656.85190026,27644560.962099744,32436284.862197039 + 06/13 18:00:00,0.0,198375925.32103027,2800.2885865697014,10081038.911650924,198375925.32103027,27644560.962099744,28832253.210841814 + 06/13 19:00:00,0.0,132827236.36233554,1682.257288188923,6056126.237480123,132827236.36233554,15358089.423388744,18020158.25677613 + 06/13 20:00:00,0.0,17431899.305000225,1123.1801496353838,4043448.5386873816,17431899.305000225,9214853.654033246,10812094.954065679 + 06/13 21:00:00,2019930.533205107,0.0,1124.6534241467132,6068682.860133274,0.0,9214853.654033246,10812094.954065679 + 06/13 22:00:00,0.0,0.0,1123.956856070162,4046244.6818525835,0.0,6143235.769355498,3604031.6513552267 + 06/13 23:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,3604031.6513552267 + 06/13 24:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/14 01:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 06/14 02:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 06/14 03:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 06/14 04:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 06/14 05:00:00,0.0,0.0,281.15831069803257,1012169.9185129171,0.0,6143235.769355498,1802015.8256776133 + 06/14 06:00:00,0.0,0.0,281.1633560366784,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/14 07:00:00,1200282.8084357314,50444841.35342218,280.79503740884595,2211144.9431075768,50444841.35342218,6143235.769355498,1802015.8256776133 + 06/14 08:00:00,0.0,123327897.56939864,560.7524293963077,2018708.7458267078,123327897.56939864,9214853.654033246,10812094.954065679 + 06/14 09:00:00,0.0,164623244.3068973,2793.7511688897495,10057504.208003099,164623244.3068973,24572943.077421994,28832253.210841814 + 06/14 10:00:00,0.0,165613991.77711404,2788.771928082343,10039578.941096435,165613991.77711404,27644560.962099744,32436284.862197039 + 06/14 11:00:00,0.0,140382842.31192983,5009.779427979722,18035205.940727,140382842.31192983,27644560.962099744,32436284.862197039 + 06/14 12:00:00,0.0,114213504.4437666,4992.276563779235,17972195.62960525,114213504.4437666,27644560.962099744,32436284.862197039 + 06/14 13:00:00,0.0,120538234.61300163,4986.664800809918,17951993.282915705,120538234.61300163,27644560.962099744,32436284.862197039 + 06/14 14:00:00,0.0,161611303.7490231,4979.655616697521,17926760.220111077,161611303.7490231,27644560.962099744,32436284.862197039 + 06/14 15:00:00,0.0,203429155.82344986,4992.276563779235,17972195.62960525,203429155.82344986,27644560.962099744,32436284.862197039 + 06/14 16:00:00,0.0,228440300.6685019,4986.664800809918,17951993.282915705,228440300.6685019,27644560.962099744,32436284.862197039 + 06/14 17:00:00,0.0,237861490.9048912,3882.8817718282937,13978374.378581858,237861490.9048912,27644560.962099744,32436284.862197039 + 06/14 18:00:00,0.0,225594016.29096128,2773.486979877353,9984553.12755847,225594016.29096128,27644560.962099744,28832253.210841814 + 06/14 19:00:00,0.0,154216070.40441949,1669.9264759932406,6011735.3135756659,154216070.40441949,15358089.423388744,18020158.25677613 + 06/14 20:00:00,0.0,32571006.049399668,1117.5004675558999,4023001.6832012396,32571006.049399668,9214853.654033246,10812094.954065679 + 06/14 21:00:00,0.0,2113633.8597439166,1119.2570941261905,4029325.5388542858,2113633.8597439166,9214853.654033246,10812094.954065679 + 06/14 22:00:00,0.0,0.0,1122.0572561591003,4039406.122172761,0.0,6143235.769355498,3604031.6513552267 + 06/14 23:00:00,0.0,0.0,280.890804250736,1011206.8953026496,0.0,6143235.769355498,3604031.6513552267 + 06/14 24:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/15 01:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 06/15 02:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/15 03:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/15 04:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/15 05:00:00,0.0,0.0,281.1227493735838,1012041.8977449018,0.0,6143235.769355498,1802015.8256776133 + 06/15 06:00:00,0.0,0.0,280.8908042507362,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 06/15 07:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/15 08:00:00,0.0,0.0,279.15603981464678,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/15 09:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/15 10:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 06/15 11:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/15 12:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/15 13:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/15 14:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/15 15:00:00,0.0,0.0,275.07928242365156,990285.4167251455,0.0,6143235.769355498,1802015.8256776133 + 06/15 16:00:00,0.0,0.0,274.21401490551735,987170.4536598623,0.0,6143235.769355498,1802015.8256776133 + 06/15 17:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/15 18:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 06/15 19:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/15 20:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/15 21:00:00,0.0,0.0,278.8771928082343,1003957.8941096437,0.0,6143235.769355498,1802015.8256776133 + 06/15 22:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/15 23:00:00,0.0,0.0,280.37621469815385,1009354.3729133537,0.0,6143235.769355498,1802015.8256776133 + 06/15 24:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/16 01:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/16 02:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/16 03:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/16 04:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/16 05:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/16 06:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/16 07:00:00,0.0,0.0,279.81427353154757,1007331.3847135713,0.0,6143235.769355498,1802015.8256776133 + 06/16 08:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/16 09:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/16 10:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/16 11:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/16 12:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/16 13:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/16 14:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 06/16 15:00:00,0.0,0.0,276.6475342609733,995931.123339504,0.0,6143235.769355498,1802015.8256776133 + 06/16 16:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 06/16 17:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/16 18:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/16 19:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 06/16 20:00:00,0.0,0.0,278.5810320777458,1002891.7154798842,0.0,6143235.769355498,1802015.8256776133 + 06/16 21:00:00,0.0,0.0,277.99344675749026,1000776.4083269649,0.0,6143235.769355498,1802015.8256776133 + 06/16 22:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/16 23:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/16 24:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/17 01:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/17 02:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/17 03:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/17 04:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/17 05:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/17 06:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/17 07:00:00,0.0,33406523.785789636,279.37511688897498,1005750.4208003099,33406523.785789636,6143235.769355498,1802015.8256776133 + 06/17 08:00:00,0.0,91784758.219181,556.6421586644135,2003911.7711918886,91784758.219181,9214853.654033246,10812094.954065679 + 06/17 09:00:00,0.0,217104803.33406557,2770.3693337832876,9973329.601619835,217104803.33406557,24572943.077421994,28832253.210841814 + 06/17 10:00:00,0.0,232818469.5893558,2758.907695621394,9932067.704237018,232818469.5893558,27644560.962099744,32436284.862197039 + 06/17 11:00:00,0.0,210887410.4201625,4951.427083625727,17825137.501052619,210887410.4201625,27644560.962099744,32436284.862197039 + 06/17 12:00:00,0.0,196935182.80938567,4943.050606795395,17794982.184463424,196935182.80938567,27644560.962099744,32436284.862197039 + 06/17 13:00:00,0.0,198219229.5876874,4935.8522682993129,17769068.165877526,198219229.5876874,27644560.962099744,32436284.862197039 + 06/17 14:00:00,0.0,186127052.04768164,4958.187575192403,17849475.27069265,186127052.04768164,27644560.962099744,32436284.862197039 + 06/17 15:00:00,0.0,130989419.66094162,4979.655616697521,17926760.220111077,130989419.66094162,27644560.962099744,32436284.862197039 + 06/17 16:00:00,0.0,136556455.52788729,4998.733597011079,17995440.949239885,136556455.52788729,27644560.962099744,32436284.862197039 + 06/17 17:00:00,0.0,149733188.3941692,3868.3454834188835,13926043.74030798,149733188.3941692,27644560.962099744,32436284.862197039 + 06/17 18:00:00,0.0,152514400.53815029,2763.103916727774,9947174.100219988,152514400.53815029,27644560.962099744,28832253.210841814 + 06/17 19:00:00,0.0,115347945.438786,1659.88520556584,5975586.740037024,115347945.438786,15358089.423388744,18020158.25677613 + 06/17 20:00:00,0.0,40729117.59564311,1108.147733513315,3989331.840647934,40729117.59564311,9214853.654033246,10812094.954065679 + 06/17 21:00:00,0.0,19347548.16403072,1109.3947919509413,3993821.2510233887,19347548.16403072,9214853.654033246,10812094.954065679 + 06/17 22:00:00,0.0,0.0,1110.829688224684,3998986.8776088629,0.0,6143235.769355498,3604031.6513552267 + 06/17 23:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,3604031.6513552267 + 06/17 24:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 06/18 01:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/18 02:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/18 03:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/18 04:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/18 05:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/18 06:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/18 07:00:00,0.0,869338.8183013426,278.32107933220677,1001955.8855959443,869338.8183013426,6143235.769355498,1802015.8256776133 + 06/18 08:00:00,0.0,58634769.24021285,554.6973959754706,1996910.6255116943,58634769.24021285,9214853.654033246,10812094.954065679 + 06/18 09:00:00,0.0,142299213.85328646,2763.103916727774,9947174.100219988,142299213.85328646,24572943.077421994,28832253.210841814 + 06/18 10:00:00,0.0,179658734.78474833,2754.5486528846679,9916375.150384805,179658734.78474833,27644560.962099744,32436284.862197039 + 06/18 11:00:00,0.0,170936804.28739176,4966.0338521185099,17877721.867626635,170936804.28739176,27644560.962099744,32436284.862197039 + 06/18 12:00:00,0.0,168657322.87343074,4951.427083625727,17825137.501052619,168657322.87343074,27644560.962099744,32436284.862197039 + 06/18 13:00:00,0.0,158330643.9160713,4951.427083625727,17825137.501052619,158330643.9160713,27644560.962099744,32436284.862197039 + 06/18 14:00:00,0.0,172202505.59181194,4926.955315864072,17737039.137110659,172202505.59181194,27644560.962099744,32436284.862197039 + 06/18 15:00:00,0.0,205364578.37924219,4909.920387512683,17675713.39504566,205364578.37924219,27644560.962099744,32436284.862197039 + 06/18 16:00:00,0.0,219815411.35181058,4919.327487030442,17709578.95330959,219815411.35181058,27644560.962099744,32436284.862197039 + 06/18 17:00:00,0.0,196043170.51781238,3844.5949163964185,13840541.699027107,196043170.51781238,27644560.962099744,32436284.862197039 + 06/18 18:00:00,0.0,152657470.23105569,2758.907695621394,9932067.704237018,152657470.23105569,27644560.962099744,28832253.210841814 + 06/18 19:00:00,0.0,85081369.49759424,1655.3446173728367,5959240.622542212,85081369.49759424,15358089.423388744,18020158.25677613 + 06/18 20:00:00,0.0,54455536.849769737,1101.8194611538673,3966550.060153922,54455536.849769737,9214853.654033246,10812094.954065679 + 06/18 21:00:00,0.0,43613942.242893759,1105.2415666911098,3978869.6400879949,43613942.242893759,9214853.654033246,10812094.954065679 + 06/18 22:00:00,0.0,0.0,1105.2415666911098,3978869.6400879949,0.0,6143235.769355498,3604031.6513552267 + 06/18 23:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,3604031.6513552267 + 06/18 24:00:00,0.0,0.0,279.15603981464678,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/19 01:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/19 02:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/19 03:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/19 04:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/19 05:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/19 06:00:00,0.0,0.0,279.15603981464678,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/19 07:00:00,0.0,76161226.90989679,278.8771928082343,1003957.8941096435,76161226.90989679,6143235.769355498,1802015.8256776133 + 06/19 08:00:00,0.0,62245909.52152207,557.1620641554913,2005783.4309597687,62245909.52152207,9214853.654033246,10812094.954065679 + 06/19 09:00:00,0.0,113599544.08505897,2785.810320777456,10028917.154798843,113599544.08505897,24572943.077421994,28832253.210841814 + 06/19 10:00:00,0.0,113770201.88177276,2783.2107933220675,10019558.855959442,113770201.88177276,27644560.962099744,32436284.862197039 + 06/19 11:00:00,0.0,99379869.3087965,5019.789470548218,18071242.093973586,99379869.3087965,27644560.962099744,32436284.862197039 + 06/19 12:00:00,0.0,83407763.76096776,5014.458577399421,18052050.878637919,83407763.76096776,27644560.962099744,32436284.862197039 + 06/19 13:00:00,0.0,103619839.6871662,5014.458577399421,18052050.878637919,103619839.6871662,27644560.962099744,32436284.862197039 + 06/19 14:00:00,0.0,152315525.40660227,4979.655616697521,17926760.220111077,152315525.40660227,27644560.962099744,32436284.862197039 + 06/19 15:00:00,0.0,195186452.62058724,4992.276563779235,17972195.62960525,195186452.62058724,27644560.962099744,32436284.862197039 + 06/19 16:00:00,0.0,182301466.64436076,4998.733597011079,17995440.949239885,182301466.64436076,27644560.962099744,32436284.862197039 + 06/19 17:00:00,0.0,172124170.19366864,3887.9039087863936,13996454.071631017,172124170.19366864,27644560.962099744,32436284.862197039 + 06/19 18:00:00,0.0,138151965.40060038,2791.560398146468,10049617.433327284,138151965.40060038,27644560.962099744,28832253.210841814 + 06/19 19:00:00,0.0,63451899.610784929,1678.8856411892862,6043988.30828143,63451899.610784929,15358089.423388744,18020158.25677613 + 06/19 20:00:00,0.0,3772909.2283746094,1122.6545644842493,4041556.4321432977,3772909.2283746094,9214853.654033246,10812094.954065679 + 06/19 21:00:00,13294826.646143279,0.0,1124.2297614888528,17342053.787503147,0.0,9214853.654033246,10812094.954065679 + 06/19 22:00:00,0.0,0.0,1123.956856070162,4046244.6818525835,0.0,6143235.769355498,3604031.6513552267 + 06/19 23:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,3604031.6513552267 + 06/19 24:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/20 01:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/20 02:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/20 03:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/20 04:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 06/20 05:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 06/20 06:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/20 07:00:00,70478119.18988449,0.0,281.20842828603727,71490469.5317142,0.0,6143235.769355498,1802015.8256776133 + 06/20 08:00:00,0.0,5744460.470686141,562.4168565720745,2024700.683659468,5744460.470686141,9214853.654033246,10812094.954065679 + 06/20 09:00:00,0.0,47451969.64676365,2812.0734681865599,10123464.485471616,47451969.64676365,24572943.077421994,28832253.210841814 + 06/20 10:00:00,0.0,39830816.57658924,2811.9548845502597,10123037.584380934,39830816.57658924,27644560.962099744,32436284.862197039 + 06/20 11:00:00,0.0,42380259.79076086,5060.209488724509,18216754.159408235,42380259.79076086,27644560.962099744,32436284.862197039 + 06/20 12:00:00,0.0,42781323.736013937,5059.033926699838,18212522.136119419,42781323.736013937,27644560.962099744,32436284.862197039 + 06/20 13:00:00,0.0,43280652.21999295,5057.805852315729,18208101.068336626,43280652.21999295,27644560.962099744,32436284.862197039 + 06/20 14:00:00,0.0,60706837.30093986,5051.945540179122,18187003.94464484,60706837.30093986,27644560.962099744,32436284.862197039 + 06/20 15:00:00,0.0,76546701.94699621,5049.257652715951,18177327.549777423,76546701.94699621,27644560.962099744,32436284.862197039 + 06/20 16:00:00,0.0,71974213.06779763,5051.945540179122,18187003.94464484,71974213.06779763,27644560.962099744,32436284.862197039 + 06/20 17:00:00,0.0,51523226.81712969,3931.1305237238427,14152069.885405833,51523226.81712969,27644560.962099744,32436284.862197039 + 06/20 18:00:00,0.0,33737582.734707038,2807.9503740884595,10108621.346718453,33737582.734707038,27644560.962099744,28832253.210841814 + 06/20 19:00:00,0.0,973280.695319082,1684.7702244530759,6065172.808031073,973280.695319082,15358089.423388744,18020158.25677613 + 06/20 20:00:00,15863840.277026128,0.0,1123.9568560701619,19910084.95887871,0.0,9214853.654033246,10812094.954065679 + 06/20 21:00:00,31279568.73623743,0.0,1124.2297614888528,35326795.8775973,0.0,9214853.654033246,10812094.954065679 + 06/20 22:00:00,0.0,0.0,1123.956856070162,4046244.681852584,0.0,6143235.769355498,3604031.6513552267 + 06/20 23:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,3604031.6513552267 + 06/20 24:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/21 01:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 06/21 02:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 06/21 03:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/21 04:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 06/21 05:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/21 06:00:00,0.0,0.0,281.1954884550261,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/21 07:00:00,0.0,47634731.76753942,281.0574403722132,1011806.7853399675,47634731.76753942,6143235.769355498,1802015.8256776133 + 06/21 08:00:00,0.0,105665599.21723405,561.3272822421246,2020778.2160716488,105665599.21723405,9214853.654033246,10812094.954065679 + 06/21 09:00:00,0.0,144356532.62254665,2801.9415291652305,10086989.50499483,144356532.62254665,24572943.077421994,28832253.210841814 + 06/21 10:00:00,0.0,146983378.38374687,2796.2197624510356,10066391.144823729,146983378.38374687,27644560.962099744,32436284.862197039 + 06/21 11:00:00,0.0,135307986.4697298,5019.789470548218,18071242.093973586,135307986.4697298,27644560.962099744,32436284.862197039 + 06/21 12:00:00,0.0,120833534.47739797,5014.458577399421,18052050.878637919,120833534.47739797,27644560.962099744,32436284.862197039 + 06/21 13:00:00,0.0,127925978.70222283,4998.733597011079,17995440.949239885,127925978.70222283,27644560.962099744,32436284.862197039 + 06/21 14:00:00,0.0,165145037.04089237,4992.276563779235,17972195.62960525,165145037.04089237,27644560.962099744,32436284.862197039 + 06/21 15:00:00,0.0,193718084.34546919,4992.276563779235,17972195.62960525,193718084.34546919,27644560.962099744,32436284.862197039 + 06/21 16:00:00,0.0,208693330.12530063,4979.655616697521,17926760.220111077,208693330.12530063,27644560.962099744,32436284.862197039 + 06/21 17:00:00,0.0,209128541.82217384,3878.517067296602,13962661.442267767,209128541.82217384,27644560.962099744,32436284.862197039 + 06/21 18:00:00,0.0,191711248.35786028,2777.07422056171,9997467.194022155,191711248.35786028,27644560.962099744,28832253.210841814 + 06/21 19:00:00,0.0,118142438.0683795,1669.9264759932406,6011735.3135756659,118142438.0683795,15358089.423388744,18020158.25677613 + 06/21 20:00:00,0.0,28968073.964834203,1115.5087712329374,4015831.576438574,28968073.964834203,9214853.654033246,10812094.954065679 + 06/21 21:00:00,0.0,2777718.5441632999,1118.4879049804143,4026556.457929491,2777718.5441632999,9214853.654033246,10812094.954065679 + 06/21 22:00:00,0.0,0.0,1121.5048587926154,4037417.491653415,0.0,6143235.769355498,3604031.6513552267 + 06/21 23:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,3604031.6513552267 + 06/21 24:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/22 01:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/22 02:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 06/22 03:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/22 04:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/22 05:00:00,0.0,0.0,280.890804250736,1011206.8953026496,0.0,6143235.769355498,1802015.8256776133 + 06/22 06:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/22 07:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/22 08:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/22 09:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/22 10:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/22 11:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/22 12:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/22 13:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/22 14:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/22 15:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 06/22 16:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/22 17:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/22 18:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 06/22 19:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/22 20:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/22 21:00:00,0.0,0.0,279.15603981464678,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/22 22:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/22 23:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/22 24:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/23 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/23 02:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/23 03:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 06/23 04:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/23 05:00:00,0.0,0.0,281.0574403722132,1011806.7853399674,0.0,6143235.769355498,1802015.8256776133 + 06/23 06:00:00,0.0,0.0,280.6636411210625,1010389.1080358243,0.0,6143235.769355498,1802015.8256776133 + 06/23 07:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/23 08:00:00,0.0,0.0,279.15603981464678,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/23 09:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/23 10:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 06/23 11:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/23 12:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/23 13:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/23 14:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/23 15:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/23 16:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/23 17:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 06/23 18:00:00,0.0,0.0,276.6475342609733,995931.1233395039,0.0,6143235.769355498,1802015.8256776133 + 06/23 19:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/23 20:00:00,0.0,0.0,278.32107933220689,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/23 21:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/23 22:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/23 23:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/23 24:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/24 01:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/24 02:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/24 03:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 06/24 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 06/24 05:00:00,0.0,0.0,280.890804250736,1011206.8953026496,0.0,6143235.769355498,1802015.8256776133 + 06/24 06:00:00,0.0,0.0,280.19415291652327,1008698.9504994832,0.0,6143235.769355498,1802015.8256776133 + 06/24 07:00:00,0.0,114112121.81489764,279.37511688897498,1005750.4208003099,114112121.81489764,6143235.769355498,1802015.8256776133 + 06/24 08:00:00,0.0,133556214.30872023,555.414844112342,1999493.4388044314,133556214.30872023,9214853.654033246,10812094.954065679 + 06/24 09:00:00,0.0,207473827.5118136,2766.475342609733,9959311.23339504,207473827.5118136,24572943.077421994,28832253.210841814 + 06/24 10:00:00,0.0,225114912.93520037,2754.5486528846679,9916375.150384805,225114912.93520037,27644560.962099744,32436284.862197039 + 06/24 11:00:00,0.0,216144920.49344165,4935.8522682993129,17769068.165877526,216144920.49344165,27644560.962099744,32436284.862197039 + 06/24 12:00:00,0.0,186903114.95393635,4935.8522682993129,17769068.165877526,186903114.95393635,27644560.962099744,32436284.862197039 + 06/24 13:00:00,0.0,185024967.0206589,4919.327487030442,17709578.95330959,185024967.0206589,27644560.962099744,32436284.862197039 + 06/24 14:00:00,0.0,219189200.56576339,4901.871923531134,17646738.92471208,219189200.56576339,27644560.962099744,32436284.862197039 + 06/24 15:00:00,0.0,250034366.1907851,4919.327487030442,17709578.95330959,250034366.1907851,27644560.962099744,32436284.862197039 + 06/24 16:00:00,0.0,268162487.15623028,4919.327487030442,17709578.95330959,268162487.15623028,27644560.962099744,32436284.862197039 + 06/24 17:00:00,0.0,240411431.39702434,3838.9962086772427,13820386.351238074,240411431.39702434,27644560.962099744,32436284.862197039 + 06/24 18:00:00,0.0,230766537.88718,2746.139225997442,9886101.213590792,230766537.88718,27644560.962099744,28832253.210841814 + 06/24 19:00:00,0.0,145139820.51752565,1652.729191730801,5949825.090230883,145139820.51752565,15358089.423388744,18020158.25677613 + 06/24 20:00:00,0.0,55312567.86959669,1106.5901370438933,3983724.4933580157,55312567.86959669,9214853.654033246,10812094.954065679 + 06/24 21:00:00,0.0,35866000.74809806,1106.5901370438933,3983724.4933580157,35866000.74809806,9214853.654033246,10812094.954065679 + 06/24 22:00:00,0.0,0.0,1113.284317328827,4007823.542383777,0.0,6143235.769355498,3604031.6513552267 + 06/24 23:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,3604031.6513552267 + 06/24 24:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/25 01:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/25 02:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/25 03:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/25 04:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/25 05:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/25 06:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/25 07:00:00,42525794.108277659,0.0,281.19548845502598,43538097.86671574,0.0,6143235.769355498,1802015.8256776133 + 06/25 08:00:00,0.0,14924495.341652323,561.9784280350809,2023122.3409262917,14924495.341652323,9214853.654033246,10812094.954065679 + 06/25 09:00:00,0.0,64687072.05463959,2811.227493735838,10120418.977449017,64687072.05463959,24572943.077421994,28832253.210841814 + 06/25 10:00:00,0.0,64884903.61013651,2809.892140175405,10115611.704631459,64884903.61013651,27644560.962099744,32436284.862197039 + 06/25 11:00:00,0.0,67995669.1747436,5051.945540179122,18187003.94464484,67995669.1747436,27644560.962099744,32436284.862197039 + 06/25 12:00:00,0.0,63251504.714611548,5049.257652715951,18177327.549777423,63251504.714611548,27644560.962099744,32436284.862197039 + 06/25 13:00:00,0.0,66636516.98331769,5043.494752497416,18156581.1089907,66636516.98331769,27644560.962099744,32436284.862197039 + 06/25 14:00:00,0.0,83840687.18601243,5040.5194558254629,18145870.040971668,83840687.18601243,27644560.962099744,32436284.862197039 + 06/25 15:00:00,0.0,107266815.99459157,5036.656923567859,18131964.92484429,107266815.99459157,27644560.962099744,32436284.862197039 + 06/25 16:00:00,0.0,144021338.20150236,5033.195572411864,18119504.06068271,144021338.20150236,27644560.962099744,32436284.862197039 + 06/25 17:00:00,0.0,160449205.34799166,3917.399829441667,14102639.385990002,160449205.34799166,27644560.962099744,32436284.862197039 + 06/25 18:00:00,0.0,152691429.04406373,2800.2885865697014,10081038.911650924,152691429.04406373,27644560.962099744,28832253.210841814 + 06/25 19:00:00,0.0,93492041.15270385,1681.1649174991385,6052193.702996898,93492041.15270385,15358089.423388744,18020158.25677613 + 06/25 20:00:00,0.0,7839729.686720523,1124.2297614888528,4047227.14135987,7839729.686720523,9214853.654033246,10812094.954065679 + 06/25 21:00:00,25294015.77162705,0.0,1124.6534241467132,29342768.09855522,0.0,9214853.654033246,10812094.954065679 + 06/25 22:00:00,0.0,0.0,1124.6534241467132,4048752.3269281678,0.0,6143235.769355498,3604031.6513552267 + 06/25 23:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,3604031.6513552267 + 06/25 24:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/26 01:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 06/26 02:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 06/26 03:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 06/26 04:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 06/26 05:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 06/26 06:00:00,0.0,0.0,281.2084282860372,1012350.3418297342,0.0,6143235.769355498,1802015.8256776133 + 06/26 07:00:00,13469818.041576792,18520009.732870617,281.0574403722132,14481624.826916758,18520009.732870617,6143235.769355498,1802015.8256776133 + 06/26 08:00:00,0.0,89389617.00451496,561.0286280795501,2019703.0610863805,89389617.00451496,9214853.654033246,10812094.954065679 + 06/26 09:00:00,0.0,143738011.45721007,2801.9415291652305,10086989.50499483,143738011.45721007,24572943.077421994,28832253.210841814 + 06/26 10:00:00,0.0,162509531.00740097,2798.142735315477,10073313.847135717,162509531.00740097,27644560.962099744,32436284.862197039 + 06/26 11:00:00,0.0,163968131.64338473,5028.752104001549,18103507.574405578,163968131.64338473,27644560.962099744,32436284.862197039 + 06/26 12:00:00,0.0,143011878.90627549,5014.458577399421,18052050.878637919,143011878.90627549,27644560.962099744,32436284.862197039 + 06/26 13:00:00,0.0,147406908.12915827,5009.779427979722,18035205.940727,147406908.12915827,27644560.962099744,32436284.862197039 + 06/26 14:00:00,0.0,175344401.73026876,5003.882041634825,18013975.34988537,175344401.73026876,27644560.962099744,32436284.862197039 + 06/26 15:00:00,0.0,214055342.5997857,4992.276563779235,17972195.62960525,214055342.5997857,27644560.962099744,32436284.862197039 + 06/26 16:00:00,0.0,217627243.1616993,4992.276563779235,17972195.62960525,217627243.1616993,27644560.962099744,32436284.862197039 + 06/26 17:00:00,0.0,189483193.56237693,3896.4951106508935,14027382.398343217,189483193.56237693,27644560.962099744,32436284.862197039 + 06/26 18:00:00,0.0,137138306.8435285,2785.810320777456,10028917.154798843,137138306.8435285,27644560.962099744,28832253.210841814 + 06/26 19:00:00,0.0,72063190.35131173,1676.2507013338498,6034502.524801859,72063190.35131173,15358089.423388744,18020158.25677613 + 06/26 20:00:00,0.0,15484364.235010136,1119.2570941261905,4029325.5388542858,15484364.235010136,9214853.654033246,10812094.954065679 + 06/26 21:00:00,0.0,0.0,1121.5048587926154,4037417.4916534156,0.0,9214853.654033246,10812094.954065679 + 06/26 22:00:00,0.0,0.0,1120.7766116660924,4034795.801997932,0.0,6143235.769355498,3604031.6513552267 + 06/26 23:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,3604031.6513552267 + 06/26 24:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/27 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/27 02:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 06/27 03:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 06/27 04:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 06/27 05:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 06/27 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/27 07:00:00,108530893.9893677,0.0,281.1633560366783,109543082.07109973,0.0,6143235.769355498,1802015.8256776133 + 06/27 08:00:00,46340664.81864643,0.0,562.3267120733566,48365040.98211051,0.0,9214853.654033246,10812094.954065679 + 06/27 09:00:00,0.0,0.0,2811.633560366782,10121880.817320416,0.0,24572943.077421994,28832253.210841814 + 06/27 10:00:00,0.0,0.0,2811.227493735838,10120418.977449017,0.0,27644560.962099744,32436284.862197039 + 06/27 11:00:00,0.0,0.0,5059.033926699838,18212522.136119419,0.0,27644560.962099744,32436284.862197039 + 06/27 12:00:00,0.0,25342902.75357236,5056.034476513249,18201724.115447698,25342902.75357236,27644560.962099744,32436284.862197039 + 06/27 13:00:00,0.0,28772467.131931656,5051.945540179122,18187003.94464484,28772467.131931656,27644560.962099744,32436284.862197039 + 06/27 14:00:00,0.0,28599408.83557896,5051.945540179122,18187003.94464484,28599408.83557896,27644560.962099744,32436284.862197039 + 06/27 15:00:00,0.0,49614147.44337545,5046.771864566769,18168378.712440369,49614147.44337545,27644560.962099744,32436284.862197039 + 06/27 16:00:00,0.0,90078091.2857355,5043.494752497416,18156581.1089907,90078091.2857355,27644560.962099744,32436284.862197039 + 06/27 17:00:00,0.0,85185913.98399025,3920.404021197581,14113454.476311293,85185913.98399025,27644560.962099744,32436284.862197039 + 06/27 18:00:00,0.0,84896840.56670474,2800.2885865697014,10081038.911650924,84896840.56670474,27644560.962099744,28832253.210841814 + 06/27 19:00:00,0.0,38759691.1223249,1683.0858842386504,6059109.183259142,38759691.1223249,15358089.423388744,18020158.25677613 + 06/27 20:00:00,0.0,0.0,1122.654564484249,4041556.432143297,0.0,9214853.654033246,10812094.954065679 + 06/27 21:00:00,16549530.502139705,0.0,1123.1801496353838,20592979.040827086,0.0,9214853.654033246,10812094.954065679 + 06/27 22:00:00,0.0,0.0,1122.6545644842493,4041556.432143297,0.0,6143235.769355498,3604031.6513552267 + 06/27 23:00:00,0.0,0.0,281.0574403722132,1011806.7853399674,0.0,6143235.769355498,3604031.6513552267 + 06/27 24:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 06/28 01:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/28 02:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 06/28 03:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 06/28 04:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 06/28 05:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 06/28 06:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 06/28 07:00:00,0.0,55979874.47473589,281.0574403722132,1011806.7853399675,55979874.47473589,6143235.769355498,1802015.8256776133 + 06/28 08:00:00,0.0,126210036.78763958,561.0286280795501,2019703.0610863805,126210036.78763958,9214853.654033246,10812094.954065679 + 06/28 09:00:00,0.0,169206715.11917723,2801.9415291652305,10086989.50499483,169206715.11917723,24572943.077421994,28832253.210841814 + 06/28 10:00:00,0.0,162602592.82317094,2798.142735315477,10073313.847135717,162602592.82317094,27644560.962099744,32436284.862197039 + 06/28 11:00:00,0.0,130036275.99647549,5024.808716663643,18089311.379989119,130036275.99647549,27644560.962099744,32436284.862197039 + 06/28 12:00:00,0.0,109209348.86667975,5014.458577399421,18052050.878637919,109209348.86667975,27644560.962099744,32436284.862197039 + 06/28 13:00:00,0.0,113009233.05253054,5014.458577399421,18052050.878637919,113009233.05253054,27644560.962099744,32436284.862197039 + 06/28 14:00:00,0.0,150838263.66087077,5003.882041634825,18013975.34988537,150838263.66087077,27644560.962099744,32436284.862197039 + 06/28 15:00:00,0.0,196188065.73879565,4998.733597011079,17995440.949239885,196188065.73879565,27644560.962099744,32436284.862197039 + 06/28 16:00:00,0.0,220329365.8210721,4998.733597011079,17995440.949239885,220329365.8210721,27644560.962099744,32436284.862197039 + 06/28 17:00:00,0.0,228801051.15115539,3882.8817718282937,13978374.378581858,228801051.15115539,27644560.962099744,32436284.862197039 + 06/28 18:00:00,0.0,210828868.41598714,2779.9344675749027,10007764.08326965,210828868.41598714,27644560.962099744,28832253.210841814 + 06/28 19:00:00,0.0,143052335.16969214,1671.4861924664738,6017350.292879306,143052335.16969214,15358089.423388744,18020158.25677613 + 06/28 20:00:00,0.0,34102164.7236284,1117.5004675558999,4023001.6832012396,34102164.7236284,9214853.654033246,10812094.954065679 + 06/28 21:00:00,0.0,1640220.4655911534,1119.2570941261905,4029325.5388542858,1640220.4655911534,9214853.654033246,10812094.954065679 + 06/28 22:00:00,0.0,0.0,1119.2570941261902,4029325.538854285,0.0,6143235.769355498,3604031.6513552267 + 06/28 23:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,3604031.6513552267 + 06/28 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/29 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 06/29 02:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 06/29 03:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 06/29 04:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/29 05:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 06/29 06:00:00,0.0,0.0,280.79503740884595,1010862.1346718455,0.0,6143235.769355498,1802015.8256776133 + 06/29 07:00:00,0.0,0.0,280.37621469815385,1009354.3729133537,0.0,6143235.769355498,1802015.8256776133 + 06/29 08:00:00,0.0,0.0,279.81427353154757,1007331.3847135713,0.0,6143235.769355498,1802015.8256776133 + 06/29 09:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 06/29 10:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 06/29 11:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 06/29 12:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/29 13:00:00,0.0,0.0,279.81427353154757,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/29 14:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/29 15:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/29 16:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/29 17:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/29 18:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/29 19:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/29 20:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/29 21:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/29 22:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/29 23:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 06/29 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/30 01:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/30 02:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 06/30 03:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/30 04:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/30 05:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/30 06:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/30 07:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 06/30 08:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/30 09:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 06/30 10:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/30 11:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/30 12:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 06/30 13:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/30 14:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 06/30 15:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 06/30 16:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 06/30 17:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 06/30 18:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 06/30 19:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 06/30 20:00:00,0.0,0.0,278.92487232665476,1004129.540375957,0.0,6143235.769355498,1802015.8256776133 + 06/30 21:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 06/30 22:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 06/30 23:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 06/30 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 07/01 01:00:00,0.0,0.0,279.99432251054608,1007979.5610379658,0.0,6143235.769355498,1802015.8256776133 + 07/01 02:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 07/01 03:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 07/01 04:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/01 05:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 07/01 06:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 07/01 07:00:00,1864154.0319470948,0.0,279.20082418608538,2869276.999017002,0.0,6143235.769355498,1802015.8256776133 + 07/01 08:00:00,13639576.55464327,9395843.4794736,555.1794404384285,15638222.540221613,9395843.4794736,9214853.654033246,10812094.954065679 + 07/01 09:00:00,0.0,62065892.44261482,2783.2107933220675,10019558.855959442,62065892.44261482,24572943.077421994,28832253.210841814 + 07/01 10:00:00,0.0,92049933.73901269,2774.096544283043,9986747.559418954,92049933.73901269,27644560.962099744,32436284.862197039 + 07/01 11:00:00,0.0,169836522.25629986,4974.817237973431,17909342.05670435,169836522.25629986,27644560.962099744,32436284.862197039 + 07/01 12:00:00,0.0,149729840.076868,4963.450859037871,17868423.092536335,149729840.076868,27644560.962099744,32436284.862197039 + 07/01 13:00:00,0.0,150649628.00290133,4960.83539993484,17859007.439765425,150649628.00290133,27644560.962099744,32436284.862197039 + 07/01 14:00:00,0.0,167719761.8286075,4954.155375148696,17834959.350535308,167719761.8286075,27644560.962099744,32436284.862197039 + 07/01 15:00:00,0.0,217368144.24998478,4952.795236528426,17830062.851502338,217368144.24998478,27644560.962099744,32436284.862197039 + 07/01 16:00:00,0.0,230678888.41880096,4966.0338521185099,17877721.867626635,230678888.41880096,27644560.962099744,32436284.862197039 + 07/01 17:00:00,0.0,236805624.73755417,3868.3454834188835,13926043.74030798,236805624.73755417,27644560.962099744,32436284.862197039 + 07/01 18:00:00,0.0,220913158.31379817,2767.7917890061178,9964050.440422023,220913158.31379817,27644560.962099744,28832253.210841814 + 07/01 19:00:00,0.0,158707876.77013503,1664.0921879264118,5990731.876535082,158707876.77013503,15358089.423388744,18020158.25677613 + 07/01 20:00:00,0.0,39060379.1332327,1110.5952228780537,3998142.802360993,39060379.1332327,9214853.654033246,10812094.954065679 + 07/01 21:00:00,0.0,13837351.314040307,1111.9737870299612,4003105.6333078604,13837351.314040307,9214853.654033246,10812094.954065679 + 07/01 22:00:00,0.0,0.0,1113.284317328827,4007823.542383777,0.0,6143235.769355498,3604031.6513552267 + 07/01 23:00:00,0.0,0.0,278.5299957731313,1002707.9847832727,0.0,6143235.769355498,3604031.6513552267 + 07/01 24:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/02 01:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/02 02:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 07/02 03:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 07/02 04:00:00,0.0,0.0,280.4876864526107,1009755.6712293986,0.0,6143235.769355498,1802015.8256776133 + 07/02 05:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 07/02 06:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 07/02 07:00:00,0.0,61362724.49093819,280.3175057376663,1009143.0206555986,61362724.49093819,6143235.769355498,1802015.8256776133 + 07/02 08:00:00,0.0,20461245.284494506,560.451464506952,2017625.2722250273,20461245.284494506,9214853.654033246,10812094.954065679 + 07/02 09:00:00,0.0,41082911.101288799,2804.6056246222676,10096580.248640163,41082911.101288799,24572943.077421994,28832253.210841814 + 07/02 10:00:00,0.0,76070764.05662854,2804.6056246222676,10096580.248640163,76070764.05662854,27644560.962099744,32436284.862197039 + 07/02 11:00:00,0.0,82588567.19095531,5045.715103277994,18164574.371800778,82588567.19095531,27644560.962099744,32436284.862197039 + 07/02 12:00:00,0.0,82846699.34158267,5042.33124822409,18152392.493606725,82846699.34158267,27644560.962099744,32436284.862197039 + 07/02 13:00:00,0.0,79085656.05582926,5042.91743987145,18154502.78353722,79085656.05582926,27644560.962099744,32436284.862197039 + 07/02 14:00:00,0.0,74456834.27856787,5045.17336127905,18162624.100604584,74456834.27856787,27644560.962099744,32436284.862197039 + 07/02 15:00:00,0.0,76651007.8957203,5045.715103277994,18164574.371800778,76651007.8957203,27644560.962099744,32436284.862197039 + 07/02 16:00:00,0.0,79489721.60050407,5036.656923567859,18131964.92484429,79489721.60050407,27644560.962099744,32436284.862197039 + 07/02 17:00:00,0.0,95025930.50777832,3922.718140831322,14121785.30699276,95025930.50777832,27644560.962099744,32436284.862197039 + 07/02 18:00:00,0.0,66830509.727596748,2803.4710774508068,10092495.878822905,66830509.727596748,27644560.962099744,28832253.210841814 + 07/02 19:00:00,0.0,68410961.98393485,1681.9050344259977,6054858.123933592,68410961.98393485,15358089.423388744,18020158.25677613 + 07/02 20:00:00,0.0,4165687.4565559986,1122.0572561591003,4039406.122172761,4165687.4565559986,9214853.654033246,10812094.954065679 + 07/02 21:00:00,8668463.692827855,0.0,1122.9263343846195,12710998.496612486,0.0,9214853.654033246,10812094.954065679 + 07/02 22:00:00,0.0,0.0,1123.2607609637547,4043738.7394695167,0.0,6143235.769355498,3604031.6513552267 + 07/02 23:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,3604031.6513552267 + 07/02 24:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 07/03 01:00:00,0.0,0.0,281.17607900888529,1012233.884431987,0.0,6143235.769355498,1802015.8256776133 + 07/03 02:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 07/03 03:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 07/03 04:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 07/03 05:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 07/03 06:00:00,0.0,0.0,280.94226256204458,1011392.1452233605,0.0,6143235.769355498,1802015.8256776133 + 07/03 07:00:00,0.0,96774862.18401768,280.56607898722407,1010037.8843540065,96774862.18401768,6143235.769355498,1802015.8256776133 + 07/03 08:00:00,0.0,121192320.02772846,560.2590275804545,2016932.499289636,121192320.02772846,9214853.654033246,10812094.954065679 + 07/03 09:00:00,0.0,174784704.89964734,2795.4163803848648,10063498.969385513,174784704.89964734,24572943.077421994,28832253.210841814 + 07/03 10:00:00,0.0,181884978.10061056,2785.299957731313,10027079.847832727,181884978.10061056,27644560.962099744,32436284.862197039 + 07/03 11:00:00,0.0,162080086.7301667,4993.373779709477,17976145.606954118,162080086.7301667,27644560.962099744,32436284.862197039 + 07/03 12:00:00,0.0,135000571.18893109,4992.276563779235,17972195.62960525,135000571.18893109,27644560.962099744,32436284.862197039 + 07/03 13:00:00,0.0,135123301.77517543,4985.517386936821,17947862.592972556,135123301.77517543,27644560.962099744,32436284.862197039 + 07/03 14:00:00,0.0,174518754.09582586,4976.039200249322,17913741.120897559,174518754.09582586,27644560.962099744,32436284.862197039 + 07/03 15:00:00,0.0,223090959.5974612,4973.587050109994,17904913.38039598,223090959.5974612,27644560.962099744,32436284.862197039 + 07/03 16:00:00,0.0,232007276.5876974,4986.664800809918,17951993.282915705,232007276.5876974,27644560.962099744,32436284.862197039 + 07/03 17:00:00,0.0,186203135.86451028,3885.4223257109335,13987520.37255936,186203135.86451028,27644560.962099744,32436284.862197039 + 07/03 18:00:00,0.0,124732591.07886316,2777.655686667525,9999560.472003092,124732591.07886316,27644560.962099744,28832253.210841814 + 07/03 19:00:00,0.0,56876184.41418084,1668.2954187546616,6005863.507516782,56876184.41418084,15358089.423388744,18020158.25677613 + 07/03 20:00:00,0.0,19324344.479070039,1114.3241283109827,4011566.861919537,19324344.479070039,9214853.654033246,10812094.954065679 + 07/03 21:00:00,0.0,11833863.075163944,1114.1199830925253,4010831.939133091,11833863.075163944,9214853.654033246,10812094.954065679 + 07/03 22:00:00,0.0,0.0,1116.0751467496846,4017870.5282988648,0.0,6143235.769355498,3604031.6513552267 + 07/03 23:00:00,0.0,0.0,279.5416380384865,1006349.8969385513,0.0,6143235.769355498,3604031.6513552267 + 07/03 24:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 07/04 01:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 07/04 02:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 07/04 03:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 07/04 04:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 07/04 05:00:00,0.0,0.0,279.99432251054608,1007979.5610379658,0.0,6143235.769355498,1802015.8256776133 + 07/04 06:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 07/04 07:00:00,15476346.554827709,0.0,279.9237755458882,16484072.146792908,0.0,6143235.769355498,1802015.8256776133 + 07/04 08:00:00,15948458.613476197,0.0,560.2590275804545,17965391.11276583,0.0,9214853.654033246,10812094.954065679 + 07/04 09:00:00,0.0,57181745.93284118,2795.0073775272405,10062026.559098065,57181745.93284118,24572943.077421994,28832253.210841814 + 07/04 10:00:00,0.0,83670334.36210189,2787.8039138278325,10036094.089780197,83670334.36210189,27644560.962099744,32436284.862197039 + 07/04 11:00:00,0.0,83619050.80303127,5016.270057773201,18058572.207983525,83619050.80303127,27644560.962099744,32436284.862197039 + 07/04 12:00:00,0.0,96822176.35004483,5011.676834431065,18042036.603951836,96822176.35004483,27644560.962099744,32436284.862197039 + 07/04 13:00:00,0.0,114828148.6961074,5004.886256263985,18017590.52255035,114828148.6961074,27644560.962099744,32436284.862197039 + 07/04 14:00:00,0.0,91582958.2930509,5001.84810868483,18006653.191265387,91582958.2930509,27644560.962099744,32436284.862197039 + 07/04 15:00:00,0.0,118920428.60028428,4998.733597011079,17995440.949239885,118920428.60028428,27644560.962099744,32436284.862197039 + 07/04 16:00:00,0.0,116950412.198782,4998.733597011079,17995440.949239885,116950412.198782,27644560.962099744,32436284.862197039 + 07/04 17:00:00,0.0,111870495.2639968,3884.582015999046,13984495.257596566,111870495.2639968,27644560.962099744,32436284.862197039 + 07/04 18:00:00,0.0,133705281.98911387,2774.7014399993188,9988925.183997548,133705281.98911387,27644560.962099744,28832253.210841814 + 07/04 19:00:00,0.0,136178157.04406724,1668.2954187546616,6005863.507516782,136178157.04406724,15358089.423388744,18020158.25677613 + 07/04 20:00:00,0.0,22163070.30505271,1115.699489306619,4016518.161503828,22163070.30505271,9214853.654033246,10812094.954065679 + 07/04 21:00:00,0.0,0.0,1117.3290850860872,4022384.7063099138,0.0,9214853.654033246,10812094.954065679 + 07/04 22:00:00,0.0,0.0,1118.4879049804143,4026556.457929491,0.0,6143235.769355498,3604031.6513552267 + 07/04 23:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,3604031.6513552267 + 07/04 24:00:00,0.0,0.0,279.8877654045653,1007595.9554564351,0.0,6143235.769355498,1802015.8256776133 + 07/05 01:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 07/05 02:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 07/05 03:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/05 04:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 07/05 05:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 07/05 06:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 07/05 07:00:00,0.0,1399960.8774351364,278.82903233957429,1003784.5164224674,1399960.8774351364,6143235.769355498,1802015.8256776133 + 07/05 08:00:00,0.0,65498695.70855202,556.7480462561672,2004292.966522202,65498695.70855202,9214853.654033246,10812094.954065679 + 07/05 09:00:00,0.0,133200137.73886526,2779.9344675749027,10007764.08326965,133200137.73886526,24572943.077421994,28832253.210841814 + 07/05 10:00:00,0.0,148328620.5795927,2773.486979877353,9984553.12755847,148328620.5795927,27644560.962099744,32436284.862197039 + 07/05 11:00:00,0.0,168408180.7355992,4977.252925212717,17918110.53076578,168408180.7355992,27644560.962099744,32436284.862197039 + 07/05 12:00:00,0.0,150328187.62823353,4968.584280039837,17886903.408143414,150328187.62823353,27644560.962099744,32436284.862197039 + 07/05 13:00:00,0.0,154145886.07965959,4947.274670883567,17810188.815180839,154145886.07965959,27644560.962099744,32436284.862197039 + 07/05 14:00:00,0.0,188429371.60226066,4940.194937648062,17784701.77553302,188429371.60226066,27644560.962099744,32436284.862197039 + 07/05 15:00:00,0.0,217636323.84326116,4947.274670883567,17810188.815180839,217636323.84326116,27644560.962099744,32436284.862197039 + 07/05 16:00:00,0.0,236616760.32434768,4954.155375148696,17834959.350535308,236616760.32434768,27644560.962099744,32436284.862197039 + 07/05 17:00:00,0.0,222734564.32721988,3861.4694378215629,13901289.976157627,222734564.32721988,27644560.962099744,32436284.862197039 + 07/05 18:00:00,0.0,179584303.80908228,2763.787354429683,9949634.475946859,179584303.80908228,27644560.962099744,28832253.210841814 + 07/05 19:00:00,0.0,107286919.21660975,1662.9781999417583,5986721.51979033,107286919.21660975,15358089.423388744,18020158.25677613 + 07/05 20:00:00,0.0,31780892.1948348,1114.7266795051558,4013016.0462185607,31780892.1948348,9214853.654033246,10812094.954065679 + 07/05 21:00:00,0.0,3664183.7132662127,1117.6699071140648,4023611.665610633,3664183.7132662127,9214853.654033246,10812094.954065679 + 07/05 22:00:00,0.0,0.0,1119.8371787792774,4031413.843605398,0.0,6143235.769355498,3604031.6513552267 + 07/05 23:00:00,0.0,0.0,280.3175057376663,1009143.0206555986,0.0,6143235.769355498,3604031.6513552267 + 07/05 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 07/06 01:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 07/06 02:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 07/06 03:00:00,0.0,0.0,280.81519024093867,1010934.6848673791,0.0,6143235.769355498,1802015.8256776133 + 07/06 04:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 07/06 05:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 07/06 06:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 07/06 07:00:00,0.0,0.0,280.3762146981538,1009354.3729133537,0.0,6143235.769355498,1802015.8256776133 + 07/06 08:00:00,0.0,0.0,280.1620799928582,1008583.4879742896,0.0,6143235.769355498,1802015.8256776133 + 07/06 09:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 07/06 10:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 07/06 11:00:00,0.0,0.0,279.20082418608538,1005122.9670699072,0.0,6143235.769355498,1802015.8256776133 + 07/06 12:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 07/06 13:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 07/06 14:00:00,0.0,0.0,278.5299957731313,1002707.9847832727,0.0,6143235.769355498,1802015.8256776133 + 07/06 15:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 07/06 16:00:00,0.0,0.0,278.1593963140338,1001373.8267305218,0.0,6143235.769355498,1802015.8256776133 + 07/06 17:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 07/06 18:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 07/06 19:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 07/06 20:00:00,0.0,0.0,280.3175057376662,1009143.0206555987,0.0,6143235.769355498,1802015.8256776133 + 07/06 21:00:00,0.0,0.0,280.6636411210623,1010389.1080358243,0.0,6143235.769355498,1802015.8256776133 + 07/06 22:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 07/06 23:00:00,0.0,0.0,280.7532338858979,1010711.6419892324,0.0,6143235.769355498,1802015.8256776133 + 07/06 24:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 07/07 01:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 07/07 02:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 07/07 03:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 07/07 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 07/07 05:00:00,0.0,0.0,281.11312021485278,1012007.23277347,0.0,6143235.769355498,1802015.8256776133 + 07/07 06:00:00,0.0,0.0,280.7315835961551,1010633.7009461573,0.0,6143235.769355498,1802015.8256776133 + 07/07 07:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 07/07 08:00:00,0.0,0.0,279.8142735315476,1007331.3847135713,0.0,6143235.769355498,1802015.8256776133 + 07/07 09:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/07 10:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 07/07 11:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 07/07 12:00:00,0.0,0.0,277.8804504824905,1000369.6217369658,0.0,6143235.769355498,1802015.8256776133 + 07/07 13:00:00,0.0,0.0,277.58972021921428,999322.9927891713,0.0,6143235.769355498,1802015.8256776133 + 07/07 14:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 07/07 15:00:00,0.0,0.0,277.58972021921428,999322.9927891713,0.0,6143235.769355498,1802015.8256776133 + 07/07 16:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/07 17:00:00,0.0,0.0,277.53016612220957,999108.5980399544,0.0,6143235.769355498,1802015.8256776133 + 07/07 18:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 07/07 19:00:00,0.0,0.0,277.6488057195134,999535.7005902482,0.0,6143235.769355498,1802015.8256776133 + 07/07 20:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 07/07 21:00:00,0.0,0.0,278.4784818496962,1002522.5346589063,0.0,6143235.769355498,1802015.8256776133 + 07/07 22:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/07 23:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/07 24:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 07/08 01:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 07/08 02:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 07/08 03:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 07/08 04:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 07/08 05:00:00,0.0,0.0,280.81519024093867,1010934.6848673791,0.0,6143235.769355498,1802015.8256776133 + 07/08 06:00:00,0.0,0.0,280.40482631759928,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 07/08 07:00:00,0.0,150950893.99258317,279.2451245019825,1005282.4482071371,150950893.99258317,6143235.769355498,1802015.8256776133 + 07/08 08:00:00,0.0,148892768.13934226,557.3633397525779,2006508.0231092803,148892768.13934226,9214853.654033246,10812094.954065679 + 07/08 09:00:00,0.0,141370240.39504064,2785.299957731313,10027079.847832727,141370240.39504064,24572943.077421994,28832253.210841814 + 07/08 10:00:00,0.0,154776278.6818034,2774.7014399993188,9988925.183997548,154776278.6818034,27644560.962099744,32436284.862197039 + 07/08 11:00:00,0.0,161252280.04080913,4992.276563779235,17972195.62960525,161252280.04080913,27644560.962099744,32436284.862197039 + 07/08 12:00:00,0.0,144020469.9396245,4996.614963945856,17987813.870205083,144020469.9396245,27644560.962099744,32436284.862197039 + 07/08 13:00:00,0.0,125594885.79127667,4988.934599825275,17960164.55937099,125594885.79127667,27644560.962099744,32436284.862197039 + 07/08 14:00:00,0.0,144968202.71700908,4988.934599825275,17960164.55937099,144968202.71700908,27644560.962099744,32436284.862197039 + 07/08 15:00:00,0.0,164220760.23480834,4986.664800809918,17951993.282915705,164220760.23480834,27644560.962099744,32436284.862197039 + 07/08 16:00:00,0.0,196325241.91337285,4974.817237973431,17909342.05670435,196325241.91337285,27644560.962099744,32436284.862197039 + 07/08 17:00:00,0.0,233456823.2052359,3875.820344283928,13952953.23942214,233456823.2052359,27644560.962099744,32436284.862197039 + 07/08 18:00:00,0.0,203578315.1155551,2777.655686667525,9999560.472003092,203578315.1155551,27644560.962099744,28832253.210841814 + 07/08 19:00:00,0.0,83633018.06442859,1668.627318929296,6007058.348145465,83633018.06442859,15358089.423388744,18020158.25677613 + 07/08 20:00:00,0.0,26027319.7853308,1114.1199830925253,4010831.939133091,26027319.7853308,9214853.654033246,10812094.954065679 + 07/08 21:00:00,0.0,9749386.89199362,1116.260082514567,4018536.2970524418,9749386.89199362,9214853.654033246,10812094.954065679 + 07/08 22:00:00,0.0,0.0,1116.8032967443415,4020491.868279629,0.0,6143235.769355498,3604031.6513552267 + 07/08 23:00:00,0.0,0.0,278.4264908017258,1002335.3668862128,0.0,6143235.769355498,3604031.6513552267 + 07/08 24:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/09 01:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/09 02:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 07/09 03:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 07/09 04:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 07/09 05:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 07/09 06:00:00,0.0,0.0,279.6219762451037,1006639.1144823729,0.0,6143235.769355498,1802015.8256776133 + 07/09 07:00:00,0.0,167504486.03328986,279.1107718173807,1004798.7785425704,167504486.03328986,6143235.769355498,1802015.8256776133 + 07/09 08:00:00,0.0,151698836.9226166,557.0599915462626,2005415.9695665455,151698836.9226166,9214853.654033246,10812094.954065679 + 07/09 09:00:00,0.0,158779484.745378,2781.0455315488268,10011763.913575776,158779484.745378,24572943.077421994,28832253.210841814 + 07/09 10:00:00,0.0,176616232.20569656,2777.655686667525,9999560.472003092,176616232.20569656,27644560.962099744,32436284.862197039 + 07/09 11:00:00,0.0,147662351.9191063,4997.678502951242,17991642.61062447,147662351.9191063,27644560.962099744,32436284.862197039 + 07/09 12:00:00,0.0,115281244.78479904,4985.517386936821,17947862.592972556,115281244.78479904,27644560.962099744,32436284.862197039 + 07/09 13:00:00,0.0,125276834.16673729,4992.276563779235,17972195.62960525,125276834.16673729,27644560.962099744,32436284.862197039 + 07/09 14:00:00,0.0,101882855.1012268,5033.195572411864,18119504.06068271,101882855.1012268,27644560.962099744,32436284.862197039 + 07/09 15:00:00,0.0,121239669.17080732,5014.458577399421,18052050.878637919,121239669.17080732,27644560.962099744,32436284.862197039 + 07/09 16:00:00,0.0,189655287.3942262,5007.847777386004,18028251.998589618,189655287.3942262,27644560.962099744,32436284.862197039 + 07/09 17:00:00,0.0,178242221.60072608,3902.925479358965,14050531.725692274,178242221.60072608,27644560.962099744,32436284.862197039 + 07/09 18:00:00,0.0,171035643.1626286,2786.8166987628894,10032540.115546402,171035643.1626286,27644560.962099744,28832253.210841814 + 07/09 19:00:00,0.0,98845888.75035843,1674.9362388878809,6029770.459996371,98845888.75035843,15358089.423388744,18020158.25677613 + 07/09 20:00:00,0.0,12040023.084392736,1117.837402134779,4024214.6476852048,12040023.084392736,9214853.654033246,10812094.954065679 + 07/09 21:00:00,0.0,0.0,1119.4050584654984,4029858.210475794,0.0,9214853.654033246,10812094.954065679 + 07/09 22:00:00,0.0,0.0,1122.5599886070664,4041215.9589854388,0.0,6143235.769355498,3604031.6513552267 + 07/09 23:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,3604031.6513552267 + 07/09 24:00:00,0.0,0.0,281.04479834185136,1011761.2740306648,0.0,6143235.769355498,1802015.8256776133 + 07/10 01:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 07/10 02:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 07/10 03:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 07/10 04:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 07/10 05:00:00,0.0,0.0,281.16996899770427,1012211.8883917354,0.0,6143235.769355498,1802015.8256776133 + 07/10 06:00:00,0.0,0.0,280.97406455242477,1011506.6323887294,0.0,6143235.769355498,1802015.8256776133 + 07/10 07:00:00,0.0,89224501.34106259,280.4605624622268,1009658.0248640165,89224501.34106259,6143235.769355498,1802015.8256776133 + 07/10 08:00:00,0.0,139271890.76438017,559.7025292327492,2014929.105237897,139271890.76438017,9214853.654033246,10812094.954065679 + 07/10 09:00:00,0.0,176764837.2614381,2796.2197624510356,10066391.144823729,176764837.2614381,24572943.077421994,28832253.210841814 + 07/10 10:00:00,0.0,174043527.26453079,2793.7511688897495,10057504.208003099,174043527.26453079,27644560.962099744,32436284.862197039 + 07/10 11:00:00,0.0,150706929.14401288,5023.170371315552,18083413.336735988,150706929.14401288,27644560.962099744,32436284.862197039 + 07/10 12:00:00,0.0,128021778.77048767,5009.779427979722,18035205.940727,128021778.77048767,27644560.962099744,32436284.862197039 + 07/10 13:00:00,0.0,131856863.37391156,5002.869322536032,18010329.561129717,131856863.37391156,27644560.962099744,32436284.862197039 + 07/10 14:00:00,0.0,171628996.02312444,4993.373779709477,17976145.606954118,171628996.02312444,27644560.962099744,32436284.862197039 + 07/10 15:00:00,0.0,222723254.41165326,4997.678502951242,17991642.61062447,222723254.41165326,27644560.962099744,32436284.862197039 + 07/10 16:00:00,0.0,253209363.14089839,4993.373779709477,17976145.606954118,253209363.14089839,27644560.962099744,32436284.862197039 + 07/10 17:00:00,0.0,264340579.14343215,3884.582015999046,13984495.257596566,264340579.14343215,27644560.962099744,32436284.862197039 + 07/10 18:00:00,0.0,245611416.27015985,2779.371845853351,10005738.645072064,245611416.27015985,27644560.962099744,28832253.210841814 + 07/10 19:00:00,0.0,168968163.8951029,1672.0900192577336,6019524.069327841,168968163.8951029,15358089.423388744,18020158.25677613 + 07/10 20:00:00,0.0,45203446.68128157,1117.1557613490732,4021760.7408566635,45203446.68128157,9214853.654033246,10812094.954065679 + 07/10 21:00:00,0.0,11655404.131509196,1119.5510616182613,4030383.8218257406,11655404.131509196,9214853.654033246,10812094.954065679 + 07/10 22:00:00,0.0,0.0,1121.0272708028302,4035698.1748901887,0.0,6143235.769355498,3604031.6513552267 + 07/10 23:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,3604031.6513552267 + 07/10 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 07/11 01:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 07/11 02:00:00,0.0,0.0,280.7532338858979,1010711.6419892324,0.0,6143235.769355498,1802015.8256776133 + 07/11 03:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 07/11 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 07/11 05:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 07/11 06:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 07/11 07:00:00,0.0,142689313.5717512,279.6614133950985,1006781.0882223547,142689313.5717512,6143235.769355498,1802015.8256776133 + 07/11 08:00:00,0.0,151126316.89543063,558.2215436347614,2009597.5570851409,151126316.89543063,9214853.654033246,10812094.954065679 + 07/11 09:00:00,0.0,206583095.49195344,2787.3127040457986,10034325.734564875,206583095.49195344,24572943.077421994,28832253.210841814 + 07/11 10:00:00,0.0,235446808.7871793,2777.655686667525,9999560.472003092,235446808.7871793,27644560.962099744,32436284.862197039 + 07/11 11:00:00,0.0,209827891.94844026,4983.197585507909,17939511.30782847,209827891.94844026,27644560.962099744,32436284.862197039 + 07/11 12:00:00,0.0,185518323.69139827,4973.587050109994,17904913.38039598,185518323.69139827,27644560.962099744,32436284.862197039 + 07/11 13:00:00,0.0,155539450.22787369,4974.817237973431,17909342.05670435,155539450.22787369,27644560.962099744,32436284.862197039 + 07/11 14:00:00,0.0,189288744.9181638,4969.847251427131,17891450.105137674,189288744.9181638,27644560.962099744,32436284.862197039 + 07/11 15:00:00,0.0,215645755.54824419,4974.817237973431,17909342.05670435,215645755.54824419,27644560.962099744,32436284.862197039 + 07/11 16:00:00,0.0,225973200.825421,4964.746420056296,17873087.112202668,225973200.825421,27644560.962099744,32436284.862197039 + 07/11 17:00:00,0.0,156400285.76387365,3865.4367511099896,13915572.303995962,156400285.76387365,27644560.962099744,32436284.862197039 + 07/11 18:00:00,0.0,116357274.00711884,2763.787354429683,9949634.475946859,116357274.00711884,27644560.962099744,28832253.210841814 + 07/11 19:00:00,0.0,76157885.85652815,1656.61575047571,5963816.701712556,76157885.85652815,15358089.423388744,18020158.25677613 + 07/11 20:00:00,0.0,47717903.964369889,1108.6521332945054,3991147.6798602195,47717903.964369889,9214853.654033246,10812094.954065679 + 07/11 21:00:00,0.0,40638875.82425942,1109.6386177132172,3994699.0237675819,40638875.82425942,9214853.654033246,10812094.954065679 + 07/11 22:00:00,0.0,0.0,1110.829688224684,3998986.8776088629,0.0,6143235.769355498,3604031.6513552267 + 07/11 23:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,3604031.6513552267 + 07/11 24:00:00,0.0,0.0,278.4264908017258,1002335.3668862128,0.0,6143235.769355498,1802015.8256776133 + 07/12 01:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 07/12 02:00:00,0.0,0.0,278.5299957731313,1002707.9847832727,0.0,6143235.769355498,1802015.8256776133 + 07/12 03:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/12 04:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 07/12 05:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 07/12 06:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/12 07:00:00,0.0,0.0,279.20082418608538,1005122.9670699072,0.0,6143235.769355498,1802015.8256776133 + 07/12 08:00:00,0.0,38283802.798461448,558.2215436347614,2009597.5570851409,38283802.798461448,9214853.654033246,10812094.954065679 + 07/12 09:00:00,0.0,85696227.70783256,2792.0082418608546,10051229.670699077,85696227.70783256,24572943.077421994,28832253.210841814 + 07/12 10:00:00,0.0,88879793.21479297,2795.820509985362,10064953.835947304,88879793.21479297,27644560.962099744,32436284.862197039 + 07/12 11:00:00,0.0,81041563.04238695,5036.656923567859,18131964.92484429,81041563.04238695,27644560.962099744,32436284.862197039 + 07/12 12:00:00,0.0,81443723.83257605,5033.195572411864,18119504.06068271,81443723.83257605,27644560.962099744,32436284.862197039 + 07/12 13:00:00,0.0,72068988.71131337,5025.614835349538,18092213.40725834,72068988.71131337,27644560.962099744,32436284.862197039 + 07/12 14:00:00,0.0,64297158.34927659,5024.808716663643,18089311.379989119,64297158.34927659,27644560.962099744,32436284.862197039 + 07/12 15:00:00,0.0,60683689.95831726,5030.268309606505,18108965.91458342,60683689.95831726,27644560.962099744,32436284.862197039 + 07/12 16:00:00,0.0,60729967.08374588,5027.980882887392,18100731.178394613,60729967.08374588,27644560.962099744,32436284.862197039 + 07/12 17:00:00,0.0,40169763.78649138,3907.550805443329,14067182.899595984,40169763.78649138,27644560.962099744,32436284.862197039 + 07/12 18:00:00,0.0,37553002.17476033,2788.290323395743,10037845.164224675,37553002.17476033,27644560.962099744,28832253.210841814 + 07/12 19:00:00,0.0,12180036.335787766,1672.3876224274794,6020595.440738926,12180036.335787766,15358089.423388744,18020158.25677613 + 07/12 20:00:00,0.0,0.0,1115.121565531133,4014437.635912079,0.0,9214853.654033246,10812094.954065679 + 07/12 21:00:00,0.0,0.0,1114.925081618319,4013730.293825948,0.0,9214853.654033246,10812094.954065679 + 07/12 22:00:00,0.0,0.0,1115.121565531133,4014437.635912079,0.0,6143235.769355498,3604031.6513552267 + 07/12 23:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,3604031.6513552267 + 07/12 24:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/13 01:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/13 02:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 07/13 03:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 07/13 04:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 07/13 05:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/13 06:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 07/13 07:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 07/13 08:00:00,0.0,0.0,277.2872752631131,998234.1909472072,0.0,6143235.769355498,1802015.8256776133 + 07/13 09:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 07/13 10:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 07/13 11:00:00,0.0,0.0,276.03246000221318,993716.8560079674,0.0,6143235.769355498,1802015.8256776133 + 07/13 12:00:00,0.0,0.0,274.7708107163896,989174.9185790025,0.0,6143235.769355498,1802015.8256776133 + 07/13 13:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/13 14:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 07/13 15:00:00,0.0,0.0,277.2872752631131,998234.1909472072,0.0,6143235.769355498,1802015.8256776133 + 07/13 16:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/13 17:00:00,0.0,0.0,276.03246000221318,993716.8560079674,0.0,6143235.769355498,1802015.8256776133 + 07/13 18:00:00,0.0,0.0,275.96184127063148,993462.6285742731,0.0,6143235.769355498,1802015.8256776133 + 07/13 19:00:00,0.0,0.0,276.5140514007065,995450.5850425434,0.0,6143235.769355498,1802015.8256776133 + 07/13 20:00:00,0.0,0.0,277.53016612220957,999108.5980399543,0.0,6143235.769355498,1802015.8256776133 + 07/13 21:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 07/13 22:00:00,0.0,0.0,278.73127040457976,1003432.5734564872,0.0,6143235.769355498,1802015.8256776133 + 07/13 23:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 07/13 24:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/14 01:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/14 02:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 07/14 03:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 07/14 04:00:00,0.0,0.0,280.4876864526107,1009755.6712293986,0.0,6143235.769355498,1802015.8256776133 + 07/14 05:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 07/14 06:00:00,0.0,0.0,279.5820509985364,1006495.3835947306,0.0,6143235.769355498,1802015.8256776133 + 07/14 07:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 07/14 08:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,1802015.8256776133 + 07/14 09:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 07/14 10:00:00,0.0,0.0,278.73127040457976,1003432.5734564872,0.0,6143235.769355498,1802015.8256776133 + 07/14 11:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 07/14 12:00:00,0.0,0.0,277.53016612220957,999108.5980399544,0.0,6143235.769355498,1802015.8256776133 + 07/14 13:00:00,0.0,0.0,276.44662223607346,995207.8400498644,0.0,6143235.769355498,1802015.8256776133 + 07/14 14:00:00,0.0,0.0,276.1723358286003,994220.408982961,0.0,6143235.769355498,1802015.8256776133 + 07/14 15:00:00,0.0,0.0,275.6748434163543,992429.4362988755,0.0,6143235.769355498,1802015.8256776133 + 07/14 16:00:00,0.0,0.0,275.38064207865917,991370.3114831729,0.0,6143235.769355498,1802015.8256776133 + 07/14 17:00:00,0.0,0.0,275.07928242365156,990285.4167251454,0.0,6143235.769355498,1802015.8256776133 + 07/14 18:00:00,0.0,0.0,275.7472699465484,992690.1718075742,0.0,6143235.769355498,1802015.8256776133 + 07/14 19:00:00,0.0,0.0,276.9731881631567,997103.477387364,0.0,6143235.769355498,1802015.8256776133 + 07/14 20:00:00,0.0,0.0,278.8290323395742,1003784.5164224673,0.0,6143235.769355498,1802015.8256776133 + 07/14 21:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 07/14 22:00:00,0.0,0.0,279.24512450198247,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 07/14 23:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 07/14 24:00:00,0.0,0.0,279.5416380384865,1006349.8969385513,0.0,6143235.769355498,1802015.8256776133 + 07/15 01:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 07/15 02:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 07/15 03:00:00,0.0,0.0,279.95929469481936,1007853.4609013496,0.0,6143235.769355498,1802015.8256776133 + 07/15 04:00:00,0.0,0.0,279.8877654045653,1007595.9554564351,0.0,6143235.769355498,1802015.8256776133 + 07/15 05:00:00,0.0,0.0,279.95929469481936,1007853.4609013496,0.0,6143235.769355498,1802015.8256776133 + 07/15 06:00:00,0.0,0.0,279.2889403372684,1005440.1852141657,0.0,6143235.769355498,1802015.8256776133 + 07/15 07:00:00,0.0,211262132.59146554,278.4784818496962,1002522.5346589064,211262132.59146554,6143235.769355498,1802015.8256776133 + 07/15 08:00:00,0.0,213644088.78300262,555.1794404384285,1998645.9855783426,213644088.78300262,9214853.654033246,10812094.954065679 + 07/15 09:00:00,0.0,245210289.6409056,2769.089802670166,9968723.289612599,245210289.6409056,24572943.077421994,28832253.210841814 + 07/15 10:00:00,0.0,235856505.54927755,2761.0262507928498,9939694.502854258,235856505.54927755,27644560.962099744,32436284.862197039 + 07/15 11:00:00,0.0,209790743.90090496,4950.050929568279,17820183.346445804,209790743.90090496,27644560.962099744,32436284.862197039 + 07/15 12:00:00,0.0,184384781.73963893,4926.955315864072,17737039.137110659,184384781.73963893,27644560.962099744,32436284.862197039 + 07/15 13:00:00,0.0,194073322.27734677,4934.388989831654,17763800.363393956,194073322.27734677,27644560.962099744,32436284.862197039 + 07/15 14:00:00,0.0,218001493.46117307,4908.325839079082,17669973.020684694,218001493.46117307,27644560.962099744,32436284.862197039 + 07/15 15:00:00,0.0,231231061.83043317,4929.952184939437,17747827.865781975,231231061.83043317,27644560.962099744,32436284.862197039 + 07/15 16:00:00,0.0,167893419.12848146,4959.515526946041,17854255.897005749,167893419.12848146,27644560.962099744,32436284.862197039 + 07/15 17:00:00,0.0,113199678.84945719,3882.8817718282937,13978374.378581858,113199678.84945719,27644560.962099744,32436284.862197039 + 07/15 18:00:00,0.0,97991699.19713737,2779.9344675749027,10007764.08326965,97991699.19713737,27644560.962099744,28832253.210841814 + 07/15 19:00:00,0.0,50333197.38008929,1669.6059595326022,6010581.454317368,50333197.38008929,15358089.423388744,18020158.25677613 + 07/15 20:00:00,0.0,8076287.0722172,1113.705963206903,4009341.4675448515,8076287.0722172,9214853.654033246,10812094.954065679 + 07/15 21:00:00,0.0,3828631.472614927,1113.9139273987849,4010090.1386356258,3828631.472614927,9214853.654033246,10812094.954065679 + 07/15 22:00:00,0.0,0.0,1114.3241283109827,4011566.861919537,0.0,6143235.769355498,3604031.6513552267 + 07/15 23:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,3604031.6513552267 + 07/15 24:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 07/16 01:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/16 02:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 07/16 03:00:00,0.0,0.0,278.92487232665476,1004129.540375957,0.0,6143235.769355498,1802015.8256776133 + 07/16 04:00:00,0.0,0.0,278.92487232665476,1004129.540375957,0.0,6143235.769355498,1802015.8256776133 + 07/16 05:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 07/16 06:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 07/16 07:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 07/16 08:00:00,0.0,12431100.930743054,556.9569636993924,2005045.0693178129,12431100.930743054,9214853.654033246,10812094.954065679 + 07/16 09:00:00,0.0,201153447.57529886,2769.731881631567,9971034.77387364,201153447.57529886,24572943.077421994,28832253.210841814 + 07/16 10:00:00,0.0,215013632.675631,2761.0262507928498,9939694.502854258,215013632.675631,27644560.962099744,32436284.862197039 + 07/16 11:00:00,0.0,220261359.8056486,4950.050929568279,17820183.346445804,220261359.8056486,27644560.962099744,32436284.862197039 + 07/16 12:00:00,0.0,190075478.101163,4934.388989831654,17763800.363393956,190075478.101163,27644560.962099744,32436284.862197039 + 07/16 13:00:00,0.0,205537329.00030015,4929.952184939437,17747827.865781975,205537329.00030015,27644560.962099744,32436284.862197039 + 07/16 14:00:00,0.0,242727844.5202014,4913.086660481542,17687111.977733554,242727844.5202014,27644560.962099744,32436284.862197039 + 07/16 15:00:00,0.0,290683836.8513177,4905.1139948133,17658410.381327884,290683836.8513177,27644560.962099744,32436284.862197039 + 07/16 16:00:00,0.0,311164916.07870957,4908.325839079082,17669973.020684694,311164916.07870957,27644560.962099744,32436284.862197039 + 07/16 17:00:00,0.0,320724677.39343968,3816.3406579316858,13738826.368554069,320724677.39343968,27644560.962099744,32436284.862197039 + 07/16 18:00:00,0.0,298883420.50483068,2731.2346669100149,9832444.800876053,298883420.50483068,27644560.962099744,28832253.210841814 + 07/16 19:00:00,0.0,217867420.19306717,1647.2089085936648,5929952.070937193,217867420.19306717,15358089.423388744,18020158.25677613 + 07/16 20:00:00,0.0,91345905.78271377,1104.1298400088527,3974867.4240318697,91345905.78271377,9214853.654033246,10812094.954065679 + 07/16 21:00:00,0.0,66149977.93902062,1105.2415666911098,3978869.6400879949,66149977.93902062,9214853.654033246,10812094.954065679 + 07/16 22:00:00,0.0,0.0,1105.2415666911098,3978869.6400879949,0.0,6143235.769355498,3604031.6513552267 + 07/16 23:00:00,0.0,0.0,277.10021530088587,997560.775083189,0.0,6143235.769355498,3604031.6513552267 + 07/16 24:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/17 01:00:00,0.0,0.0,277.6488057195134,999535.7005902482,0.0,6143235.769355498,1802015.8256776133 + 07/17 02:00:00,0.0,0.0,277.76556866675255,999956.0472003091,0.0,6143235.769355498,1802015.8256776133 + 07/17 03:00:00,0.0,0.0,277.76556866675255,999956.0472003091,0.0,6143235.769355498,1802015.8256776133 + 07/17 04:00:00,0.0,0.0,278.5299957731313,1002707.9847832727,0.0,6143235.769355498,1802015.8256776133 + 07/17 05:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 07/17 06:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 07/17 07:00:00,0.0,215453365.10891066,276.44662223607346,995207.8400498643,215453365.10891066,6143235.769355498,1802015.8256776133 + 07/17 08:00:00,0.0,198580264.6880567,551.3496868327086,1984858.872597751,198580264.6880567,9214853.654033246,10812094.954065679 + 07/17 09:00:00,0.0,214161466.5981772,2758.192455586831,9929492.840112592,214161466.5981772,24572943.077421994,28832253.210841814 + 07/17 10:00:00,0.0,204995386.49023886,2756.0196666304666,9921670.799869679,204995386.49023886,27644560.962099744,32436284.862197039 + 07/17 11:00:00,0.0,199069357.8903255,4948.666787560527,17815200.4352179,199069357.8903255,27644560.962099744,32436284.862197039 + 07/17 12:00:00,0.0,197837980.8848256,4929.952184939437,17747827.865781975,197837980.8848256,27644560.962099744,32436284.862197039 + 07/17 13:00:00,0.0,206421985.50662003,4909.920387512683,17675713.39504566,206421985.50662003,27644560.962099744,32436284.862197039 + 07/17 14:00:00,0.0,245992006.08986563,4901.871923531134,17646738.92471208,245992006.08986563,27644560.962099744,32436284.862197039 + 07/17 15:00:00,0.0,285713018.4711726,4891.965597685878,17611076.15166916,285713018.4711726,27644560.962099744,32436284.862197039 + 07/17 16:00:00,0.0,282416545.8125355,4922.401801083587,17720646.483900913,282416545.8125355,27644560.962099744,32436284.862197039 + 07/17 17:00:00,0.0,182335857.89561758,3828.534734176122,13782725.04303404,182335857.89561758,27644560.962099744,32436284.862197039 + 07/17 18:00:00,0.0,90040841.83964925,2787.3127040457986,10034325.734564875,90040841.83964925,27644560.962099744,28832253.210841814 + 07/17 19:00:00,0.0,29197053.896749043,1670.558944810355,6014012.201317278,29197053.896749043,15358089.423388744,18020158.25677613 + 07/17 20:00:00,0.0,1558141.9686223383,1114.5263610953462,4012294.899943246,1558141.9686223383,9214853.654033246,10812094.954065679 + 07/17 21:00:00,0.0,0.0,1114.3241283109827,4011566.861919537,0.0,9214853.654033246,10812094.954065679 + 07/17 22:00:00,0.0,0.0,1114.3241283109827,4011566.861919537,0.0,6143235.769355498,3604031.6513552267 + 07/17 23:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,3604031.6513552267 + 07/17 24:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/18 01:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 07/18 02:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 07/18 03:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 07/18 04:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 07/18 05:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/18 06:00:00,0.0,0.0,278.82903233957458,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/18 07:00:00,0.0,199599658.5538627,278.1593963140338,1001373.8267305218,199599658.5538627,6143235.769355498,1802015.8256776133 + 07/18 08:00:00,0.0,171332132.55587758,555.414844112342,1999493.4388044314,171332132.55587758,9214853.654033246,10812094.954065679 + 07/18 09:00:00,0.0,207181242.49968557,2773.486979877353,9984553.12755847,207181242.49968557,24572943.077421994,28832253.210841814 + 07/18 10:00:00,0.0,222599185.35350395,2767.7917890061178,9964050.440422023,222599185.35350395,27644560.962099744,32436284.862197039 + 07/18 11:00:00,0.0,195610876.2595393,4984.361644806299,17943701.921302678,195610876.2595393,27644560.962099744,32436284.862197039 + 07/18 12:00:00,0.0,171177718.64087028,4968.584280039837,17886903.408143414,171177718.64087028,27644560.962099744,32436284.862197039 + 07/18 13:00:00,0.0,176051953.1974519,4951.427083625727,17825137.501052619,176051953.1974519,27644560.962099744,32436284.862197039 + 07/18 14:00:00,0.0,219090830.81627808,4950.050929568279,17820183.346445804,219090830.81627808,27644560.962099744,32436284.862197039 + 07/18 15:00:00,0.0,264759505.73159234,4943.050606795395,17794982.184463424,264759505.73159234,27644560.962099744,32436284.862197039 + 07/18 16:00:00,0.0,294728052.13681176,4943.050606795395,17794982.184463424,294728052.13681176,27644560.962099744,32436284.862197039 + 07/18 17:00:00,0.0,299298909.2675853,3837.8581032023964,13816289.171528627,299298909.2675853,27644560.962099744,32436284.862197039 + 07/18 18:00:00,0.0,259690223.70971433,2753.8064207865916,9913703.114831729,259690223.70971433,27644560.962099744,28832253.210841814 + 07/18 19:00:00,0.0,179606973.8330129,1659.4861337392345,5974150.081461244,179606973.8330129,15358089.423388744,18020158.25677613 + 07/18 20:00:00,0.0,66823144.568480599,1108.9015473751998,3992045.570550719,66823144.568480599,9214853.654033246,10812094.954065679 + 07/18 21:00:00,0.0,43909631.23716169,1111.2929799733227,4000654.7279039619,43909631.23716169,9214853.654033246,10812094.954065679 + 07/18 22:00:00,0.0,0.0,1111.9737870299612,4003105.6333078604,0.0,6143235.769355498,3604031.6513552267 + 07/18 23:00:00,0.0,0.0,277.8804504824905,1000369.6217369658,0.0,6143235.769355498,3604031.6513552267 + 07/18 24:00:00,0.0,0.0,277.9371845853351,1000573.8645072064,0.0,6143235.769355498,1802015.8256776133 + 07/19 01:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 07/19 02:00:00,0.0,0.0,277.4701439999319,998892.5183997549,0.0,6143235.769355498,1802015.8256776133 + 07/19 03:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/19 04:00:00,0.0,0.0,277.58972021921428,999322.9927891713,0.0,6143235.769355498,1802015.8256776133 + 07/19 05:00:00,0.0,0.0,277.4096544283043,998674.7559418954,0.0,6143235.769355498,1802015.8256776133 + 07/19 06:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/19 07:00:00,0.0,162293120.6364843,276.9089802670166,996872.3289612597,162293120.6364843,6143235.769355498,1802015.8256776133 + 07/19 08:00:00,0.0,180307461.22711344,551.2039333260933,1984334.159973936,180307461.22711344,9214853.654033246,10812094.954065679 + 07/19 09:00:00,0.0,265296487.08348779,2742.9487194752284,9874615.390110823,265296487.08348779,24572943.077421994,28832253.210841814 + 07/19 10:00:00,0.0,253537255.3715196,2741.3272165731407,9868777.979663305,253537255.3715196,27644560.962099744,32436284.862197039 + 07/19 11:00:00,0.0,217652370.97856138,4914.658354635832,17692770.076688999,217652370.97856138,27644560.962099744,32436284.862197039 + 07/19 12:00:00,0.0,204215529.216668,4901.871923531134,17646738.92471208,204215529.216668,27644560.962099744,32436284.862197039 + 07/19 13:00:00,0.0,200134938.02550594,4898.599749665339,17634959.09879522,200134938.02550594,27644560.962099744,32436284.862197039 + 07/19 14:00:00,0.0,244510376.5212291,4864.250563916123,17511302.030098045,244510376.5212291,27644560.962099744,32436284.862197039 + 07/19 15:00:00,0.0,308708077.7656022,4860.6558011216479,17498360.88403793,308708077.7656022,27644560.962099744,32436284.862197039 + 07/19 16:00:00,0.0,334209437.37276366,4867.816668058717,17524140.005011385,334209437.37276366,27644560.962099744,32436284.862197039 + 07/19 17:00:00,0.0,336785595.71522656,3804.8621315334596,13697503.673520454,336785595.71522656,27644560.962099744,32436284.862197039 + 07/19 18:00:00,0.0,315916057.5941977,2719.609777113353,9790595.197608073,315916057.5941977,27644560.962099744,28832253.210841814 + 07/19 19:00:00,0.0,234671633.2007545,1635.5745676850084,5888068.44366603,234671633.2007545,15358089.423388744,18020158.25677613 + 07/19 20:00:00,0.0,99737831.63442153,1095.5449299865416,3943961.7479515497,99737831.63442153,9214853.654033246,10812094.954065679 + 07/19 21:00:00,0.0,75747552.9025534,1096.8560596220694,3948681.8146394498,75747552.9025534,9214853.654033246,10812094.954065679 + 07/19 22:00:00,0.0,0.0,1100.3171296946062,3961141.666900582,0.0,6143235.769355498,3604031.6513552267 + 07/19 23:00:00,0.0,0.0,276.1026250792851,993969.4502854262,0.0,6143235.769355498,3604031.6513552267 + 07/19 24:00:00,0.0,0.0,276.7791789006118,996405.0440422024,0.0,6143235.769355498,1802015.8256776133 + 07/20 01:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 07/20 02:00:00,0.0,0.0,277.4701439999319,998892.5183997549,0.0,6143235.769355498,1802015.8256776133 + 07/20 03:00:00,0.0,0.0,277.6488057195134,999535.7005902482,0.0,6143235.769355498,1802015.8256776133 + 07/20 04:00:00,0.0,0.0,277.76556866675255,999956.0472003091,0.0,6143235.769355498,1802015.8256776133 + 07/20 05:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 07/20 06:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/20 07:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 07/20 08:00:00,0.0,0.0,275.96184127063148,993462.6285742731,0.0,6143235.769355498,1802015.8256776133 + 07/20 09:00:00,0.0,0.0,275.07928242365156,990285.4167251454,0.0,6143235.769355498,1802015.8256776133 + 07/20 10:00:00,0.0,0.0,274.1327216573141,986877.7979663308,0.0,6143235.769355498,1802015.8256776133 + 07/20 11:00:00,0.0,0.0,273.2099323822679,983555.7565761644,0.0,6143235.769355498,1802015.8256776133 + 07/20 12:00:00,0.0,0.0,272.5957612808347,981344.740611005,0.0,6143235.769355498,1802015.8256776133 + 07/20 13:00:00,0.0,0.0,271.86862897561596,978727.0643122174,0.0,6143235.769355498,1802015.8256776133 + 07/20 14:00:00,0.0,0.0,270.53271835115427,973917.7860641552,0.0,6143235.769355498,1802015.8256776133 + 07/20 15:00:00,0.0,0.0,269.9359842112518,971769.5431605065,0.0,6143235.769355498,1802015.8256776133 + 07/20 16:00:00,0.0,0.0,270.13648645850039,972491.3512506015,0.0,6143235.769355498,1802015.8256776133 + 07/20 17:00:00,0.0,0.0,270.53271835115427,973917.7860641553,0.0,6143235.769355498,1802015.8256776133 + 07/20 18:00:00,0.0,0.0,271.018981411827,975668.3330825771,0.0,6143235.769355498,1802015.8256776133 + 07/20 19:00:00,0.0,0.0,271.7758665381043,978393.1195371756,0.0,6143235.769355498,1802015.8256776133 + 07/20 20:00:00,0.0,0.0,272.5957612808347,981344.740611005,0.0,6143235.769355498,1802015.8256776133 + 07/20 21:00:00,0.0,0.0,272.7733548618156,981984.0775025361,0.0,6143235.769355498,1802015.8256776133 + 07/20 22:00:00,0.0,0.0,272.7733548618156,981984.0775025362,0.0,6143235.769355498,1802015.8256776133 + 07/20 23:00:00,0.0,0.0,273.3815832237107,984173.6996053587,0.0,6143235.769355498,1802015.8256776133 + 07/20 24:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 07/21 01:00:00,0.0,0.0,274.0509929829366,986583.5747385717,0.0,6143235.769355498,1802015.8256776133 + 07/21 02:00:00,0.0,0.0,274.7708107163896,989174.9185790025,0.0,6143235.769355498,1802015.8256776133 + 07/21 03:00:00,0.0,0.0,275.60196666304668,992167.079986968,0.0,6143235.769355498,1802015.8256776133 + 07/21 04:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 07/21 05:00:00,0.0,0.0,276.9731881631567,997103.4773873641,0.0,6143235.769355498,1802015.8256776133 + 07/21 06:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 07/21 07:00:00,0.0,0.0,276.1026250792851,993969.4502854262,0.0,6143235.769355498,1802015.8256776133 + 07/21 08:00:00,0.0,0.0,275.4548652884668,991637.5150384805,0.0,6143235.769355498,1802015.8256776133 + 07/21 09:00:00,0.0,0.0,274.8485928268648,989454.9341767134,0.0,6143235.769355498,1802015.8256776133 + 07/21 10:00:00,0.0,0.0,274.84859282686485,989454.9341767134,0.0,6143235.769355498,1802015.8256776133 + 07/21 11:00:00,0.0,0.0,275.1552909182459,990559.0473056852,0.0,6143235.769355498,1802015.8256776133 + 07/21 12:00:00,0.0,0.0,274.3752920074926,987751.0512269733,0.0,6143235.769355498,1802015.8256776133 + 07/21 13:00:00,0.0,0.0,273.7197397702262,985391.0631728144,0.0,6143235.769355498,1802015.8256776133 + 07/21 14:00:00,0.0,0.0,273.4667667268659,984480.3602167175,0.0,6143235.769355498,1802015.8256776133 + 07/21 15:00:00,0.0,0.0,273.03657525754627,982931.6709271665,0.0,6143235.769355498,1802015.8256776133 + 07/21 16:00:00,0.0,0.0,273.8862324966354,985990.4369878874,0.0,6143235.769355498,1802015.8256776133 + 07/21 17:00:00,0.0,0.0,274.4552743137812,988038.9875296124,0.0,6143235.769355498,1802015.8256776133 + 07/21 18:00:00,0.0,0.0,274.9259326422515,989733.3575121054,0.0,6143235.769355498,1802015.8256776133 + 07/21 19:00:00,0.0,0.0,276.3787354429683,994963.447594686,0.0,6143235.769355498,1802015.8256776133 + 07/21 20:00:00,0.0,0.0,277.4701439999319,998892.5183997548,0.0,6143235.769355498,1802015.8256776133 + 07/21 21:00:00,0.0,0.0,277.53016612220957,999108.5980399544,0.0,6143235.769355498,1802015.8256776133 + 07/21 22:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 07/21 23:00:00,0.0,0.0,279.58205099853628,1006495.3835947304,0.0,6143235.769355498,1802015.8256776133 + 07/21 24:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 07/22 01:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 07/22 02:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 07/22 03:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 07/22 04:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 07/22 05:00:00,0.0,0.0,281.1913907812245,1012289.0068124083,0.0,6143235.769355498,1802015.8256776133 + 07/22 06:00:00,0.0,0.0,280.8908042507361,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 07/22 07:00:00,0.0,68386791.78534287,280.70943456295466,1010553.9644266367,68386791.78534287,6143235.769355498,1802015.8256776133 + 07/22 08:00:00,0.0,109916949.63419444,561.0808899364463,2019891.2037712066,109916949.63419444,9214853.654033246,10812094.954065679 + 07/22 09:00:00,0.0,140890671.31970839,2805.404449682231,10099456.018856032,140890671.31970839,24572943.077421994,28832253.210841814 + 07/22 10:00:00,0.0,125066912.27700858,2798.5126461637457,10074645.526189484,125066912.27700858,27644560.962099744,32436284.862197039 + 07/22 11:00:00,0.0,103343133.29339178,5040.5194558254629,18145870.040971668,103343133.29339178,27644560.962099744,32436284.862197039 + 07/22 12:00:00,0.0,89084354.97211886,5040.5194558254629,18145870.040971668,89084354.97211886,27644560.962099744,32436284.862197039 + 07/22 13:00:00,0.0,88357271.06891442,5028.752104001549,18103507.574405578,88357271.06891442,27644560.962099744,32436284.862197039 + 07/22 14:00:00,0.0,113423327.97235415,5017.162867282438,18061786.32221678,113423327.97235415,27644560.962099744,32436284.862197039 + 07/22 15:00:00,0.0,134582865.65389125,5017.162867282438,18061786.32221678,134582865.65389125,27644560.962099744,32436284.862197039 + 07/22 16:00:00,0.0,157096002.7921461,5021.497267872152,18077390.164339749,157096002.7921461,27644560.962099744,32436284.862197039 + 07/22 17:00:00,0.0,137196479.54467155,3906.9102888009845,14064877.039683544,137196479.54467155,27644560.962099744,32436284.862197039 + 07/22 18:00:00,0.0,157125369.77867425,2794.5935053369469,10060536.619213008,157125369.77867425,27644560.962099744,28832253.210841814 + 07/22 19:00:00,0.0,81737519.76529359,1679.542653275329,6046353.551791185,81737519.76529359,15358089.423388744,18020158.25677613 + 07/22 20:00:00,0.0,4852446.326349889,1122.2643159488962,4040151.5374160266,4852446.326349889,9214853.654033246,10812094.954065679 + 07/22 21:00:00,9280754.493937448,0.0,1123.7024413677044,13326083.282861185,0.0,9214853.654033246,10812094.954065679 + 07/22 22:00:00,0.0,0.0,1124.4524808594113,4048028.9310938806,0.0,6143235.769355498,3604031.6513552267 + 07/22 23:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,3604031.6513552267 + 07/22 24:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 07/23 01:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 07/23 02:00:00,0.0,0.0,281.18678995203217,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 07/23 03:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 07/23 04:00:00,0.0,0.0,281.14862152372668,1012135.0374854159,0.0,6143235.769355498,1802015.8256776133 + 07/23 05:00:00,0.0,0.0,281.14862152372668,1012135.0374854158,0.0,6143235.769355498,1802015.8256776133 + 07/23 06:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 07/23 07:00:00,0.0,47047220.49598457,280.73158359615487,1010633.7009461575,47047220.49598457,6143235.769355498,1802015.8256776133 + 07/23 08:00:00,0.0,132211958.91457361,559.7755308091306,2015191.9109128703,132211958.91457361,9214853.654033246,10812094.954065679 + 07/23 09:00:00,0.0,172268049.1921682,2793.7511688897495,10057504.208003099,172268049.1921682,24572943.077421994,28832253.210841814 + 07/23 10:00:00,0.0,173392513.1298888,2781.0455315488268,10011763.913575776,173392513.1298888,27644560.962099744,32436284.862197039 + 07/23 11:00:00,0.0,162429051.13799528,4992.276563779235,17972195.62960525,162429051.13799528,27644560.962099744,32436284.862197039 + 07/23 12:00:00,0.0,129274756.58151387,5006.869133652608,18024728.88114939,129274756.58151387,27644560.962099744,32436284.862197039 + 07/23 13:00:00,0.0,126457496.65794055,4977.252925212717,17918110.53076578,126457496.65794055,27644560.962099744,32436284.862197039 + 07/23 14:00:00,0.0,146604017.24912844,4996.614963945856,17987813.870205083,146604017.24912844,27644560.962099744,32436284.862197039 + 07/23 15:00:00,0.0,149019700.24730129,4987.803875415945,17956093.951497403,149019700.24730129,27644560.962099744,32436284.862197039 + 07/23 16:00:00,0.0,139893198.01984538,4998.733597011079,17995440.949239885,139893198.01984538,27644560.962099744,32436284.862197039 + 07/23 17:00:00,0.0,119314726.40481958,3891.1205841946905,14008034.103100885,119314726.40481958,27644560.962099744,32436284.862197039 + 07/23 18:00:00,0.0,99358094.98689947,2779.371845853351,10005738.645072064,99358094.98689947,27644560.962099744,28832253.210841814 + 07/23 19:00:00,0.0,48060764.66262868,1671.1799746387879,6016247.908699636,48060764.66262868,15358089.423388744,18020158.25677613 + 07/23 20:00:00,0.0,7830269.334026029,1111.0622746670102,3999824.1888012366,7830269.334026029,9214853.654033246,10812094.954065679 + 07/23 21:00:00,0.0,2609623.944671011,1111.9737870299612,4003105.6333078604,2609623.944671011,9214853.654033246,10812094.954065679 + 07/23 22:00:00,0.0,0.0,1113.0706396884014,4007054.302878245,0.0,6143235.769355498,3604031.6513552267 + 07/23 23:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,3604031.6513552267 + 07/23 24:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 07/24 01:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/24 02:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 07/24 03:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 07/24 04:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 07/24 05:00:00,0.0,0.0,279.1107718173807,1004798.7785425705,0.0,6143235.769355498,1802015.8256776133 + 07/24 06:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 07/24 07:00:00,0.0,133906883.84057617,278.3740231280836,1002146.483261101,133906883.84057617,6143235.769355498,1802015.8256776133 + 07/24 08:00:00,0.0,118611155.92332241,557.0599915462626,2005415.9695665455,118611155.92332241,9214853.654033246,10812094.954065679 + 07/24 09:00:00,0.0,130515074.30229917,2782.6765992210036,10017635.757195613,130515074.30229917,24572943.077421994,28832253.210841814 + 07/24 10:00:00,0.0,123331746.05257613,2778.2324499333064,10001636.819759904,123331746.05257613,27644560.962099744,32436284.862197039 + 07/24 11:00:00,0.0,126956240.61504919,4995.542990199772,17983954.76471918,126956240.61504919,27644560.962099744,32436284.862197039 + 07/24 12:00:00,0.0,100987422.09483347,5031.0132795490339,18111647.80637652,100987422.09483347,27644560.962099744,32436284.862197039 + 07/24 13:00:00,0.0,71187959.6341411,5032.476917973653,18116916.904705153,71187959.6341411,27644560.962099744,32436284.862197039 + 07/24 14:00:00,0.0,68130285.5574148,5028.752104001549,18103507.574405578,68130285.5574148,27644560.962099744,32436284.862197039 + 07/24 15:00:00,0.0,74775433.10495615,5017.162867282438,18061786.32221678,74775433.10495615,27644560.962099744,32436284.862197039 + 07/24 16:00:00,0.0,64325451.46188882,5016.270057773201,18058572.207983525,64325451.46188882,27644560.962099744,32436284.862197039 + 07/24 17:00:00,0.0,66443935.4560685,3894.9927157446679,14021973.776680805,66443935.4560685,27644560.962099744,32436284.862197039 + 07/24 18:00:00,0.0,78972497.43644268,2783.2107933220675,10019558.855959442,78972497.43644268,27644560.962099744,28832253.210841814 + 07/24 19:00:00,0.0,31589184.018835397,1670.8708910981773,6015135.207953438,31589184.018835397,15358089.423388744,18020158.25677613 + 07/24 20:00:00,0.0,1209115.055010496,1110.358880876857,3997291.971156685,1209115.055010496,9214853.654033246,10812094.954065679 + 07/24 21:00:00,0.0,0.0,1114.7266795051558,4013016.0462185607,0.0,9214853.654033246,10812094.954065679 + 07/24 22:00:00,0.0,0.0,1113.9139273987849,4010090.1386356258,0.0,6143235.769355498,3604031.6513552267 + 07/24 23:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,3604031.6513552267 + 07/24 24:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 07/25 01:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,1802015.8256776133 + 07/25 02:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,1802015.8256776133 + 07/25 03:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 07/25 04:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 07/25 05:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 07/25 06:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 07/25 07:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 07/25 08:00:00,0.0,18163479.104949606,556.5353198442007,2003527.1514391225,18163479.104949606,9214853.654033246,10812094.954065679 + 07/25 09:00:00,0.0,64578487.676824588,2783.2107933220675,10019558.855959442,64578487.676824588,24572943.077421994,28832253.210841814 + 07/25 10:00:00,0.0,125407248.51120976,2773.486979877353,9984553.12755847,125407248.51120976,27644560.962099744,32436284.862197039 + 07/25 11:00:00,0.0,147010204.2066311,4992.276563779235,17972195.62960525,147010204.2066311,27644560.962099744,32436284.862197039 + 07/25 12:00:00,0.0,93139003.03055856,5025.614835349538,18092213.40725834,93139003.03055856,27644560.962099744,32436284.862197039 + 07/25 13:00:00,0.0,102456270.92741858,4979.655616697521,17926760.220111077,102456270.92741858,27644560.962099744,32436284.862197039 + 07/25 14:00:00,0.0,163396800.22989599,4969.847251427131,17891450.105137674,163396800.22989599,27644560.962099744,32436284.862197039 + 07/25 15:00:00,0.0,193088510.50791208,4983.197585507909,17939511.30782847,193088510.50791208,27644560.962099744,32436284.862197039 + 07/25 16:00:00,0.0,175244089.32125513,4993.373779709477,17976145.606954118,175244089.32125513,27644560.962099744,32436284.862197039 + 07/25 17:00:00,0.0,194741034.06919746,3887.9039087863936,13996454.071631017,194741034.06919746,27644560.962099744,32436284.862197039 + 07/25 18:00:00,0.0,176401251.7326813,2778.804504824905,10003696.217369659,176401251.7326813,27644560.962099744,28832253.210841814 + 07/25 19:00:00,0.0,103166865.38578235,1672.3876224274794,6020595.440738926,103166865.38578235,15358089.423388744,18020158.25677613 + 07/25 20:00:00,0.0,11062241.322005328,1116.98049800793,4021129.7928285484,11062241.322005328,9214853.654033246,10812094.954065679 + 07/25 21:00:00,0.0,0.0,1120.518055160909,4033864.998579272,0.0,9214853.654033246,10812094.954065679 + 07/25 22:00:00,0.0,0.0,1122.463421271209,4040868.3165763525,0.0,6143235.769355498,3604031.6513552267 + 07/25 23:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,3604031.6513552267 + 07/25 24:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 07/26 01:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 07/26 02:00:00,0.0,0.0,281.1318760355507,1012074.7537279825,0.0,6143235.769355498,1802015.8256776133 + 07/26 03:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 07/26 04:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 07/26 05:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 07/26 06:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 07/26 07:00:00,17846542.624342894,2991195.438091632,281.06958053246276,18858393.114259755,2991195.438091632,6143235.769355498,1802015.8256776133 + 07/26 08:00:00,0.0,81606587.67640598,561.9481291048495,2023013.2647774583,81606587.67640598,9214853.654033246,10812094.954065679 + 07/26 09:00:00,0.0,130024547.754904,2808.9080425073605,10112068.953026498,130024547.754904,24572943.077421994,28832253.210841814 + 07/26 10:00:00,0.0,127263698.0292314,2807.5323388589788,10107116.419892323,127263698.0292314,27644560.962099744,32436284.862197039 + 07/26 11:00:00,0.0,103779605.99756548,5047.286873716784,18170232.74538042,103779605.99756548,27644560.962099744,32436284.862197039 + 07/26 12:00:00,0.0,79336318.83966123,5046.771864566769,18168378.712440369,79336318.83966123,27644560.962099744,32436284.862197039 + 07/26 13:00:00,0.0,76302900.36807333,5045.715103277994,18164574.371800778,76302900.36807333,27644560.962099744,32436284.862197039 + 07/26 14:00:00,0.0,98009946.61796868,5045.17336127905,18162624.100604584,98009946.61796868,27644560.962099744,32436284.862197039 + 07/26 15:00:00,0.0,101343545.8926453,5042.33124822409,18152392.493606725,101343545.8926453,27644560.962099744,32436284.862197039 + 07/26 16:00:00,0.0,119450433.24271587,5039.897805189829,18143632.098683388,119450433.24271587,27644560.962099744,32436284.862197039 + 07/26 17:00:00,0.0,101528322.50877393,3920.8806392379517,14115170.301256625,101528322.50877393,27644560.962099744,32436284.862197039 + 07/26 18:00:00,0.0,67206200.03845857,2801.9415291652305,10086989.50499483,67206200.03845857,27644560.962099744,28832253.210841814 + 07/26 19:00:00,0.0,11874967.01673455,1682.4289579055945,6056744.24846014,11874967.01673455,15358089.423388744,18020158.25677613 + 07/26 20:00:00,0.0,0.0,1122.2643159488962,4040151.537416026,0.0,9214853.654033246,10812094.954065679 + 07/26 21:00:00,21825759.08417609,0.0,1124.3694191259734,25873488.993029596,0.0,9214853.654033246,10812094.954065679 + 07/26 22:00:00,0.0,0.0,1124.7267440463789,4049016.278566963,0.0,6143235.769355498,3604031.6513552267 + 07/26 23:00:00,0.0,0.0,281.1867899520321,1012272.4438273157,0.0,6143235.769355498,3604031.6513552267 + 07/26 24:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 07/27 01:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,1802015.8256776133 + 07/27 02:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 07/27 03:00:00,0.0,0.0,281.2000113426414,1012320.0408335091,0.0,6143235.769355498,1802015.8256776133 + 07/27 04:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 07/27 05:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 07/27 06:00:00,0.0,0.0,281.1029886517512,1011970.7591463047,0.0,6143235.769355498,1802015.8256776133 + 07/27 07:00:00,0.0,0.0,280.87265071363529,1011141.5425690869,0.0,6143235.769355498,1802015.8256776133 + 07/27 08:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 07/27 09:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 07/27 10:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 07/27 11:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 07/27 12:00:00,0.0,0.0,278.4784818496962,1002522.5346589064,0.0,6143235.769355498,1802015.8256776133 + 07/27 13:00:00,0.0,0.0,277.76556866675255,999956.0472003091,0.0,6143235.769355498,1802015.8256776133 + 07/27 14:00:00,0.0,0.0,277.4701439999319,998892.5183997549,0.0,6143235.769355498,1802015.8256776133 + 07/27 15:00:00,0.0,0.0,277.4701439999319,998892.5183997548,0.0,6143235.769355498,1802015.8256776133 + 07/27 16:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 07/27 17:00:00,0.0,0.0,277.6488057195134,999535.7005902482,0.0,6143235.769355498,1802015.8256776133 + 07/27 18:00:00,0.0,0.0,277.9371845853351,1000573.8645072064,0.0,6143235.769355498,1802015.8256776133 + 07/27 19:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 07/27 20:00:00,0.0,0.0,279.4174767785163,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 07/27 21:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 07/27 22:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 07/27 23:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 07/27 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 07/28 01:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 07/28 02:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 07/28 03:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 07/28 04:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 07/28 05:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 07/28 06:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 07/28 07:00:00,0.0,0.0,280.3175057376663,1009143.0206555986,0.0,6143235.769355498,1802015.8256776133 + 07/28 08:00:00,0.0,0.0,279.9237755458882,1007725.5919651976,0.0,6143235.769355498,1802015.8256776133 + 07/28 09:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 07/28 10:00:00,0.0,0.0,277.9371845853351,1000573.8645072064,0.0,6143235.769355498,1802015.8256776133 + 07/28 11:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 07/28 12:00:00,0.0,0.0,276.44662223607346,995207.8400498644,0.0,6143235.769355498,1802015.8256776133 + 07/28 13:00:00,0.0,0.0,275.60196666304668,992167.079986968,0.0,6143235.769355498,1802015.8256776133 + 07/28 14:00:00,0.0,0.0,275.7472699465484,992690.1718075741,0.0,6143235.769355498,1802015.8256776133 + 07/28 15:00:00,0.0,0.0,275.38064207865917,991370.3114831729,0.0,6143235.769355498,1802015.8256776133 + 07/28 16:00:00,0.0,0.0,275.6748434163543,992429.4362988755,0.0,6143235.769355498,1802015.8256776133 + 07/28 17:00:00,0.0,0.0,276.03246000221318,993716.8560079674,0.0,6143235.769355498,1802015.8256776133 + 07/28 18:00:00,0.0,0.0,277.10021530088587,997560.7750831891,0.0,6143235.769355498,1802015.8256776133 + 07/28 19:00:00,0.0,0.0,277.58972021921428,999322.9927891713,0.0,6143235.769355498,1802015.8256776133 + 07/28 20:00:00,0.0,0.0,278.21376541033347,1001569.5554772005,0.0,6143235.769355498,1802015.8256776133 + 07/28 21:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 07/28 22:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 07/28 23:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 07/28 24:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 07/29 01:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 07/29 02:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 07/29 03:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 07/29 04:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 07/29 05:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 07/29 06:00:00,0.0,0.0,279.99432251054608,1007979.5610379658,0.0,6143235.769355498,1802015.8256776133 + 07/29 07:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 07/29 08:00:00,0.0,38243310.79206422,557.8497446533095,2008259.080751914,38243310.79206422,9214853.654033246,10812094.954065679 + 07/29 09:00:00,0.0,186292759.72455169,2777.655686667525,9999560.472003092,186292759.72455169,24572943.077421994,28832253.210841814 + 07/29 10:00:00,0.0,187072902.0096488,2773.486979877353,9984553.12755847,187072902.0096488,27644560.962099744,32436284.862197039 + 07/29 11:00:00,0.0,188592940.82418443,4979.655616697521,17926760.220111077,188592940.82418443,27644560.962099744,32436284.862197039 + 07/29 12:00:00,0.0,175870303.6438565,4973.587050109994,17904913.38039598,175870303.6438565,27644560.962099744,32436284.862197039 + 07/29 13:00:00,0.0,175122169.65769077,4972.348648462889,17900455.134466404,175122169.65769077,27644560.962099744,32436284.862197039 + 07/29 14:00:00,0.0,197637738.81347908,4959.515526946041,17854255.897005749,197637738.81347908,27644560.962099744,32436284.862197039 + 07/29 15:00:00,0.0,224398344.91579158,4956.851557415865,17844665.606697114,224398344.91579158,27644560.962099744,32436284.862197039 + 07/29 16:00:00,0.0,201651652.79950408,4960.83539993484,17859007.439765425,201651652.79950408,27644560.962099744,32436284.862197039 + 07/29 17:00:00,0.0,144027015.2229688,3861.4694378215629,13901289.976157627,144027015.2229688,27644560.962099744,32436284.862197039 + 07/29 18:00:00,0.0,115448712.78019098,2760.3246000221317,9937168.560079674,115448712.78019098,27644560.962099744,28832253.210841814 + 07/29 19:00:00,0.0,64190213.52146782,1661.0658618359697,5979837.102609491,64190213.52146782,15358089.423388744,18020158.25677613 + 07/29 20:00:00,0.0,23707028.89125544,1108.4008612035435,3990243.100332756,23707028.89125544,9214853.654033246,10812094.954065679 + 07/29 21:00:00,0.0,3257717.549473877,1117.5004675558999,4023001.6832012396,3257717.549473877,9214853.654033246,10812094.954065679 + 07/29 22:00:00,0.0,0.0,1116.9804980079298,4021129.792828548,0.0,6143235.769355498,3604031.6513552267 + 07/29 23:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,3604031.6513552267 + 07/29 24:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 07/30 01:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 07/30 02:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 07/30 03:00:00,0.0,0.0,279.20082418608538,1005122.9670699072,0.0,6143235.769355498,1802015.8256776133 + 07/30 04:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 07/30 05:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 07/30 06:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 07/30 07:00:00,3997590.623201778,0.0,279.20082418608538,5002713.590271687,0.0,6143235.769355498,1802015.8256776133 + 07/30 08:00:00,15045690.179974635,0.0,558.4016483721707,17055936.114114454,0.0,9214853.654033246,10812094.954065679 + 07/30 09:00:00,0.0,49340208.090218868,2791.560398146468,10049617.433327284,49340208.090218868,24572943.077421994,28832253.210841814 + 07/30 10:00:00,0.0,77101052.63114272,2787.8039138278325,10036094.089780197,77101052.63114272,27644560.962099744,32436284.862197039 + 07/30 11:00:00,0.0,86141129.41608067,5003.882041634825,18013975.34988537,86141129.41608067,27644560.962099744,32436284.862197039 + 07/30 12:00:00,0.0,118215938.41742793,4993.373779709477,17976145.606954118,118215938.41742793,27644560.962099744,32436284.862197039 + 07/30 13:00:00,0.0,131730889.54636124,4976.039200249322,17913741.120897559,131730889.54636124,27644560.962099744,32436284.862197039 + 07/30 14:00:00,0.0,159978716.5605269,4974.817237973431,17909342.05670435,159978716.5605269,27644560.962099744,32436284.862197039 + 07/30 15:00:00,0.0,162113760.36999984,4978.458401217704,17922450.244383735,162113760.36999984,27644560.962099744,32436284.862197039 + 07/30 16:00:00,0.0,181387329.13868708,4976.039200249322,17913741.120897559,181387329.13868708,27644560.962099744,32436284.862197039 + 07/30 17:00:00,0.0,194215837.15923766,3889.5254299066289,14002291.547663864,194215837.15923766,27644560.962099744,32436284.862197039 + 07/30 18:00:00,0.0,115937069.93229458,2784.2649080172579,10023353.668862129,115937069.93229458,27644560.962099744,28832253.210841814 + 07/30 19:00:00,0.0,51603908.13479426,1671.4861924664738,6017350.292879306,51603908.13479426,15358089.423388744,18020158.25677613 + 07/30 20:00:00,0.0,8242238.103223639,1116.98049800793,4021129.7928285484,8242238.103223639,9214853.654033246,10812094.954065679 + 07/30 21:00:00,0.0,0.0,1119.1071700200837,4028785.8120723015,0.0,9214853.654033246,10812094.954065679 + 07/30 22:00:00,0.0,0.0,1119.4050584654984,4029858.210475794,0.0,6143235.769355498,3604031.6513552267 + 07/30 23:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,3604031.6513552267 + 07/30 24:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 07/31 01:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 07/31 02:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 07/31 03:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 07/31 04:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 07/31 05:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 07/31 06:00:00,0.0,0.0,280.6399971517668,1010303.9897463599,0.0,6143235.769355498,1802015.8256776133 + 07/31 07:00:00,0.0,131031164.13780959,279.95929469481936,1007853.4609013496,131031164.13780959,6143235.769355498,1802015.8256776133 + 07/31 08:00:00,0.0,162992925.86189998,559.2439524902071,2013278.2289647456,162992925.86189998,9214853.654033246,10812094.954065679 + 07/31 09:00:00,0.0,187623615.70324946,2792.889403372682,10054401.852141655,187623615.70324946,24572943.077421994,28832253.210841814 + 07/31 10:00:00,0.0,194242172.0610385,2790.187866874211,10044676.32074716,194242172.0610385,27644560.962099744,32436284.862197039 + 07/31 11:00:00,0.0,168663527.28734646,5016.270057773201,18058572.207983525,168663527.28734646,27644560.962099744,32436284.862197039 + 07/31 12:00:00,0.0,150610371.29574806,5002.869322536032,18010329.561129717,150610371.29574806,27644560.962099744,32436284.862197039 + 07/31 13:00:00,0.0,151323852.95106087,4993.373779709477,17976145.606954118,151323852.95106087,27644560.962099744,32436284.862197039 + 07/31 14:00:00,0.0,179172230.44653524,4979.655616697521,17926760.220111077,179172230.44653524,27644560.962099744,32436284.862197039 + 07/31 15:00:00,0.0,227017959.20283047,4974.817237973431,17909342.05670435,227017959.20283047,27644560.962099744,32436284.862197039 + 07/31 16:00:00,0.0,275283919.44957348,4964.746420056296,17873087.112202668,275283919.44957348,27644560.962099744,32436284.862197039 + 07/31 17:00:00,0.0,283382923.80604359,3868.3454834188835,13926043.74030798,283382923.80604359,27644560.962099744,32436284.862197039 + 07/31 18:00:00,0.0,255172541.35746826,2764.466222360734,9952078.400498642,255172541.35746826,27644560.962099744,28832253.210841814 + 07/31 19:00:00,0.0,181295749.96377696,1663.3523210627994,5988068.355826078,181295749.96377696,15358089.423388744,18020158.25677613 + 07/31 20:00:00,0.0,56559120.218678649,1109.8805759997277,3995570.0735990197,56559120.218678649,9214853.654033246,10812094.954065679 + 07/31 21:00:00,0.0,39169012.819109458,1111.0622746670102,3999824.1888012366,39169012.819109458,9214853.654033246,10812094.954065679 + 07/31 22:00:00,0.0,0.0,1112.4182126195308,4004705.565430311,0.0,6143235.769355498,3604031.6513552267 + 07/31 23:00:00,0.0,0.0,278.63159027383656,1003073.7249858115,0.0,6143235.769355498,3604031.6513552267 + 07/31 24:00:00,0.0,0.0,279.20082418608538,1005122.9670699072,0.0,6143235.769355498,1802015.8256776133 + 08/01 01:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 08/01 02:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 08/01 03:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 08/01 04:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 08/01 05:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 08/01 06:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 08/01 07:00:00,26250053.1753407,0.0,280.09645462110856,27258400.4119767,0.0,6143235.769355498,1802015.8256776133 + 08/01 08:00:00,16678604.329812248,16534102.050212939,559.4007241402287,18692446.936717068,16534102.050212939,9214853.654033246,10812094.954065679 + 08/01 09:00:00,0.0,132602608.05327609,2790.6502062864176,10046340.742631102,132602608.05327609,24572943.077421994,28832253.210841814 + 08/01 10:00:00,0.0,108533352.35074371,2784.7848184969618,10025225.346589063,108533352.35074371,27644560.962099744,32436284.862197039 + 08/01 11:00:00,0.0,118466255.04728849,4987.803875415945,17956093.951497403,118466255.04728849,27644560.962099744,32436284.862197039 + 08/01 12:00:00,0.0,131161452.42867789,4980.844560164666,17931040.4165928,131161452.42867789,27644560.962099744,32436284.862197039 + 08/01 13:00:00,0.0,128914095.7193588,4967.313142871366,17882327.31433692,128914095.7193588,27644560.962099744,32436284.862197039 + 08/01 14:00:00,0.0,151793538.11125765,4963.450859037871,17868423.092536335,151793538.11125765,27644560.962099744,32436284.862197039 + 08/01 15:00:00,0.0,173515482.67261143,4958.187575192403,17849475.27069265,173515482.67261143,27644560.962099744,32436284.862197039 + 08/01 16:00:00,0.0,197137291.3065914,4971.102044914805,17895967.3616933,197137291.3065914,27644560.962099744,32436284.862197039 + 08/01 17:00:00,0.0,193463721.70501317,3859.4478078289596,13894012.108184254,193463721.70501317,27644560.962099744,32436284.862197039 + 08/01 18:00:00,0.0,188785444.42750854,2761.723358286002,9942204.089829607,188785444.42750854,27644560.962099744,28832253.210841814 + 08/01 19:00:00,0.0,152189227.93482403,1663.7236515786786,5989405.145683243,152189227.93482403,15358089.423388744,18020158.25677613 + 08/01 20:00:00,0.0,31291191.358026055,1114.3241283109827,4011566.861919537,31291191.358026055,9214853.654033246,10812094.954065679 + 08/01 21:00:00,0.0,10157588.461528629,1115.699489306619,4016518.161503828,10157588.461528629,9214853.654033246,10812094.954065679 + 08/01 22:00:00,0.0,0.0,1118.0029510108964,4024810.623639227,0.0,6143235.769355498,3604031.6513552267 + 08/01 23:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,3604031.6513552267 + 08/01 24:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 08/02 01:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 08/02 02:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 08/02 03:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 08/02 04:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 08/02 05:00:00,0.0,0.0,280.56607898722407,1010037.8843540066,0.0,6143235.769355498,1802015.8256776133 + 08/02 06:00:00,0.0,0.0,280.0964546211087,1008347.2366359906,0.0,6143235.769355498,1802015.8256776133 + 08/02 07:00:00,0.0,180151979.2710839,279.70036207011438,1006921.3034524117,180151979.2710839,6143235.769355498,1802015.8256776133 + 08/02 08:00:00,0.0,165897735.7896002,557.6580646791487,2007569.032844935,165897735.7896002,9214853.654033246,10812094.954065679 + 08/02 09:00:00,0.0,218781669.82501639,2781.0455315488268,10011763.913575776,218781669.82501639,24572943.077421994,28832253.210841814 + 08/02 10:00:00,0.0,226763953.33319167,2766.475342609733,9959311.23339504,226763953.33319167,27644560.962099744,32436284.862197039 + 08/02 11:00:00,0.0,205008960.64778335,4960.83539993484,17859007.439765425,205008960.64778335,27644560.962099744,32436284.862197039 + 08/02 12:00:00,0.0,180705717.31209798,4940.194937648062,17784701.77553302,180705717.31209798,27644560.962099744,32436284.862197039 + 08/02 13:00:00,0.0,174928034.06433035,4935.8522682993129,17769068.165877526,174928034.06433035,27644560.962099744,32436284.862197039 + 08/02 14:00:00,0.0,208061972.17814297,4923.927381488506,17726138.57335862,208061972.17814297,27644560.962099744,32436284.862197039 + 08/02 15:00:00,0.0,249086809.71074868,4923.927381488506,17726138.57335862,249086809.71074868,27644560.962099744,32436284.862197039 + 08/02 16:00:00,0.0,236166714.25138019,4938.755256134866,17779518.922085518,236166714.25138019,27644560.962099744,32436284.862197039 + 08/02 17:00:00,0.0,205942977.14363779,3847.8802995761068,13852369.078473984,205942977.14363779,27644560.962099744,32436284.862197039 + 08/02 18:00:00,0.0,155261056.8779361,2749.2593264225149,9897333.575121053,155261056.8779361,27644560.962099744,28832253.210841814 + 08/02 19:00:00,0.0,152847774.50927777,1655.3446173728367,5959240.622542212,152847774.50927777,15358089.423388744,18020158.25677613 + 08/02 20:00:00,0.0,53058034.07772535,1106.5901370438933,3983724.4933580157,53058034.07772535,9214853.654033246,10812094.954065679 + 08/02 21:00:00,0.0,36285805.913152728,1108.9015473751998,3992045.570550719,36285805.913152728,9214853.654033246,10812094.954065679 + 08/02 22:00:00,0.0,0.0,1111.2929799733227,4000654.7279039619,0.0,6143235.769355498,3604031.6513552267 + 08/02 23:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,3604031.6513552267 + 08/02 24:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 08/03 01:00:00,0.0,0.0,278.1045531548827,1001176.3913575778,0.0,6143235.769355498,1802015.8256776133 + 08/03 02:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 08/03 03:00:00,0.0,0.0,278.63159027383656,1003073.7249858115,0.0,6143235.769355498,1802015.8256776133 + 08/03 04:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 08/03 05:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 08/03 06:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 08/03 07:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 08/03 08:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 08/03 09:00:00,0.0,0.0,276.9089802670166,996872.3289612598,0.0,6143235.769355498,1802015.8256776133 + 08/03 10:00:00,0.0,0.0,277.9371845853351,1000573.8645072064,0.0,6143235.769355498,1802015.8256776133 + 08/03 11:00:00,0.0,0.0,278.1045531548827,1001176.3913575778,0.0,6143235.769355498,1802015.8256776133 + 08/03 12:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 08/03 13:00:00,0.0,0.0,278.1045531548827,1001176.3913575778,0.0,6143235.769355498,1802015.8256776133 + 08/03 14:00:00,0.0,0.0,277.9371845853351,1000573.8645072064,0.0,6143235.769355498,1802015.8256776133 + 08/03 15:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 08/03 16:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 08/03 17:00:00,0.0,0.0,278.63159027383656,1003073.7249858115,0.0,6143235.769355498,1802015.8256776133 + 08/03 18:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 08/03 19:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 08/03 20:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 08/03 21:00:00,0.0,0.0,279.20082418608538,1005122.9670699072,0.0,6143235.769355498,1802015.8256776133 + 08/03 22:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 08/03 23:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 08/03 24:00:00,0.0,0.0,278.63159027383656,1003073.7249858115,0.0,6143235.769355498,1802015.8256776133 + 08/04 01:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 08/04 02:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 08/04 03:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 08/04 04:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 08/04 05:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 08/04 06:00:00,0.0,0.0,279.99432251054608,1007979.5610379658,0.0,6143235.769355498,1802015.8256776133 + 08/04 07:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 08/04 08:00:00,0.0,0.0,279.9237755458882,1007725.5919651975,0.0,6143235.769355498,1802015.8256776133 + 08/04 09:00:00,0.0,0.0,279.95929469481936,1007853.4609013496,0.0,6143235.769355498,1802015.8256776133 + 08/04 10:00:00,0.0,0.0,279.0650206286418,1004634.0742631105,0.0,6143235.769355498,1802015.8256776133 + 08/04 11:00:00,0.0,0.0,278.73127040457976,1003432.5734564872,0.0,6143235.769355498,1802015.8256776133 + 08/04 12:00:00,0.0,0.0,278.1593963140338,1001373.8267305218,0.0,6143235.769355498,1802015.8256776133 + 08/04 13:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 08/04 14:00:00,0.0,0.0,277.2872752631131,998234.1909472072,0.0,6143235.769355498,1802015.8256776133 + 08/04 15:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 08/04 16:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 08/04 17:00:00,0.0,0.0,277.2872752631131,998234.1909472072,0.0,6143235.769355498,1802015.8256776133 + 08/04 18:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 08/04 19:00:00,0.0,0.0,278.8771928082343,1003957.8941096438,0.0,6143235.769355498,1802015.8256776133 + 08/04 20:00:00,0.0,0.0,279.3322712715219,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 08/04 21:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 08/04 22:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 08/04 23:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 08/04 24:00:00,0.0,0.0,279.99432251054608,1007979.5610379658,0.0,6143235.769355498,1802015.8256776133 + 08/05 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 08/05 02:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 08/05 03:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 08/05 04:00:00,0.0,0.0,281.0316545626797,1011713.9564256469,0.0,6143235.769355498,1802015.8256776133 + 08/05 05:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 08/05 06:00:00,0.0,0.0,280.66364112106239,1010389.1080358243,0.0,6143235.769355498,1802015.8256776133 + 08/05 07:00:00,0.0,111379819.48980564,280.3175057376663,1009143.0206555986,111379819.48980564,6143235.769355498,1802015.8256776133 + 08/05 08:00:00,0.0,145787069.79647,559.7025292327492,2014929.105237897,145787069.79647,9214853.654033246,10812094.954065679 + 08/05 09:00:00,0.0,183438405.94744659,2795.0073775272405,10062026.559098065,183438405.94744659,24572943.077421994,28832253.210841814 + 08/05 10:00:00,0.0,178325781.02134479,2788.290323395743,10037845.164224675,178325781.02134479,27644560.962099744,32436284.862197039 + 08/05 11:00:00,0.0,153381771.76483549,5005.881956787888,18021175.0444364,153381771.76483549,27644560.962099744,32436284.862197039 + 08/05 12:00:00,0.0,129931759.96650455,4985.517386936821,17947862.592972556,129931759.96650455,27644560.962099744,32436284.862197039 + 08/05 13:00:00,0.0,132941332.06077916,4978.458401217704,17922450.244383735,132941332.06077916,27644560.962099744,32436284.862197039 + 08/05 14:00:00,0.0,168393882.65974275,4968.584280039837,17886903.408143414,168393882.65974275,27644560.962099744,32436284.862197039 + 08/05 15:00:00,0.0,219392206.77437599,4968.584280039837,17886903.408143414,219392206.77437599,27644560.962099744,32436284.862197039 + 08/05 16:00:00,0.0,254467082.28448109,4964.746420056296,17873087.112202668,254467082.28448109,27644560.962099744,32436284.862197039 + 08/05 17:00:00,0.0,261145481.2297465,3862.4707738699519,13904894.785931826,261145481.2297465,27644560.962099744,32436284.862197039 + 08/05 18:00:00,0.0,235892782.03748168,2761.0262507928498,9939694.502854258,235892782.03748168,27644560.962099744,28832253.210841814 + 08/05 19:00:00,0.0,138621473.69024343,1663.3523210627994,5988068.355826078,138621473.69024343,15358089.423388744,18020158.25677613 + 08/05 20:00:00,0.0,29572054.09213033,1112.4182126195308,4004705.565430311,29572054.09213033,9214853.654033246,10812094.954065679 + 08/05 21:00:00,0.0,17510474.331387938,1114.5263610953462,4012294.899943246,17510474.331387938,9214853.654033246,10812094.954065679 + 08/05 22:00:00,0.0,0.0,1112.8550616413339,4006278.2219088019,0.0,6143235.769355498,3604031.6513552267 + 08/05 23:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,3604031.6513552267 + 08/05 24:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 08/06 01:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 08/06 02:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 08/06 03:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 08/06 04:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 08/06 05:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 08/06 06:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 08/06 07:00:00,0.0,21933938.708988228,278.78039138278327,1003609.4089780197,21933938.708988228,6143235.769355498,1802015.8256776133 + 08/06 08:00:00,0.0,82333615.825914,556.4275308206669,2003139.1109544009,82333615.825914,9214853.654033246,10812094.954065679 + 08/06 09:00:00,0.0,201564372.85662446,2778.2324499333064,10001636.819759904,201564372.85662446,24572943.077421994,28832253.210841814 + 08/06 10:00:00,0.0,206962764.53206135,2769.089802670166,9968723.289612599,206962764.53206135,27644560.962099744,32436284.862197039 + 08/06 11:00:00,0.0,167918122.9131454,4974.817237973431,17909342.05670435,167918122.9131454,27644560.962099744,32436284.862197039 + 08/06 12:00:00,0.0,142509885.8648115,4977.252925212717,17918110.53076578,142509885.8648115,27644560.962099744,32436284.862197039 + 08/06 13:00:00,0.0,148871408.62072946,4952.795236528426,17830062.851502338,148871408.62072946,27644560.962099744,32436284.862197039 + 08/06 14:00:00,0.0,167678068.43478579,4945.874592895012,17805148.534422045,167678068.43478579,27644560.962099744,32436284.862197039 + 08/06 15:00:00,0.0,216937822.02588538,4941.626725780995,17789856.21281158,216937822.02588538,27644560.962099744,32436284.862197039 + 08/06 16:00:00,0.0,234608731.05569739,4950.050929568279,17820183.346445804,234608731.05569739,27644560.962099744,32436284.862197039 + 08/06 17:00:00,0.0,220196340.70385499,3850.0396118864384,13860142.602791178,220196340.70385499,27644560.962099744,32436284.862197039 + 08/06 18:00:00,0.0,209574359.23074348,2755.2864038589116,9919031.053892082,209574359.23074348,27644560.962099744,28832253.210841814 + 08/06 19:00:00,0.0,111652771.31569422,1659.4861337392345,5974150.081461244,111652771.31569422,15358089.423388744,18020158.25677613 + 08/06 20:00:00,0.0,30888422.67371899,1109.8805759997277,3995570.0735990197,30888422.67371899,9214853.654033246,10812094.954065679 + 08/06 21:00:00,0.0,20344931.956314587,1112.4182126195308,4004705.565430311,20344931.956314587,9214853.654033246,10812094.954065679 + 08/06 22:00:00,0.0,0.0,1114.3241283109827,4011566.861919537,0.0,6143235.769355498,3604031.6513552267 + 08/06 23:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,3604031.6513552267 + 08/06 24:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 08/07 01:00:00,0.0,0.0,279.20082418608538,1005122.9670699072,0.0,6143235.769355498,1802015.8256776133 + 08/07 02:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 08/07 03:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 08/07 04:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 08/07 05:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 08/07 06:00:00,0.0,0.0,279.88776540456527,1007595.9554564351,0.0,6143235.769355498,1802015.8256776133 + 08/07 07:00:00,0.0,114403121.65940607,279.5007377527241,1006202.6559098067,114403121.65940607,6143235.769355498,1802015.8256776133 + 08/07 08:00:00,0.0,145333039.15513874,558.2215436347614,2009597.5570851409,145333039.15513874,9214853.654033246,10812094.954065679 + 08/07 09:00:00,0.0,190408689.7565089,2781.0455315488268,10011763.913575776,190408689.7565089,24572943.077421994,28832253.210841814 + 08/07 10:00:00,0.0,214840079.9144326,2772.253868437999,9980113.926376796,214840079.9144326,27644560.962099744,32436284.862197039 + 08/07 11:00:00,0.0,198714269.5549569,4977.252925212717,17918110.53076578,198714269.5549569,27644560.962099744,32436284.862197039 + 08/07 12:00:00,0.0,175297237.24175487,4954.155375148696,17834959.350535308,175297237.24175487,27644560.962099744,32436284.862197039 + 08/07 13:00:00,0.0,182492148.91475637,4940.194937648062,17784701.77553302,182492148.91475637,27644560.962099744,32436284.862197039 + 08/07 14:00:00,0.0,200202965.9601822,4929.952184939437,17747827.865781975,200202965.9601822,27644560.962099744,32436284.862197039 + 08/07 15:00:00,0.0,223907136.89105407,4925.445224603329,17731602.808571984,223907136.89105407,27644560.962099744,32436284.862197039 + 08/07 16:00:00,0.0,253362267.9258913,4928.457640781135,17742447.506812086,253362267.9258913,27644560.962099744,32436284.862197039 + 08/07 17:00:00,0.0,241482561.56622175,3841.254088104895,13828514.717177622,241482561.56622175,27644560.962099744,32436284.862197039 + 08/07 18:00:00,0.0,166505683.6183149,2751.5529091824589,9905590.473056851,166505683.6183149,27644560.962099744,28832253.210841814 + 08/07 19:00:00,0.0,86887355.05123593,1656.61575047571,5963816.701712556,86887355.05123593,15358089.423388744,18020158.25677613 + 08/07 20:00:00,0.0,57725760.764494989,1100.6211636729836,3962236.189222741,57725760.764494989,9214853.654033246,10812094.954065679 + 08/07 21:00:00,0.0,54488961.66968569,1102.6993736654172,3969717.745195502,54488961.66968569,9214853.654033246,10812094.954065679 + 08/07 22:00:00,0.0,0.0,1104.4105003171404,3975877.801141705,0.0,6143235.769355498,3604031.6513552267 + 08/07 23:00:00,0.0,0.0,276.5140514007065,995450.5850425434,0.0,6143235.769355498,3604031.6513552267 + 08/07 24:00:00,0.0,0.0,277.03693337832876,997332.9601619835,0.0,6143235.769355498,1802015.8256776133 + 08/08 01:00:00,0.0,0.0,277.2872752631131,998234.1909472072,0.0,6143235.769355498,1802015.8256776133 + 08/08 02:00:00,0.0,0.0,277.8804504824905,1000369.6217369658,0.0,6143235.769355498,1802015.8256776133 + 08/08 03:00:00,0.0,0.0,277.76556866675255,999956.0472003091,0.0,6143235.769355498,1802015.8256776133 + 08/08 04:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 08/08 05:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 08/08 06:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 08/08 07:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,1802015.8256776133 + 08/08 08:00:00,5295107.788933824,4138590.6409686666,557.0599915462626,7300523.75850037,4138590.6409686666,9214853.654033246,10812094.954065679 + 08/08 09:00:00,0.0,115872004.77100435,2781.0455315488268,10011763.913575776,115872004.77100435,24572943.077421994,28832253.210841814 + 08/08 10:00:00,0.0,130354701.97148761,2780.4923645911028,10009772.512527969,130354701.97148761,27644560.962099744,32436284.862197039 + 08/08 11:00:00,0.0,134953036.18531645,4998.733597011079,17995440.949239885,134953036.18531645,27644560.962099744,32436284.862197039 + 08/08 12:00:00,0.0,100149976.69917678,4990.056963188398,17964205.067478233,100149976.69917678,27644560.962099744,32436284.862197039 + 08/08 13:00:00,0.0,97571391.29782403,5022.338160373581,18080417.37734489,97571391.29782403,27644560.962099744,32436284.862197039 + 08/08 14:00:00,0.0,76465363.73006225,5008.817878597807,18031744.362952107,76465363.73006225,27644560.962099744,32436284.862197039 + 08/08 15:00:00,0.0,147190458.0414581,4977.252925212717,17918110.53076578,147190458.0414581,27644560.962099744,32436284.862197039 + 08/08 16:00:00,0.0,206307902.86270545,4979.655616697521,17926760.220111077,206307902.86270545,27644560.962099744,32436284.862197039 + 08/08 17:00:00,0.0,171471451.49265109,3878.517067296602,13962661.442267767,171471451.49265109,27644560.962099744,32436284.862197039 + 08/08 18:00:00,0.0,94681029.11127037,2773.486979877353,9984553.12755847,94681029.11127037,27644560.962099744,28832253.210841814 + 08/08 19:00:00,0.0,111270681.45564522,1665.5383213152855,5995937.956735028,111270681.45564522,15358089.423388744,18020158.25677613 + 08/08 20:00:00,0.0,11537462.656678649,1110.358880876857,3997291.971156685,11537462.656678649,9214853.654033246,10812094.954065679 + 08/08 21:00:00,0.0,7219203.732920067,1110.829688224684,3998986.8776088629,7219203.732920067,9214853.654033246,10812094.954065679 + 08/08 22:00:00,0.0,0.0,1111.2929799733227,4000654.7279039619,0.0,6143235.769355498,3604031.6513552267 + 08/08 23:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,3604031.6513552267 + 08/08 24:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 08/09 01:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 08/09 02:00:00,0.0,0.0,278.1045531548827,1001176.3913575778,0.0,6143235.769355498,1802015.8256776133 + 08/09 03:00:00,0.0,0.0,278.1593963140338,1001373.8267305218,0.0,6143235.769355498,1802015.8256776133 + 08/09 04:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 08/09 05:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 08/09 06:00:00,0.0,0.0,278.10455315488289,1001176.3913575776,0.0,6143235.769355498,1802015.8256776133 + 08/09 07:00:00,0.0,159742680.57559396,277.707422056171,999746.7194022157,159742680.57559396,6143235.769355498,1802015.8256776133 + 08/09 08:00:00,0.0,47057359.399351958,556.3187926280676,2002747.6534610436,47057359.399351958,9214853.654033246,10812094.954065679 + 08/09 09:00:00,0.0,69112454.16732922,2774.7014399993188,9988925.183997548,69112454.16732922,24572943.077421994,28832253.210841814 + 08/09 10:00:00,0.0,91776915.2510061,2773.486979877353,9984553.12755847,91776915.2510061,27644560.962099744,32436284.862197039 + 08/09 11:00:00,0.0,103156068.69490114,4990.056963188398,17964205.067478233,103156068.69490114,27644560.962099744,32436284.862197039 + 08/09 12:00:00,0.0,103905666.17037668,4987.803875415945,17956093.951497403,103905666.17037668,27644560.962099744,32436284.862197039 + 08/09 13:00:00,0.0,108430314.87075262,4992.276563779235,17972195.62960525,108430314.87075262,27644560.962099744,32436284.862197039 + 08/09 14:00:00,0.0,151285760.1654164,4978.458401217704,17922450.244383735,151285760.1654164,27644560.962099744,32436284.862197039 + 08/09 15:00:00,0.0,185869125.40250028,4984.361644806299,17943701.921302678,185869125.40250028,27644560.962099744,32436284.862197039 + 08/09 16:00:00,0.0,193750639.5339191,4980.844560164666,17931040.4165928,193750639.5339191,27644560.962099744,32436284.862197039 + 08/09 17:00:00,0.0,146242554.19168575,3887.9039087863936,13996454.071631017,146242554.19168575,27644560.962099744,32436284.862197039 + 08/09 18:00:00,0.0,124898013.89380285,2772.872752631131,9982341.90947207,124898013.89380285,27644560.962099744,28832253.210841814 + 08/09 19:00:00,0.0,79191731.7256264,1664.0921879264118,5990731.876535082,79191731.7256264,15358089.423388744,18020158.25677613 + 08/09 20:00:00,0.0,843252.7598342382,1113.0706396884014,4007054.302878245,843252.7598342382,9214853.654033246,10812094.954065679 + 08/09 21:00:00,0.0,0.0,1113.284317328827,4007823.542383777,0.0,9214853.654033246,10812094.954065679 + 08/09 22:00:00,0.0,0.0,1113.705963206903,4009341.4675448515,0.0,6143235.769355498,3604031.6513552267 + 08/09 23:00:00,0.0,0.0,278.5299957731313,1002707.9847832727,0.0,6143235.769355498,3604031.6513552267 + 08/09 24:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 08/10 01:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 08/10 02:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 08/10 03:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 08/10 04:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 08/10 05:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 08/10 06:00:00,0.0,0.0,280.2874089599472,1009034.6722558097,0.0,6143235.769355498,1802015.8256776133 + 08/10 07:00:00,0.0,0.0,279.8877654045653,1007595.9554564351,0.0,6143235.769355498,1802015.8256776133 + 08/10 08:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 08/10 09:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 08/10 10:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 08/10 11:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 08/10 12:00:00,0.0,0.0,277.9934467574903,1000776.4083269651,0.0,6143235.769355498,1802015.8256776133 + 08/10 13:00:00,0.0,0.0,277.2253868437999,998011.3926376797,0.0,6143235.769355498,1802015.8256776133 + 08/10 14:00:00,0.0,0.0,277.10021530088587,997560.7750831891,0.0,6143235.769355498,1802015.8256776133 + 08/10 15:00:00,0.0,0.0,276.6475342609733,995931.1233395038,0.0,6143235.769355498,1802015.8256776133 + 08/10 16:00:00,0.0,0.0,276.5810222898724,995691.6802435406,0.0,6143235.769355498,1802015.8256776133 + 08/10 17:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 08/10 18:00:00,0.0,0.0,277.2253868437999,998011.3926376797,0.0,6143235.769355498,1802015.8256776133 + 08/10 19:00:00,0.0,0.0,278.7312704045796,1003432.5734564872,0.0,6143235.769355498,1802015.8256776133 + 08/10 20:00:00,0.0,0.0,279.73882189643168,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 08/10 21:00:00,0.0,0.0,279.9237755458882,1007725.5919651976,0.0,6143235.769355498,1802015.8256776133 + 08/10 22:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 08/10 23:00:00,0.0,0.0,279.5007377527241,1006202.6559098067,0.0,6143235.769355498,1802015.8256776133 + 08/10 24:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 08/11 01:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 08/11 02:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 08/11 03:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 08/11 04:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 08/11 05:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 08/11 06:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 08/11 07:00:00,0.0,0.0,280.12951379022726,1008466.2496448179,0.0,6143235.769355498,1802015.8256776133 + 08/11 08:00:00,0.0,0.0,279.2451245019825,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 08/11 09:00:00,0.0,0.0,278.4264908017258,1002335.3668862128,0.0,6143235.769355498,1802015.8256776133 + 08/11 10:00:00,0.0,0.0,277.58972021921428,999322.9927891713,0.0,6143235.769355498,1802015.8256776133 + 08/11 11:00:00,0.0,0.0,276.9089802670166,996872.3289612598,0.0,6143235.769355498,1802015.8256776133 + 08/11 12:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 08/11 13:00:00,0.0,0.0,275.8192455586831,992949.2840112592,0.0,6143235.769355498,1802015.8256776133 + 08/11 14:00:00,0.0,0.0,275.7472699465484,992690.1718075741,0.0,6143235.769355498,1802015.8256776133 + 08/11 15:00:00,0.0,0.0,275.38064207865917,991370.3114831729,0.0,6143235.769355498,1802015.8256776133 + 08/11 16:00:00,0.0,0.0,275.52864038589117,991903.1053892082,0.0,6143235.769355498,1802015.8256776133 + 08/11 17:00:00,0.0,0.0,275.6748434163543,992429.4362988755,0.0,6143235.769355498,1802015.8256776133 + 08/11 18:00:00,0.0,0.0,276.24159158127159,994469.7296925779,0.0,6143235.769355498,1802015.8256776133 + 08/11 19:00:00,0.0,0.0,277.53016612220946,999108.5980399544,0.0,6143235.769355498,1802015.8256776133 + 08/11 20:00:00,0.0,0.0,277.10021530088587,997560.7750831891,0.0,6143235.769355498,1802015.8256776133 + 08/11 21:00:00,0.0,0.0,278.9720704373418,1004299.4535744304,0.0,6143235.769355498,1802015.8256776133 + 08/11 22:00:00,0.0,0.0,279.5007377527241,1006202.6559098067,0.0,6143235.769355498,1802015.8256776133 + 08/11 23:00:00,0.0,0.0,278.4264908017258,1002335.3668862128,0.0,6143235.769355498,1802015.8256776133 + 08/11 24:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 08/12 01:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 08/12 02:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 08/12 03:00:00,0.0,0.0,279.9237755458882,1007725.5919651975,0.0,6143235.769355498,1802015.8256776133 + 08/12 04:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 08/12 05:00:00,0.0,0.0,280.56607898722407,1010037.8843540066,0.0,6143235.769355498,1802015.8256776133 + 08/12 06:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 08/12 07:00:00,0.0,113461937.53404795,279.9237755458882,1007725.5919651975,113461937.53404795,6143235.769355498,1802015.8256776133 + 08/12 08:00:00,0.0,101304552.07043335,558.9187010673895,2012107.3238426024,101304552.07043335,9214853.654033246,10812094.954065679 + 08/12 09:00:00,0.0,105797693.57662912,2790.6502062864176,10046340.742631102,105797693.57662912,24572943.077421994,28832253.210841814 + 08/12 10:00:00,0.0,109235463.67895539,2786.3159027383655,10030737.249858115,109235463.67895539,27644560.962099744,32436284.862197039 + 08/12 11:00:00,0.0,85857728.08189325,5018.922582112338,18068121.29560442,85857728.08189325,27644560.962099744,32436284.862197039 + 08/12 12:00:00,0.0,88906730.38363163,5015.368624929059,18055327.04974461,88906730.38363163,27644560.962099744,32436284.862197039 + 08/12 13:00:00,0.0,104306262.34892838,4992.276563779235,17972195.62960525,104306262.34892838,27644560.962099744,32436284.862197039 + 08/12 14:00:00,0.0,141584382.02221156,4976.039200249322,17913741.120897559,141584382.02221156,27644560.962099744,32436284.862197039 + 08/12 15:00:00,0.0,193915692.17172564,4966.0338521185099,17877721.867626635,193915692.17172564,27644560.962099744,32436284.862197039 + 08/12 16:00:00,0.0,226633381.15079183,4974.817237973431,17909342.05670435,226633381.15079183,27644560.962099744,32436284.862197039 + 08/12 17:00:00,0.0,234098843.5394213,3877.6246342841934,13959448.683423097,234098843.5394213,27644560.962099744,32436284.862197039 + 08/12 18:00:00,0.0,184778500.7831434,2775.8972021921424,9993229.927891713,184778500.7831434,27644560.962099744,28832253.210841814 + 08/12 19:00:00,0.0,104707636.2714862,1668.627318929296,6007058.348145465,104707636.2714862,15358089.423388744,18020158.25677613 + 08/12 20:00:00,0.0,11078326.806373766,1114.925081618319,4013730.293825948,11078326.806373766,9214853.654033246,10812094.954065679 + 08/12 21:00:00,0.0,3861932.6603757229,1115.121565531133,4014437.635912079,3861932.6603757229,9214853.654033246,10812094.954065679 + 08/12 22:00:00,0.0,0.0,1116.6241592585873,4019846.973330914,0.0,6143235.769355498,3604031.6513552267 + 08/12 23:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,3604031.6513552267 + 08/12 24:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 08/13 01:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,1802015.8256776133 + 08/13 02:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 08/13 03:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 08/13 04:00:00,0.0,0.0,279.9237755458882,1007725.5919651975,0.0,6143235.769355498,1802015.8256776133 + 08/13 05:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 08/13 06:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 08/13 07:00:00,0.0,39547852.52862725,279.0650206286418,1004634.0742631104,39547852.52862725,6143235.769355498,1802015.8256776133 + 08/13 08:00:00,0.0,78919579.07211317,556.7480462561672,2004292.966522202,78919579.07211317,9214853.654033246,10812094.954065679 + 08/13 09:00:00,0.0,196353744.31681229,2775.3016612220956,9991085.980399544,196353744.31681229,24572943.077421994,28832253.210841814 + 08/13 10:00:00,0.0,231965496.92612816,2769.089802670166,9968723.289612599,231965496.92612816,27644560.962099744,32436284.862197039 + 08/13 11:00:00,0.0,200627211.00461263,4960.83539993484,17859007.439765425,200627211.00461263,27644560.962099744,32436284.862197039 + 08/13 12:00:00,0.0,173063246.07990075,4960.83539993484,17859007.439765425,173063246.07990075,27644560.962099744,32436284.862197039 + 08/13 13:00:00,0.0,177581201.42368946,4950.050929568279,17820183.346445804,177581201.42368946,27644560.962099744,32436284.862197039 + 08/13 14:00:00,0.0,214216653.57043753,4929.952184939437,17747827.865781975,214216653.57043753,27644560.962099744,32436284.862197039 + 08/13 15:00:00,0.0,259789785.08382554,4916.222400438028,17698400.6415769,259789785.08382554,27644560.962099744,32436284.862197039 + 08/13 16:00:00,0.0,275366125.8164114,4922.401801083587,17720646.483900913,275366125.8164114,27644560.962099744,32436284.862197039 + 08/13 17:00:00,0.0,286225806.7705471,3836.713901761111,13812170.04634,286225806.7705471,27644560.962099744,32436284.862197039 + 08/13 18:00:00,0.0,240962143.99273504,2750.028294204599,9900101.859136558,240962143.99273504,27644560.962099744,28832253.210841814 + 08/13 19:00:00,0.0,122796435.91218347,1653.171842315347,5951418.632335249,122796435.91218347,15358089.423388744,18020158.25677613 + 08/13 20:00:00,0.0,51455502.47256608,1103.8473650825259,3973850.514297093,51455502.47256608,9214853.654033246,10812094.954065679 + 08/13 21:00:00,0.0,50924150.24306188,1102.6993736654172,3969717.745195502,50924150.24306188,9214853.654033246,10812094.954065679 + 08/13 22:00:00,0.0,0.0,1105.2415666911098,3978869.6400879949,0.0,6143235.769355498,3604031.6513552267 + 08/13 23:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,3604031.6513552267 + 08/13 24:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 08/14 01:00:00,0.0,0.0,277.82324499333068,1000163.6819759904,0.0,6143235.769355498,1802015.8256776133 + 08/14 02:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 08/14 03:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 08/14 04:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 08/14 05:00:00,0.0,0.0,279.5416380384865,1006349.8969385513,0.0,6143235.769355498,1802015.8256776133 + 08/14 06:00:00,0.0,0.0,279.3322712715218,1005596.1765774785,0.0,6143235.769355498,1802015.8256776133 + 08/14 07:00:00,0.0,169600198.17458875,278.3740231280836,1002146.483261101,169600198.17458875,6143235.769355498,1802015.8256776133 + 08/14 08:00:00,0.0,223831628.30551703,554.4507736875999,1996022.7852753595,223831628.30551703,9214853.654033246,10812094.954065679 + 08/14 09:00:00,0.0,255153162.06127636,2759.6184127063145,9934626.285742732,255153162.06127636,24572943.077421994,28832253.210841814 + 08/14 10:00:00,0.0,257203585.33778585,2751.5529091824589,9905590.473056851,257203585.33778585,27644560.962099744,32436284.862197039 + 08/14 11:00:00,0.0,233863534.40837959,4938.755256134866,17779518.922085518,233863534.40837959,27644560.962099744,32436284.862197039 + 08/14 12:00:00,0.0,204624367.09459079,4926.955315864072,17737039.137110659,204624367.09459079,27644560.962099744,32436284.862197039 + 08/14 13:00:00,0.0,205654786.78856875,4923.927381488506,17726138.57335862,205654786.78856875,27644560.962099744,32436284.862197039 + 08/14 14:00:00,0.0,230888497.8027667,4890.288443199709,17605038.39551895,230888497.8027667,27644560.962099744,32436284.862197039 + 08/14 15:00:00,0.0,268844013.0834385,4886.911906836059,17592882.86460981,268844013.0834385,27644560.962099744,32436284.862197039 + 08/14 16:00:00,0.0,302642367.8447591,4890.288443199709,17605038.39551895,302642367.8447591,27644560.962099744,32436284.862197039 + 08/14 17:00:00,0.0,298412694.3062824,3808.7407660282308,13711466.75770163,298412694.3062824,27644560.962099744,32436284.862197039 + 08/14 18:00:00,0.0,267337088.45783953,2728.615185031026,9823014.666111695,267337088.45783953,27644560.962099744,28832253.210841814 + 08/14 19:00:00,0.0,167325005.54740114,1648.1555223429558,5933359.880434641,167325005.54740114,15358089.423388744,18020158.25677613 + 08/14 20:00:00,0.0,59925384.57953647,1105.7864889442938,3980831.3601994577,59925384.57953647,9214853.654033246,10812094.954065679 + 08/14 21:00:00,0.0,49209700.317366678,1108.9015473751998,3992045.570550719,49209700.317366678,9214853.654033246,10812094.954065679 + 08/14 22:00:00,0.0,0.0,1109.6386177132172,3994699.0237675819,0.0,6143235.769355498,3604031.6513552267 + 08/14 23:00:00,0.0,0.0,278.1045531548827,1001176.3913575778,0.0,6143235.769355498,3604031.6513552267 + 08/14 24:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 08/15 01:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 08/15 02:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 08/15 03:00:00,0.0,0.0,279.99432251054608,1007979.5610379658,0.0,6143235.769355498,1802015.8256776133 + 08/15 04:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 08/15 05:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 08/15 06:00:00,0.0,0.0,279.73882189643168,1007059.7588271533,0.0,6143235.769355498,1802015.8256776133 + 08/15 07:00:00,0.0,199336990.27419905,278.8290323395743,1003784.5164224675,199336990.27419905,6143235.769355498,1802015.8256776133 + 08/15 08:00:00,0.0,231787614.67306937,554.4507736875999,1996022.7852753595,231787614.67306937,9214853.654033246,10812094.954065679 + 08/15 09:00:00,0.0,256652381.94467304,2759.6184127063145,9934626.285742732,256652381.94467304,24572943.077421994,28832253.210841814 + 08/15 10:00:00,0.0,262122012.99029035,2749.2593264225149,9897333.575121053,262122012.99029035,27644560.962099744,32436284.862197039 + 08/15 11:00:00,0.0,252049527.9692273,4916.222400438028,17698400.6415769,252049527.9692273,27644560.962099744,32436284.862197039 + 08/15 12:00:00,0.0,236742583.02805419,4891.965597685878,17611076.15166916,236742583.02805419,27644560.962099744,32436284.862197039 + 08/15 13:00:00,0.0,253578129.25432319,4881.791777332384,17574450.398396586,253578129.25432319,27644560.962099744,32436284.862197039 + 08/15 14:00:00,0.0,281684724.11151638,4871.35397668008,17536874.31604829,281684724.11151638,27644560.962099744,32436284.862197039 + 08/15 15:00:00,0.0,319092092.03582677,4871.35397668008,17536874.31604829,319092092.03582677,27644560.962099744,32436284.862197039 + 08/15 16:00:00,0.0,333278071.6058485,4876.605651329207,17555780.344785148,333278071.6058485,27644560.962099744,32436284.862197039 + 08/15 17:00:00,0.0,330176664.3911493,3798.2823216051385,13673816.357778499,330176664.3911493,27644560.962099744,32436284.862197039 + 08/15 18:00:00,0.0,278114165.442862,2720.5291185915937,9793904.826929737,278114165.442862,27644560.962099744,28832253.210841814 + 08/15 19:00:00,0.0,167340102.14434249,1640.2894993422638,5905042.19763215,167340102.14434249,15358089.423388744,18020158.25677613 + 08/15 20:00:00,0.0,81662852.56256137,1097.1794877900916,3949846.1560443297,81662852.56256137,9214853.654033246,10812094.954065679 + 08/15 21:00:00,0.0,76505893.85474512,1100.3171296946062,3961141.666900582,76505893.85474512,9214853.654033246,10812094.954065679 + 08/15 22:00:00,0.0,0.0,1100.0113176818396,3960040.7436546238,0.0,6143235.769355498,3604031.6513552267 + 08/15 23:00:00,0.0,0.0,275.30597146865338,991101.4972871521,0.0,6143235.769355498,3604031.6513552267 + 08/15 24:00:00,0.0,0.0,276.5810222898724,995691.6802435407,0.0,6143235.769355498,1802015.8256776133 + 08/16 01:00:00,0.0,0.0,276.3103916727774,994717.4100219987,0.0,6143235.769355498,1802015.8256776133 + 08/16 02:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 08/16 03:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 08/16 04:00:00,0.0,0.0,277.10021530088587,997560.775083189,0.0,6143235.769355498,1802015.8256776133 + 08/16 05:00:00,0.0,0.0,277.58972021921428,999322.9927891713,0.0,6143235.769355498,1802015.8256776133 + 08/16 06:00:00,0.0,0.0,277.82324499333068,1000163.6819759903,0.0,6143235.769355498,1802015.8256776133 + 08/16 07:00:00,0.0,112379739.62314488,277.3486979877353,998455.3127558471,112379739.62314488,6143235.769355498,1802015.8256776133 + 08/16 08:00:00,0.0,157966957.31328375,552.2052501585702,1987938.9005708525,157966957.31328375,9214853.654033246,10812094.954065679 + 08/16 09:00:00,0.0,266189218.374114,2747.7081071638956,9891749.185790023,266189218.374114,24572943.077421994,28832253.210841814 + 08/16 10:00:00,0.0,254465006.4198894,2741.3272165731407,9868777.979663305,254465006.4198894,27644560.962099744,32436284.862197039 + 08/16 11:00:00,0.0,238208890.62232856,4916.222400438028,17698400.6415769,238208890.62232856,27644560.962099744,32436284.862197039 + 08/16 12:00:00,0.0,202233202.87835915,4891.965597685878,17611076.15166916,202233202.87835915,27644560.962099744,32436284.862197039 + 08/16 13:00:00,0.0,207161956.05609519,4876.605651329207,17555780.344785148,207161956.05609519,27644560.962099744,32436284.862197039 + 08/16 14:00:00,0.0,214175829.8391448,4885.212557357057,17586765.206485407,214175829.8391448,27644560.962099744,32436284.862197039 + 08/16 15:00:00,0.0,218307022.31774075,4903.496729799353,17652588.22727767,218307022.31774075,27644560.962099744,32436284.862197039 + 08/16 16:00:00,0.0,204995157.9808459,4906.723703055025,17664205.33099809,204995157.9808459,27644560.962099744,32436284.862197039 + 08/16 17:00:00,0.0,220333021.96515698,3815.0886626325666,13734319.185477239,220333021.96515698,27644560.962099744,32436284.862197039 + 08/16 18:00:00,0.0,230348290.62144578,2737.197397702262,9853910.631728145,230348290.62144578,27644560.962099744,28832253.210841814 + 08/16 19:00:00,0.0,125001444.47236513,1648.6248642983374,5935049.511474014,125001444.47236513,15358089.423388744,18020158.25677613 + 08/16 20:00:00,0.0,65649838.54925132,1099.3943713074594,3957819.7367068536,65649838.54925132,9214853.654033246,10812094.954065679 + 08/16 21:00:00,0.0,51743747.67749233,1100.6211636729836,3962236.189222741,51743747.67749233,9214853.654033246,10812094.954065679 + 08/16 22:00:00,0.0,0.0,1113.284317328827,4007823.542383777,0.0,6143235.769355498,3604031.6513552267 + 08/16 23:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,3604031.6513552267 + 08/16 24:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,1802015.8256776133 + 08/17 01:00:00,0.0,0.0,277.2253868437999,998011.3926376797,0.0,6143235.769355498,1802015.8256776133 + 08/17 02:00:00,0.0,0.0,277.53016612220957,999108.5980399544,0.0,6143235.769355498,1802015.8256776133 + 08/17 03:00:00,0.0,0.0,277.53016612220957,999108.5980399544,0.0,6143235.769355498,1802015.8256776133 + 08/17 04:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 08/17 05:00:00,0.0,0.0,277.6488057195134,999535.7005902482,0.0,6143235.769355498,1802015.8256776133 + 08/17 06:00:00,0.0,0.0,277.82324499333068,1000163.6819759903,0.0,6143235.769355498,1802015.8256776133 + 08/17 07:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 08/17 08:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 08/17 09:00:00,0.0,0.0,276.8443103059949,996639.5171015817,0.0,6143235.769355498,1802015.8256776133 + 08/17 10:00:00,0.0,0.0,275.89076956213946,993206.770423702,0.0,6143235.769355498,1802015.8256776133 + 08/17 11:00:00,0.0,0.0,275.96184127063148,993462.6285742731,0.0,6143235.769355498,1802015.8256776133 + 08/17 12:00:00,0.0,0.0,276.03246000221318,993716.8560079674,0.0,6143235.769355498,1802015.8256776133 + 08/17 13:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 08/17 14:00:00,0.0,0.0,275.30597146865338,991101.4972871521,0.0,6143235.769355498,1802015.8256776133 + 08/17 15:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 08/17 16:00:00,0.0,0.0,277.2253868437999,998011.3926376798,0.0,6143235.769355498,1802015.8256776133 + 08/17 17:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 08/17 18:00:00,0.0,0.0,277.2253868437999,998011.3926376797,0.0,6143235.769355498,1802015.8256776133 + 08/17 19:00:00,0.0,0.0,277.8804504824905,1000369.6217369658,0.0,6143235.769355498,1802015.8256776133 + 08/17 20:00:00,0.0,0.0,278.1045531548827,1001176.3913575778,0.0,6143235.769355498,1802015.8256776133 + 08/17 21:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 08/17 22:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 08/17 23:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 08/17 24:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 08/18 01:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 08/18 02:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 08/18 03:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 08/18 04:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 08/18 05:00:00,0.0,0.0,280.56607898722407,1010037.8843540066,0.0,6143235.769355498,1802015.8256776133 + 08/18 06:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 08/18 07:00:00,0.0,0.0,280.31750573766638,1009143.0206555987,0.0,6143235.769355498,1802015.8256776133 + 08/18 08:00:00,0.0,0.0,279.9592946948194,1007853.4609013494,0.0,6143235.769355498,1802015.8256776133 + 08/18 09:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 08/18 10:00:00,0.0,0.0,279.0650206286418,1004634.0742631104,0.0,6143235.769355498,1802015.8256776133 + 08/18 11:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 08/18 12:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 08/18 13:00:00,0.0,0.0,277.8804504824905,1000369.6217369658,0.0,6143235.769355498,1802015.8256776133 + 08/18 14:00:00,0.0,0.0,277.16303332362636,997786.9199650548,0.0,6143235.769355498,1802015.8256776133 + 08/18 15:00:00,0.0,0.0,276.7135866758148,996168.9120329332,0.0,6143235.769355498,1802015.8256776133 + 08/18 16:00:00,0.0,0.0,276.4466222360734,995207.8400498643,0.0,6143235.769355498,1802015.8256776133 + 08/18 17:00:00,0.0,0.0,276.2415915812716,994469.7296925779,0.0,6143235.769355498,1802015.8256776133 + 08/18 18:00:00,0.0,0.0,276.90898026701657,996872.3289612598,0.0,6143235.769355498,1802015.8256776133 + 08/18 19:00:00,0.0,0.0,278.5299957731313,1002707.9847832727,0.0,6143235.769355498,1802015.8256776133 + 08/18 20:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 08/18 21:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 08/18 22:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 08/18 23:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 08/18 24:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 08/19 01:00:00,0.0,0.0,280.3175057376663,1009143.0206555986,0.0,6143235.769355498,1802015.8256776133 + 08/19 02:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 08/19 03:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 08/19 04:00:00,0.0,0.0,280.56607898722407,1010037.8843540066,0.0,6143235.769355498,1802015.8256776133 + 08/19 05:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 08/19 06:00:00,0.0,0.0,280.12951379022749,1008466.2496448179,0.0,6143235.769355498,1802015.8256776133 + 08/19 07:00:00,0.0,118991231.93476928,279.62197624510358,1006639.1144823728,118991231.93476928,6143235.769355498,1802015.8256776133 + 08/19 08:00:00,0.0,134582565.20660693,557.9441408746836,2008598.907148861,134582565.20660693,9214853.654033246,10812094.954065679 + 08/19 09:00:00,0.0,199203996.8833007,2777.07422056171,9997467.194022155,199203996.8833007,24572943.077421994,28832253.210841814 + 08/19 10:00:00,0.0,213643047.910572,2765.8102228987238,9956916.802435406,213643047.910572,27644560.962099744,32436284.862197039 + 08/19 11:00:00,0.0,169260182.1319028,4968.584280039837,17886903.408143414,169260182.1319028,27644560.962099744,32436284.862197039 + 08/19 12:00:00,0.0,150886951.58095069,4962.147181494377,17863729.853379758,150886951.58095069,27644560.962099744,32436284.862197039 + 08/19 13:00:00,0.0,183340172.07957337,4955.507486435761,17839826.951168743,183340172.07957337,27644560.962099744,32436284.862197039 + 08/19 14:00:00,0.0,207740925.93236206,4938.755256134866,17779518.922085518,207740925.93236206,27644560.962099744,32436284.862197039 + 08/19 15:00:00,0.0,199394684.87056274,4926.955315864072,17737039.137110659,199394684.87056274,27644560.962099744,32436284.862197039 + 08/19 16:00:00,0.0,180421511.11632426,4940.194937648062,17784701.77553302,180421511.11632426,27644560.962099744,32436284.862197039 + 08/19 17:00:00,0.0,182439767.0054609,3836.713901761111,13812170.04634,182439767.0054609,27644560.962099744,32436284.862197039 + 08/19 18:00:00,0.0,178315912.5551376,2741.3272165731407,9868777.979663305,178315912.5551376,27644560.962099744,28832253.210841814 + 08/19 19:00:00,0.0,83008283.08018583,1653.171842315347,5951418.632335249,83008283.08018583,15358089.423388744,18020158.25677613 + 08/19 20:00:00,0.0,41987061.63025103,1105.2415666911098,3978869.6400879949,41987061.63025103,9214853.654033246,10812094.954065679 + 08/19 21:00:00,0.0,38364616.48358103,1104.9663663250865,3977878.9187703116,38364616.48358103,9214853.654033246,10812094.954065679 + 08/19 22:00:00,0.0,0.0,1107.1167156024472,3985620.1761688098,0.0,6143235.769355498,3604031.6513552267 + 08/19 23:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,3604031.6513552267 + 08/19 24:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 08/20 01:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 08/20 02:00:00,0.0,0.0,278.21376541033347,1001569.5554772004,0.0,6143235.769355498,1802015.8256776133 + 08/20 03:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 08/20 04:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 08/20 05:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 08/20 06:00:00,0.0,0.0,279.24512450198247,1005282.4482071371,0.0,6143235.769355498,1802015.8256776133 + 08/20 07:00:00,0.0,105823102.36474598,279.0650206286418,1004634.0742631104,105823102.36474598,6143235.769355498,1802015.8256776133 + 08/20 08:00:00,0.0,156740665.05874069,557.7543856164687,2007915.788219287,156740665.05874069,9214853.654033246,10812094.954065679 + 08/20 09:00:00,0.0,172410746.0351435,2786.3159027383655,10030737.249858115,172410746.0351435,24572943.077421994,28832253.210841814 + 08/20 10:00:00,0.0,97990619.29262081,2788.771928082343,10039578.941096435,97990619.29262081,27644560.962099744,32436284.862197039 + 08/20 11:00:00,0.0,122248719.86264347,5005.881956787888,18021175.0444364,122248719.86264347,27644560.962099744,32436284.862197039 + 08/20 12:00:00,0.0,122201681.29050485,5010.732416305506,18038636.698699826,122201681.29050485,27644560.962099744,32436284.862197039 + 08/20 13:00:00,0.0,121539407.09370829,5005.881956787888,18021175.0444364,121539407.09370829,27644560.962099744,32436284.862197039 + 08/20 14:00:00,0.0,138090444.41198499,4995.542990199772,17983954.76471918,138090444.41198499,27644560.962099744,32436284.862197039 + 08/20 15:00:00,0.0,170169541.79405556,4991.170954736036,17968215.437049729,170169541.79405556,27644560.962099744,32436284.862197039 + 08/20 16:00:00,0.0,189432341.3154418,4991.170954736036,17968215.437049729,189432341.3154418,27644560.962099744,32436284.862197039 + 08/20 17:00:00,0.0,183882237.25962729,3888.7179613345349,13999384.660804326,183882237.25962729,27644560.962099744,32436284.862197039 + 08/20 18:00:00,0.0,161984106.57844866,2781.5939631403377,10013738.267305216,161984106.57844866,27644560.962099744,28832253.210841814 + 08/20 19:00:00,0.0,78797187.61337964,1672.3876224274794,6020595.440738926,78797187.61337964,15358089.423388744,18020158.25677613 + 08/20 20:00:00,0.0,6566426.999714421,1118.645653580394,4027124.3528894188,6566426.999714421,9214853.654033246,10812094.954065679 + 08/20 21:00:00,0.0,0.0,1119.8371787792774,4031413.843605398,0.0,9214853.654033246,10812094.954065679 + 08/20 22:00:00,0.0,0.0,1121.9507458104429,4039022.6849175945,0.0,6143235.769355498,3604031.6513552267 + 08/20 23:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,3604031.6513552267 + 08/20 24:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 08/21 01:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 08/21 02:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 08/21 03:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 08/21 04:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 08/21 05:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 08/21 06:00:00,0.0,0.0,281.2097206326424,1012354.9942775118,0.0,6143235.769355498,1802015.8256776133 + 08/21 07:00:00,27468323.94948665,45239833.331320699,281.0316545626797,28480037.905912304,45239833.331320699,6143235.769355498,1802015.8256776133 + 08/21 08:00:00,0.0,121212079.17481146,561.1321579744481,2020075.7687080133,121212079.17481146,9214853.654033246,10812094.954065679 + 08/21 09:00:00,0.0,169172847.9099907,2800.2885865697014,10081038.911650924,169172847.9099907,24572943.077421994,28832253.210841814 + 08/21 10:00:00,0.0,166503324.44653309,2798.142735315477,10073313.847135717,166503324.44653309,27644560.962099744,32436284.862197039 + 08/21 11:00:00,0.0,140576455.74662159,5031.0132795490339,18111647.80637652,140576455.74662159,27644560.962099744,32436284.862197039 + 08/21 12:00:00,0.0,118194775.59054412,5020.647701879785,18074331.726767228,118194775.59054412,27644560.962099744,32436284.862197039 + 08/21 13:00:00,0.0,127597807.35577357,5005.881956787888,18021175.0444364,127597807.35577357,27644560.962099744,32436284.862197039 + 08/21 14:00:00,0.0,174038896.61123214,5001.84810868483,18006653.191265387,174038896.61123214,27644560.962099744,32436284.862197039 + 08/21 15:00:00,0.0,222681590.7682379,4996.614963945856,17987813.870205083,222681590.7682379,27644560.962099744,32436284.862197039 + 08/21 16:00:00,0.0,250539126.81176348,4999.780236001546,17999208.849605565,250539126.81176348,27644560.962099744,32436284.862197039 + 08/21 17:00:00,0.0,256210327.6959358,3883.7351619962598,13981446.583186536,256210327.6959358,27644560.962099744,32436284.862197039 + 08/21 18:00:00,0.0,217817058.1633355,2782.1376541033348,10015695.554772005,217817058.1633355,27644560.962099744,28832253.210841814 + 08/21 19:00:00,0.0,101003619.5851006,1672.6823482966996,6021656.453868118,101003619.5851006,15358089.423388744,18020158.25677613 + 08/21 20:00:00,0.0,13233863.705606047,1119.6951021835528,4030902.36786079,13233863.705606047,9214853.654033246,10812094.954065679 + 08/21 21:00:00,0.0,3641369.7594747014,1119.2570941261905,4029325.5388542858,3641369.7594747014,9214853.654033246,10812094.954065679 + 08/21 22:00:00,0.0,0.0,1120.2516112108436,4032905.800359037,0.0,6143235.769355498,3604031.6513552267 + 08/21 23:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,3604031.6513552267 + 08/21 24:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 08/22 01:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 08/22 02:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 08/22 03:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 08/22 04:00:00,0.0,0.0,280.81519024093867,1010934.6848673791,0.0,6143235.769355498,1802015.8256776133 + 08/22 05:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 08/22 06:00:00,0.0,0.0,280.79503740884607,1010862.1346718455,0.0,6143235.769355498,1802015.8256776133 + 08/22 07:00:00,0.0,80302245.09888292,280.2874089599472,1009034.6722558098,80302245.09888292,6143235.769355498,1802015.8256776133 + 08/22 08:00:00,0.0,155210619.6028499,559.7755308091306,2015191.9109128703,155210619.6028499,9214853.654033246,10812094.954065679 + 08/22 09:00:00,0.0,204006590.208915,2792.889403372682,10054401.852141655,204006590.208915,24572943.077421994,28832253.210841814 + 08/22 10:00:00,0.0,209322183.7756474,2783.7402312808369,10021464.832611012,209322183.7756474,27644560.962099744,32436284.862197039 + 08/22 11:00:00,0.0,184342351.53642983,4999.780236001546,17999208.849605565,184342351.53642983,27644560.962099744,32436284.862197039 + 08/22 12:00:00,0.0,158167064.86678455,4976.039200249322,17913741.120897559,158167064.86678455,27644560.962099744,32436284.862197039 + 08/22 13:00:00,0.0,163533313.0764261,4966.0338521185099,17877721.867626635,163533313.0764261,27644560.962099744,32436284.862197039 + 08/22 14:00:00,0.0,202141810.9851097,4959.515526946041,17854255.897005749,202141810.9851097,27644560.962099744,32436284.862197039 + 08/22 15:00:00,0.0,247404857.88370437,4956.851557415865,17844665.606697114,247404857.88370437,27644560.962099744,32436284.862197039 + 08/22 16:00:00,0.0,272853397.40082487,4955.507486435761,17839826.951168743,272853397.40082487,27644560.962099744,32436284.862197039 + 08/22 17:00:00,0.0,273244569.6114113,3860.461779251677,13897662.405306038,273244569.6114113,27644560.962099744,32436284.862197039 + 08/22 18:00:00,0.0,232991994.10088618,2762.415915812716,9944697.296925778,232991994.10088618,27644560.962099744,28832253.210841814 + 08/22 19:00:00,0.0,111184877.45365225,1663.3523210627994,5988068.355826078,111184877.45365225,15358089.423388744,18020158.25677613 + 08/22 20:00:00,0.0,30309227.72421259,1112.4182126195308,4004705.565430311,30309227.72421259,9214853.654033246,10812094.954065679 + 08/22 21:00:00,0.0,16800766.36409252,1116.4430872695228,4019195.1141702819,16800766.36409252,9214853.654033246,10812094.954065679 + 08/22 22:00:00,0.0,0.0,1116.98049800793,4021129.7928285484,0.0,6143235.769355498,3604031.6513552267 + 08/22 23:00:00,0.0,0.0,279.3322712715218,1005596.1765774784,0.0,6143235.769355498,3604031.6513552267 + 08/22 24:00:00,0.0,0.0,279.95929469481936,1007853.4609013496,0.0,6143235.769355498,1802015.8256776133 + 08/23 01:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 08/23 02:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 08/23 03:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 08/23 04:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 08/23 05:00:00,0.0,0.0,280.3175057376663,1009143.0206555986,0.0,6143235.769355498,1802015.8256776133 + 08/23 06:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 08/23 07:00:00,5291929.87135812,0.0,279.8512646163746,6299394.423977067,0.0,6143235.769355498,1802015.8256776133 + 08/23 08:00:00,0.0,42030988.893844608,558.1300412572836,2009268.1485262209,42030988.893844608,9214853.654033246,10812094.954065679 + 08/23 09:00:00,0.0,114634984.14303456,2783.7402312808369,10021464.832611012,114634984.14303456,24572943.077421994,28832253.210841814 + 08/23 10:00:00,0.0,153441113.39945419,2778.804504824905,10003696.217369659,153441113.39945419,27644560.962099744,32436284.862197039 + 08/23 11:00:00,0.0,175093173.23103608,4990.056963188398,17964205.067478233,175093173.23103608,27644560.962099744,32436284.862197039 + 08/23 12:00:00,0.0,150792433.07382266,4994.462591998774,17980065.331195587,150792433.07382266,27644560.962099744,32436284.862197039 + 08/23 13:00:00,0.0,144860503.64549626,4997.678502951242,17991642.61062447,144860503.64549626,27644560.962099744,32436284.862197039 + 08/23 14:00:00,0.0,162692455.95324636,4992.276563779235,17972195.62960525,162692455.95324636,27644560.962099744,32436284.862197039 + 08/23 15:00:00,0.0,162769027.1828336,4987.803875415945,17956093.951497403,162769027.1828336,27644560.962099744,32436284.862197039 + 08/23 16:00:00,0.0,133285099.04974634,4994.462591998774,17980065.331195587,133285099.04974634,27644560.962099744,32436284.862197039 + 08/23 17:00:00,0.0,110867343.96499175,3897.970871224161,14032695.136406979,110867343.96499175,27644560.962099744,32436284.862197039 + 08/23 18:00:00,0.0,81846125.61929727,2794.1747677851619,10059029.164026583,81846125.61929727,27644560.962099744,28832253.210841814 + 08/23 19:00:00,0.0,21548826.568820344,1678.4329313785893,6042358.552962922,21548826.568820344,15358089.423388744,18020158.25677613 + 08/23 20:00:00,0.0,0.0,1119.8371787792774,4031413.843605398,0.0,9214853.654033246,10812094.954065679 + 08/23 21:00:00,18955571.627131545,0.0,1121.3884309803228,22992569.978660704,0.0,9214853.654033246,10812094.954065679 + 08/23 22:00:00,0.0,0.0,1122.1617798728926,4039782.407542413,0.0,6143235.769355498,3604031.6513552267 + 08/23 23:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,3604031.6513552267 + 08/23 24:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 08/24 01:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 08/24 02:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 08/24 03:00:00,0.0,0.0,280.81519024093867,1010934.6848673791,0.0,6143235.769355498,1802015.8256776133 + 08/24 04:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 08/24 05:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 08/24 06:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 08/24 07:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 08/24 08:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 08/24 09:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 08/24 10:00:00,0.0,0.0,281.1029886517513,1011970.7591463046,0.0,6143235.769355498,1802015.8256776133 + 08/24 11:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 08/24 12:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 08/24 13:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 08/24 14:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 08/24 15:00:00,0.0,0.0,279.8877654045653,1007595.955456435,0.0,6143235.769355498,1802015.8256776133 + 08/24 16:00:00,0.0,0.0,279.70036207011438,1006921.3034524117,0.0,6143235.769355498,1802015.8256776133 + 08/24 17:00:00,0.0,0.0,279.9237755458882,1007725.5919651976,0.0,6143235.769355498,1802015.8256776133 + 08/24 18:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 08/24 19:00:00,0.0,0.0,280.460562462227,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 08/24 20:00:00,0.0,0.0,281.19908293411859,1012316.6985628267,0.0,6143235.769355498,1802015.8256776133 + 08/24 21:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 08/24 22:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 08/24 23:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 08/24 24:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 08/25 01:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 08/25 02:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 08/25 03:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 08/25 04:00:00,0.0,0.0,281.19655967164507,1012307.6148179221,0.0,6143235.769355498,1802015.8256776133 + 08/25 05:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 08/25 06:00:00,0.0,0.0,281.16528383807369,1012195.0218170651,0.0,6143235.769355498,1802015.8256776133 + 08/25 07:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 08/25 08:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 08/25 09:00:00,0.0,0.0,280.7094345629546,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 08/25 10:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,1802015.8256776133 + 08/25 11:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 08/25 12:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 08/25 13:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 08/25 14:00:00,0.0,0.0,278.73127040457976,1003432.5734564872,0.0,6143235.769355498,1802015.8256776133 + 08/25 15:00:00,0.0,0.0,279.01878668742116,1004467.632074716,0.0,6143235.769355498,1802015.8256776133 + 08/25 16:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 08/25 17:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 08/25 18:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 08/25 19:00:00,0.0,0.0,279.9237755458882,1007725.5919651976,0.0,6143235.769355498,1802015.8256776133 + 08/25 20:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 08/25 21:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 08/25 22:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 08/25 23:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 08/25 24:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 08/26 01:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 08/26 02:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 08/26 03:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 08/26 04:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 08/26 05:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 08/26 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 08/26 07:00:00,40836317.54928312,0.0,280.8539970795126,41847391.93876937,0.0,6143235.769355498,1802015.8256776133 + 08/26 08:00:00,0.0,21971021.59912253,560.8096526351982,2018914.7494867135,21971021.59912253,9214853.654033246,10812094.954065679 + 08/26 09:00:00,0.0,88264226.78677416,2800.964546211085,10083472.366359905,88264226.78677416,24572943.077421994,28832253.210841814 + 08/26 10:00:00,0.0,76343287.29512204,2804.0482631759907,10094573.747433566,76343287.29512204,27644560.962099744,32436284.862197039 + 08/26 11:00:00,0.0,66335353.13969205,5035.298794135768,18127075.658888766,66335353.13969205,27644560.962099744,32436284.862197039 + 08/26 12:00:00,0.0,69512870.67450977,5028.752104001549,18103507.574405578,69512870.67450977,27644560.962099744,32436284.862197039 + 08/26 13:00:00,0.0,83110185.51097298,5023.993892712852,18086378.01376627,83110185.51097298,27644560.962099744,32436284.862197039 + 08/26 14:00:00,0.0,92036523.2863954,5012.612673294531,18045405.623860316,92036523.2863954,27644560.962099744,32436284.862197039 + 08/26 15:00:00,0.0,117958865.03418124,4995.542990199772,17983954.76471918,117958865.03418124,27644560.962099744,32436284.862197039 + 08/26 16:00:00,0.0,163286393.4589042,4998.733597011079,17995440.949239885,163286393.4589042,27644560.962099744,32436284.862197039 + 08/26 17:00:00,0.0,161399231.72542802,3891.908254604863,14010869.716577508,161399231.72542802,27644560.962099744,32436284.862197039 + 08/26 18:00:00,0.0,106886643.86580485,2789.248723266547,10041295.403759569,106886643.86580485,27644560.962099744,28832253.210841814 + 08/26 19:00:00,0.0,21424124.7701869,1682.257288188923,6056126.237480123,21424124.7701869,15358089.423388744,18020158.25677613 + 08/26 20:00:00,0.0,0.0,1121.2700229506652,4036572.0826223946,0.0,9214853.654033246,10812094.954065679 + 08/26 21:00:00,15797617.344792188,0.0,1123.8336560688118,19843418.50663991,0.0,9214853.654033246,10812094.954065679 + 08/26 22:00:00,0.0,0.0,1124.015449068753,4046455.616647511,0.0,6143235.769355498,3604031.6513552267 + 08/26 23:00:00,0.0,0.0,281.20878538679679,1012351.6273924683,0.0,6143235.769355498,3604031.6513552267 + 08/26 24:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,1802015.8256776133 + 08/27 01:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 08/27 02:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 08/27 03:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 08/27 04:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 08/27 05:00:00,0.0,0.0,281.12539049950677,1012051.4057982243,0.0,6143235.769355498,1802015.8256776133 + 08/27 06:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 08/27 07:00:00,65037010.82693024,6046697.392602358,281.1633560366783,66049198.908662278,6046697.392602358,6143235.769355498,1802015.8256776133 + 08/27 08:00:00,0.0,91033966.2205855,561.9168280344059,2022900.5809238612,91033966.2205855,9214853.654033246,10812094.954065679 + 08/27 09:00:00,0.0,151171023.21055389,2808.1519024093865,10109346.84867379,151171023.21055389,24572943.077421994,28832253.210841814 + 08/27 10:00:00,0.0,159405013.56218494,2806.3999715176657,10103039.897463596,159405013.56218494,27644560.962099744,32436284.862197039 + 08/27 11:00:00,0.0,140914586.52978374,5044.063180562568,18158627.450025247,140914586.52978374,27644560.962099744,32436284.862197039 + 08/27 12:00:00,0.0,103493305.98984476,5036.656923567859,18131964.92484429,103493305.98984476,27644560.962099744,32436284.862197039 + 08/27 13:00:00,0.0,108532646.43223819,5025.614835349538,18092213.40725834,108532646.43223819,27644560.962099744,32436284.862197039 + 08/27 14:00:00,0.0,152865876.7833134,5023.993892712852,18086378.01376627,152865876.7833134,27644560.962099744,32436284.862197039 + 08/27 15:00:00,0.0,208450679.68919534,5022.338160373581,18080417.37734489,208450679.68919534,27644560.962099744,32436284.862197039 + 08/27 16:00:00,0.0,209802488.16942645,5023.993892712852,18086378.01376627,209802488.16942645,27644560.962099744,32436284.862197039 + 08/27 17:00:00,0.0,189000106.67813695,3911.844674899226,14082640.829637213,189000106.67813695,27644560.962099744,32436284.862197039 + 08/27 18:00:00,0.0,130048936.9949919,2801.620799928583,10085834.879742898,130048936.9949919,27644560.962099744,28832253.210841814 + 08/27 19:00:00,0.0,34892619.06587441,1680.5787277266514,6050083.4198159449,34892619.06587441,15358089.423388744,18020158.25677613 + 08/27 20:00:00,0.0,0.0,1123.7690502481785,4045568.5808934427,0.0,9214853.654033246,10812094.954065679 + 08/27 21:00:00,862826.7912119684,0.0,1123.896258209699,4908853.320766885,0.0,9214853.654033246,10812094.954065679 + 08/27 22:00:00,0.0,0.0,1123.490602854541,4044566.170276348,0.0,6143235.769355498,3604031.6513552267 + 08/27 23:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,3604031.6513552267 + 08/27 24:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 08/28 01:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 08/28 02:00:00,0.0,0.0,281.04479834185136,1011761.2740306648,0.0,6143235.769355498,1802015.8256776133 + 08/28 03:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 08/28 04:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 08/28 05:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 08/28 06:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 08/28 07:00:00,47886006.42640662,0.0,280.9084575166284,48897276.87346649,0.0,6143235.769355498,1802015.8256776133 + 08/28 08:00:00,0.0,0.0,561.6303804818772,2021869.3697347583,0.0,9214853.654033246,10812094.954065679 + 08/28 09:00:00,0.0,0.0,2809.5841401720288,10114502.904619303,0.0,24572943.077421994,28832253.210841814 + 08/28 10:00:00,0.0,0.0,2809.7406455242478,10115066.323887293,0.0,27644560.962099744,32436284.862197039 + 08/28 11:00:00,0.0,1412102.3366777676,5057.251452309652,18206105.22831475,1412102.3366777676,27644560.962099744,32436284.862197039 + 08/28 12:00:00,0.0,2419645.717055225,5057.251452309652,18206105.22831475,2419645.717055225,27644560.962099744,32436284.862197039 + 08/28 13:00:00,0.0,0.0,5054.673424336896,18196824.327612826,0.0,27644560.962099744,32436284.862197039 + 08/28 14:00:00,0.0,3062659.568272764,5046.771864566769,18168378.712440369,3062659.568272764,27644560.962099744,32436284.862197039 + 08/28 15:00:00,0.0,10293081.351366293,5042.91743987145,18154502.78353722,10293081.351366293,27644560.962099744,32436284.862197039 + 08/28 16:00:00,0.0,18655382.139643257,5038.627959825987,18139060.655373556,18655382.139643257,27644560.962099744,32436284.862197039 + 08/28 17:00:00,0.0,21622244.19951549,3914.1487139795069,14090935.370326225,21622244.19951549,27644560.962099744,32436284.862197039 + 08/28 18:00:00,0.0,21898786.962152736,2793.3227127152179,10055961.765774783,21898786.962152736,27644560.962099744,28832253.210841814 + 08/28 19:00:00,0.0,0.0,1676.756103202168,6036321.971527806,0.0,15358089.423388744,18020158.25677613 + 08/28 20:00:00,133092.9921161674,0.0,1117.1557613490732,4154853.732972831,0.0,9214853.654033246,10812094.954065679 + 08/28 21:00:00,1349697.8337007059,0.0,1112.4182126195308,5354403.399131017,0.0,9214853.654033246,10812094.954065679 + 08/28 22:00:00,0.0,0.0,1112.4182126195308,4004705.565430311,0.0,6143235.769355498,3604031.6513552267 + 08/28 23:00:00,0.0,0.0,278.1593963140338,1001373.8267305218,0.0,6143235.769355498,3604031.6513552267 + 08/28 24:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 08/29 01:00:00,0.0,0.0,278.92487232665476,1004129.540375957,0.0,6143235.769355498,1802015.8256776133 + 08/29 02:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 08/29 03:00:00,0.0,0.0,277.707422056171,999746.7194022157,0.0,6143235.769355498,1802015.8256776133 + 08/29 04:00:00,0.0,0.0,277.8804504824905,1000369.6217369658,0.0,6143235.769355498,1802015.8256776133 + 08/29 05:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 08/29 06:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 08/29 07:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 08/29 08:00:00,0.0,11235515.52727207,558.0375733748423,2008935.2641494324,11235515.52727207,9214853.654033246,10812094.954065679 + 08/29 09:00:00,0.0,71065751.50375635,2791.107718173807,10047987.785425704,71065751.50375635,24572943.077421994,28832253.210841814 + 08/29 10:00:00,0.0,66558951.803265217,2791.107718173807,10047987.785425704,66558951.803265217,27644560.962099744,32436284.862197039 + 08/29 11:00:00,0.0,98312109.84861163,5027.200926070828,18097923.33385498,98312109.84861163,27644560.962099744,32436284.862197039 + 08/29 12:00:00,0.0,94678314.28341265,5033.195572411864,18119504.06068271,94678314.28341265,27644560.962099744,32436284.862197039 + 08/29 13:00:00,0.0,78187857.86249455,5027.980882887392,18100731.178394613,78187857.86249455,27644560.962099744,32436284.862197039 + 08/29 14:00:00,0.0,104105866.71576217,5019.789470548218,18071242.093973586,104105866.71576217,27644560.962099744,32436284.862197039 + 08/29 15:00:00,0.0,171609278.35254956,5005.881956787888,18021175.0444364,171609278.35254956,27644560.962099744,32436284.862197039 + 08/29 16:00:00,0.0,208176546.33272819,5002.869322536032,18010329.561129717,208176546.33272819,27644560.962099744,32436284.862197039 + 08/29 17:00:00,0.0,191309615.74420146,3893.4637441683569,14016469.479006084,191309615.74420146,27644560.962099744,32436284.862197039 + 08/29 18:00:00,0.0,84473692.5051805,2783.7402312808369,10021464.832611012,84473692.5051805,27644560.962099744,28832253.210841814 + 08/29 19:00:00,0.0,27260272.97387165,1672.3876224274794,6020595.440738926,27260272.97387165,15358089.423388744,18020158.25677613 + 08/29 20:00:00,0.0,501039.74902241697,1120.1154346278807,4032415.5646603705,501039.74902241697,9214853.654033246,10812094.954065679 + 08/29 21:00:00,368157.96202808266,0.0,1119.9772900421843,4400076.206179946,0.0,9214853.654033246,10812094.954065679 + 08/29 22:00:00,0.0,0.0,1119.6951021835528,4030902.3678607905,0.0,6143235.769355498,3604031.6513552267 + 08/29 23:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,3604031.6513552267 + 08/29 24:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 08/30 01:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 08/30 02:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 08/30 03:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 08/30 04:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 08/30 05:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 08/30 06:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 08/30 07:00:00,34092013.51123591,0.0,280.66364112106228,35102402.61927174,0.0,6143235.769355498,1802015.8256776133 + 08/30 08:00:00,0.0,33441399.654074264,560.8096526351982,2018914.7494867135,33441399.654074264,9214853.654033246,10812094.954065679 + 08/30 09:00:00,0.0,86956174.62254049,2799.592946948193,10078534.609013495,86956174.62254049,24572943.077421994,28832253.210841814 + 08/30 10:00:00,0.0,107954707.71673925,2796.2197624510356,10066391.144823729,107954707.71673925,27644560.962099744,32436284.862197039 + 08/30 11:00:00,0.0,122039080.24217706,5022.338160373581,18080417.37734489,122039080.24217706,27644560.962099744,32436284.862197039 + 08/30 12:00:00,0.0,102284965.87766421,5005.881956787888,18021175.0444364,102284965.87766421,27644560.962099744,32436284.862197039 + 08/30 13:00:00,0.0,117043333.40291552,4985.517386936821,17947862.592972556,117043333.40291552,27644560.962099744,32436284.862197039 + 08/30 14:00:00,0.0,180530741.32358385,4978.458401217704,17922450.244383735,180530741.32358385,27644560.962099744,32436284.862197039 + 08/30 15:00:00,0.0,214663208.78521735,4969.847251427131,17891450.105137674,214663208.78521735,27644560.962099744,32436284.862197039 + 08/30 16:00:00,0.0,219100990.71155957,4978.458401217704,17922450.244383735,219100990.71155957,27644560.962099744,32436284.862197039 + 08/30 17:00:00,0.0,189698118.51704616,3882.8817718282937,13978374.378581858,189698118.51704616,27644560.962099744,32436284.862197039 + 08/30 18:00:00,0.0,130048888.14071447,2779.9344675749027,10007764.08326965,130048888.14071447,27644560.962099744,28832253.210841814 + 08/30 19:00:00,0.0,40592842.40935562,1669.2825924620009,6009417.332863203,40592842.40935562,15358089.423388744,18020158.25677613 + 08/30 20:00:00,0.0,12310951.77634229,1113.9139273987849,4010090.1386356258,12310951.77634229,9214853.654033246,10812094.954065679 + 08/30 21:00:00,0.0,5027124.242160624,1115.699489306619,4016518.161503828,5027124.242160624,9214853.654033246,10812094.954065679 + 08/30 22:00:00,0.0,0.0,1119.4050584654984,4029858.210475794,0.0,6143235.769355498,3604031.6513552267 + 08/30 23:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,3604031.6513552267 + 08/30 24:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 08/31 01:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 08/31 02:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 08/31 03:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 08/31 04:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 08/31 05:00:00,0.0,0.0,280.81519024093867,1010934.6848673791,0.0,6143235.769355498,1802015.8256776133 + 08/31 06:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 08/31 07:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 08/31 08:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 08/31 09:00:00,0.0,0.0,280.3175057376663,1009143.0206555987,0.0,6143235.769355498,1802015.8256776133 + 08/31 10:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 08/31 11:00:00,0.0,0.0,279.9237755458882,1007725.5919651975,0.0,6143235.769355498,1802015.8256776133 + 08/31 12:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 08/31 13:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 08/31 14:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,1802015.8256776133 + 08/31 15:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 08/31 16:00:00,0.0,0.0,278.78039138278327,1003609.4089780196,0.0,6143235.769355498,1802015.8256776133 + 08/31 17:00:00,0.0,0.0,279.01878668742116,1004467.6320747162,0.0,6143235.769355498,1802015.8256776133 + 08/31 18:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 08/31 19:00:00,0.0,0.0,280.3762146981538,1009354.3729133537,0.0,6143235.769355498,1802015.8256776133 + 08/31 20:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 08/31 21:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 08/31 22:00:00,0.0,0.0,280.7532338858979,1010711.6419892324,0.0,6143235.769355498,1802015.8256776133 + 08/31 23:00:00,0.0,0.0,280.81519024093867,1010934.6848673791,0.0,6143235.769355498,1802015.8256776133 + 08/31 24:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 09/01 01:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 09/01 02:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 09/01 03:00:00,0.0,0.0,280.7532338858979,1010711.6419892324,0.0,6143235.769355498,1802015.8256776133 + 09/01 04:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 09/01 05:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 09/01 06:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 09/01 07:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 09/01 08:00:00,0.0,0.0,280.3471077450806,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 09/01 09:00:00,0.0,0.0,279.5007377527241,1006202.6559098067,0.0,6143235.769355498,1802015.8256776133 + 09/01 10:00:00,0.0,0.0,278.3740231280836,1002146.483261101,0.0,6143235.769355498,1802015.8256776133 + 09/01 11:00:00,0.0,0.0,277.3486979877353,998455.3127558471,0.0,6143235.769355498,1802015.8256776133 + 09/01 12:00:00,0.0,0.0,276.5810222898724,995691.6802435407,0.0,6143235.769355498,1802015.8256776133 + 09/01 13:00:00,0.0,0.0,275.52864038589117,991903.1053892082,0.0,6143235.769355498,1802015.8256776133 + 09/01 14:00:00,0.0,0.0,275.1552909182459,990559.0473056852,0.0,6143235.769355498,1802015.8256776133 + 09/01 15:00:00,0.0,0.0,274.9259326422515,989733.3575121053,0.0,6143235.769355498,1802015.8256776133 + 09/01 16:00:00,0.0,0.0,274.3752920074926,987751.0512269733,0.0,6143235.769355498,1802015.8256776133 + 09/01 17:00:00,0.0,0.0,275.00282942045996,990010.1859136558,0.0,6143235.769355498,1802015.8256776133 + 09/01 18:00:00,0.0,0.0,276.2415915812716,994469.7296925779,0.0,6143235.769355498,1802015.8256776133 + 09/01 19:00:00,0.0,0.0,277.64880571951326,999535.7005902481,0.0,6143235.769355498,1802015.8256776133 + 09/01 20:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 09/01 21:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 09/01 22:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 09/01 23:00:00,0.0,0.0,279.2889403372683,1005440.1852141658,0.0,6143235.769355498,1802015.8256776133 + 09/01 24:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,1802015.8256776133 + 09/02 01:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 09/02 02:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 09/02 03:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 09/02 04:00:00,0.0,0.0,279.62197624510358,1006639.1144823728,0.0,6143235.769355498,1802015.8256776133 + 09/02 05:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 09/02 06:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 09/02 07:00:00,0.0,55094100.481263238,278.92487232665476,1004129.540375957,55094100.481263238,6143235.769355498,1802015.8256776133 + 09/02 08:00:00,0.0,189353183.0170716,556.3187926280676,2002747.6534610436,189353183.0170716,9214853.654033246,10812094.954065679 + 09/02 09:00:00,0.0,215437550.27951569,2775.8972021921424,9993229.927891713,215437550.27951569,24572943.077421994,28832253.210841814 + 09/02 10:00:00,0.0,212877356.91384716,2765.8102228987238,9956916.802435406,212877356.91384716,27644560.962099744,32436284.862197039 + 09/02 11:00:00,0.0,193424756.14762105,4979.655616697521,17926760.220111077,193424756.14762105,27644560.962099744,32436284.862197039 + 09/02 12:00:00,0.0,160620860.17676813,4963.450859037871,17868423.092536335,160620860.17676813,27644560.962099744,32436284.862197039 + 09/02 13:00:00,0.0,159927790.2369358,4968.584280039837,17886903.408143414,159927790.2369358,27644560.962099744,32436284.862197039 + 09/02 14:00:00,0.0,159613105.05050657,4976.039200249322,17913741.120897559,159613105.05050657,27644560.962099744,32436284.862197039 + 09/02 15:00:00,0.0,130110517.38540323,4987.803875415945,17956093.951497403,130110517.38540323,27644560.962099744,32436284.862197039 + 09/02 16:00:00,0.0,104149739.10728455,5003.882041634825,18013975.34988537,104149739.10728455,27644560.962099744,32436284.862197039 + 09/02 17:00:00,0.0,83261358.71253397,3887.9039087863936,13996454.071631017,83261358.71253397,27644560.962099744,32436284.862197039 + 09/02 18:00:00,0.0,83884275.89000733,2777.07422056171,9997467.194022155,83884275.89000733,27644560.962099744,28832253.210841814 + 09/02 19:00:00,0.0,31051304.050791325,1665.8928343170806,5997214.20354149,31051304.050791325,15358089.423388744,18020158.25677613 + 09/02 20:00:00,0.0,6233262.481125346,1110.829688224684,3998986.8776088629,6233262.481125346,9214853.654033246,10812094.954065679 + 09/02 21:00:00,0.0,341636.4506562693,1112.4182126195308,4004705.565430311,341636.4506562693,9214853.654033246,10812094.954065679 + 09/02 22:00:00,0.0,0.0,1111.0622746670102,3999824.1888012366,0.0,6143235.769355498,3604031.6513552267 + 09/02 23:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,3604031.6513552267 + 09/02 24:00:00,0.0,0.0,278.4264908017258,1002335.3668862128,0.0,6143235.769355498,1802015.8256776133 + 09/03 01:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 09/03 02:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 09/03 03:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 09/03 04:00:00,0.0,0.0,278.92487232665476,1004129.540375957,0.0,6143235.769355498,1802015.8256776133 + 09/03 05:00:00,0.0,0.0,278.78039138278327,1003609.4089780197,0.0,6143235.769355498,1802015.8256776133 + 09/03 06:00:00,0.0,0.0,278.58103207774567,1002891.7154798843,0.0,6143235.769355498,1802015.8256776133 + 09/03 07:00:00,0.0,19069252.088273527,278.3740231280836,1002146.483261101,19069252.088273527,6143235.769355498,1802015.8256776133 + 09/03 08:00:00,0.0,27695414.393682559,556.3187926280676,2002747.6534610436,27695414.393682559,9214853.654033246,10812094.954065679 + 09/03 09:00:00,0.0,114131200.37031627,2779.371845853351,10005738.645072064,114131200.37031627,24572943.077421994,28832253.210841814 + 09/03 10:00:00,0.0,145885733.19877858,2771.6303332362638,9977869.199650549,145885733.19877858,27644560.962099744,32436284.862197039 + 09/03 11:00:00,0.0,182657258.11499543,4984.361644806299,17943701.921302678,182657258.11499543,27644560.962099744,32436284.862197039 + 09/03 12:00:00,0.0,137025890.09917099,4980.844560164666,17931040.4165928,137025890.09917099,27644560.962099744,32436284.862197039 + 09/03 13:00:00,0.0,153613012.65207089,4968.584280039837,17886903.408143414,153613012.65207089,27644560.962099744,32436284.862197039 + 09/03 14:00:00,0.0,191177874.82176946,4983.197585507909,17939511.30782847,191177874.82176946,27644560.962099744,32436284.862197039 + 09/03 15:00:00,0.0,227545412.44699864,4995.542990199772,17983954.76471918,227545412.44699864,27644560.962099744,32436284.862197039 + 09/03 16:00:00,0.0,246353556.61983369,5001.84810868483,18006653.191265387,246353556.61983369,27644560.962099744,32436284.862197039 + 09/03 17:00:00,0.0,230413793.39970166,3901.5433782680445,14045556.161764959,230413793.39970166,27644560.962099744,32436284.862197039 + 09/03 18:00:00,0.0,165494198.73170118,2794.5935053369469,10060536.619213008,165494198.73170118,27644560.962099744,28832253.210841814 + 09/03 19:00:00,0.0,26039580.546514609,1679.755768168916,6047120.765408097,26039580.546514609,15358089.423388744,18020158.25677613 + 09/03 20:00:00,0.0,0.0,1121.7317693155313,4038234.3695359125,0.0,9214853.654033246,10812094.954065679 + 09/03 21:00:00,3149408.1885202846,0.0,1123.3393741094126,7193429.935314169,0.0,9214853.654033246,10812094.954065679 + 09/03 22:00:00,0.0,0.0,1123.5632170029442,4044827.581210599,0.0,6143235.769355498,3604031.6513552267 + 09/03 23:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,3604031.6513552267 + 09/03 24:00:00,0.0,0.0,281.17607900888529,1012233.884431987,0.0,6143235.769355498,1802015.8256776133 + 09/04 01:00:00,0.0,0.0,281.1913907812245,1012289.0068124083,0.0,6143235.769355498,1802015.8256776133 + 09/04 02:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 09/04 03:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 09/04 04:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 09/04 05:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 09/04 06:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 09/04 07:00:00,63667899.54414136,0.0,281.1633560366783,64680087.625873398,0.0,6143235.769355498,1802015.8256776133 + 09/04 08:00:00,0.0,18115730.519807064,562.2059773035026,2023941.5182926092,18115730.519807064,9214853.654033246,10812094.954065679 + 09/04 09:00:00,0.0,100225467.57775992,2808.539970795126,10110743.894862455,100225467.57775992,24572943.077421994,28832253.210841814 + 09/04 10:00:00,0.0,130526558.50820315,2806.1585531780226,10102170.79144088,130526558.50820315,27644560.962099744,32436284.862197039 + 09/04 11:00:00,0.0,118800996.3203468,5045.17336127905,18162624.100604584,118800996.3203468,27644560.962099744,32436284.862197039 + 09/04 12:00:00,0.0,98579863.5893911,5041.7361831799539,18150250.25944783,98579863.5893911,27644560.962099744,32436284.862197039 + 09/04 13:00:00,0.0,110768457.81405232,5035.982265090377,18129536.15432536,110768457.81405232,27644560.962099744,32436284.862197039 + 09/04 14:00:00,0.0,156610578.48704187,5034.606517262058,18124583.46214341,156610578.48704187,27644560.962099744,32436284.862197039 + 09/04 15:00:00,0.0,210632365.27000378,5023.170371315552,18083413.336735988,210632365.27000378,27644560.962099744,32436284.862197039 + 09/04 16:00:00,0.0,238363168.39899714,5021.497267872152,18077390.164339749,238363168.39899714,27644560.962099744,32436284.862197039 + 09/04 17:00:00,0.0,235904845.59881149,3902.925479358965,14050531.725692274,235904845.59881149,27644560.962099744,32436284.862197039 + 09/04 18:00:00,0.0,175746881.13108457,2795.820509985362,10064953.835947304,175746881.13108457,27644560.962099744,28832253.210841814 + 09/04 19:00:00,0.0,34762293.15897632,1680.3774168162655,6049358.700538555,34762293.15897632,15358089.423388744,18020158.25677613 + 09/04 20:00:00,0.0,823353.1222385889,1121.5048587926154,4037417.4916534156,823353.1222385889,9214853.654033246,10812094.954065679 + 09/04 21:00:00,0.0,0.0,1123.1801496353838,4043448.5386873816,0.0,9214853.654033246,10812094.954065679 + 09/04 22:00:00,0.0,0.0,1122.0572561591003,4039406.122172761,0.0,6143235.769355498,3604031.6513552267 + 09/04 23:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,3604031.6513552267 + 09/04 24:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 09/05 01:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 09/05 02:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 09/05 03:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 09/05 04:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 09/05 05:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 09/05 06:00:00,0.0,0.0,281.2100811263814,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 09/05 07:00:00,46158405.14325371,54286454.44561513,280.54044496822316,47168350.74513932,54286454.44561513,6143235.769355498,1802015.8256776133 + 09/05 08:00:00,0.0,146577630.40775318,560.1258056054218,2016452.9001795185,146577630.40775318,9214853.654033246,10812094.954065679 + 09/05 09:00:00,0.0,202428724.019895,2797.388218964315,10070597.588271535,202428724.019895,24572943.077421994,28832253.210841814 + 09/05 10:00:00,0.0,209887015.35697658,2787.3127040457986,10034325.734564875,209887015.35697658,27644560.962099744,32436284.862197039 + 09/05 11:00:00,0.0,186503388.27084349,4999.780236001546,17999208.849605565,186503388.27084349,27644560.962099744,32436284.862197039 + 09/05 12:00:00,0.0,159831757.81166978,4988.934599825275,17960164.55937099,159831757.81166978,27644560.962099744,32436284.862197039 + 09/05 13:00:00,0.0,170842115.9953388,4984.361644806299,17943701.921302678,170842115.9953388,27644560.962099744,32436284.862197039 + 09/05 14:00:00,0.0,219745077.80340616,4967.313142871366,17882327.31433692,219745077.80340616,27644560.962099744,32436284.862197039 + 09/05 15:00:00,0.0,267649901.53399057,4956.851557415865,17844665.606697114,267649901.53399057,27644560.962099744,32436284.862197039 + 09/05 16:00:00,0.0,288666195.3275786,4958.187575192403,17849475.27069265,288666195.3275786,27644560.962099744,32436284.862197039 + 09/05 17:00:00,0.0,278470997.0348079,3861.4694378215629,13901289.976157627,278470997.0348079,27644560.962099744,32436284.862197039 + 09/05 18:00:00,0.0,212983095.57428036,2769.089802670166,9968723.289612599,212983095.57428036,27644560.962099744,28832253.210841814 + 09/05 19:00:00,0.0,69990057.92948486,1668.2954187546616,6005863.507516782,69990057.92948486,15358089.423388744,18020158.25677613 + 09/05 20:00:00,0.0,36951291.9113778,1112.196945836441,4003909.005011188,36951291.9113778,9214853.654033246,10812094.954065679 + 09/05 21:00:00,0.0,33828157.528778899,1111.9737870299612,4003105.6333078604,33828157.528778899,9214853.654033246,10812094.954065679 + 09/05 22:00:00,0.0,0.0,1116.260082514567,4018536.2970524418,0.0,6143235.769355498,3604031.6513552267 + 09/05 23:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,3604031.6513552267 + 09/05 24:00:00,0.0,0.0,278.8771928082343,1003957.8941096435,0.0,6143235.769355498,1802015.8256776133 + 09/06 01:00:00,0.0,0.0,278.9720704373418,1004299.4535744306,0.0,6143235.769355498,1802015.8256776133 + 09/06 02:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 09/06 03:00:00,0.0,0.0,278.68166987628896,1003254.0115546401,0.0,6143235.769355498,1802015.8256776133 + 09/06 04:00:00,0.0,0.0,278.73127040457976,1003432.573456487,0.0,6143235.769355498,1802015.8256776133 + 09/06 05:00:00,0.0,0.0,278.26765992210036,1001763.5757195612,0.0,6143235.769355498,1802015.8256776133 + 09/06 06:00:00,0.0,0.0,278.32107933220677,1001955.8855959443,0.0,6143235.769355498,1802015.8256776133 + 09/06 07:00:00,0.0,0.0,278.04923645911028,1000977.251252797,0.0,6143235.769355498,1802015.8256776133 + 09/06 08:00:00,0.0,24488983.364895826,556.0984729182205,2001954.502505594,24488983.364895826,9214853.654033246,10812094.954065679 + 09/06 09:00:00,0.0,98856997.6117294,2780.4923645911028,10009772.512527969,98856997.6117294,24572943.077421994,28832253.210841814 + 09/06 10:00:00,0.0,85973050.45288719,2784.7848184969618,10025225.346589063,85973050.45288719,27644560.962099744,32436284.862197039 + 09/06 11:00:00,0.0,93753505.00711632,5018.047044890099,18064969.361604357,93753505.00711632,27644560.962099744,32436284.862197039 + 09/06 12:00:00,0.0,93388255.20169035,5018.047044890099,18064969.361604357,93388255.20169035,27644560.962099744,32436284.862197039 + 09/06 13:00:00,0.0,80510459.03700379,5028.752104001549,18103507.574405578,80510459.03700379,27644560.962099744,32436284.862197039 + 09/06 14:00:00,0.0,43677434.63883455,5029.514582013292,18106252.495247853,43677434.63883455,27644560.962099744,32436284.862197039 + 09/06 15:00:00,0.0,38764606.79784005,5031.0132795490339,18111647.80637652,38764606.79784005,27644560.962099744,32436284.862197039 + 09/06 16:00:00,0.0,38343124.57908605,5032.476917973653,18116916.904705153,38343124.57908605,27644560.962099744,32436284.862197039 + 09/06 17:00:00,0.0,47098823.89576609,3911.844674899226,14082640.829637213,47098823.89576609,27644560.962099744,32436284.862197039 + 09/06 18:00:00,0.0,30069058.413498157,2793.7511688897495,10057504.208003099,30069058.413498157,27644560.962099744,28832253.210841814 + 09/06 19:00:00,0.0,0.0,1677.4923059912176,6038972.301568383,0.0,15358089.423388744,18020158.25677613 + 09/06 20:00:00,2359455.503103073,0.0,1119.1071700200837,6388241.315175375,0.0,9214853.654033246,10812094.954065679 + 09/06 21:00:00,7634009.3197014289,0.0,1117.837402134779,11658223.967386635,0.0,9214853.654033246,10812094.954065679 + 09/06 22:00:00,0.0,0.0,1118.0029510108964,4024810.623639227,0.0,6143235.769355498,3604031.6513552267 + 09/06 23:00:00,0.0,0.0,279.5416380384865,1006349.8969385513,0.0,6143235.769355498,3604031.6513552267 + 09/06 24:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 09/07 01:00:00,0.0,0.0,279.8142735315476,1007331.3847135714,0.0,6143235.769355498,1802015.8256776133 + 09/07 02:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 09/07 03:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 09/07 04:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 09/07 05:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 09/07 06:00:00,0.0,0.0,281.2000113426414,1012320.0408335091,0.0,6143235.769355498,1802015.8256776133 + 09/07 07:00:00,0.0,0.0,281.10298865175147,1011970.7591463046,0.0,6143235.769355498,1802015.8256776133 + 09/07 08:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 09/07 09:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 09/07 10:00:00,0.0,0.0,280.56607898722407,1010037.8843540066,0.0,6143235.769355498,1802015.8256776133 + 09/07 11:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 09/07 12:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 09/07 13:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 09/07 14:00:00,0.0,0.0,279.58205099853628,1006495.3835947305,0.0,6143235.769355498,1802015.8256776133 + 09/07 15:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 09/07 16:00:00,0.0,0.0,279.95929469481936,1007853.4609013496,0.0,6143235.769355498,1802015.8256776133 + 09/07 17:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 09/07 18:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 09/07 19:00:00,0.0,0.0,280.7094345629547,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 09/07 20:00:00,0.0,0.0,280.9084575166284,1011270.4470598623,0.0,6143235.769355498,1802015.8256776133 + 09/07 21:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 09/07 22:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 09/07 23:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 09/07 24:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 09/08 01:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 09/08 02:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 09/08 03:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 09/08 04:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/08 05:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 09/08 06:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 09/08 07:00:00,0.0,0.0,281.2054049420234,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 09/08 08:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 09/08 09:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 09/08 10:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 09/08 11:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 09/08 12:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 09/08 13:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 09/08 14:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 09/08 15:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 09/08 16:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 09/08 17:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 09/08 18:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 09/08 19:00:00,0.0,0.0,281.17607900888529,1012233.884431987,0.0,6143235.769355498,1802015.8256776133 + 09/08 20:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 09/08 21:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 09/08 22:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,1802015.8256776133 + 09/08 23:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 09/08 24:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 09/09 01:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 09/09 02:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 09/09 03:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 09/09 04:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 09/09 05:00:00,0.0,0.0,280.9934219866694,1011576.3191520098,0.0,6143235.769355498,1802015.8256776133 + 09/09 06:00:00,0.0,0.0,280.97841474690486,1011522.2930888576,0.0,6143235.769355498,1802015.8256776133 + 09/09 07:00:00,134607117.01972506,4592172.303897423,281.1508347200099,135619260.0247171,4592172.303897423,6143235.769355498,1802015.8256776133 + 09/09 08:00:00,15121372.632382576,5584793.269557786,562.4136937647794,17146061.92993578,5584793.269557786,9214853.654033246,10812094.954065679 + 09/09 09:00:00,0.0,103260573.84683092,2810.923547814933,10119324.772133759,103260573.84683092,24572943.077421994,28832253.210841814 + 09/09 10:00:00,0.0,111541682.20043364,2810.180091608153,10116648.32978935,111541682.20043364,27644560.962099744,32436284.862197039 + 09/09 11:00:00,0.0,86758167.59336461,5055.027183492357,18198097.860572485,86758167.59336461,27644560.962099744,32436284.862197039 + 09/09 12:00:00,0.0,64887466.659661028,5053.938934040014,18194180.16254405,64887466.659661028,27644560.962099744,32436284.862197039 + 09/09 13:00:00,0.0,80481988.54232681,5053.938934040014,18194180.16254405,80481988.54232681,27644560.962099744,32436284.862197039 + 09/09 14:00:00,0.0,103305490.79704224,5053.168504730787,18191406.617030834,103305490.79704224,27644560.962099744,32436284.862197039 + 09/09 15:00:00,0.0,115239312.90017616,5049.257652715951,18177327.549777423,115239312.90017616,27644560.962099744,32436284.862197039 + 09/09 16:00:00,0.0,111180974.51069013,5051.945540179122,18187003.94464484,111180974.51069013,27644560.962099744,32436284.862197039 + 09/09 17:00:00,0.0,61419653.319482389,3931.4126633731405,14153085.588143306,61419653.319482389,27644560.962099744,32436284.862197039 + 09/09 18:00:00,0.0,31649587.229740904,2809.0845751662839,10112704.470598622,31649587.229740904,27644560.962099744,28832253.210841814 + 09/09 19:00:00,0.0,0.0,1686.1899273760783,6070283.738553882,0.0,15358089.423388744,18020158.25677613 + 09/09 20:00:00,24985901.943080166,0.0,1124.411954607005,29033784.979665385,0.0,9214853.654033246,10812094.954065679 + 09/09 21:00:00,28641330.594005266,0.0,1124.3694191259734,32689060.502858767,0.0,9214853.654033246,10812094.954065679 + 09/09 22:00:00,0.0,0.0,1124.679875990817,4048847.5535669417,0.0,6143235.769355498,3604031.6513552267 + 09/09 23:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,3604031.6513552267 + 09/09 24:00:00,0.0,0.0,281.1867899520321,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 09/10 01:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 09/10 02:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/10 03:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 09/10 04:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,1802015.8256776133 + 09/10 05:00:00,0.0,0.0,281.18678995203217,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 09/10 06:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 09/10 07:00:00,91369363.93712108,0.0,281.15624018925976,92381526.4018024,0.0,6143235.769355498,1802015.8256776133 + 09/10 08:00:00,19708582.378451159,0.0,561.9481291048495,21731595.64322861,0.0,9214853.654033246,10812094.954065679 + 09/10 09:00:00,0.0,19703371.81635903,2808.348435273531,10110054.36698471,19703371.81635903,24572943.077421994,28832253.210841814 + 09/10 10:00:00,0.0,43150979.429174218,2805.6607898722406,10100378.843540065,43150979.429174218,27644560.962099744,32436284.862197039 + 09/10 11:00:00,0.0,61412908.89289053,5037.979777282175,18136727.19821583,61412908.89289053,27644560.962099744,32436284.862197039 + 09/10 12:00:00,0.0,84178085.72056706,5033.195572411864,18119504.06068271,84178085.72056706,27644560.962099744,32436284.862197039 + 09/10 13:00:00,0.0,88340263.87677828,5042.33124822409,18152392.493606725,88340263.87677828,27644560.962099744,32436284.862197039 + 09/10 14:00:00,0.0,60904318.44210803,5041.132250448796,18148076.101615669,60904318.44210803,27644560.962099744,32436284.862197039 + 09/10 15:00:00,0.0,42876272.26087738,5037.322763094742,18134361.947141075,42876272.26087738,27644560.962099744,32436284.862197039 + 09/10 16:00:00,0.0,22644854.520637108,5044.622718612736,18160641.78700585,22644854.520637108,27644560.962099744,32436284.862197039 + 09/10 17:00:00,0.0,10444645.975493478,3925.267005774153,14130961.220786952,10444645.975493478,27644560.962099744,32436284.862197039 + 09/10 18:00:00,0.0,0.0,2810.0386226718826,10116139.041618778,0.0,27644560.962099744,28832253.210841814 + 09/10 19:00:00,26950882.47689875,0.0,1686.8917291423603,33023692.701811248,0.0,15358089.423388744,18020158.25677613 + 09/10 20:00:00,55260558.228902798,0.0,1124.835141547187,59309964.73847267,0.0,9214853.654033246,10812094.954065679 + 09/10 21:00:00,68239965.70384407,0.0,1124.2917373974929,72287415.95847506,0.0,9214853.654033246,10812094.954065679 + 09/10 22:00:00,0.0,0.0,1124.2437465449967,4047277.4875619865,0.0,6143235.769355498,3604031.6513552267 + 09/10 23:00:00,0.0,0.0,281.06093663624906,1011819.3718904966,0.0,6143235.769355498,3604031.6513552267 + 09/10 24:00:00,0.0,0.0,280.9784147469049,1011522.2930888576,0.0,6143235.769355498,1802015.8256776133 + 09/11 01:00:00,0.0,0.0,281.00792797058957,1011628.5406941223,0.0,6143235.769355498,1802015.8256776133 + 09/11 02:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 09/11 03:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 09/11 04:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 09/11 05:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 09/11 06:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,1802015.8256776133 + 09/11 07:00:00,142866247.67896045,8609016.61794087,281.08443004371756,143878151.6271178,8609016.61794087,6143235.769355498,1802015.8256776133 + 09/11 08:00:00,8699619.172454229,23786568.39743302,562.4000226852828,10724259.25412125,23786568.39743302,9214853.654033246,10812094.954065679 + 09/11 09:00:00,0.0,93704031.91227992,2811.8168601159466,10122540.696417407,93704031.91227992,24572943.077421994,28832253.210841814 + 09/11 10:00:00,0.0,99116220.5052875,2810.695805324627,10118504.899168658,99116220.5052875,27644560.962099744,32436284.862197039 + 09/11 11:00:00,0.0,71798708.5099691,5056.034476513249,18201724.115447698,71798708.5099691,27644560.962099744,32436284.862197039 + 09/11 12:00:00,0.0,52135735.93902723,5054.310673359228,18195518.42409322,52135735.93902723,27644560.962099744,32436284.862197039 + 09/11 13:00:00,0.0,49415672.78348486,5051.085395720441,18183907.424593588,49415672.78348486,27644560.962099744,32436284.862197039 + 09/11 14:00:00,0.0,56524852.51461343,5046.771864566769,18168378.712440369,56524852.51461343,27644560.962099744,32436284.862197039 + 09/11 15:00:00,0.0,95185823.57512859,5047.792961919891,18172054.66291161,95185823.57512859,27644560.962099744,32436284.862197039 + 09/11 16:00:00,0.0,59870872.69823906,5048.778356146993,18175602.082129178,59870872.69823906,27644560.962099744,32436284.862197039 + 09/11 17:00:00,0.0,59440828.6857416,3928.2770219114056,14141797.27888106,59440828.6857416,27644560.962099744,32436284.862197039 + 09/11 18:00:00,0.0,53596083.00778285,2808.1519024093865,10109346.84867379,53596083.00778285,27644560.962099744,28832253.210841814 + 09/11 19:00:00,2579406.0059748699,0.0,1687.0198139862255,8652677.33632528,0.0,15358089.423388744,18020158.25677613 + 09/11 20:00:00,32522635.775787809,0.0,1124.411954607005,36570518.81237303,0.0,9214853.654033246,10812094.954065679 + 09/11 21:00:00,32274616.630331,0.0,1124.2297614888528,36321843.77169087,0.0,9214853.654033246,10812094.954065679 + 09/11 22:00:00,0.0,0.0,1124.6534241467132,4048752.3269281678,0.0,6143235.769355498,3604031.6513552267 + 09/11 23:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,3604031.6513552267 + 09/11 24:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/12 01:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 09/12 02:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 09/12 03:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 09/12 04:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 09/12 05:00:00,0.0,0.0,280.8593416063364,1011093.629782811,0.0,6143235.769355498,1802015.8256776133 + 09/12 06:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 09/12 07:00:00,156849631.5043307,4125052.7335636329,281.19655967164507,157861939.1191486,4125052.7335636329,6143235.769355498,1802015.8256776133 + 09/12 08:00:00,37491702.74024726,0.0,562.2262404297056,39515717.20579419,0.0,9214853.654033246,10812094.954065679 + 09/12 09:00:00,0.0,42686786.51624352,2808.539970795126,10110743.894862455,42686786.51624352,24572943.077421994,28832253.210841814 + 09/12 10:00:00,0.0,66215709.54211039,2806.636411210623,10103891.080358243,66215709.54211039,27644560.962099744,32436284.862197039 + 09/12 11:00:00,0.0,37615184.96348646,5053.168504730787,18191406.617030834,37615184.96348646,27644560.962099744,32436284.862197039 + 09/12 12:00:00,0.0,55413670.97825883,5049.728009428017,18179020.83394086,55413670.97825883,27644560.962099744,32436284.862197039 + 09/12 13:00:00,0.0,57320245.73455997,5047.792961919891,18172054.66291161,57320245.73455997,27644560.962099744,32436284.862197039 + 09/12 14:00:00,0.0,86152951.17587713,5043.494752497416,18156581.1089907,86152951.17587713,27644560.962099744,32436284.862197039 + 09/12 15:00:00,0.0,136197921.34421069,5038.627959825987,18139060.655373556,136197921.34421069,27644560.962099744,32436284.862197039 + 09/12 16:00:00,0.0,162399526.6855657,5037.322763094742,18134361.947141075,162399526.6855657,27644560.962099744,32436284.862197039 + 09/12 17:00:00,0.0,155523857.2447593,3919.4301257274698,14109948.452618892,155523857.2447593,27644560.962099744,32436284.862197039 + 09/12 18:00:00,0.0,111320191.4103221,2806.867869988213,10104724.331957568,111320191.4103221,27644560.962099744,28832253.210841814 + 09/12 19:00:00,0.0,1276360.6442918319,1684.7702244530759,6065172.808031073,1276360.6442918319,15358089.423388744,18020158.25677613 + 09/12 20:00:00,8266793.8359481659,0.0,1123.956856070162,12313038.517800749,0.0,9214853.654033246,10812094.954065679 + 09/12 21:00:00,10856498.861814222,0.0,1122.463421271209,14897367.178390574,0.0,9214853.654033246,10812094.954065679 + 09/12 22:00:00,0.0,0.0,1123.956856070162,4046244.6818525835,0.0,6143235.769355498,3604031.6513552267 + 09/12 23:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,3604031.6513552267 + 09/12 24:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 09/13 01:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 09/13 02:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 09/13 03:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 09/13 04:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 09/13 05:00:00,0.0,0.0,281.1029886517513,1011970.7591463046,0.0,6143235.769355498,1802015.8256776133 + 09/13 06:00:00,0.0,0.0,281.0574403722132,1011806.7853399675,0.0,6143235.769355498,1802015.8256776133 + 09/13 07:00:00,51288526.92724231,0.0,280.97406455242477,52300033.55963105,0.0,6143235.769355498,1802015.8256776133 + 09/13 08:00:00,0.0,95545635.35972557,561.1321579744481,2020075.7687080133,95545635.35972557,9214853.654033246,10812094.954065679 + 09/13 09:00:00,0.0,152527047.4920689,2798.5126461637457,10074645.526189484,152527047.4920689,24572943.077421994,28832253.210841814 + 09/13 10:00:00,0.0,172228436.59759949,2790.6502062864176,10046340.742631102,172228436.59759949,27644560.962099744,32436284.862197039 + 09/13 11:00:00,0.0,164096202.9302171,5019.789470548218,18071242.093973586,164096202.9302171,27644560.962099744,32436284.862197039 + 09/13 12:00:00,0.0,153121999.55531074,5002.869322536032,18010329.561129717,153121999.55531074,27644560.962099744,32436284.862197039 + 09/13 13:00:00,0.0,161509343.38206408,4987.803875415945,17956093.951497403,161509343.38206408,27644560.962099744,32436284.862197039 + 09/13 14:00:00,0.0,194770925.91413645,4985.517386936821,17947862.592972556,194770925.91413645,27644560.962099744,32436284.862197039 + 09/13 15:00:00,0.0,213937208.07615418,4985.517386936821,17947862.592972556,213937208.07615418,27644560.962099744,32436284.862197039 + 09/13 16:00:00,0.0,210522870.55874146,4988.934599825275,17960164.55937099,210522870.55874146,27644560.962099744,32436284.862197039 + 09/13 17:00:00,0.0,170865028.7825134,3887.9039087863936,13996454.071631017,170865028.7825134,27644560.962099744,32436284.862197039 + 09/13 18:00:00,0.0,118369500.5207117,2785.810320777456,10028917.154798843,118369500.5207117,27644560.962099744,28832253.210841814 + 09/13 19:00:00,0.0,32692272.441370444,1673.263156849406,6023747.364657861,32692272.441370444,15358089.423388744,18020158.25677613 + 09/13 20:00:00,0.0,8071784.065791145,1116.6241592585873,4019846.973330914,8071784.065791145,9214853.654033246,10812094.954065679 + 09/13 21:00:00,0.0,703294.6757420006,1117.6699071140648,4023611.665610633,703294.6757420006,9214853.654033246,10812094.954065679 + 09/13 22:00:00,0.0,0.0,1119.2570941261902,4029325.538854285,0.0,6143235.769355498,3604031.6513552267 + 09/13 23:00:00,0.0,0.0,280.1941529165231,1008698.950499483,0.0,6143235.769355498,3604031.6513552267 + 09/13 24:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 09/14 01:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 09/14 02:00:00,0.0,0.0,280.0629028027109,1008226.4500897592,0.0,6143235.769355498,1802015.8256776133 + 09/14 03:00:00,0.0,0.0,279.95929469481936,1007853.4609013496,0.0,6143235.769355498,1802015.8256776133 + 09/14 04:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 09/14 05:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 09/14 06:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 09/14 07:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 09/14 08:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 09/14 09:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 09/14 10:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 09/14 11:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 09/14 12:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 09/14 13:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 09/14 14:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 09/14 15:00:00,0.0,0.0,280.3471077450807,1009249.5878822905,0.0,6143235.769355498,1802015.8256776133 + 09/14 16:00:00,0.0,0.0,280.3175057376663,1009143.0206555986,0.0,6143235.769355498,1802015.8256776133 + 09/14 17:00:00,0.0,0.0,280.3175057376663,1009143.0206555986,0.0,6143235.769355498,1802015.8256776133 + 09/14 18:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 09/14 19:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 09/14 20:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 09/14 21:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 09/14 22:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 09/14 23:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 09/14 24:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,1802015.8256776133 + 09/15 01:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 09/15 02:00:00,0.0,0.0,281.1029886517513,1011970.7591463046,0.0,6143235.769355498,1802015.8256776133 + 09/15 03:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 09/15 04:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 09/15 05:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 09/15 06:00:00,0.0,0.0,281.19655967164507,1012307.6148179221,0.0,6143235.769355498,1802015.8256776133 + 09/15 07:00:00,0.0,0.0,281.1760790088854,1012233.884431987,0.0,6143235.769355498,1802015.8256776133 + 09/15 08:00:00,0.0,0.0,281.06958053246276,1011850.489916866,0.0,6143235.769355498,1802015.8256776133 + 09/15 09:00:00,0.0,0.0,280.9084575166284,1011270.4470598623,0.0,6143235.769355498,1802015.8256776133 + 09/15 10:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 09/15 11:00:00,0.0,0.0,280.5912158508147,1010128.3770629328,0.0,6143235.769355498,1802015.8256776133 + 09/15 12:00:00,0.0,0.0,280.4329423288828,1009558.592383978,0.0,6143235.769355498,1802015.8256776133 + 09/15 13:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 09/15 14:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 09/15 15:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 09/15 16:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 09/15 17:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 09/15 18:00:00,0.0,0.0,280.9256103419261,1011332.1972309339,0.0,6143235.769355498,1802015.8256776133 + 09/15 19:00:00,0.0,0.0,280.9256103419261,1011332.1972309339,0.0,6143235.769355498,1802015.8256776133 + 09/15 20:00:00,0.0,0.0,281.11312021485278,1012007.23277347,0.0,6143235.769355498,1802015.8256776133 + 09/15 21:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 09/15 22:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 09/15 23:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 09/15 24:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 09/16 01:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 09/16 02:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 09/16 03:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 09/16 04:00:00,0.0,0.0,281.2000113426414,1012320.0408335091,0.0,6143235.769355498,1802015.8256776133 + 09/16 05:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/16 06:00:00,0.0,0.0,281.20878538679679,1012351.6273924684,0.0,6143235.769355498,1802015.8256776133 + 09/16 07:00:00,80303047.33292803,2863266.934254267,281.1131202148528,81315054.56570152,2863266.934254267,6143235.769355498,1802015.8256776133 + 09/16 08:00:00,0.0,75849128.17064536,561.8169150332568,2022540.8941197245,75849128.17064536,9214853.654033246,10812094.954065679 + 09/16 09:00:00,0.0,138124307.87633199,2806.867869988213,10104724.331957568,138124307.87633199,24572943.077421994,28832253.210841814 + 09/16 10:00:00,0.0,131738880.12519129,2805.1431403977505,10098515.3054319,131738880.12519129,27644560.962099744,32436284.862197039 + 09/16 11:00:00,0.0,112039957.47556618,5044.063180562568,18158627.450025247,112039957.47556618,27644560.962099744,32436284.862197039 + 09/16 12:00:00,0.0,91989639.56792557,5039.267304506748,18141362.296224294,91989639.56792557,27644560.962099744,32436284.862197039 + 09/16 13:00:00,0.0,98918210.10937996,5032.476917973653,18116916.904705153,98918210.10937996,27644560.962099744,32436284.862197039 + 09/16 14:00:00,0.0,128038642.59163453,5030.268309606505,18108965.91458342,128038642.59163453,27644560.962099744,32436284.862197039 + 09/16 15:00:00,0.0,167019364.83455087,5028.752104001549,18103507.574405578,167019364.83455087,27644560.962099744,32436284.862197039 + 09/16 16:00:00,0.0,180955778.18830998,5033.195572411864,18119504.06068271,180955778.18830998,27644560.962099744,32436284.862197039 + 09/16 17:00:00,0.0,170942701.91256849,3918.9328576424338,14108158.28751276,170942701.91256849,27644560.962099744,32436284.862197039 + 09/16 18:00:00,0.0,107036436.02062102,2805.6607898722406,10100378.843540065,107036436.02062102,27644560.962099744,28832253.210841814 + 09/16 19:00:00,0.0,467900.3390327322,1685.7504841032174,6068701.742771583,467900.3390327322,15358089.423388744,18020158.25677613 + 09/16 20:00:00,9487605.551884179,0.0,1123.2607609637544,13531344.291353694,0.0,9214853.654033246,10812094.954065679 + 09/16 21:00:00,17033875.408441158,0.0,1123.6338300665137,21078957.196680607,0.0,9214853.654033246,10812094.954065679 + 09/16 22:00:00,0.0,0.0,1122.747147995285,4041889.732783027,0.0,6143235.769355498,3604031.6513552267 + 09/16 23:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,3604031.6513552267 + 09/16 24:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 09/17 01:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 09/17 02:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 09/17 03:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 09/17 04:00:00,0.0,0.0,281.0316545626797,1011713.9564256469,0.0,6143235.769355498,1802015.8256776133 + 09/17 05:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 09/17 06:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 09/17 07:00:00,52756873.36942072,9241616.942968442,280.7532338858979,53767585.01140995,9241616.942968442,6143235.769355498,1802015.8256776133 + 09/17 08:00:00,0.0,115567536.35982996,560.3883058330462,2017397.900998966,115567536.35982996,9214853.654033246,10812094.954065679 + 09/17 09:00:00,0.0,171550609.37797646,2798.5126461637457,10074645.526189484,171550609.37797646,24572943.077421994,28832253.210841814 + 09/17 10:00:00,0.0,163823769.14785148,2792.889403372682,10054401.852141655,163823769.14785148,27644560.962099744,32436284.862197039 + 09/17 11:00:00,0.0,143243919.6885498,5015.368624929059,18055327.04974461,143243919.6885498,27644560.962099744,32436284.862197039 + 09/17 12:00:00,0.0,128564782.73880977,5008.817878597807,18031744.362952107,128564782.73880977,27644560.962099744,32436284.862197039 + 09/17 13:00:00,0.0,139741815.65261568,4994.462591998774,17980065.331195587,139741815.65261568,27644560.962099744,32436284.862197039 + 09/17 14:00:00,0.0,179544732.22944714,4988.934599825275,17960164.55937099,179544732.22944714,27644560.962099744,32436284.862197039 + 09/17 15:00:00,0.0,218070511.53878,4990.056963188398,17964205.067478233,218070511.53878,27644560.962099744,32436284.862197039 + 09/17 16:00:00,0.0,232951519.0631951,4994.462591998774,17980065.331195587,232951519.0631951,27644560.962099744,32436284.862197039 + 09/17 17:00:00,0.0,214309055.9580783,3892.6893104275429,14013681.517539155,214309055.9580783,27644560.962099744,32436284.862197039 + 09/17 18:00:00,0.0,135623596.36239416,2788.290323395743,10037845.164224675,135623596.36239416,27644560.962099744,28832253.210841814 + 09/17 19:00:00,0.0,20126038.120809065,1674.6646309042843,6028792.671255423,20126038.120809065,15358089.423388744,18020158.25677613 + 09/17 20:00:00,0.0,0.0,1118.166552153946,4025399.5877542055,0.0,9214853.654033246,10812094.954065679 + 09/17 21:00:00,0.0,0.0,1119.6951021835528,4030902.36786079,0.0,9214853.654033246,10812094.954065679 + 09/17 22:00:00,0.0,0.0,1119.8371787792774,4031413.843605398,0.0,6143235.769355498,3604031.6513552267 + 09/17 23:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,3604031.6513552267 + 09/17 24:00:00,0.0,0.0,280.12951379022726,1008466.249644818,0.0,6143235.769355498,1802015.8256776133 + 09/18 01:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 09/18 02:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 09/18 03:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 09/18 04:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 09/18 05:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 09/18 06:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 09/18 07:00:00,24586782.45993603,48694903.29619275,280.0964546211085,25595129.696572029,48694903.29619275,6143235.769355498,1802015.8256776133 + 09/18 08:00:00,0.0,145303886.43622307,559.083276076973,2012699.7938771027,145303886.43622307,9214853.654033246,10812094.954065679 + 09/18 09:00:00,0.0,191105298.60886205,2790.187866874211,10044676.32074716,191105298.60886205,24572943.077421994,28832253.210841814 + 09/18 10:00:00,0.0,195497652.93871153,2783.2107933220675,10019558.855959442,195497652.93871153,27644560.962099744,32436284.862197039 + 09/18 11:00:00,0.0,170566668.25078989,5000.818409879952,18002946.275567827,170566668.25078989,27644560.962099744,32436284.862197039 + 09/18 12:00:00,0.0,132333841.0694285,5019.789470548218,18071242.093973586,132333841.0694285,27644560.962099744,32436284.862197039 + 09/18 13:00:00,0.0,144765118.93466596,4984.361644806299,17943701.921302678,144765118.93466596,27644560.962099744,32436284.862197039 + 09/18 14:00:00,0.0,189828864.32703669,4978.458401217704,17922450.244383735,189828864.32703669,27644560.962099744,32436284.862197039 + 09/18 15:00:00,0.0,229996281.78326918,4988.934599825275,17960164.55937099,229996281.78326918,27644560.962099744,32436284.862197039 + 09/18 16:00:00,0.0,230253050.02298597,4987.803875415945,17956093.951497403,230253050.02298597,27644560.962099744,32436284.862197039 + 09/18 17:00:00,0.0,183889625.12528087,3892.6893104275429,14013681.517539155,183889625.12528087,27644560.962099744,32436284.862197039 + 09/18 18:00:00,0.0,99236272.53679675,2781.0455315488268,10011763.913575776,99236272.53679675,27644560.962099744,28832253.210841814 + 09/18 19:00:00,0.0,11384972.62956434,1670.8708910981773,6015135.207953438,11384972.62956434,15358089.423388744,18020158.25677613 + 09/18 20:00:00,0.0,0.0,1120.518055160909,4033864.998579272,0.0,9214853.654033246,10812094.954065679 + 09/18 21:00:00,13555624.50597024,0.0,1120.902929013904,17590875.05042029,0.0,9214853.654033246,10812094.954065679 + 09/18 22:00:00,0.0,0.0,1120.7766116660924,4034795.801997932,0.0,6143235.769355498,3604031.6513552267 + 09/18 23:00:00,0.0,0.0,280.3471077450806,1009249.5878822905,0.0,6143235.769355498,3604031.6513552267 + 09/18 24:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 09/19 01:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 09/19 02:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 09/19 03:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 09/19 04:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/19 05:00:00,0.0,0.0,281.14285597573919,1012114.281512661,0.0,6143235.769355498,1802015.8256776133 + 09/19 06:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 09/19 07:00:00,180408060.61965017,3453896.455431199,280.84032990742528,181419085.8073169,3453896.455431199,6143235.769355498,1802015.8256776133 + 09/19 08:00:00,55751327.33285635,0.0,561.5185742778631,57772794.200256649,0.0,9214853.654033246,10812094.954065679 + 09/19 09:00:00,7626182.444518507,0.0,2808.5934160633639,17737118.74234662,0.0,24572943.077421994,28832253.210841814 + 09/19 10:00:00,0.0,0.0,2810.4843701946526,10117743.732700749,0.0,27644560.962099744,32436284.862197039 + 09/19 11:00:00,0.0,7025575.480661386,5057.881595760049,18208373.744736177,7025575.480661386,27644560.962099744,32436284.862197039 + 09/19 12:00:00,0.0,1459037.0175109655,5055.801360046721,18200884.896168196,1459037.0175109655,27644560.962099744,32436284.862197039 + 09/19 13:00:00,0.0,1574908.318825881,5058.394786070604,18210221.229854175,1574908.318825881,27644560.962099744,32436284.862197039 + 09/19 14:00:00,0.0,13004854.215578124,5061.297340536311,18220670.42593072,13004854.215578124,27644560.962099744,32436284.862197039 + 09/19 15:00:00,0.0,35812643.869411397,5060.257028991122,18216925.304368039,35812643.869411397,27644560.962099744,32436284.862197039 + 09/19 16:00:00,0.0,37545097.68801842,5061.19898414525,18220316.3429229,37545097.68801842,27644560.962099744,32436284.862197039 + 09/19 17:00:00,0.0,33061889.258971976,3935.0210808912249,14166075.891208409,33061889.258971976,27644560.962099744,32436284.862197039 + 09/19 18:00:00,0.0,5094648.776873371,2809.934219866693,10115763.191520095,5094648.776873371,27644560.962099744,28832253.210841814 + 09/19 19:00:00,60844748.04943914,0.0,1683.73654266408,66906199.603029828,0.0,15358089.423388744,18020158.25677613 + 09/19 20:00:00,88274755.53768423,0.0,1121.4216733155693,92311873.56162028,0.0,9214853.654033246,10812094.954065679 + 09/19 21:00:00,93679183.37800655,0.0,1120.8126599596972,97714108.95386146,0.0,9214853.654033246,10812094.954065679 + 09/19 22:00:00,0.0,0.0,1120.0166940125837,4032060.0984452997,0.0,6143235.769355498,3604031.6513552267 + 09/19 23:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,3604031.6513552267 + 09/19 24:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 09/20 01:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 09/20 02:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 09/20 03:00:00,0.0,0.0,279.1687983373994,1005007.6740146377,0.0,6143235.769355498,1802015.8256776133 + 09/20 04:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 09/20 05:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 09/20 06:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 09/20 07:00:00,199942377.4021885,10886328.05401493,280.69326480147586,200952873.1554738,10886328.05401493,6143235.769355498,1802015.8256776133 + 09/20 08:00:00,10157993.17128254,29327118.507848719,561.8937941612803,12180810.830263148,29327118.507848719,9214853.654033246,10812094.954065679 + 09/20 09:00:00,0.0,98763249.6060493,2811.926047956612,10122933.772643803,98763249.6060493,24572943.077421994,28832253.210841814 + 09/20 10:00:00,0.0,84734051.68213256,2811.926047956612,10122933.772643803,84734051.68213256,27644560.962099744,32436284.862197039 + 09/20 11:00:00,0.0,35661433.39284684,5061.758136962342,18222329.29306443,35661433.39284684,27644560.962099744,32436284.862197039 + 09/20 12:00:00,0.0,33978476.483563128,5061.639135312228,18221900.88712402,33978476.483563128,27644560.962099744,32436284.862197039 + 09/20 13:00:00,0.0,32143208.692242374,5061.518792190468,18221467.651885686,32143208.692242374,27644560.962099744,32436284.862197039 + 09/20 14:00:00,0.0,15762077.190254752,5061.1694221599359,18220209.91977577,15762077.190254752,27644560.962099744,32436284.862197039 + 09/20 15:00:00,0.0,10781002.909690295,5061.2703482087049,18220573.253551339,10781002.909690295,27644560.962099744,32436284.862197039 + 09/20 16:00:00,0.0,17794012.806559147,5061.4450340620419,18221202.12262335,17794012.806559147,27644560.962099744,32436284.862197039 + 09/20 17:00:00,0.0,7091100.230137566,3936.080701332173,14169890.524795823,7091100.230137566,27644560.962099744,32436284.862197039 + 09/20 18:00:00,0.0,0.0,2811.0298865175125,10119707.591463045,0.0,27644560.962099744,28832253.210841814 + 09/20 19:00:00,33265582.727300306,0.0,1686.8430006790894,39338217.52974503,0.0,15358089.423388744,18020158.25677613 + 09/20 20:00:00,55970515.29228904,0.0,1124.5944860949067,60019055.4422307,0.0,9214853.654033246,10812094.954065679 + 09/20 21:00:00,50122166.141375888,0.0,1124.4909974943353,54170333.73235549,0.0,9214853.654033246,10812094.954065679 + 09/20 22:00:00,0.0,0.0,1124.624960757039,4048649.8587253408,0.0,6143235.769355498,3604031.6513552267 + 09/20 23:00:00,0.0,0.0,281.11312021485278,1012007.23277347,0.0,6143235.769355498,3604031.6513552267 + 09/20 24:00:00,0.0,0.0,281.1318760355507,1012074.7537279825,0.0,6143235.769355498,1802015.8256776133 + 09/21 01:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 09/21 02:00:00,0.0,0.0,281.14862152372668,1012135.0374854159,0.0,6143235.769355498,1802015.8256776133 + 09/21 03:00:00,0.0,0.0,281.14862152372668,1012135.0374854159,0.0,6143235.769355498,1802015.8256776133 + 09/21 04:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 09/21 05:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 09/21 06:00:00,0.0,0.0,281.18678995203217,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 09/21 07:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 09/21 08:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 09/21 09:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 09/21 10:00:00,0.0,0.0,279.8512646163746,1007464.5526189485,0.0,6143235.769355498,1802015.8256776133 + 09/21 11:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 09/21 12:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 09/21 13:00:00,0.0,0.0,278.8290323395743,1003784.5164224675,0.0,6143235.769355498,1802015.8256776133 + 09/21 14:00:00,0.0,0.0,278.6816698762889,1003254.01155464,0.0,6143235.769355498,1802015.8256776133 + 09/21 15:00:00,0.0,0.0,279.1107718173807,1004798.7785425704,0.0,6143235.769355498,1802015.8256776133 + 09/21 16:00:00,0.0,0.0,279.1560398146468,1004961.7433327285,0.0,6143235.769355498,1802015.8256776133 + 09/21 17:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 09/21 18:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 09/21 19:00:00,0.0,0.0,280.4329423288828,1009558.592383978,0.0,6143235.769355498,1802015.8256776133 + 09/21 20:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 09/21 21:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 09/21 22:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 09/21 23:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 09/21 24:00:00,0.0,0.0,281.04479834185136,1011761.2740306648,0.0,6143235.769355498,1802015.8256776133 + 09/22 01:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 09/22 02:00:00,0.0,0.0,281.1029886517513,1011970.7591463046,0.0,6143235.769355498,1802015.8256776133 + 09/22 03:00:00,0.0,0.0,281.17607900888529,1012233.884431987,0.0,6143235.769355498,1802015.8256776133 + 09/22 04:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 09/22 05:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 09/22 06:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 09/22 07:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 09/22 08:00:00,0.0,0.0,281.1867899520321,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 09/22 09:00:00,0.0,0.0,281.0574403722132,1011806.7853399676,0.0,6143235.769355498,1802015.8256776133 + 09/22 10:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 09/22 11:00:00,0.0,0.0,280.7743852244452,1010787.7868080027,0.0,6143235.769355498,1802015.8256776133 + 09/22 12:00:00,0.0,0.0,280.79503740884595,1010862.1346718454,0.0,6143235.769355498,1802015.8256776133 + 09/22 13:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 09/22 14:00:00,0.0,0.0,280.56607898722407,1010037.8843540065,0.0,6143235.769355498,1802015.8256776133 + 09/22 15:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 09/22 16:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 09/22 17:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 09/22 18:00:00,0.0,0.0,281.2068468823896,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 09/22 19:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 09/22 20:00:00,0.0,0.0,281.0729343493732,1011862.5636577435,0.0,6143235.769355498,1802015.8256776133 + 09/22 21:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 09/22 22:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 09/22 23:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 09/22 24:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 09/23 01:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 09/23 02:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 09/23 03:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 09/23 04:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 09/23 05:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 09/23 06:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 09/23 07:00:00,182443589.55527965,10048108.098727655,280.5217802194998,183453467.96406988,10048108.098727655,6143235.769355498,1802015.8256776133 + 09/23 08:00:00,9597768.350906365,36742889.1374381,561.9868439733386,11620920.989210383,36742889.1374381,9214853.654033246,10812094.954065679 + 09/23 09:00:00,0.0,112417529.44952749,2811.7772134140279,10122397.9682905,112417529.44952749,24572943.077421994,28832253.210841814 + 09/23 10:00:00,0.0,119031569.05432236,2812.068468823897,10123446.48776603,119031569.05432236,27644560.962099744,32436284.862197039 + 09/23 11:00:00,0.0,92257033.66983509,5061.1694221599359,18220209.91977577,92257033.66983509,27644560.962099744,32436284.862197039 + 09/23 12:00:00,0.0,69211479.11859328,5060.529002037268,18217904.407334165,69211479.11859328,27644560.962099744,32436284.862197039 + 09/23 13:00:00,0.0,81714021.43607341,5058.806370153325,18211702.93255197,81714021.43607341,27644560.962099744,32436284.862197039 + 09/23 14:00:00,0.0,124090372.16924474,5058.806370153325,18211702.93255197,124090372.16924474,27644560.962099744,32436284.862197039 + 09/23 15:00:00,0.0,168853529.26344396,5056.352235299311,18202868.04707752,168853529.26344396,27644560.962099744,32436284.862197039 + 09/23 16:00:00,0.0,182552328.3708603,5056.352235299311,18202868.04707752,182552328.3708603,27644560.962099744,32436284.862197039 + 09/23 17:00:00,0.0,155690173.45359797,3935.13706188558,14166493.422788088,155690173.45359797,27644560.962099744,32436284.862197039 + 09/23 18:00:00,0.0,52588371.44597478,2811.318760355507,10120747.537279826,52588371.44597478,27644560.962099744,28832253.210841814 + 09/23 19:00:00,2322745.715801715,0.0,1687.0991135121035,8396302.524445288,0.0,15358089.423388744,18020158.25677613 + 09/23 20:00:00,37697617.68421677,0.0,1124.4236597586858,41745542.85934804,0.0,9214853.654033246,10812094.954065679 + 09/23 21:00:00,42177889.225838419,0.0,1124.7327423414022,46226927.098267469,0.0,9214853.654033246,10812094.954065679 + 09/23 22:00:00,0.0,0.0,1124.463615740518,4048069.0166658649,0.0,6143235.769355498,3604031.6513552267 + 09/23 23:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,3604031.6513552267 + 09/23 24:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 09/24 01:00:00,0.0,0.0,280.9784147469049,1011522.2930888576,0.0,6143235.769355498,1802015.8256776133 + 09/24 02:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 09/24 03:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 09/24 04:00:00,0.0,0.0,280.0385700581902,1008138.8522094848,0.0,6143235.769355498,1802015.8256776133 + 09/24 05:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 09/24 06:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 09/24 07:00:00,177857067.64807726,10319487.237079742,280.44083105127069,178866654.63986183,10319487.237079742,6143235.769355498,1802015.8256776133 + 09/24 08:00:00,11792648.950203974,22904280.04772596,562.2507809990135,13816751.76180042,22904280.04772596,9214853.654033246,10812094.954065679 + 09/24 09:00:00,0.0,128388358.55366825,2811.8678995203215,10122724.438273156,128388358.55366825,24572943.077421994,28832253.210841814 + 09/24 10:00:00,0.0,136690945.46114845,2810.5744037221318,10118067.853399674,136690945.46114845,27644560.962099744,32436284.862197039 + 09/24 11:00:00,0.0,108411193.7914422,5055.3719474312279,18199339.010752419,108411193.7914422,27644560.962099744,32436284.862197039 + 09/24 12:00:00,0.0,87817032.70496363,5051.085395720441,18183907.424593588,87817032.70496363,27644560.962099744,32436284.862197039 + 09/24 13:00:00,0.0,103892000.94912225,5043.494752497416,18156581.1089907,103892000.94912225,27644560.962099744,32436284.862197039 + 09/24 14:00:00,0.0,152884730.0474343,5039.897805189829,18143632.098683388,152884730.0474343,27644560.962099744,32436284.862197039 + 09/24 15:00:00,0.0,189970714.3845399,5039.897805189829,18143632.098683388,189970714.3845399,27644560.962099744,32436284.862197039 + 09/24 16:00:00,0.0,193057014.84285072,5041.132250448796,18148076.101615669,193057014.84285072,27644560.962099744,32436284.862197039 + 09/24 17:00:00,0.0,162494914.02129696,3922.269119900016,14120168.831640058,162494914.02129696,27644560.962099744,32436284.862197039 + 09/24 18:00:00,0.0,63577969.58539448,2807.9503740884595,10108621.346718453,63577969.58539448,27644560.962099744,28832253.210841814 + 09/24 19:00:00,0.0,0.0,1684.389501576929,6063802.205676944,0.0,15358089.423388744,18020158.25677613 + 09/24 20:00:00,1614799.0959048968,0.0,1122.8377382518186,5657014.953611444,0.0,9214853.654033246,10812094.954065679 + 09/24 21:00:00,21074687.079888479,0.0,1124.7819538201039,25123902.113640854,0.0,9214853.654033246,10812094.954065679 + 09/24 22:00:00,0.0,0.0,1124.7963317364743,4049266.794251307,0.0,6143235.769355498,3604031.6513552267 + 09/24 23:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,3604031.6513552267 + 09/24 24:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/25 01:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 09/25 02:00:00,0.0,0.0,280.94689708064018,1011408.8294903046,0.0,6143235.769355498,1802015.8256776133 + 09/25 03:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 09/25 04:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 09/25 05:00:00,0.0,0.0,281.1717540732248,1012218.3146636093,0.0,6143235.769355498,1802015.8256776133 + 09/25 06:00:00,0.0,0.0,281.14285597573919,1012114.281512661,0.0,6143235.769355498,1802015.8256776133 + 09/25 07:00:00,130108910.7085099,2291807.529778294,281.20878538679679,131121262.33590238,2291807.529778294,6143235.769355498,1802015.8256776133 + 09/25 08:00:00,18199067.701800504,0.0,562.3521580177705,20223535.47066448,0.0,9214853.654033246,10812094.954065679 + 09/25 09:00:00,0.0,50002835.47925471,2808.7265071363528,10111415.425690869,50002835.47925471,24572943.077421994,28832253.210841814 + 09/25 10:00:00,0.0,114358094.47574194,2805.9121585081468,10101283.770629328,114358094.47574194,27644560.962099744,32436284.862197039 + 09/25 11:00:00,0.0,104734057.48009993,5042.33124822409,18152392.493606725,104734057.48009993,27644560.962099744,32436284.862197039 + 09/25 12:00:00,0.0,88890720.29831083,5042.33124822409,18152392.493606725,88890720.29831083,27644560.962099744,32436284.862197039 + 09/25 13:00:00,0.0,90903337.72388198,5028.752104001549,18103507.574405578,90903337.72388198,27644560.962099744,32436284.862197039 + 09/25 14:00:00,0.0,131858992.78279189,5025.614835349538,18092213.40725834,131858992.78279189,27644560.962099744,32436284.862197039 + 09/25 15:00:00,0.0,143250187.29832489,5030.268309606505,18108965.91458342,143250187.29832489,27644560.962099744,32436284.862197039 + 09/25 16:00:00,0.0,97017048.3275265,5027.200926070828,18097923.33385498,97017048.3275265,27644560.962099744,32436284.862197039 + 09/25 17:00:00,0.0,84809320.0542217,3918.9328576424338,14108158.28751276,84809320.0542217,27644560.962099744,32436284.862197039 + 09/25 18:00:00,0.0,35363906.85076493,2801.9415291652305,10086989.50499483,35363906.85076493,27644560.962099744,28832253.210841814 + 09/25 19:00:00,0.0,78322.37834640916,1681.5409062042452,6053547.262335283,78322.37834640916,15358089.423388744,18020158.25677613 + 09/25 20:00:00,0.0,0.0,1121.5048587926154,4037417.4916534156,0.0,9214853.654033246,10812094.954065679 + 09/25 21:00:00,13531481.929173006,0.0,1122.8377382518186,17573697.786879556,0.0,9214853.654033246,10812094.954065679 + 09/25 22:00:00,0.0,0.0,1121.3884309803228,4036998.351529162,0.0,6143235.769355498,3604031.6513552267 + 09/25 23:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,3604031.6513552267 + 09/25 24:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 09/26 01:00:00,0.0,0.0,280.37621469815385,1009354.3729133539,0.0,6143235.769355498,1802015.8256776133 + 09/26 02:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 09/26 03:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 09/26 04:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 09/26 05:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 09/26 06:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 09/26 07:00:00,61071340.29100657,0.0,281.11312021485289,62083347.523780059,0.0,6143235.769355498,1802015.8256776133 + 09/26 08:00:00,0.0,88987455.1290683,561.8169150332568,2022540.8941197245,88987455.1290683,9214853.654033246,10812094.954065679 + 09/26 09:00:00,0.0,139786244.59420455,2807.315835961548,10106337.009461575,139786244.59420455,24572943.077421994,28832253.210841814 + 09/26 10:00:00,0.0,132588966.69110018,2803.762146981538,10093543.729133537,132588966.69110018,27644560.962099744,32436284.862197039 + 09/26 11:00:00,0.0,111955064.03920354,5045.715103277994,18164574.371800778,111955064.03920354,27644560.962099744,32436284.862197039 + 09/26 12:00:00,0.0,87358640.67932302,5037.322763094742,18134361.947141075,87358640.67932302,27644560.962099744,32436284.862197039 + 09/26 13:00:00,0.0,85384998.85208608,5031.7494846927579,18114298.144893927,85384998.85208608,27644560.962099744,32436284.862197039 + 09/26 14:00:00,0.0,104925207.46074116,5031.0132795490339,18111647.80637652,104925207.46074116,27644560.962099744,32436284.862197039 + 09/26 15:00:00,0.0,142167092.0241948,5033.905441111773,18122059.588002385,142167092.0241948,27644560.962099744,32436284.862197039 + 09/26 16:00:00,0.0,165476640.92508538,5035.982265090377,18129536.15432536,165476640.92508538,27644560.962099744,32436284.862197039 + 09/26 17:00:00,0.0,143448376.42371733,3919.920515147644,14111713.85453152,143448376.42371733,27644560.962099744,32436284.862197039 + 09/26 18:00:00,0.0,41342462.989741619,2809.7406455242478,10115066.323887293,41342462.989741619,27644560.962099744,28832253.210841814 + 09/26 19:00:00,141306.87596075878,0.0,1687.0198139862255,6214578.20631117,0.0,15358089.423388744,18020158.25677613 + 09/26 20:00:00,28377103.126785794,0.0,1124.5275041422029,32425402.14169772,0.0,9214853.654033246,10812094.954065679 + 09/26 21:00:00,35841685.459835369,0.0,1124.8273875295589,39891064.05494177,0.0,9214853.654033246,10812094.954065679 + 09/26 22:00:00,0.0,0.0,1124.6611353522947,4048780.08726826,0.0,6143235.769355498,3604031.6513552267 + 09/26 23:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,3604031.6513552267 + 09/26 24:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 09/27 01:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 09/27 02:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 09/27 03:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 09/27 04:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 09/27 05:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 09/27 06:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 09/27 07:00:00,132969247.1759316,6577461.62453209,281.03543561895796,133980974.74415985,6577461.62453209,6143235.769355498,1802015.8256776133 + 09/27 08:00:00,5831880.172416194,68754160.79630836,562.2972430474533,7856150.247387025,68754160.79630836,9214853.654033246,10812094.954065679 + 09/27 09:00:00,0.0,144152205.27338464,2809.5841401720288,10114502.904619303,144152205.27338464,24572943.077421994,28832253.210841814 + 09/27 10:00:00,0.0,144709234.13043548,2805.404449682231,10099456.018856032,144709234.13043548,27644560.962099744,32436284.862197039 + 09/27 11:00:00,0.0,122065483.05187431,5039.267304506748,18141362.296224294,122065483.05187431,27644560.962099744,32436284.862197039 + 09/27 12:00:00,0.0,101516411.14773773,5033.905441111773,18122059.588002385,101516411.14773773,27644560.962099744,32436284.862197039 + 09/27 13:00:00,0.0,115260169.37870313,5029.514582013292,18106252.495247853,115260169.37870313,27644560.962099744,32436284.862197039 + 09/27 14:00:00,0.0,162845385.4639817,5018.047044890099,18064969.361604357,162845385.4639817,27644560.962099744,32436284.862197039 + 09/27 15:00:00,0.0,209846143.08468358,5014.458577399421,18052050.878637919,209846143.08468358,27644560.962099744,32436284.862197039 + 09/27 16:00:00,0.0,227096622.36283378,5012.612673294531,18045405.623860316,227096622.36283378,27644560.962099744,32436284.862197039 + 09/27 17:00:00,0.0,190487815.7954176,3904.28069931528,14055410.517535009,190487815.7954176,27644560.962099744,32436284.862197039 + 09/27 18:00:00,0.0,74469042.6771365,2794.5935053369469,10060536.619213008,74469042.6771365,27644560.962099744,28832253.210841814 + 09/27 19:00:00,0.0,7496620.546102105,1682.0826464704842,6055497.527293743,7496620.546102105,15358089.423388744,18020158.25677613 + 09/27 20:00:00,0.0,0.0,1121.2700229506652,4036572.0826223946,0.0,9214853.654033246,10812094.954065679 + 09/27 21:00:00,0.0,0.0,1120.518055160909,4033864.998579272,0.0,9214853.654033246,10812094.954065679 + 09/27 22:00:00,0.0,0.0,1121.0272708028302,4035698.1748901887,0.0,6143235.769355498,3604031.6513552267 + 09/27 23:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,3604031.6513552267 + 09/27 24:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 09/28 01:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 09/28 02:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 09/28 03:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 09/28 04:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 09/28 05:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 09/28 06:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 09/28 07:00:00,0.0,0.0,281.0316545626797,1011713.9564256469,0.0,6143235.769355498,1802015.8256776133 + 09/28 08:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 09/28 09:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 09/28 10:00:00,0.0,0.0,280.09645462110856,1008347.2366359907,0.0,6143235.769355498,1802015.8256776133 + 09/28 11:00:00,0.0,0.0,279.9237755458882,1007725.5919651975,0.0,6143235.769355498,1802015.8256776133 + 09/28 12:00:00,0.0,0.0,279.6614133950985,1006781.0882223547,0.0,6143235.769355498,1802015.8256776133 + 09/28 13:00:00,0.0,0.0,279.4174767785162,1005902.9164026582,0.0,6143235.769355498,1802015.8256776133 + 09/28 14:00:00,0.0,0.0,279.37511688897498,1005750.4208003099,0.0,6143235.769355498,1802015.8256776133 + 09/28 15:00:00,0.0,0.0,279.45935053369478,1006053.6619213012,0.0,6143235.769355498,1802015.8256776133 + 09/28 16:00:00,0.0,0.0,279.7767925050209,1007196.4530180753,0.0,6143235.769355498,1802015.8256776133 + 09/28 17:00:00,0.0,0.0,280.02885865697018,1008103.8911650926,0.0,6143235.769355498,1802015.8256776133 + 09/28 18:00:00,0.0,0.0,280.25681770070755,1008924.5437225471,0.0,6143235.769355498,1802015.8256776133 + 09/28 19:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 09/28 20:00:00,0.0,0.0,280.4876864526107,1009755.6712293986,0.0,6143235.769355498,1802015.8256776133 + 09/28 21:00:00,0.0,0.0,280.54044496822316,1009945.6018856033,0.0,6143235.769355498,1802015.8256776133 + 09/28 22:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 09/28 23:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 09/28 24:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 09/29 01:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 09/29 02:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 09/29 03:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 09/29 04:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 09/29 05:00:00,0.0,0.0,280.7532338858979,1010711.6419892324,0.0,6143235.769355498,1802015.8256776133 + 09/29 06:00:00,0.0,0.0,280.70943456295466,1010553.9644266367,0.0,6143235.769355498,1802015.8256776133 + 09/29 07:00:00,0.0,0.0,280.56607898722407,1010037.8843540066,0.0,6143235.769355498,1802015.8256776133 + 09/29 08:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 09/29 09:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 09/29 10:00:00,0.0,0.0,280.2874089599472,1009034.6722558099,0.0,6143235.769355498,1802015.8256776133 + 09/29 11:00:00,0.0,0.0,280.1620799928582,1008583.4879742895,0.0,6143235.769355498,1802015.8256776133 + 09/29 12:00:00,0.0,0.0,279.9237755458882,1007725.5919651975,0.0,6143235.769355498,1802015.8256776133 + 09/29 13:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 09/29 14:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 09/29 15:00:00,0.0,0.0,279.7388218964315,1007059.7588271534,0.0,6143235.769355498,1802015.8256776133 + 09/29 16:00:00,0.0,0.0,280.225732253476,1008812.6361125136,0.0,6143235.769355498,1802015.8256776133 + 09/29 17:00:00,0.0,0.0,280.7532338858979,1010711.6419892324,0.0,6143235.769355498,1802015.8256776133 + 09/29 18:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 09/29 19:00:00,0.0,0.0,281.06958053246276,1011850.4899168658,0.0,6143235.769355498,1802015.8256776133 + 09/29 20:00:00,0.0,0.0,281.1318760355507,1012074.7537279825,0.0,6143235.769355498,1802015.8256776133 + 09/29 21:00:00,0.0,0.0,281.14862152372668,1012135.0374854159,0.0,6143235.769355498,1802015.8256776133 + 09/29 22:00:00,0.0,0.0,281.14862152372668,1012135.0374854159,0.0,6143235.769355498,1802015.8256776133 + 09/29 23:00:00,0.0,0.0,281.1913907812245,1012289.0068124083,0.0,6143235.769355498,1802015.8256776133 + 09/29 24:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 09/30 01:00:00,0.0,0.0,281.2021741840127,1012327.8270624457,0.0,6143235.769355498,1802015.8256776133 + 09/30 02:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 09/30 03:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 09/30 04:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 09/30 05:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 09/30 06:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 09/30 07:00:00,152121199.44841007,1133145.8329936767,281.2101525472185,153133555.99758009,1133145.8329936767,6143235.769355498,1802015.8256776133 + 09/30 08:00:00,45811348.21588153,0.0,562.4095243500942,47836022.50354187,0.0,9214853.654033246,10812094.954065679 + 09/30 09:00:00,0.0,0.0,2811.5624018925975,10121624.64681335,0.0,24572943.077421994,28832253.210841814 + 09/30 10:00:00,0.0,10053935.616225368,2810.4479834185128,10117612.740306646,10053935.616225368,27644560.962099744,32436284.862197039 + 09/30 11:00:00,0.0,17920835.871362684,5055.3719474312279,18199339.010752419,17920835.871362684,27644560.962099744,32436284.862197039 + 09/30 12:00:00,0.0,26319920.077231319,5051.519948731799,18185471.815434476,26319920.077231319,27644560.962099744,32436284.862197039 + 09/30 13:00:00,0.0,52871329.805594999,5041.7361831799539,18150250.25944783,52871329.805594999,27644560.962099744,32436284.862197039 + 09/30 14:00:00,0.0,134050116.81067932,5030.268309606505,18108965.91458342,134050116.81067932,27644560.962099744,32436284.862197039 + 09/30 15:00:00,0.0,176829388.56588579,5014.458577399421,18052050.878637919,176829388.56588579,27644560.962099744,32436284.862197039 + 09/30 16:00:00,0.0,183678822.68556986,5014.458577399421,18052050.878637919,183678822.68556986,27644560.962099744,32436284.862197039 + 09/30 17:00:00,0.0,155232566.4544921,3910.651797801304,14078346.472084694,155232566.4544921,27644560.962099744,32436284.862197039 + 09/30 18:00:00,0.0,52646466.51052731,2796.2197624510356,10066391.144823729,52646466.51052731,27644560.962099744,28832253.210841814 + 09/30 19:00:00,0.0,1609722.7213020016,1681.9050344259977,6054858.123933592,1609722.7213020016,15358089.423388744,18020158.25677613 + 09/30 20:00:00,0.0,0.0,1121.5048587926154,4037417.4916534156,0.0,9214853.654033246,10812094.954065679 + 09/30 21:00:00,9881317.233413442,0.0,1121.7317693155313,13919551.602949353,0.0,9214853.654033246,10812094.954065679 + 09/30 22:00:00,0.0,0.0,1121.8422498489072,4038632.0994560655,0.0,6143235.769355498,3604031.6513552267 + 09/30 23:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,3604031.6513552267 + 09/30 24:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 10/01 01:00:00,0.0,0.0,280.4329423288828,1009558.5923839781,0.0,6143235.769355498,1802015.8256776133 + 10/01 02:00:00,0.0,0.0,280.4048263175991,1009457.3747433567,0.0,6143235.769355498,1802015.8256776133 + 10/01 03:00:00,0.0,0.0,280.4605624622268,1009658.0248640165,0.0,6143235.769355498,1802015.8256776133 + 10/01 04:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 10/01 05:00:00,0.0,0.0,280.61585531780227,1010217.0791440881,0.0,6143235.769355498,1802015.8256776133 + 10/01 06:00:00,0.0,0.0,280.6636411210623,1010389.1080358244,0.0,6143235.769355498,1802015.8256776133 + 10/01 07:00:00,42659900.77176223,0.0,280.54044496822316,43669846.37364783,0.0,6143235.769355498,1802015.8256776133 + 10/01 08:00:00,19290764.773855606,0.0,560.8096526351982,21309679.52334232,0.0,9214853.654033246,10812094.954065679 + 10/01 09:00:00,0.0,45393199.15066022,2801.295137902272,10084662.49644818,45393199.15066022,24572943.077421994,28832253.210841814 + 10/01 10:00:00,0.0,136469911.92716602,2799.2377554588817,10077255.919651974,136469911.92716602,27644560.962099744,32436284.862197039 + 10/01 11:00:00,0.0,99583914.5244787,5033.905441111773,18122059.588002385,99583914.5244787,27644560.962099744,32436284.862197039 + 10/01 12:00:00,0.0,87625862.277633,5023.993892712852,18086378.01376627,87625862.277633,27644560.962099744,32436284.862197039 + 10/01 13:00:00,0.0,106996435.09753314,5025.614835349538,18092213.40725834,106996435.09753314,27644560.962099744,32436284.862197039 + 10/01 14:00:00,0.0,126665176.48531842,5024.808716663643,18089311.379989119,126665176.48531842,27644560.962099744,32436284.862197039 + 10/01 15:00:00,0.0,159640694.32488729,5019.789470548218,18071242.093973586,159640694.32488729,27644560.962099744,32436284.862197039 + 10/01 16:00:00,0.0,165296053.07220549,5025.614835349538,18092213.40725834,165296053.07220549,27644560.962099744,32436284.862197039 + 10/01 17:00:00,0.0,123737866.47827263,3916.3435065500409,14098836.623580147,123737866.47827263,27644560.962099744,32436284.862197039 + 10/01 18:00:00,0.0,37931294.35060644,2805.9121585081468,10101283.770629328,37931294.35060644,27644560.962099744,28832253.210841814 + 10/01 19:00:00,0.0,0.0,1683.981846726374,6062334.6482149469,0.0,15358089.423388744,18020158.25677613 + 10/01 20:00:00,9169814.56832295,0.0,1124.015449068753,13216270.18497046,0.0,9214853.654033246,10812094.954065679 + 10/01 21:00:00,18437133.287493498,0.0,1123.6338300665137,22482215.075732948,0.0,9214853.654033246,10812094.954065679 + 10/01 22:00:00,0.0,0.0,1124.4909974943353,4048167.590979607,0.0,6143235.769355498,3604031.6513552267 + 10/01 23:00:00,0.0,0.0,281.18678995203217,1012272.4438273157,0.0,6143235.769355498,3604031.6513552267 + 10/01 24:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 10/02 01:00:00,0.0,0.0,281.19548845502598,1012303.7584380935,0.0,6143235.769355498,1802015.8256776133 + 10/02 02:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 10/02 03:00:00,0.0,0.0,281.1318760355507,1012074.7537279825,0.0,6143235.769355498,1802015.8256776133 + 10/02 04:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 10/02 05:00:00,0.0,0.0,281.0812187061129,1011892.3873420064,0.0,6143235.769355498,1802015.8256776133 + 10/02 06:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 10/02 07:00:00,109238536.82950454,0.0,281.1227493735838,110250578.72724945,0.0,6143235.769355498,1802015.8256776133 + 10/02 08:00:00,44059762.18309298,0.0,562.2262404297056,46083776.64863992,0.0,9214853.654033246,10812094.954065679 + 10/02 09:00:00,0.0,0.0,2811.0298865175125,10119707.591463045,0.0,24572943.077421994,28832253.210841814 + 10/02 10:00:00,0.0,10151132.568342738,2809.892140175405,10115611.704631459,10151132.568342738,27644560.962099744,32436284.862197039 + 10/02 11:00:00,0.0,29108278.589417664,5057.805852315729,18208101.068336626,29108278.589417664,27644560.962099744,32436284.862197039 + 10/02 12:00:00,0.0,39902196.806813787,5057.5331619436469,18207119.38299713,39902196.806813787,27644560.962099744,32436284.862197039 + 10/02 13:00:00,0.0,14402868.150062433,5056.960726116803,18205058.61402049,14402868.150062433,27644560.962099744,32436284.862197039 + 10/02 14:00:00,0.0,0.0,5056.660986154669,18203979.55015681,0.0,27644560.962099744,32436284.862197039 + 10/02 15:00:00,0.0,0.0,5059.25244958433,18213308.81850359,0.0,27644560.962099744,32436284.862197039 + 10/02 16:00:00,0.0,0.0,5058.569782128235,18210851.215661646,0.0,27644560.962099744,32436284.862197039 + 10/02 17:00:00,0.0,15278517.746694096,3933.8489962455666,14161856.38648404,15278517.746694096,27644560.962099744,32436284.862197039 + 10/02 18:00:00,0.0,0.0,2811.8678995203215,10122724.438273156,0.0,27644560.962099744,28832253.210841814 + 10/02 19:00:00,38746442.826008569,0.0,1687.1729307301558,44820265.37663713,0.0,15358089.423388744,18020158.25677613 + 10/02 20:00:00,56202218.25804564,0.0,1124.838882530569,60251638.235155697,0.0,9214853.654033246,10812094.954065679 + 10/02 21:00:00,55531039.08345418,0.0,1124.8086967360508,59580350.39170396,0.0,9214853.654033246,10812094.954065679 + 10/02 22:00:00,0.0,0.0,1124.7471598081284,4049089.7753092634,0.0,6143235.769355498,3604031.6513552267 + 10/02 23:00:00,0.0,0.0,281.15624018925976,1012162.4646813349,0.0,6143235.769355498,3604031.6513552267 + 10/02 24:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 10/03 01:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 10/03 02:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 10/03 03:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,1802015.8256776133 + 10/03 04:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 10/03 05:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 10/03 06:00:00,0.0,0.0,281.15624018925976,1012162.464681335,0.0,6143235.769355498,1802015.8256776133 + 10/03 07:00:00,131022190.25925645,0.0,281.1633560366783,132034378.34098849,0.0,6143235.769355498,1802015.8256776133 + 10/03 08:00:00,38840835.33041929,0.0,562.3735799040643,40865380.21807391,0.0,9214853.654033246,10812094.954065679 + 10/03 09:00:00,0.0,33978094.92736547,2810.695805324627,10118504.899168658,33978094.92736547,24572943.077421994,28832253.210841814 + 10/03 10:00:00,0.0,59040329.73343045,2809.256103419261,10113321.97230934,59040329.73343045,27644560.962099744,32436284.862197039 + 10/03 11:00:00,0.0,70464156.45114982,5052.362165978783,18188503.797523619,70464156.45114982,27644560.962099744,32436284.862197039 + 10/03 12:00:00,0.0,56145978.86688979,5050.641885314665,18182310.787132797,56145978.86688979,27644560.962099744,32436284.862197039 + 10/03 13:00:00,0.0,66468552.89441942,5051.085395720441,18183907.424593588,66468552.89441942,27644560.962099744,32436284.862197039 + 10/03 14:00:00,0.0,63008839.42817314,5051.519948731799,18185471.815434476,63008839.42817314,27644560.962099744,32436284.862197039 + 10/03 15:00:00,0.0,58165810.419163849,5051.945540179122,18187003.94464484,58165810.419163849,27644560.962099744,32436284.862197039 + 10/03 16:00:00,0.0,30147498.576931597,5055.3719474312279,18199339.010752419,30147498.576931597,27644560.962099744,32436284.862197039 + 10/03 17:00:00,0.0,3729165.845559584,3932.2171099908935,14155981.595967217,3729165.845559584,27644560.962099744,32436284.862197039 + 10/03 18:00:00,0.0,0.0,2810.3165456267968,10117139.564256467,0.0,27644560.962099744,28832253.210841814 + 10/03 19:00:00,26054455.522285195,0.0,1686.268790051108,32125023.16646918,0.0,15358089.423388744,18020158.25677613 + 10/03 20:00:00,50173064.36035421,0.0,1124.5620004527262,54221487.561984028,0.0,9214853.654033246,10812094.954065679 + 10/03 21:00:00,52371058.392772469,0.0,1124.4524808594113,56419087.323866348,0.0,9214853.654033246,10812094.954065679 + 10/03 22:00:00,0.0,0.0,1124.411954607005,4047883.0365852185,0.0,6143235.769355498,3604031.6513552267 + 10/03 23:00:00,0.0,0.0,281.1318760355507,1012074.7537279824,0.0,6143235.769355498,3604031.6513552267 + 10/03 24:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 10/04 01:00:00,0.0,0.0,281.0180091608153,1011664.8329789352,0.0,6143235.769355498,1802015.8256776133 + 10/04 02:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 10/04 03:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 10/04 04:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 10/04 05:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 10/04 06:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 10/04 07:00:00,103218950.23099073,0.0,281.06958053246276,104230800.7209076,0.0,6143235.769355498,1802015.8256776133 + 10/04 08:00:00,48288641.382364917,0.0,562.0077245343765,50311869.19068867,0.0,9214853.654033246,10812094.954065679 + 10/04 09:00:00,0.0,0.0,2809.7406455242478,10115066.323887293,0.0,24572943.077421994,28832253.210841814 + 10/04 10:00:00,0.0,37465312.56544341,2808.539970795126,10110743.894862455,37465312.56544341,27644560.962099744,32436284.862197039 + 10/04 11:00:00,0.0,43768722.44235267,5053.558209946162,18192809.555806184,43768722.44235267,27644560.962099744,32436284.862197039 + 10/04 12:00:00,0.0,42563649.44790765,5051.085395720441,18183907.424593588,42563649.44790765,27644560.962099744,32436284.862197039 + 10/04 13:00:00,0.0,39865192.53193213,5050.641885314665,18182310.787132797,39865192.53193213,27644560.962099744,32436284.862197039 + 10/04 14:00:00,0.0,37167735.13271298,5053.558209946162,18192809.555806184,37167735.13271298,27644560.962099744,32436284.862197039 + 10/04 15:00:00,0.0,32920962.657342566,5058.569782128235,18210851.215661646,32920962.657342566,27644560.962099744,32436284.862197039 + 10/04 16:00:00,0.0,4309104.802054118,5061.059441958677,18219813.991051239,4309104.802054118,27644560.962099744,32436284.862197039 + 10/04 17:00:00,3327848.1619037555,0.0,3936.7871610776599,17500281.94178333,0.0,27644560.962099744,32436284.862197039 + 10/04 18:00:00,26558308.059601256,0.0,2812.097206326422,36681858.00237638,0.0,27644560.962099744,28832253.210841814 + 10/04 19:00:00,56587068.30134472,0.0,1687.2527123207809,62661178.06569953,0.0,15358089.423388744,18020158.25677613 + 10/04 20:00:00,77154236.41849508,0.0,1124.7108853656112,81203195.60581127,0.0,9214853.654033246,10812094.954065679 + 10/04 21:00:00,83965843.47409787,0.0,1124.5714239029567,88014300.60014852,0.0,9214853.654033246,10812094.954065679 + 10/04 22:00:00,0.0,0.0,1124.4636157405183,4048069.0166658649,0.0,6143235.769355498,3604031.6513552267 + 10/04 23:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,3604031.6513552267 + 10/04 24:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 10/05 01:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 10/05 02:00:00,0.0,0.0,280.80080733612558,1010882.906410052,0.0,6143235.769355498,1802015.8256776133 + 10/05 03:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 10/05 04:00:00,0.0,0.0,280.69326480147586,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 10/05 05:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 10/05 06:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 10/05 07:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 10/05 08:00:00,0.0,0.0,280.6702603177556,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/05 09:00:00,0.0,0.0,280.93038695655789,1011349.3930436084,0.0,6143235.769355498,1802015.8256776133 + 10/05 10:00:00,0.0,0.0,280.8958649185796,1011225.1137068865,0.0,6143235.769355498,1802015.8256776133 + 10/05 11:00:00,0.0,0.0,280.9784147469049,1011522.2930888576,0.0,6143235.769355498,1802015.8256776133 + 10/05 12:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 10/05 13:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 10/05 14:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 10/05 15:00:00,0.0,0.0,281.035435618958,1011727.5682282487,0.0,6143235.769355498,1802015.8256776133 + 10/05 16:00:00,0.0,0.0,280.9629063952934,1011466.4630230562,0.0,6143235.769355498,1802015.8256776133 + 10/05 17:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 10/05 18:00:00,0.0,0.0,280.54777015531229,1009971.9725591242,0.0,6143235.769355498,1802015.8256776133 + 10/05 19:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 10/05 20:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 10/05 21:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 10/05 22:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 10/05 23:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/05 24:00:00,0.0,0.0,280.73777842562199,1010656.0023322391,0.0,6143235.769355498,1802015.8256776133 + 10/06 01:00:00,0.0,0.0,280.8958649185796,1011225.1137068865,0.0,6143235.769355498,1802015.8256776133 + 10/06 02:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/06 03:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 10/06 04:00:00,0.0,0.0,280.9934219866694,1011576.3191520098,0.0,6143235.769355498,1802015.8256776133 + 10/06 05:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 10/06 06:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 10/06 07:00:00,0.0,0.0,280.7157709094147,1010576.7752738929,0.0,6143235.769355498,1802015.8256776133 + 10/06 08:00:00,0.0,0.0,280.7157709094147,1010576.7752738929,0.0,6143235.769355498,1802015.8256776133 + 10/06 09:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 10/06 10:00:00,0.0,0.0,280.80080733612558,1010882.906410052,0.0,6143235.769355498,1802015.8256776133 + 10/06 11:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 10/06 12:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 10/06 13:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 10/06 14:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 10/06 15:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 10/06 16:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 10/06 17:00:00,0.0,0.0,280.13880586357467,1008499.7011088687,0.0,6143235.769355498,1802015.8256776133 + 10/06 18:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 10/06 19:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 10/06 20:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 10/06 21:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 10/06 22:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 10/06 23:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 10/06 24:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 10/07 01:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 10/07 02:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 10/07 03:00:00,0.0,0.0,279.74964730717979,1007098.7303058471,0.0,6143235.769355498,1802015.8256776133 + 10/07 04:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 10/07 05:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 10/07 06:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 10/07 07:00:00,288992397.8652911,15209131.506522794,279.03195645028156,289996912.9085121,15209131.506522794,6143235.769355498,1802015.8256776133 + 10/07 08:00:00,39182345.920003678,0.0,560.2776117271493,41199345.32222141,0.0,9214853.654033246,10812094.954065679 + 10/07 09:00:00,0.0,48242482.49632536,2805.7326311139097,10100637.472010075,48242482.49632536,24572943.077421994,28832253.210841814 + 10/07 10:00:00,0.0,65801077.894798558,2807.3777842562196,10106560.02332239,65801077.894798558,27644560.962099744,32436284.862197039 + 10/07 11:00:00,0.0,29453414.42758699,5056.7469652180429,18204289.074784955,29453414.42758699,27644560.962099744,32436284.862197039 + 10/07 12:00:00,0.0,13778711.488959648,5059.3128182887189,18213526.145839387,13778711.488959648,27644560.962099744,32436284.862197039 + 10/07 13:00:00,0.0,25421870.48918527,5060.715024960179,18218574.089856645,25421870.48918527,27644560.962099744,32436284.862197039 + 10/07 14:00:00,0.0,61949789.484302479,5061.774971387561,18222389.89699522,61949789.484302479,27644560.962099744,32436284.862197039 + 10/07 15:00:00,0.0,89913432.05915752,5061.653275959559,18221951.793454414,89913432.05915752,27644560.962099744,32436284.862197039 + 10/07 16:00:00,0.0,64151295.014437038,5061.697288956418,18222110.240243105,64151295.014437038,27644560.962099744,32436284.862197039 + 10/07 17:00:00,0.0,53133425.64022342,3936.75183540303,14172306.607450908,53133425.64022342,27644560.962099744,32436284.862197039 + 10/07 18:00:00,0.0,0.0,2812.097206326422,10123549.94277512,0.0,27644560.962099744,28832253.210841814 + 10/07 19:00:00,42176751.13764953,0.0,1687.128880515827,48250415.107506509,0.0,15358089.423388744,18020158.25677613 + 10/07 20:00:00,61046927.41163323,0.0,1124.5714239029567,65095384.537683878,0.0,9214853.654033246,10812094.954065679 + 10/07 21:00:00,65689059.38352503,0.0,1124.5714239029567,69737516.50957567,0.0,9214853.654033246,10812094.954065679 + 10/07 22:00:00,0.0,0.0,1124.7525870105517,4049109.3132379839,0.0,6143235.769355498,3604031.6513552267 + 10/07 23:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,3604031.6513552267 + 10/07 24:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 10/08 01:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 10/08 02:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 10/08 03:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 10/08 04:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 10/08 05:00:00,0.0,0.0,281.16996899770427,1012211.8883917353,0.0,6143235.769355498,1802015.8256776133 + 10/08 06:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 10/08 07:00:00,81996783.18036944,0.0,281.15624018925976,83008945.64505077,0.0,6143235.769355498,1802015.8256776133 + 10/08 08:00:00,0.0,25670016.563946904,562.0633091253594,2023427.9128512939,25670016.563946904,9214853.654033246,10812094.954065679 + 10/08 09:00:00,0.0,44166599.309641357,2809.892140175405,10115611.704631459,44166599.309641357,24572943.077421994,28832253.210841814 + 10/08 10:00:00,0.0,60360750.668464388,2804.6056246222676,10096580.248640163,60360750.668464388,27644560.962099744,32436284.862197039 + 10/08 11:00:00,0.0,58534554.29208693,5048.778356146993,18175602.082129178,58534554.29208693,27644560.962099744,32436284.862197039 + 10/08 12:00:00,0.0,44163363.8229423,5047.286873716784,18170232.74538042,44163363.8229423,27644560.962099744,32436284.862197039 + 10/08 13:00:00,0.0,42417230.42527562,5049.257652715951,18177327.549777423,42417230.42527562,27644560.962099744,32436284.862197039 + 10/08 14:00:00,0.0,15133888.208436154,5059.033926699838,18212522.136119419,15133888.208436154,27644560.962099744,32436284.862197039 + 10/08 15:00:00,0.0,407673.0750317858,5061.1694221599359,18220209.91977577,407673.0750317858,27644560.962099744,32436284.862197039 + 10/08 16:00:00,0.0,0.0,5060.940408660208,18219385.471176749,0.0,27644560.962099744,32436284.862197039 + 10/08 17:00:00,5410862.191073427,0.0,3935.718491230173,19579448.75950205,0.0,27644560.962099744,32436284.862197039 + 10/08 18:00:00,11699226.717187083,0.0,2811.227493735838,21819645.6946361,0.0,27644560.962099744,28832253.210841814 + 10/08 19:00:00,35187061.43001156,0.0,1686.678721289117,41259104.826652389,0.0,15358089.423388744,18020158.25677613 + 10/08 20:00:00,46735620.64748779,0.0,1124.1791933674054,50782665.74361044,0.0,9214853.654033246,10812094.954065679 + 10/08 21:00:00,43859298.91977249,0.0,1123.7690502481785,47904867.50066594,0.0,9214853.654033246,10812094.954065679 + 10/08 22:00:00,0.0,0.0,1123.8336560688118,4045801.1618477224,0.0,6143235.769355498,3604031.6513552267 + 10/08 23:00:00,0.0,0.0,280.9740645524247,1011506.632388729,0.0,6143235.769355498,3604031.6513552267 + 10/08 24:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 10/09 01:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 10/09 02:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 10/09 03:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 10/09 04:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 10/09 05:00:00,0.0,0.0,280.9629063952934,1011466.463023056,0.0,6143235.769355498,1802015.8256776133 + 10/09 06:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 10/09 07:00:00,218193562.54846946,6563555.21715157,280.62275711068,219203804.47406794,6563555.21715157,6143235.769355498,1802015.8256776133 + 10/09 08:00:00,59626252.32220756,0.0,562.1458686987464,61649977.449523057,0.0,9214853.654033246,10812094.954065679 + 10/09 09:00:00,0.0,0.0,2809.9342198666929,10115763.191520095,0.0,24572943.077421994,28832253.210841814 + 10/09 10:00:00,0.0,0.0,2809.629063952934,10114664.630230563,0.0,27644560.962099744,32436284.862197039 + 10/09 11:00:00,0.0,0.0,5057.611465444289,18207401.27559944,0.0,27644560.962099744,32436284.862197039 + 10/09 12:00:00,0.0,0.0,5057.881595760049,18208373.744736177,0.0,27644560.962099744,32436284.862197039 + 10/09 13:00:00,0.0,0.0,5057.0441474515259,18205358.93082549,0.0,27644560.962099744,32436284.862197039 + 10/09 14:00:00,0.0,0.0,5053.280011661195,18191808.041980305,0.0,27644560.962099744,32436284.862197039 + 10/09 15:00:00,0.0,0.0,5052.883876369465,18190381.954930076,0.0,27644560.962099744,32436284.862197039 + 10/09 16:00:00,5189277.53990778,0.0,5054.04534317334,23383840.77533181,0.0,27644560.962099744,32436284.862197039 + 10/09 17:00:00,15881582.22568956,0.0,3926.1716347177887,30015800.1106736,0.0,27644560.962099744,32436284.862197039 + 10/09 18:00:00,56652031.012629527,0.0,2801.388058635746,66737028.02371821,0.0,27644560.962099744,28832253.210841814 + 10/09 19:00:00,87975151.10581124,0.0,1680.4348471162123,94024716.55542962,0.0,15358089.423388744,18020158.25677613 + 10/09 20:00:00,110406721.9667617,0.0,1118.3737238554043,114432867.37264115,0.0,9214853.654033246,10812094.954065679 + 10/09 21:00:00,117993754.45501974,0.0,1117.5487503229477,122016929.95618236,0.0,9214853.654033246,10812094.954065679 + 10/09 22:00:00,0.0,0.0,1117.717638205332,4023783.4975391945,0.0,6143235.769355498,3604031.6513552267 + 10/09 23:00:00,0.0,0.0,279.1687983373994,1005007.6740146378,0.0,6143235.769355498,3604031.6513552267 + 10/09 24:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 10/10 01:00:00,0.0,0.0,278.8907726739134,1004006.7816260882,0.0,6143235.769355498,1802015.8256776133 + 10/10 02:00:00,0.0,0.0,277.3660442256075,998517.7592121869,0.0,6143235.769355498,1802015.8256776133 + 10/10 03:00:00,0.0,0.0,277.05493926158837,997397.781341718,0.0,6143235.769355498,1802015.8256776133 + 10/10 04:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 10/10 05:00:00,0.0,0.0,276.3980475023251,995032.9710083703,0.0,6143235.769355498,1802015.8256776133 + 10/10 06:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 10/10 07:00:00,357679153.98969069,15973156.968481578,278.0093273533083,358679987.56816259,15973156.968481578,6143235.769355498,1802015.8256776133 + 10/10 08:00:00,20032215.18020209,0.0,558.1561068721599,22041577.16494187,0.0,9214853.654033246,10812094.954065679 + 10/10 09:00:00,0.0,54999148.49137626,2801.388058635746,10084997.011088686,54999148.49137626,24572943.077421994,28832253.210841814 + 10/10 10:00:00,0.0,65725588.625180829,2803.5541832889227,10092795.05984012,65725588.625180829,27644560.962099744,32436284.862197039 + 10/10 11:00:00,0.0,40320335.91598637,5048.915283959974,18176095.022255906,40320335.91598637,27644560.962099744,32436284.862197039 + 10/10 12:00:00,0.0,20144391.613691994,5048.915283959974,18176095.022255906,20144391.613691994,27644560.962099744,32436284.862197039 + 10/10 13:00:00,0.0,35649471.66631287,5051.20962799224,18184354.660772064,35649471.66631287,27644560.962099744,32436284.862197039 + 10/10 14:00:00,0.0,85008146.35785809,5056.7469652180429,18204289.074784955,85008146.35785809,27644560.962099744,32436284.862197039 + 10/10 15:00:00,0.0,126348641.10606604,5057.0441474515259,18205358.93082549,126348641.10606604,27644560.962099744,32436284.862197039 + 10/10 16:00:00,0.0,133677300.21928349,5057.0441474515259,18205358.93082549,133677300.21928349,27644560.962099744,32436284.862197039 + 10/10 17:00:00,0.0,81782646.80419384,3926.9341097466456,14136962.795087925,81782646.80419384,27644560.962099744,32436284.862197039 + 10/10 18:00:00,15568616.842507605,0.0,2795.93430963851,25633980.35720624,0.0,27644560.962099744,28832253.210841814 + 10/10 19:00:00,70160780.81333575,0.0,1676.3231254844216,76195544.06507966,0.0,15358089.423388744,18020158.25677613 + 10/10 20:00:00,92383939.8684026,0.0,1116.8537815288258,96404613.48190637,0.0,9214853.654033246,10812094.954065679 + 10/10 21:00:00,97316604.74548239,0.0,1117.5487503229477,101339780.24664502,0.0,9214853.654033246,10812094.954065679 + 10/10 22:00:00,0.0,0.0,1113.555845341832,4008801.0432305929,0.0,6143235.769355498,3604031.6513552267 + 10/10 23:00:00,0.0,0.0,279.429409551333,1005945.8743847988,0.0,6143235.769355498,3604031.6513552267 + 10/10 24:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 10/11 01:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 10/11 02:00:00,0.0,0.0,279.1687983373994,1005007.6740146377,0.0,6143235.769355498,1802015.8256776133 + 10/11 03:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 10/11 04:00:00,0.0,0.0,278.98537702925816,1004347.3573053293,0.0,6143235.769355498,1802015.8256776133 + 10/11 05:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 10/11 06:00:00,0.0,0.0,278.4412937984862,1002388.6576745503,0.0,6143235.769355498,1802015.8256776133 + 10/11 07:00:00,292224979.0044208,13734603.031613512,279.1687983373995,293229986.67843547,13734603.031613512,6143235.769355498,1802015.8256776133 + 10/11 08:00:00,19762572.408835915,284340.6290559797,560.1449490387374,21779094.225375367,284340.6290559797,9214853.654033246,10812094.954065679 + 10/11 09:00:00,0.0,74021168.79461955,2806.4675767898636,10103283.276443508,74021168.79461955,24572943.077421994,28832253.210841814 + 10/11 10:00:00,0.0,76901186.70802246,2809.629063952934,10114664.630230563,76901186.70802246,27644560.962099744,32436284.862197039 + 10/11 11:00:00,0.0,57365536.718600388,5061.732242735808,18222236.073848908,57365536.718600388,27644560.962099744,32436284.862197039 + 10/11 12:00:00,0.0,47366676.6683038,5060.529002037268,18217904.407334165,47366676.6683038,27644560.962099744,32436284.862197039 + 10/11 13:00:00,0.0,65381999.83919959,5060.036163867351,18216130.189922465,65381999.83919959,27644560.962099744,32436284.862197039 + 10/11 14:00:00,0.0,110616836.86352977,5058.069520809388,18209050.2749138,110616836.86352977,27644560.962099744,32436284.862197039 + 10/11 15:00:00,0.0,147801713.26337324,5059.461936710032,18214062.972156116,147801713.26337324,27644560.962099744,32436284.862197039 + 10/11 16:00:00,0.0,146114189.28212724,5060.373768639913,18217345.567103685,146114189.28212724,27644560.962099744,32436284.862197039 + 10/11 17:00:00,0.0,92112354.30251655,3936.936088856991,14172969.919885168,92112354.30251655,27644560.962099744,32436284.862197039 + 10/11 18:00:00,2252307.7049412296,0.0,2809.629063952934,12366972.335171793,0.0,27644560.962099744,28832253.210841814 + 10/11 19:00:00,46677190.837734688,0.0,1685.6813824838417,52745643.81467651,0.0,15358089.423388744,18020158.25677613 + 10/11 20:00:00,60254352.94372457,0.0,1124.2917373974929,64301803.198355559,0.0,9214853.654033246,10812094.954065679 + 10/11 21:00:00,66002178.666149217,0.0,1123.5834596743185,70047079.12097676,0.0,9214853.654033246,10812094.954065679 + 10/11 22:00:00,0.0,0.0,1121.4216733155689,4037118.023936049,0.0,6143235.769355498,3604031.6513552267 + 10/11 23:00:00,0.0,0.0,280.26554942827348,1008955.9779417846,0.0,6143235.769355498,3604031.6513552267 + 10/11 24:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 10/12 01:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 10/12 02:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 10/12 03:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,1802015.8256776133 + 10/12 04:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 10/12 05:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 10/12 06:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 10/12 07:00:00,0.0,0.0,280.573263111391,1010063.7472010077,0.0,6143235.769355498,1802015.8256776133 + 10/12 08:00:00,0.0,0.0,280.9784147469049,1011522.2930888576,0.0,6143235.769355498,1802015.8256776133 + 10/12 09:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 10/12 10:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 10/12 11:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,1802015.8256776133 + 10/12 12:00:00,0.0,0.0,281.1029886517513,1011970.7591463046,0.0,6143235.769355498,1802015.8256776133 + 10/12 13:00:00,0.0,0.0,281.0316545626797,1011713.9564256469,0.0,6143235.769355498,1802015.8256776133 + 10/12 14:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 10/12 15:00:00,0.0,0.0,280.98921401754049,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 10/12 16:00:00,0.0,0.0,281.0923547814933,1011932.477213376,0.0,6143235.769355498,1802015.8256776133 + 10/12 17:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 10/12 18:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 10/12 19:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 10/12 20:00:00,0.0,0.0,281.1913907812245,1012289.0068124083,0.0,6143235.769355498,1802015.8256776133 + 10/12 21:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 10/12 22:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 10/12 23:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 10/12 24:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 10/13 01:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 10/13 02:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 10/13 03:00:00,0.0,0.0,281.1913907812245,1012289.0068124083,0.0,6143235.769355498,1802015.8256776133 + 10/13 04:00:00,0.0,0.0,281.18678995203217,1012272.4438273157,0.0,6143235.769355498,1802015.8256776133 + 10/13 05:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 10/13 06:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 10/13 07:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 10/13 08:00:00,0.0,0.0,281.2068468823897,1012344.6487766029,0.0,6143235.769355498,1802015.8256776133 + 10/13 09:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 10/13 10:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 10/13 11:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 10/13 12:00:00,0.0,0.0,281.1227493735838,1012041.8977449017,0.0,6143235.769355498,1802015.8256776133 + 10/13 13:00:00,0.0,0.0,281.0316545626797,1011713.9564256469,0.0,6143235.769355498,1802015.8256776133 + 10/13 14:00:00,0.0,0.0,280.8539970795126,1011074.3894862455,0.0,6143235.769355498,1802015.8256776133 + 10/13 15:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 10/13 16:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 10/13 17:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 10/13 18:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 10/13 19:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 10/13 20:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 10/13 21:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 10/13 22:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 10/13 23:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 10/13 24:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 10/14 01:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 10/14 02:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 10/14 03:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 10/14 04:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 10/14 05:00:00,0.0,0.0,280.9422625620446,1011392.1452233606,0.0,6143235.769355498,1802015.8256776133 + 10/14 06:00:00,0.0,0.0,280.9892140175405,1011561.1704631458,0.0,6143235.769355498,1802015.8256776133 + 10/14 07:00:00,83653192.349463,0.0,280.9584140172029,84664642.63992493,0.0,6143235.769355498,1802015.8256776133 + 10/14 08:00:00,44775788.20069926,0.0,561.2799943035332,46796396.18019198,0.0,9214853.654033246,10812094.954065679 + 10/14 09:00:00,0.0,0.0,2805.404449682231,10099456.018856032,0.0,24572943.077421994,28832253.210841814 + 10/14 10:00:00,0.0,1185159.4426380224,2805.404449682231,10099456.018856032,1185159.4426380224,27644560.962099744,32436284.862197039 + 10/14 11:00:00,0.0,11804323.830893413,5048.290124320082,18173844.447552299,11804323.830893413,27644560.962099744,32436284.862197039 + 10/14 12:00:00,0.0,32477521.648138718,5044.063180562568,18158627.450025247,32477521.648138718,27644560.962099744,32436284.862197039 + 10/14 13:00:00,0.0,46239005.944364767,5039.897805189829,18143632.098683388,46239005.944364767,27644560.962099744,32436284.862197039 + 10/14 14:00:00,0.0,51790933.626829978,5035.982265090377,18129536.15432536,51790933.626829978,27644560.962099744,32436284.862197039 + 10/14 15:00:00,0.0,49335917.5006077,5037.322763094742,18134361.947141075,49335917.5006077,27644560.962099744,32436284.862197039 + 10/14 16:00:00,0.0,39268016.30064269,5047.792961919891,18172054.66291161,39268016.30064269,27644560.962099744,32436284.862197039 + 10/14 17:00:00,0.0,11939348.315209024,3927.5662295551239,14139238.426398445,11939348.315209024,27644560.962099744,32436284.862197039 + 10/14 18:00:00,0.0,0.0,2808.1519024093865,10109346.84867379,0.0,27644560.962099744,28832253.210841814 + 10/14 19:00:00,16806512.035245457,0.0,1685.009061164119,22872544.655436286,0.0,15358089.423388744,18020158.25677613 + 10/14 20:00:00,38300012.501901898,0.0,1124.015449068753,42346468.11854941,0.0,9214853.654033246,10812094.954065679 + 10/14 21:00:00,47817597.01105075,0.0,1124.704316035541,51866532.548778709,0.0,9214853.654033246,10812094.954065679 + 10/14 22:00:00,0.0,0.0,1124.8337131441488,4049401.3673189368,0.0,6143235.769355498,3604031.6513552267 + 10/14 23:00:00,0.0,0.0,281.209506370816,1012354.2229349373,0.0,6143235.769355498,3604031.6513552267 + 10/14 24:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 10/15 01:00:00,0.0,0.0,281.1717540732248,1012218.3146636093,0.0,6143235.769355498,1802015.8256776133 + 10/15 02:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 10/15 03:00:00,0.0,0.0,280.91337618146386,1011288.1542532698,0.0,6143235.769355498,1802015.8256776133 + 10/15 04:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 10/15 05:00:00,0.0,0.0,280.69326480147586,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 10/15 06:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 10/15 07:00:00,204360833.7478964,8822543.570030574,280.6932648014759,205371329.5011817,8822543.570030574,6143235.769355498,1802015.8256776133 + 10/15 08:00:00,21054002.675340915,0.0,561.7557066718578,23076323.219359604,0.0,9214853.654033246,10812094.954065679 + 10/15 09:00:00,2114382.1879220779,0.0,2810.35435618958,12231657.870204565,0.0,24572943.077421994,28832253.210841814 + 10/15 10:00:00,0.0,0.0,2811.4285597573918,10121142.81512661,0.0,27644560.962099744,32436284.862197039 + 10/15 11:00:00,0.0,0.0,5061.19898414525,18220316.3429229,0.0,27644560.962099744,32436284.862197039 + 10/15 12:00:00,0.0,0.0,5061.297340536311,18220670.42593072,0.0,27644560.962099744,32436284.862197039 + 10/15 13:00:00,0.0,0.0,5061.466886321902,18221280.79075885,0.0,27644560.962099744,32436284.862197039 + 10/15 14:00:00,0.0,5457694.410814492,5061.685719150848,18222068.588943054,5457694.410814492,27644560.962099744,32436284.862197039 + 10/15 15:00:00,0.0,67395700.34555581,5061.774971387561,18222389.89699522,67395700.34555581,27644560.962099744,32436284.862197039 + 10/15 16:00:00,0.0,16828948.96073803,5061.297340536311,18220670.42593072,16828948.96073803,27644560.962099744,32436284.862197039 + 10/15 17:00:00,0.0,0.0,3935.999983660348,14169599.941177253,0.0,27644560.962099744,32436284.862197039 + 10/15 18:00:00,34978738.75744781,0.0,2806.4675767898636,45082022.03389132,0.0,27644560.962099744,28832253.210841814 + 10/15 19:00:00,74703969.92470469,0.0,1682.3063084366048,80760272.63507647,0.0,15358089.423388744,18020158.25677613 + 10/15 20:00:00,90008753.12243644,0.0,1122.0871208779993,94048266.75759724,0.0,9214853.654033246,10812094.954065679 + 10/15 21:00:00,89257611.91676136,0.0,1122.49102844272,93298579.61915514,0.0,9214853.654033246,10812094.954065679 + 10/15 22:00:00,0.0,0.0,1122.49102844272,4040967.7023937928,0.0,6143235.769355498,3604031.6513552267 + 10/15 23:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,3604031.6513552267 + 10/15 24:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 10/16 01:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/16 02:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 10/16 03:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 10/16 04:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 10/16 05:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 10/16 06:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 10/16 07:00:00,265613897.86943776,10347847.736624422,280.3843847394341,266623281.6544997,10347847.736624422,6143235.769355498,1802015.8256776133 + 10/16 08:00:00,88225141.88987223,0.0,560.9905871066637,90244708.0034562,0.0,9214853.654033246,10812094.954065679 + 10/16 09:00:00,35137427.68289082,0.0,2806.932648014759,45242385.215743947,0.0,24572943.077421994,28832253.210841814 + 10/16 10:00:00,20464567.86909254,0.0,2808.4032990742518,30574819.745759846,0.0,27644560.962099744,32436284.862197039 + 10/16 11:00:00,2505715.358246688,0.0,5057.332315115281,20712111.6926617,0.0,27644560.962099744,32436284.862197039 + 10/16 12:00:00,0.0,0.0,5057.332315115281,18206396.33441501,0.0,27644560.962099744,32436284.862197039 + 10/16 13:00:00,0.0,0.0,5059.906468914086,18215663.28809071,0.0,27644560.962099744,32436284.862197039 + 10/16 14:00:00,0.0,21236902.14360603,5060.571407563306,18218057.0672279,21236902.14360603,27644560.962099744,32436284.862197039 + 10/16 15:00:00,0.0,6299694.681206156,5060.418741752001,18217507.4703072,6299694.681206156,27644560.962099744,32436284.862197039 + 10/16 16:00:00,0.0,7683710.196144314,5060.849592564586,18219058.53323251,7683710.196144314,27644560.962099744,32436284.862197039 + 10/16 17:00:00,0.0,0.0,3935.0210808912249,14166075.891208409,0.0,27644560.962099744,32436284.862197039 + 10/16 18:00:00,20859891.112747298,0.0,2809.3038695655789,30973385.04318338,0.0,27644560.962099744,28832253.210841814 + 10/16 19:00:00,60327966.2370173,0.0,1684.924910529697,66393695.91492421,0.0,15358089.423388744,18020158.25677613 + 10/16 20:00:00,75225035.06434964,0.0,1123.5114133437158,79269676.15238701,0.0,9214853.654033246,10812094.954065679 + 10/16 21:00:00,74877936.50361806,0.0,1123.8516255811736,78923802.35571029,0.0,9214853.654033246,10812094.954065679 + 10/16 22:00:00,0.0,0.0,1123.9136589876198,4046089.17235543,0.0,6143235.769355498,3604031.6513552267 + 10/16 23:00:00,0.0,0.0,280.80080733612558,1010882.906410052,0.0,6143235.769355498,3604031.6513552267 + 10/16 24:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 10/17 01:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 10/17 02:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 10/17 03:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/17 04:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 10/17 05:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 10/17 06:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 10/17 07:00:00,242669154.1168431,10172019.099271901,280.3259567842677,243678327.56126643,10172019.099271901,6143235.769355498,1802015.8256776133 + 10/17 08:00:00,55586640.05924781,0.0,560.9905871066637,57606206.1728318,0.0,9214853.654033246,10812094.954065679 + 10/17 09:00:00,16146835.967119702,0.0,2806.2275711067998,26249255.22310418,0.0,24572943.077421994,28832253.210841814 + 10/17 10:00:00,8208925.688704184,0.0,2807.592871389315,18316260.025705719,0.0,27644560.962099744,32436284.862197039 + 10/17 11:00:00,0.0,0.0,5059.3128182887189,18213526.145839387,0.0,27644560.962099744,32436284.862197039 + 10/17 12:00:00,0.0,12540195.5462199,5060.715024960179,18218574.089856645,12540195.5462199,27644560.962099744,32436284.862197039 + 10/17 13:00:00,0.0,15250395.936987574,5061.091573318046,18219929.663944968,15250395.936987574,27644560.962099744,32436284.862197039 + 10/17 14:00:00,0.0,43486463.61219044,5061.091573318046,18219929.663944968,43486463.61219044,27644560.962099744,32436284.862197039 + 10/17 15:00:00,0.0,42996873.132866319,5060.975109085326,18219510.392707174,42996873.132866319,27644560.962099744,32436284.862197039 + 10/17 16:00:00,0.0,24590866.75453911,5060.257028991122,18216925.304368039,24590866.75453911,27644560.962099744,32436284.862197039 + 10/17 17:00:00,0.0,10487201.597362642,3934.3070558326915,14163505.400997689,10487201.597362642,27644560.962099744,32436284.862197039 + 10/17 18:00:00,18216478.92317626,0.0,2808.9586491857955,28328730.060245128,0.0,27644560.962099744,28832253.210841814 + 10/17 19:00:00,61683257.78606425,0.0,1685.5823217393473,67751354.14432591,0.0,15358089.423388744,18020158.25677613 + 10/17 20:00:00,78560976.01987994,0.0,1123.3613196297009,82605076.77054686,0.0,9214853.654033246,10812094.954065679 + 10/17 21:00:00,79670116.60877355,0.0,1123.7215478262315,83715514.18094798,0.0,9214853.654033246,10812094.954065679 + 10/17 22:00:00,0.0,0.0,1122.087120877999,4039513.635160797,0.0,6143235.769355498,3604031.6513552267 + 10/17 23:00:00,0.0,0.0,279.9339054363424,1007762.0595708325,0.0,6143235.769355498,3604031.6513552267 + 10/17 24:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 10/18 01:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 10/18 02:00:00,0.0,0.0,279.1687983373994,1005007.6740146377,0.0,6143235.769355498,1802015.8256776133 + 10/18 03:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 10/18 04:00:00,0.0,0.0,279.30128651813689,1005484.6314652927,0.0,6143235.769355498,1802015.8256776133 + 10/18 05:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 10/18 06:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 10/18 07:00:00,330494505.14850279,13504086.946537145,278.22910838435765,331496129.9386865,13504086.946537145,6143235.769355498,1802015.8256776133 + 10/18 08:00:00,20664243.799119679,0.0,559.0247886909672,22676733.038407159,0.0,9214853.654033246,10812094.954065679 + 10/18 09:00:00,0.0,51772588.949723947,2802.96000388249,10090656.013976966,51772588.949723947,24572943.077421994,28832253.210841814 + 10/18 10:00:00,0.0,73899540.12097872,2806.4675767898636,10103283.276443508,73899540.12097872,27644560.962099744,32436284.862197039 + 10/18 11:00:00,0.0,48851989.48819089,5055.468148914055,18199685.3360906,48851989.48819089,27644560.962099744,32436284.862197039 + 10/18 12:00:00,0.0,27342937.729006608,5058.142703470613,18209313.732494207,27342937.729006608,27644560.962099744,32436284.862197039 + 10/18 13:00:00,0.0,44447328.585350017,5058.142703470613,18209313.732494207,44447328.585350017,27644560.962099744,32436284.862197039 + 10/18 14:00:00,0.0,89785587.14138428,5060.571407563306,18218057.0672279,89785587.14138428,27644560.962099744,32436284.862197039 + 10/18 15:00:00,0.0,120957318.48752171,5061.19898414525,18220316.3429229,120957318.48752171,27644560.962099744,32436284.862197039 + 10/18 16:00:00,0.0,119118472.88051605,5060.571407563306,18218057.0672279,119118472.88051605,27644560.962099744,32436284.862197039 + 10/18 17:00:00,0.0,58074794.08886014,3931.4914579026255,14153369.248449453,58074794.08886014,27644560.962099744,32436284.862197039 + 10/18 18:00:00,10537467.805199676,0.0,2804.408310512706,20633337.723045418,0.0,27644560.962099744,28832253.210841814 + 10/18 19:00:00,56904062.62084898,0.0,1684.1595888088553,62967037.140560869,0.0,15358089.423388744,18020158.25677613 + 10/18 20:00:00,70674109.2139808,0.0,1123.2832736864646,74717928.99925207,0.0,9214853.654033246,10812094.954065679 + 10/18 21:00:00,73376403.82495478,0.0,1123.0371485557262,77419337.55975539,0.0,9214853.654033246,10812094.954065679 + 10/18 22:00:00,0.0,0.0,1120.8126599596968,4034925.5758549098,0.0,6143235.769355498,3604031.6513552267 + 10/18 23:00:00,0.0,0.0,280.0724745193687,1008260.9082697274,0.0,6143235.769355498,3604031.6513552267 + 10/18 24:00:00,0.0,0.0,280.2346041965235,1008844.5751074846,0.0,6143235.769355498,1802015.8256776133 + 10/19 01:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 10/19 02:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 10/19 03:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 10/19 04:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 10/19 05:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 10/19 06:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 10/19 07:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 10/19 08:00:00,0.0,0.0,280.44083105127086,1009586.9917845745,0.0,6143235.769355498,1802015.8256776133 + 10/19 09:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 10/19 10:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 10/19 11:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 10/19 12:00:00,0.0,0.0,281.1633560366783,1012188.0817320419,0.0,6143235.769355498,1802015.8256776133 + 10/19 13:00:00,0.0,0.0,280.9584140172029,1011450.2904619306,0.0,6143235.769355498,1802015.8256776133 + 10/19 14:00:00,0.0,0.0,280.79503740884595,1010862.1346718452,0.0,6143235.769355498,1802015.8256776133 + 10/19 15:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 10/19 16:00:00,0.0,0.0,280.87265071363529,1011141.542569087,0.0,6143235.769355498,1802015.8256776133 + 10/19 17:00:00,0.0,0.0,281.14050011318155,1012105.8004074537,0.0,6143235.769355498,1802015.8256776133 + 10/19 18:00:00,0.0,0.0,281.1253904995069,1012051.4057982243,0.0,6143235.769355498,1802015.8256776133 + 10/19 19:00:00,0.0,0.0,280.93038695655789,1011349.3930436082,0.0,6143235.769355498,1802015.8256776133 + 10/19 20:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 10/19 21:00:00,0.0,0.0,281.2000113426414,1012320.0408335091,0.0,6143235.769355498,1802015.8256776133 + 10/19 22:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 10/19 23:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 10/19 24:00:00,0.0,0.0,281.14285597573919,1012114.281512661,0.0,6143235.769355498,1802015.8256776133 + 10/20 01:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 10/20 02:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/20 03:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/20 04:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 10/20 05:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 10/20 06:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,1802015.8256776133 + 10/20 07:00:00,0.0,0.0,280.412855737955,1009486.280656638,0.0,6143235.769355498,1802015.8256776133 + 10/20 08:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 10/20 09:00:00,0.0,0.0,281.14285597573919,1012114.2815126611,0.0,6143235.769355498,1802015.8256776133 + 10/20 10:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 10/20 11:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 10/20 12:00:00,0.0,0.0,281.14050011318155,1012105.8004074536,0.0,6143235.769355498,1802015.8256776133 + 10/20 13:00:00,0.0,0.0,281.00386226718828,1011613.9041618777,0.0,6143235.769355498,1802015.8256776133 + 10/20 14:00:00,0.0,0.0,280.9256103419261,1011332.1972309338,0.0,6143235.769355498,1802015.8256776133 + 10/20 15:00:00,0.0,0.0,280.89080425073606,1011206.8953026497,0.0,6143235.769355498,1802015.8256776133 + 10/20 16:00:00,0.0,0.0,280.97406455242477,1011506.6323887291,0.0,6143235.769355498,1802015.8256776133 + 10/20 17:00:00,0.0,0.0,281.14862152372668,1012135.0374854159,0.0,6143235.769355498,1802015.8256776133 + 10/20 18:00:00,0.0,0.0,281.2100811263814,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 10/20 19:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 10/20 20:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 10/20 21:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 10/20 22:00:00,0.0,0.0,281.1881467526378,1012277.328309496,0.0,6143235.769355498,1802015.8256776133 + 10/20 23:00:00,0.0,0.0,281.1717540732248,1012218.3146636093,0.0,6143235.769355498,1802015.8256776133 + 10/20 24:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 10/21 01:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/21 02:00:00,0.0,0.0,280.91337618146386,1011288.1542532698,0.0,6143235.769355498,1802015.8256776133 + 10/21 03:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 10/21 04:00:00,0.0,0.0,281.19655967164507,1012307.6148179221,0.0,6143235.769355498,1802015.8256776133 + 10/21 05:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 10/21 06:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 10/21 07:00:00,171566734.5697627,3762700.474267379,281.20842828603727,172579084.91159246,3762700.474267379,6143235.769355498,1802015.8256776133 + 10/21 08:00:00,65710051.56849711,0.0,562.4136937647794,67734740.8660503,0.0,9214853.654033246,10812094.954065679 + 10/21 09:00:00,19953504.74903568,0.0,2812.068468823897,30076951.23680171,0.0,24572943.077421994,28832253.210841814 + 10/21 10:00:00,8848447.327478698,0.0,2812.097206326422,18971997.270253816,0.0,27644560.962099744,32436284.862197039 + 10/21 11:00:00,10547595.672830603,0.0,5061.782745849934,28770013.557890368,0.0,27644560.962099744,32436284.862197039 + 10/21 12:00:00,4631855.826313439,0.0,5061.723243883015,22854059.504292296,0.0,27644560.962099744,32436284.862197039 + 10/21 13:00:00,1868102.6163231875,0.0,5061.583492814135,20089803.190454075,0.0,27644560.962099744,32436284.862197039 + 10/21 14:00:00,626083.9773129614,0.0,5060.373768639913,18843429.544416645,0.0,27644560.962099744,32436284.862197039 + 10/21 15:00:00,0.0,26731559.712310744,5060.529002037267,18217904.407334165,26731559.712310744,27644560.962099744,32436284.862197039 + 10/21 16:00:00,0.0,80595412.95144472,5059.853795731523,18215473.664633484,80595412.95144472,27644560.962099744,32436284.862197039 + 10/21 17:00:00,0.0,29535350.104016618,3936.7871610776599,14172433.779879576,29535350.104016618,27644560.962099744,32436284.862197039 + 10/21 18:00:00,970524.5072781637,0.0,2811.9548845502597,11093562.091659099,0.0,27644560.962099744,28832253.210841814 + 10/21 19:00:00,40099509.5715217,0.0,1687.2570382248958,46173634.909131329,0.0,15358089.423388744,18020158.25677613 + 10/21 20:00:00,64683978.43554208,0.0,1124.2917373974929,68731428.69017305,0.0,9214853.654033246,10812094.954065679 + 10/21 21:00:00,74520530.70769656,0.0,1124.0317118823583,78567044.87047304,0.0,9214853.654033246,10812094.954065679 + 10/21 22:00:00,0.0,0.0,1122.587030715945,4041313.3105774039,0.0,6143235.769355498,3604031.6513552267 + 10/21 23:00:00,0.0,0.0,280.73777842562199,1010656.0023322391,0.0,6143235.769355498,3604031.6513552267 + 10/21 24:00:00,0.0,0.0,280.8593416063364,1011093.629782811,0.0,6143235.769355498,1802015.8256776133 + 10/22 01:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 10/22 02:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 10/22 03:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 10/22 04:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 10/22 05:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/22 06:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/22 07:00:00,237918019.00010599,8665896.78205278,280.62275711068,238928260.92570446,8665896.78205278,6143235.769355498,1802015.8256776133 + 10/22 08:00:00,47074865.7832414,0.0,561.7557066718579,49097186.327260088,0.0,9214853.654033246,10812094.954065679 + 10/22 09:00:00,0.0,9193035.045550442,2810.9542360897864,10119435.249923232,9193035.045550442,24572943.077421994,28832253.210841814 + 10/22 10:00:00,0.0,42416084.620320368,2811.9548845502597,10123037.584380934,42416084.620320368,27644560.962099744,32436284.862197039 + 10/22 11:00:00,0.0,64826556.43849548,5058.324164894676,18209966.993620837,64826556.43849548,27644560.962099744,32436284.862197039 + 10/22 12:00:00,0.0,60524835.14276439,5053.938934040014,18194180.16254405,60524835.14276439,27644560.962099744,32436284.862197039 + 10/22 13:00:00,0.0,78595078.22542878,5051.085395720441,18183907.424593588,78595078.22542878,27644560.962099744,32436284.862197039 + 10/22 14:00:00,0.0,97087628.13627839,5045.715103277994,18164574.371800778,97087628.13627839,27644560.962099744,32436284.862197039 + 10/22 15:00:00,0.0,95114699.36806467,5046.2479394114529,18166492.58188123,95114699.36806467,27644560.962099744,32436284.862197039 + 10/22 16:00:00,0.0,49925663.17998651,5049.728009428017,18179020.83394086,49925663.17998651,27644560.962099744,32436284.862197039 + 10/22 17:00:00,0.0,22228018.521689528,3932.2171099908935,14155981.595967217,22228018.521689528,27644560.962099744,32436284.862197039 + 10/22 18:00:00,0.0,379794.57516949667,2808.539970795126,10110743.894862455,379794.57516949667,27644560.962099744,28832253.210841814 + 10/22 19:00:00,0.0,0.0,1685.2359042818117,6066849.255414521,0.0,15358089.423388744,18020158.25677613 + 10/22 20:00:00,26884886.491145538,0.0,1123.896258209699,30930913.020700456,0.0,9214853.654033246,10812094.954065679 + 10/22 21:00:00,31967932.343924289,0.0,1124.1266182507189,36014788.16962687,0.0,9214853.654033246,10812094.954065679 + 10/22 22:00:00,0.0,0.0,1124.1791933674054,4047045.0961226599,0.0,6143235.769355498,3604031.6513552267 + 10/22 23:00:00,0.0,0.0,281.0316545626797,1011713.9564256469,0.0,6143235.769355498,3604031.6513552267 + 10/22 24:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 10/23 01:00:00,0.0,0.0,280.68678699882136,1010472.4331957568,0.0,6143235.769355498,1802015.8256776133 + 10/23 02:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 10/23 03:00:00,0.0,0.0,280.73158359615487,1010633.7009461575,0.0,6143235.769355498,1802015.8256776133 + 10/23 04:00:00,0.0,0.0,280.6399971517666,1010303.9897463597,0.0,6143235.769355498,1802015.8256776133 + 10/23 05:00:00,0.0,0.0,280.4876864526107,1009755.6712293986,0.0,6143235.769355498,1802015.8256776133 + 10/23 06:00:00,0.0,0.0,280.51431403977508,1009851.5305431902,0.0,6143235.769355498,1802015.8256776133 + 10/23 07:00:00,71059163.53909344,0.0,280.77438522444529,72069951.32590145,0.0,6143235.769355498,1802015.8256776133 + 10/23 08:00:00,19673946.18509174,0.0,560.8096526351982,21692860.934578457,0.0,9214853.654033246,10812094.954065679 + 10/23 09:00:00,0.0,49899068.51535116,2804.0482631759907,10094573.747433566,49899068.51535116,24572943.077421994,28832253.210841814 + 10/23 10:00:00,0.0,109085790.36146096,2806.636411210623,10103891.080358243,109085790.36146096,27644560.962099744,32436284.862197039 + 10/23 11:00:00,0.0,45079267.767665859,5057.805852315729,18208101.068336626,45079267.767665859,27644560.962099744,32436284.862197039 + 10/23 12:00:00,0.0,34608422.99009607,5061.1694221599359,18220209.91977577,34608422.99009607,27644560.962099744,32436284.862197039 + 10/23 13:00:00,0.0,31589863.798375995,5061.685719150848,18222068.588943054,31589863.798375995,27644560.962099744,32436284.862197039 + 10/23 14:00:00,0.0,19664223.04927358,5061.685719150848,18222068.588943054,19664223.04927358,27644560.962099744,32436284.862197039 + 10/23 15:00:00,0.0,20735362.521140066,5061.771114674688,18222376.012828877,20735362.521140066,27644560.962099744,32436284.862197039 + 10/23 16:00:00,0.0,24403525.31013688,5061.732242735808,18222236.073848908,24403525.31013688,27644560.962099744,32436284.862197039 + 10/23 17:00:00,0.0,2919944.625299719,3936.8001587969795,14172480.571669126,2919944.625299719,27644560.962099744,32436284.862197039 + 10/23 18:00:00,17678403.33277383,0.0,2810.729343493732,27797028.96935126,0.0,27644560.962099744,28832253.210841814 + 10/23 19:00:00,55181155.409965489,0.0,1685.5823217393473,61249251.76822714,0.0,15358089.423388744,18020158.25677613 + 10/23 20:00:00,73312571.9482705,0.0,1123.7875883225607,77358207.26623172,0.0,9214853.654033246,10812094.954065679 + 10/23 21:00:00,74387441.53503397,0.0,1123.7215478262315,78432839.1072084,0.0,9214853.654033246,10812094.954065679 + 10/23 22:00:00,0.0,0.0,1122.087120877999,4039513.635160797,0.0,6143235.769355498,3604031.6513552267 + 10/23 23:00:00,0.0,0.0,280.0041735031458,1008015.0246113248,0.0,6143235.769355498,3604031.6513552267 + 10/23 24:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 10/24 01:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,1802015.8256776133 + 10/24 02:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 10/24 03:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 10/24 04:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 10/24 05:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 10/24 06:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 10/24 07:00:00,296444882.52148678,11650572.368584484,279.8980345988183,297452515.4460425,11650572.368584484,6143235.769355498,1802015.8256776133 + 10/24 08:00:00,68305460.32684672,0.0,560.4063299798486,70322923.11477417,0.0,9214853.654033246,10812094.954065679 + 10/24 09:00:00,0.0,0.0,2805.477701553122,10099719.72559124,0.0,24572943.077421994,28832253.210841814 + 10/24 10:00:00,0.0,0.0,2804.12855737955,10094862.80656638,0.0,27644560.962099744,32436284.862197039 + 10/24 11:00:00,0.0,0.0,5050.768659176276,18182767.173034595,0.0,27644560.962099744,32436284.862197039 + 10/24 12:00:00,0.0,0.0,5056.7469652180429,18204289.074784955,0.0,27644560.962099744,32436284.862197039 + 10/24 13:00:00,0.0,14624582.460143738,5056.7469652180429,18204289.074784955,14624582.460143738,27644560.962099744,32436284.862197039 + 10/24 14:00:00,0.0,49727348.59984558,5058.394786070604,18210221.229854175,49727348.59984558,27644560.962099744,32436284.862197039 + 10/24 15:00:00,0.0,95196580.1193437,5058.871866350375,18211938.71886135,95196580.1193437,27644560.962099744,32436284.862197039 + 10/24 16:00:00,0.0,96652056.07182044,5057.332315115281,18206396.33441501,96652056.07182044,27644560.962099744,32436284.862197039 + 10/24 17:00:00,0.0,29984944.28623069,3926.1716347177887,14134217.884984039,29984944.28623069,27644560.962099744,32436284.862197039 + 10/24 18:00:00,30700540.630216227,0.0,2801.388058635746,40785537.64130491,0.0,27644560.962099744,28832253.210841814 + 10/24 19:00:00,73328880.35348909,0.0,1680.4348471162123,79378445.80310746,0.0,15358089.423388744,18020158.25677613 + 10/24 20:00:00,98181877.96312061,0.0,1117.030433001477,102203187.52192591,0.0,9214853.654033246,10812094.954065679 + 10/24 21:00:00,107737809.47596686,0.0,1116.4946701773779,111757190.28860542,0.0,9214853.654033246,10812094.954065679 + 10/24 22:00:00,0.0,0.0,1116.3122137443202,4018723.9694795517,0.0,6143235.769355498,3604031.6513552267 + 10/24 23:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,3604031.6513552267 + 10/24 24:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 10/25 01:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 10/25 02:00:00,0.0,0.0,278.98537702925816,1004347.3573053293,0.0,6143235.769355498,1802015.8256776133 + 10/25 03:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 10/25 04:00:00,0.0,0.0,277.4268682327064,998736.725637743,0.0,6143235.769355498,1802015.8256776133 + 10/25 05:00:00,0.0,0.0,277.118089595552,997625.1225439872,0.0,6143235.769355498,1802015.8256776133 + 10/25 06:00:00,0.0,0.0,277.6654881510703,999595.757343853,0.0,6143235.769355498,1802015.8256776133 + 10/25 07:00:00,370297100.285663,14083784.481879555,278.38896133545787,371299300.54647067,14083784.481879555,6143235.769355498,1802015.8256776133 + 10/25 08:00:00,25327730.097377957,0.0,559.6496420729166,27342468.808840455,0.0,9214853.654033246,10812094.954065679 + 10/25 09:00:00,0.0,52017207.20455542,2805.477701553122,10099719.72559124,52017207.20455542,24572943.077421994,28832253.210841814 + 10/25 10:00:00,0.0,65364171.18691358,2808.2081842161617,10109549.463178182,65364171.18691358,27644560.962099744,32436284.862197039 + 10/25 11:00:00,0.0,47260445.8618049,5061.386641547481,18220991.909570934,47260445.8618049,27644560.962099744,32436284.862197039 + 10/25 12:00:00,0.0,34950318.24929003,5061.782745849934,18222417.885059764,34950318.24929003,27644560.962099744,32436284.862197039 + 10/25 13:00:00,0.0,50793762.239573728,5061.362219136579,18220903.988891689,50793762.239573728,27644560.962099744,32436284.862197039 + 10/25 14:00:00,0.0,89452719.630628,5061.1694221599359,18220209.91977577,89452719.630628,27644560.962099744,32436284.862197039 + 10/25 15:00:00,0.0,115514716.72576398,5061.059441958677,18219813.991051239,115514716.72576398,27644560.962099744,32436284.862197039 + 10/25 16:00:00,0.0,102273516.00127067,5061.751709148671,18222306.152935216,102273516.00127067,27644560.962099744,32436284.862197039 + 10/25 17:00:00,0.0,34174562.63891764,3936.6964671392568,14172107.281701325,34174562.63891764,27644560.962099744,32436284.862197039 + 10/25 18:00:00,3677009.511697233,0.0,2811.159039351295,13797182.053361895,0.0,27644560.962099744,28832253.210841814 + 10/25 19:00:00,53372198.48878072,0.0,1684.8048440167534,59437495.927241038,0.0,15358089.423388744,18020158.25677613 + 10/25 20:00:00,76789893.38235817,0.0,1122.5870307159456,80831206.69293557,0.0,9214853.654033246,10812094.954065679 + 10/25 21:00:00,83056534.04305825,0.0,1121.9811742133275,87095666.27022623,0.0,9214853.654033246,10812094.954065679 + 10/25 22:00:00,0.0,0.0,1122.3930353725055,4040614.927341019,0.0,6143235.769355498,3604031.6513552267 + 10/25 23:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,3604031.6513552267 + 10/25 24:00:00,0.0,0.0,280.1388058635746,1008499.7011088687,0.0,6143235.769355498,1802015.8256776133 + 10/26 01:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 10/26 02:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 10/26 03:00:00,0.0,0.0,280.2346041965235,1008844.5751074846,0.0,6143235.769355498,1802015.8256776133 + 10/26 04:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 10/26 05:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 10/26 06:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 10/26 07:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 10/26 08:00:00,0.0,0.0,280.3259567842678,1009173.4444233637,0.0,6143235.769355498,1802015.8256776133 + 10/26 09:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 10/26 10:00:00,0.0,0.0,280.87785333592896,1011160.2720093442,0.0,6143235.769355498,1802015.8256776133 + 10/26 11:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 10/26 12:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 10/26 13:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 10/26 14:00:00,0.0,0.0,281.18168601159467,1012254.0696417408,0.0,6143235.769355498,1802015.8256776133 + 10/26 15:00:00,0.0,0.0,281.19548845502598,1012303.7584380934,0.0,6143235.769355498,1802015.8256776133 + 10/26 16:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 10/26 17:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 10/26 18:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 10/26 19:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 10/26 20:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 10/26 21:00:00,0.0,0.0,280.73777842562199,1010656.0023322391,0.0,6143235.769355498,1802015.8256776133 + 10/26 22:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 10/26 23:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 10/26 24:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 10/27 01:00:00,0.0,0.0,280.2346041965235,1008844.5751074846,0.0,6143235.769355498,1802015.8256776133 + 10/27 02:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 10/27 03:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 10/27 04:00:00,0.0,0.0,280.2346041965235,1008844.5751074846,0.0,6143235.769355498,1802015.8256776133 + 10/27 05:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 10/27 06:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 10/27 07:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 10/27 08:00:00,0.0,0.0,280.9934219866694,1011576.3191520098,0.0,6143235.769355498,1802015.8256776133 + 10/27 09:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/27 10:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 10/27 11:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 10/27 12:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 10/27 13:00:00,0.0,0.0,281.1926047956612,1012293.3772643805,0.0,6143235.769355498,1802015.8256776133 + 10/27 14:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 10/27 15:00:00,0.0,0.0,281.2054049420232,1012339.4577912836,0.0,6143235.769355498,1802015.8256776133 + 10/27 16:00:00,0.0,0.0,281.12539049950677,1012051.4057982243,0.0,6143235.769355498,1802015.8256776133 + 10/27 17:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 10/27 18:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 10/27 19:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/27 20:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/27 21:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/27 22:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/27 23:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/27 24:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 10/28 01:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/28 02:00:00,0.0,0.0,281.06093663624906,1011819.3718904966,0.0,6143235.769355498,1802015.8256776133 + 10/28 03:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/28 04:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/28 05:00:00,0.0,0.0,281.06093663624906,1011819.3718904966,0.0,6143235.769355498,1802015.8256776133 + 10/28 06:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 10/28 07:00:00,202866458.228756,7642548.641974951,281.06093663624906,203878277.6006465,7642548.641974951,6143235.769355498,1802015.8256776133 + 10/28 08:00:00,77930565.4220609,0.0,562.1218732724981,79954204.16584189,0.0,9214853.654033246,10812094.954065679 + 10/28 09:00:00,18161346.286933796,0.0,2811.343745417778,28282183.7704378,0.0,24572943.077421994,28832253.210841814 + 10/28 10:00:00,0.0,0.0,2811.926047956612,10122933.772643803,0.0,27644560.962099744,32436284.862197039 + 10/28 11:00:00,0.0,5512778.142233878,5061.685719150848,18222068.588943054,5512778.142233878,27644560.962099744,32436284.862197039 + 10/28 12:00:00,0.0,3357317.2551884225,5061.774971387561,18222389.89699522,3357317.2551884225,27644560.962099744,32436284.862197039 + 10/28 13:00:00,0.0,0.0,5061.771114674688,18222376.012828877,0.0,27644560.962099744,32436284.862197039 + 10/28 14:00:00,0.0,0.0,5061.518792190468,18221467.651885686,0.0,27644560.962099744,32436284.862197039 + 10/28 15:00:00,0.0,0.0,5061.653275959559,18221951.793454414,0.0,27644560.962099744,32436284.862197039 + 10/28 16:00:00,1146261.9786389173,0.0,5061.386641547481,19367253.88820985,0.0,27644560.962099744,32436284.862197039 + 10/28 17:00:00,18218495.63776205,0.0,3936.4045570251466,32389552.043052578,0.0,27644560.962099744,32436284.862197039 + 10/28 18:00:00,27891612.246660964,0.0,2811.6528383807369,38013562.46483161,0.0,27644560.962099744,28832253.210841814 + 10/28 19:00:00,53003095.08302055,0.0,1687.0305244393488,59076404.971002209,0.0,15358089.423388744,18020158.25677613 + 10/28 20:00:00,67094213.532998267,0.0,1124.6332427921303,71142893.20704994,0.0,9214853.654033246,10812094.954065679 + 10/28 21:00:00,73263719.43815865,0.0,1124.193748077861,77310816.93123895,0.0,9214853.654033246,10812094.954065679 + 10/28 22:00:00,0.0,0.0,1124.0317118823585,4046514.1627764895,0.0,6143235.769355498,3604031.6513552267 + 10/28 23:00:00,0.0,0.0,281.00792797058957,1011628.5406941223,0.0,6143235.769355498,3604031.6513552267 + 10/28 24:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 10/29 01:00:00,0.0,0.0,280.94689708064018,1011408.8294903046,0.0,6143235.769355498,1802015.8256776133 + 10/29 02:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 10/29 03:00:00,0.0,0.0,281.035435618958,1011727.5682282487,0.0,6143235.769355498,1802015.8256776133 + 10/29 04:00:00,0.0,0.0,281.14285597573919,1012114.281512661,0.0,6143235.769355498,1802015.8256776133 + 10/29 05:00:00,0.0,0.0,281.15831069803257,1012169.9185129172,0.0,6143235.769355498,1802015.8256776133 + 10/29 06:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 10/29 07:00:00,181166958.96478806,5682147.156768255,281.15831069803257,182179128.883301,5682147.156768255,6143235.769355498,1802015.8256776133 + 10/29 08:00:00,37395316.06213202,0.0,562.3852095913225,39419902.816660787,0.0,9214853.654033246,10812094.954065679 + 10/29 09:00:00,0.0,79636694.76718882,2811.4050011318156,10121058.004074537,79636694.76718882,24572943.077421994,28832253.210841814 + 10/29 10:00:00,0.0,107843522.07230315,2808.7265071363528,10111415.425690869,107843522.07230315,27644560.962099744,32436284.862197039 + 10/29 11:00:00,0.0,70715737.75796579,5052.362165978783,18188503.797523619,70715737.75796579,27644560.962099744,32436284.862197039 + 10/29 12:00:00,0.0,70094631.64903827,5041.132250448796,18148076.101615669,70094631.64903827,27644560.962099744,32436284.862197039 + 10/29 13:00:00,0.0,92857813.30169955,5039.897805189829,18143632.098683388,92857813.30169955,27644560.962099744,32436284.862197039 + 10/29 14:00:00,0.0,101077988.39335433,5041.132250448796,18148076.101615669,101077988.39335433,27644560.962099744,32436284.862197039 + 10/29 15:00:00,0.0,69984258.20378787,5041.7361831799539,18150250.25944783,69984258.20378787,27644560.962099744,32436284.862197039 + 10/29 16:00:00,0.0,21513371.8611154,5051.519948731799,18185471.815434476,21513371.8611154,27644560.962099744,32436284.862197039 + 10/29 17:00:00,0.0,0.0,3934.0540717406349,14162594.658266286,0.0,27644560.962099744,32436284.862197039 + 10/29 18:00:00,2225669.8995847546,0.0,2810.695805324627,12344174.798753413,0.0,27644560.962099744,28832253.210841814 + 10/29 19:00:00,32523147.907410236,0.0,1686.344642233279,38593988.61945003,0.0,15358089.423388744,18020158.25677613 + 10/29 20:00:00,47864532.617777448,0.0,1124.3694191259734,51912262.526630949,0.0,9214853.654033246,10812094.954065679 + 10/29 21:00:00,50640400.343248229,0.0,1124.4524808594113,54688429.2743421,0.0,9214853.654033246,10812094.954065679 + 10/29 22:00:00,0.0,0.0,1124.4524808594113,4048028.9310938806,0.0,6143235.769355498,3604031.6513552267 + 10/29 23:00:00,0.0,0.0,281.11312021485278,1012007.23277347,0.0,6143235.769355498,3604031.6513552267 + 10/29 24:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 10/30 01:00:00,0.0,0.0,281.20878538679679,1012351.6273924684,0.0,6143235.769355498,1802015.8256776133 + 10/30 02:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 10/30 03:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 10/30 04:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 10/30 05:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 10/30 06:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 10/30 07:00:00,260994543.30022074,8568599.097833718,280.0724745193687,262002804.20849044,8568599.097833718,6143235.769355498,1802015.8256776133 + 10/30 08:00:00,97599115.96787444,0.0,560.2117731227235,99615878.35111624,0.0,9214853.654033246,10812094.954065679 + 10/30 09:00:00,42710970.96313083,0.0,2799.6928518427655,52789865.2297648,0.0,24572943.077421994,28832253.210841814 + 10/30 10:00:00,13089830.803376623,0.0,2802.6554942827344,23179390.58279446,0.0,27644560.962099744,32436284.862197039 + 10/30 11:00:00,0.0,0.0,5047.934958922871,18172565.852122338,0.0,27644560.962099744,32436284.862197039 + 10/30 12:00:00,0.0,0.0,5053.280011661195,18191808.041980305,0.0,27644560.962099744,32436284.862197039 + 10/30 13:00:00,0.0,0.0,5047.431403283191,18170753.05181949,0.0,27644560.962099744,32436284.862197039 + 10/30 14:00:00,8988874.350962667,0.0,5048.42958739715,27163220.865592407,0.0,27644560.962099744,32436284.862197039 + 10/30 15:00:00,0.0,0.0,5045.867222116819,18165121.99962055,0.0,27644560.962099744,32436284.862197039 + 10/30 16:00:00,0.0,0.0,5041.304541348637,18148696.348855094,0.0,27644560.962099744,32436284.862197039 + 10/30 17:00:00,27166845.820510027,0.0,3920.5399808146628,41280789.75144281,0.0,27644560.962099744,32436284.862197039 + 10/30 18:00:00,71384991.9875015,0.0,2795.123943454836,81447438.1839389,0.0,27644560.962099744,28832253.210841814 + 10/30 19:00:00,108056188.68653468,0.0,1671.5725715738166,114073849.94420043,0.0,15358089.423388744,18020158.25677613 + 10/30 20:00:00,137046590.3310379,0.0,1108.2197570463534,141036181.45640476,0.0,9214853.654033246,10812094.954065679 + 10/30 21:00:00,145900690.0023288,0.0,1107.1908375917854,149886577.01765926,0.0,9214853.654033246,10812094.954065679 + 10/30 22:00:00,0.0,0.0,1109.2190150720599,3993188.454259418,0.0,6143235.769355498,3604031.6513552267 + 10/30 23:00:00,0.0,0.0,277.4872252056943,998954.0107404995,0.0,6143235.769355498,3604031.6513552267 + 10/30 24:00:00,0.0,0.0,277.4872252056943,998954.0107404995,0.0,6143235.769355498,1802015.8256776133 + 10/31 01:00:00,0.0,0.0,276.3980475023251,995032.9710083703,0.0,6143235.769355498,1802015.8256776133 + 10/31 02:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 10/31 03:00:00,0.0,0.0,276.73224788530129,996236.0923870845,0.0,6143235.769355498,1802015.8256776133 + 10/31 04:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 10/31 05:00:00,0.0,0.0,276.0524182789608,993788.7058042588,0.0,6143235.769355498,1802015.8256776133 + 10/31 06:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 10/31 07:00:00,456213397.14061787,15886317.589081843,276.0524182789608,457207185.8464222,15886317.589081843,6143235.769355498,1802015.8256776133 + 10/31 08:00:00,44453771.99355373,0.0,555.0942291308703,46452111.218424867,0.0,9214853.654033246,10812094.954065679 + 10/31 09:00:00,0.0,8568450.315420865,2785.4452792385038,10027603.005258613,8568450.315420865,24572943.077421994,28832253.210841814 + 10/31 10:00:00,0.0,33331185.69186819,2788.4274864733799,10038338.951304168,33331185.69186819,27644560.962099744,32436284.862197039 + 10/31 11:00:00,0.0,12208013.81924087,5028.200635795351,18101522.288863265,12208013.81924087,27644560.962099744,32436284.862197039 + 10/31 12:00:00,0.0,0.0,5034.105293331569,18122779.055993648,0.0,27644560.962099744,32436284.862197039 + 10/31 13:00:00,0.0,14459205.229289048,5041.905958104511,18150861.44917624,14459205.229289048,27644560.962099744,32436284.862197039 + 10/31 14:00:00,0.0,51479487.75623102,5045.867222116819,18165121.99962055,51479487.75623102,27644560.962099744,32436284.862197039 + 10/31 15:00:00,0.0,78522451.52465788,5047.431403283191,18170753.05181949,78522451.52465788,27644560.962099744,32436284.862197039 + 10/31 16:00:00,0.0,61928998.195341099,5045.867222116819,18165121.99962055,61928998.195341099,27644560.962099744,32436284.862197039 + 10/31 17:00:00,6882876.105629979,2411501.793893444,3921.0146432711615,20998528.82140616,2411501.793893444,27644560.962099744,32436284.862197039 + 10/31 18:00:00,56080723.57603401,0.0,2800.041735031458,66160873.82214725,0.0,27644560.962099744,28832253.210841814 + 10/31 19:00:00,83846177.36442247,0.0,1680.4348471162123,89895742.81404084,0.0,15358089.423388744,18020158.25677613 + 10/31 20:00:00,100898074.97871036,0.0,1120.5552234542986,104932073.78314583,0.0,9214853.654033246,10812094.954065679 + 10/31 21:00:00,103435125.34266579,0.0,1120.6849284405628,107469591.0850518,0.0,9214853.654033246,10812094.954065679 + 10/31 22:00:00,0.0,0.0,1120.684928440563,4034465.7423860265,0.0,6143235.769355498,3604031.6513552267 + 10/31 23:00:00,0.0,0.0,280.13880586357467,1008499.7011088687,0.0,6143235.769355498,3604031.6513552267 + 10/31 24:00:00,0.0,0.0,280.0724745193687,1008260.9082697274,0.0,6143235.769355498,1802015.8256776133 + 11/01 01:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 11/01 02:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 11/01 03:00:00,0.0,0.0,279.74964730717979,1007098.7303058471,0.0,6143235.769355498,1802015.8256776133 + 11/01 04:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 11/01 05:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 11/01 06:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 11/01 07:00:00,319277202.90586367,13341373.20734798,279.74964730717979,320284301.6361694,13341373.20734798,6143235.769355498,1802015.8256776133 + 11/01 08:00:00,54199129.94328479,0.0,560.4063299798486,56216592.731212239,0.0,9214853.654033246,10812094.954065679 + 11/01 09:00:00,29896737.438334206,0.0,2807.157709094147,40002505.19107313,0.0,24572943.077421994,28832253.210841814 + 11/01 10:00:00,4433240.483830694,0.0,2811.881467526378,14556013.766925656,0.0,27644560.962099744,32436284.862197039 + 11/01 11:00:00,0.0,0.0,5060.812323406676,18218924.364264035,0.0,27644560.962099744,32436284.862197039 + 11/01 12:00:00,0.0,32159120.845145085,5058.569782128235,18210851.215661646,32159120.845145085,27644560.962099744,32436284.862197039 + 11/01 13:00:00,0.0,47048500.80519371,5057.5331619436469,18207119.38299713,47048500.80519371,27644560.962099744,32436284.862197039 + 11/01 14:00:00,0.0,74777031.4176265,5056.660986154669,18203979.55015681,74777031.4176265,27644560.962099744,32436284.862197039 + 11/01 15:00:00,0.0,67349602.63335836,5057.5331619436469,18207119.38299713,67349602.63335836,27644560.962099744,32436284.862197039 + 11/01 16:00:00,0.0,27394102.013004289,5058.069520809388,18209050.2749138,27394102.013004289,27644560.962099744,32436284.862197039 + 11/01 17:00:00,0.0,2328304.2419006696,3934.252128251414,14163307.66170509,2328304.2419006696,27644560.962099744,32436284.862197039 + 11/01 18:00:00,0.0,0.0,2810.180091608153,10116648.32978935,0.0,27644560.962099744,28832253.210841814 + 11/01 19:00:00,21843116.219540519,0.0,1686.0231736031295,27912799.64451178,0.0,15358089.423388744,18020158.25677613 + 11/01 20:00:00,39227632.312046159,0.0,1123.956856070162,43273876.99389875,0.0,9214853.654033246,10812094.954065679 + 11/01 21:00:00,49140081.734581019,0.0,1123.7690502481785,53185650.31547445,0.0,9214853.654033246,10812094.954065679 + 11/01 22:00:00,0.0,0.0,1123.2607609637547,4043738.7394695167,0.0,6143235.769355498,3604031.6513552267 + 11/01 23:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,3604031.6513552267 + 11/01 24:00:00,0.0,0.0,280.5912158508147,1010128.3770629329,0.0,6143235.769355498,1802015.8256776133 + 11/02 01:00:00,0.0,0.0,280.9084575166284,1011270.4470598622,0.0,6143235.769355498,1802015.8256776133 + 11/02 02:00:00,0.0,0.0,280.83484352735317,1011005.4366984713,0.0,6143235.769355498,1802015.8256776133 + 11/02 03:00:00,0.0,0.0,281.18318558535057,1012259.4681072619,0.0,6143235.769355498,1802015.8256776133 + 11/02 04:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 11/02 05:00:00,0.0,0.0,280.94689708064018,1011408.8294903046,0.0,6143235.769355498,1802015.8256776133 + 11/02 06:00:00,0.0,0.0,280.3843847394341,1009383.7850619628,0.0,6143235.769355498,1802015.8256776133 + 11/02 07:00:00,0.0,0.0,280.0724745193687,1008260.9082697274,0.0,6143235.769355498,1802015.8256776133 + 11/02 08:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 11/02 09:00:00,0.0,0.0,280.32595678426767,1009173.4444233636,0.0,6143235.769355498,1802015.8256776133 + 11/02 10:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 11/02 11:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 11/02 12:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 11/02 13:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 11/02 14:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 11/02 15:00:00,0.0,0.0,279.9692851842765,1007889.4266633955,0.0,6143235.769355498,1802015.8256776133 + 11/02 16:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 11/02 17:00:00,0.0,0.0,279.5934309638512,1006536.3514698639,0.0,6143235.769355498,1802015.8256776133 + 11/02 18:00:00,0.0,0.0,279.30128651813689,1005484.6314652928,0.0,6143235.769355498,1802015.8256776133 + 11/02 19:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 11/02 20:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/02 21:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 11/02 22:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 11/02 23:00:00,0.0,0.0,277.118089595552,997625.1225439872,0.0,6143235.769355498,1802015.8256776133 + 11/02 24:00:00,0.0,0.0,277.05493926158837,997397.781341718,0.0,6143235.769355498,1802015.8256776133 + 11/03 01:00:00,0.0,0.0,277.4268682327064,998736.725637743,0.0,6143235.769355498,1802015.8256776133 + 11/03 02:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 11/03 03:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 11/03 04:00:00,0.0,0.0,277.4268682327064,998736.725637743,0.0,6143235.769355498,1802015.8256776133 + 11/03 05:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 11/03 06:00:00,0.0,0.0,275.3272076638477,991177.9475898516,0.0,6143235.769355498,1802015.8256776133 + 11/03 07:00:00,0.0,0.0,275.622694067615,992241.698643414,0.0,6143235.769355498,1802015.8256776133 + 11/03 08:00:00,0.0,0.0,277.6654881510703,999595.7573438529,0.0,6143235.769355498,1802015.8256776133 + 11/03 09:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 11/03 10:00:00,0.0,0.0,279.3871875807369,1005793.8752906527,0.0,6143235.769355498,1802015.8256776133 + 11/03 11:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 11/03 12:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 11/03 13:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 11/03 14:00:00,0.0,0.0,280.32595678426767,1009173.4444233636,0.0,6143235.769355498,1802015.8256776133 + 11/03 15:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 11/03 16:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 11/03 17:00:00,0.0,0.0,280.13880586357478,1008499.7011088689,0.0,6143235.769355498,1802015.8256776133 + 11/03 18:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 11/03 19:00:00,0.0,0.0,279.25760825036925,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 11/03 20:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 11/03 21:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 11/03 22:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 11/03 23:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 11/03 24:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 11/04 01:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 11/04 02:00:00,0.0,0.0,278.4931494938053,1002575.338177699,0.0,6143235.769355498,1802015.8256776133 + 11/04 03:00:00,0.0,0.0,278.3361526068599,1002010.1493846957,0.0,6143235.769355498,1802015.8256776133 + 11/04 04:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 11/04 05:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 11/04 06:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 11/04 07:00:00,349913901.9149224,13974300.589472821,278.98537702925816,350918249.2722277,13974300.589472821,6143235.769355498,1802015.8256776133 + 11/04 08:00:00,33462949.76641975,0.0,560.4063299798486,35480412.5543472,0.0,9214853.654033246,10812094.954065679 + 11/04 09:00:00,0.0,38654182.10737686,2807.3777842562196,10106560.023322389,38654182.10737686,24572943.077421994,28832253.210841814 + 11/04 10:00:00,0.0,62923269.02214532,2811.159039351295,10120172.541664662,62923269.02214532,27644560.962099744,32436284.862197039 + 11/04 11:00:00,0.0,46291372.94697651,5061.600204167546,18221760.735003167,46291372.94697651,27644560.962099744,32436284.862197039 + 11/04 12:00:00,0.0,31127859.967058988,5061.751709148671,18222306.152935216,31127859.967058988,27644560.962099744,32436284.862197039 + 11/04 13:00:00,0.0,31929256.3100549,5061.583492814135,18221700.574130887,31929256.3100549,27644560.962099744,32436284.862197039 + 11/04 14:00:00,0.0,46339611.813136119,5061.774971387561,18222389.89699522,46339611.813136119,27644560.962099744,32436284.862197039 + 11/04 15:00:00,0.0,24313513.42462155,5061.771114674688,18222376.012828877,24313513.42462155,27644560.962099744,32436284.862197039 + 11/04 16:00:00,0.0,1577761.0576092497,5061.758136962342,18222329.29306443,1577761.0576092497,27644560.962099744,32436284.862197039 + 11/04 17:00:00,2675792.054171533,0.0,3936.936088856991,16848761.974056703,0.0,27644560.962099744,32436284.862197039 + 11/04 18:00:00,17629127.423979884,0.0,2812.0842828603724,27752630.84227722,0.0,27644560.962099744,28832253.210841814 + 11/04 19:00:00,61242871.59789969,0.0,1687.2604867582882,67317009.35022952,0.0,15358089.423388744,18020158.25677613 + 11/04 20:00:00,87558504.75103483,0.0,1124.7327423414022,91607542.62346387,0.0,9214853.654033246,10812094.954065679 + 11/04 21:00:00,92486278.05235864,0.0,1124.501561998027,96534483.67555154,0.0,9214853.654033246,10812094.954065679 + 11/04 22:00:00,0.0,0.0,1124.0877302379122,4046715.8288564828,0.0,6143235.769355498,3604031.6513552267 + 11/04 23:00:00,0.0,0.0,280.94689708064018,1011408.8294903046,0.0,6143235.769355498,3604031.6513552267 + 11/04 24:00:00,0.0,0.0,280.9784147469049,1011522.2930888574,0.0,6143235.769355498,1802015.8256776133 + 11/05 01:00:00,0.0,0.0,281.035435618958,1011727.5682282487,0.0,6143235.769355498,1802015.8256776133 + 11/05 02:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 11/05 03:00:00,0.0,0.0,281.08443004371756,1011903.9481573831,0.0,6143235.769355498,1802015.8256776133 + 11/05 04:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 11/05 05:00:00,0.0,0.0,281.1159039351295,1012017.2541664662,0.0,6143235.769355498,1802015.8256776133 + 11/05 06:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 11/05 07:00:00,194896400.76506908,6808819.054076339,281.1508347200099,195908543.77006109,6808819.054076339,6143235.769355498,1802015.8256776133 + 11/05 08:00:00,84818865.91709358,0.0,562.3166213960651,86843205.7541194,0.0,9214853.654033246,10812094.954065679 + 11/05 09:00:00,33818565.18326006,0.0,2811.8318558535058,43941159.86433268,0.0,24572943.077421994,28832253.210841814 + 11/05 10:00:00,12044917.389597319,0.0,2812.0734681865599,22168381.875068934,0.0,27644560.962099744,32436284.862197039 + 11/05 11:00:00,4571947.025234427,0.0,5061.732242735808,22794183.099083336,0.0,27644560.962099744,32436284.862197039 + 11/05 12:00:00,1093883.7443074506,0.0,5061.774971387561,19316273.64130267,0.0,27644560.962099744,32436284.862197039 + 11/05 13:00:00,8504286.573422812,0.0,5061.774971387561,26726676.470418034,0.0,27644560.962099744,32436284.862197039 + 11/05 14:00:00,8682661.640034996,0.0,5061.685719150848,26904730.228978054,0.0,27644560.962099744,32436284.862197039 + 11/05 15:00:00,9455664.084105693,0.0,5061.723243883015,27677867.76208455,0.0,27644560.962099744,32436284.862197039 + 11/05 16:00:00,18050818.916216528,0.0,5061.723243883015,36273022.59419538,0.0,27644560.962099744,32436284.862197039 + 11/05 17:00:00,20115777.946797525,0.0,3936.933089191423,34288737.06788665,0.0,27644560.962099744,32436284.862197039 + 11/05 18:00:00,22909407.730366246,0.0,2812.095063708159,33032949.95971562,0.0,27644560.962099744,28832253.210841814 + 11/05 19:00:00,45840496.536131877,0.0,1687.2570382248958,51914621.8737415,0.0,15358089.423388744,18020158.25677613 + 11/05 20:00:00,66338133.308111798,0.0,1124.829387274624,70387519.10230044,0.0,9214853.654033246,10812094.954065679 + 11/05 21:00:00,68969541.33375311,0.0,1124.8000453705657,73018821.49708715,0.0,9214853.654033246,10812094.954065679 + 11/05 22:00:00,0.0,0.0,1124.7108853656117,4048959.1873162009,0.0,6143235.769355498,3604031.6513552267 + 11/05 23:00:00,0.0,0.0,281.06093663624906,1011819.3718904966,0.0,6143235.769355498,3604031.6513552267 + 11/05 24:00:00,0.0,0.0,281.04843701946529,1011774.3732700748,0.0,6143235.769355498,1802015.8256776133 + 11/06 01:00:00,0.0,0.0,281.00792797058957,1011628.5406941223,0.0,6143235.769355498,1802015.8256776133 + 11/06 02:00:00,0.0,0.0,280.91337618146386,1011288.1542532698,0.0,6143235.769355498,1802015.8256776133 + 11/06 03:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 11/06 04:00:00,0.0,0.0,280.13880586357467,1008499.7011088687,0.0,6143235.769355498,1802015.8256776133 + 11/06 05:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 11/06 06:00:00,0.0,0.0,279.74964730717979,1007098.7303058471,0.0,6143235.769355498,1802015.8256776133 + 11/06 07:00:00,296081009.09475836,11395542.184707597,280.2031649899243,297089740.4887221,11395542.184707597,6143235.769355498,1802015.8256776133 + 11/06 08:00:00,81836509.24306599,0.0,560.7687694788682,83855276.8131899,0.0,9214853.654033246,10812094.954065679 + 11/06 09:00:00,38932269.503737028,0.0,2804.12855737955,49027132.310303408,0.0,24572943.077421994,28832253.210841814 + 11/06 10:00:00,20045612.37538879,0.0,2806.7026031775565,30149741.746827995,0.0,27644560.962099744,32436284.862197039 + 11/06 11:00:00,1552982.3530608905,0.0,5056.440771266349,19756169.129619745,0.0,27644560.962099744,32436284.862197039 + 11/06 12:00:00,0.0,0.0,5057.881595760049,18208373.744736177,0.0,27644560.962099744,32436284.862197039 + 11/06 13:00:00,0.0,1728999.7597864536,5058.394786070604,18210221.229854175,1728999.7597864536,27644560.962099744,32436284.862197039 + 11/06 14:00:00,0.0,168344.61026600906,5056.7469652180429,18204289.074784955,168344.61026600906,27644560.962099744,32436284.862197039 + 11/06 15:00:00,0.0,0.0,5056.125568534433,18202052.046723959,0.0,27644560.962099744,32436284.862197039 + 11/06 16:00:00,13068790.053411819,0.0,5052.0646857196029,31256222.922002388,0.0,27644560.962099744,32436284.862197039 + 11/06 17:00:00,42153843.84793805,0.0,3925.381386352077,56285216.83880552,0.0,27644560.962099744,32436284.862197039 + 11/06 18:00:00,58645200.12350523,0.0,2801.388058635746,68730197.13459392,0.0,27644560.962099744,28832253.210841814 + 11/06 19:00:00,88471596.35758539,0.0,1679.6034326180543,94518168.71501038,0.0,15358089.423388744,18020158.25677613 + 11/06 20:00:00,111334932.98280879,0.0,1117.3779190656338,115357493.49144507,0.0,9214853.654033246,10812094.954065679 + 11/06 21:00:00,123409668.48790582,0.0,1114.9810368014938,127423600.22039119,0.0,9214853.654033246,10812094.954065679 + 11/06 22:00:00,0.0,0.0,1112.0373094132338,4003334.313887639,0.0,6143235.769355498,3604031.6513552267 + 11/06 23:00:00,0.0,0.0,277.4872252056943,998954.0107404995,0.0,6143235.769355498,3604031.6513552267 + 11/06 24:00:00,0.0,0.0,277.3660442256075,998517.7592121869,0.0,6143235.769355498,1802015.8256776133 + 11/07 01:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 11/07 02:00:00,0.0,0.0,276.5331036672942,995519.1732022591,0.0,6143235.769355498,1802015.8256776133 + 11/07 03:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 11/07 04:00:00,0.0,0.0,276.0524182789608,993788.7058042588,0.0,6143235.769355498,1802015.8256776133 + 11/07 05:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 11/07 06:00:00,0.0,0.0,274.6362915355431,988690.6495279551,0.0,6143235.769355498,1802015.8256776133 + 11/07 07:00:00,475909440.757846,15358478.954712239,274.47789263962616,476897561.17134866,15358478.954712239,6143235.769355498,1802015.8256776133 + 11/07 08:00:00,58985855.09454766,0.0,553.4644957706025,60978327.27932182,0.0,9214853.654033246,10812094.954065679 + 11/07 09:00:00,0.0,0.0,2773.0475376801507,9982971.135648542,0.0,24572943.077421994,28832253.210841814 + 11/07 10:00:00,0.0,11480306.037930973,2780.649828748251,10010339.383493703,11480306.037930973,27644560.962099744,32436284.862197039 + 11/07 11:00:00,0.0,963342.8347917216,5014.71771472145,18052983.77299722,963342.8347917216,27644560.962099744,32436284.862197039 + 11/07 12:00:00,0.0,0.0,5026.636948506647,18095893.01462393,0.0,27644560.962099744,32436284.862197039 + 11/07 13:00:00,386815.9717714763,0.0,5029.729371923994,18493841.71069786,0.0,27644560.962099744,32436284.862197039 + 11/07 14:00:00,0.0,12977413.942190072,5034.105293331569,18122779.055993648,12977413.942190072,27644560.962099744,32436284.862197039 + 11/07 15:00:00,0.0,47877357.76469356,5032.681757349319,18117654.32645755,47877357.76469356,27644560.962099744,32436284.862197039 + 11/07 16:00:00,0.0,26721681.41386594,5025.8420168797169,18093031.26076698,26721681.41386594,27644560.962099744,32436284.862197039 + 11/07 17:00:00,49280473.61570087,0.0,3892.130582946316,63292143.714307609,0.0,27644560.962099744,32436284.862197039 + 11/07 18:00:00,94000037.45331693,0.0,2773.660442256075,103985215.04543881,0.0,27644560.962099744,28832253.210841814 + 11/07 19:00:00,126266592.20782113,0.0,1662.32963556953,132250978.89587143,0.0,15358089.423388744,18020158.25677613 + 11/07 20:00:00,141242164.85719095,0.0,1110.4261429491178,145239698.97180776,0.0,9214853.654033246,10812094.954065679 + 11/07 21:00:00,145632724.7677265,0.0,1107.7089952315712,149620477.15056018,0.0,9214853.654033246,10812094.954065679 + 11/07 22:00:00,0.0,0.0,1109.2190150720599,3993188.454259418,0.0,6143235.769355498,3604031.6513552267 + 11/07 23:00:00,0.0,0.0,277.78198444635839,1000015.1440068903,0.0,6143235.769355498,3604031.6513552267 + 11/07 24:00:00,0.0,0.0,278.174873917562,1001429.5461032234,0.0,6143235.769355498,1802015.8256776133 + 11/08 01:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 11/08 02:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 11/08 03:00:00,0.0,0.0,277.3660442256075,998517.7592121869,0.0,6143235.769355498,1802015.8256776133 + 11/08 04:00:00,0.0,0.0,275.25221706141186,990907.9814210826,0.0,6143235.769355498,1802015.8256776133 + 11/08 05:00:00,0.0,0.0,275.3272076638477,991177.9475898516,0.0,6143235.769355498,1802015.8256776133 + 11/08 06:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 11/08 07:00:00,447649321.3759377,16069455.9873688,276.32983335118726,448644108.776002,16069455.9873688,6143235.769355498,1802015.8256776133 + 11/08 08:00:00,49552771.8952001,0.0,553.4644957706025,51545244.079974267,0.0,9214853.654033246,10812094.954065679 + 11/08 09:00:00,0.0,18038730.844522299,2793.444797664084,10056401.271590703,18038730.844522299,24572943.077421994,28832253.210841814 + 11/08 10:00:00,0.0,44467558.25202991,2797.1132627864014,10069607.746031044,44467558.25202991,27644560.962099744,32436284.862197039 + 11/08 11:00:00,0.0,18327649.83605768,5040.694261047424,18146499.339770728,18327649.83605768,27644560.962099744,32436284.862197039 + 11/08 12:00:00,0.0,8610026.873384847,5046.397529920062,18167031.107712225,8610026.873384847,27644560.962099744,32436284.862197039 + 11/08 13:00:00,0.0,17163505.658137785,5046.918925309814,18168908.13111533,17163505.658137785,27644560.962099744,32436284.862197039 + 11/08 14:00:00,0.0,17272870.51998128,5045.867222116819,18165121.99962055,17272870.51998128,27644560.962099744,32436284.862197039 + 11/08 15:00:00,0.0,2881042.318706027,5044.2228755374239,18159202.351934725,2881042.318706027,27644560.962099744,32436284.862197039 + 11/08 16:00:00,0.0,0.0,5043.656969818638,18157165.091347096,0.0,27644560.962099744,32436284.862197039 + 11/08 17:00:00,35847066.965845737,0.0,3919.569992579871,49957518.93913327,0.0,27644560.962099744,32436284.862197039 + 11/08 18:00:00,62041259.584616247,0.0,2795.5315637278397,72105173.21403647,0.0,27644560.962099744,28832253.210841814 + 11/08 19:00:00,87536038.74433008,0.0,1679.6034326180543,93582611.10175509,0.0,15358089.423388744,18020158.25677613 + 11/08 20:00:00,105230149.9070013,0.0,1118.5328709289716,109256868.2423456,0.0,9214853.654033246,10812094.954065679 + 11/08 21:00:00,111570604.71600437,0.0,1118.0495773819344,115595583.19457932,0.0,9214853.654033246,10812094.954065679 + 11/08 22:00:00,0.0,0.0,1117.5487503229479,4023175.5011626116,0.0,6143235.769355498,3604031.6513552267 + 11/08 23:00:00,0.0,0.0,279.30128651813689,1005484.6314652928,0.0,6143235.769355498,3604031.6513552267 + 11/08 24:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 11/09 01:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 11/09 02:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 11/09 03:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 11/09 04:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 11/09 05:00:00,0.0,0.0,280.296000388249,1009065.6013976964,0.0,6143235.769355498,1802015.8256776133 + 11/09 06:00:00,0.0,0.0,280.296000388249,1009065.6013976964,0.0,6143235.769355498,1802015.8256776133 + 11/09 07:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 11/09 08:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 11/09 09:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,1802015.8256776133 + 11/09 10:00:00,0.0,0.0,280.73777842562199,1010656.0023322391,0.0,6143235.769355498,1802015.8256776133 + 11/09 11:00:00,0.0,0.0,280.8958649185796,1011225.1137068865,0.0,6143235.769355498,1802015.8256776133 + 11/09 12:00:00,0.0,0.0,281.00792797058957,1011628.5406941223,0.0,6143235.769355498,1802015.8256776133 + 11/09 13:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 11/09 14:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 11/09 15:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 11/09 16:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 11/09 17:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 11/09 18:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 11/09 19:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 11/09 20:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 11/09 21:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 11/09 22:00:00,0.0,0.0,280.54777015531229,1009971.9725591241,0.0,6143235.769355498,1802015.8256776133 + 11/09 23:00:00,0.0,0.0,280.7157709094147,1010576.7752738929,0.0,6143235.769355498,1802015.8256776133 + 11/09 24:00:00,0.0,0.0,281.035435618958,1011727.5682282487,0.0,6143235.769355498,1802015.8256776133 + 11/10 01:00:00,0.0,0.0,281.035435618958,1011727.5682282487,0.0,6143235.769355498,1802015.8256776133 + 11/10 02:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 11/10 03:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 11/10 04:00:00,0.0,0.0,280.9934219866694,1011576.3191520098,0.0,6143235.769355498,1802015.8256776133 + 11/10 05:00:00,0.0,0.0,281.021932559478,1011678.9572141208,0.0,6143235.769355498,1802015.8256776133 + 11/10 06:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 11/10 07:00:00,0.0,0.0,281.10591493967146,1011981.2937828172,0.0,6143235.769355498,1802015.8256776133 + 11/10 08:00:00,0.0,0.0,281.13437454177787,1012083.7483504003,0.0,6143235.769355498,1802015.8256776133 + 11/10 09:00:00,0.0,0.0,281.16528383807369,1012195.0218170652,0.0,6143235.769355498,1802015.8256776133 + 11/10 10:00:00,0.0,0.0,281.1777213414028,1012239.79682905,0.0,6143235.769355498,1802015.8256776133 + 11/10 11:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 11/10 12:00:00,0.0,0.0,281.20842828603727,1012350.341829734,0.0,6143235.769355498,1802015.8256776133 + 11/10 13:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 11/10 14:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 11/10 15:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 11/10 16:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 11/10 17:00:00,0.0,0.0,281.2029597755311,1012330.655191912,0.0,6143235.769355498,1802015.8256776133 + 11/10 18:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 11/10 19:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 11/10 20:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 11/10 21:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 11/10 22:00:00,0.0,0.0,281.21008112638136,1012356.2920549729,0.0,6143235.769355498,1802015.8256776133 + 11/10 23:00:00,0.0,0.0,281.20878538679679,1012351.6273924684,0.0,6143235.769355498,1802015.8256776133 + 11/10 24:00:00,0.0,0.0,281.20878538679679,1012351.6273924684,0.0,6143235.769355498,1802015.8256776133 + 11/11 01:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 11/11 02:00:00,0.0,0.0,281.207346818656,1012346.4485471615,0.0,6143235.769355498,1802015.8256776133 + 11/11 03:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 11/11 04:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 11/11 05:00:00,0.0,0.0,281.19908293411859,1012316.6985628269,0.0,6143235.769355498,1802015.8256776133 + 11/11 06:00:00,0.0,0.0,281.2047621750471,1012337.1438301696,0.0,6143235.769355498,1802015.8256776133 + 11/11 07:00:00,161969825.87803028,841458.3637548334,281.20972063264227,162982180.87230779,841458.3637548334,6143235.769355498,1802015.8256776133 + 11/11 08:00:00,76624691.17995282,0.0,562.4201622527627,78649403.76406276,0.0,9214853.654033246,10812094.954065679 + 11/11 09:00:00,28460560.34461363,0.0,2812.095063708159,38584102.573963,0.0,24572943.077421994,28832253.210841814 + 11/11 10:00:00,16914484.61233257,0.0,2812.068468823897,27037931.100098604,0.0,27644560.962099744,32436284.862197039 + 11/11 11:00:00,14003851.515410148,0.0,5061.639135312228,32225752.40253417,0.0,27644560.962099744,32436284.862197039 + 11/11 12:00:00,15099854.591059179,0.0,5061.781460274864,33322267.848048688,0.0,27644560.962099744,32436284.862197039 + 11/11 13:00:00,28045593.043819146,0.0,5061.19898414525,46265909.38674204,0.0,27644560.962099744,32436284.862197039 + 11/11 14:00:00,34645574.25664697,0.0,5059.096859452483,52858322.950675908,0.0,27644560.962099744,32436284.862197039 + 11/11 15:00:00,38421847.19037578,0.0,5058.394786070604,56632068.42022996,0.0,27644560.962099744,32436284.862197039 + 11/11 16:00:00,44169063.823541019,0.0,5058.142703470613,62378377.55603522,0.0,27644560.962099744,32436284.862197039 + 11/11 17:00:00,47257154.27289554,0.0,3932.0307824887088,61412465.08985488,0.0,27644560.962099744,32436284.862197039 + 11/11 18:00:00,51713897.93791446,0.0,2808.2081842161617,61823447.40109264,0.0,27644560.962099744,28832253.210841814 + 11/11 19:00:00,75236239.06331028,0.0,1685.3751895114777,81303589.7455516,0.0,15358089.423388744,18020158.25677613 + 11/11 20:00:00,95158477.09597817,0.0,1123.4373664253456,99202851.61510942,0.0,9214853.654033246,10812094.954065679 + 11/11 21:00:00,99837235.50101808,0.0,1123.3613196297009,103881336.251685,0.0,9214853.654033246,10812094.954065679 + 11/11 22:00:00,0.0,0.0,1123.0371485557258,4042933.7348006146,0.0,6143235.769355498,3604031.6513552267 + 11/11 23:00:00,0.0,0.0,280.7157709094147,1010576.7752738928,0.0,6143235.769355498,3604031.6513552267 + 11/11 24:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 11/12 01:00:00,0.0,0.0,280.6467576789864,1010328.3276443509,0.0,6143235.769355498,1802015.8256776133 + 11/12 02:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 11/12 03:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,1802015.8256776133 + 11/12 04:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 11/12 05:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 11/12 06:00:00,0.0,0.0,280.44083105127069,1009586.9917845744,0.0,6143235.769355498,1802015.8256776133 + 11/12 07:00:00,265956154.41650928,11657365.59974014,280.49529355333189,266965937.4733013,11657365.59974014,6143235.769355498,1802015.8256776133 + 11/12 08:00:00,113166811.76376604,0.0,561.146526222782,115186939.25816804,0.0,9214853.654033246,10812094.954065679 + 11/12 09:00:00,66936600.04334312,0.0,2805.7326311139097,77037237.5153532,0.0,24572943.077421994,28832253.210841814 + 11/12 10:00:00,56547785.39351871,0.0,2806.7026031775565,66651914.76495792,0.0,27644560.962099744,32436284.862197039 + 11/12 11:00:00,54839370.10056653,0.0,5052.0646857196029,73026802.9691571,0.0,27644560.962099744,32436284.862197039 + 11/12 12:00:00,49093940.95139164,0.0,5052.0646857196029,67281373.8199822,0.0,27644560.962099744,32436284.862197039 + 11/12 13:00:00,59338092.77898687,0.0,5052.0646857196029,77525525.64757744,0.0,27644560.962099744,32436284.862197039 + 11/12 14:00:00,66309383.32437014,0.0,5050.318736005038,84490530.77398828,0.0,27644560.962099744,32436284.862197039 + 11/12 15:00:00,65181823.24094652,0.0,5048.42958739715,83356169.75557626,0.0,27644560.962099744,32436284.862197039 + 11/12 16:00:00,69472860.1264997,0.0,5047.431403283191,87643613.17831919,0.0,27644560.962099744,32436284.862197039 + 11/12 17:00:00,72266023.76121328,0.0,3925.7799803313698,86398831.6904062,0.0,27644560.962099744,32436284.862197039 + 11/12 18:00:00,82315258.41904316,0.0,2801.058865613617,92399070.33525218,0.0,27644560.962099744,28832253.210841814 + 11/12 19:00:00,112700001.49804318,0.0,1679.38820759291,118745799.04537767,0.0,15358089.423388744,18020158.25677613 + 11/12 20:00:00,132431445.80305878,0.0,1118.690065184793,136458730.03772403,0.0,9214853.654033246,10812094.954065679 + 11/12 21:00:00,138780763.88921616,0.0,1117.5487503229477,142803939.39037878,0.0,9214853.654033246,10812094.954065679 + 11/12 22:00:00,0.0,0.0,1116.6751933495976,4020030.6960585524,0.0,6143235.769355498,3604031.6513552267 + 11/12 23:00:00,0.0,0.0,278.9383156199478,1004177.9362318121,0.0,6143235.769355498,3604031.6513552267 + 11/12 24:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 11/13 01:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/13 02:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 11/13 03:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 11/13 04:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 11/13 05:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/13 06:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/13 07:00:00,374991803.62864449,15244659.866134625,278.2828681194017,375993621.95387437,15244659.866134625,6143235.769355498,1802015.8256776133 + 11/13 08:00:00,146458945.54417024,0.0,556.4582167687153,148462195.12453763,0.0,9214853.654033246,10812094.954065679 + 11/13 09:00:00,94102233.85980208,0.0,2781.7487391756205,104116529.32083431,0.0,24572943.077421994,28832253.210841814 + 11/13 10:00:00,71762418.96790894,0.0,2783.889613354578,81784421.5759854,0.0,27644560.962099744,32436284.862197039 + 11/13 11:00:00,72185445.7935186,0.0,5009.091626149231,90218175.64765583,0.0,27644560.962099744,32436284.862197039 + 11/13 12:00:00,64295113.3548003,0.0,5011.001304038242,82334718.04933796,0.0,27644560.962099744,32436284.862197039 + 11/13 13:00:00,66814759.91968004,0.0,5011.001304038242,84854364.61421772,0.0,27644560.962099744,32436284.862197039 + 11/13 14:00:00,63807260.432604189,0.0,5014.71771472145,81860244.20560141,0.0,27644560.962099744,32436284.862197039 + 11/13 15:00:00,62409099.45176004,0.0,5014.71771472145,80462083.22475726,0.0,27644560.962099744,32436284.862197039 + 11/13 16:00:00,73357802.08566417,0.0,5014.71771472145,91410785.85866139,0.0,27644560.962099744,32436284.862197039 + 11/13 17:00:00,82996371.53514019,0.0,3899.6233909339046,97035015.74250224,0.0,27644560.962099744,32436284.862197039 + 11/13 18:00:00,88745799.18544778,0.0,2784.4129379848616,98769685.76219329,0.0,27644560.962099744,28832253.210841814 + 11/13 19:00:00,113629157.95515386,0.0,1670.3337680127473,119642359.51999976,0.0,15358089.423388744,18020158.25677613 + 11/13 20:00:00,132380312.72119519,0.0,1114.5834040830446,136392812.97589416,0.0,9214853.654033246,10812094.954065679 + 11/13 21:00:00,137477069.4307758,0.0,1113.7651751939448,141486624.061474,0.0,9214853.654033246,10812094.954065679 + 11/13 22:00:00,0.0,0.0,1113.3446104274395,4008040.597538782,0.0,6143235.769355498,3604031.6513552267 + 11/13 23:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,3604031.6513552267 + 11/13 24:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 11/14 01:00:00,0.0,0.0,278.174873917562,1001429.5461032234,0.0,6143235.769355498,1802015.8256776133 + 11/14 02:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 11/14 03:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 11/14 04:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 11/14 05:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 11/14 06:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 11/14 07:00:00,416365773.09035196,15371135.778669006,276.12245449060966,417359813.92651817,15371135.778669006,6143235.769355498,1802015.8256776133 + 11/14 08:00:00,100861947.52055188,0.0,552.7960950046502,102852013.46256863,0.0,9214853.654033246,10812094.954065679 + 11/14 09:00:00,2911190.87562561,0.0,2769.913254622399,12882878.592266247,0.0,24572943.077421994,28832253.210841814 + 11/14 10:00:00,0.0,0.0,2777.2397124114856,9998062.964681348,0.0,27644560.962099744,32436284.862197039 + 11/14 11:00:00,0.0,0.0,5011.943288372751,18042995.838141905,0.0,27644560.962099744,32436284.862197039 + 11/14 12:00:00,10206415.219845679,0.0,5020.033908130441,28278537.289115266,0.0,27644560.962099744,32436284.862197039 + 11/14 13:00:00,3506296.040653275,0.0,5028.969376453265,21610585.795885028,0.0,27644560.962099744,32436284.862197039 + 11/14 14:00:00,0.0,14793672.629380603,5034.803873015523,18125293.942855885,14793672.629380603,27644560.962099744,32436284.862197039 + 11/14 15:00:00,0.0,40714548.43333381,5036.174622254158,18130228.640114968,40714548.43333381,27644560.962099744,32436284.862197039 + 11/14 16:00:00,0.0,20979541.006000185,5033.397919180372,18120232.509049339,20979541.006000185,27644560.962099744,32436284.862197039 + 11/14 17:00:00,53303561.94832503,0.0,3904.470817434786,67359656.89109028,0.0,27644560.962099744,32436284.862197039 + 11/14 18:00:00,87985966.95792926,0.0,2784.4129379848616,98009853.53467475,0.0,27644560.962099744,28832253.210841814 + 11/14 19:00:00,122166386.83653969,0.0,1664.196265353645,128157493.3918128,0.0,15358089.423388744,18020158.25677613 + 11/14 20:00:00,143715901.1128586,0.0,1109.7074729308257,147710848.01540954,0.0,9214853.654033246,10812094.954065679 + 11/14 21:00:00,149068919.37123118,0.0,1106.928991541205,153053863.74077953,0.0,9214853.654033246,10812094.954065679 + 11/14 22:00:00,0.0,0.0,1104.2096731158429,3975154.823217036,0.0,6143235.769355498,3604031.6513552267 + 11/14 23:00:00,0.0,0.0,275.69544312300209,992503.5952428074,0.0,6143235.769355498,3604031.6513552267 + 11/14 24:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 11/15 01:00:00,0.0,0.0,276.3980475023251,995032.9710083703,0.0,6143235.769355498,1802015.8256776133 + 11/15 02:00:00,0.0,0.0,275.7677417576176,992763.8703274235,0.0,6143235.769355498,1802015.8256776133 + 11/15 03:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 11/15 04:00:00,0.0,0.0,276.2611626921881,994540.1856918773,0.0,6143235.769355498,1802015.8256776133 + 11/15 05:00:00,0.0,0.0,276.5331036672942,995519.1732022591,0.0,6143235.769355498,1802015.8256776133 + 11/15 06:00:00,0.0,0.0,276.79770939794636,996471.7538326068,0.0,6143235.769355498,1802015.8256776133 + 11/15 07:00:00,440232784.5386452,16595563.598964718,277.3047537680151,441231081.65221008,16595563.598964718,6143235.769355498,1802015.8256776133 + 11/15 08:00:00,103876921.55469109,0.0,555.9063984177583,105878184.58899501,0.0,9214853.654033246,10812094.954065679 + 11/15 09:00:00,22980251.993933865,0.0,2786.458510207611,33011502.630681267,0.0,24572943.077421994,28832253.210841814 + 11/15 10:00:00,15125117.240976323,0.0,2791.2366754434444,25173569.27257272,0.0,27644560.962099744,32436284.862197039 + 11/15 11:00:00,24782573.378559594,0.0,5028.969376453265,42886863.13379134,0.0,27644560.962099744,32436284.862197039 + 11/15 12:00:00,15257050.2078004,0.0,5031.956814710111,33372094.740756796,0.0,27644560.962099744,32436284.862197039 + 11/15 13:00:00,8242534.5724167949,0.0,5039.447133316979,26384544.252357916,0.0,27644560.962099744,32436284.862197039 + 11/15 14:00:00,3177280.2217447899,0.0,5040.075123056625,21321550.664748637,0.0,27644560.962099744,32436284.862197039 + 11/15 15:00:00,20834431.485261535,0.0,5040.075123056625,38978701.928265389,0.0,27644560.962099744,32436284.862197039 + 11/15 16:00:00,32775670.65548736,0.0,5043.082177982533,50930766.49622448,0.0,27644560.962099744,32436284.862197039 + 11/15 17:00:00,52777165.22696225,0.0,3920.5399808146628,66891109.15789504,0.0,27644560.962099744,32436284.862197039 + 11/15 18:00:00,63082369.662450667,0.0,2800.724745193687,73164978.74514795,0.0,27644560.962099744,28832253.210841814 + 11/15 19:00:00,105596434.05173186,0.0,1679.1700380953499,111641446.18887511,0.0,15358089.423388744,18020158.25677613 + 11/15 20:00:00,120904510.9912486,0.0,1120.1542802327609,124937066.40008652,0.0,9214853.654033246,10812094.954065679 + 11/15 21:00:00,123645319.64677888,0.0,1120.938416786094,127680697.94720882,0.0,9214853.654033246,10812094.954065679 + 11/15 22:00:00,0.0,0.0,1121.3038271370706,4036693.7776934548,0.0,6143235.769355498,3604031.6513552267 + 11/15 23:00:00,0.0,0.0,280.3554183288923,1009279.5059840123,0.0,6143235.769355498,3604031.6513552267 + 11/15 24:00:00,0.0,0.0,280.5982588431263,1010153.7318352547,0.0,6143235.769355498,1802015.8256776133 + 11/16 01:00:00,0.0,0.0,280.69326480147586,1010495.753285313,0.0,6143235.769355498,1802015.8256776133 + 11/16 02:00:00,0.0,0.0,280.93038695655789,1011349.3930436083,0.0,6143235.769355498,1802015.8256776133 + 11/16 03:00:00,0.0,0.0,281.09542360897867,1011943.5249923231,0.0,6143235.769355498,1802015.8256776133 + 11/16 04:00:00,0.0,0.0,281.04843701946529,1011774.373270075,0.0,6143235.769355498,1802015.8256776133 + 11/16 05:00:00,0.0,0.0,280.9934219866694,1011576.3191520098,0.0,6143235.769355498,1802015.8256776133 + 11/16 06:00:00,0.0,0.0,280.94689708064018,1011408.8294903046,0.0,6143235.769355498,1802015.8256776133 + 11/16 07:00:00,0.0,0.0,280.82081842161616,1010954.9463178181,0.0,6143235.769355498,1802015.8256776133 + 11/16 08:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 11/16 09:00:00,0.0,0.0,280.7157709094147,1010576.7752738929,0.0,6143235.769355498,1802015.8256776133 + 11/16 10:00:00,0.0,0.0,280.62275711068,1010241.9255984482,0.0,6143235.769355498,1802015.8256776133 + 11/16 11:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 11/16 12:00:00,0.0,0.0,280.5217802194998,1009878.4087901993,0.0,6143235.769355498,1802015.8256776133 + 11/16 13:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 11/16 14:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 + 11/16 15:00:00,0.0,0.0,280.46831041095279,1009685.91747943,0.0,6143235.769355498,1802015.8256776133 + 11/16 16:00:00,0.0,0.0,280.412855737955,1009486.280656638,0.0,6143235.769355498,1802015.8256776133 + 11/16 17:00:00,0.0,0.0,280.3259567842677,1009173.4444233638,0.0,6143235.769355498,1802015.8256776133 + 11/16 18:00:00,0.0,0.0,280.13880586357467,1008499.7011088687,0.0,6143235.769355498,1802015.8256776133 + 11/16 19:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 11/16 20:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 11/16 21:00:00,0.0,0.0,279.74964730717979,1007098.7303058471,0.0,6143235.769355498,1802015.8256776133 + 11/16 22:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 11/16 23:00:00,0.0,0.0,279.74964730717979,1007098.7303058471,0.0,6143235.769355498,1802015.8256776133 + 11/16 24:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 11/17 01:00:00,0.0,0.0,279.3871875807369,1005793.8752906529,0.0,6143235.769355498,1802015.8256776133 + 11/17 02:00:00,0.0,0.0,279.25760825036925,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 11/17 03:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 11/17 04:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 11/17 05:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 11/17 06:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 11/17 07:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 11/17 08:00:00,0.0,0.0,277.78198444635839,1000015.14400689,0.0,6143235.769355498,1802015.8256776133 + 11/17 09:00:00,0.0,0.0,278.1201652394046,1001232.5948618567,0.0,6143235.769355498,1802015.8256776133 + 11/17 10:00:00,0.0,0.0,278.174873917562,1001429.5461032234,0.0,6143235.769355498,1802015.8256776133 + 11/17 11:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/17 12:00:00,0.0,0.0,278.174873917562,1001429.5461032234,0.0,6143235.769355498,1802015.8256776133 + 11/17 13:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/17 14:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/17 15:00:00,0.0,0.0,278.06498287482517,1001033.9383493705,0.0,6143235.769355498,1802015.8256776133 + 11/17 16:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 11/17 17:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 11/17 18:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 11/17 19:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 11/17 20:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 11/17 21:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 11/17 22:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 11/17 23:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 11/17 24:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 11/18 01:00:00,0.0,0.0,273.90971678879569,986074.9804396643,0.0,6143235.769355498,1802015.8256776133 + 11/18 02:00:00,0.0,0.0,274.87058607084358,989534.1098550368,0.0,6143235.769355498,1802015.8256776133 + 11/18 03:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 11/18 04:00:00,0.0,0.0,275.9819282212987,993534.9415966753,0.0,6143235.769355498,1802015.8256776133 + 11/18 05:00:00,0.0,0.0,275.622694067615,992241.698643414,0.0,6143235.769355498,1802015.8256776133 + 11/18 06:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 11/18 07:00:00,457340685.64436319,18171891.0963449,276.9272488078928,458337623.74007168,18171891.0963449,6143235.769355498,1802015.8256776133 + 11/18 08:00:00,169846365.3585289,0.0,554.361551716384,171842066.94470788,0.0,9214853.654033246,10812094.954065679 + 11/18 09:00:00,114552720.88513559,0.0,2771.8077585819198,124531228.8160305,0.0,24572943.077421994,28832253.210841814 + 11/18 10:00:00,96769934.60186297,0.0,2776.0653573727947,106763769.88840503,0.0,27644560.962099744,32436284.862197039 + 11/18 11:00:00,74342863.1399031,0.0,5004.16789235955,92357867.55239748,0.0,27644560.962099744,32436284.862197039 + 11/18 12:00:00,70556411.51672842,0.0,5007.147730516117,88582143.34658644,0.0,27644560.962099744,32436284.862197039 + 11/18 13:00:00,76190707.60369566,0.0,5006.1629743092839,94212894.31120909,0.0,27644560.962099744,32436284.862197039 + 11/18 14:00:00,87962786.58919159,0.0,5002.138781641752,105970486.2031019,0.0,27644560.962099744,32436284.862197039 + 11/18 15:00:00,87872979.07025275,0.0,5003.1575857598249,105884346.37898812,0.0,27644560.962099744,32436284.862197039 + 11/18 16:00:00,92841188.75480595,0.0,5001.111489780943,110845190.11801735,0.0,27644560.962099744,32436284.862197039 + 11/18 17:00:00,100114517.85214871,0.0,3889.7533809407325,114117630.02353536,0.0,27644560.962099744,32436284.862197039 + 11/18 18:00:00,107671600.8432176,0.0,2776.0653573727947,117665436.12975966,0.0,27644560.962099744,28832253.210841814 + 11/18 19:00:00,136040193.3142085,0.0,1664.196265353645,142031299.86948163,0.0,15358089.423388744,18020158.25677613 + 11/18 20:00:00,154426257.19069255,0.0,1108.2197570463534,158415848.31605945,0.0,9214853.654033246,10812094.954065679 + 11/18 21:00:00,166001247.21973396,0.0,1103.6439399759536,169974365.40364743,0.0,9214853.654033246,10812094.954065679 + 11/18 22:00:00,0.0,0.0,1097.5921388136713,3951331.6997292146,0.0,6143235.769355498,3604031.6513552267 + 11/18 23:00:00,0.0,0.0,272.5317545824394,981114.3164967817,0.0,6143235.769355498,3604031.6513552267 + 11/18 24:00:00,0.0,0.0,271.6157050294454,977816.5381060033,0.0,6143235.769355498,1802015.8256776133 + 11/19 01:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 11/19 02:00:00,0.0,0.0,271.8022335774473,978488.0408788102,0.0,6143235.769355498,1802015.8256776133 + 11/19 03:00:00,0.0,0.0,270.7560733400363,974721.8640241308,0.0,6143235.769355498,1802015.8256776133 + 11/19 04:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 11/19 05:00:00,0.0,0.0,270.4622417014175,973664.070125103,0.0,6143235.769355498,1802015.8256776133 + 11/19 06:00:00,0.0,0.0,270.363496150472,973308.5861416991,0.0,6143235.769355498,1802015.8256776133 + 11/19 07:00:00,607535688.3463919,16168930.833325144,271.8022335774473,608514176.3872707,16168930.833325144,6143235.769355498,1802015.8256776133 + 11/19 08:00:00,128869024.3923586,0.0,545.2421270414264,130831896.04970774,0.0,9214853.654033246,10812094.954065679 + 11/19 09:00:00,35494129.02492135,0.0,2734.908628301078,45339800.08680523,0.0,24572943.077421994,28832253.210841814 + 11/19 10:00:00,60681399.465752508,0.0,2740.7423096507775,70548071.78049532,0.0,27644560.962099744,32436284.862197039 + 11/19 11:00:00,83411018.23490197,0.0,4946.2727292649519,101217600.0602558,0.0,27644560.962099744,32436284.862197039 + 11/19 12:00:00,74317006.92819868,0.0,4962.517976214038,92182071.64256922,0.0,27644560.962099744,32436284.862197039 + 11/19 13:00:00,70890821.94658472,0.0,4975.164855041852,88801415.42473538,0.0,27644560.962099744,32436284.862197039 + 11/19 14:00:00,66485186.35459754,0.0,4976.384480839337,84400170.48561915,0.0,27644560.962099744,32436284.862197039 + 11/19 15:00:00,52766788.66363193,0.0,4975.164855041852,70677382.1417826,0.0,27644560.962099744,32436284.862197039 + 11/19 16:00:00,49192504.38098849,0.0,4967.674707983377,67076133.32972865,0.0,27644560.962099744,32436284.862197039 + 11/19 17:00:00,120845445.76565951,0.0,3855.624519303176,134725694.03515096,0.0,27644560.962099744,32436284.862197039 + 11/19 18:00:00,137743701.65402759,0.0,2747.1483097538537,147633435.56914146,0.0,27644560.962099744,28832253.210841814 + 11/19 19:00:00,161485540.48038814,0.0,1654.6064505457057,167442123.7023527,0.0,15358089.423388744,18020158.25677613 + 11/19 20:00:00,172455457.18561209,0.0,1103.6439399759536,176428575.36952553,0.0,9214853.654033246,10812094.954065679 + 11/19 21:00:00,171517918.24466575,0.0,1105.0446507687526,175496078.98743323,0.0,9214853.654033246,10812094.954065679 + 11/19 22:00:00,0.0,0.0,1105.319333404749,3979149.600257096,0.0,6143235.769355498,3604031.6513552267 + 11/19 23:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,3604031.6513552267 + 11/19 24:00:00,0.0,0.0,276.2611626921881,994540.185691877,0.0,6143235.769355498,1802015.8256776133 + 11/20 01:00:00,0.0,0.0,275.9819282212987,993534.9415966753,0.0,6143235.769355498,1802015.8256776133 + 11/20 02:00:00,0.0,0.0,275.25221706141186,990907.9814210826,0.0,6143235.769355498,1802015.8256776133 + 11/20 03:00:00,0.0,0.0,274.7929294036084,989254.5458529902,0.0,6143235.769355498,1802015.8256776133 + 11/20 04:00:00,0.0,0.0,274.47789263962616,988120.4135026541,0.0,6143235.769355498,1802015.8256776133 + 11/20 05:00:00,0.0,0.0,275.1008980765597,990363.2330756149,0.0,6143235.769355498,1802015.8256776133 + 11/20 06:00:00,0.0,0.0,274.3980347034177,987832.9249323037,0.0,6143235.769355498,1802015.8256776133 + 11/20 07:00:00,511821962.0149401,17273166.45708994,274.5573118376818,512810368.3375558,17273166.45708994,6143235.769355498,1802015.8256776133 + 11/20 08:00:00,166253929.38033245,0.0,551.0989905789937,168237885.7464168,0.0,9214853.654033246,10812094.954065679 + 11/20 09:00:00,123461984.83977494,0.0,2752.522170614118,133371064.65398576,0.0,24572943.077421994,28832253.210841814 + 11/20 10:00:00,107605096.51437155,0.0,2761.224544906096,117545504.8760335,0.0,27644560.962099744,32436284.862197039 + 11/20 11:00:00,105913944.14905882,0.0,4983.528778440735,123854647.75144547,0.0,27644560.962099744,32436284.862197039 + 11/20 12:00:00,98237650.38507977,0.0,4995.848062177833,116222703.40891996,0.0,27644560.962099744,32436284.862197039 + 11/20 13:00:00,103168761.30463504,0.0,5004.16789235955,121183765.71712941,0.0,27644560.962099744,32436284.862197039 + 11/20 14:00:00,92236361.8242194,0.0,5006.1629743092839,110258548.53173283,0.0,27644560.962099744,32436284.862197039 + 11/20 15:00:00,83077622.67974004,0.0,5006.1629743092839,101099809.38725345,0.0,27644560.962099744,32436284.862197039 + 11/20 16:00:00,91899001.82428494,0.0,5001.111489780943,109903003.18749634,0.0,27644560.962099744,32436284.862197039 + 11/20 17:00:00,112707225.77603346,0.0,3886.491500321911,126698595.17719236,0.0,27644560.962099744,32436284.862197039 + 11/20 18:00:00,121522533.37608789,0.0,2773.660442256075,131507710.96820975,0.0,27644560.962099744,28832253.210841814 + 11/20 19:00:00,146772041.3164885,0.0,1664.5612093962384,152764461.67031498,0.0,15358089.423388744,18020158.25677613 + 11/20 20:00:00,163718774.56261183,0.0,1108.2197570463534,167708365.68797869,0.0,9214853.654033246,10812094.954065679 + 11/20 21:00:00,168505016.3186028,0.0,1106.928991541205,172489960.68815116,0.0,9214853.654033246,10812094.954065679 + 11/20 22:00:00,0.0,0.0,1105.8632179642974,3981107.58467147,0.0,6143235.769355498,3604031.6513552267 + 11/20 23:00:00,0.0,0.0,275.8395892777431,993022.5213998749,0.0,6143235.769355498,3604031.6513552267 + 11/20 24:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 11/21 01:00:00,0.0,0.0,275.7677417576176,992763.8703274235,0.0,6143235.769355498,1802015.8256776133 + 11/21 02:00:00,0.0,0.0,275.69544312300209,992503.5952428074,0.0,6143235.769355498,1802015.8256776133 + 11/21 03:00:00,0.0,0.0,275.4758474910033,991713.050967612,0.0,6143235.769355498,1802015.8256776133 + 11/21 04:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 11/21 05:00:00,0.0,0.0,276.9272488078928,996938.0957084141,0.0,6143235.769355498,1802015.8256776133 + 11/21 06:00:00,0.0,0.0,277.118089595552,997625.1225439872,0.0,6143235.769355498,1802015.8256776133 + 11/21 07:00:00,441103937.7641584,18865544.512513538,277.05493926158837,442101335.5455001,18865544.512513538,6143235.769355498,1802015.8256776133 + 11/21 08:00:00,153799802.7177449,0.0,554.732088451215,155796838.23616926,0.0,9214853.654033246,10812094.954065679 + 11/21 09:00:00,62755435.383525948,0.0,2778.3952721005236,72757658.36308784,0.0,24572943.077421994,28832253.210841814 + 11/21 10:00:00,43191531.93668252,0.0,2783.361526068599,53211633.430529478,0.0,27644560.962099744,32436284.862197039 + 11/21 11:00:00,65306090.28370307,0.0,5013.801502629307,83355775.69316857,0.0,27644560.962099744,32436284.862197039 + 11/21 12:00:00,69634218.56765627,0.0,5014.71771472145,87687202.34065348,0.0,27644560.962099744,32436284.862197039 + 11/21 13:00:00,71178104.22981489,0.0,5017.414665606722,89240797.02599909,0.0,27644560.962099744,32436284.862197039 + 11/21 14:00:00,75606235.68089731,0.0,5018.296392018379,93672102.69216348,0.0,27644560.962099744,32436284.862197039 + 11/21 15:00:00,79911060.09929112,0.0,5015.625318373701,97967311.24543643,0.0,27644560.962099744,32436284.862197039 + 11/21 16:00:00,90083487.78456608,0.0,5015.625318373701,108139738.93071139,0.0,27644560.962099744,32436284.862197039 + 11/21 17:00:00,98122558.9199114,0.0,3895.9601536716238,112148015.47312925,0.0,27644560.962099744,32436284.862197039 + 11/21 18:00:00,106841159.97377277,0.0,2781.7487391756205,116855455.434805,0.0,27644560.962099744,28832253.210841814 + 11/21 19:00:00,133495307.11313957,0.0,1668.3898972489508,139501510.7432358,0.0,15358089.423388744,18020158.25677613 + 11/21 20:00:00,148796624.2912138,0.0,1112.0373094132334,152799958.60510145,0.0,9214853.654033246,10812094.954065679 + 11/21 21:00:00,150541530.55744563,0.0,1111.5863959203894,154543241.58275903,0.0,9214853.654033246,10812094.954065679 + 11/21 22:00:00,0.0,0.0,1111.3581088402089,4000889.1918247544,0.0,6143235.769355498,3604031.6513552267 + 11/21 23:00:00,0.0,0.0,277.66548815107026,999595.757343853,0.0,6143235.769355498,3604031.6513552267 + 11/21 24:00:00,0.0,0.0,277.4872252056943,998954.0107404995,0.0,6143235.769355498,1802015.8256776133 + 11/22 01:00:00,0.0,0.0,277.3660442256075,998517.7592121869,0.0,6143235.769355498,1802015.8256776133 + 11/22 02:00:00,0.0,0.0,277.24299744802218,998074.7908128798,0.0,6143235.769355498,1802015.8256776133 + 11/22 03:00:00,0.0,0.0,277.118089595552,997625.1225439872,0.0,6143235.769355498,1802015.8256776133 + 11/22 04:00:00,0.0,0.0,277.05493926158837,997397.781341718,0.0,6143235.769355498,1802015.8256776133 + 11/22 05:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 11/22 06:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 11/22 07:00:00,451887183.699412,16894905.50795353,276.3980475023251,452882216.67042037,16894905.50795353,6143235.769355498,1802015.8256776133 + 11/22 08:00:00,179032160.1379457,0.0,553.3326520071081,181024157.6851713,0.0,9214853.654033246,10812094.954065679 + 11/22 09:00:00,118996616.90480495,0.0,2767.322478853013,128958977.82867578,0.0,24572943.077421994,28832253.210841814 + 11/22 10:00:00,88022449.32818567,0.0,2768.627099133741,97989506.88506714,0.0,27644560.962099744,32436284.862197039 + 11/22 11:00:00,81246292.72135903,0.0,4983.528778440735,99186996.3237457,0.0,27644560.962099744,32436284.862197039 + 11/22 12:00:00,74842463.40346456,0.0,4993.683628188715,92819724.46494395,0.0,27644560.962099744,32436284.862197039 + 11/22 13:00:00,44478291.00842368,0.0,5003.1575857598249,62489658.31715906,0.0,27644560.962099744,32436284.862197039 + 11/22 14:00:00,25902245.769439497,0.0,5013.801502629307,43951931.178905,0.0,27644560.962099744,32436284.862197039 + 11/22 15:00:00,13197302.17951995,0.0,5016.524304877438,31256789.677078725,0.0,27644560.962099744,32436284.862197039 + 11/22 16:00:00,53787551.767018858,0.0,5004.16789235955,71802556.17951325,0.0,27644560.962099744,32436284.862197039 + 11/22 17:00:00,101805903.1895528,0.0,3885.6596039160915,115794277.76365073,0.0,27644560.962099744,32436284.862197039 + 11/22 18:00:00,109388149.47500974,0.0,2780.093273533083,119396485.25972884,0.0,27644560.962099744,28832253.210841814 + 11/22 19:00:00,131960320.50933126,0.0,1669.6972087164105,137971230.46071036,0.0,15358089.423388744,18020158.25677613 + 11/22 20:00:00,144386798.50078676,0.0,1113.5558453418315,148395599.54401732,0.0,9214853.654033246,10812094.954065679 + 11/22 21:00:00,145390058.72523118,0.0,1112.4806609576186,149394989.1046786,0.0,9214853.654033246,10812094.954065679 + 11/22 22:00:00,0.0,0.0,1113.9725979752209,4010301.352710796,0.0,6143235.769355498,3604031.6513552267 + 11/22 23:00:00,0.0,0.0,278.4931494938053,1002575.338177699,0.0,6143235.769355498,3604031.6513552267 + 11/22 24:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/23 01:00:00,0.0,0.0,278.3361526068599,1002010.1493846957,0.0,6143235.769355498,1802015.8256776133 + 11/23 02:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 11/23 03:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 11/23 04:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/23 05:00:00,0.0,0.0,278.22910838435765,1001624.7901836875,0.0,6143235.769355498,1802015.8256776133 + 11/23 06:00:00,0.0,0.0,278.38896133545787,1002200.2608076483,0.0,6143235.769355498,1802015.8256776133 + 11/23 07:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 11/23 08:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 11/23 09:00:00,0.0,0.0,279.21344538220645,1005168.4033759432,0.0,6143235.769355498,1802015.8256776133 + 11/23 10:00:00,0.0,0.0,279.1687983373994,1005007.6740146377,0.0,6143235.769355498,1802015.8256776133 + 11/23 11:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 11/23 12:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 11/23 13:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 11/23 14:00:00,0.0,0.0,280.0041735031458,1008015.0246113249,0.0,6143235.769355498,1802015.8256776133 + 11/23 15:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 11/23 16:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 11/23 17:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 11/23 18:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 11/23 19:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 11/23 20:00:00,0.0,0.0,279.21344538220645,1005168.4033759432,0.0,6143235.769355498,1802015.8256776133 + 11/23 21:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 11/23 22:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 11/23 23:00:00,0.0,0.0,279.25760825036925,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 11/23 24:00:00,0.0,0.0,278.4931494938053,1002575.338177699,0.0,6143235.769355498,1802015.8256776133 + 11/24 01:00:00,0.0,0.0,277.8395272100524,1000222.2979561886,0.0,6143235.769355498,1802015.8256776133 + 11/24 02:00:00,0.0,0.0,278.4412937984862,1002388.6576745503,0.0,6143235.769355498,1802015.8256776133 + 11/24 03:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 11/24 04:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 11/24 05:00:00,0.0,0.0,279.25760825036925,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 11/24 06:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 11/24 07:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 11/24 08:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 11/24 09:00:00,0.0,0.0,278.8907726739134,1004006.7816260882,0.0,6143235.769355498,1802015.8256776133 + 11/24 10:00:00,0.0,0.0,278.98537702925816,1004347.3573053293,0.0,6143235.769355498,1802015.8256776133 + 11/24 11:00:00,0.0,0.0,279.21344538220645,1005168.4033759432,0.0,6143235.769355498,1802015.8256776133 + 11/24 12:00:00,0.0,0.0,279.25760825036925,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 11/24 13:00:00,0.0,0.0,279.3444797664084,1005640.1271590703,0.0,6143235.769355498,1802015.8256776133 + 11/24 14:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 11/24 15:00:00,0.0,0.0,279.25760825036925,1005327.3897013292,0.0,6143235.769355498,1802015.8256776133 + 11/24 16:00:00,0.0,0.0,279.21344538220645,1005168.4033759432,0.0,6143235.769355498,1802015.8256776133 + 11/24 17:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 11/24 18:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 11/24 19:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/24 20:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/24 21:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 11/24 22:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 11/24 23:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/24 24:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/25 01:00:00,0.0,0.0,278.59542859563609,1002943.5429442899,0.0,6143235.769355498,1802015.8256776133 + 11/25 02:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 11/25 03:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/25 04:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/25 05:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/25 06:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/25 07:00:00,366346114.75909069,15692963.356956972,278.9383156199478,367350292.6953225,15692963.356956972,6143235.769355498,1802015.8256776133 + 11/25 08:00:00,140980533.33591698,0.0,558.15610687216,142989895.32065676,0.0,9214853.654033246,10812094.954065679 + 11/25 09:00:00,85694948.76533588,0.0,2789.383156199478,95736728.127654,0.0,24572943.077421994,28832253.210841814 + 11/25 10:00:00,69286294.45201266,0.0,2789.383156199478,79328073.81433079,0.0,27644560.962099744,32436284.862197039 + 11/25 11:00:00,73531384.48654625,0.0,5025.038370073189,91621522.61880975,0.0,27644560.962099744,32436284.862197039 + 11/25 12:00:00,60352611.26591117,0.0,5028.200635795351,78454133.55477444,0.0,27644560.962099744,32436284.862197039 + 11/25 13:00:00,81523790.64945282,0.0,5029.729371923994,99630816.3883792,0.0,27644560.962099744,32436284.862197039 + 11/25 14:00:00,89975299.99813733,0.0,5035.493651529237,108103077.14364258,0.0,27644560.962099744,32436284.862197039 + 11/25 15:00:00,85360557.14240195,0.0,5037.510114286049,103495593.55383173,0.0,27644560.962099744,32436284.862197039 + 11/25 16:00:00,81289531.220532,0.0,5037.510114286049,99424567.63196178,0.0,27644560.962099744,32436284.862197039 + 11/25 17:00:00,74897678.36950484,0.0,3918.0634222224828,89002706.68950576,0.0,27644560.962099744,32436284.862197039 + 11/25 18:00:00,79357555.85513377,0.0,2798.616730158916,89432576.08370587,0.0,27644560.962099744,28832253.210841814 + 11/25 19:00:00,101120656.27129607,0.0,1678.7248740847195,107164065.81800106,0.0,15358089.423388744,18020158.25677613 + 11/25 20:00:00,115632839.2137884,0.0,1118.998589228719,119661234.13501179,0.0,9214853.654033246,10812094.954065679 + 11/25 21:00:00,115948433.36594114,0.0,1118.8453051145605,119976276.46435355,0.0,9214853.654033246,10812094.954065679 + 11/25 22:00:00,0.0,0.0,1118.8453051145608,4027843.0984124189,0.0,6143235.769355498,3604031.6513552267 + 11/25 23:00:00,0.0,0.0,279.8980345988183,1007632.9245557459,0.0,6143235.769355498,3604031.6513552267 + 11/25 24:00:00,0.0,0.0,280.0385700581902,1008138.8522094847,0.0,6143235.769355498,1802015.8256776133 + 11/26 01:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 11/26 02:00:00,0.0,0.0,280.0724745193687,1008260.9082697274,0.0,6143235.769355498,1802015.8256776133 + 11/26 03:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 11/26 04:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 11/26 05:00:00,0.0,0.0,280.13880586357467,1008499.7011088687,0.0,6143235.769355498,1802015.8256776133 + 11/26 06:00:00,0.0,0.0,280.1712321101407,1008616.4355965065,0.0,6143235.769355498,1802015.8256776133 + 11/26 07:00:00,292927506.3171136,13708944.994326257,280.0724745193687,293935767.2253833,13708944.994326257,6143235.769355498,1802015.8256776133 + 11/26 08:00:00,119827453.32487817,0.0,560.2776117271493,121844452.72709592,0.0,9214853.654033246,10812094.954065679 + 11/26 09:00:00,70429792.37158442,0.0,2801.712321101407,80515956.7275495,0.0,24572943.077421994,28832253.210841814 + 11/26 10:00:00,54722123.605091657,0.0,2802.3460419652349,64810569.3561665,0.0,27644560.962099744,32436284.862197039 + 11/26 11:00:00,44686551.35184437,0.0,5047.431403283191,62857304.40366386,0.0,27644560.962099744,32436284.862197039 + 11/26 12:00:00,34819159.65471334,0.0,5049.859862795621,52998655.160777579,0.0,27644560.962099744,32436284.862197039 + 11/26 13:00:00,1583407.4826916387,0.0,5057.881595760049,19791781.227427819,0.0,27644560.962099744,32436284.862197039 + 11/26 14:00:00,0.0,30780834.768390448,5057.33231511528,18206396.33441501,30780834.768390448,27644560.962099744,32436284.862197039 + 11/26 15:00:00,0.0,54445973.34964448,5053.667168500768,18193201.806602766,54445973.34964448,27644560.962099744,32436284.862197039 + 11/26 16:00:00,0.0,20158343.9912774,5045.867222116819,18165121.99962055,20158343.9912774,27644560.962099744,32436284.862197039 + 11/26 17:00:00,32283802.967875974,0.0,3921.943282090044,46402798.78340013,0.0,27644560.962099744,32436284.862197039 + 11/26 18:00:00,57947511.46126001,0.0,2797.8747901411986,68019860.70576833,0.0,27644560.962099744,28832253.210841814 + 11/26 19:00:00,85139434.83971083,0.0,1678.94892621875,91183650.97409833,0.0,15358089.423388744,18020158.25677613 + 11/26 20:00:00,101411661.05369838,0.0,1118.8453051145605,105439504.15211082,0.0,9214853.654033246,10812094.954065679 + 11/26 21:00:00,102763738.46511254,0.0,1119.1499160564795,106792678.16291589,0.0,9214853.654033246,10812094.954065679 + 11/26 22:00:00,0.0,0.0,1116.853781528826,4020673.6135037725,0.0,6143235.769355498,3604031.6513552267 + 11/26 23:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,3604031.6513552267 + 11/26 24:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 11/27 01:00:00,0.0,0.0,279.1687983373994,1005007.6740146377,0.0,6143235.769355498,1802015.8256776133 + 11/27 02:00:00,0.0,0.0,279.1687983373994,1005007.6740146377,0.0,6143235.769355498,1802015.8256776133 + 11/27 03:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 11/27 04:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 11/27 05:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/27 06:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 11/27 07:00:00,351536696.41754046,13518492.38240761,278.9383156199478,352540874.3537722,13518492.38240761,6143235.769355498,1802015.8256776133 + 11/27 08:00:00,135771467.20146895,0.0,557.5884880020421,137778785.75827629,0.0,9214853.654033246,10812094.954065679 + 11/27 09:00:00,84475523.34535405,0.0,2790.7805343607999,94522333.26905293,0.0,24572943.077421994,28832253.210841814 + 11/27 10:00:00,55476148.025122839,0.0,2795.5315637278397,65540061.65454306,0.0,27644560.962099744,32436284.862197039 + 11/27 11:00:00,6760407.925192184,0.0,5041.905958104511,24911269.37436842,0.0,27644560.962099744,32436284.862197039 + 11/27 12:00:00,1638779.1287602329,0.0,5043.082177982533,19793874.969497354,0.0,27644560.962099744,32436284.862197039 + 11/27 13:00:00,2604241.8603079628,0.0,5053.667168500768,20797443.666910728,0.0,27644560.962099744,32436284.862197039 + 11/27 14:00:00,0.0,3174699.7682569769,5053.280011661194,18191808.041980305,3174699.7682569769,27644560.962099744,32436284.862197039 + 11/27 15:00:00,0.0,3460284.07853231,5044.779889708922,18161207.60295212,3460284.07853231,27644560.962099744,32436284.862197039 + 11/27 16:00:00,14063903.518323195,0.0,5043.082177982533,32218999.359060315,0.0,27644560.962099744,32436284.862197039 + 11/27 17:00:00,53485462.12727994,0.0,3920.5399808146628,67599406.05821271,0.0,27644560.962099744,32436284.862197039 + 11/27 18:00:00,66076121.719509977,0.0,2797.8747901411986,76148470.96401829,0.0,27644560.962099744,28832253.210841814 + 11/27 19:00:00,95220522.09144616,0.0,1678.0350977771894,101261448.44344405,0.0,15358089.423388744,18020158.25677613 + 11/27 20:00:00,113518068.91369286,0.0,1117.3779190656338,117540629.42232913,0.0,9214853.654033246,10812094.954065679 + 11/27 21:00:00,116015163.60176492,0.0,1116.8537815288258,120035837.2152687,0.0,9214853.654033246,10812094.954065679 + 11/27 22:00:00,0.0,0.0,1116.8537815288256,4020673.6135037725,0.0,6143235.769355498,3604031.6513552267 + 11/27 23:00:00,0.0,0.0,279.1687983373994,1005007.6740146378,0.0,6143235.769355498,3604031.6513552267 + 11/27 24:00:00,0.0,0.0,279.07805343608,1004680.9923698879,0.0,6143235.769355498,1802015.8256776133 + 11/28 01:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 11/28 02:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 11/28 03:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/28 04:00:00,0.0,0.0,278.7452592003734,1003482.9331213443,0.0,6143235.769355498,1802015.8256776133 + 11/28 05:00:00,0.0,0.0,278.69579471541325,1003304.8609754876,0.0,6143235.769355498,1802015.8256776133 + 11/28 06:00:00,0.0,0.0,280.10588656136175,1008381.1916209023,0.0,6143235.769355498,1802015.8256776133 + 11/28 07:00:00,332888834.0236973,15363021.642499704,279.25760825036925,333894161.4133987,15363021.642499704,6143235.769355498,1802015.8256776133 + 11/28 08:00:00,91321264.47889108,0.0,561.9258127905868,93344197.40493718,0.0,9214853.654033246,10812094.954065679 + 11/28 09:00:00,0.0,1325199.3651915459,2812.101525472185,10123565.491699867,1325199.3651915459,24572943.077421994,28832253.210841814 + 11/28 10:00:00,0.0,45068675.589335288,2811.0298865175125,10119707.591463045,45068675.589335288,27644560.962099744,32436284.862197039 + 11/28 11:00:00,0.0,46839003.13661595,5053.558209946162,18192809.555806184,46839003.13661595,27644560.962099744,32436284.862197039 + 11/28 12:00:00,0.0,40974714.24951905,5053.558209946162,18192809.555806184,40974714.24951905,27644560.962099744,32436284.862197039 + 11/28 13:00:00,0.0,42585581.54457528,5053.558209946162,18192809.555806184,42585581.54457528,27644560.962099744,32436284.862197039 + 11/28 14:00:00,0.0,57814329.627782199,5056.960726116803,18205058.61402049,57814329.627782199,27644560.962099744,32436284.862197039 + 11/28 15:00:00,0.0,64216882.46244615,5055.3719474312279,18199339.010752419,64216882.46244615,27644560.962099744,32436284.862197039 + 11/28 16:00:00,0.0,44389793.60717059,5054.673424336896,18196824.327612826,44389793.60717059,27644560.962099744,32436284.862197039 + 11/28 17:00:00,0.0,1053529.3095689126,3933.636903733946,14161092.853442206,1053529.3095689126,27644560.962099744,32436284.862197039 + 11/28 18:00:00,0.0,0.0,2809.5841401720288,10114502.904619303,0.0,27644560.962099744,28832253.210841814 + 11/28 19:00:00,20085492.45864484,0.0,1686.1899273760783,26155776.197198724,0.0,15358089.423388744,18020158.25677613 + 11/28 20:00:00,38385223.90593007,0.0,1123.896258209699,42431250.435485,0.0,9214853.654033246,10812094.954065679 + 11/28 21:00:00,38089941.00171338,0.0,1123.7690502481785,42135509.582606818,0.0,9214853.654033246,10812094.954065679 + 11/28 22:00:00,0.0,0.0,1123.896258209699,4046026.5295549167,0.0,6143235.769355498,3604031.6513552267 + 11/28 23:00:00,0.0,0.0,281.1131202148528,1012007.2327734701,0.0,6143235.769355498,3604031.6513552267 + 11/28 24:00:00,0.0,0.0,281.2101525472185,1012356.5491699866,0.0,6143235.769355498,1802015.8256776133 + 11/29 01:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 11/29 02:00:00,0.0,0.0,281.209506370816,1012354.2229349375,0.0,6143235.769355498,1802015.8256776133 + 11/29 03:00:00,0.0,0.0,281.20972063264227,1012354.9942775121,0.0,6143235.769355498,1802015.8256776133 + 11/29 04:00:00,0.0,0.0,281.2000113426414,1012320.0408335091,0.0,6143235.769355498,1802015.8256776133 + 11/29 05:00:00,0.0,0.0,281.1508347200099,1012143.0049920357,0.0,6143235.769355498,1802015.8256776133 + 11/29 06:00:00,0.0,0.0,281.0729343493732,1011862.5636577436,0.0,6143235.769355498,1802015.8256776133 + 11/29 07:00:00,199209809.20220597,4734161.893836978,280.9934219866695,200221385.52135796,4734161.893836978,6143235.769355498,1802015.8256776133 + 11/29 08:00:00,98467756.58708051,0.0,561.9568294938098,100490801.17325823,0.0,9214853.654033246,10812094.954065679 + 11/29 09:00:00,53677632.83094439,0.0,2810.0792797058959,63793918.23788561,0.0,24572943.077421994,28832253.210841814 + 11/29 10:00:00,39771322.89979028,0.0,2811.059149396714,49891135.83761845,0.0,27644560.962099744,32436284.862197039 + 11/29 11:00:00,36146884.378488879,0.0,5060.418741752001,54364391.84879607,0.0,27644560.962099744,32436284.862197039 + 11/29 12:00:00,19150718.7766656,0.0,5061.538074089611,37372255.8433882,0.0,27644560.962099744,32436284.862197039 + 11/29 13:00:00,21116742.234619447,0.0,5061.781460274864,39339155.491608958,0.0,27644560.962099744,32436284.862197039 + 11/29 14:00:00,26439164.31263368,0.0,5061.771114674688,44661540.32546255,0.0,27644560.962099744,32436284.862197039 + 11/29 15:00:00,32896977.27048741,0.0,5058.394786070604,51107198.50034159,0.0,27644560.962099744,32436284.862197039 + 11/29 16:00:00,47267682.74854036,0.0,5055.468148914055,65467368.08463095,0.0,27644560.962099744,32436284.862197039 + 11/29 17:00:00,58446116.652544859,0.0,3927.304923072997,72584414.37560764,0.0,27644560.962099744,32436284.862197039 + 11/29 18:00:00,74084081.4254218,0.0,2802.3460419652349,84172527.17649666,0.0,27644560.962099744,28832253.210841814 + 11/29 19:00:00,104971767.80414309,0.0,1680.4348471162123,111021333.25376146,0.0,15358089.423388744,18020158.25677613 + 11/29 20:00:00,123802696.65828789,0.0,1119.8771407371062,127834254.36494147,0.0,9214853.654033246,10812094.954065679 + 11/29 21:00:00,128934298.46652228,0.0,1119.2992841458334,132963775.88944727,0.0,9214853.654033246,10812094.954065679 + 11/29 22:00:00,0.0,0.0,1118.0495773819346,4024978.4785749635,0.0,6143235.769355498,3604031.6513552267 + 11/29 23:00:00,0.0,0.0,279.5531563727839,1006391.362942022,0.0,6143235.769355498,3604031.6513552267 + 11/29 24:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 11/30 01:00:00,0.0,0.0,279.74964730717979,1007098.7303058471,0.0,6143235.769355498,1802015.8256776133 + 11/30 02:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,1802015.8256776133 + 11/30 03:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 11/30 04:00:00,0.0,0.0,279.86167301589168,1007502.0228572099,0.0,6143235.769355498,1802015.8256776133 + 11/30 05:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 11/30 06:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 11/30 07:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 11/30 08:00:00,0.0,0.0,279.82482103645835,1007369.35573125,0.0,6143235.769355498,1802015.8256776133 + 11/30 09:00:00,0.0,0.0,280.2031649899243,1008731.3939637274,0.0,6143235.769355498,1802015.8256776133 + 11/30 10:00:00,0.0,0.0,280.46831041095279,1009685.9174794299,0.0,6143235.769355498,1802015.8256776133 + 11/30 11:00:00,0.0,0.0,280.67026031775569,1010412.9371439203,0.0,6143235.769355498,1802015.8256776133 + 11/30 12:00:00,0.0,0.0,280.8593416063364,1011093.629782811,0.0,6143235.769355498,1802015.8256776133 + 11/30 13:00:00,0.0,0.0,280.78029684296339,1010809.0686346681,0.0,6143235.769355498,1802015.8256776133 + 11/30 14:00:00,0.0,0.0,280.8403299074252,1011025.1876667307,0.0,6143235.769355498,1802015.8256776133 + 11/30 15:00:00,0.0,0.0,280.75928713893156,1010733.4337001536,0.0,6143235.769355498,1802015.8256776133 + 11/30 16:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 11/30 17:00:00,0.0,0.0,279.96928518427657,1007889.4266633956,0.0,6143235.769355498,1802015.8256776133 + 11/30 18:00:00,0.0,0.0,280.26554942827348,1008955.9779417844,0.0,6143235.769355498,1802015.8256776133 + 11/30 19:00:00,0.0,0.0,280.573263111391,1010063.7472010076,0.0,6143235.769355498,1802015.8256776133 + 11/30 20:00:00,0.0,0.0,280.412855737955,1009486.280656638,0.0,6143235.769355498,1802015.8256776133 + 11/30 21:00:00,0.0,0.0,280.2346041965235,1008844.5751074846,0.0,6143235.769355498,1802015.8256776133 + 11/30 22:00:00,0.0,0.0,279.9339054363424,1007762.0595708327,0.0,6143235.769355498,1802015.8256776133 + 11/30 23:00:00,0.0,0.0,279.30128651813689,1005484.6314652927,0.0,6143235.769355498,1802015.8256776133 + 11/30 24:00:00,0.0,0.0,278.174873917562,1001429.5461032234,0.0,6143235.769355498,1802015.8256776133 + 12/01 01:00:00,0.0,0.0,276.4658044910743,995276.8961678676,0.0,6143235.769355498,1802015.8256776133 + 12/01 02:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 12/01 03:00:00,0.0,0.0,273.06127739181809,983020.598610545,0.0,6143235.769355498,1802015.8256776133 + 12/01 04:00:00,0.0,0.0,272.2613108278844,980140.718980384,0.0,6143235.769355498,1802015.8256776133 + 12/01 05:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 12/01 06:00:00,0.0,0.0,272.17032681307486,979813.1765270694,0.0,6143235.769355498,1802015.8256776133 + 12/01 07:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 12/01 08:00:00,0.0,0.0,273.4058010002347,984260.8836008449,0.0,6143235.769355498,1802015.8256776133 + 12/01 09:00:00,0.0,0.0,274.87058607084358,989534.1098550368,0.0,6143235.769355498,1802015.8256776133 + 12/01 10:00:00,0.0,0.0,275.1008980765597,990363.2330756149,0.0,6143235.769355498,1802015.8256776133 + 12/01 11:00:00,0.0,0.0,275.4758474910033,991713.050967612,0.0,6143235.769355498,1802015.8256776133 + 12/01 12:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 12/01 13:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 12/01 14:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 12/01 15:00:00,0.0,0.0,277.118089595552,997625.1225439872,0.0,6143235.769355498,1802015.8256776133 + 12/01 16:00:00,0.0,0.0,276.73224788530129,996236.0923870844,0.0,6143235.769355498,1802015.8256776133 + 12/01 17:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 12/01 18:00:00,0.0,0.0,277.118089595552,997625.1225439872,0.0,6143235.769355498,1802015.8256776133 + 12/01 19:00:00,0.0,0.0,277.24299744802218,998074.7908128798,0.0,6143235.769355498,1802015.8256776133 + 12/01 20:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 12/01 21:00:00,0.0,0.0,277.4268682327064,998736.725637743,0.0,6143235.769355498,1802015.8256776133 + 12/01 22:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 12/01 23:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 12/01 24:00:00,0.0,0.0,273.82680937537466,985776.5137513487,0.0,6143235.769355498,1802015.8256776133 + 12/02 01:00:00,0.0,0.0,274.1558361493954,986961.0101378234,0.0,6143235.769355498,1802015.8256776133 + 12/02 02:00:00,0.0,0.0,274.23700568575097,987253.2204687034,0.0,6143235.769355498,1802015.8256776133 + 12/02 03:00:00,0.0,0.0,274.6362915355431,988690.6495279551,0.0,6143235.769355498,1802015.8256776133 + 12/02 04:00:00,0.0,0.0,274.3980347034177,987832.9249323037,0.0,6143235.769355498,1802015.8256776133 + 12/02 05:00:00,0.0,0.0,274.47789263962616,988120.4135026541,0.0,6143235.769355498,1802015.8256776133 + 12/02 06:00:00,0.0,0.0,272.7984177797474,982074.3040070906,0.0,6143235.769355498,1802015.8256776133 + 12/02 07:00:00,526568948.63461318,16088197.89723306,274.7148309753854,527557922.0261245,16088197.89723306,6143235.769355498,1802015.8256776133 + 12/02 08:00:00,177298502.3019265,0.0,548.9557852792523,179274743.1289318,0.0,9214853.654033246,10812094.954065679 + 12/02 09:00:00,63010268.549175489,0.0,2741.5583614939534,72879878.65055372,0.0,24572943.077421994,28832253.210841814 + 12/02 10:00:00,28980093.078753957,0.0,2744.7789263962615,38861297.21378049,0.0,27644560.962099744,32436284.862197039 + 12/02 11:00:00,40091402.416631508,0.0,4944.8669575569369,57892923.463836479,0.0,27644560.962099744,32436284.862197039 + 12/02 12:00:00,58245862.90490428,0.0,4946.2727292649519,76052444.7302581,0.0,27644560.962099744,32436284.862197039 + 12/02 13:00:00,52851532.78345856,0.0,4946.2727292649519,70658114.60881239,0.0,27644560.962099744,32436284.862197039 + 12/02 14:00:00,39948503.95285228,0.0,4947.670549275184,57760117.93024295,0.0,27644560.962099744,32436284.862197039 + 12/02 15:00:00,22756065.188761139,0.0,4940.60206751327,40542232.63180891,0.0,27644560.962099744,32436284.862197039 + 12/02 16:00:00,58696322.21489713,0.0,4915.102993052725,76390692.98988694,0.0,27644560.962099744,32436284.862197039 + 12/02 17:00:00,152230181.5416613,0.0,3786.471383819844,165861478.52341274,0.0,27644560.962099744,32436284.862197039 + 12/02 18:00:00,171477616.21152366,0.0,2704.6224170141747,181214256.91277469,0.0,27644560.962099744,28832253.210841814 + 12/02 19:00:00,205486797.70093186,0.0,1613.637445187074,211295892.50360529,0.0,15358089.423388744,18020158.25677613 + 12/02 20:00:00,228848430.2050413,0.0,1071.5042434758828,232705845.48155449,0.0,9214853.654033246,10812094.954065679 + 12/02 21:00:00,234431180.96945919,0.0,1065.2972669078254,238266251.13032735,0.0,9214853.654033246,10812094.954065679 + 12/02 22:00:00,0.0,0.0,1067.9926955923957,3844773.704132626,0.0,6143235.769355498,3604031.6513552267 + 12/02 23:00:00,0.0,0.0,264.46456386169106,952072.4299020878,0.0,6143235.769355498,3604031.6513552267 + 12/02 24:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 12/03 01:00:00,0.0,0.0,260.74489588116549,938681.6251721957,0.0,6143235.769355498,1802015.8256776133 + 12/03 02:00:00,0.0,0.0,263.98573887090319,950348.6599352514,0.0,6143235.769355498,1802015.8256776133 + 12/03 03:00:00,0.0,0.0,263.6230664467321,949043.0392082355,0.0,6143235.769355498,1802015.8256776133 + 12/03 04:00:00,0.0,0.0,263.1348245174897,947285.3682629628,0.0,6143235.769355498,1802015.8256776133 + 12/03 05:00:00,0.0,0.0,262.88871946402477,946399.3900704892,0.0,6143235.769355498,1802015.8256776133 + 12/03 06:00:00,0.0,0.0,262.88871946402477,946399.3900704892,0.0,6143235.769355498,1802015.8256776133 + 12/03 07:00:00,771279122.313029,14420644.350852674,262.64130426200657,772224631.0083722,14420644.350852674,6143235.769355498,1802015.8256776133 + 12/03 08:00:00,270514690.25263258,0.0,524.285162892085,272402116.8390441,0.0,9214853.654033246,10812094.954065679 + 12/03 09:00:00,163131527.42458315,0.0,2650.5537684334656,172673520.9909436,0.0,24572943.077421994,28832253.210841814 + 12/03 10:00:00,144622310.74920694,0.0,2660.9680210145809,154201795.62485943,0.0,27644560.962099744,32436284.862197039 + 12/03 11:00:00,157857559.71293248,0.0,4789.742437826246,175100632.48910696,0.0,27644560.962099744,32436284.862197039 + 12/03 12:00:00,159959748.72495518,0.0,4799.931879324977,177239503.4905251,0.0,27644560.962099744,32436284.862197039 + 12/03 13:00:00,162952353.05466507,0.0,4807.965695240438,180261029.55753065,0.0,27644560.962099744,32436284.862197039 + 12/03 14:00:00,166129442.52112664,0.0,4811.942932426971,183452437.0778637,0.0,27644560.962099744,32436284.862197039 + 12/03 15:00:00,163486351.45942617,0.0,4821.769095641473,180844720.20373548,0.0,27644560.962099744,32436284.862197039 + 12/03 16:00:00,196895418.07908768,0.0,4811.942932426971,214218412.63582475,0.0,27644560.962099744,32436284.862197039 + 12/03 17:00:00,206232076.05479659,0.0,3747.223487825722,219722080.6109692,0.0,27644560.962099744,32436284.862197039 + 12/03 18:00:00,211087513.63982196,0.0,2680.9179961306838,220738818.4258924,0.0,27644560.962099744,28832253.210841814 + 12/03 19:00:00,231721385.82486899,0.0,1613.637445187074,237530480.62754245,0.0,15358089.423388744,18020158.25677613 + 12/03 20:00:00,262334564.53787149,0.0,1076.5907282932799,266210291.15972726,0.0,9214853.654033246,10812094.954065679 + 12/03 21:00:00,270119569.5577422,0.0,1077.0046204744866,273996786.19145038,0.0,9214853.654033246,10812094.954065679 + 12/03 22:00:00,0.0,0.0,1079.0506872766769,3884582.474196037,0.0,6143235.769355498,3604031.6513552267 + 12/03 23:00:00,0.0,0.0,270.2643513397579,972951.6648231288,0.0,6143235.769355498,3604031.6513552267 + 12/03 24:00:00,0.0,0.0,271.70917538934938,978153.0314016575,0.0,6143235.769355498,1802015.8256776133 + 12/04 01:00:00,0.0,0.0,271.89487870082879,978821.5633229836,0.0,6143235.769355498,1802015.8256776133 + 12/04 02:00:00,0.0,0.0,273.5754953925591,984871.7834132128,0.0,6143235.769355498,1802015.8256776133 + 12/04 03:00:00,0.0,0.0,274.31773879530808,987543.8596631091,0.0,6143235.769355498,1802015.8256776133 + 12/04 04:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 12/04 05:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 12/04 06:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 12/04 07:00:00,449443861.90193119,17423718.063368657,277.8395272100524,450444084.1998874,17423718.063368657,6143235.769355498,1802015.8256776133 + 12/04 08:00:00,182306236.7275192,0.0,556.7779226709157,184310637.24913449,0.0,9214853.654033246,10812094.954065679 + 12/04 09:00:00,113076729.924046,0.0,2800.724745193687,123159339.00674327,0.0,24572943.077421994,28832253.210841814 + 12/04 10:00:00,81065253.66604091,0.0,2802.0316498992426,91152567.60567819,0.0,27644560.962099744,32436284.862197039 + 12/04 11:00:00,71910377.69992891,0.0,5046.918925309814,90079285.83104424,0.0,27644560.962099744,32436284.862197039 + 12/04 12:00:00,67701611.47608745,0.0,5046.397529920062,85868642.58379966,0.0,27644560.962099744,32436284.862197039 + 12/04 13:00:00,75496570.44884135,0.0,5040.075123056625,93640840.8918452,0.0,27644560.962099744,32436284.862197039 + 12/04 14:00:00,50142495.472595248,0.0,5050.318736005038,68323642.92221339,0.0,27644560.962099744,32436284.862197039 + 12/04 15:00:00,0.0,0.0,5045.328006988482,18163180.825158538,0.0,27644560.962099744,32436284.862197039 + 12/04 16:00:00,37525251.98900286,0.0,5044.2228755374239,55684454.340937588,0.0,27644560.962099744,32436284.862197039 + 12/04 17:00:00,82698185.54190637,0.0,3919.0746761087928,96806854.37589802,0.0,27644560.962099744,32436284.862197039 + 12/04 18:00:00,95877621.03205292,0.0,2793.871875807369,105935559.78495945,0.0,27644560.962099744,28832253.210841814 + 12/04 19:00:00,118701987.73542699,0.0,1675.0127900243963,124732033.77951482,0.0,15358089.423388744,18020158.25677613 + 12/04 20:00:00,137300826.8657459,0.0,1115.9415081170326,141318216.29496724,0.0,9214853.654033246,10812094.954065679 + 12/04 21:00:00,143342520.78987236,0.0,1113.7651751939448,147352075.42057056,0.0,9214853.654033246,10812094.954065679 + 12/04 22:00:00,0.0,0.0,1112.9164335374304,4006499.160734749,0.0,6143235.769355498,3604031.6513552267 + 12/04 23:00:00,0.0,0.0,278.4412937984862,1002388.6576745503,0.0,6143235.769355498,3604031.6513552267 + 12/04 24:00:00,0.0,0.0,278.4412937984862,1002388.6576745503,0.0,6143235.769355498,1802015.8256776133 + 12/05 01:00:00,0.0,0.0,278.3361526068599,1002010.1493846957,0.0,6143235.769355498,1802015.8256776133 + 12/05 02:00:00,0.0,0.0,278.2828681194017,1001818.3252298462,0.0,6143235.769355498,1802015.8256776133 + 12/05 03:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 12/05 04:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 12/05 05:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 12/05 06:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 12/05 07:00:00,396246082.21453317,15866228.518130752,277.60653573727947,397245465.7431874,15866228.518130752,6143235.769355498,1802015.8256776133 + 12/05 08:00:00,164774145.27793519,0.0,555.3309763021406,166773336.7926229,0.0,9214853.654033246,10812094.954065679 + 12/05 09:00:00,112151706.40793441,0.0,2780.093273533083,122160042.1926535,0.0,24572943.077421994,28832253.210841814 + 12/05 10:00:00,82111610.65821477,0.0,2784.4129379848616,92135497.23496026,0.0,27644560.962099744,32436284.862197039 + 12/05 11:00:00,44581424.46081089,0.0,5023.40496184944,62665682.32346887,0.0,27644560.962099744,32436284.862197039 + 12/05 12:00:00,59875482.63008208,0.0,5025.8420168797169,77968513.89084906,0.0,27644560.962099744,32436284.862197039 + 12/05 13:00:00,50268312.80299748,0.0,5028.200635795351,68369835.09186074,0.0,27644560.962099744,32436284.862197039 + 12/05 14:00:00,42781712.008698318,0.0,5035.493651529237,60909489.15420357,0.0,27644560.962099744,32436284.862197039 + 12/05 15:00:00,42201465.336547609,0.0,5036.174622254158,60331693.976662579,0.0,27644560.962099744,32436284.862197039 + 12/05 16:00:00,52246373.723901059,0.0,5034.803873015523,70371667.66675695,0.0,27644560.962099744,32436284.862197039 + 12/05 17:00:00,78158584.3091204,0.0,3914.8650482514,92252098.48282545,0.0,27644560.962099744,32436284.862197039 + 12/05 18:00:00,83476776.70623088,0.0,2798.616730158916,93551796.93480297,0.0,27644560.962099744,28832253.210841814 + 12/05 19:00:00,108190001.46684656,0.0,1678.2679576718409,114231766.11446518,0.0,15358089.423388744,18020158.25677613 + 12/05 20:00:00,123955841.04070753,0.0,1118.3737238554043,127981986.44658697,0.0,9214853.654033246,10812094.954065679 + 12/05 21:00:00,124020736.47791413,0.0,1118.5328709289716,128047454.81325843,0.0,9214853.654033246,10812094.954065679 + 12/05 22:00:00,0.0,0.0,1118.9985892287194,4028394.921223389,0.0,6143235.769355498,3604031.6513552267 + 12/05 23:00:00,0.0,0.0,279.78747901411989,1007234.9244508315,0.0,6143235.769355498,3604031.6513552267 + 12/05 24:00:00,0.0,0.0,279.59343096385109,1006536.3514698637,0.0,6143235.769355498,1802015.8256776133 + 12/06 01:00:00,0.0,0.0,279.5531563727839,1006391.3629420222,0.0,6143235.769355498,1802015.8256776133 + 12/06 02:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 12/06 03:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 12/06 04:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 12/06 05:00:00,0.0,0.0,279.7113262786401,1006960.7746031045,0.0,6143235.769355498,1802015.8256776133 + 12/06 06:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 12/06 07:00:00,324111141.8403417,14337204.466634712,279.5531563727839,325117533.2032837,14337204.466634712,6143235.769355498,1802015.8256776133 + 12/06 08:00:00,128247940.62462653,0.0,559.1063127455678,130260723.35051057,0.0,9214853.654033246,10812094.954065679 + 12/06 09:00:00,58938318.9853512,0.0,2795.93430963851,69003682.50004983,0.0,24572943.077421994,28832253.210841814 + 12/06 10:00:00,34673917.66368354,0.0,2797.8747901411986,44746266.90819185,0.0,27644560.962099744,32436284.862197039 + 12/06 11:00:00,27045503.934429055,0.0,5037.510114286049,45180540.345858838,0.0,27644560.962099744,32436284.862197039 + 12/06 12:00:00,24726006.640014125,0.0,5037.510114286049,42861043.051443908,0.0,27644560.962099744,32436284.862197039 + 12/06 13:00:00,29368339.29155685,0.0,5036.8467786562509,47500987.69471935,0.0,27644560.962099744,32436284.862197039 + 12/06 14:00:00,35956148.6294181,0.0,5038.810297854163,54095865.70169309,0.0,27644560.962099744,32436284.862197039 + 12/06 15:00:00,26499989.7042574,0.0,5040.075123056625,44644260.14726125,0.0,27644560.962099744,32436284.862197039 + 12/06 16:00:00,14690861.737730243,0.0,5036.174622254158,32821090.37784521,0.0,27644560.962099744,32436284.862197039 + 12/06 17:00:00,67461114.8847583,0.0,3915.4152281467747,81556609.70608667,0.0,27644560.962099744,32436284.862197039 + 12/06 18:00:00,77565279.36231038,0.0,2795.5315637278397,87629192.9917306,0.0,27644560.962099744,28832253.210841814 + 12/06 19:00:00,105948521.85283385,0.0,1676.3231254844216,111983285.10457777,0.0,15358089.423388744,18020158.25677613 + 12/06 20:00:00,122164675.75101441,0.0,1118.0495773819344,126189654.22958939,0.0,9214853.654033246,10812094.954065679 + 12/06 21:00:00,122639931.50518203,0.0,1118.3737238554043,126666076.91106148,0.0,9214853.654033246,10812094.954065679 + 12/06 22:00:00,0.0,0.0,1118.0495773819346,4024978.4785749639,0.0,6143235.769355498,3604031.6513552267 + 12/06 23:00:00,0.0,0.0,279.30128651813689,1005484.6314652928,0.0,6143235.769355498,3604031.6513552267 + 12/06 24:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 12/07 01:00:00,0.0,0.0,278.79424400102109,1003659.2784036759,0.0,6143235.769355498,1802015.8256776133 + 12/07 02:00:00,0.0,0.0,278.54452792385038,1002760.3005258613,0.0,6143235.769355498,1802015.8256776133 + 12/07 03:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 12/07 04:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 12/07 05:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 12/07 06:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 12/07 07:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 12/07 08:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 12/07 09:00:00,0.0,0.0,276.4658044910743,995276.8961678674,0.0,6143235.769355498,1802015.8256776133 + 12/07 10:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 12/07 11:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 12/07 12:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 12/07 13:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 12/07 14:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 12/07 15:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 12/07 16:00:00,0.0,0.0,277.78198444635839,1000015.1440068901,0.0,6143235.769355498,1802015.8256776133 + 12/07 17:00:00,0.0,0.0,278.0093273533083,1000833.57847191,0.0,6143235.769355498,1802015.8256776133 + 12/07 18:00:00,0.0,0.0,277.89659898009736,1000427.7563283504,0.0,6143235.769355498,1802015.8256776133 + 12/07 19:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 12/07 20:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 12/07 21:00:00,0.0,0.0,277.24299744802218,998074.7908128798,0.0,6143235.769355498,1802015.8256776133 + 12/07 22:00:00,0.0,0.0,276.8627099133741,996705.7556881467,0.0,6143235.769355498,1802015.8256776133 + 12/07 23:00:00,0.0,0.0,276.5331036672942,995519.1732022591,0.0,6143235.769355498,1802015.8256776133 + 12/07 24:00:00,0.0,0.0,276.3980475023251,995032.9710083703,0.0,6143235.769355498,1802015.8256776133 + 12/08 01:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 12/08 02:00:00,0.0,0.0,276.0524182789608,993788.7058042588,0.0,6143235.769355498,1802015.8256776133 + 12/08 03:00:00,0.0,0.0,275.9819282212987,993534.9415966753,0.0,6143235.769355498,1802015.8256776133 + 12/08 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 12/08 05:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 12/08 06:00:00,0.0,0.0,275.69544312300209,992503.5952428074,0.0,6143235.769355498,1802015.8256776133 + 12/08 07:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 12/08 08:00:00,0.0,0.0,275.25221706141186,990907.9814210826,0.0,6143235.769355498,1802015.8256776133 + 12/08 09:00:00,0.0,0.0,275.69544312300209,992503.5952428074,0.0,6143235.769355498,1802015.8256776133 + 12/08 10:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 12/08 11:00:00,0.0,0.0,275.622694067615,992241.698643414,0.0,6143235.769355498,1802015.8256776133 + 12/08 12:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 12/08 13:00:00,0.0,0.0,275.9819282212987,993534.9415966753,0.0,6143235.769355498,1802015.8256776133 + 12/08 14:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 12/08 15:00:00,0.0,0.0,276.73224788530129,996236.0923870845,0.0,6143235.769355498,1802015.8256776133 + 12/08 16:00:00,0.0,0.0,277.180775858192,997850.7930894913,0.0,6143235.769355498,1802015.8256776133 + 12/08 17:00:00,0.0,0.0,277.3047537680151,998297.1135648543,0.0,6143235.769355498,1802015.8256776133 + 12/08 18:00:00,0.0,0.0,277.3660442256075,998517.7592121869,0.0,6143235.769355498,1802015.8256776133 + 12/08 19:00:00,0.0,0.0,277.4872252056943,998954.0107404995,0.0,6143235.769355498,1802015.8256776133 + 12/08 20:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 12/08 21:00:00,0.0,0.0,277.60653573727947,999383.528654206,0.0,6143235.769355498,1802015.8256776133 + 12/08 22:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 12/08 23:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 12/08 24:00:00,0.0,0.0,276.3980475023251,995032.9710083703,0.0,6143235.769355498,1802015.8256776133 + 12/09 01:00:00,0.0,0.0,276.2611626921881,994540.1856918773,0.0,6143235.769355498,1802015.8256776133 + 12/09 02:00:00,0.0,0.0,276.32983335118726,994787.4000642741,0.0,6143235.769355498,1802015.8256776133 + 12/09 03:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 12/09 04:00:00,0.0,0.0,276.0524182789608,993788.7058042588,0.0,6143235.769355498,1802015.8256776133 + 12/09 05:00:00,0.0,0.0,276.2611626921881,994540.1856918773,0.0,6143235.769355498,1802015.8256776133 + 12/09 06:00:00,0.0,0.0,276.12245449060966,994040.8361661948,0.0,6143235.769355498,1802015.8256776133 + 12/09 07:00:00,456765037.9700421,17096169.70170635,276.0524182789608,457758826.67584648,17096169.70170635,6143235.769355498,1802015.8256776133 + 12/09 08:00:00,180875372.26909877,0.0,552.1048365579216,182862949.6807073,0.0,9214853.654033246,10812094.954065679 + 12/09 09:00:00,133301319.97646244,0.0,2751.767802910393,143207684.06693984,0.0,24572943.077421994,28832253.210841814 + 12/09 10:00:00,104819252.2733655,0.0,2750.245711460766,114720136.83462425,0.0,27644560.962099744,32436284.862197039 + 12/09 11:00:00,103202016.52962899,0.0,4949.060404175298,121018633.98466006,0.0,27644560.962099744,32436284.862197039 + 12/09 12:00:00,103644734.71685447,0.0,4947.670549275184,121456348.69424513,0.0,27644560.962099744,32436284.862197039 + 12/09 13:00:00,99402685.92068607,0.0,4950.44228062938,117224278.13095182,0.0,27644560.962099744,32436284.862197039 + 12/09 14:00:00,106345522.11637815,0.0,4944.8669575569369,124147043.16358312,0.0,27644560.962099744,32436284.862197039 + 12/09 15:00:00,108200675.33547804,0.0,4946.2727292649519,126007257.16083187,0.0,27644560.962099744,32436284.862197039 + 12/09 16:00:00,122100950.5631921,0.0,4940.60206751327,139887118.00623987,0.0,27644560.962099744,32436284.862197039 + 12/09 17:00:00,126556858.373124,0.0,3843.802365727545,140394546.88974316,0.0,27644560.962099744,32436284.862197039 + 12/09 18:00:00,130780026.82961643,0.0,2744.7789263962615,140661230.96464298,0.0,27644560.962099744,28832253.210841814 + 12/09 19:00:00,163770168.24355404,0.0,1645.4220341145058,169693687.56636627,0.0,15358089.423388744,18020158.25677613 + 12/09 20:00:00,186935767.76835878,0.0,1093.6232040009389,190872811.30276216,0.0,9214853.654033246,10812094.954065679 + 12/09 21:00:00,192653114.63118095,0.0,1089.7681023182486,196576279.79952664,0.0,9214853.654033246,10812094.954065679 + 12/09 22:00:00,0.0,0.0,1088.6813072522999,3919252.706108277,0.0,6143235.769355498,3604031.6513552267 + 12/09 23:00:00,0.0,0.0,271.7091753893494,978153.0314016577,0.0,6143235.769355498,3604031.6513552267 + 12/09 24:00:00,0.0,0.0,272.1703268130748,979813.1765270693,0.0,6143235.769355498,1802015.8256776133 + 12/10 01:00:00,0.0,0.0,272.7984177797474,982074.3040070906,0.0,6143235.769355498,1802015.8256776133 + 12/10 02:00:00,0.0,0.0,272.7984177797474,982074.3040070906,0.0,6143235.769355498,1802015.8256776133 + 12/10 03:00:00,0.0,0.0,273.06127739181809,983020.598610545,0.0,6143235.769355498,1802015.8256776133 + 12/10 04:00:00,0.0,0.0,272.0789262016272,979484.134325858,0.0,6143235.769355498,1802015.8256776133 + 12/10 05:00:00,0.0,0.0,270.6585312379166,974370.7124564997,0.0,6143235.769355498,1802015.8256776133 + 12/10 06:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 12/10 07:00:00,637565861.7479988,14799283.389510343,267.33016291260949,638528250.3344842,14799283.389510343,6143235.769355498,1802015.8256776133 + 12/10 08:00:00,243408012.60465355,0.0,532.6486334539127,245325547.68508763,0.0,9214853.654033246,10812094.954065679 + 12/10 09:00:00,105875748.23225424,0.0,2654.0569376745258,115430353.20788253,0.0,24572943.077421994,28832253.210841814 + 12/10 10:00:00,88221665.1019345,0.0,2649.379063832251,97759429.73173058,0.0,27644560.962099744,32436284.862197039 + 12/10 11:00:00,112041108.35642174,0.0,4749.573322502519,129139572.31743083,0.0,27644560.962099744,32436284.862197039 + 12/10 12:00:00,139080686.00479508,0.0,4749.573322502519,156179149.9658041,0.0,27644560.962099744,32436284.862197039 + 12/10 13:00:00,145261138.16651977,0.0,4743.027088570593,162336035.6853739,0.0,27644560.962099744,32436284.862197039 + 12/10 14:00:00,116414166.41501926,0.0,4743.027088570593,133489063.9338734,0.0,27644560.962099744,32436284.862197039 + 12/10 15:00:00,97466835.87639074,0.0,4743.027088570593,114541733.39524487,0.0,27644560.962099744,32436284.862197039 + 12/10 16:00:00,140552592.68334217,0.0,4738.632890125845,157611671.0877952,0.0,27644560.962099744,32436284.862197039 + 12/10 17:00:00,229342171.3644554,0.0,3676.978259668091,242579293.09926055,0.0,27644560.962099744,32436284.862197039 + 12/10 18:00:00,241317508.93849386,0.0,2623.9258840738818,250763642.12115983,0.0,27644560.962099744,28832253.210841814 + 12/10 19:00:00,269885439.67612537,0.0,1567.5451715558502,275528602.2937264,0.0,15358089.423388744,18020158.25677613 + 12/10 20:00:00,288355463.733674,0.0,1040.9094069914439,292102737.5988432,0.0,9214853.654033246,10812094.954065679 + 12/10 21:00:00,286647322.8588109,0.0,1043.4940703681037,290403901.5121361,0.0,9214853.654033246,10812094.954065679 + 12/10 22:00:00,0.0,0.0,1044.0073244047665,3758426.3678571588,0.0,6143235.769355498,3604031.6513552267 + 12/10 23:00:00,0.0,0.0,263.3796099767328,948166.5959162379,0.0,6143235.769355498,3604031.6513552267 + 12/10 24:00:00,0.0,0.0,264.3453687383107,951643.3274579186,0.0,6143235.769355498,1802015.8256776133 + 12/11 01:00:00,0.0,0.0,264.46456386169106,952072.4299020877,0.0,6143235.769355498,1802015.8256776133 + 12/11 02:00:00,0.0,0.0,263.74429338875856,949479.4561995308,0.0,6143235.769355498,1802015.8256776133 + 12/11 03:00:00,0.0,0.0,263.1348245174897,947285.3682629628,0.0,6143235.769355498,1802015.8256776133 + 12/11 04:00:00,0.0,0.0,263.01193635086346,946842.9708631084,0.0,6143235.769355498,1802015.8256776133 + 12/11 05:00:00,0.0,0.0,262.76517503926206,945954.6301413433,0.0,6143235.769355498,1802015.8256776133 + 12/11 06:00:00,0.0,0.0,263.2573827847691,947726.5780251687,0.0,6143235.769355498,1802015.8256776133 + 12/11 07:00:00,768450873.5292188,16513253.138857205,264.3453687383107,769402516.8566767,16513253.138857205,6143235.769355498,1802015.8256776133 + 12/11 08:00:00,277549968.62627837,0.0,525.7774389280495,279442767.40641936,0.0,9214853.654033246,10812094.954065679 + 12/11 09:00:00,175433259.5088132,0.0,2652.8927165759198,184983673.28848649,0.0,24572943.077421994,28832253.210841814 + 12/11 10:00:00,118499253.6030587,0.0,2665.503893434902,128095067.61942435,0.0,27644560.962099744,32436284.862197039 + 12/11 11:00:00,93921536.66183953,0.0,4883.990938330872,111503904.03983067,0.0,27644560.962099744,32436284.862197039 + 12/11 12:00:00,111424458.62840206,0.0,4894.107816614918,129043246.76821576,0.0,27644560.962099744,32436284.862197039 + 12/11 13:00:00,125933143.39116737,0.0,4889.082690530017,143533841.07707543,0.0,27644560.962099744,32436284.862197039 + 12/11 14:00:00,114216147.76913765,0.0,4903.956460432119,131870391.02669327,0.0,27644560.962099744,32436284.862197039 + 12/11 15:00:00,101555751.23245132,0.0,4915.102993052725,119250122.00744114,0.0,27644560.962099744,32436284.862197039 + 12/11 16:00:00,121732616.15036938,0.0,4910.371520035454,139409953.622497,0.0,27644560.962099744,32436284.862197039 + 12/11 17:00:00,151360229.74876584,0.0,3814.188358113869,165091307.83797578,0.0,27644560.962099744,32436284.862197039 + 12/11 18:00:00,166069420.96648557,0.0,2711.422021810507,175830540.2450034,0.0,27644560.962099744,28832253.210841814 + 12/11 19:00:00,192920148.60074795,0.0,1627.996979443624,198780937.72674499,0.0,15358089.423388744,18020158.25677613 + 12/11 20:00:00,209104521.54173158,0.0,1080.259470992384,212993455.6373042,0.0,9214853.654033246,10812094.954065679 + 12/11 21:00:00,213408683.4530852,0.0,1078.644606243399,217291804.03556148,0.0,9214853.654033246,10812094.954065679 + 12/11 22:00:00,0.0,0.0,1080.6592328823506,3890373.238376463,0.0,6143235.769355498,3604031.6513552267 + 12/11 23:00:00,0.0,0.0,271.89487870082879,978821.5633229835,0.0,6143235.769355498,3604031.6513552267 + 12/11 24:00:00,0.0,0.0,270.16480822058778,972593.3095941158,0.0,6143235.769355498,1802015.8256776133 + 12/12 01:00:00,0.0,0.0,269.66115156084978,970780.1456190591,0.0,6143235.769355498,1802015.8256776133 + 12/12 02:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 12/12 03:00:00,0.0,0.0,271.8022335774473,978488.0408788102,0.0,6143235.769355498,1802015.8256776133 + 12/12 04:00:00,0.0,0.0,272.6210635207132,981435.8286745676,0.0,6143235.769355498,1802015.8256776133 + 12/12 05:00:00,0.0,0.0,272.9740815496953,982706.6935789031,0.0,6143235.769355498,1802015.8256776133 + 12/12 06:00:00,0.0,0.0,271.89487870082879,978821.5633229836,0.0,6143235.769355498,1802015.8256776133 + 12/12 07:00:00,570371134.6182618,17284392.376819146,272.0789262016272,571350618.7525877,17284392.376819146,6143235.769355498,1802015.8256776133 + 12/12 08:00:00,221683266.39205928,0.0,543.6044671548946,223640242.47381694,0.0,9214853.654033246,10812094.954065679 + 12/12 09:00:00,166459161.5523173,0.0,2718.9487870082878,176247377.1855471,0.0,24572943.077421994,28832253.210841814 + 12/12 10:00:00,132634358.9082339,0.0,2724.420255795621,142442271.82909815,0.0,27644560.962099744,32436284.862197039 + 12/12 11:00:00,118237758.67264077,0.0,4970.204180830974,136130493.72363229,0.0,27644560.962099744,32436284.862197039 + 12/12 12:00:00,122900946.40810818,0.0,4921.304418004224,140617642.31292338,0.0,27644560.962099744,32436284.862197039 + 12/12 13:00:00,139032634.9558824,0.0,4930.374902198322,156781984.60379637,0.0,27644560.962099744,32436284.862197039 + 12/12 14:00:00,133575264.27003497,0.0,4931.859436484668,151329958.24137978,0.0,27644560.962099744,32436284.862197039 + 12/12 15:00:00,117510849.78162931,0.0,4944.8669575569369,135312370.82883428,0.0,27644560.962099744,32436284.862197039 + 12/12 16:00:00,122142299.55896089,0.0,4947.670549275184,139953913.53635157,0.0,27644560.962099744,32436284.862197039 + 12/12 17:00:00,130111267.24663495,0.0,3851.4125730718358,143976352.50969354,0.0,27644560.962099744,32436284.862197039 + 12/12 18:00:00,131669255.59644956,0.0,2761.9203618423509,141612168.899082,0.0,27644560.962099744,28832253.210841814 + 12/12 19:00:00,154346013.0139915,0.0,1654.6064505457057,160302596.235956,0.0,15358089.423388744,18020158.25677613 + 12/12 20:00:00,161403698.96850217,0.0,1108.9719897920887,165395998.13175369,0.0,9214853.654033246,10812094.954065679 + 12/12 21:00:00,163955140.73195688,0.0,1103.9277128851948,167929280.49834354,0.0,9214853.654033246,10812094.954065679 + 12/12 22:00:00,0.0,0.0,1110.18845826174,3996678.4497422648,0.0,6143235.769355498,3604031.6513552267 + 12/12 23:00:00,0.0,0.0,278.06498287482517,1001033.9383493705,0.0,6143235.769355498,3604031.6513552267 + 12/12 24:00:00,0.0,0.0,278.06498287482517,1001033.9383493705,0.0,6143235.769355498,1802015.8256776133 + 12/13 01:00:00,0.0,0.0,278.2828681194017,1001818.3252298462,0.0,6143235.769355498,1802015.8256776133 + 12/13 02:00:00,0.0,0.0,277.54711456543518,999169.6124355665,0.0,6143235.769355498,1802015.8256776133 + 12/13 03:00:00,0.0,0.0,277.72397124114857,999806.2964681347,0.0,6143235.769355498,1802015.8256776133 + 12/13 04:00:00,0.0,0.0,277.95319920887916,1000631.517151965,0.0,6143235.769355498,1802015.8256776133 + 12/13 05:00:00,0.0,0.0,278.06498287482517,1001033.9383493705,0.0,6143235.769355498,1802015.8256776133 + 12/13 06:00:00,0.0,0.0,278.2828681194017,1001818.3252298462,0.0,6143235.769355498,1802015.8256776133 + 12/13 07:00:00,390407193.7661624,18037861.687112295,278.1201652394046,391408426.36102429,18037861.687112295,6143235.769355498,1802015.8256776133 + 12/13 08:00:00,164482044.73240636,0.0,556.2403304788093,166484509.92213009,0.0,9214853.654033246,10812094.954065679 + 12/13 09:00:00,106363696.90595119,0.0,2784.9314949380525,116389450.28772816,0.0,24572943.077421994,28832253.210841814 + 12/13 10:00:00,81883917.80486425,0.0,2784.4129379848616,91907804.38160974,0.0,27644560.962099744,32436284.862197039 + 12/13 11:00:00,88485284.98669383,0.0,5006.1629743092839,106507471.69420725,0.0,27644560.962099744,32436284.862197039 + 12/13 12:00:00,84344330.76239778,0.0,5008.123950918437,102373576.98570414,0.0,27644560.962099744,32436284.862197039 + 12/13 13:00:00,89837707.7514223,0.0,5009.091626149231,107870437.60555953,0.0,27644560.962099744,32436284.862197039 + 12/13 14:00:00,98001873.4601288,0.0,5011.943288372751,116044869.29827068,0.0,27644560.962099744,32436284.862197039 + 12/13 15:00:00,90015902.53558266,0.0,5015.625318373701,108072153.68172798,0.0,27644560.962099744,32436284.862197039 + 12/13 16:00:00,100255965.24809882,0.0,5024.2260157982,118343178.90497235,0.0,27644560.962099744,32436284.862197039 + 12/13 17:00:00,99649392.6883161,0.0,3909.6065155051685,113723976.1441347,0.0,27644560.962099744,32436284.862197039 + 12/13 18:00:00,93662590.76629447,0.0,2797.1132627864014,103732198.51232551,0.0,27644560.962099744,28832253.210841814 + 12/13 19:00:00,115099789.76799539,0.0,1678.0350977771894,121140716.11999327,0.0,15358089.423388744,18020158.25677613 + 12/13 20:00:00,129667276.52718197,0.0,1118.2126254911357,133692841.97895007,0.0,9214853.654033246,10812094.954065679 + 12/13 21:00:00,131545053.39310512,0.0,1117.5487503229477,135568228.89426775,0.0,9214853.654033246,10812094.954065679 + 12/13 22:00:00,0.0,0.0,1117.030433001477,4021309.5588053169,0.0,6143235.769355498,3604031.6513552267 + 12/13 23:00:00,0.0,0.0,279.12366754434449,1004845.20315964,0.0,6143235.769355498,3604031.6513552267 + 12/13 24:00:00,0.0,0.0,279.0319564502815,1004515.0432210134,0.0,6143235.769355498,1802015.8256776133 + 12/14 01:00:00,0.0,0.0,278.98537702925816,1004347.3573053293,0.0,6143235.769355498,1802015.8256776133 + 12/14 02:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 12/14 03:00:00,0.0,0.0,278.842748647338,1003833.8951304169,0.0,6143235.769355498,1802015.8256776133 + 12/14 04:00:00,0.0,0.0,278.06498287482517,1001033.9383493705,0.0,6143235.769355498,1802015.8256776133 + 12/14 05:00:00,0.0,0.0,277.4268682327064,998736.725637743,0.0,6143235.769355498,1802015.8256776133 + 12/14 06:00:00,0.0,0.0,276.73224788530129,996236.0923870845,0.0,6143235.769355498,1802015.8256776133 + 12/14 07:00:00,0.0,0.0,275.7677417576176,992763.8703274235,0.0,6143235.769355498,1802015.8256776133 + 12/14 08:00:00,0.0,0.0,274.5573118376818,988406.3226156546,0.0,6143235.769355498,1802015.8256776133 + 12/14 09:00:00,0.0,0.0,273.90971678879569,986074.9804396643,0.0,6143235.769355498,1802015.8256776133 + 12/14 10:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/14 11:00:00,0.0,0.0,272.8864613987614,982391.2610355411,0.0,6143235.769355498,1802015.8256776133 + 12/14 12:00:00,0.0,0.0,272.6210635207132,981435.8286745676,0.0,6143235.769355498,1802015.8256776133 + 12/14 13:00:00,0.0,0.0,272.44202557956216,980791.2920864237,0.0,6143235.769355498,1802015.8256776133 + 12/14 14:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 12/14 15:00:00,0.0,0.0,272.44202557956216,980791.2920864237,0.0,6143235.769355498,1802015.8256776133 + 12/14 16:00:00,0.0,0.0,271.89487870082879,978821.5633229835,0.0,6143235.769355498,1802015.8256776133 + 12/14 17:00:00,0.0,0.0,271.42753138562588,977139.112988253,0.0,6143235.769355498,1802015.8256776133 + 12/14 18:00:00,0.0,0.0,271.70917538934938,978153.0314016577,0.0,6143235.769355498,1802015.8256776133 + 12/14 19:00:00,0.0,0.0,272.6210635207132,981435.8286745676,0.0,6143235.769355498,1802015.8256776133 + 12/14 20:00:00,0.0,0.0,272.53175458243939,981114.3164967817,0.0,6143235.769355498,1802015.8256776133 + 12/14 21:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 12/14 22:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/14 23:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 12/14 24:00:00,0.0,0.0,273.4908628301078,984567.1061883881,0.0,6143235.769355498,1802015.8256776133 + 12/15 01:00:00,0.0,0.0,274.31773879530808,987543.8596631091,0.0,6143235.769355498,1802015.8256776133 + 12/15 02:00:00,0.0,0.0,275.0245711460767,990088.4561258762,0.0,6143235.769355498,1802015.8256776133 + 12/15 03:00:00,0.0,0.0,275.25221706141186,990907.9814210826,0.0,6143235.769355498,1802015.8256776133 + 12/15 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 12/15 05:00:00,0.0,0.0,276.0524182789608,993788.7058042588,0.0,6143235.769355498,1802015.8256776133 + 12/15 06:00:00,0.0,0.0,276.2611626921881,994540.1856918773,0.0,6143235.769355498,1802015.8256776133 + 12/15 07:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 12/15 08:00:00,0.0,0.0,272.53175458243939,981114.3164967817,0.0,6143235.769355498,1802015.8256776133 + 12/15 09:00:00,0.0,0.0,272.44202557956216,980791.2920864237,0.0,6143235.769355498,1802015.8256776133 + 12/15 10:00:00,0.0,0.0,272.6210635207132,981435.8286745676,0.0,6143235.769355498,1802015.8256776133 + 12/15 11:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/15 12:00:00,0.0,0.0,273.74346947106349,985476.4900958284,0.0,6143235.769355498,1802015.8256776133 + 12/15 13:00:00,0.0,0.0,274.1558361493954,986961.0101378234,0.0,6143235.769355498,1802015.8256776133 + 12/15 14:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 12/15 15:00:00,0.0,0.0,275.622694067615,992241.698643414,0.0,6143235.769355498,1802015.8256776133 + 12/15 16:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 12/15 17:00:00,0.0,0.0,278.79424400102109,1003659.2784036758,0.0,6143235.769355498,1802015.8256776133 + 12/15 18:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 12/15 19:00:00,0.0,0.0,278.9383156199478,1004177.936231812,0.0,6143235.769355498,1802015.8256776133 + 12/15 20:00:00,0.0,0.0,278.98537702925816,1004347.3573053293,0.0,6143235.769355498,1802015.8256776133 + 12/15 21:00:00,0.0,0.0,279.12366754434449,1004845.2031596401,0.0,6143235.769355498,1802015.8256776133 + 12/15 22:00:00,0.0,0.0,279.429409551333,1005945.8743847987,0.0,6143235.769355498,1802015.8256776133 + 12/15 23:00:00,0.0,0.0,279.3871875807369,1005793.8752906529,0.0,6143235.769355498,1802015.8256776133 + 12/15 24:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 12/16 01:00:00,0.0,0.0,279.6332177322429,1006679.5838360743,0.0,6143235.769355498,1802015.8256776133 + 12/16 02:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 12/16 03:00:00,0.0,0.0,279.5123943454836,1006244.6196437409,0.0,6143235.769355498,1802015.8256776133 + 12/16 04:00:00,0.0,0.0,279.67251629619826,1006821.0586663137,0.0,6143235.769355498,1802015.8256776133 + 12/16 05:00:00,0.0,0.0,279.59343096385109,1006536.3514698638,0.0,6143235.769355498,1802015.8256776133 + 12/16 06:00:00,0.0,0.0,279.3871875807369,1005793.8752906529,0.0,6143235.769355498,1802015.8256776133 + 12/16 07:00:00,342162488.72549256,14441879.132060796,279.25760825036925,343167816.11519387,14441879.132060796,6143235.769355498,1802015.8256776133 + 12/16 08:00:00,129462182.64083247,0.0,559.0247886909672,131474671.88011995,0.0,9214853.654033246,10812094.954065679 + 12/16 09:00:00,9736679.729903486,0.0,2793.871875807369,19794618.482810018,0.0,24572943.077421994,28832253.210841814 + 12/16 10:00:00,0.0,0.0,2794.7114527306919,10060961.22983049,0.0,27644560.962099744,32436284.862197039 + 12/16 11:00:00,0.0,0.0,5031.223098218706,18112403.15358734,0.0,27644560.962099744,32436284.862197039 + 12/16 12:00:00,5222377.31606086,0.0,5031.956814710111,23337421.84901726,0.0,27644560.962099744,32436284.862197039 + 12/16 13:00:00,5333327.386732068,0.0,5034.803873015523,23458621.32958795,0.0,27644560.962099744,32436284.862197039 + 12/16 14:00:00,0.0,0.0,5038.16462277873,18137392.64200343,0.0,27644560.962099744,32436284.862197039 + 12/16 15:00:00,0.0,6182614.124150842,5036.174622254158,18130228.640114968,6182614.124150842,27644560.962099744,32436284.862197039 + 12/16 16:00:00,0.0,1272197.5858116695,5030.480614915245,18109730.213694887,1272197.5858116695,27644560.962099744,32436284.862197039 + 12/16 17:00:00,63503761.94499914,0.0,3905.1364186792686,77562253.05224452,0.0,27644560.962099744,32436284.862197039 + 12/16 18:00:00,84722622.53438817,0.0,2784.4129379848616,94746509.11113368,0.0,27644560.962099744,28832253.210841814 + 12/16 19:00:00,108278186.12123637,0.0,1674.7420052660669,114307257.34019421,0.0,15358089.423388744,18020158.25677613 + 12/16 20:00:00,122217064.7883709,0.0,1116.127825801126,126235124.96125496,0.0,9214853.654033246,10812094.954065679 + 12/16 21:00:00,122971772.89871189,0.0,1116.6751933495976,126991803.59477046,0.0,9214853.654033246,10812094.954065679 + 12/16 22:00:00,0.0,0.0,1117.0304330014772,4021309.5588053169,0.0,6143235.769355498,3604031.6513552267 + 12/16 23:00:00,0.0,0.0,279.30128651813689,1005484.6314652927,0.0,6143235.769355498,3604031.6513552267 + 12/16 24:00:00,0.0,0.0,279.30128651813689,1005484.6314652927,0.0,6143235.769355498,1802015.8256776133 + 12/17 01:00:00,0.0,0.0,279.47114527306919,1006096.122983049,0.0,6143235.769355498,1802015.8256776133 + 12/17 02:00:00,0.0,0.0,279.21344538220645,1005168.4033759432,0.0,6143235.769355498,1802015.8256776133 + 12/17 03:00:00,0.0,0.0,278.4412937984862,1002388.6576745503,0.0,6143235.769355498,1802015.8256776133 + 12/17 04:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 12/17 05:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 12/17 06:00:00,0.0,0.0,278.64585102076117,1003125.0636747402,0.0,6143235.769355498,1802015.8256776133 + 12/17 07:00:00,361631357.1397876,14130558.685018596,278.7452592003734,362634840.07290896,14130558.685018596,6143235.769355498,1802015.8256776133 + 12/17 08:00:00,147753361.17483486,0.0,557.2917020415223,149759611.3021843,0.0,9214853.654033246,10812094.954065679 + 12/17 09:00:00,99474929.3695026,0.0,2786.458510207611,109506180.00625001,0.0,24572943.077421994,28832253.210841814 + 12/17 10:00:00,80104013.54160841,0.0,2786.458510207611,90135264.1783558,0.0,27644560.962099744,32436284.862197039 + 12/17 11:00:00,74879194.45353338,0.0,5012.8766908884949,92925550.54073197,0.0,27644560.962099744,32436284.862197039 + 12/17 12:00:00,77848259.20222219,0.0,5011.001304038242,95887863.89675986,0.0,27644560.962099744,32436284.862197039 + 12/17 13:00:00,82961932.47353518,0.0,5011.943288372751,101004928.31167709,0.0,27644560.962099744,32436284.862197039 + 12/17 14:00:00,83267919.95314987,0.0,5014.71771472145,101320903.72614709,0.0,27644560.962099744,32436284.862197039 + 12/17 15:00:00,79612006.20091754,0.0,5014.71771472145,97664989.97391477,0.0,27644560.962099744,32436284.862197039 + 12/17 16:00:00,92836892.80572194,0.0,5008.123950918437,110866139.02902833,0.0,27644560.962099744,32436284.862197039 + 12/17 17:00:00,109728695.1632831,0.0,3882.2665527522106,123704854.75319106,0.0,27644560.962099744,32436284.862197039 + 12/17 18:00:00,125695166.02698124,0.0,2765.999443852371,135652764.02484978,0.0,27644560.962099744,28832253.210841814 + 12/17 19:00:00,159185247.65333788,0.0,1654.6064505457057,165141830.87530238,0.0,15358089.423388744,18020158.25677613 + 12/17 20:00:00,181369241.46412624,0.0,1100.7071211641574,185331787.10031725,0.0,9214853.654033246,10812094.954065679 + 12/17 21:00:00,189298158.16547198,0.0,1097.5921388136708,193249489.86520119,0.0,9214853.654033246,10812094.954065679 + 12/17 22:00:00,0.0,0.0,1094.6387915020956,3940699.6494075406,0.0,6143235.769355498,3604031.6513552267 + 12/17 23:00:00,0.0,0.0,272.6210635207133,981435.8286745674,0.0,6143235.769355498,3604031.6513552267 + 12/17 24:00:00,0.0,0.0,271.33282990727067,976798.1876661744,0.0,6143235.769355498,1802015.8256776133 + 12/18 01:00:00,0.0,0.0,270.56058704511289,974018.1133624064,0.0,6143235.769355498,1802015.8256776133 + 12/18 02:00:00,0.0,0.0,269.96453088122959,971872.3111724265,0.0,6143235.769355498,1802015.8256776133 + 12/18 03:00:00,0.0,0.0,269.14768207331999,968931.6554639519,0.0,6143235.769355498,1802015.8256776133 + 12/18 04:00:00,0.0,0.0,267.98411845562256,964742.8264402411,0.0,6143235.769355498,1802015.8256776133 + 12/18 05:00:00,0.0,0.0,267.33016291260949,962388.586485394,0.0,6143235.769355498,1802015.8256776133 + 12/18 06:00:00,0.0,0.0,266.99817389809899,961193.4260331564,0.0,6143235.769355498,1802015.8256776133 + 12/18 07:00:00,688850845.515501,15778160.69056741,266.0968021014581,689808794.0030663,15778160.69056741,6143235.769355498,1802015.8256776133 + 12/18 08:00:00,266003508.41975314,0.0,531.0435283771241,267915265.12191079,0.0,9214853.654033246,10812094.954065679 + 12/18 09:00:00,123179042.30257115,0.0,2655.21764188562,132737825.81335938,0.0,24572943.077421994,28832253.210841814 + 12/18 10:00:00,96648984.98707256,0.0,2657.528455130453,106216087.42554219,0.0,27644560.962099744,32436284.862197039 + 12/18 11:00:00,115071958.69917217,0.0,4795.87560893902,132337110.89135263,0.0,27644560.962099744,32436284.862197039 + 12/18 12:00:00,139918134.44546718,0.0,4801.950202936476,157205155.1760385,0.0,27644560.962099744,32436284.862197039 + 12/18 13:00:00,143241087.96008028,0.0,4813.921566376528,160571205.59903578,0.0,27644560.962099744,32436284.862197039 + 12/18 14:00:00,119644909.58175324,0.0,4813.921566376528,136975027.22070877,0.0,27644560.962099744,32436284.862197039 + 12/18 15:00:00,108406418.36234623,0.0,4821.769095641473,125764787.10665554,0.0,27644560.962099744,32436284.862197039 + 12/18 16:00:00,139212816.56143797,0.0,4827.5838595455829,156592118.45580206,0.0,27644560.962099744,32436284.862197039 + 12/18 17:00:00,205558390.44951273,0.0,3748.746790459232,219053878.89516599,0.0,27644560.962099744,32436284.862197039 + 12/18 18:00:00,218073240.6356509,0.0,2675.496399201018,227705027.67277456,0.0,27644560.962099744,28832253.210841814 + 12/18 19:00:00,245784961.21925617,0.0,1603.9809774756569,251559292.7381685,0.0,15358089.423388744,18020158.25677613 + 12/18 20:00:00,262107319.40546555,0.0,1067.9926955923959,265952093.10959817,0.0,9214853.654033246,10812094.954065679 + 12/18 21:00:00,265627135.77545963,0.0,1066.6515287388839,269467081.27891966,0.0,9214853.654033246,10812094.954065679 + 12/18 22:00:00,0.0,0.0,1064.8429564834447,3833434.643340403,0.0,6143235.769355498,3604031.6513552267 + 12/18 23:00:00,0.0,0.0,265.63748180720349,956294.9345059324,0.0,6143235.769355498,3604031.6513552267 + 12/18 24:00:00,0.0,0.0,265.17249897607158,954620.9963138576,0.0,6143235.769355498,1802015.8256776133 + 12/19 01:00:00,0.0,0.0,264.46456386169106,952072.4299020877,0.0,6143235.769355498,1802015.8256776133 + 12/19 02:00:00,0.0,0.0,264.10595509430797,950781.4383395086,0.0,6143235.769355498,1802015.8256776133 + 12/19 03:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 12/19 04:00:00,0.0,0.0,263.5015049205885,948605.4177141186,0.0,6143235.769355498,1802015.8256776133 + 12/19 05:00:00,0.0,0.0,263.74429338875856,949479.4561995308,0.0,6143235.769355498,1802015.8256776133 + 12/19 06:00:00,0.0,0.0,263.37960997673278,948166.5959162379,0.0,6143235.769355498,1802015.8256776133 + 12/19 07:00:00,763078283.0275289,16509761.310319225,263.74429338875856,764027762.4837284,16509761.310319225,6143235.769355498,1802015.8256776133 + 12/19 08:00:00,283578681.1135115,0.0,528.2119101886159,285480243.9901905,0.0,9214853.654033246,10812094.954065679 + 12/19 09:00:00,135564251.3054189,0.0,2645.8341632663325,145089254.2931777,0.0,24572943.077421994,28832253.210841814 + 12/19 10:00:00,103332406.50512737,0.0,2657.528455130453,112899508.943597,0.0,27644560.962099744,32436284.862197039 + 12/19 11:00:00,116713107.68755999,0.0,4801.950202936476,134000128.41813132,0.0,27644560.962099744,32436284.862197039 + 12/19 12:00:00,139569415.02840413,0.0,4809.957635698513,156885262.51691879,0.0,27644560.962099744,32436284.862197039 + 12/19 13:00:00,134219751.37046499,0.0,4825.6523930352309,151592099.98539184,0.0,27644560.962099744,32436284.862197039 + 12/19 14:00:00,98977526.21290133,0.0,4840.912335561223,116404810.62092173,0.0,27644560.962099744,32436284.862197039 + 12/19 15:00:00,73439431.83743255,0.0,4842.788785815734,90873471.4663692,0.0,27644560.962099744,32436284.862197039 + 12/19 16:00:00,105029911.9805409,0.0,4842.788785815734,122463951.60947755,0.0,27644560.962099744,32436284.862197039 + 12/19 17:00:00,194944883.92379127,0.0,3765.1540387698389,208499438.46336267,0.0,27644560.962099744,32436284.862197039 + 12/19 18:00:00,206833561.825944,0.0,2688.34941364506,216511619.71506626,0.0,27644560.962099744,28832253.210841814 + 12/19 19:00:00,234205175.51531003,0.0,1609.836171066496,240000585.7311494,0.0,15358089.423388744,18020158.25677613 + 12/19 20:00:00,250078264.70705713,0.0,1074.4980917058704,253946457.83719827,0.0,9214853.654033246,10812094.954065679 + 12/19 21:00:00,250101476.5112419,0.0,1073.2241140443308,253965083.3218015,0.0,9214853.654033246,10812094.954065679 + 12/19 22:00:00,0.0,0.0,1068.4368211645415,3846372.556192351,0.0,6143235.769355498,3604031.6513552267 + 12/19 23:00:00,0.0,0.0,266.77501127424878,960390.0405872949,0.0,6143235.769355498,3604031.6513552267 + 12/19 24:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 12/20 01:00:00,0.0,0.0,265.1724989760716,954620.9963138579,0.0,6143235.769355498,1802015.8256776133 + 12/20 02:00:00,0.0,0.0,263.98573887090319,950348.6599352514,0.0,6143235.769355498,1802015.8256776133 + 12/20 03:00:00,0.0,0.0,263.1348245174897,947285.3682629628,0.0,6143235.769355498,1802015.8256776133 + 12/20 04:00:00,0.0,0.0,263.98573887090319,950348.6599352514,0.0,6143235.769355498,1802015.8256776133 + 12/20 05:00:00,0.0,0.0,263.86518458347327,949914.6645005037,0.0,6143235.769355498,1802015.8256776133 + 12/20 06:00:00,0.0,0.0,262.64130426200657,945508.6953432235,0.0,6143235.769355498,1802015.8256776133 + 12/20 07:00:00,771865220.0668923,15326502.254836219,262.64130426200657,772810728.7622354,15326502.254836219,6143235.769355498,1802015.8256776133 + 12/20 08:00:00,282100833.01618888,0.0,523.782585946792,283986450.3255973,0.0,9214853.654033246,10812094.954065679 + 12/20 09:00:00,139256016.22761283,0.0,2647.0192499272618,148785285.52735097,0.0,24572943.077421994,28832253.210841814 + 12/20 10:00:00,121281800.03578307,0.0,2660.9680210145809,130861284.91143558,0.0,27644560.962099744,32436284.862197039 + 12/20 11:00:00,95217319.8124488,0.0,4801.950202936476,112504340.54302012,0.0,27644560.962099744,32436284.862197039 + 12/20 12:00:00,105498766.41354276,0.0,4819.817302019013,122850108.70081122,0.0,27644560.962099744,32436284.862197039 + 12/20 13:00:00,106676495.25750509,0.0,4837.138630886872,124090194.32869783,0.0,27644560.962099744,32436284.862197039 + 12/20 14:00:00,103603157.47088817,0.0,4866.542930708495,121122712.02143875,0.0,27644560.962099744,32436284.862197039 + 12/20 15:00:00,112293249.87499824,0.0,4859.361555862132,129786951.47610192,0.0,27644560.962099744,32436284.862197039 + 12/20 16:00:00,140256681.69209735,0.0,4861.1676194657279,157756885.12217397,0.0,27644560.962099744,32436284.862197039 + 12/20 17:00:00,169949215.30641864,0.0,3787.848218631579,183585468.8934923,0.0,27644560.962099744,32436284.862197039 + 12/20 18:00:00,178375924.68570156,0.0,2703.6349615047195,188109010.54711855,0.0,27644560.962099744,28832253.210841814 + 12/20 19:00:00,207793306.2190022,0.0,1622.1809769028319,213633157.7358524,0.0,15358089.423388744,18020158.25677613 + 12/20 20:00:00,225473688.8180046,0.0,1080.659232882351,229364062.05638109,0.0,9214853.654033246,10812094.954065679 + 12/20 21:00:00,228781126.46486388,0.0,1080.659232882351,232671499.70324034,0.0,9214853.654033246,10812094.954065679 + 12/20 22:00:00,0.0,0.0,1081.0574053590318,3891806.659292515,0.0,6143235.769355498,3604031.6513552267 + 12/20 23:00:00,0.0,0.0,270.26435133975806,972951.6648231288,0.0,6143235.769355498,3604031.6513552267 + 12/20 24:00:00,0.0,0.0,270.8532124155378,975071.5646959362,0.0,6143235.769355498,1802015.8256776133 + 12/21 01:00:00,0.0,0.0,271.237719868213,976455.7915255667,0.0,6143235.769355498,1802015.8256776133 + 12/21 02:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 12/21 03:00:00,0.0,0.0,273.5754953925591,984871.7834132128,0.0,6143235.769355498,1802015.8256776133 + 12/21 04:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/21 05:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/21 06:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/21 07:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/21 08:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/21 09:00:00,0.0,0.0,273.6596978755237,985174.9123518854,0.0,6143235.769355498,1802015.8256776133 + 12/21 10:00:00,0.0,0.0,274.87058607084358,989534.1098550368,0.0,6143235.769355498,1802015.8256776133 + 12/21 11:00:00,0.0,0.0,275.40175137879836,991446.304963674,0.0,6143235.769355498,1802015.8256776133 + 12/21 12:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 12/21 13:00:00,0.0,0.0,275.622694067615,992241.698643414,0.0,6143235.769355498,1802015.8256776133 + 12/21 14:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 12/21 15:00:00,0.0,0.0,274.7148309753854,988973.3915113874,0.0,6143235.769355498,1802015.8256776133 + 12/21 16:00:00,0.0,0.0,273.82680937537466,985776.5137513487,0.0,6143235.769355498,1802015.8256776133 + 12/21 17:00:00,0.0,0.0,273.5754953925591,984871.7834132128,0.0,6143235.769355498,1802015.8256776133 + 12/21 18:00:00,0.0,0.0,273.4908628301078,984567.1061883881,0.0,6143235.769355498,1802015.8256776133 + 12/21 19:00:00,0.0,0.0,273.4058010002347,984260.8836008449,0.0,6143235.769355498,1802015.8256776133 + 12/21 20:00:00,0.0,0.0,272.7984177797474,982074.3040070906,0.0,6143235.769355498,1802015.8256776133 + 12/21 21:00:00,0.0,0.0,271.5218233946004,977478.5642205614,0.0,6143235.769355498,1802015.8256776133 + 12/21 22:00:00,0.0,0.0,270.363496150472,973308.5861416991,0.0,6143235.769355498,1802015.8256776133 + 12/21 23:00:00,0.0,0.0,268.83494136450607,967805.7889122218,0.0,6143235.769355498,1802015.8256776133 + 12/21 24:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 12/22 01:00:00,0.0,0.0,268.7299239381596,967427.7261773745,0.0,6143235.769355498,1802015.8256776133 + 12/22 02:00:00,0.0,0.0,267.8760608689707,964353.8191282945,0.0,6143235.769355498,1802015.8256776133 + 12/22 03:00:00,0.0,0.0,267.6588205589802,963571.7540123288,0.0,6143235.769355498,1802015.8256776133 + 12/22 04:00:00,0.0,0.0,267.5496399201018,963178.7037123665,0.0,6143235.769355498,1802015.8256776133 + 12/22 05:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 12/22 06:00:00,0.0,0.0,267.2198686499174,961991.5271397026,0.0,6143235.769355498,1802015.8256776133 + 12/22 07:00:00,0.0,0.0,265.98250676199339,957537.0243431762,0.0,6143235.769355498,1802015.8256776133 + 12/22 08:00:00,0.0,0.0,267.4400870209182,962784.3132753056,0.0,6143235.769355498,1802015.8256776133 + 12/22 09:00:00,0.0,0.0,265.4056937674525,955460.4975628288,0.0,6143235.769355498,1802015.8256776133 + 12/22 10:00:00,0.0,0.0,267.6588205589802,963571.7540123288,0.0,6143235.769355498,1802015.8256776133 + 12/22 11:00:00,0.0,0.0,270.363496150472,973308.586141699,0.0,6143235.769355498,1802015.8256776133 + 12/22 12:00:00,0.0,0.0,272.0789262016272,979484.134325858,0.0,6143235.769355498,1802015.8256776133 + 12/22 13:00:00,0.0,0.0,272.2613108278844,980140.718980384,0.0,6143235.769355498,1802015.8256776133 + 12/22 14:00:00,0.0,0.0,273.06127739181809,983020.598610545,0.0,6143235.769355498,1802015.8256776133 + 12/22 15:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 12/22 16:00:00,0.0,0.0,273.4908628301078,984567.1061883881,0.0,6143235.769355498,1802015.8256776133 + 12/22 17:00:00,0.0,0.0,274.1558361493954,986961.0101378234,0.0,6143235.769355498,1802015.8256776133 + 12/22 18:00:00,0.0,0.0,274.3980347034177,987832.9249323037,0.0,6143235.769355498,1802015.8256776133 + 12/22 19:00:00,0.0,0.0,274.94780023196099,989812.0808350595,0.0,6143235.769355498,1802015.8256776133 + 12/22 20:00:00,0.0,0.0,273.90971678879569,986074.9804396643,0.0,6143235.769355498,1802015.8256776133 + 12/22 21:00:00,0.0,0.0,273.90971678879569,986074.9804396643,0.0,6143235.769355498,1802015.8256776133 + 12/22 22:00:00,0.0,0.0,273.1480480884695,983332.9731184903,0.0,6143235.769355498,1802015.8256776133 + 12/22 23:00:00,0.0,0.0,271.33282990727067,976798.1876661744,0.0,6143235.769355498,1802015.8256776133 + 12/22 24:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 12/23 01:00:00,0.0,0.0,271.5218233946004,977478.5642205614,0.0,6143235.769355498,1802015.8256776133 + 12/23 02:00:00,0.0,0.0,271.33282990727067,976798.1876661744,0.0,6143235.769355498,1802015.8256776133 + 12/23 03:00:00,0.0,0.0,271.5218233946004,977478.5642205614,0.0,6143235.769355498,1802015.8256776133 + 12/23 04:00:00,0.0,0.0,271.42753138562588,977139.1129882531,0.0,6143235.769355498,1802015.8256776133 + 12/23 05:00:00,0.0,0.0,271.42753138562588,977139.1129882531,0.0,6143235.769355498,1802015.8256776133 + 12/23 06:00:00,0.0,0.0,269.96453088122959,971872.3111724265,0.0,6143235.769355498,1802015.8256776133 + 12/23 07:00:00,597373809.0674594,16064829.296511636,270.949947532354,598349228.8785758,16064829.296511636,6143235.769355498,1802015.8256776133 + 12/23 08:00:00,214406073.0015537,0.0,543.7897574016575,216363716.12819968,0.0,9214853.654033246,10812094.954065679 + 12/23 09:00:00,111318077.67853832,0.0,2755.4949528949689,121237859.5089602,0.0,24572943.077421994,28832253.210841814 + 12/23 10:00:00,31927059.562234075,0.0,2774.872252056943,41916599.66963907,0.0,27644560.962099744,32436284.862197039 + 12/23 11:00:00,17157105.82674688,0.0,5011.943288372751,35200101.664888788,0.0,27644560.962099744,32436284.862197039 + 12/23 12:00:00,31183262.865037484,0.0,5019.169475652085,49252272.977384988,0.0,27644560.962099744,32436284.862197039 + 12/23 13:00:00,29765638.813411647,0.0,5020.033908130441,47837760.88268123,0.0,27644560.962099744,32436284.862197039 + 12/23 14:00:00,2330240.0530507268,0.0,5020.033908130441,20402362.12232031,0.0,27644560.962099744,32436284.862197039 + 12/23 15:00:00,0.0,0.0,5014.71771472145,18052983.77299722,0.0,27644560.962099744,32436284.862197039 + 12/23 16:00:00,18660076.3894175,0.0,5011.943288372751,36703072.2275594,0.0,27644560.962099744,32436284.862197039 + 12/23 17:00:00,93224795.67621899,0.0,3888.947782249016,107225007.69231546,0.0,27644560.962099744,32436284.862197039 + 12/23 18:00:00,108761625.82906898,0.0,2768.627099133741,118728683.38595045,0.0,27644560.962099744,28832253.210841814 + 12/23 19:00:00,142793977.2922479,0.0,1656.7347269436578,148758222.30924506,0.0,15358089.423388744,18020158.25677613 + 12/23 20:00:00,166956279.69312874,0.0,1101.6070055151934,170922064.9129834,0.0,9214853.654033246,10812094.954065679 + 12/23 21:00:00,163352271.06903167,0.0,1105.8632179642974,167333378.65370313,0.0,9214853.654033246,10812094.954065679 + 12/23 22:00:00,0.0,0.0,1103.358357110972,3972090.085599501,0.0,6143235.769355498,3604031.6513552267 + 12/23 23:00:00,0.0,0.0,275.91098499398836,993279.5459783583,0.0,6143235.769355498,3604031.6513552267 + 12/23 24:00:00,0.0,0.0,274.8705860708435,989534.1098550367,0.0,6143235.769355498,1802015.8256776133 + 12/24 01:00:00,0.0,0.0,275.4758474910033,991713.050967612,0.0,6143235.769355498,1802015.8256776133 + 12/24 02:00:00,0.0,0.0,274.1558361493954,986961.0101378234,0.0,6143235.769355498,1802015.8256776133 + 12/24 03:00:00,0.0,0.0,274.7148309753854,988973.3915113874,0.0,6143235.769355498,1802015.8256776133 + 12/24 04:00:00,0.0,0.0,269.45693446014988,970044.9640565394,0.0,6143235.769355498,1802015.8256776133 + 12/24 05:00:00,0.0,0.0,271.8948787008287,978821.5633229836,0.0,6143235.769355498,1802015.8256776133 + 12/24 06:00:00,0.0,0.0,270.264351339758,972951.6648231287,0.0,6143235.769355498,1802015.8256776133 + 12/24 07:00:00,588389188.9642166,14787089.966063666,268.7299239381596,589356616.6903939,14787089.966063666,6143235.769355498,1802015.8256776133 + 12/24 08:00:00,214152229.89086039,0.0,543.4183507786987,216108535.9536637,0.0,9214853.654033246,10812094.954065679 + 12/24 09:00:00,139162535.47494395,0.0,2723.518773730476,148967203.06037364,0.0,24572943.077421994,28832253.210841814 + 12/24 10:00:00,117065769.5048141,0.0,2730.61277391818,126895975.49091955,0.0,27644560.962099744,32436284.862197039 + 12/24 11:00:00,111389104.29262024,0.0,4930.374902198322,129138453.94053422,0.0,27644560.962099744,32436284.862197039 + 12/24 12:00:00,112116291.42916073,0.0,4933.336157371399,129876301.59569776,0.0,27644560.962099744,32436284.862197039 + 12/24 13:00:00,119983982.64431648,0.0,4928.882568756743,137727959.89184077,0.0,27644560.962099744,32436284.862197039 + 12/24 14:00:00,89618387.35190068,0.0,4946.2727292649519,107424969.17725453,0.0,27644560.962099744,32436284.862197039 + 12/24 15:00:00,78882468.1793273,0.0,4953.182045238708,96713923.54218665,0.0,27644560.962099744,32436284.862197039 + 12/24 16:00:00,106200222.2299653,0.0,4954.539907105413,124036565.89554477,0.0,27644560.962099744,32436284.862197039 + 12/24 17:00:00,134786554.66366888,0.0,3851.4125730718358,148651639.92672745,0.0,27644560.962099744,32436284.862197039 + 12/24 18:00:00,140862697.0745758,0.0,2755.4949528949689,150782478.9049977,0.0,27644560.962099744,28832253.210841814 + 12/24 19:00:00,165761667.94306816,0.0,1652.41050827279,171710345.77285023,0.0,15358089.423388744,18020158.25677613 + 12/24 20:00:00,179469290.4433118,0.0,1103.0709670304705,183440345.92462147,0.0,9214853.654033246,10812094.954065679 + 12/24 21:00:00,178946366.90241353,0.0,1103.0709670304705,182917422.3837232,0.0,9214853.654033246,10812094.954065679 + 12/24 22:00:00,0.0,0.0,1102.781772492008,3970014.3809712289,0.0,6143235.769355498,3604031.6513552267 + 12/24 23:00:00,0.0,0.0,275.69544312300209,992503.5952428074,0.0,6143235.769355498,3604031.6513552267 + 12/24 24:00:00,0.0,0.0,276.2611626921881,994540.1856918773,0.0,6143235.769355498,1802015.8256776133 + 12/25 01:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 12/25 02:00:00,0.0,0.0,275.54949528949688,991978.1830421886,0.0,6143235.769355498,1802015.8256776133 + 12/25 03:00:00,0.0,0.0,275.622694067615,992241.698643414,0.0,6143235.769355498,1802015.8256776133 + 12/25 04:00:00,0.0,0.0,275.8395892777431,993022.521399875,0.0,6143235.769355498,1802015.8256776133 + 12/25 05:00:00,0.0,0.0,275.3272076638477,991177.9475898516,0.0,6143235.769355498,1802015.8256776133 + 12/25 06:00:00,0.0,0.0,275.4758474910033,991713.050967612,0.0,6143235.769355498,1802015.8256776133 + 12/25 07:00:00,482194606.99023768,17275667.632253346,275.1008980765597,483184970.2233133,17275667.632253346,6143235.769355498,1802015.8256776133 + 12/25 08:00:00,204272316.7822397,0.0,549.5858588072168,206250825.87394566,0.0,9214853.654033246,10812094.954065679 + 12/25 09:00:00,154381169.37822903,0.0,2746.3629153554309,164268075.87350858,0.0,24572943.077421994,28832253.210841814 + 12/25 10:00:00,139088960.53335554,0.0,2745.573118376818,148973023.75951208,0.0,27644560.962099744,32436284.862197039 + 12/25 11:00:00,134591889.39769013,0.0,4943.453247639776,152388321.08919335,0.0,27644560.962099744,32436284.862197039 + 12/25 12:00:00,131274564.98719049,0.0,4943.453247639776,149070996.67869366,0.0,27644560.962099744,32436284.862197039 + 12/25 13:00:00,135640916.57879944,0.0,4940.60206751327,153427084.0218472,0.0,27644560.962099744,32436284.862197039 + 12/25 14:00:00,136925883.82191757,0.0,4942.031613078273,154717197.62899933,0.0,27644560.962099744,32436284.862197039 + 12/25 15:00:00,123925287.69648436,0.0,4942.031613078273,141716601.50356616,0.0,27644560.962099744,32436284.862197039 + 12/25 16:00:00,139840682.06314469,0.0,4940.60206751327,157626849.50619246,0.0,27644560.962099744,32436284.862197039 + 12/25 17:00:00,144662621.37901584,0.0,3844.9080814976034,158504290.4724072,0.0,27644560.962099744,32436284.862197039 + 12/25 18:00:00,149887053.2745142,0.0,2746.3629153554309,159773959.76979376,0.0,27644560.962099744,28832253.210841814 + 12/25 19:00:00,172690630.37825097,0.0,1650.6053884593583,178632809.77670465,0.0,15358089.423388744,18020158.25677613 + 12/25 20:00:00,181089807.7725355,0.0,1103.0709670304705,185060863.25384519,0.0,9214853.654033246,10812094.954065679 + 12/25 21:00:00,181754847.4450345,0.0,1100.4035923062389,185716300.37733693,0.0,9214853.654033246,10812094.954065679 + 12/25 22:00:00,0.0,0.0,1100.4035923062386,3961452.932302461,0.0,6143235.769355498,3604031.6513552267 + 12/25 23:00:00,0.0,0.0,275.1008980765597,990363.2330756148,0.0,6143235.769355498,3604031.6513552267 + 12/25 24:00:00,0.0,0.0,275.54949528949688,991978.1830421886,0.0,6143235.769355498,1802015.8256776133 + 12/26 01:00:00,0.0,0.0,275.7677417576176,992763.8703274235,0.0,6143235.769355498,1802015.8256776133 + 12/26 02:00:00,0.0,0.0,275.9109849939884,993279.5459783583,0.0,6143235.769355498,1802015.8256776133 + 12/26 03:00:00,0.0,0.0,276.19203618423497,994291.3302632459,0.0,6143235.769355498,1802015.8256776133 + 12/26 04:00:00,0.0,0.0,276.5999443852371,995759.7997868536,0.0,6143235.769355498,1802015.8256776133 + 12/26 05:00:00,0.0,0.0,276.66632600355407,995998.7736127946,0.0,6143235.769355498,1802015.8256776133 + 12/26 06:00:00,0.0,0.0,276.79770939794636,996471.7538326068,0.0,6143235.769355498,1802015.8256776133 + 12/26 07:00:00,439240532.3691733,19148154.99572198,276.79770939794636,440237004.12300589,19148154.99572198,6143235.769355498,1802015.8256776133 + 12/26 08:00:00,182675027.08203418,0.0,553.4644957706025,184667499.26680834,0.0,9214853.654033246,10812094.954065679 + 12/26 09:00:00,129147627.05284254,0.0,2767.322478853013,139109987.9767134,0.0,24572943.077421994,28832253.210841814 + 12/26 10:00:00,111189257.16723591,0.0,2769.2724880789276,121158638.12432003,0.0,27644560.962099744,32436284.862197039 + 12/26 11:00:00,97718437.91366926,0.0,4973.937000321371,115624611.1148262,0.0,27644560.962099744,32436284.862197039 + 12/26 12:00:00,95921014.16279277,0.0,4975.164855041852,113831607.64094341,0.0,27644560.962099744,32436284.862197039 + 12/26 13:00:00,99987948.63997086,0.0,4976.384480839337,117902932.77099248,0.0,27644560.962099744,32436284.862197039 + 12/26 14:00:00,95428573.60929826,0.0,4978.798998934269,113352250.00546162,0.0,27644560.962099744,32436284.862197039 + 12/26 15:00:00,82926974.8233299,0.0,4975.164855041852,100837568.30148056,0.0,27644560.962099744,32436284.862197039 + 12/26 16:00:00,73471674.18028528,0.0,4963.8193516371179,91341423.8461789,0.0,27644560.962099744,32436284.862197039 + 12/26 17:00:00,127605963.2456665,0.0,3853.531038859765,141478674.98556168,0.0,27644560.962099744,32436284.862197039 + 12/26 18:00:00,135426066.411928,0.0,2756.2269406761495,145348483.39836217,0.0,27644560.962099744,28832253.210841814 + 12/26 19:00:00,157254742.98984275,0.0,1655.4659099639303,163214420.2657129,0.0,15358089.423388744,18020158.25677613 + 12/26 20:00:00,170671726.32939825,0.0,1105.5921900093004,174651858.21343173,0.0,9214853.654033246,10812094.954065679 + 12/26 21:00:00,172773436.1419279,0.0,1104.4898179624386,176749599.4865927,0.0,9214853.654033246,10812094.954065679 + 12/26 22:00:00,0.0,0.0,1103.358357110972,3972090.085599501,0.0,6143235.769355498,3604031.6513552267 + 12/26 23:00:00,0.0,0.0,275.7677417576176,992763.8703274236,0.0,6143235.769355498,3604031.6513552267 + 12/26 24:00:00,0.0,0.0,275.7677417576176,992763.8703274235,0.0,6143235.769355498,1802015.8256776133 + 12/27 01:00:00,0.0,0.0,274.87058607084358,989534.1098550368,0.0,6143235.769355498,1802015.8256776133 + 12/27 02:00:00,0.0,0.0,273.90971678879569,986074.9804396643,0.0,6143235.769355498,1802015.8256776133 + 12/27 03:00:00,0.0,0.0,273.82680937537466,985776.5137513487,0.0,6143235.769355498,1802015.8256776133 + 12/27 04:00:00,0.0,0.0,273.4058010002347,984260.8836008449,0.0,6143235.769355498,1802015.8256776133 + 12/27 05:00:00,0.0,0.0,272.7984177797474,982074.3040070906,0.0,6143235.769355498,1802015.8256776133 + 12/27 06:00:00,0.0,0.0,272.3518773730476,980466.7585429715,0.0,6143235.769355498,1802015.8256776133 + 12/27 07:00:00,562600092.6896932,16599866.994271504,272.0789262016272,563579576.8240191,16599866.994271504,6143235.769355498,1802015.8256776133 + 12/27 08:00:00,218580239.83371086,0.0,543.6044671548946,220537215.91546849,0.0,9214853.654033246,10812094.954065679 + 12/27 09:00:00,123960999.03827372,0.0,2718.0223357744728,133745879.44706184,0.0,24572943.077421994,28832253.210841814 + 12/27 10:00:00,143839014.29479755,0.0,2718.9487870082878,153627229.9280274,0.0,27644560.962099744,32436284.862197039 + 12/27 11:00:00,139016497.05550076,0.0,4889.082690530017,156617194.7414088,0.0,27644560.962099744,32436284.862197039 + 12/27 12:00:00,150329154.98449276,0.0,4880.559639258913,167899169.68582485,0.0,27644560.962099744,32436284.862197039 + 12/27 13:00:00,136962526.96521987,0.0,4875.357823479681,154513815.1297467,0.0,27644560.962099744,32436284.862197039 + 12/27 14:00:00,134388611.8403295,0.0,4873.609320120655,151933605.39276386,0.0,27644560.962099744,32436284.862197039 + 12/27 15:00:00,139637940.88498549,0.0,4882.278957627833,157214145.13244567,0.0,27644560.962099744,32436284.862197039 + 12/27 16:00:00,163168970.74847052,0.0,4878.832999721285,180732769.54746715,0.0,27644560.962099744,32436284.862197039 + 12/27 17:00:00,181378411.9476301,0.0,3793.299265452955,195034289.30326075,0.0,27644560.962099744,32436284.862197039 + 12/27 18:00:00,188231772.17521263,0.0,2710.4627776229356,197989438.1746552,0.0,27644560.962099744,28832253.210841814 + 12/27 19:00:00,214672684.76844917,0.0,1625.6996851941238,220525203.635148,0.0,15358089.423388744,18020158.25677613 + 12/27 20:00:00,227571142.00287844,0.0,1084.950879472852,231476965.16898067,0.0,9214853.654033246,10812094.954065679 + 12/27 21:00:00,226386536.12504313,0.0,1085.3313196290827,230293728.87570784,0.0,9214853.654033246,10812094.954065679 + 12/27 22:00:00,0.0,0.0,1085.3313196290827,3907192.7506646977,0.0,6143235.769355498,3604031.6513552267 + 12/27 23:00:00,0.0,0.0,271.23771986821307,976455.7915255667,0.0,6143235.769355498,3604031.6513552267 + 12/27 24:00:00,0.0,0.0,271.1422021810507,976111.9278517827,0.0,6143235.769355498,1802015.8256776133 + 12/28 01:00:00,0.0,0.0,269.3542395772696,969675.2624781706,0.0,6143235.769355498,1802015.8256776133 + 12/28 02:00:00,0.0,0.0,268.6245229264676,967048.2825352834,0.0,6143235.769355498,1802015.8256776133 + 12/28 03:00:00,0.0,0.0,268.0917996130683,965130.4786070458,0.0,6143235.769355498,1802015.8256776133 + 12/28 04:00:00,0.0,0.0,267.4400870209182,962784.3132753056,0.0,6143235.769355498,1802015.8256776133 + 12/28 05:00:00,0.0,0.0,267.4400870209182,962784.3132753056,0.0,6143235.769355498,1802015.8256776133 + 12/28 06:00:00,0.0,0.0,266.99817389809899,961193.4260331564,0.0,6143235.769355498,1802015.8256776133 + 12/28 07:00:00,0.0,0.0,266.43753382994557,959175.121787804,0.0,6143235.769355498,1802015.8256776133 + 12/28 08:00:00,0.0,0.0,265.28927165759196,955041.377967331,0.0,6143235.769355498,1802015.8256776133 + 12/28 09:00:00,0.0,0.0,265.28927165759196,955041.3779673311,0.0,6143235.769355498,1802015.8256776133 + 12/28 10:00:00,0.0,0.0,265.63748180720349,956294.9345059324,0.0,6143235.769355498,1802015.8256776133 + 12/28 11:00:00,0.0,0.0,266.21073912086129,958358.6608351006,0.0,6143235.769355498,1802015.8256776133 + 12/28 12:00:00,0.0,0.0,266.77501127424866,960390.0405872951,0.0,6143235.769355498,1802015.8256776133 + 12/28 13:00:00,0.0,0.0,267.2198686499174,961991.5271397026,0.0,6143235.769355498,1802015.8256776133 + 12/28 14:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 12/28 15:00:00,0.0,0.0,268.4125741960858,966285.267105909,0.0,6143235.769355498,1802015.8256776133 + 12/28 16:00:00,0.0,0.0,268.5187393407722,966667.4616267799,0.0,6143235.769355498,1802015.8256776133 + 12/28 17:00:00,0.0,0.0,268.5187393407722,966667.4616267799,0.0,6143235.769355498,1802015.8256776133 + 12/28 18:00:00,0.0,0.0,268.6245229264676,967048.2825352834,0.0,6143235.769355498,1802015.8256776133 + 12/28 19:00:00,0.0,0.0,268.7299239381596,967427.7261773745,0.0,6143235.769355498,1802015.8256776133 + 12/28 20:00:00,0.0,0.0,269.0438214342074,968557.7571631468,0.0,6143235.769355498,1802015.8256776133 + 12/28 21:00:00,0.0,0.0,269.45693446014988,970044.9640565395,0.0,6143235.769355498,1802015.8256776133 + 12/28 22:00:00,0.0,0.0,269.7626718191692,971145.6185490092,0.0,6143235.769355498,1802015.8256776133 + 12/28 23:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 12/28 24:00:00,0.0,0.0,270.064867748096,972233.5238931456,0.0,6143235.769355498,1802015.8256776133 + 12/29 01:00:00,0.0,0.0,269.96453088122959,971872.3111724265,0.0,6143235.769355498,1802015.8256776133 + 12/29 02:00:00,0.0,0.0,269.7626718191692,971145.6185490092,0.0,6143235.769355498,1802015.8256776133 + 12/29 03:00:00,0.0,0.0,269.55923878188607,970413.2596147898,0.0,6143235.769355498,1802015.8256776133 + 12/29 04:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 12/29 05:00:00,0.0,0.0,268.93957419784575,968182.4671122446,0.0,6143235.769355498,1802015.8256776133 + 12/29 06:00:00,0.0,0.0,268.6245229264676,967048.2825352834,0.0,6143235.769355498,1802015.8256776133 + 12/29 07:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 12/29 08:00:00,0.0,0.0,267.8760608689707,964353.8191282945,0.0,6143235.769355498,1802015.8256776133 + 12/29 09:00:00,0.0,0.0,266.32431672695636,958767.5402170428,0.0,6143235.769355498,1802015.8256776133 + 12/29 10:00:00,0.0,0.0,266.32431672695636,958767.5402170427,0.0,6143235.769355498,1802015.8256776133 + 12/29 11:00:00,0.0,0.0,266.66288218472098,959986.3758649954,0.0,6143235.769355498,1802015.8256776133 + 12/29 12:00:00,0.0,0.0,267.76762788994525,963963.4604038028,0.0,6143235.769355498,1802015.8256776133 + 12/29 13:00:00,0.0,0.0,268.5187393407722,966667.4616267799,0.0,6143235.769355498,1802015.8256776133 + 12/29 14:00:00,0.0,0.0,268.4125741960858,966285.267105909,0.0,6143235.769355498,1802015.8256776133 + 12/29 15:00:00,0.0,0.0,268.3060285110827,965901.7026398976,0.0,6143235.769355498,1802015.8256776133 + 12/29 16:00:00,0.0,0.0,268.5187393407722,966667.4616267799,0.0,6143235.769355498,1802015.8256776133 + 12/29 17:00:00,0.0,0.0,266.99817389809899,961193.4260331562,0.0,6143235.769355498,1802015.8256776133 + 12/29 18:00:00,0.0,0.0,266.43753382994557,959175.121787804,0.0,6143235.769355498,1802015.8256776133 + 12/29 19:00:00,0.0,0.0,266.21073912086129,958358.6608351006,0.0,6143235.769355498,1802015.8256776133 + 12/29 20:00:00,0.0,0.0,266.77501127424866,960390.0405872951,0.0,6143235.769355498,1802015.8256776133 + 12/29 21:00:00,0.0,0.0,265.98250676199339,957537.0243431762,0.0,6143235.769355498,1802015.8256776133 + 12/29 22:00:00,0.0,0.0,265.4056937674525,955460.4975628289,0.0,6143235.769355498,1802015.8256776133 + 12/29 23:00:00,0.0,0.0,260.8735175920259,939144.6633312933,0.0,6143235.769355498,1802015.8256776133 + 12/29 24:00:00,0.0,0.0,264.70192499272619,952926.9299738142,0.0,6143235.769355498,1802015.8256776133 + 12/30 01:00:00,0.0,0.0,263.98573887090319,950348.6599352514,0.0,6143235.769355498,1802015.8256776133 + 12/30 02:00:00,0.0,0.0,265.4056937674525,955460.4975628289,0.0,6143235.769355498,1802015.8256776133 + 12/30 03:00:00,0.0,0.0,262.88871946402477,946399.3900704892,0.0,6143235.769355498,1802015.8256776133 + 12/30 04:00:00,0.0,0.0,263.6230664467321,949043.0392082355,0.0,6143235.769355498,1802015.8256776133 + 12/30 05:00:00,0.0,0.0,266.5503893434902,959581.4016365648,0.0,6143235.769355498,1802015.8256776133 + 12/30 06:00:00,0.0,0.0,265.86785419915176,957124.2751169462,0.0,6143235.769355498,1802015.8256776133 + 12/30 07:00:00,722385626.222909,16277395.582586158,266.0968021014581,723343574.7104743,16277395.582586158,6143235.769355498,1802015.8256776133 + 12/30 08:00:00,269585250.2486985,0.0,526.7592199534655,271481583.44053098,0.0,9214853.654033246,10812094.954065679 + 12/30 09:00:00,171953945.59631924,0.0,2645.8341632663325,181478948.584078,0.0,24572943.077421994,28832253.210841814 + 12/30 10:00:00,131367155.53416088,0.0,2667.750112742486,140971055.94003383,0.0,27644560.962099744,32436284.862197039 + 12/30 11:00:00,140976379.8547908,0.0,4823.714132201206,158341750.73071517,0.0,27644560.962099744,32436284.862197039 + 12/30 12:00:00,132164661.42156543,0.0,4855.728092745046,149645282.55544759,0.0,27644560.962099744,32436284.862197039 + 12/30 13:00:00,126012344.40830171,0.0,4880.559639258913,143582359.1096338,0.0,27644560.962099744,32436284.862197039 + 12/30 14:00:00,128315058.5007408,0.0,4883.990938330872,145897425.87873195,0.0,27644560.962099744,32436284.862197039 + 12/30 15:00:00,147873991.47431744,0.0,4892.440204394051,165486776.21013604,0.0,27644560.962099744,32436284.862197039 + 12/30 16:00:00,146057851.71424908,0.0,4894.107816614918,163676639.8540628,0.0,27644560.962099744,32436284.862197039 + 12/30 17:00:00,168487983.8299477,0.0,3809.10496682278,182200761.71050973,0.0,27644560.962099744,32436284.862197039 + 12/30 18:00:00,175553377.5683995,0.0,2721.703268130748,185351509.3336702,0.0,27644560.962099744,28832253.210841814 + 12/30 19:00:00,199738277.41886498,0.0,1633.5678649673064,205619121.7327473,0.0,15358089.423388744,18020158.25677613 + 12/30 20:00:00,213725170.7996957,0.0,1090.1270183297575,217649628.06568284,0.0,9214853.654033246,10812094.954065679 + 12/30 21:00:00,215743670.19403667,0.0,1088.3157048065089,219661606.73134009,0.0,9214853.654033246,10812094.954065679 + 12/30 22:00:00,0.0,0.0,1090.1270183297584,3924457.265987127,0.0,6143235.769355498,3604031.6513552267 + 12/30 23:00:00,0.0,0.0,272.44202557956216,980791.2920864236,0.0,6143235.769355498,3604031.6513552267 + 12/30 24:00:00,0.0,0.0,272.44202557956216,980791.2920864237,0.0,6143235.769355498,1802015.8256776133 + 12/31 01:00:00,0.0,0.0,272.44202557956216,980791.2920864237,0.0,6143235.769355498,1802015.8256776133 + 12/31 02:00:00,0.0,0.0,272.70995153744817,981755.8255348133,0.0,6143235.769355498,1802015.8256776133 + 12/31 03:00:00,0.0,0.0,273.2343928070692,983643.814105449,0.0,6143235.769355498,1802015.8256776133 + 12/31 04:00:00,0.0,0.0,273.5754953925591,984871.7834132128,0.0,6143235.769355498,1802015.8256776133 + 12/31 05:00:00,0.0,0.0,273.74346947106349,985476.4900958284,0.0,6143235.769355498,1802015.8256776133 + 12/31 06:00:00,0.0,0.0,274.23700568575097,987253.2204687034,0.0,6143235.769355498,1802015.8256776133 + 12/31 07:00:00,532195097.4360361,20530755.605565434,274.317738795308,533182641.29569926,20530755.605565434,6143235.769355498,1802015.8256776133 + 12/31 08:00:00,225313902.58414264,0.0,549.2725830710862,227291283.88319854,0.0,9214853.654033246,10812094.954065679 + 12/31 09:00:00,171080288.48124824,0.0,2749.4780023196096,180978409.28959883,0.0,24572943.077421994,28832253.210841814 + 12/31 10:00:00,150483704.7444436,0.0,2755.4949528949689,160403486.57486547,0.0,27644560.962099744,32436284.862197039 + 12/31 11:00:00,148792630.75620545,0.0,4967.674707983377,166676259.7049456,0.0,27644560.962099744,32436284.862197039 + 12/31 12:00:00,126746125.3091029,0.0,4976.384480839337,144661109.4401245,0.0,27644560.962099744,32436284.862197039 + 12/31 13:00:00,127470010.21606186,0.0,4978.798998934269,145393686.6122252,0.0,27644560.962099744,32436284.862197039 + 12/31 14:00:00,131907924.93665383,0.0,4984.69047854207,149852810.6594053,0.0,27644560.962099744,32436284.862197039 + 12/31 15:00:00,125297355.7050731,0.0,4988.125612719936,143254607.9108649,0.0,27644560.962099744,32436284.862197039 + 12/31 16:00:00,131112006.25215161,0.0,4991.485567824271,149081354.296319,0.0,27644560.962099744,32436284.862197039 + 12/31 17:00:00,125495559.06508108,0.0,3895.207517381006,139518306.1276527,0.0,27644560.962099744,32436284.862197039 + 12/31 18:00:00,107447404.69165609,0.0,2792.134453822064,117499088.7254155,0.0,27644560.962099744,28832253.210841814 + 12/31 19:00:00,140085742.21720309,0.0,1675.807719108821,146118650.00599484,0.0,15358089.423388744,18020158.25677613 + 12/31 20:00:00,147552883.09587253,0.0,1117.3779190656338,151575443.6045088,0.0,9214853.654033246,10812094.954065679 + 12/31 21:00:00,134066145.6020484,0.0,1117.717638205332,138089929.09958763,0.0,9214853.654033246,10812094.954065679 + 12/31 22:00:00,0.0,0.0,1118.5328709289716,4026718.335344298,0.0,6143235.769355498,3604031.6513552267 + 12/31 23:00:00,0.0,0.0,280.0385700581902,1008138.8522094847,0.0,6143235.769355498,3604031.6513552267 + 12/31 24:00:00,0.0,0.0,280.49529355333189,1009783.0567919947,0.0,6143235.769355498,1802015.8256776133 -- 2.39.2 From cd7104206a2184127ff5d056939007d410057d35 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Wed, 13 Sep 2023 04:40:11 -0400 Subject: [PATCH 048/101] changed name of test file --- tests/test_results_import.py | 1 + .../tests_data/{summerschool_one_building_out.csv => 12_out.csv} | 0 2 files changed, 1 insertion(+) rename tests/tests_data/{summerschool_one_building_out.csv => 12_out.csv} (100%) diff --git a/tests/test_results_import.py b/tests/test_results_import.py index 7f8df098..e3498079 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -96,6 +96,7 @@ class TestResultsImport(TestCase): def test_energy_plus_results_import(self): ResultFactory('energy_plus_workflow', self._city, self._example_path).enrich() for building in self._city.buildings: + print(building.name) print(building.heating_demand) print(building.cooling_demand) diff --git a/tests/tests_data/summerschool_one_building_out.csv b/tests/tests_data/12_out.csv similarity index 100% rename from tests/tests_data/summerschool_one_building_out.csv rename to tests/tests_data/12_out.csv -- 2.39.2 From 707b42f2a93f48fe8424d394d1380e5ca2d49c51 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 13 Sep 2023 16:36:27 -0400 Subject: [PATCH 049/101] modified the test checking if it only returns the hourly, monthly and yearly demands for building 12 --- tests/test_results_import.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/tests/test_results_import.py b/tests/test_results_import.py index e3498079..775ae083 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -30,7 +30,7 @@ class TestResultsImport(TestCase): """ self._example_path = (Path(__file__).parent / 'tests_data').resolve() self._output_path = (Path(__file__).parent / 'tests_outputs').resolve() - file = 'summerschool_one_building.geojson' + file = 'test.geojson' file_path = (self._example_path / file).resolve() self._city = GeometryFactory('geojson', path=file_path, @@ -96,7 +96,12 @@ class TestResultsImport(TestCase): def test_energy_plus_results_import(self): ResultFactory('energy_plus_workflow', self._city, self._example_path).enrich() for building in self._city.buildings: - print(building.name) - print(building.heating_demand) - print(building.cooling_demand) + csv_output_name = f'{building.name}_out.csv' + csv_output_path = (self._example_path / csv_output_name).resolve() + if csv_output_path.is_file(): + print(building.name) + print(building.heating_demand) + print(building.heating_demand.keys()) + print(building.cooling_demand) + print(building.cooling_demand.keys()) -- 2.39.2 From b24a616d0000f6a97e73c4ae71ac0a4d31448442 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Thu, 14 Sep 2023 12:03:50 -0400 Subject: [PATCH 050/101] modified energy plus results importer test --- tests/test_results_import.py | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/tests/test_results_import.py b/tests/test_results_import.py index 775ae083..8f4e0aed 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -99,9 +99,19 @@ class TestResultsImport(TestCase): csv_output_name = f'{building.name}_out.csv' csv_output_path = (self._example_path / csv_output_name).resolve() if csv_output_path.is_file(): - print(building.name) - print(building.heating_demand) - print(building.heating_demand.keys()) - print(building.cooling_demand) - print(building.cooling_demand.keys()) - + self.assertEqual(building.name, '12') + self.assertIsNotNone(building.heating_demand) + self.assertIsNotNone(building.cooling_demand) + self.assertIsNotNone(building.domestic_hot_water_heat_demand) + self.assertIsNotNone(building.lighting_electrical_demand) + self.assertIsNotNone(building.appliances_electrical_demand) + total_demand = sum(building.heating_demand[cte.HOUR]) + self.assertAlmostEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) + total_demand = sum(building.heating_demand[cte.MONTH]) + self.assertEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) + if building.name != '12': + self.assertDictEqual(building.heating_demand, {}) + self.assertDictEqual(building.cooling_demand, {}) + self.assertDictEqual(building.domestic_hot_water_heat_demand, {}) + self.assertDictEqual(building.lighting_electrical_demand, {}) + self.assertDictEqual(building.appliances_electrical_demand, {}) -- 2.39.2 From ee875859e8c781abb302d73d9ee569bf6c507de0 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 18 Sep 2023 15:44:52 -0400 Subject: [PATCH 051/101] work started on generation_system.py and generic_generation_system.py --- .../energy_systems/energy_system.py | 4 +- .../energy_systems/generation_system.py | 7 +++ .../generic_generation_system.py | 44 +++++++++++++++++++ 3 files changed, 53 insertions(+), 2 deletions(-) diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py index fdac1513..a5324047 100644 --- a/hub/city_model_structure/energy_systems/energy_system.py +++ b/hub/city_model_structure/energy_systems/energy_system.py @@ -60,9 +60,9 @@ class EnergySystem: self._demand_types = value @property - def generation_system(self) -> GenerationSystem: + def generation_system(self) -> List[GenerationSystem]: """ - Get generation system + Get generation systems :return: GenerationSystem """ return self._generation_system diff --git a/hub/city_model_structure/energy_systems/generation_system.py b/hub/city_model_structure/energy_systems/generation_system.py index 1561e370..10572805 100644 --- a/hub/city_model_structure/energy_systems/generation_system.py +++ b/hub/city_model_structure/energy_systems/generation_system.py @@ -22,6 +22,13 @@ class GenerationSystem: self._storage_capacity = None self._generic_generation_system = None self._auxiliary_equipment = None + self._model_name = None + self._manufacturer = None + self._maximum_heat_output = None + self._minimum_heat_output = None + self._maximum_cooling_output = None + self._minimum_cooling_output = None + @property def generic_generation_system(self) -> GenericGenerationSystem: diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py index 28094571..fa885a3c 100644 --- a/hub/city_model_structure/energy_systems/generic_generation_system.py +++ b/hub/city_model_structure/energy_systems/generic_generation_system.py @@ -24,6 +24,18 @@ class GenericGenerationSystem: self._source_mass_flow = None self._storage = None self._auxiliary_equipment = None + self._source_medium = None + self._supply_medium = None + self._maximum_heat_supply_temperature = None + self._minimum_heat_supply_temperature = None + self._maximum_cooling_supply_temperature = None + self._minimum_cooling_supply_temperature = None + self._heat_output_curve = None + self._heat_fuel_consumption_curve = None + self._heat_efficiency_curve = None + self._cooling_output_curve = None + self._cooling_fuel_consumption_curve = None + self._cooling_efficiency_curve = None @property def type(self): @@ -184,3 +196,35 @@ class GenericGenerationSystem: :return: GenerationSystem """ self._auxiliary_equipment = value + + @property + def source_medium(self): + """ + Get the source medium [air, water, ground, district_heating, grid, on_site_electricity] + :return: string + """ + return self._source_medium + + @source_medium.setter + def source_medium(self, value): + """ + Set the source medium [air, water, ground, district_heating, grid, on_site_electricity] + :param value: string + """ + self._source_medium = value + + @property + def supply_medium(self): + """ + Get the supply medium from ['air', 'water'] + :return: string + """ + return self._supply_medium + + @supply_medium.setter + def supply_medium(self, value): + """ + Set the supply medium from ['air', 'water'] + :param value: string + """ + self._supply_medium = value -- 2.39.2 From 41cf280aab10cdd231c9d1b82a9bc5480ac7c8e9 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 18 Sep 2023 15:55:50 -0400 Subject: [PATCH 052/101] work started on generation_system.py and generic_generation_system.py --- .../generic_generation_system.py | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py index fa885a3c..f5737fee 100644 --- a/hub/city_model_structure/energy_systems/generic_generation_system.py +++ b/hub/city_model_structure/energy_systems/generic_generation_system.py @@ -228,3 +228,74 @@ class GenericGenerationSystem: :param value: string """ self._supply_medium = value + + # self._heat_output_curve = None + # self._heat_fuel_consumption_curve = None + # self._heat_efficiency_curve = None + # self._cooling_output_curve = None + # self._cooling_fuel_consumption_curve = None + # self._cooling_efficiency_curve = None + + @property + def maximum_heat_supply_temperature(self): + """ + Get maximum heating supply temperature in degree Celsius + :return: float + """ + return self._maximum_heat_supply_temperature + + @maximum_heat_supply_temperature.setter + def maximum_heat_supply_temperature(self, value): + """ + Set maximum heating supply temperature in degree Celsius + :param value: float + """ + self._maximum_heat_supply_temperature = value + + @property + def minimum_heat_supply_temperature(self): + """ + Get minimum heating supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @minimum_heat_supply_temperature.setter + def minimum_heat_supply_temperature(self, value): + """ + Set minimum heating supply temperature in degree Celsius + :param value: float + """ + self._minimum_heat_supply_temperature = value + + @property + def maximum_cooling_supply_temperature(self): + """ + Get maximum cooling supply temperature in degree Celsius + :return: float + """ + return self._maximum_cooling_supply_temperature + + @maximum_cooling_supply_temperature.setter + def maximum_cooling_supply_temperature(self, value): + """ + Set maximum cooling supply temperature in degree Celsius + :param value: float + """ + self._maximum_cooling_supply_temperature = value + + @property + def minimum_cooling_supply_temperature(self): + """ + Get minimum cooling supply temperature in degree Celsius + :return: float + """ + return self._minimum_cooling_supply_temperature + + @minimum_cooling_supply_temperature.setter + def minimum_cooling_supply_temperature(self, value): + """ + Set minimum cooling supply temperature in degree Celsius + :param value: float + """ + self._minimum_cooling_supply_temperature = value -- 2.39.2 From cb3e100fd46580a157904c295dac5406b3c04722 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 19 Sep 2023 20:35:08 -0400 Subject: [PATCH 053/101] I completed the generation_system.py Created generic_storage_system.py, thermal_storage_system.py, and electrical_storage_system.py and added them to energy_system.py and generic_energy_system.py --- .../electrical_storage_system.py | 155 ++++++++++++++++++ .../energy_systems/energy_system.py | 19 +++ .../energy_systems/generation_system.py | 97 +++++++++++ .../energy_systems/generic_energy_system.py | 24 ++- .../energy_systems/generic_storage_system.py | 65 ++++++++ .../energy_systems/thermal_storage_system.py | 136 +++++++++++++++ 6 files changed, 493 insertions(+), 3 deletions(-) create mode 100644 hub/city_model_structure/energy_systems/electrical_storage_system.py create mode 100644 hub/city_model_structure/energy_systems/generic_storage_system.py create mode 100644 hub/city_model_structure/energy_systems/thermal_storage_system.py diff --git a/hub/city_model_structure/energy_systems/electrical_storage_system.py b/hub/city_model_structure/energy_systems/electrical_storage_system.py new file mode 100644 index 00000000..54bf587c --- /dev/null +++ b/hub/city_model_structure/energy_systems/electrical_storage_system.py @@ -0,0 +1,155 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +from __future__ import annotations + +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem + + + +class ElectricalStorageSystem: + def __init__(self): + self._model_name = None + self._manufacturer = None + self._generic_storage_system = None + self._rated_output_power = None + self._nominal_efficiency = None + self._battery_voltage = None + self._depth_of_discharge = None + self._self_discharge_rate = None + + @property + def model_name(self): + """ + Get the model name + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set the model name + :return: string + """ + self._model_name = value + + @property + def manufacturer(self): + """ + Get the manufacturer name + :return: string + """ + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set the manufacturer name + :return: string + """ + self._manufacturer = value + + @property + def generic_storage_system(self) -> GenericStorageSystem: + """ + Get associated generic_storage_system + :return: GenericStorageSystem + """ + return self._generic_storage_system + + @generic_storage_system.setter + def generic_storage_system(self, value): + """ + Set associated generic_storage_system + :param value: GenericStorageSystem + """ + self._generic_storage_system = value + + @property + def rated_output_power(self): + """ + Get the rated output power in Watts + :return: float + """ + return self._rated_output_power + + @rated_output_power.setter + def rated_output_power(self, value): + """ + Set the rated output power in Watts + :return: float + """ + self._rated_output_power = value + + @property + def nominal_efficiency(self): + """ + Get the nominal efficiency + :return: float + """ + return self._nominal_efficiency + + @nominal_efficiency.setter + def nominal_efficiency(self, value): + """ + Set the nominal efficiency + :return: float + """ + self._nominal_efficiency = value + + @property + def battery_voltage(self): + """ + Get the battery voltage in Volts + :return: float + """ + return self._battery_voltage + + @battery_voltage.setter + def battery_voltage(self, value): + """ + Get the battery voltage in Volts + :return: float + """ + self._battery_voltage = value + + @property + def depth_of_discharge(self): + """ + Get the depth of discharge as a percentage + :return: float + """ + return self._depth_of_discharge + + @depth_of_discharge.setter + def depth_of_discharge(self, value): + """ + Set the depth of discharge as a percentage + :return: float + """ + self._depth_of_discharge = value + + @property + def self_discharge_rate(self): + """ + Get the self discharge rate of battery as a percentage + :return: float + """ + return self._self_discharge_rate + + @self_discharge_rate.setter + def self_discharge_rate(self, value): + """ + Get the self discharge rate of battery as a percentage + :return: float + """ + self._self_discharge_rate = value + + + diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py index a5324047..f4a9ea96 100644 --- a/hub/city_model_structure/energy_systems/energy_system.py +++ b/hub/city_model_structure/energy_systems/energy_system.py @@ -11,6 +11,8 @@ from hub.city_model_structure.energy_systems.generation_system import Generation from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.city_model_structure.energy_systems.control_system import ControlSystem +from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem +from hub.city_model_structure.energy_systems.electrical_storage_system import ElectricalStorageSystem from hub.city_model_structure.city_object import CityObject @@ -26,6 +28,7 @@ class EnergySystem: self._emission_system = None self._connected_city_objects = None self._control_system = None + self._energy_storage_system = None @property def name(self): @@ -138,3 +141,19 @@ class EnergySystem: :param value: ControlSystem """ self._control_system = value + + @property + def energy_storage_system(self) -> Union[None, List[ThermalStorageSystem], List[ElectricalStorageSystem]]: + """ + Get energy storage systems + :return: [EnergyStorageSystem] + """ + return self._energy_storage_system + + @energy_storage_system.setter + def energy_storage_system(self, value): + """ + Set storage system + :param value: [EnergyStorageSystem] + """ + self._energy_storage_system = value diff --git a/hub/city_model_structure/energy_systems/generation_system.py b/hub/city_model_structure/energy_systems/generation_system.py index 10572805..5d64f303 100644 --- a/hub/city_model_structure/energy_systems/generation_system.py +++ b/hub/city_model_structure/energy_systems/generation_system.py @@ -125,3 +125,100 @@ class GenerationSystem: :param value: GenerationSystem """ self._auxiliary_equipment = value + + @property + def model_name(self): + """ + Get the model name + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set the model name + :return: string + """ + self._model_name = value + + @property + def manufacturer(self): + """ + Get the manufacturer name + :return: string + """ + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set the manufacturer name + :return: string + """ + self._manufacturer = value + + @property + def maximum_heat_output(self): + """ + Get maximum heat output in W + :return: float + """ + return self._maximum_heat_output + + @maximum_heat_output.setter + def maximum_heat_output(self, value): + """ + Set maximum heat output in W + :return: float + """ + self._maximum_heat_output = value + + @property + def minimum_heat_output(self): + """ + Get minimum heat output in W + :return: float + """ + return self._minimum_heat_output + + @minimum_heat_output.setter + def minimum_heat_output(self, value): + """ + Set minimum heat output in W + :return: float + """ + self._minimum_heat_output = value + + @property + def maximum_cooling_output(self): + """ + Get maximum cooling output in W + :return: float + """ + return self._maximum_cooling_output + + @maximum_cooling_output.setter + def maximum_cooling_output(self, value): + """ + Set maximum cooling output in W + :return: float + """ + self._maximum_cooling_output = value + + @property + def minimum_cooling_output(self): + """ + Get minimum cooling output in W + :return: float + """ + return self._minimum_cooling_output + + @minimum_cooling_output.setter + def minimum_cooling_output(self, value): + """ + Set minimum cooling output in W + :return: float + """ + self._minimum_cooling_output = value + diff --git a/hub/city_model_structure/energy_systems/generic_energy_system.py b/hub/city_model_structure/energy_systems/generic_energy_system.py index ac5d9b62..fddd4368 100644 --- a/hub/city_model_structure/energy_systems/generic_energy_system.py +++ b/hub/city_model_structure/energy_systems/generic_energy_system.py @@ -5,12 +5,12 @@ Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from typing import Union +from typing import Union, List from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem - +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem class GenericEnergySystem: """ @@ -23,6 +23,8 @@ class GenericEnergySystem: self._distribution_system = None self._emission_system = None self._connected_city_objects = None + self._energy_storage_system = None + @property def name(self): @@ -57,7 +59,7 @@ class GenericEnergySystem: self._demand_types = value @property - def generation_system(self) -> GenericGenerationSystem: + def generation_system(self) -> List[GenericGenerationSystem]: """ Get generation system :return: GenerationSystem @@ -103,3 +105,19 @@ class GenericEnergySystem: :param value: EmissionSystem """ self._emission_system = value + + @property + def energy_storage_system(self) -> Union[None, GenericStorageSystem]: + """ + Get storage system + :return: EnergyStorageSystem + """ + return self._energy_storage_system + + @energy_storage_system.setter + def energy_storage_system(self, value): + """ + Set storage system + :return: EnergyStorageSystem + """ + self._energy_storage_system = value diff --git a/hub/city_model_structure/energy_systems/generic_storage_system.py b/hub/city_model_structure/energy_systems/generic_storage_system.py new file mode 100644 index 00000000..2b7e0bab --- /dev/null +++ b/hub/city_model_structure/energy_systems/generic_storage_system.py @@ -0,0 +1,65 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +from __future__ import annotations + + +class GenericStorageSystem: + def __init__(self): + self._storage_type = None + self._nominal_capacity = None + self._losses_ratio = None + + @property + def storage_type(self): + """ + Get the type of storage system from [sensible, latent, lithium_ion, NiCd, lead_acid] + :return: string + """ + return self._storage_type + + @storage_type.setter + def storage_type(self, value): + """ + Set the type of storage system from [sensible, latent, lithium_ion, NiCd, lead_acid] + :return: string + """ + self._storage_type = value + + @property + def nominal_capacity(self): + """ + Get the nominal capacity of storage systems in Jules + :return: float + """ + return self._nominal_capacity + + @nominal_capacity.setter + def nominal_capacity(self, value): + """ + Set the nominal capacity of storage systems in Jules + :return: float + """ + self._nominal_capacity = value + + @property + def losses_ratio(self): + """ + Get the losses-ratio of storage system in Jules lost / Jules stored + :return: float + """ + return self._losses_ratio + + @losses_ratio.setter + def losses_ratio(self, value): + """ + Set the losses-ratio of storage system in Jules lost / Jules stored + :return: float + """ + self._losses_ratio = value + diff --git a/hub/city_model_structure/energy_systems/thermal_storage_system.py b/hub/city_model_structure/energy_systems/thermal_storage_system.py new file mode 100644 index 00000000..23ee7c54 --- /dev/null +++ b/hub/city_model_structure/energy_systems/thermal_storage_system.py @@ -0,0 +1,136 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +from __future__ import annotations + + +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem +from hub.city_model_structure.building_demand.layer import Layer + + +class ThermalStorageSystem: + def __init__(self): + self._model_name = None + self._manufacturer = None + self._volume = None + self._height = None + self._layers = None + self._maximum_operating_temperature = None + self._generic_storage_system = None + + @property + def model_name(self): + """ + Get the model name + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set the model name + :return: string + """ + self._model_name = value + + @property + def manufacturer(self): + """ + Get the manufacturer name + :return: string + """ + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set the manufacturer name + :return: string + """ + self._manufacturer = value + + @property + def volume(self): + """ + Get the volume of thermal storage in m3 + :return: float + """ + return self._volume + + @volume.setter + def volume(self, value): + """ + Set the thermal storage volume in m3 + :return: float + """ + self._volume = value + + @property + def height(self): + """ + Get the storage height in m + :return: float + """ + return self._height + + @height.setter + def height(self, value): + """ + Set the storage height in m + :return: float + """ + self._height = value + + @property + def generic_storage_system(self) -> GenericStorageSystem: + """ + Get associated generic_storage_system + :return: GenericStorageSystem + """ + return self._generic_storage_system + + @generic_storage_system.setter + def generic_storage_system(self, value): + """ + Set associated generic_storage_system + :param value: GenericStorageSystem + """ + self._generic_storage_system = value + + @property + def maximum_operating_temperature(self): + """ + Get the storage maximum operating temperature in degree Celsius + :return: float + """ + return self._maximum_operating_temperature + + @maximum_operating_temperature.setter + def maximum_operating_temperature(self, value): + """ + Set the storage maximum operating temperature in degree Celsius + :return: float + """ + self._maximum_operating_temperature = value + + @property + def layers(self) -> [Layer]: + """ + Get the storage system layers + :return: Layer + """ + return self._layers + + @layers.setter + def layers(self, value): + """ + Set the storage system layers + :return: Layer + """ + self._layers = value -- 2.39.2 From 482c06e4c27b9a94c490476115826f13690143bc Mon Sep 17 00:00:00 2001 From: sanam Date: Wed, 20 Sep 2023 11:30:41 -0400 Subject: [PATCH 054/101] new class created --- .../stochastic_occupancy_model/archetype.py | 105 +++--------------- .../data_models/usages/lighting.py | 2 +- 2 files changed, 15 insertions(+), 92 deletions(-) diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py index 3397c4bf..71d597d1 100644 --- a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py +++ b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py @@ -1,11 +1,10 @@ """ -Construction catalog Archetype +Stochastic_occupancy catalog Archetype SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group -Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca +Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca """ -from hub.catalog_factories.data_models.construction.construction import Construction class Archetype: @@ -15,27 +14,14 @@ class Archetype: def __init__(self, archetype_id, name, function, - climate_zone, - construction_period, - constructions, - average_storey_height, - thermal_capacity, - extra_loses_due_to_thermal_bridges, - indirect_heated_ratio, - infiltration_rate_for_ventilation_system_off, - infiltration_rate_for_ventilation_system_on): + climate_zone, stochastic_schedule + ): self._id = archetype_id self._name = name self._function = function self._climate_zone = climate_zone - self._construction_period = construction_period - self._constructions = constructions - self._average_storey_height = average_storey_height - self._thermal_capacity = thermal_capacity - self._extra_loses_due_to_thermal_bridges = extra_loses_due_to_thermal_bridges - self._indirect_heated_ratio = indirect_heated_ratio - self._infiltration_rate_for_ventilation_system_off = infiltration_rate_for_ventilation_system_off - self._infiltration_rate_for_ventilation_system_on = infiltration_rate_for_ventilation_system_on + self._stochastic_schedule + @property def id(self): @@ -70,86 +56,23 @@ class Archetype: return self._climate_zone @property - def constructions(self) -> [Construction]: + def stchastic_schedule(self): """ - Get archetype constructions - :return: [Construction] + Get stochastic schedules from the code + :return: schedule """ - return self._constructions - - @property - def construction_period(self): - """ - Get archetype construction period - :return: str - """ - return self._construction_period - - @property - def average_storey_height(self): - """ - Get archetype average storey height in m - :return: float - """ - return self._average_storey_height - - @property - def thermal_capacity(self): - """ - Get archetype thermal capacity in J/m3K - :return: float - """ - return self._thermal_capacity - - @property - def extra_loses_due_to_thermal_bridges(self): - """ - Get archetype extra loses due to thermal bridges in W/m2K - :return: float - """ - return self._extra_loses_due_to_thermal_bridges - - @property - def indirect_heated_ratio(self): - """ - Get archetype indirect heated area ratio - :return: float - """ - return self._indirect_heated_ratio - - @property - def infiltration_rate_for_ventilation_system_off(self): - """ - Get archetype infiltration rate for ventilation system off in 1/s - :return: float - """ - return self._infiltration_rate_for_ventilation_system_off - - @property - def infiltration_rate_for_ventilation_system_on(self): - """ - Get archetype infiltration rate for ventilation system on in 1/s - :return: float - """ - return self._infiltration_rate_for_ventilation_system_on + return self._stochastic_schedule def to_dictionary(self): """Class content to dictionary""" - _constructions = [] - for _construction in self.constructions: - _constructions.append(_construction.to_dictionary()) + _stochastic_schedule = [] + for _stochastic_schedule in self.stochastic_schedule: + _stochastic_schedule.append(_stochastic_schedule.to_dictionary()) content = {'Archetype': {'id': self.id, 'name': self.name, 'function': self.function, 'climate zone': self.climate_zone, - 'period of construction': self.construction_period, - 'average storey height [m]': self.average_storey_height, - 'thermal capacity [J/m3K]': self.thermal_capacity, - 'extra loses due to thermal bridges [W/m2K]': self.extra_loses_due_to_thermal_bridges, - 'indirect heated ratio': self.indirect_heated_ratio, - 'infiltration rate for ventilation off [1/s]': self.infiltration_rate_for_ventilation_system_off, - 'infiltration rate for ventilation on [1/s]': self.infiltration_rate_for_ventilation_system_on, - 'constructions': _constructions + 'stochastic_schedule': self.stochastic_schedule } } return content diff --git a/hub/catalog_factories/data_models/usages/lighting.py b/hub/catalog_factories/data_models/usages/lighting.py index 2d9420fe..fafd5ab1 100644 --- a/hub/catalog_factories/data_models/usages/lighting.py +++ b/hub/catalog_factories/data_models/usages/lighting.py @@ -54,7 +54,7 @@ class Lighting: return self._latent_fraction @property - def schedules(self) -> Union[None, List[Schedule]]: + def schedules(self) -> Union[None, List[Schedule], List[Stochastic_Schedule]]: """ Get schedules dataType = fraction -- 2.39.2 From bf004f9e18c8a3a437a9b762593a24863cb02f89 Mon Sep 17 00:00:00 2001 From: sanam Date: Thu, 21 Sep 2023 14:33:13 -0400 Subject: [PATCH 055/101] Stochastic schedule folder created --- .../stochastic_occupancy_model/stochastic_schedule | 0 .../stochastic_occupancy_model/stochastic_schedule.py | 7 +++++++ 2 files changed, 7 insertions(+) create mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule create mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule new file mode 100644 index 00000000..e69de29b diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py new file mode 100644 index 00000000..23e6ea23 --- /dev/null +++ b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py @@ -0,0 +1,7 @@ +""" +Stochastic_occupancy catalog stochastic schedules +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2022 Concordia CERC group +Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca +""" + -- 2.39.2 From 12d20f2d7a6ca7c706c14b45b79d07e1205857fa Mon Sep 17 00:00:00 2001 From: sanam Date: Fri, 22 Sep 2023 09:42:10 -0400 Subject: [PATCH 056/101] Stochastic schedule folder created --- .../stochastic_schedule.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py index 23e6ea23..6df529a0 100644 --- a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py +++ b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py @@ -5,3 +5,15 @@ Copyright © 2022 Concordia CERC group Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca """ +class StochasticSchedules: + """ + Schedule class + """ + + def __init__(self, schedule_type, values, data_type, time_step, time_range, day_types): + self._type = schedule_type + self._values = values + self._data_type = data_type + self._time_step = time_step + self._time_range = time_range + self._day_types = day_types \ No newline at end of file -- 2.39.2 From 4ce9f99e4d1bc32087af246026cd0cd3bea5cfcd Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Mon, 25 Sep 2023 03:41:52 -0400 Subject: [PATCH 057/101] cleaning mix-branches --- .../stochastic_occupancy_model/archetype.py | 78 ------------------- .../stochastic_schedule | 0 .../stochastic_schedule.py | 19 ----- .../data_models/usages/lighting.py | 2 +- 4 files changed, 1 insertion(+), 98 deletions(-) delete mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py delete mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule delete mode 100644 hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py deleted file mode 100644 index 71d597d1..00000000 --- a/hub/catalog_factories/data_models/stochastic_occupancy_model/archetype.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -Stochastic_occupancy catalog Archetype -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca -""" - - - -class Archetype: - """ - Archetype class - """ - def __init__(self, archetype_id, - name, - function, - climate_zone, stochastic_schedule - ): - self._id = archetype_id - self._name = name - self._function = function - self._climate_zone = climate_zone - self._stochastic_schedule - - - @property - def id(self): - """ - Get archetype id - :return: str - """ - return self._id - - @property - def name(self): - """ - Get archetype name - :return: str - """ - return self._name - - @property - def function(self): - """ - Get archetype function - :return: str - """ - return self._function - - @property - def climate_zone(self): - """ - Get archetype climate zone - :return: str - """ - return self._climate_zone - - @property - def stchastic_schedule(self): - """ - Get stochastic schedules from the code - :return: schedule - """ - return self._stochastic_schedule - - def to_dictionary(self): - """Class content to dictionary""" - _stochastic_schedule = [] - for _stochastic_schedule in self.stochastic_schedule: - _stochastic_schedule.append(_stochastic_schedule.to_dictionary()) - content = {'Archetype': {'id': self.id, - 'name': self.name, - 'function': self.function, - 'climate zone': self.climate_zone, - 'stochastic_schedule': self.stochastic_schedule - } - } - return content diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule deleted file mode 100644 index e69de29b..00000000 diff --git a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py b/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py deleted file mode 100644 index 6df529a0..00000000 --- a/hub/catalog_factories/data_models/stochastic_occupancy_model/stochastic_schedule.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -Stochastic_occupancy catalog stochastic schedules -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Sanam Dabirian sanam.dabirian@mail.concordia.ca -""" - -class StochasticSchedules: - """ - Schedule class - """ - - def __init__(self, schedule_type, values, data_type, time_step, time_range, day_types): - self._type = schedule_type - self._values = values - self._data_type = data_type - self._time_step = time_step - self._time_range = time_range - self._day_types = day_types \ No newline at end of file diff --git a/hub/catalog_factories/data_models/usages/lighting.py b/hub/catalog_factories/data_models/usages/lighting.py index fafd5ab1..2d9420fe 100644 --- a/hub/catalog_factories/data_models/usages/lighting.py +++ b/hub/catalog_factories/data_models/usages/lighting.py @@ -54,7 +54,7 @@ class Lighting: return self._latent_fraction @property - def schedules(self) -> Union[None, List[Schedule], List[Stochastic_Schedule]]: + def schedules(self) -> Union[None, List[Schedule]]: """ Get schedules dataType = fraction -- 2.39.2 From 6d34e41e90e78a165a73da2ab5e8e280801bec2c Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 26 Sep 2023 18:54:58 -0400 Subject: [PATCH 058/101] Started working on north america energy system importer. --- .../generic_generation_system.py | 115 ++++++++++++++++-- .../energy_systems/performance_curve.py | 105 ++++++++++++++++ ...a_demand_type_to_hub_energy_demand_type.py | 28 +++++ hub/helpers/dictionaries.py | 8 ++ ...america_custom_energy_system_parameters.py | 86 +++++++++++++ hub/imports/energy_systems_factory.py | 9 ++ 6 files changed, 342 insertions(+), 9 deletions(-) create mode 100644 hub/city_model_structure/energy_systems/performance_curve.py create mode 100644 hub/helpers/data/north_america_demand_type_to_hub_energy_demand_type.py create mode 100644 hub/imports/energy_systems/north_america_custom_energy_system_parameters.py diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py index f5737fee..f068eba9 100644 --- a/hub/city_model_structure/energy_systems/generic_generation_system.py +++ b/hub/city_model_structure/energy_systems/generic_generation_system.py @@ -1,12 +1,14 @@ """ -Generic energy generation system definition +Energy System catalog heat generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from __future__ import annotations from typing import Union +from hub.city_model_structure.energy_systems.performance_curve import PerformanceCurves class GenericGenerationSystem: @@ -36,6 +38,12 @@ class GenericGenerationSystem: self._cooling_output_curve = None self._cooling_fuel_consumption_curve = None self._cooling_efficiency_curve = None + self._heat_output_curve = None + self._heat_fuel_consumption_curve = None + self._heat_efficiency_curve = None + self._cooling_output_curve = None + self._cooling_fuel_consumption_curve = None + self._cooling_efficiency_curve = None @property def type(self): @@ -229,13 +237,6 @@ class GenericGenerationSystem: """ self._supply_medium = value - # self._heat_output_curve = None - # self._heat_fuel_consumption_curve = None - # self._heat_efficiency_curve = None - # self._cooling_output_curve = None - # self._cooling_fuel_consumption_curve = None - # self._cooling_efficiency_curve = None - @property def maximum_heat_supply_temperature(self): """ @@ -299,3 +300,99 @@ class GenericGenerationSystem: :param value: float """ self._minimum_cooling_supply_temperature = value + + @property + def heat_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_output_curve + + @heat_output_curve.setter + def heat_output_curve(self, value): + """ + Set the heat output curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_output_curve = value + + @property + def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_fuel_consumption_curve + + @heat_fuel_consumption_curve.setter + def heat_fuel_consumption_curve(self, value): + """ + Set the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_fuel_consumption_curve = value + + @property + def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_efficiency_curve + + @heat_efficiency_curve.setter + def heat_efficiency_curve(self, value): + """ + Set the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_efficiency_curve = value + + @property + def cooling_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the cooling output curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_output_curve + + @cooling_output_curve.setter + def cooling_output_curve(self, value): + """ + Set the cooling output curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_output_curve = value + + @property + def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_fuel_consumption_curve + + @cooling_fuel_consumption_curve.setter + def cooling_fuel_consumption_curve(self, value): + """ + Set the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_fuel_consumption_curve = value + + @property + def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_efficiency_curve + + @cooling_efficiency_curve.setter + def cooling_efficiency_curve(self, value): + """ + Set the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_efficiency_curve = value diff --git a/hub/city_model_structure/energy_systems/performance_curve.py b/hub/city_model_structure/energy_systems/performance_curve.py new file mode 100644 index 00000000..4aaaef1f --- /dev/null +++ b/hub/city_model_structure/energy_systems/performance_curve.py @@ -0,0 +1,105 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +from __future__ import annotations + + +class PerformanceCurves: + """ + Parameter function class + """ + + def __init__(self): + self._curve_type = None + self._dependant_variable = None + self._parameters = None + self._coefficients = None + + @property + def curve_type(self): + """ + Get the type of the fit function from the following + Linear =>>> y = a*x + b + Exponential =>>> y = a*(b**x) + Polynomial =>>> y = a*(x**2) + b*x + c + Power =>>> y = a*(x**b) + Second degree multivariable =>>> y = a*(x**2) + b*x + c*x*z + d*z + e*(z**2) + f + + Get the type of function from ['linear', 'exponential', 'polynomial', 'power', 'second degree multivariable'] + :return: string + """ + return self._curve_type + + @curve_type.setter + def curve_type(self, value): + """ + Set the type of the fit function from the following + Linear =>>> y = a*x + b + Exponential =>>> y = a*(b**x) + Polynomial =>>> y = a*(x**2) + b*x + c + Power =>>> y = a*(x**b) + Second degree multivariable =>>> y = a*(x**2) + b*x + c*x*z + d*z + e*(z**2) + f + + Get the type of function from ['linear', 'exponential', 'polynomial', 'power', 'second degree multivariable'] + :return: string + """ + self._curve_type = value + + @property + def dependant_variable(self): + """ + Get y (e.g. COP in COP = a*source temperature**2 + b*source temperature + c*source temperature*supply temperature + + d*supply temperature + e*supply temperature**2 + f) + """ + return self._dependant_variable + + @dependant_variable.setter + def dependant_variable(self, value): + """ + Set y (e.g. COP in COP = a*source temperature**2 + b*source temperature + c*source temperature*supply temperature + + d*supply temperature + e*supply temperature**2 + f) + """ + self._dependant_variable = value + + @property + def parameters(self): + """ + Get the list of parameters involved in fitting process as ['x', 'z'] (e.g. [source temperature, supply temperature] + in COP= *source temperature**2 + b*source temperature + c*source temperature*supply temperature + + d*supply temperature + e*supply temperature**2 + f) + :return: string + """ + return self._parameters + + @parameters.setter + def parameters(self, value): + """ + Set the list of parameters involved in fitting process as ['x', 'z'] (e.g. [source temperature, supply temperature] + in COP= *source temperature**2 + b*source temperature + c*source temperature*supply temperature + + d*supply temperature + e*supply temperature**2 + f) + :return: string + """ + self._parameters = value + + @property + def coefficients(self): + """ + Get the coefficients of the functions as list of ['a', 'b', 'c', 'd', 'e', 'f'] + :return: [coefficients] + """ + return self._coefficients + + @coefficients.setter + def coefficients(self, value): + """ + Set the coefficients of the functions as list of ['a', 'b', 'c', 'd', 'e', 'f'] + :return: [coefficients] + """ + self._coefficients = value + + diff --git a/hub/helpers/data/north_america_demand_type_to_hub_energy_demand_type.py b/hub/helpers/data/north_america_demand_type_to_hub_energy_demand_type.py new file mode 100644 index 00000000..b616e4f8 --- /dev/null +++ b/hub/helpers/data/north_america_demand_type_to_hub_energy_demand_type.py @@ -0,0 +1,28 @@ +""" +Dictionaries module for Montreal system catalog demand types to hub energy demand types +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +import hub.helpers.constants as cte + + +class NorthAmericaDemandTypeToHubEnergyDemandType: + """ + Montreal demand type to hub energy demand type + """ + def __init__(self): + self._dictionary = {'heating': cte.HEATING, + 'cooling': cte.COOLING, + 'domestic_hot_water': cte.DOMESTIC_HOT_WATER, + 'electricity': cte.ELECTRICITY, + } + + @property + def dictionary(self) -> dict: + """ + Get the dictionary + :return: {} + """ + return self._dictionary diff --git a/hub/helpers/dictionaries.py b/hub/helpers/dictionaries.py index 3fa8125d..efeddd4b 100644 --- a/hub/helpers/dictionaries.py +++ b/hub/helpers/dictionaries.py @@ -21,6 +21,7 @@ from hub.helpers.data.hub_usage_to_eilat_usage import HubUsageToEilatUsage from hub.helpers.data.montreal_system_to_hub_energy_generation_system import MontrealSystemToHubEnergyGenerationSystem from hub.helpers.data.montreal_demand_type_to_hub_energy_demand_type import MontrealDemandTypeToHubEnergyDemandType from hub.helpers.data.hub_function_to_montreal_custom_costs_function import HubFunctionToMontrealCustomCostsFunction +from hub.helpers.data.north_america_demand_type_to_hub_energy_demand_type import NorthAmericaDemandTypeToHubEnergyDemandType class Dictionaries: @@ -128,6 +129,13 @@ class Dictionaries: """ return MontrealDemandTypeToHubEnergyDemandType().dictionary + @property + def north_america_demand_type_to_hub_energy_demand_type(self): + """ + Get montreal custom system demand type to hub energy demand type, transformation dictionary + """ + return NorthAmericaDemandTypeToHubEnergyDemandType().dictionary + @property def hub_function_to_montreal_custom_costs_function(self) -> dict: """ diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py new file mode 100644 index 00000000..e2d244f7 --- /dev/null +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -0,0 +1,86 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +import logging +import copy + +from pandas import DataFrame + +from hub.catalog_factories.energy_systems_catalog_factory import EnergySystemsCatalogFactory +from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem +from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.energy_system import EnergySystem +from hub.city_model_structure.energy_systems.generation_system import GenerationSystem +from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem +from hub.city_model_structure.energy_systems.emission_system import EmissionSystem +from hub.helpers.dictionaries import Dictionaries + + +class NorthAmericaCustomEnergySystemParameters: + """ + NorthAmericaCustomEnergySystemParameters class + """ + + def __init__(self, city): + self._city = city + + def enrich_buildings(self): + """ + Returns the city with the system parameters assigned to the buildings + :return: + """ + city = self._city + north_america_custom_catalog = EnergySystemsCatalogFactory('north_america').catalog + if city.energy_systems_connection_table is None: + _energy_systems_connection_table = DataFrame(columns=['Energy System Type', 'Building']) + else: + _energy_systems_connection_table = city.energy_systems_connection_table + if city.generic_energy_systems is None: + _generic_energy_systems = {} + else: + _generic_energy_systems = city.generic_energy_systems + for building in city.buildings: + archetype_name = building.energy_systems_archetype_name + try: + archetype = self._search_archetypes(north_america_custom_catalog, archetype_name) + except KeyError: + logging.error('Building %s has unknown energy system archetype for system name %s', building.name, + archetype_name) + continue + _energy_systems_connection_table, _generic_energy_systems = self._create_generic_systems( + archetype, + building, + _energy_systems_connection_table, + _generic_energy_systems + ) + city.energy_systems_connection_table = _energy_systems_connection_table + city.generic_energy_systems = _generic_energy_systems + + @staticmethod + def _search_archetypes(catalog, name): + archetypes = catalog.entries('archetypes') + for building_archetype in archetypes: + if str(name) == str(building_archetype.name): + return building_archetype + raise KeyError('archetype not found') + + @staticmethod + def _create_generic_systems(archetype, building, + _energy_systems_connection_table, _generic_energy_systems): + building_systems = [] + data = [archetype.name, building.name] + _energy_systems_connection_table.loc[len(_energy_systems_connection_table)] = data + for system in archetype.systems: + energy_system = GenericEnergySystem() + _hub_demand_types = [] + for demand_type in system.demand_types: + _hub_demand_types.append(Dictionaries().north_america_demand_type_to_hub_energy_demand_type[demand_type]) + energy_system.name = system.name + energy_system.demand_types = _hub_demand_types + _generation_system = GenericGenerationSystem() diff --git a/hub/imports/energy_systems_factory.py b/hub/imports/energy_systems_factory.py index ca4e7789..c059961c 100644 --- a/hub/imports/energy_systems_factory.py +++ b/hub/imports/energy_systems_factory.py @@ -33,6 +33,15 @@ class EnergySystemsFactory: for building in self._city.buildings: building.level_of_detail.energy_systems = 1 + def _north_america(self): + """ + Enrich the city by using north america custom energy systems catalog information + """ + MontrealCustomEnergySystemParameters(self._city).enrich_buildings() + self._city.level_of_detail.energy_systems = 2 + for building in self._city.buildings: + building.level_of_detail.energy_systems = 2 + def enrich(self): """ Enrich the city given to the class using the class given handler -- 2.39.2 From 8b66e20e9ae23d6e67bf630f0dd23e550d9ec249 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Wed, 27 Sep 2023 05:35:28 -0400 Subject: [PATCH 059/101] some refactoring --- hub/exports/building_energy/idf.py | 1 + ...ergy_plus_workflow.py => energy_plus_single_building.py} | 6 ++---- hub/imports/results_factory.py | 6 +++--- tests/test_results_import.py | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) rename hub/imports/results/{energy_plus_workflow.py => energy_plus_single_building.py} (94%) diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index 50f97849..63ea0b19 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -558,6 +558,7 @@ class Idf: self._add_lighting(thermal_zone, building.name) self._add_appliances(thermal_zone, building.name) self._add_dhw(thermal_zone, building.name) + # todo: @Guille: if export_type is not surfaces, we don't differentiate between shadows and buildings? if self._export_type == "Surfaces": if building.name in self._target_buildings or building.name in self._adjacent_buildings: if building.thermal_zones_from_internal_zones is not None: diff --git a/hub/imports/results/energy_plus_workflow.py b/hub/imports/results/energy_plus_single_building.py similarity index 94% rename from hub/imports/results/energy_plus_workflow.py rename to hub/imports/results/energy_plus_single_building.py index 627b3fd7..a5e0fd08 100644 --- a/hub/imports/results/energy_plus_workflow.py +++ b/hub/imports/results/energy_plus_single_building.py @@ -12,7 +12,7 @@ import csv import hub.helpers.constants as cte -class EnergyPlusWorkflow: +class EnergyPlusSingleBuilding: def __init__(self, city, base_path): self._city = city self._base_path = base_path @@ -59,7 +59,7 @@ class EnergyPlusWorkflow: total_cooling_demand += float(line[cooling_index]) building_energy_demands['Cooling (J)'].append(total_cooling_demand) for dhw_index in dhw_column_index: - total_dhw_demand += float(line[dhw_index]) * 3600 + total_dhw_demand += float(line[dhw_index]) * cte.WATTS_HOUR_TO_JULES building_energy_demands['DHW (J)'].append(total_dhw_demand) for appliance_index in appliance_column_index: total_appliance_demand += float(line[appliance_index]) @@ -85,8 +85,6 @@ class EnergyPlusWorkflow: building.domestic_hot_water_heat_demand[cte.HOUR] = building_energy_demands['DHW (J)'] building.appliances_electrical_demand[cte.HOUR] = building_energy_demands['Appliances (J)'] building.lighting_electrical_demand[cte.HOUR] = building_energy_demands['Lighting (J)'] - # todo: @Saeed, this a list of ONE value with the total energy of the year, exactly the same as cte.YEAR. - # You have to use the method to add hourly values from helpers/monthly_values building.heating_demand[cte.MONTH] = MonthlyValues.get_total_month(building.heating_demand[cte.HOUR]) building.cooling_demand[cte.MONTH] = MonthlyValues.get_total_month(building.cooling_demand[cte.HOUR]) building.domestic_hot_water_heat_demand[cte.MONTH] = ( diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py index fac60de3..480b5c64 100644 --- a/hub/imports/results_factory.py +++ b/hub/imports/results_factory.py @@ -10,7 +10,7 @@ from pathlib import Path from hub.helpers.utils import validate_import_export_type from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm -from hub.imports.results.energy_plus_workflow import EnergyPlusWorkflow +from hub.imports.results.energy_plus_single_building import EnergyPlusSingleBuilding class ResultFactory: """ @@ -46,11 +46,11 @@ class ResultFactory: """ InselMonthlyEnergyBalance(self._city, self._base_path).enrich() - def _energy_plus_workflow(self): + def _energy_plus_single_building(self): """ Enrich the city with energy plus results """ - EnergyPlusWorkflow(self._city, self._base_path).enrich() + EnergyPlusSingleBuilding(self._city, self._base_path).enrich() def enrich(self): """ diff --git a/tests/test_results_import.py b/tests/test_results_import.py index 8f4e0aed..b83418e6 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -94,7 +94,7 @@ class TestResultsImport(TestCase): self.assertIsNotNone(building.cooling_peak_load) def test_energy_plus_results_import(self): - ResultFactory('energy_plus_workflow', self._city, self._example_path).enrich() + ResultFactory('energy_plus_single_building', self._city, self._example_path).enrich() for building in self._city.buildings: csv_output_name = f'{building.name}_out.csv' csv_output_path = (self._example_path / csv_output_name).resolve() -- 2.39.2 From 3809cf2885706ad21fe60b066ccdf03b6381d303 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 27 Sep 2023 13:00:04 -0400 Subject: [PATCH 060/101] continued the work on importer --- ...america_custom_energy_system_parameters.py | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index e2d244f7..062c274a 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -84,3 +84,37 @@ class NorthAmericaCustomEnergySystemParameters: energy_system.name = system.name energy_system.demand_types = _hub_demand_types _generation_system = GenericGenerationSystem() + archetype_generation_equipment = system.generation_system + _type = system.name + _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ + _type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = archetype_generation_equipment.source_medium + _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency + _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency + _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency + _generation_system.source_temperature = archetype_generation_equipment.source_temperature + _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow + _generation_system.storage = archetype_generation_equipment.storage + _generation_system.auxiliary_equipment = None + + energy_system.generation_system = _generation_system + + _distribution_system = GenericDistributionSystem() + archetype_distribution_equipment = system.distribution_systems + _distribution_system.type = archetype_distribution_equipment.type + _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature + _distribution_system.distribution_consumption_fix_flow = \ + archetype_distribution_equipment.distribution_consumption_fix_flow + _distribution_system.distribution_consumption_variable_flow = \ + archetype_distribution_equipment.distribution_consumption_variable_flow + _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses + + energy_system.distribution_system = _distribution_system + + building_systems.append(energy_system) + if archetype.name not in _generic_energy_systems: + _generic_energy_systems[archetype.name] = building_systems + + return _energy_systems_connection_table, _generic_energy_systems -- 2.39.2 From 8dbbfb94600ac354193fbf0b63ecb35144638292 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 27 Sep 2023 17:48:23 -0400 Subject: [PATCH 061/101] finished creating generic generation system in the _create_generic_systems method in north_america_custom_energy_system_parameters.py --- .../generic_generation_system.py | 23 ------------ .../north_america_custom_fuel_to_hub_fuel.py | 28 +++++++++++++++ ..._system_to_hub_energy_generation_system.py | 33 +++++++++++++++++ hub/helpers/dictionaries.py | 30 ++++++++++++---- ...america_custom_energy_system_parameters.py | 36 +++++++++++-------- 5 files changed, 105 insertions(+), 45 deletions(-) create mode 100644 hub/helpers/data/north_america_custom_fuel_to_hub_fuel.py create mode 100644 hub/helpers/data/north_america_system_to_hub_energy_generation_system.py diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py index f068eba9..32cefdd0 100644 --- a/hub/city_model_structure/energy_systems/generic_generation_system.py +++ b/hub/city_model_structure/energy_systems/generic_generation_system.py @@ -26,7 +26,6 @@ class GenericGenerationSystem: self._source_mass_flow = None self._storage = None self._auxiliary_equipment = None - self._source_medium = None self._supply_medium = None self._maximum_heat_supply_temperature = None self._minimum_heat_supply_temperature = None @@ -38,12 +37,6 @@ class GenericGenerationSystem: self._cooling_output_curve = None self._cooling_fuel_consumption_curve = None self._cooling_efficiency_curve = None - self._heat_output_curve = None - self._heat_fuel_consumption_curve = None - self._heat_efficiency_curve = None - self._cooling_output_curve = None - self._cooling_fuel_consumption_curve = None - self._cooling_efficiency_curve = None @property def type(self): @@ -205,22 +198,6 @@ class GenericGenerationSystem: """ self._auxiliary_equipment = value - @property - def source_medium(self): - """ - Get the source medium [air, water, ground, district_heating, grid, on_site_electricity] - :return: string - """ - return self._source_medium - - @source_medium.setter - def source_medium(self, value): - """ - Set the source medium [air, water, ground, district_heating, grid, on_site_electricity] - :param value: string - """ - self._source_medium = value - @property def supply_medium(self): """ diff --git a/hub/helpers/data/north_america_custom_fuel_to_hub_fuel.py b/hub/helpers/data/north_america_custom_fuel_to_hub_fuel.py new file mode 100644 index 00000000..20af3369 --- /dev/null +++ b/hub/helpers/data/north_america_custom_fuel_to_hub_fuel.py @@ -0,0 +1,28 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" +import hub.helpers.constants as cte + + +class NorthAmericaCustomFuelToHubFuel: + """ + Montreal custom fuel to hub fuel class + """ + def __init__(self): + self._dictionary = { + 'natural gas': cte.GAS, + 'electricity': cte.ELECTRICITY, + 'renewable': cte.RENEWABLE + } + + @property + def dictionary(self) -> dict: + """ + Get the dictionary + :return: {} + """ + return self._dictionary diff --git a/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py b/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py new file mode 100644 index 00000000..56ff51fd --- /dev/null +++ b/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py @@ -0,0 +1,33 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +import hub.helpers.constants as cte + + +class NorthAmericaSystemToHubEnergyGenerationSystem: + """ + Montreal's system to hub energy generation system class + """ + def __init__(self): + self._dictionary = { + 'Air Source Heat Pump with Natural Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], + 'Air Source Heat Pump with Electrical Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], + 'Ground Source Heat Pump with Natural Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], + 'Ground Source Heat Pump with Electrical Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], + 'Water Source Heat Pump with Natural Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], + 'Water Source Heat Pump with Electrical Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], + 'Photovoltaic system': cte.PHOTOVOLTAIC, + } + + @property + def dictionary(self) -> dict: + """ + Get the dictionary + :return: {} + """ + return self._dictionary diff --git a/hub/helpers/dictionaries.py b/hub/helpers/dictionaries.py index efeddd4b..582dd682 100644 --- a/hub/helpers/dictionaries.py +++ b/hub/helpers/dictionaries.py @@ -22,6 +22,8 @@ from hub.helpers.data.montreal_system_to_hub_energy_generation_system import Mon from hub.helpers.data.montreal_demand_type_to_hub_energy_demand_type import MontrealDemandTypeToHubEnergyDemandType from hub.helpers.data.hub_function_to_montreal_custom_costs_function import HubFunctionToMontrealCustomCostsFunction from hub.helpers.data.north_america_demand_type_to_hub_energy_demand_type import NorthAmericaDemandTypeToHubEnergyDemandType +from hub.helpers.data.north_america_system_to_hub_energy_generation_system import NorthAmericaSystemToHubEnergyGenerationSystem +from hub.helpers.data.north_america_custom_fuel_to_hub_fuel import NorthAmericaCustomFuelToHubFuel class Dictionaries: @@ -129,13 +131,6 @@ class Dictionaries: """ return MontrealDemandTypeToHubEnergyDemandType().dictionary - @property - def north_america_demand_type_to_hub_energy_demand_type(self): - """ - Get montreal custom system demand type to hub energy demand type, transformation dictionary - """ - return NorthAmericaDemandTypeToHubEnergyDemandType().dictionary - @property def hub_function_to_montreal_custom_costs_function(self) -> dict: """ @@ -157,3 +152,24 @@ class Dictionaries: Get hub fuel from montreal_custom catalog fuel """ return MontrealCustomFuelToHubFuel().dictionary + + @property + def north_america_demand_type_to_hub_energy_demand_type(self): + """ + Get montreal custom system demand type to hub energy demand type, transformation dictionary + """ + return NorthAmericaDemandTypeToHubEnergyDemandType().dictionary + + @property + def north_america_system_to_hub_energy_generation_system(self): + """ + Get montreal custom system names to hub energy system names, transformation dictionary + """ + return NorthAmericaSystemToHubEnergyGenerationSystem().dictionary + + @property + def north_america_custom_fuel_to_hub_fuel(self) -> dict: + """ + Get hub fuel from montreal_custom catalog fuel + """ + return NorthAmericaCustomFuelToHubFuel().dictionary diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 062c274a..492877d2 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -12,7 +12,6 @@ import copy from pandas import DataFrame from hub.catalog_factories.energy_systems_catalog_factory import EnergySystemsCatalogFactory -from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem from hub.city_model_structure.energy_systems.energy_system import EnergySystem @@ -20,6 +19,7 @@ from hub.city_model_structure.energy_systems.generation_system import Generation from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.helpers.dictionaries import Dictionaries +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem class NorthAmericaCustomEnergySystemParameters: @@ -84,11 +84,10 @@ class NorthAmericaCustomEnergySystemParameters: energy_system.name = system.name energy_system.demand_types = _hub_demand_types _generation_system = GenericGenerationSystem() - archetype_generation_equipment = system.generation_system + archetype_generation_equipment = system.generation_systems _type = system.name - _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ - _type] - _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] + _generation_system.type = Dictionaries().north_america_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().north_america_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] _generation_system.fuel_type = _fuel_type _generation_system.source_types = archetype_generation_equipment.source_medium _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency @@ -98,20 +97,27 @@ class NorthAmericaCustomEnergySystemParameters: _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow _generation_system.storage = archetype_generation_equipment.storage _generation_system.auxiliary_equipment = None + _generation_system._supply_medium = archetype_generation_equipment.supply_medium + _generation_system._maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature + _generation_system._minimum_heat_supply_temperature = archetype_generation_equipment.minimum_heat_supply_temperature + _generation_system._maximum_cooling_supply_temperature = archetype_generation_equipment.maximum_cooling_supply_temperature + _generation_system._minimum_cooling_supply_temperature = archetype_generation_equipment.minimum_cooling_supply_temperature + _generation_system._heat_output_curve = archetype_generation_equipment.heat_output_curve + _generation_system._heat_fuel_consumption_curve = archetype_generation_equipment.heat_fuel_consumption_curve + _generation_system._heat_efficiency_curve = archetype_generation_equipment.heat_efficiency_curve + _generation_system._cooling_output_curve = archetype_generation_equipment.cooling_output_curve + _generation_system._cooling_fuel_consumption_curve = archetype_generation_equipment.cooling_fuel_consumption_curve + _generation_system._cooling_efficiency_curve = archetype_generation_equipment.cooling_efficiency_curve energy_system.generation_system = _generation_system - _distribution_system = GenericDistributionSystem() - archetype_distribution_equipment = system.distribution_systems - _distribution_system.type = archetype_distribution_equipment.type - _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature - _distribution_system.distribution_consumption_fix_flow = \ - archetype_distribution_equipment.distribution_consumption_fix_flow - _distribution_system.distribution_consumption_variable_flow = \ - archetype_distribution_equipment.distribution_consumption_variable_flow - _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses + _energy_storage_system = GenericStorageSystem() + archetype_storage_equipment = system.energy_storage_systems + + + + - energy_system.distribution_system = _distribution_system building_systems.append(energy_system) if archetype.name not in _generic_energy_systems: -- 2.39.2 From eaa3064a3fe9c4c6dc3f42b44a9deebfad3f66bd Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 28 Sep 2023 19:19:32 -0400 Subject: [PATCH 062/101] continued working on energy system importer --- hub/helpers/constants.py | 5 +++ ...h_america_storage_system_to_hub_storage.py | 32 +++++++++++++++++++ hub/helpers/dictionaries.py | 14 ++++++-- ...america_custom_energy_system_parameters.py | 15 +++++---- 4 files changed, 56 insertions(+), 10 deletions(-) create mode 100644 hub/helpers/data/north_america_storage_system_to_hub_storage.py diff --git a/hub/helpers/constants.py b/hub/helpers/constants.py index 7cd6151e..586a3a79 100644 --- a/hub/helpers/constants.py +++ b/hub/helpers/constants.py @@ -199,6 +199,11 @@ BOILER = 'Boiler' HEAT_PUMP = 'Heat Pump' BASEBOARD = 'Baseboard' CHILLER = 'Chiller' +SENSIBLE = 'Sensible' +LATENT = 'Latent' +LITHIUMION = 'Lithium Ion' +NICD = 'NiCd' +LEADACID = 'Lead Acid' # Geometry EPSILON = 0.0000001 diff --git a/hub/helpers/data/north_america_storage_system_to_hub_storage.py b/hub/helpers/data/north_america_storage_system_to_hub_storage.py new file mode 100644 index 00000000..1a947b8d --- /dev/null +++ b/hub/helpers/data/north_america_storage_system_to_hub_storage.py @@ -0,0 +1,32 @@ +""" +Energy System catalog heat generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +import hub.helpers.constants as cte + + +class NorthAmericaStorageSystemToHubEnergyStorage: + """ + Montreal's system to hub energy generation system class + """ + def __init__(self): + self._dictionary = { + 'Air Source Heat Pump with Natural Gas Boiler and thermal storage': cte.SENSIBLE, + 'Air Source Heat Pump with Electrical Boiler and thermal storage': cte.SENSIBLE, + 'Ground Source Heat Pump with Natural Gas Boiler and thermal storage': cte.SENSIBLE, + 'Ground Source Heat Pump with Electrical Gas Boiler and thermal storage': cte.SENSIBLE, + 'Water Source Heat Pump with Natural Gas Boiler and thermal storage': cte.SENSIBLE, + 'Water Source Heat Pump with Electrical Gas Boiler and thermal storage': cte.SENSIBLE, + } + + @property + def dictionary(self) -> dict: + """ + Get the dictionary + :return: {} + """ + return self._dictionary diff --git a/hub/helpers/dictionaries.py b/hub/helpers/dictionaries.py index 582dd682..561d375e 100644 --- a/hub/helpers/dictionaries.py +++ b/hub/helpers/dictionaries.py @@ -24,6 +24,7 @@ from hub.helpers.data.hub_function_to_montreal_custom_costs_function import HubF from hub.helpers.data.north_america_demand_type_to_hub_energy_demand_type import NorthAmericaDemandTypeToHubEnergyDemandType from hub.helpers.data.north_america_system_to_hub_energy_generation_system import NorthAmericaSystemToHubEnergyGenerationSystem from hub.helpers.data.north_america_custom_fuel_to_hub_fuel import NorthAmericaCustomFuelToHubFuel +from hub.helpers.data.north_america_storage_system_to_hub_storage import NorthAmericaStorageSystemToHubEnergyStorage class Dictionaries: @@ -156,20 +157,27 @@ class Dictionaries: @property def north_america_demand_type_to_hub_energy_demand_type(self): """ - Get montreal custom system demand type to hub energy demand type, transformation dictionary + Get north america system demand type to hub energy demand type, transformation dictionary """ return NorthAmericaDemandTypeToHubEnergyDemandType().dictionary @property def north_america_system_to_hub_energy_generation_system(self): """ - Get montreal custom system names to hub energy system names, transformation dictionary + Get north america system names to hub energy system names, transformation dictionary """ return NorthAmericaSystemToHubEnergyGenerationSystem().dictionary @property def north_america_custom_fuel_to_hub_fuel(self) -> dict: """ - Get hub fuel from montreal_custom catalog fuel + Get hub fuel from north_america catalog fuel """ return NorthAmericaCustomFuelToHubFuel().dictionary + + @property + def north_america_storage_system_to_hub_storage(self): + """ + Get montreal custom system names to hub storage system + """ + return NorthAmericaStorageSystemToHubEnergyStorage().dictionary diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 492877d2..13a70928 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -20,6 +20,7 @@ from hub.city_model_structure.energy_systems.distribution_system import Distribu from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.helpers.dictionaries import Dictionaries from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem +from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem class NorthAmericaCustomEnergySystemParameters: @@ -95,7 +96,7 @@ class NorthAmericaCustomEnergySystemParameters: _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency _generation_system.source_temperature = archetype_generation_equipment.source_temperature _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow - _generation_system.storage = archetype_generation_equipment.storage + _generation_system.storage = None _generation_system.auxiliary_equipment = None _generation_system._supply_medium = archetype_generation_equipment.supply_medium _generation_system._maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature @@ -111,13 +112,13 @@ class NorthAmericaCustomEnergySystemParameters: energy_system.generation_system = _generation_system - _energy_storage_system = GenericStorageSystem() + _thermal_storage_system = ThermalStorageSystem() archetype_storage_equipment = system.energy_storage_systems - - - - - + _thermal_storage_system.generic_storage_system.storage_type = Dictionaries().north_america_storage_system_to_hub_storage[archetype_storage_equipment.storage_type] + _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature + _thermal_storage_system.height = archetype_storage_equipment.height + _thermal_storage_system.layers = archetype_storage_equipment.layers + energy_system.energy_storage_system = _thermal_storage_system building_systems.append(energy_system) if archetype.name not in _generic_energy_systems: -- 2.39.2 From b914c9e7bf84d71bdc6602a4662c06b07d44d8ac Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 2 Oct 2023 12:39:30 -0400 Subject: [PATCH 063/101] made final changes to north_america_custom_energy_system_parameters.py --- ...america_custom_energy_system_parameters.py | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 13a70928..43d339a9 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -63,6 +63,8 @@ class NorthAmericaCustomEnergySystemParameters: city.energy_systems_connection_table = _energy_systems_connection_table city.generic_energy_systems = _generic_energy_systems + self._associate_energy_systems(city) + @staticmethod def _search_archetypes(catalog, name): archetypes = catalog.entries('archetypes') @@ -125,3 +127,40 @@ class NorthAmericaCustomEnergySystemParameters: _generic_energy_systems[archetype.name] = building_systems return _energy_systems_connection_table, _generic_energy_systems + + @staticmethod + def _associate_energy_systems(city): + energy_systems_connection = city.energy_systems_connection_table + for building in city.buildings: + _building_energy_systems = [] + energy_systems = energy_systems_connection['Energy System Type'][ + energy_systems_connection['Building'] == building.name] + for energy_system in energy_systems: + if str(energy_system) == 'nan': + break + _generic_building_energy_systems = city.generic_energy_systems[energy_system] + for _generic_building_energy_system in _generic_building_energy_systems: + _building_energy_equipment = EnergySystem() + _building_energy_equipment.name = _generic_building_energy_system.name + _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types + + _building_distribution_system = DistributionSystem() + _building_distribution_system.generic_distribution_system = \ + copy.deepcopy(_generic_building_energy_system.distribution_systems) + _building_emission_system = EmissionSystem() + _building_emission_system.generic_emission_system = \ + copy.deepcopy(_generic_building_energy_system.emission_systems) + _building_generation_system = GenerationSystem() + _building_generation_system.generic_generation_system = \ + copy.deepcopy(_generic_building_energy_system.generation_system) + _building_storage_system = ThermalStorageSystem() + _building_storage_system.generic_storage_system = \ + copy.deepcopy(_generic_building_energy_system.storage_system) + + _building_energy_equipment.generation_system = _building_generation_system + _building_energy_equipment.distribution_system = _building_distribution_system + _building_energy_equipment.emission_system = _building_emission_system + _building_energy_equipment.energy_storage_system = _building_storage_system + + _building_energy_systems.append(_building_energy_equipment) + building.energy_systems = _building_energy_systems -- 2.39.2 From fac6844da119581802ad67ea04c3b634ee27a441 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 2 Oct 2023 13:19:58 -0400 Subject: [PATCH 064/101] started working on the test --- tests/test_systems_factory.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 9044ad18..8f4b9715 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -24,7 +24,7 @@ from hub.city_model_structure.energy_systems.energy_system import EnergySystem from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem from hub.city_model_structure.energy_systems.emission_system import EmissionSystem - +from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem class TestSystemsFactory(TestCase): """ @@ -116,3 +116,13 @@ class TestSystemsFactory(TestCase): self.assertLess(0, building.cooling_consumption[cte.YEAR][0]) self.assertLess(0, building.domestic_hot_water_consumption[cte.YEAR][0]) self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) + + def test_north_america_custom_system_factory(self): + """ + Enrich the city with the construction information and verify it + """ + for building in self._city.buildings: + building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' + + EnergySystemsFactory('north_america', self._city).enrich() + self.assertEqual(17, len(self._city.energy_systems_connection_table)) \ No newline at end of file -- 2.39.2 From 087384475f51a3279cbf96248e200da8784a837d Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 3 Oct 2023 09:40:32 -0400 Subject: [PATCH 065/101] changing from generation system to generation systemS in system importer north america --- ...america_custom_energy_system_parameters.py | 55 ++++++++++--------- hub/imports/energy_systems_factory.py | 3 +- 2 files changed, 31 insertions(+), 27 deletions(-) diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 43d339a9..72e60fcf 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -86,33 +86,36 @@ class NorthAmericaCustomEnergySystemParameters: _hub_demand_types.append(Dictionaries().north_america_demand_type_to_hub_energy_demand_type[demand_type]) energy_system.name = system.name energy_system.demand_types = _hub_demand_types - _generation_system = GenericGenerationSystem() - archetype_generation_equipment = system.generation_systems - _type = system.name - _generation_system.type = Dictionaries().north_america_system_to_hub_energy_generation_system[_type] - _fuel_type = Dictionaries().north_america_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.source_types = archetype_generation_equipment.source_medium - _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency - _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency - _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency - _generation_system.source_temperature = archetype_generation_equipment.source_temperature - _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow - _generation_system.storage = None - _generation_system.auxiliary_equipment = None - _generation_system._supply_medium = archetype_generation_equipment.supply_medium - _generation_system._maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature - _generation_system._minimum_heat_supply_temperature = archetype_generation_equipment.minimum_heat_supply_temperature - _generation_system._maximum_cooling_supply_temperature = archetype_generation_equipment.maximum_cooling_supply_temperature - _generation_system._minimum_cooling_supply_temperature = archetype_generation_equipment.minimum_cooling_supply_temperature - _generation_system._heat_output_curve = archetype_generation_equipment.heat_output_curve - _generation_system._heat_fuel_consumption_curve = archetype_generation_equipment.heat_fuel_consumption_curve - _generation_system._heat_efficiency_curve = archetype_generation_equipment.heat_efficiency_curve - _generation_system._cooling_output_curve = archetype_generation_equipment.cooling_output_curve - _generation_system._cooling_fuel_consumption_curve = archetype_generation_equipment.cooling_fuel_consumption_curve - _generation_system._cooling_efficiency_curve = archetype_generation_equipment.cooling_efficiency_curve + archetype_generation_equipments = system.generation_systems + _generation_systems = [] + for archetype_generation_equipment in archetype_generation_equipments: + _generation_system = GenericGenerationSystem() + _type = archetype_generation_equipment.name + _generation_system.type = Dictionaries().north_america_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().north_america_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = archetype_generation_equipment.source_medium + _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency + _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency + _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency + _generation_system.source_temperature = archetype_generation_equipment.source_temperature + _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow + _generation_system.storage = None + _generation_system.auxiliary_equipment = None + _generation_system._supply_medium = archetype_generation_equipment.supply_medium + _generation_system._maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature + _generation_system._minimum_heat_supply_temperature = archetype_generation_equipment.minimum_heat_supply_temperature + _generation_system._maximum_cooling_supply_temperature = archetype_generation_equipment.maximum_cooling_supply_temperature + _generation_system._minimum_cooling_supply_temperature = archetype_generation_equipment.minimum_cooling_supply_temperature + _generation_system._heat_output_curve = archetype_generation_equipment.heat_output_curve + _generation_system._heat_fuel_consumption_curve = archetype_generation_equipment.heat_fuel_consumption_curve + _generation_system._heat_efficiency_curve = archetype_generation_equipment.heat_efficiency_curve + _generation_system._cooling_output_curve = archetype_generation_equipment.cooling_output_curve + _generation_system._cooling_fuel_consumption_curve = archetype_generation_equipment.cooling_fuel_consumption_curve + _generation_system._cooling_efficiency_curve = archetype_generation_equipment.cooling_efficiency_curve + _generation_systems.append(_generation_system) - energy_system.generation_system = _generation_system + energy_system.generation_systems = _generation_systems _thermal_storage_system = ThermalStorageSystem() archetype_storage_equipment = system.energy_storage_systems diff --git a/hub/imports/energy_systems_factory.py b/hub/imports/energy_systems_factory.py index c059961c..3c4bccef 100644 --- a/hub/imports/energy_systems_factory.py +++ b/hub/imports/energy_systems_factory.py @@ -9,6 +9,7 @@ from pathlib import Path from hub.helpers.utils import validate_import_export_type from hub.imports.energy_systems.montreal_custom_energy_system_parameters import MontrealCustomEnergySystemParameters +from hub.imports.energy_systems.north_america_custom_energy_system_parameters import NorthAmericaCustomEnergySystemParameters class EnergySystemsFactory: @@ -37,7 +38,7 @@ class EnergySystemsFactory: """ Enrich the city by using north america custom energy systems catalog information """ - MontrealCustomEnergySystemParameters(self._city).enrich_buildings() + NorthAmericaCustomEnergySystemParameters(self._city).enrich_buildings() self._city.level_of_detail.energy_systems = 2 for building in self._city.buildings: building.level_of_detail.energy_systems = 2 -- 2.39.2 From 23a8fbe86dfe7732bde98e43f9299c906527b634 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 3 Oct 2023 13:07:20 -0400 Subject: [PATCH 066/101] continued working on the importer --- hub/data/energy_systems/north_america_systems.xml | 6 +++--- hub/helpers/constants.py | 2 +- .../north_america_storage_system_to_hub_storage.py | 7 +------ ...erica_system_to_hub_energy_generation_system.py | 14 +++++++------- ...orth_america_custom_energy_system_parameters.py | 11 ++++++----- 5 files changed, 18 insertions(+), 22 deletions(-) diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 285f9de7..36cee745 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -43,9 +43,9 @@ - - - + + + diff --git a/hub/helpers/constants.py b/hub/helpers/constants.py index 586a3a79..1fc51890 100644 --- a/hub/helpers/constants.py +++ b/hub/helpers/constants.py @@ -199,7 +199,7 @@ BOILER = 'Boiler' HEAT_PUMP = 'Heat Pump' BASEBOARD = 'Baseboard' CHILLER = 'Chiller' -SENSIBLE = 'Sensible' +SENSIBLE = 'sensible' LATENT = 'Latent' LITHIUMION = 'Lithium Ion' NICD = 'NiCd' diff --git a/hub/helpers/data/north_america_storage_system_to_hub_storage.py b/hub/helpers/data/north_america_storage_system_to_hub_storage.py index 1a947b8d..fbdebd1e 100644 --- a/hub/helpers/data/north_america_storage_system_to_hub_storage.py +++ b/hub/helpers/data/north_america_storage_system_to_hub_storage.py @@ -15,12 +15,7 @@ class NorthAmericaStorageSystemToHubEnergyStorage: """ def __init__(self): self._dictionary = { - 'Air Source Heat Pump with Natural Gas Boiler and thermal storage': cte.SENSIBLE, - 'Air Source Heat Pump with Electrical Boiler and thermal storage': cte.SENSIBLE, - 'Ground Source Heat Pump with Natural Gas Boiler and thermal storage': cte.SENSIBLE, - 'Ground Source Heat Pump with Electrical Gas Boiler and thermal storage': cte.SENSIBLE, - 'Water Source Heat Pump with Natural Gas Boiler and thermal storage': cte.SENSIBLE, - 'Water Source Heat Pump with Electrical Gas Boiler and thermal storage': cte.SENSIBLE, + 'template Hot Water Storage Tank': cte.SENSIBLE, } @property diff --git a/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py b/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py index 56ff51fd..d7a19943 100644 --- a/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py +++ b/hub/helpers/data/north_america_system_to_hub_energy_generation_system.py @@ -15,13 +15,13 @@ class NorthAmericaSystemToHubEnergyGenerationSystem: """ def __init__(self): self._dictionary = { - 'Air Source Heat Pump with Natural Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], - 'Air Source Heat Pump with Electrical Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], - 'Ground Source Heat Pump with Natural Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], - 'Ground Source Heat Pump with Electrical Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], - 'Water Source Heat Pump with Natural Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], - 'Water Source Heat Pump with Electrical Gas Boiler and thermal storage': [cte.HEAT_PUMP, cte.BOILER], - 'Photovoltaic system': cte.PHOTOVOLTAIC, + 'template Natural-Gas Boiler': cte.BOILER, + 'template Electric Boiler': cte.BOILER, + 'template Air-to-Water Heat Pump': cte.HEAT_PUMP, + 'template Groundwater-to-Water Heat Pump': cte.HEAT_PUMP, + 'template Water-to-Water Heat Pump': cte.HEAT_PUMP, + 'template Photovoltaic Module': cte.PHOTOVOLTAIC, + 'e': cte.HEATING, } @property diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 72e60fcf..c1770c87 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -118,11 +118,12 @@ class NorthAmericaCustomEnergySystemParameters: energy_system.generation_systems = _generation_systems _thermal_storage_system = ThermalStorageSystem() - archetype_storage_equipment = system.energy_storage_systems - _thermal_storage_system.generic_storage_system.storage_type = Dictionaries().north_america_storage_system_to_hub_storage[archetype_storage_equipment.storage_type] - _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature - _thermal_storage_system.height = archetype_storage_equipment.height - _thermal_storage_system.layers = archetype_storage_equipment.layers + archetype_storage_equipments = system.energy_storage_systems + for archetype_storage_equipment in archetype_storage_equipments: + _type = archetype_storage_equipment.name + _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature + _thermal_storage_system.height = archetype_storage_equipment.height + _thermal_storage_system.layers = archetype_storage_equipment.layers energy_system.energy_storage_system = _thermal_storage_system building_systems.append(energy_system) -- 2.39.2 From f0ad1462d0d9c7da6474151011610a7f86f23ef5 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 3 Oct 2023 17:50:17 -0400 Subject: [PATCH 067/101] finished the first part of the test. --- ...america_custom_energy_system_parameters.py | 22 ++++--- tests/test_systems_factory.py | 63 ++++++++++++++++++- 2 files changed, 75 insertions(+), 10 deletions(-) diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index c1770c87..f5360568 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -82,7 +82,10 @@ class NorthAmericaCustomEnergySystemParameters: for system in archetype.systems: energy_system = GenericEnergySystem() _hub_demand_types = [] - for demand_type in system.demand_types: + demand_types = system.demand_types + if type(demand_types) == str: + demand_types = [demand_types] + for demand_type in demand_types: _hub_demand_types.append(Dictionaries().north_america_demand_type_to_hub_energy_demand_type[demand_type]) energy_system.name = system.name energy_system.demand_types = _hub_demand_types @@ -119,11 +122,11 @@ class NorthAmericaCustomEnergySystemParameters: _thermal_storage_system = ThermalStorageSystem() archetype_storage_equipments = system.energy_storage_systems - for archetype_storage_equipment in archetype_storage_equipments: - _type = archetype_storage_equipment.name - _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature - _thermal_storage_system.height = archetype_storage_equipment.height - _thermal_storage_system.layers = archetype_storage_equipment.layers + if archetype_storage_equipments is not None: + for archetype_storage_equipment in archetype_storage_equipments: + _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature + _thermal_storage_system.height = archetype_storage_equipment.height + _thermal_storage_system.layers = archetype_storage_equipment.layers energy_system.energy_storage_system = _thermal_storage_system building_systems.append(energy_system) @@ -139,6 +142,7 @@ class NorthAmericaCustomEnergySystemParameters: _building_energy_systems = [] energy_systems = energy_systems_connection['Energy System Type'][ energy_systems_connection['Building'] == building.name] + print(energy_systems) for energy_system in energy_systems: if str(energy_system) == 'nan': break @@ -150,16 +154,16 @@ class NorthAmericaCustomEnergySystemParameters: _building_distribution_system = DistributionSystem() _building_distribution_system.generic_distribution_system = \ - copy.deepcopy(_generic_building_energy_system.distribution_systems) + copy.deepcopy(_generic_building_energy_system.distribution_system) _building_emission_system = EmissionSystem() _building_emission_system.generic_emission_system = \ - copy.deepcopy(_generic_building_energy_system.emission_systems) + copy.deepcopy(_generic_building_energy_system.emission_system) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = \ copy.deepcopy(_generic_building_energy_system.generation_system) _building_storage_system = ThermalStorageSystem() _building_storage_system.generic_storage_system = \ - copy.deepcopy(_generic_building_energy_system.storage_system) + copy.deepcopy(_generic_building_energy_system.energy_storage_system) _building_energy_equipment.generation_system = _building_generation_system _building_energy_equipment.distribution_system = _building_distribution_system diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 8f4b9715..92625adf 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -125,4 +125,65 @@ class TestSystemsFactory(TestCase): building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' EnergySystemsFactory('north_america', self._city).enrich() - self.assertEqual(17, len(self._city.energy_systems_connection_table)) \ No newline at end of file + self.assertEqual(17, len(self._city.energy_systems_connection_table)) + + def test_north_america_custom_system_results(self): + """ + Enrich the city with the construction information and verify it + """ + ConstructionFactory('nrcan', self._city).enrich() + UsageFactory('nrcan', self._city).enrich() + WeatherFactory('epw', self._city).enrich() + ExportsFactory('sra', self._city, self._output_path).export() + sra_path = (self._output_path / f'{self._city.name}_sra.xml').resolve() + subprocess.run(['sra', str(sra_path)]) + ResultFactory('sra', self._city, self._output_path).enrich() + EnergyBuildingsExportsFactory('insel_monthly_energy_balance', self._city, self._output_path).export() + for building in self._city.buildings: + insel_path = (self._output_path / f'{building.name}.insel') + subprocess.run(['insel', str(insel_path)]) + ResultFactory('insel_monthly_energy_balance', self._city, self._output_path).enrich() + + for building in self._city.buildings: + building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' + EnergySystemsFactory('north_america', self._city).enrich() + # Need to assign energy systems to buildings: + energy_systems_connection = self._city.energy_systems_connection_table + for building in self._city.buildings: + _building_energy_systems = [] + energy_systems = energy_systems_connection['Energy System Type'][ + energy_systems_connection['Building'] == building.name] + for energy_system in energy_systems: + _generic_building_energy_systems = self._city.generic_energy_systems[energy_system] + for _generic_building_energy_system in _generic_building_energy_systems: + _building_energy_equipment = EnergySystem() + _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types + + _building_distribution_system = DistributionSystem() + _building_distribution_system.generic_distribution_system = ( + copy.deepcopy(_generic_building_energy_system.distribution_systems) + ) + _building_emission_system = EmissionSystem() + _building_emission_system.generic_emission_system = ( + copy.deepcopy(_generic_building_energy_system.emission_systems) + ) + _building_generation_system = GenerationSystem() + _building_generation_system.generic_generation_system = ( + copy.deepcopy(_generic_building_energy_system.generation_system) + ) + if cte.HEATING in _building_energy_equipment.demand_types: + _building_generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] + if cte.COOLING in _building_energy_equipment.demand_types: + _building_generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] + _building_energy_equipment.generation_system = _building_generation_system + _building_energy_equipment.distribution_system = _building_distribution_system + _building_energy_equipment.emission_system = _building_emission_system + + _building_energy_systems.append(_building_energy_equipment) + building.energy_systems = _building_energy_systems + + for building in self._city.buildings: + self.assertLess(0, building.heating_consumption[cte.YEAR][0]) + self.assertLess(0, building.cooling_consumption[cte.YEAR][0]) + self.assertLess(0, building.domestic_hot_water_consumption[cte.YEAR][0]) + self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) \ No newline at end of file -- 2.39.2 From cbda6ce13d90f50ca01b9a391a3b131399beee2a Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 4 Oct 2023 17:07:19 -0400 Subject: [PATCH 068/101] Tried to modify the test_systems_factory.py but received an error saying GenerationSystem object is not iterable --- hub/city_model_structure/building.py | 11 +++++++---- tests/test_systems_factory.py | 8 ++++++-- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index 8d8b5ea3..2ef73469 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -744,15 +744,18 @@ class Building(CityObject): if self.energy_systems is None: return None for energy_system in self.energy_systems: + generation_systems = energy_system.generation_system for demand_type in energy_system.demand_types: if demand_type.lower() == consumption_type.lower(): if consumption_type in (cte.HEATING, cte.DOMESTIC_HOT_WATER): - coefficient_of_performance = energy_system.generation_system.generic_generation_system.heat_efficiency + for generation_system in generation_systems: + coefficient_of_performance = generation_system.generic_generation_system.heat_efficiency elif consumption_type == cte.COOLING: - coefficient_of_performance = energy_system.generation_system.generic_generation_system.cooling_efficiency + for generation_system in generation_systems: + coefficient_of_performance = generation_system.generic_generation_system.cooling_efficiency elif consumption_type == cte.ELECTRICITY: - coefficient_of_performance = \ - energy_system.generation_system.generic_generation_system.electricity_efficiency + for generation_system in generation_systems: + coefficient_of_performance = generation_system.generic_generation_system.electricity_efficiency if coefficient_of_performance == 0: values = [0]*len(demand) final_energy_consumed = values diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 92625adf..4dd70998 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -161,16 +161,20 @@ class TestSystemsFactory(TestCase): _building_distribution_system = DistributionSystem() _building_distribution_system.generic_distribution_system = ( - copy.deepcopy(_generic_building_energy_system.distribution_systems) + copy.deepcopy(_generic_building_energy_system.distribution_system) ) _building_emission_system = EmissionSystem() _building_emission_system.generic_emission_system = ( - copy.deepcopy(_generic_building_energy_system.emission_systems) + copy.deepcopy(_generic_building_energy_system.emission_system) ) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = ( copy.deepcopy(_generic_building_energy_system.generation_system) ) + _building_storage_system = ThermalStorageSystem() + _building_storage_system.generic_storage_system = \ + copy.deepcopy(_generic_building_energy_system.energy_storage_system) + if cte.HEATING in _building_energy_equipment.demand_types: _building_generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] if cte.COOLING in _building_energy_equipment.demand_types: -- 2.39.2 From f2bfc297b38601da8373858419e78aeca35cb45d Mon Sep 17 00:00:00 2001 From: guille Date: Thu, 5 Oct 2023 11:30:20 +0200 Subject: [PATCH 069/101] Basic style correction and missing docstrings --- .../data_models/energy_systems/archetype.py | 14 +++---- .../energy_systems/montreal_custom_catalog.py | 7 ++-- .../north_america_energy_system_catalog.py | 9 +++-- hub/city_model_structure/building.py | 2 +- .../building_demand/thermal_zone.py | 2 +- .../electrical_storage_system.py | 6 +-- .../energy_systems/generic_storage_system.py | 4 +- .../energy_systems/performance_curve.py | 2 - hub/exports/formats/obj.py | 2 - .../construction/eilat_physics_parameters.py | 2 +- .../construction/nrcan_physics_parameters.py | 4 +- .../construction/nrel_physics_parameters.py | 2 +- ...america_custom_energy_system_parameters.py | 37 +++++++++---------- ...energy_plus_workflow.py => energy_plus.py} | 7 +++- hub/imports/results_factory.py | 2 +- hub/persistence/repositories/city_object.py | 2 +- 16 files changed, 52 insertions(+), 52 deletions(-) rename hub/imports/results/{energy_plus_workflow.py => energy_plus.py} (99%) diff --git a/hub/catalog_factories/data_models/energy_systems/archetype.py b/hub/catalog_factories/data_models/energy_systems/archetype.py index 7f43c5dc..4834b8cc 100644 --- a/hub/catalog_factories/data_models/energy_systems/archetype.py +++ b/hub/catalog_factories/data_models/energy_systems/archetype.py @@ -50,11 +50,11 @@ class Archetype: _systems = [] for _system in self.systems: _systems.append(_system.to_dictionary()) - content = {'Archetype': {'name': self.name, - 'level of detail': self.lod, - 'systems': _systems - } - } + content = { + 'Archetype': { + 'name': self.name, + 'level of detail': self.lod, + 'systems': _systems + } + } return content - - diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index b2df20c2..ee88b19c 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -30,9 +30,7 @@ class MontrealCustomCatalog(Catalog): 'demand', 'system_id')) self._lod = float(self._archetypes['catalog']['@lod']) - - self._catalog_generation_equipments, self._catalog_storage_equipments = \ - self._load_generation_and_storage_equipments() + self._catalog_generation_equipments, self._catalog_storage_equipments = self._load_generation_and_storage_equipments() self._catalog_distribution_equipments = self._load_distribution_equipments() self._catalog_emission_equipments = self._load_emission_equipments() self._catalog_systems = self._load_systems() @@ -63,6 +61,7 @@ class MontrealCustomCatalog(Catalog): electricity_efficiency = None if 'electrical_efficiency' in equipment: electricity_efficiency = float(equipment['electrical_efficiency']) + # todo: this may be optionals instead? generation_system = GenerationSystem(equipment_id, name, None, @@ -283,4 +282,4 @@ class MontrealCustomCatalog(Catalog): for entry in self._content.emission_equipments: if entry.name.lower() == name.lower(): return entry - raise IndexError(f"{name} doesn't exists in the catalog") \ No newline at end of file + raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index b5702215..77c4287c 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -56,7 +56,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): boiler_maximum_heat_output = float(boiler['@maximumHeatOutput']) boiler_minimum_heat_output = float(boiler['@minimumHeatOutput']) boiler_heat_efficiency = float(boiler['@nominalEfficiency']) - + # todo: this may be optionals instead? boiler_component = GenerationSystem(boiler_id, boiler_name, boiler_model_name, @@ -405,15 +405,16 @@ class NorthAmericaEnergySystemCatalog(Catalog): for material in materials: if int(material.id) == int(material_id): _material = material - return _material - + break if _material is None: raise ValueError(f'Material with the id = [{material_id}] not found in catalog ') + return _material @staticmethod def _search_generation_equipment(generation_systems, generation_id): _generation_systems = [] - if type(generation_id) == list: + + if isinstance(generation_id, list): integer_ids = [int(item) for item in generation_id] for generation in generation_systems: if int(generation.id) in integer_ids: diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index 94e27fbf..9e6d8c8b 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -89,7 +89,7 @@ class Building(CityObject): elif surface.type == cte.INTERIOR_SLAB: self._interior_slabs.append(surface) else: - logging.error(f'Building %s [%s] has an unexpected surface type %s.', self.name, self.aliases, surface.type) + logging.error('Building %s [%s] has an unexpected surface type %s.', self.name, self.aliases, surface.type) @property def shell(self) -> Polyhedron: diff --git a/hub/city_model_structure/building_demand/thermal_zone.py b/hub/city_model_structure/building_demand/thermal_zone.py index 386e8c4b..6ea08324 100644 --- a/hub/city_model_structure/building_demand/thermal_zone.py +++ b/hub/city_model_structure/building_demand/thermal_zone.py @@ -578,7 +578,7 @@ class ThermalZone: for i_type, _ in enumerate(_types_reference): _schedules = [] _schedule_type = _types_reference[i_type][1] - for i_schedule, schedule_value in enumerate(_schedule_type): + for _, schedule_value in enumerate(_schedule_type): schedule = Schedule() schedule.type = schedule_value.type schedule.day_types = schedule_value.day_types diff --git a/hub/city_model_structure/energy_systems/electrical_storage_system.py b/hub/city_model_structure/energy_systems/electrical_storage_system.py index 54bf587c..080f86c7 100644 --- a/hub/city_model_structure/energy_systems/electrical_storage_system.py +++ b/hub/city_model_structure/energy_systems/electrical_storage_system.py @@ -13,6 +13,9 @@ from hub.city_model_structure.energy_systems.generic_storage_system import Gener class ElectricalStorageSystem: + """ + Electrical Storage system class + """ def __init__(self): self._model_name = None self._manufacturer = None @@ -150,6 +153,3 @@ class ElectricalStorageSystem: :return: float """ self._self_discharge_rate = value - - - diff --git a/hub/city_model_structure/energy_systems/generic_storage_system.py b/hub/city_model_structure/energy_systems/generic_storage_system.py index 2b7e0bab..3cd46ca9 100644 --- a/hub/city_model_structure/energy_systems/generic_storage_system.py +++ b/hub/city_model_structure/energy_systems/generic_storage_system.py @@ -10,6 +10,9 @@ from __future__ import annotations class GenericStorageSystem: + """ + Generic storage System class + """ def __init__(self): self._storage_type = None self._nominal_capacity = None @@ -62,4 +65,3 @@ class GenericStorageSystem: :return: float """ self._losses_ratio = value - diff --git a/hub/city_model_structure/energy_systems/performance_curve.py b/hub/city_model_structure/energy_systems/performance_curve.py index 4aaaef1f..e7c72287 100644 --- a/hub/city_model_structure/energy_systems/performance_curve.py +++ b/hub/city_model_structure/energy_systems/performance_curve.py @@ -101,5 +101,3 @@ class PerformanceCurves: :return: [coefficients] """ self._coefficients = value - - diff --git a/hub/exports/formats/obj.py b/hub/exports/formats/obj.py index 5faa02d3..0392ec05 100644 --- a/hub/exports/formats/obj.py +++ b/hub/exports/formats/obj.py @@ -4,7 +4,6 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca """ -import math from pathlib import Path import numpy as np @@ -59,7 +58,6 @@ class Obj: mtl.write("Ks 1.0 1.0 1.0 # Specular color (white)\n") mtl.write("Ns 400.0 # Specular exponent (defines shininess)\n") vertices = {} - normals_index = {} faces = [] vertex_index = 0 normal_index = 0 diff --git a/hub/imports/construction/eilat_physics_parameters.py b/hub/imports/construction/eilat_physics_parameters.py index c09db490..8e078d5a 100644 --- a/hub/imports/construction/eilat_physics_parameters.py +++ b/hub/imports/construction/eilat_physics_parameters.py @@ -32,7 +32,7 @@ class EilatPhysicsParameters: city = self._city eilat_catalog = ConstructionCatalogFactory('eilat').catalog for building in city.buildings: - if building.function not in Dictionaries().hub_function_to_eilat_construction_function.keys(): + if building.function not in Dictionaries().hub_function_to_eilat_construction_function: logging.error('Building %s has an unknown building function %s', building.name, building.function) continue function = Dictionaries().hub_function_to_eilat_construction_function[building.function] diff --git a/hub/imports/construction/nrcan_physics_parameters.py b/hub/imports/construction/nrcan_physics_parameters.py index 8caede23..6d334cac 100644 --- a/hub/imports/construction/nrcan_physics_parameters.py +++ b/hub/imports/construction/nrcan_physics_parameters.py @@ -32,8 +32,8 @@ class NrcanPhysicsParameters: city = self._city nrcan_catalog = ConstructionCatalogFactory('nrcan').catalog for building in city.buildings: - if building.function not in Dictionaries().hub_function_to_nrcan_construction_function.keys(): - logging.error(f'Building %s has an unknown building function %s', building.name, building.function) + if building.function not in Dictionaries().hub_function_to_nrcan_construction_function: + logging.error('Building %s has an unknown building function %s', building.name, building.function) continue function = Dictionaries().hub_function_to_nrcan_construction_function[building.function] try: diff --git a/hub/imports/construction/nrel_physics_parameters.py b/hub/imports/construction/nrel_physics_parameters.py index 6f61102a..b3dc3af4 100644 --- a/hub/imports/construction/nrel_physics_parameters.py +++ b/hub/imports/construction/nrel_physics_parameters.py @@ -105,4 +105,4 @@ class NrelPhysicsParameters: construction.window_g_value = window_archetype.g_value construction.window_overall_u_value = window_archetype.overall_u_value _constructions.append(construction) - thermal_archetype.constructions = _constructions \ No newline at end of file + thermal_archetype.constructions = _constructions diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index f5360568..d387909f 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -6,21 +6,20 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -import logging import copy +import logging from pandas import DataFrame from hub.catalog_factories.energy_systems_catalog_factory import EnergySystemsCatalogFactory -from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem -from hub.city_model_structure.energy_systems.energy_system import EnergySystem -from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem from hub.city_model_structure.energy_systems.emission_system import EmissionSystem -from hub.helpers.dictionaries import Dictionaries -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem +from hub.city_model_structure.energy_systems.energy_system import EnergySystem +from hub.city_model_structure.energy_systems.generation_system import GenerationSystem +from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem +from hub.helpers.dictionaries import Dictionaries class NorthAmericaCustomEnergySystemParameters: @@ -83,7 +82,7 @@ class NorthAmericaCustomEnergySystemParameters: energy_system = GenericEnergySystem() _hub_demand_types = [] demand_types = system.demand_types - if type(demand_types) == str: + if isinstance(demand_types, str): demand_types = [demand_types] for demand_type in demand_types: _hub_demand_types.append(Dictionaries().north_america_demand_type_to_hub_energy_demand_type[demand_type]) @@ -105,17 +104,17 @@ class NorthAmericaCustomEnergySystemParameters: _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow _generation_system.storage = None _generation_system.auxiliary_equipment = None - _generation_system._supply_medium = archetype_generation_equipment.supply_medium - _generation_system._maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature - _generation_system._minimum_heat_supply_temperature = archetype_generation_equipment.minimum_heat_supply_temperature - _generation_system._maximum_cooling_supply_temperature = archetype_generation_equipment.maximum_cooling_supply_temperature - _generation_system._minimum_cooling_supply_temperature = archetype_generation_equipment.minimum_cooling_supply_temperature - _generation_system._heat_output_curve = archetype_generation_equipment.heat_output_curve - _generation_system._heat_fuel_consumption_curve = archetype_generation_equipment.heat_fuel_consumption_curve - _generation_system._heat_efficiency_curve = archetype_generation_equipment.heat_efficiency_curve - _generation_system._cooling_output_curve = archetype_generation_equipment.cooling_output_curve - _generation_system._cooling_fuel_consumption_curve = archetype_generation_equipment.cooling_fuel_consumption_curve - _generation_system._cooling_efficiency_curve = archetype_generation_equipment.cooling_efficiency_curve + _generation_system.supply_medium = archetype_generation_equipment.supply_medium + _generation_system.maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature + _generation_system.minimum_heat_supply_temperature = archetype_generation_equipment.minimum_heat_supply_temperature + _generation_system.maximum_cooling_supply_temperature = archetype_generation_equipment.maximum_cooling_supply_temperature + _generation_system.minimum_cooling_supply_temperature = archetype_generation_equipment.minimum_cooling_supply_temperature + _generation_system.heat_output_curve = archetype_generation_equipment.heat_output_curve + _generation_system.heat_fuel_consumption_curve = archetype_generation_equipment.heat_fuel_consumption_curve + _generation_system.heat_efficiency_curve = archetype_generation_equipment.heat_efficiency_curve + _generation_system.cooling_output_curve = archetype_generation_equipment.cooling_output_curve + _generation_system.cooling_fuel_consumption_curve = archetype_generation_equipment.cooling_fuel_consumption_curve + _generation_system.cooling_efficiency_curve = archetype_generation_equipment.cooling_efficiency_curve _generation_systems.append(_generation_system) energy_system.generation_systems = _generation_systems diff --git a/hub/imports/results/energy_plus_workflow.py b/hub/imports/results/energy_plus.py similarity index 99% rename from hub/imports/results/energy_plus_workflow.py rename to hub/imports/results/energy_plus.py index 627b3fd7..773aca46 100644 --- a/hub/imports/results/energy_plus_workflow.py +++ b/hub/imports/results/energy_plus.py @@ -6,13 +6,16 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Project collaborator Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from pathlib import Path -from hub.helpers.monthly_values import MonthlyValues import csv +from hub.helpers.monthly_values import MonthlyValues import hub.helpers.constants as cte -class EnergyPlusWorkflow: +class EnergyPlus: + """ + Energy plus class + """ def __init__(self, city, base_path): self._city = city self._base_path = base_path diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py index fac60de3..da33f3af 100644 --- a/hub/imports/results_factory.py +++ b/hub/imports/results_factory.py @@ -10,7 +10,7 @@ from pathlib import Path from hub.helpers.utils import validate_import_export_type from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm -from hub.imports.results.energy_plus_workflow import EnergyPlusWorkflow +from hub.imports.results.energy_plus import EnergyPlusWorkflow class ResultFactory: """ diff --git a/hub/persistence/repositories/city_object.py b/hub/persistence/repositories/city_object.py index aa69a0e3..4c8513ec 100644 --- a/hub/persistence/repositories/city_object.py +++ b/hub/persistence/repositories/city_object.py @@ -7,7 +7,7 @@ Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca import datetime import logging -from sqlalchemy import select, or_ +from sqlalchemy import select from sqlalchemy.exc import SQLAlchemyError from sqlalchemy.orm import Session -- 2.39.2 From ca48d6448b918fa7873232fb1b53315665b3b62a Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 5 Oct 2023 13:18:57 -0400 Subject: [PATCH 070/101] changed all the singular names to plural and turned distribution and emission systems into lists --- hub/city_model_structure/building.py | 12 +++-- .../energy_systems/energy_system.py | 48 +++++++++---------- ...ontreal_custom_energy_system_parameters.py | 10 ++-- ...america_custom_energy_system_parameters.py | 16 +++---- tests/test_systems_factory.py | 22 ++++----- 5 files changed, 55 insertions(+), 53 deletions(-) diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index 2ef73469..c0595bba 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -706,11 +706,11 @@ class Building(CityObject): if self.energy_systems is None: return self._distribution_systems_electrical_consumption for energy_system in self.energy_systems: - emission_system = energy_system.emission_system.generic_emission_system + emission_system = energy_system.emission_systems.generic_emission_system parasitic_energy_consumption = 0 if emission_system is not None: parasitic_energy_consumption = emission_system.parasitic_energy_consumption - distribution_system = energy_system.distribution_system.generic_distribution_system + distribution_system = energy_system.distribution_systems.generic_distribution_system consumption_variable_flow = distribution_system.distribution_consumption_variable_flow for demand_type in energy_system.demand_types: if demand_type.lower() == cte.HEATING.lower(): @@ -744,7 +744,9 @@ class Building(CityObject): if self.energy_systems is None: return None for energy_system in self.energy_systems: - generation_systems = energy_system.generation_system + generation_systems = energy_system.generation_systems + print(generation_systems) + print(type(generation_systems)) for demand_type in energy_system.demand_types: if demand_type.lower() == consumption_type.lower(): if consumption_type in (cte.HEATING, cte.DOMESTIC_HOT_WATER): @@ -786,8 +788,8 @@ class Building(CityObject): if self.energy_systems is None: return self._onsite_electrical_production for energy_system in self.energy_systems: - if energy_system.generation_system.generic_generation_system.type == cte.PHOTOVOLTAIC: - _efficiency = energy_system.generation_system.generic_generation_system.electricity_efficiency + if energy_system.generation_systems.generic_generation_system.type == cte.PHOTOVOLTAIC: + _efficiency = energy_system.generation_systems.generic_generation_system.electricity_efficiency self._onsite_electrical_production = {} for _key in self.roofs[0].global_irradiance.keys(): _results = [0 for _ in range(0, len(self.roofs[0].global_irradiance[_key]))] diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py index f4a9ea96..01d683ba 100644 --- a/hub/city_model_structure/energy_systems/energy_system.py +++ b/hub/city_model_structure/energy_systems/energy_system.py @@ -23,12 +23,12 @@ class EnergySystem: def __init__(self): self._name = None self._demand_types = None - self._generation_system = None - self._distribution_system = None - self._emission_system = None + self._generation_systems = None + self._distribution_systems = None + self._emission_systems = None self._connected_city_objects = None self._control_system = None - self._energy_storage_system = None + self._energy_storage_systems = None @property def name(self): @@ -63,52 +63,52 @@ class EnergySystem: self._demand_types = value @property - def generation_system(self) -> List[GenerationSystem]: + def generation_systems(self) -> List[GenerationSystem]: """ Get generation systems :return: GenerationSystem """ - return self._generation_system + return self._generation_systems - @generation_system.setter - def generation_system(self, value): + @generation_systems.setter + def generation_systems(self, value): """ Set generation system :param value: GenerationSystem """ - self._generation_system = value + self._generation_systems = value @property - def distribution_system(self) -> Union[None, DistributionSystem]: + def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ Get distribution system :return: DistributionSystem """ - return self._distribution_system + return self._distribution_systems - @distribution_system.setter - def distribution_system(self, value): + @distribution_systems.setter + def distribution_systems(self, value): """ Set distribution system :param value: DistributionSystem """ - self._distribution_system = value + self._distribution_systems = value @property - def emission_system(self) -> Union[None, EmissionSystem]: + def emission_systems(self) -> Union[None, List[EmissionSystem]]: """ Get emission system :return: EmissionSystem """ - return self._emission_system + return self._emission_systems - @emission_system.setter - def emission_system(self, value): + @emission_systems.setter + def emission_systems(self, value): """ Set emission system :param value: EmissionSystem """ - self._emission_system = value + self._emission_systems = value @property def connected_city_objects(self) -> Union[None, List[CityObject]]: @@ -143,17 +143,17 @@ class EnergySystem: self._control_system = value @property - def energy_storage_system(self) -> Union[None, List[ThermalStorageSystem], List[ElectricalStorageSystem]]: + def energy_storage_systems(self) -> Union[None, List[ThermalStorageSystem], List[ElectricalStorageSystem]]: """ Get energy storage systems :return: [EnergyStorageSystem] """ - return self._energy_storage_system + return self._energy_storage_systems - @energy_storage_system.setter - def energy_storage_system(self, value): + @energy_storage_systems.setter + def energy_storage_systems(self, value): """ Set storage system :param value: [EnergyStorageSystem] """ - self._energy_storage_system = value + self._energy_storage_systems = value diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 49f7086f..f0c35168 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -86,7 +86,7 @@ class MontrealCustomEnergySystemParameters: energy_system.name = system.name energy_system.demand_types = _hub_demand_types _generation_system = GenericGenerationSystem() - archetype_generation_equipment = system.generation_system + archetype_generation_equipment = system.generation_systems _type = system.name _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ _type] @@ -145,11 +145,11 @@ class MontrealCustomEnergySystemParameters: copy.deepcopy(_generic_building_energy_system.emission_systems) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = \ - copy.deepcopy(_generic_building_energy_system.generation_system) + copy.deepcopy(_generic_building_energy_system.generation_systems) - _building_energy_equipment.generation_system = _building_generation_system - _building_energy_equipment.distribution_system = _building_distribution_system - _building_energy_equipment.emission_system = _building_emission_system + _building_energy_equipment.generation_systems = _building_generation_system + _building_energy_equipment.distribution_systems = _building_distribution_system + _building_energy_equipment.emission_systems = _building_emission_system _building_energy_systems.append(_building_energy_equipment) building.energy_systems = _building_energy_systems diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index f5360568..040658cf 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -154,21 +154,21 @@ class NorthAmericaCustomEnergySystemParameters: _building_distribution_system = DistributionSystem() _building_distribution_system.generic_distribution_system = \ - copy.deepcopy(_generic_building_energy_system.distribution_system) + copy.deepcopy(_generic_building_energy_system.distribution_systems) _building_emission_system = EmissionSystem() _building_emission_system.generic_emission_system = \ - copy.deepcopy(_generic_building_energy_system.emission_system) + copy.deepcopy(_generic_building_energy_system.emission_systems) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = \ - copy.deepcopy(_generic_building_energy_system.generation_system) + copy.deepcopy(_generic_building_energy_system.generation_systems) _building_storage_system = ThermalStorageSystem() _building_storage_system.generic_storage_system = \ - copy.deepcopy(_generic_building_energy_system.energy_storage_system) + copy.deepcopy(_generic_building_energy_system.energy_storage_systems) - _building_energy_equipment.generation_system = _building_generation_system - _building_energy_equipment.distribution_system = _building_distribution_system - _building_energy_equipment.emission_system = _building_emission_system - _building_energy_equipment.energy_storage_system = _building_storage_system + _building_energy_equipment.generation_systems = _building_generation_system + _building_energy_equipment.distribution_systems = _building_distribution_system + _building_energy_equipment.emission_systems = _building_emission_system + _building_energy_equipment.energy_storage_systems = _building_storage_system _building_energy_systems.append(_building_energy_equipment) building.energy_systems = _building_energy_systems diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 4dd70998..07c9683a 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -98,15 +98,15 @@ class TestSystemsFactory(TestCase): ) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = ( - copy.deepcopy(_generic_building_energy_system.generation_system) + copy.deepcopy(_generic_building_energy_system.generation_systems) ) if cte.HEATING in _building_energy_equipment.demand_types: _building_generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] if cte.COOLING in _building_energy_equipment.demand_types: _building_generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] - _building_energy_equipment.generation_system = _building_generation_system - _building_energy_equipment.distribution_system = _building_distribution_system - _building_energy_equipment.emission_system = _building_emission_system + _building_energy_equipment.generation_systems = _building_generation_system + _building_energy_equipment.distribution_systems = _building_distribution_system + _building_energy_equipment.emission_systems = _building_emission_system _building_energy_systems.append(_building_energy_equipment) building.energy_systems = _building_energy_systems @@ -161,27 +161,27 @@ class TestSystemsFactory(TestCase): _building_distribution_system = DistributionSystem() _building_distribution_system.generic_distribution_system = ( - copy.deepcopy(_generic_building_energy_system.distribution_system) + copy.deepcopy(_generic_building_energy_system.distribution_systems) ) _building_emission_system = EmissionSystem() _building_emission_system.generic_emission_system = ( - copy.deepcopy(_generic_building_energy_system.emission_system) + copy.deepcopy(_generic_building_energy_system.emission_systems) ) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = ( - copy.deepcopy(_generic_building_energy_system.generation_system) + copy.deepcopy(_generic_building_energy_system.generation_systems) ) _building_storage_system = ThermalStorageSystem() _building_storage_system.generic_storage_system = \ - copy.deepcopy(_generic_building_energy_system.energy_storage_system) + copy.deepcopy(_generic_building_energy_system.energy_storage_systems) if cte.HEATING in _building_energy_equipment.demand_types: _building_generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] if cte.COOLING in _building_energy_equipment.demand_types: _building_generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] - _building_energy_equipment.generation_system = _building_generation_system - _building_energy_equipment.distribution_system = _building_distribution_system - _building_energy_equipment.emission_system = _building_emission_system + _building_energy_equipment.generation_systems = _building_generation_system + _building_energy_equipment.distribution_systems = _building_distribution_system + _building_energy_equipment.emission_systems = _building_emission_system _building_energy_systems.append(_building_energy_equipment) building.energy_systems = _building_energy_systems -- 2.39.2 From 91fa9d5ca150d496bdb703392d0e5ad487945ba5 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 5 Oct 2023 14:20:02 -0400 Subject: [PATCH 071/101] modified the names and changed all singulars to plurals --- .../energy_systems/generic_energy_system.py | 24 +++++++++---------- ...ontreal_custom_energy_system_parameters.py | 4 ++-- ...america_custom_energy_system_parameters.py | 2 +- hub/imports/results_factory.py | 4 ++-- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/hub/city_model_structure/energy_systems/generic_energy_system.py b/hub/city_model_structure/energy_systems/generic_energy_system.py index fddd4368..83661fb8 100644 --- a/hub/city_model_structure/energy_systems/generic_energy_system.py +++ b/hub/city_model_structure/energy_systems/generic_energy_system.py @@ -59,15 +59,15 @@ class GenericEnergySystem: self._demand_types = value @property - def generation_system(self) -> List[GenericGenerationSystem]: + def generation_systems(self) -> List[GenericGenerationSystem]: """ Get generation system :return: GenerationSystem """ return self._generation_system - @generation_system.setter - def generation_system(self, value): + @generation_systems.setter + def generation_systems(self, value): """ Set generation system :return: GenerationSystem @@ -75,15 +75,15 @@ class GenericEnergySystem: self._generation_system = value @property - def distribution_system(self) -> Union[None, GenericDistributionSystem]: + def distribution_systems(self) -> Union[None, List[GenericDistributionSystem]]: """ Get distribution system :return: DistributionSystem """ return self._distribution_system - @distribution_system.setter - def distribution_system(self, value): + @distribution_systems.setter + def distribution_systems(self, value): """ Set distribution system :param value: DistributionSystem @@ -91,15 +91,15 @@ class GenericEnergySystem: self._distribution_system = value @property - def emission_system(self) -> Union[None, GenericEmissionSystem]: + def emission_systems(self) -> Union[None, List[GenericEmissionSystem]]: """ Get emission system :return: EmissionSystem """ return self._emission_system - @emission_system.setter - def emission_system(self, value): + @emission_systems.setter + def emission_systems(self, value): """ Set emission system :param value: EmissionSystem @@ -107,15 +107,15 @@ class GenericEnergySystem: self._emission_system = value @property - def energy_storage_system(self) -> Union[None, GenericStorageSystem]: + def energy_storage_systems(self) -> Union[None, List[GenericStorageSystem]]: """ Get storage system :return: EnergyStorageSystem """ return self._energy_storage_system - @energy_storage_system.setter - def energy_storage_system(self, value): + @energy_storage_systems.setter + def energy_storage_systems(self, value): """ Set storage system :return: EnergyStorageSystem diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index f0c35168..9960dab6 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -101,7 +101,7 @@ class MontrealCustomEnergySystemParameters: _generation_system.storage = archetype_generation_equipment.storage _generation_system.auxiliary_equipment = None - energy_system.generation_system = _generation_system + energy_system.generation_systems = _generation_system _distribution_system = GenericDistributionSystem() archetype_distribution_equipment = system.distribution_systems @@ -113,7 +113,7 @@ class MontrealCustomEnergySystemParameters: archetype_distribution_equipment.distribution_consumption_variable_flow _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses - energy_system.distribution_system = _distribution_system + energy_system.distribution_systems = _distribution_system building_systems.append(energy_system) if archetype.name not in _generic_energy_systems: diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 3dbdc843..980a1517 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -126,7 +126,7 @@ class NorthAmericaCustomEnergySystemParameters: _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature _thermal_storage_system.height = archetype_storage_equipment.height _thermal_storage_system.layers = archetype_storage_equipment.layers - energy_system.energy_storage_system = _thermal_storage_system + energy_system.energy_storage_systems = _thermal_storage_system building_systems.append(energy_system) if archetype.name not in _generic_energy_systems: diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py index da33f3af..ed9ccc8b 100644 --- a/hub/imports/results_factory.py +++ b/hub/imports/results_factory.py @@ -10,7 +10,7 @@ from pathlib import Path from hub.helpers.utils import validate_import_export_type from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm -from hub.imports.results.energy_plus import EnergyPlusWorkflow +from hub.imports.results.energy_plus import EnergyPlus class ResultFactory: """ @@ -50,7 +50,7 @@ class ResultFactory: """ Enrich the city with energy plus results """ - EnergyPlusWorkflow(self._city, self._base_path).enrich() + EnergyPlus(self._city, self._base_path).enrich() def enrich(self): """ -- 2.39.2 From 9654bee978e0f815d6755c4a2b1a941dd3c58b13 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 5 Oct 2023 14:45:33 -0400 Subject: [PATCH 072/101] modified the names and changed all singulars to plurals --- .../north_america_custom_energy_system_parameters.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 980a1517..9db1d445 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -150,13 +150,6 @@ class NorthAmericaCustomEnergySystemParameters: _building_energy_equipment = EnergySystem() _building_energy_equipment.name = _generic_building_energy_system.name _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types - - _building_distribution_system = DistributionSystem() - _building_distribution_system.generic_distribution_system = \ - copy.deepcopy(_generic_building_energy_system.distribution_systems) - _building_emission_system = EmissionSystem() - _building_emission_system.generic_emission_system = \ - copy.deepcopy(_generic_building_energy_system.emission_systems) _building_generation_system = GenerationSystem() _building_generation_system.generic_generation_system = \ copy.deepcopy(_generic_building_energy_system.generation_systems) @@ -165,8 +158,6 @@ class NorthAmericaCustomEnergySystemParameters: copy.deepcopy(_generic_building_energy_system.energy_storage_systems) _building_energy_equipment.generation_systems = _building_generation_system - _building_energy_equipment.distribution_systems = _building_distribution_system - _building_energy_equipment.emission_systems = _building_emission_system _building_energy_equipment.energy_storage_systems = _building_storage_system _building_energy_systems.append(_building_energy_equipment) -- 2.39.2 From ef89da8552e71b568fb876f87821a21592c460f2 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 5 Oct 2023 16:18:08 -0400 Subject: [PATCH 073/101] created a loop for generation systems in _associate_energy_systems --- ...north_america_custom_energy_system_parameters.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 9db1d445..30ca9465 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -150,14 +150,19 @@ class NorthAmericaCustomEnergySystemParameters: _building_energy_equipment = EnergySystem() _building_energy_equipment.name = _generic_building_energy_system.name _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types - _building_generation_system = GenerationSystem() - _building_generation_system.generic_generation_system = \ - copy.deepcopy(_generic_building_energy_system.generation_systems) + _generation_systems = [] + _generic_building_generation_systems = _generic_building_energy_system.generation_systems + for _generic_building_generation_system in _generic_building_generation_systems: + _building_generation_system = GenerationSystem() + _building_generation_system.generic_generation_system = \ + copy.deepcopy(_generic_building_generation_system) + _generation_systems.append(_building_generation_system) + _building_energy_equipment.generation_systems = _generation_systems _building_storage_system = ThermalStorageSystem() _building_storage_system.generic_storage_system = \ copy.deepcopy(_generic_building_energy_system.energy_storage_systems) - _building_energy_equipment.generation_systems = _building_generation_system + _building_energy_equipment.energy_storage_systems = _building_storage_system _building_energy_systems.append(_building_energy_equipment) -- 2.39.2 From f13d7fd8601eab700feef0b249b77c15f9d3ae35 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 6 Oct 2023 04:11:56 -0400 Subject: [PATCH 074/101] fixed error in logic in _associate_energy_systems --- ...ontreal_custom_energy_system_parameters.py | 78 +++++++++---------- tests/test_systems_catalog.py | 2 - 2 files changed, 39 insertions(+), 41 deletions(-) diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 49f7086f..e657e598 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -75,48 +75,48 @@ class MontrealCustomEnergySystemParameters: @staticmethod def _create_generic_systems(archetype, building, _energy_systems_connection_table, _generic_energy_systems): - building_systems = [] data = [archetype.name, building.name] _energy_systems_connection_table.loc[len(_energy_systems_connection_table)] = data - for system in archetype.systems: - energy_system = GenericEnergySystem() - _hub_demand_types = [] - for demand_type in system.demand_types: - _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) - energy_system.name = system.name - energy_system.demand_types = _hub_demand_types - _generation_system = GenericGenerationSystem() - archetype_generation_equipment = system.generation_system - _type = system.name - _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ - _type] - _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.source_types = archetype_generation_equipment.source_medium - _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency - _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency - _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency - _generation_system.source_temperature = archetype_generation_equipment.source_temperature - _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow - _generation_system.storage = archetype_generation_equipment.storage - _generation_system.auxiliary_equipment = None - - energy_system.generation_system = _generation_system - - _distribution_system = GenericDistributionSystem() - archetype_distribution_equipment = system.distribution_systems - _distribution_system.type = archetype_distribution_equipment.type - _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature - _distribution_system.distribution_consumption_fix_flow = \ - archetype_distribution_equipment.distribution_consumption_fix_flow - _distribution_system.distribution_consumption_variable_flow = \ - archetype_distribution_equipment.distribution_consumption_variable_flow - _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses - - energy_system.distribution_system = _distribution_system - - building_systems.append(energy_system) if archetype.name not in _generic_energy_systems: + building_systems = [] + for system in archetype.systems: + energy_system = GenericEnergySystem() + _hub_demand_types = [] + for demand_type in system.demand_types: + _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) + energy_system.name = system.name + energy_system.demand_types = _hub_demand_types + _generation_system = GenericGenerationSystem() + archetype_generation_equipment = system.generation_system + _type = system.name + _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ + _type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = archetype_generation_equipment.source_medium + _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency + _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency + _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency + _generation_system.source_temperature = archetype_generation_equipment.source_temperature + _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow + _generation_system.storage = archetype_generation_equipment.storage + _generation_system.auxiliary_equipment = None + + energy_system.generation_system = _generation_system + + _distribution_system = GenericDistributionSystem() + archetype_distribution_equipment = system.distribution_systems + _distribution_system.type = archetype_distribution_equipment.type + _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature + _distribution_system.distribution_consumption_fix_flow = \ + archetype_distribution_equipment.distribution_consumption_fix_flow + _distribution_system.distribution_consumption_variable_flow = \ + archetype_distribution_equipment.distribution_consumption_variable_flow + _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses + + energy_system.distribution_system = _distribution_system + + building_systems.append(energy_system) _generic_energy_systems[archetype.name] = building_systems return _energy_systems_connection_table, _generic_energy_systems diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 862ea874..f24808f3 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -41,5 +41,3 @@ class TestSystemsCatalog(TestCase): def test_north_america_systems_catalog(self): catalog = EnergySystemsCatalogFactory('north_america').catalog print(catalog.entries()) - - -- 2.39.2 From a331dce966f88af1e88a78b3f3dec266c9ae48e1 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 6 Oct 2023 04:14:52 -0400 Subject: [PATCH 075/101] fixed error in logic in _create_generic_systems --- ...ontreal_custom_energy_system_parameters.py | 79 ++++++++++--------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 9960dab6..a884309d 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -75,48 +75,49 @@ class MontrealCustomEnergySystemParameters: @staticmethod def _create_generic_systems(archetype, building, _energy_systems_connection_table, _generic_energy_systems): - building_systems = [] data = [archetype.name, building.name] _energy_systems_connection_table.loc[len(_energy_systems_connection_table)] = data - for system in archetype.systems: - energy_system = GenericEnergySystem() - _hub_demand_types = [] - for demand_type in system.demand_types: - _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) - energy_system.name = system.name - energy_system.demand_types = _hub_demand_types - _generation_system = GenericGenerationSystem() - archetype_generation_equipment = system.generation_systems - _type = system.name - _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ - _type] - _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.source_types = archetype_generation_equipment.source_medium - _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency - _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency - _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency - _generation_system.source_temperature = archetype_generation_equipment.source_temperature - _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow - _generation_system.storage = archetype_generation_equipment.storage - _generation_system.auxiliary_equipment = None - - energy_system.generation_systems = _generation_system - - _distribution_system = GenericDistributionSystem() - archetype_distribution_equipment = system.distribution_systems - _distribution_system.type = archetype_distribution_equipment.type - _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature - _distribution_system.distribution_consumption_fix_flow = \ - archetype_distribution_equipment.distribution_consumption_fix_flow - _distribution_system.distribution_consumption_variable_flow = \ - archetype_distribution_equipment.distribution_consumption_variable_flow - _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses - - energy_system.distribution_systems = _distribution_system - - building_systems.append(energy_system) if archetype.name not in _generic_energy_systems: + building_systems = [] + for system in archetype.systems: + energy_system = GenericEnergySystem() + _hub_demand_types = [] + for demand_type in system.demand_types: + _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) + energy_system.name = system.name + energy_system.demand_types = _hub_demand_types + _generation_system = GenericGenerationSystem() + archetype_generation_equipment = system.generation_systems + _type = system.name + _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ + _type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = archetype_generation_equipment.source_medium + _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency + _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency + _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency + _generation_system.source_temperature = archetype_generation_equipment.source_temperature + _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow + _generation_system.storage = archetype_generation_equipment.storage + _generation_system.auxiliary_equipment = None + + energy_system.generation_systems = _generation_system + + _distribution_system = GenericDistributionSystem() + archetype_distribution_equipment = system.distribution_systems + _distribution_system.type = archetype_distribution_equipment.type + _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature + _distribution_system.distribution_consumption_fix_flow = \ + archetype_distribution_equipment.distribution_consumption_fix_flow + _distribution_system.distribution_consumption_variable_flow = \ + archetype_distribution_equipment.distribution_consumption_variable_flow + _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses + + energy_system.distribution_systems = _distribution_system + + building_systems.append(energy_system) + _generic_energy_systems[archetype.name] = building_systems return _energy_systems_connection_table, _generic_energy_systems -- 2.39.2 From d29161b05e3487926b557331d9b1e0320b367633 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 6 Oct 2023 04:54:20 -0400 Subject: [PATCH 076/101] rolled back and error introduced in a previous commit --- hub/city_model_structure/building_demand/thermal_zone.py | 2 +- tests/test_systems_factory.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hub/city_model_structure/building_demand/thermal_zone.py b/hub/city_model_structure/building_demand/thermal_zone.py index 6ea08324..386e8c4b 100644 --- a/hub/city_model_structure/building_demand/thermal_zone.py +++ b/hub/city_model_structure/building_demand/thermal_zone.py @@ -578,7 +578,7 @@ class ThermalZone: for i_type, _ in enumerate(_types_reference): _schedules = [] _schedule_type = _types_reference[i_type][1] - for _, schedule_value in enumerate(_schedule_type): + for i_schedule, schedule_value in enumerate(_schedule_type): schedule = Schedule() schedule.type = schedule_value.type schedule.day_types = schedule_value.day_types diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 07c9683a..420e4172 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -55,6 +55,7 @@ class TestSystemsFactory(TestCase): EnergySystemsFactory('montreal_custom', self._city).enrich() self.assertEqual(17, len(self._city.energy_systems_connection_table)) + self.assertEqual(1, len(self._city.generic_energy_systems)) def test_montreal_custom_system_results(self): """ @@ -126,6 +127,7 @@ class TestSystemsFactory(TestCase): EnergySystemsFactory('north_america', self._city).enrich() self.assertEqual(17, len(self._city.energy_systems_connection_table)) + self.assertEqual(1, len(self._city.generic_energy_systems)) def test_north_america_custom_system_results(self): """ -- 2.39.2 From 11dc02d0e8e976f9a941467f5cad36e4c38e3f27 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 10 Oct 2023 05:03:31 -0400 Subject: [PATCH 077/101] starting point, not working --- .../data_models/energy_systems/archetype.py | 14 +- .../data_models/energy_systems/content.py | 18 +- .../energy_systems/distribution_system.py | 34 +- .../electrical_storage_system.py | 22 +- .../energy_systems/emission_system.py | 12 +- .../energy_systems/energy_storage_system.py | 10 +- .../energy_systems/generation_system.py | 285 +---------------- .../non_pv_generation_system.py | 294 ++++++++++++++++++ .../energy_systems/pv_generation_system.py | 93 +++--- .../data_models/energy_systems/system.py | 56 +--- .../energy_systems/thermal_storage_system.py | 44 ++- .../energy_systems/montreal_custom_catalog.py | 120 +++---- .../north_america_energy_system_catalog.py | 129 +++----- tests/test_systems_catalog.py | 2 - 14 files changed, 549 insertions(+), 584 deletions(-) create mode 100644 hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/archetype.py b/hub/catalog_factories/data_models/energy_systems/archetype.py index 4834b8cc..84bcef9a 100644 --- a/hub/catalog_factories/data_models/energy_systems/archetype.py +++ b/hub/catalog_factories/data_models/energy_systems/archetype.py @@ -1,5 +1,5 @@ """ -Energy System catalog archetype +Energy System catalog archetype, understood as a cluster of energy systems SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca @@ -15,20 +15,11 @@ class Archetype: """ Archetype class """ - def __init__(self, lod, name, systems): + def __init__(self, name, systems): - self._lod = lod self._name = name self._systems = systems - @property - def lod(self): - """ - Get level of detail of the catalog - :return: string - """ - return self._lod - @property def name(self): """ @@ -53,7 +44,6 @@ class Archetype: content = { 'Archetype': { 'name': self.name, - 'level of detail': self.lod, 'systems': _systems } } diff --git a/hub/catalog_factories/data_models/energy_systems/content.py b/hub/catalog_factories/data_models/energy_systems/content.py index d3fd9068..9aa2927c 100644 --- a/hub/catalog_factories/data_models/energy_systems/content.py +++ b/hub/catalog_factories/data_models/energy_systems/content.py @@ -10,13 +10,11 @@ class Content: """ Content class """ - def __init__(self, archetypes, systems, generations, distributions, emissions, storages): + def __init__(self, archetypes, systems, generations=None, distributions=None): self._archetypes = archetypes self._systems = systems self._generations = generations self._distributions = distributions - self._emissions = emissions - self._storages = storages @property def archetypes(self): @@ -46,20 +44,6 @@ class Content: """ return self._distributions - @property - def emission_equipments(self): - """ - All emission equipments in the catalog - """ - return self._emissions - - @property - def storage_equipments(self): - """ - All storage equipments in the catalog - """ - return self._storages - def to_dictionary(self): """Class content to dictionary""" _archetypes = [] diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index cac9b2b3..b6836086 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -6,21 +6,27 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ +from typing import Union, List + +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem + class DistributionSystem: """ Distribution system class """ - def __init__(self, system_id, name, system_type, supply_temperature, distribution_consumption_fix_flow, - distribution_consumption_variable_flow, heat_losses): + def __init__(self, system_id, model_name=None, system_type=None, supply_temperature=None, + distribution_consumption_fix_flow=None, distribution_consumption_variable_flow=None, heat_losses=None, + generation_systems=None): self._system_id = system_id - self._name = name + self._model_name = model_name self._type = system_type self._supply_temperature = supply_temperature self._distribution_consumption_fix_flow = distribution_consumption_fix_flow self._distribution_consumption_variable_flow = distribution_consumption_variable_flow self._heat_losses = heat_losses + self._generation_systems = generation_systems @property def id(self): @@ -31,12 +37,12 @@ class DistributionSystem: return self._system_id @property - def name(self): + def model_name(self): """ - Get name + Get model name :return: string """ - return self._name + return self._model_name @property def type(self): @@ -79,17 +85,29 @@ class DistributionSystem: """ return self._heat_losses + @property + def generation_systems(self) -> Union[None, List[GenerationSystem]]: + """ + Get generation systems connected to the distribution system + :return: [GenerationSystem] + """ + return self._generation_systems + def to_dictionary(self): """Class content to dictionary""" + _generation_systems = [_generation_system.to_dictionary() for _generation_system in + self.generation_systems] if self.generation_systems is not None else None + content = { 'Layer': { 'id': self.id, - 'name': self.name, + 'model name': self.model_name, 'type': self.type, 'supply temperature [Celsius]': self.supply_temperature, 'distribution consumption if fix flow over peak power [W/W]': self.distribution_consumption_fix_flow, 'distribution consumption if variable flow over peak power [J/J]': self.distribution_consumption_variable_flow, - 'heat losses per energy produced [J/J]': self.heat_losses + 'heat losses per energy produced [J/J]': self.heat_losses, + 'generation systems connected': _generation_systems } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py index 6f5d6d14..72e22c0e 100644 --- a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py @@ -14,10 +14,12 @@ class ElectricalStorageSystem(EnergyStorageSystem): Energy Storage System Class """ - def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio, - rated_output_power, nominal_efficiency, battery_voltage, depth_of_discharge, self_discharge_rate): + def __init__(self, storage_id, model_name=None, manufacturer=None, storage_type=None, + nominal_capacity=None, losses_ratio=None, rated_output_power=None, nominal_efficiency=None, + battery_voltage=None, depth_of_discharge=None, self_discharge_rate=None): - super().__init__(storage_id, name, model_name, manufacturer, nominal_capacity, losses_ratio) + super().__init__(storage_id, model_name, manufacturer, nominal_capacity, losses_ratio) + self._type_energy_stored = 'electrical' self._storage_type = storage_type self._rated_output_power = rated_output_power self._nominal_efficiency = nominal_efficiency @@ -25,10 +27,18 @@ class ElectricalStorageSystem(EnergyStorageSystem): self._depth_of_discharge = depth_of_discharge self._self_discharge_rate = self_discharge_rate + @property + def type_energy_stored(self): + """ + Get type of energy stored from ['electrical', 'thermal'] + :return: string + """ + return self._type_energy_stored + @property def storage_type(self): """ - Get storage type from ['electrical', 'lithium_ion', 'lead_acid', 'NiCd'] + Get storage type from ['lithium_ion', 'lead_acid', 'NiCd'] :return: string """ return self._storage_type @@ -44,7 +54,7 @@ class ElectricalStorageSystem(EnergyStorageSystem): @property def nominal_efficiency(self): """ - Get the nominal efficiency of the storage system + Get the nominal efficiency of the storage system :return: float """ return self._nominal_efficiency @@ -77,7 +87,7 @@ class ElectricalStorageSystem(EnergyStorageSystem): """Class content to dictionary""" content = {'Storage component': { 'storage id': self.id, - 'name': self.name, + 'type of energy stored': self.type_energy_stored, 'model name': self.model_name, 'manufacturer': self.manufacturer, 'storage type': self.storage_type, diff --git a/hub/catalog_factories/data_models/energy_systems/emission_system.py b/hub/catalog_factories/data_models/energy_systems/emission_system.py index 5e9d2865..a8ac91b6 100644 --- a/hub/catalog_factories/data_models/energy_systems/emission_system.py +++ b/hub/catalog_factories/data_models/energy_systems/emission_system.py @@ -10,10 +10,10 @@ class EmissionSystem: """ Emission system class """ - def __init__(self, system_id, name, system_type, parasitic_energy_consumption): + def __init__(self, system_id, model_name=None, system_type=None, parasitic_energy_consumption=None): self._system_id = system_id - self._name = name + self._model_name = model_name self._type = system_type self._parasitic_energy_consumption = parasitic_energy_consumption @@ -26,12 +26,12 @@ class EmissionSystem: return self._system_id @property - def name(self): + def model_name(self): """ - Get name + Get model name :return: string """ - return self._name + return self._model_name @property def type(self): @@ -52,7 +52,7 @@ class EmissionSystem: def to_dictionary(self): """Class content to dictionary""" content = {'Layer': {'id': self.id, - 'name': self.name, + 'model name': self.model_name, 'type': self.type, 'parasitic energy consumption per energy produced [J/J]': self.parasitic_energy_consumption } diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index a5302cb4..56a5667d 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -14,9 +14,9 @@ class EnergyStorageSystem(ABC): Energy Storage System Abstract Class """ - def __init__(self, storage_id, name, model_name, manufacturer, nominal_capacity, losses_ratio): + def __init__(self, storage_id, model_name=None, manufacturer=None, + nominal_capacity=None, losses_ratio=None): self._storage_id = storage_id - self._name = name self._model_name = model_name self._manufacturer = manufacturer self._nominal_capacity = nominal_capacity @@ -31,12 +31,12 @@ class EnergyStorageSystem(ABC): return self._storage_id @property - def name(self): + def type_energy_stored(self): """ - Get storage name + Get type of energy stored from ['electrical', 'thermal'] :return: string """ - return self._name + raise NotImplementedError @property def model_name(self): diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index c2fd9a75..3849a039 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -6,53 +6,23 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from typing import Union -from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves +from abc import ABC +from typing import List, Union, TypeVar + +DistributionSystem = TypeVar('DistributionSystem') -class GenerationSystem: +class GenerationSystem(ABC): """ Heat Generation system class """ - def __init__(self, system_id, name, model_name, manufacturer, system_type, fuel_type, nominal_thermal_output, - maximum_heat_output, minimum_heat_output, source_medium, supply_medium, heat_efficiency, - nominal_cooling_output, maximum_cooling_output, minimum_cooling_output, cooling_efficiency, - electricity_efficiency, source_temperature, source_mass_flow, nominal_electricity_output, - maximum_heat_supply_temperature, minimum_heat_supply_temperature, - maximum_cooling_supply_temperature, minimum_cooling_supply_temperature, heat_output_curve, - heat_fuel_consumption_curve, heat_efficiency_curve, cooling_output_curve, cooling_fuel_consumption_curve, - cooling_efficiency_curve): + def __init__(self, system_id, model_name=None, manufacturer=None, fuel_type=None, distribution_systems=None): self._system_id = system_id - self._name = name self._model_name = model_name self._manufacturer = manufacturer - self._system_type = system_type self._fuel_type = fuel_type - self._nominal_thermal_output = nominal_thermal_output - self._maximum_heat_output = maximum_heat_output - self._minimum_heat_output = minimum_heat_output - self._heat_efficiency = heat_efficiency - self._nominal_cooling_output = nominal_cooling_output - self._maximum_cooling_output = maximum_cooling_output - self._minimum_cooling_output = minimum_cooling_output - self._cooling_efficiency = cooling_efficiency - self._electricity_efficiency = electricity_efficiency - self._nominal_electricity_output = nominal_electricity_output - self._source_medium = source_medium - self._source_temperature = source_temperature - self._source_mass_flow = source_mass_flow - self._supply_medium = supply_medium - self._maximum_heat_supply_temperature = maximum_heat_supply_temperature - self._minimum_heat_supply_temperature = minimum_heat_supply_temperature - self._maximum_cooling_supply_temperature = maximum_cooling_supply_temperature - self._minimum_cooling_supply_temperature = minimum_cooling_supply_temperature - self._heat_output_curve = heat_output_curve - self._heat_fuel_consumption_curve = heat_fuel_consumption_curve - self._heat_efficiency_curve = heat_efficiency_curve - self._cooling_output_curve = cooling_output_curve - self._cooling_fuel_consumption_curve = cooling_fuel_consumption_curve - self._cooling_efficiency_curve = cooling_efficiency_curve + self._distribution_systems = distribution_systems @property def id(self): @@ -63,12 +33,12 @@ class GenerationSystem: return self._system_id @property - def name(self): + def system_type(self): """ - Get name + Get type :return: string """ - return self._name + raise NotImplementedError @property def model_name(self): @@ -86,14 +56,6 @@ class GenerationSystem: """ return self._manufacturer - @property - def system_type(self): - """ - Get type - :return: string - """ - return self._system_type - @property def fuel_type(self): """ @@ -103,230 +65,13 @@ class GenerationSystem: return self._fuel_type @property - def nominal_thermal_output(self): + def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ - Get nominal_thermal_output of heat generation devices in kW - :return: float + Get distributions systems connected to this generation system + :return: [DistributionSystems] """ - return self._nominal_thermal_output - - @property - def maximum_heat_output(self): - """ - Get maximum heat output of heat generation devices in W - :return: float - """ - return self._maximum_heat_output - - @property - def minimum_heat_output(self): - """ - Get minimum heat output of heat generation devices in W - :return: float - """ - return self._minimum_heat_output - - @property - def source_medium(self): - """ - Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] - :return: [string] - """ - return self._source_medium - - @property - def supply_medium(self): - """ - Get the supply medium from ['air', 'water'] - :return: string - """ - return self._supply_medium - - @property - def heat_efficiency(self): - """ - Get heat_efficiency - :return: float - """ - return self._heat_efficiency - - @property - def nominal_cooling_output(self): - """ - Get nominal_thermal_output of heat generation devices in kW - :return: float - """ - return self._nominal_cooling_output - - @property - def maximum_cooling_output(self): - """ - Get maximum heat output of heat generation devices in W - :return: float - """ - return self._maximum_cooling_output - - @property - def minimum_cooling_output(self): - """ - Get minimum heat output of heat generation devices in W - :return: float - """ - return self._minimum_cooling_output - - @property - def cooling_efficiency(self): - """ - Get cooling_efficiency - :return: float - """ - return self._cooling_efficiency - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._electricity_efficiency - - @property - def source_temperature(self): - """ - Get source_temperature in degree Celsius - :return: float - """ - return self._source_temperature - - @property - def source_mass_flow(self): - """ - Get source_mass_flow in kg/s - :return: float - """ - return self._source_mass_flow - - @property - def nominal_electricity_output(self): - """ - Get nominal_power_output of electricity generation devices or inverters in kW - :return: float - """ - return self._nominal_electricity_output - - @property - def maximum_heat_supply_temperature(self): - """ - Get the maximum heat supply temperature in degree Celsius - :return: float - """ - return self._minimum_heat_supply_temperature - - @property - def minimum_heat_supply_temperature(self): - """ - Get the minimum heat supply temperature in degree Celsius - :return: float - """ - return self._minimum_heat_supply_temperature - - @property - def maximum_cooling_supply_temperature(self): - """ - Get the maximum cooling supply temperature in degree Celsius - :return: float - """ - return self._maximum_cooling_supply_temperature - - @property - def minimum_cooling_supply_temperature(self): - """ - Get the minimum cooling supply temperature in degree Celsius - :return: float - """ - return self._minimum_cooling_supply_temperature - - @property - def heat_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_output_curve - - @property - def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_fuel_consumption_curve - - @property - def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_efficiency_curve - - @property - def cooling_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_output_curve - - @property - def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_fuel_consumption_curve - - @property - def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_efficiency_curve + return self._distribution_systems def to_dictionary(self): """Class content to dictionary""" - content = {'Energy Generation component': { - 'id': self.id, - 'name': self.name, - 'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'type': self.system_type, - 'fuel type': self.fuel_type, - 'nominal thermal output [W]': self.nominal_thermal_output, - 'maximum heat output [W]': self.maximum_heat_output, - 'minimum heat output [W]': self.minimum_heat_output, - 'source medium': self.source_medium, - 'supply medium': self.supply_medium, - 'source temperature [Celsius]': self.source_temperature, - 'source mass flow [kg/s]': self.source_mass_flow, - 'heat efficiency': self.heat_efficiency, - 'nominal cooling output [W]': self.nominal_cooling_output, - 'maximum cooling output [W]': self.maximum_cooling_output, - 'minimum cooling output [W]': self.minimum_cooling_output, - 'cooling efficiency': self.cooling_efficiency, - 'electricity efficiency': self.electricity_efficiency, - 'nominal power output [W]': self.nominal_electricity_output, - 'maximum heating supply temperature [Celsius]': self.maximum_heat_supply_temperature, - 'minimum heating supply temperature [Celsius]': self.minimum_heat_supply_temperature, - 'maximum cooling supply temperature [Celsius]': self.maximum_cooling_supply_temperature, - 'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature, - 'heat output curve': self.heat_output_curve, - 'heat fuel consumption curve': self.heat_fuel_consumption_curve, - 'heat efficiency curve': self.heat_efficiency_curve, - 'cooling output curve': self.cooling_output_curve, - 'cooling fuel consumption curve': self.cooling_fuel_consumption_curve, - 'cooling efficiency curve': self.cooling_efficiency_curve - } - } - return content + raise NotImplementedError diff --git a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py new file mode 100644 index 00000000..b9780df5 --- /dev/null +++ b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py @@ -0,0 +1,294 @@ +""" +Energy System catalog non PV generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from typing import Union +from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves +from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem + + +class NonPvGenerationSystem(GenerationSystem): + """ + Non PV Generation system class + """ + + def __init__(self, system_id, system_type, model_name=None, manufacturer=None, fuel_type=None, + nominal_thermal_output=None, maximum_heat_output=None, minimum_heat_output=None, source_medium=None, + supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, maximum_cooling_output=None, + minimum_cooling_output=None, cooling_efficiency=None, electricity_efficiency=None, + source_temperature=None, source_mass_flow=None, nominal_electricity_output=None, + maximum_heat_supply_temperature=None, minimum_heat_supply_temperature=None, + maximum_cooling_supply_temperature=None, minimum_cooling_supply_temperature=None, heat_output_curve=None, + heat_fuel_consumption_curve=None, heat_efficiency_curve=None, cooling_output_curve=None, + cooling_fuel_consumption_curve=None, cooling_efficiency_curve=None): + super().__init__(system_id=system_id, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type) + self._system_type = system_type + self._nominal_thermal_output = nominal_thermal_output + self._maximum_heat_output = maximum_heat_output + self._minimum_heat_output = minimum_heat_output + self._heat_efficiency = heat_efficiency + self._nominal_cooling_output = nominal_cooling_output + self._maximum_cooling_output = maximum_cooling_output + self._minimum_cooling_output = minimum_cooling_output + self._cooling_efficiency = cooling_efficiency + self._electricity_efficiency = electricity_efficiency + self._nominal_electricity_output = nominal_electricity_output + self._source_medium = source_medium + self._source_temperature = source_temperature + self._source_mass_flow = source_mass_flow + self._supply_medium = supply_medium + self._maximum_heat_supply_temperature = maximum_heat_supply_temperature + self._minimum_heat_supply_temperature = minimum_heat_supply_temperature + self._maximum_cooling_supply_temperature = maximum_cooling_supply_temperature + self._minimum_cooling_supply_temperature = minimum_cooling_supply_temperature + self._heat_output_curve = heat_output_curve + self._heat_fuel_consumption_curve = heat_fuel_consumption_curve + self._heat_efficiency_curve = heat_efficiency_curve + self._cooling_output_curve = cooling_output_curve + self._cooling_fuel_consumption_curve = cooling_fuel_consumption_curve + self._cooling_efficiency_curve = cooling_efficiency_curve + + @property + def system_type(self): + """ + Get type + :return: string + """ + return self._system_type + + @property + def nominal_thermal_output(self): + """ + Get nominal_thermal_output of heat generation devices in kW + :return: float + """ + return self._nominal_thermal_output + + @property + def maximum_heat_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_heat_output + + @property + def minimum_heat_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_heat_output + + @property + def source_medium(self): + """ + Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] + :return: [string] + """ + return self._source_medium + + @property + def supply_medium(self): + """ + Get the supply medium from ['air', 'water'] + :return: string + """ + return self._supply_medium + + @property + def heat_efficiency(self): + """ + Get heat_efficiency + :return: float + """ + return self._heat_efficiency + + @property + def nominal_cooling_output(self): + """ + Get nominal_thermal_output of heat generation devices in kW + :return: float + """ + return self._nominal_cooling_output + + @property + def maximum_cooling_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_cooling_output + + @property + def minimum_cooling_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_cooling_output + + @property + def cooling_efficiency(self): + """ + Get cooling_efficiency + :return: float + """ + return self._cooling_efficiency + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + + @property + def source_temperature(self): + """ + Get source_temperature in degree Celsius + :return: float + """ + return self._source_temperature + + @property + def source_mass_flow(self): + """ + Get source_mass_flow in kg/s + :return: float + """ + return self._source_mass_flow + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in kW + :return: float + """ + return self._nominal_electricity_output + + @property + def maximum_heat_supply_temperature(self): + """ + Get the maximum heat supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @property + def minimum_heat_supply_temperature(self): + """ + Get the minimum heat supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @property + def maximum_cooling_supply_temperature(self): + """ + Get the maximum cooling supply temperature in degree Celsius + :return: float + """ + return self._maximum_cooling_supply_temperature + + @property + def minimum_cooling_supply_temperature(self): + """ + Get the minimum cooling supply temperature in degree Celsius + :return: float + """ + return self._minimum_cooling_supply_temperature + + @property + def heat_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_output_curve + + @property + def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_fuel_consumption_curve + + @property + def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_efficiency_curve + + @property + def cooling_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_output_curve + + @property + def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_fuel_consumption_curve + + @property + def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_efficiency_curve + + def to_dictionary(self): + """Class content to dictionary""" + _distribution_systems = [_distribution_system.to_dictionary() for _distribution_system in + self.distribution_systems] if self.distribution_systems is not None else None + content = { + 'Energy Generation component': + { + 'id': self.id, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'nominal thermal output [W]': self.nominal_thermal_output, + 'maximum heat output [W]': self.maximum_heat_output, + 'minimum heat output [W]': self.minimum_heat_output, + 'source medium': self.source_medium, + 'supply medium': self.supply_medium, + 'source temperature [Celsius]': self.source_temperature, + 'source mass flow [kg/s]': self.source_mass_flow, + 'heat efficiency': self.heat_efficiency, + 'nominal cooling output [W]': self.nominal_cooling_output, + 'maximum cooling output [W]': self.maximum_cooling_output, + 'minimum cooling output [W]': self.minimum_cooling_output, + 'cooling efficiency': self.cooling_efficiency, + 'electricity efficiency': self.electricity_efficiency, + 'nominal power output [W]': self.nominal_electricity_output, + 'maximum heating supply temperature [Celsius]': self.maximum_heat_supply_temperature, + 'minimum heating supply temperature [Celsius]': self.minimum_heat_supply_temperature, + 'maximum cooling supply temperature [Celsius]': self.maximum_cooling_supply_temperature, + 'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature, + 'heat output curve': self.heat_output_curve, + 'heat fuel consumption curve': self.heat_fuel_consumption_curve, + 'heat efficiency curve': self.heat_efficiency_curve, + 'cooling output curve': self.cooling_output_curve, + 'cooling fuel consumption curve': self.cooling_fuel_consumption_curve, + 'cooling efficiency curve': self.cooling_efficiency_curve, + 'distribution systems connected': _distribution_systems + } + } + return content diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index ce0e71f1..ce037239 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -14,26 +14,15 @@ class PvGenerationSystem(GenerationSystem): Electricity Generation system class """ - def __init__(self, system_id, name, model_name, manufacturer, electricity_efficiency, - nominal_electricity_output, nominal_ambient_temperature, nominal_cell_temperature, - nominal_radiation, standard_test_condition_cell_temperature, standard_test_condition_maximum_power, - cell_temperature_coefficient, width, height): - super().__init__(system_id=system_id, name=name, model_name=model_name, - manufacturer=manufacturer, system_type='pv', fuel_type='renewable', - nominal_thermal_output=None, maximum_heat_output=None, - minimum_heat_output=None, source_medium=None, - supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, - maximum_cooling_output=None, minimum_cooling_output=None, - cooling_efficiency=None, electricity_efficiency=electricity_efficiency, - source_temperature=None, source_mass_flow=None, - nominal_electricity_output=nominal_electricity_output, - maximum_heat_supply_temperature=None, - minimum_heat_supply_temperature=None, - maximum_cooling_supply_temperature=None, - minimum_cooling_supply_temperature=None, heat_output_curve=None, - heat_fuel_consumption_curve=None, heat_efficiency_curve=None, - cooling_output_curve=None, cooling_fuel_consumption_curve=None, - cooling_efficiency_curve=None) + def __init__(self, system_id, model_name=None, manufacturer=None, electricity_efficiency=None, + nominal_electricity_output=None, nominal_ambient_temperature=None, nominal_cell_temperature=None, + nominal_radiation=None, standard_test_condition_cell_temperature=None, + standard_test_condition_maximum_power=None, cell_temperature_coefficient=None, width=None, height=None): + super().__init__(system_id=system_id, model_name=model_name, + manufacturer=manufacturer, fuel_type='renewable') + self._system_type = 'PV' + self._electricity_efficiency = electricity_efficiency + self._nominal_electricity_output = nominal_electricity_output self._nominal_ambient_temperature = nominal_ambient_temperature self._nominal_cell_temperature = nominal_cell_temperature self._nominal_radiation = nominal_radiation @@ -43,6 +32,30 @@ class PvGenerationSystem(GenerationSystem): self._width = width self._height = height + @property + def system_type(self): + """ + Get type + :return: string + """ + return self._system_type + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in kW + :return: float + """ + return self._nominal_electricity_output + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + @property def nominal_ambient_temperature(self): """ @@ -109,23 +122,27 @@ class PvGenerationSystem(GenerationSystem): def to_dictionary(self): """Class content to dictionary""" - content = {'Energy Generation component': { - 'id': self.id, - 'name': self.name, - 'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'type': self.system_type, - 'fuel type': self.fuel_type, - 'electricity efficiency': self.electricity_efficiency, - 'nominal power output [kW]': self.nominal_electricity_output, - 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, - 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, - 'nominal radiation [W/m2]': self.nominal_radiation, - 'standard test condition cell temperature [Celsius]': self.standard_test_condition_cell_temperature, - 'standard test condition maximum power [kW]': self.standard_test_condition_maximum_power, - 'cell temperature coefficient': self.cell_temperature_coefficient, - 'width': self.width, - 'height': self.height, - } + _distribution_systems = [_distribution_system.to_dictionary() for _distribution_system in + self.distribution_systems] if self.distribution_systems is not None else None + content = { + 'Energy Generation component': + { + 'id': self.id, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'type': self.system_type, + 'fuel type': self.fuel_type, + 'electricity efficiency': self.electricity_efficiency, + 'nominal power output [kW]': self.nominal_electricity_output, + 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, + 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, + 'nominal radiation [W/m2]': self.nominal_radiation, + 'standard test condition cell temperature [Celsius]': self.standard_test_condition_cell_temperature, + 'standard test condition maximum power [kW]': self.standard_test_condition_maximum_power, + 'cell temperature coefficient': self.cell_temperature_coefficient, + 'width': self.width, + 'height': self.height, + 'distribution systems connected': _distribution_systems + } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 30ee9292..3479e0dc 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -1,5 +1,5 @@ """ -Energy System catalog heat generation system +Energy Systems catalog System SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca @@ -7,12 +7,10 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from typing import Union, List +from pathlib import Path from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem -from hub.catalog_factories.data_models.energy_systems.thermal_storage_system import ThermalStorageSystem -from hub.catalog_factories.data_models.energy_systems.electrical_storage_system import ElectricalStorageSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem -from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem class System: @@ -21,15 +19,14 @@ class System: """ def __init__(self, - lod, system_id, - name, demand_types, - generation_systems, - distribution_systems, - emission_systems, - energy_storage_systems): - self._lod = lod + name=None, + generation_systems=None, + distribution_systems=None, + emission_systems=None, + energy_storage_systems=None, + configuration_schema=None): self._system_id = system_id self._name = name self._demand_types = demand_types @@ -37,15 +34,7 @@ class System: self._emission_systems = emission_systems self._generation_systems = generation_systems self._energy_storage_systems = energy_storage_systems - # self._configuration = configuration - - @property - def lod(self): - """ - Get level of detail of the catalog - :return: string - """ - return self._lod + self._configuration_schema = configuration_schema @property def id(self): @@ -72,7 +61,7 @@ class System: return self._demand_types @property - def generation_systems(self) -> List[GenerationSystem]: + def generation_systems(self) -> Union[None, List[GenerationSystem]]: """ Get generation systems :return: [GenerationSystem] @@ -88,20 +77,12 @@ class System: return self._distribution_systems @property - def emission_systems(self) -> Union[None, List[EmissionSystem]]: + def configuration_schema(self) -> Path: """ - Get emission systems - :return: [EmissionSystem] + Get system configuration schema + :return: Path """ - return self._emission_systems - - @property - def energy_storage_systems(self) -> Union[None, List[ThermalStorageSystem], List[ElectricalStorageSystem]]: - """ - Get energy storage systems - :return: [EnergyStorageSystem] - """ - return self._energy_storage_systems + return self._configuration_schema def to_dictionary(self): """Class content to dictionary""" @@ -110,19 +91,12 @@ class System: _generation_systems.append(_generation.to_dictionary()) _distribution_systems = [_distribution.to_dictionary() for _distribution in self.distribution_systems] if self.distribution_systems is not None else None - _emission_systems = [_emission.to_dictionary() for _emission in - self.emission_systems] if self.emission_systems is not None else None - _storage_systems = [_storage.to_dictionary() for _storage in - self.energy_storage_systems] if self.energy_storage_systems is not None else None content = {'system': {'id': self.id, 'name': self.name, - 'level of detail': self.lod, 'demand types': self.demand_types, 'generation system(s)': _generation_systems, - 'distribution system(s)': _distribution_systems, - 'emission system(s)': _emission_systems, - 'energy storage system(s)': _storage_systems, + 'distribution system(s)': _distribution_systems } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index 71b4f931..db10840b 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -15,16 +15,26 @@ class ThermalStorageSystem(EnergyStorageSystem): Energy Storage System Class """ - def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio, - volume, height, layers, maximum_operating_temperature): + def __init__(self, storage_id, model_name=None, manufacturer=None, storage_type=None, + nominal_capacity=None, losses_ratio=None, volume=None, height=None, layers=None, + maximum_operating_temperature=None): - super().__init__(storage_id, name, model_name, manufacturer, nominal_capacity, losses_ratio) + super().__init__(storage_id, model_name, manufacturer, nominal_capacity, losses_ratio) + self._type_energy_stored = 'thermal' self._storage_type = storage_type self._volume = volume self._height = height self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature + @property + def type_energy_stored(self): + """ + Get type of energy stored from ['electrical', 'thermal'] + :return: string + """ + return self._type_energy_stored + @property def storage_type(self): """ @@ -72,18 +82,20 @@ class ThermalStorageSystem(EnergyStorageSystem): _layers = [] for _layer in self.layers: _layers.append(_layer.to_dictionary()) - content = {'Storage component': { - 'storage id': self.id, - 'name': self.name, - 'model name': self.model_name, - 'manufacturer': self.manufacturer, - 'storage type': self.storage_type, - 'nominal capacity [J]': self.nominal_capacity, - 'losses-ratio [J/J]': self.losses_ratio, - 'volume [m3]': self.volume, - 'height [m]': self.height, - 'layers': _layers, - 'maximum operating temperature [Celsius]': self.maximum_operating_temperature - } + content = { + 'Storage component': + { + 'storage id': self.id, + 'type of energy stored': self.type_energy_stored, + 'model name': self.model_name, + 'manufacturer': self.manufacturer, + 'storage type': self.storage_type, + 'nominal capacity [J]': self.nominal_capacity, + 'losses-ratio [J/J]': self.losses_ratio, + 'volume [m3]': self.volume, + 'height [m]': self.height, + 'layers': _layers, + 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + } } return content diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index ee88b19c..c8ba7011 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -10,7 +10,8 @@ import xmltodict from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content -from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.non_pv_generation_system import NonPvGenerationSystem +from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem from hub.catalog_factories.data_models.energy_systems.archetype import Archetype @@ -29,7 +30,6 @@ class MontrealCustomCatalog(Catalog): self._archetypes = xmltodict.parse(xml.read(), force_list=('system', 'system_cluster', 'equipment', 'demand', 'system_id')) - self._lod = float(self._archetypes['catalog']['@lod']) self._catalog_generation_equipments, self._catalog_storage_equipments = self._load_generation_and_storage_equipments() self._catalog_distribution_equipments = self._load_distribution_equipments() self._catalog_emission_equipments = self._load_emission_equipments() @@ -39,9 +39,7 @@ class MontrealCustomCatalog(Catalog): self._content = Content(self._catalog_archetypes, self._catalog_systems, self._catalog_generation_equipments, - self._catalog_distribution_equipments, - self._catalog_emission_equipments, - None) + self._catalog_distribution_equipments) def _load_generation_and_storage_equipments(self): _equipments = [] @@ -51,7 +49,7 @@ class MontrealCustomCatalog(Catalog): equipment_id = float(equipment['@id']) equipment_type = equipment['@type'] fuel_type = equipment['@fuel_type'] - name = equipment['name'] + model_name = equipment['name'] heating_efficiency = None if 'heating_efficiency' in equipment: heating_efficiency = float(equipment['heating_efficiency']) @@ -61,46 +59,27 @@ class MontrealCustomCatalog(Catalog): electricity_efficiency = None if 'electrical_efficiency' in equipment: electricity_efficiency = float(equipment['electrical_efficiency']) - # todo: this may be optionals instead? - generation_system = GenerationSystem(equipment_id, - name, - None, - None, - equipment_type, - fuel_type, - None, - None, - None, - None, - None, - heating_efficiency, - None, - None, - None, - cooling_efficiency, - electricity_efficiency, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None) + if model_name == 'PV system': + generation_system = PvGenerationSystem(equipment_id, + model_name=model_name, + electricity_efficiency=electricity_efficiency, + ) + else: + generation_system = NonPvGenerationSystem(equipment_id, + model_name=model_name, + system_type=equipment_type, + fuel_type=fuel_type, + heat_efficiency=heating_efficiency, + cooling_efficiency=cooling_efficiency, + electricity_efficiency=electricity_efficiency, + ) _equipments.append(generation_system) storage = literal_eval(equipment['storage'].capitalize()) if storage: if equipment_type == 'electricity generator': - storage_system = ElectricalStorageSystem(equipment_id, None, None, None, 'electrical', None, None, None, None, - None, None, None) + storage_system = ElectricalStorageSystem(equipment_id) else: - storage_system = ThermalStorageSystem(equipment_id, None, None, None, 'thermal', None, None, None, None, None, - None) + storage_system = ThermalStorageSystem(equipment_id) _storages.append(storage_system) return _equipments, _storages @@ -111,7 +90,7 @@ class MontrealCustomCatalog(Catalog): for equipment in equipments: equipment_id = float(equipment['@id']) equipment_type = equipment['@type'] - name = equipment['name'] + model_name = equipment['name'] distribution_heat_losses = None if 'distribution_heat_losses' in equipment: distribution_heat_losses = float(equipment['distribution_heat_losses']['#text']) / 100 @@ -124,12 +103,11 @@ class MontrealCustomCatalog(Catalog): equipment['distribution_consumption_variable_flow']['#text']) / 100 distribution_system = DistributionSystem(equipment_id, - name, - equipment_type, - None, - distribution_consumption_fix_flow, - distribution_consumption_variable_flow, - distribution_heat_losses) + model_name=model_name, + system_type=equipment_type, + distribution_consumption_fix_flow=distribution_consumption_fix_flow, + distribution_consumption_variable_flow=distribution_consumption_variable_flow, + heat_losses=distribution_heat_losses) _equipments.append(distribution_system) return _equipments @@ -140,15 +118,15 @@ class MontrealCustomCatalog(Catalog): for equipment in equipments: equipment_id = float(equipment['@id']) equipment_type = equipment['@type'] - name = equipment['name'] + model_name = equipment['name'] parasitic_consumption = None if 'parasitic_consumption' in equipment: parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100 emission_system = EmissionSystem(equipment_id, - name, - equipment_type, - parasitic_consumption) + model_name=model_name, + system_type=equipment_type, + parasitic_energy_consumption=parasitic_consumption) _equipments.append(emission_system) return _equipments @@ -180,14 +158,13 @@ class MontrealCustomCatalog(Catalog): if int(equipment_archetype.id) == int(emission_equipment): _emission_equipments = [equipment_archetype] - _catalog_systems.append(System(self._lod, - system_id, - name, + _catalog_systems.append(System(system_id, demands, - _generation_equipments, - _distribution_equipments, - _emission_equipments, - _storage_equipments)) + name=name, + generation_systems=_generation_equipments, + distribution_systems=_distribution_equipments, + emission_systems=_emission_equipments, + energy_storage_systems=_storage_equipments)) return _catalog_systems def _load_archetypes(self): @@ -201,7 +178,7 @@ class MontrealCustomCatalog(Catalog): for system_archetype in self._catalog_systems: if int(system_archetype.id) == int(system): _systems.append(system_archetype) - _catalog_archetypes.append(Archetype(self._lod, name, _systems)) + _catalog_archetypes.append(Archetype(name, _systems)) return _catalog_archetypes def names(self, category=None): @@ -217,11 +194,9 @@ class MontrealCustomCatalog(Catalog): for system in self._content.systems: _names['systems'].append(system.name) for equipment in self._content.generation_equipments: - _names['generation_equipments'].append(equipment.name) + _names['generation_equipments'].append(equipment.model_name) for equipment in self._content.distribution_equipments: - _names['distribution_equipments'].append(equipment.name) - for equipment in self._content.emission_equipments: - _names['emission_equipments'].append(equipment.name) + _names['distribution_equipments'].append(equipment.model_name) else: _names = {category: []} if category.lower() == 'archetypes': @@ -232,13 +207,10 @@ class MontrealCustomCatalog(Catalog): _names[category].append(system.name) elif category.lower() == 'generation_equipments': for system in self._content.generation_equipments: - _names[category].append(system.name) + _names[category].append(system.model_name) elif category.lower() == 'distribution_equipments': for system in self._content.distribution_equipments: - _names[category].append(system.name) - elif category.lower() == 'emission_equipments': - for system in self._content.emission_equipments: - _names[category].append(system.name) + _names[category].append(system.model_name) else: raise ValueError(f'Unknown category [{category}]') return _names @@ -258,9 +230,6 @@ class MontrealCustomCatalog(Catalog): return self._content.generation_equipments if category.lower() == 'distribution_equipments': return self._content.distribution_equipments - if category.lower() == 'emission_equipments': - return self._content.emission_equipments - raise ValueError(f'Unknown category [{category}]') def get_entry(self, name): """ @@ -274,12 +243,9 @@ class MontrealCustomCatalog(Catalog): if entry.name.lower() == name.lower(): return entry for entry in self._content.generation_equipments: - if entry.name.lower() == name.lower(): + if entry.model_name.lower() == name.lower(): return entry for entry in self._content.distribution_equipments: - if entry.name.lower() == name.lower(): - return entry - for entry in self._content.emission_equipments: - if entry.name.lower() == name.lower(): + if entry.model_name.lower() == name.lower(): return entry raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 77c4287c..ea78ed97 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -10,7 +10,7 @@ import xmltodict from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content -from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +from hub.catalog_factories.data_models.energy_systems.non_pv_generation_system import NonPvGenerationSystem from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem from hub.catalog_factories.data_models.energy_systems.thermal_storage_system import ThermalStorageSystem from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves @@ -34,10 +34,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): self._system_archetypes = self._load_archetypes() self._content = Content(self._system_archetypes, self._systems, - self._generation_components, - None, - None, - self._storage_components) + generations=self._generation_components) def _load_generation_components(self): generation_components = [] @@ -47,53 +44,29 @@ class NorthAmericaEnergySystemCatalog(Catalog): templates = self._archetypes['EnergySystemCatalog']['energy_generation_components']['templateGenerationEquipments'] for boiler in boilers: boiler_id = boiler['@generation_id'] - boiler_name = boiler['@name'] + system_type = boiler['@name'] boiler_model_name = boiler['@modelName'] boiler_manufacturer = boiler['@manufacturer'] - system_type = 'boiler' boiler_fuel_type = boiler['@fuel'] boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) boiler_maximum_heat_output = float(boiler['@maximumHeatOutput']) boiler_minimum_heat_output = float(boiler['@minimumHeatOutput']) boiler_heat_efficiency = float(boiler['@nominalEfficiency']) - # todo: this may be optionals instead? - boiler_component = GenerationSystem(boiler_id, - boiler_name, - boiler_model_name, - boiler_manufacturer, - system_type, - boiler_fuel_type, - boiler_nominal_thermal_output, - boiler_maximum_heat_output, - boiler_minimum_heat_output, - None, - None, - boiler_heat_efficiency, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None) + boiler_component = NonPvGenerationSystem(boiler_id, + system_type, + model_name=boiler_model_name, + manufacturer=boiler_manufacturer, + fuel_type=boiler_fuel_type, + nominal_thermal_output=boiler_nominal_thermal_output, + maximum_heat_output=boiler_maximum_heat_output, + minimum_heat_output=boiler_minimum_heat_output, + heat_efficiency=boiler_heat_efficiency) generation_components.append(boiler_component) for heat_pump in heat_pumps: heat_pump_id = heat_pump['@generation_id'] - heat_pump_name = heat_pump['@name'] + system_type = heat_pump['@name'] heat_pump_model_name = heat_pump['@modelName'] heat_pump_manufacturer = heat_pump['@manufacturer'] - system_type = 'heat pump' heat_pump_fuel_type = heat_pump['@fuel'] heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) heat_pump_maximum_heat_output = float(heat_pump['@maximumHeatOutput']) @@ -111,40 +84,25 @@ class NorthAmericaEnergySystemCatalog(Catalog): coefficients = list(heat_pump['performance_curve']['coefficients'].values()) cop_curve = PerformanceCurves(cop_curve_type, dependant_variable, parameters, coefficients) - heat_pump_component = GenerationSystem(heat_pump_id, - heat_pump_name, - heat_pump_model_name, - heat_pump_manufacturer, - system_type, - heat_pump_fuel_type, - heat_pump_nominal_thermal_output, - heat_pump_maximum_heat_output, - heat_pump_minimum_heat_output, - heat_pump_source_medium, - heat_pump_supply_medium, - heat_pump_nominal_cop, - None, - None, - None, - None, - None, - None, - None, - None, - heat_pump_maximum_heat_supply_temperature, - heat_pump_minimum_heat_supply_temperature, - heat_pump_maximum_cooling_supply_temperature, - heat_pump_minimum_cooling_supply_temperature, - None, - None, - cop_curve, - None, - None, - None) + heat_pump_component = NonPvGenerationSystem(heat_pump_id, + system_type, + model_name=heat_pump_model_name, + manufacturer=heat_pump_manufacturer, + fuel_type=heat_pump_fuel_type, + nominal_thermal_output=heat_pump_nominal_thermal_output, + maximum_heat_output=heat_pump_maximum_heat_output, + minimum_heat_output=heat_pump_minimum_heat_output, + source_medium=heat_pump_source_medium, + supply_medium=heat_pump_supply_medium, + heat_efficiency=heat_pump_nominal_cop, + maximum_heat_supply_temperature=heat_pump_maximum_heat_supply_temperature, + minimum_heat_supply_temperature=heat_pump_minimum_heat_supply_temperature, + maximum_cooling_supply_temperature=heat_pump_maximum_cooling_supply_temperature, + minimum_cooling_supply_temperature=heat_pump_minimum_cooling_supply_temperature, + heat_efficiency_curve=cop_curve) generation_components.append(heat_pump_component) for pv in photovoltaics: pv_id = pv['@generation_id'] - pv_name = pv['@name'] pv_model_name = pv['@modelName'] pv_manufacturer = pv['@manufacturer'] pv_electricity_efficiency = pv['@nominalEfficiency'] @@ -159,19 +117,18 @@ class NorthAmericaEnergySystemCatalog(Catalog): height = float(pv['@height']) pv_component = PvGenerationSystem(pv_id, - pv_name, - pv_model_name, - pv_manufacturer, - pv_electricity_efficiency, - pv_nominal_electricity_output, - nominal_ambient_temperature, - nominal_cell_temperature, - nominal_radiation, - standard_test_condition_cell_temperature, - standard_test_condition_maximum_power, - cell_temperature_coefficient, - width, - height) + model_name=pv_model_name, + manufacturer=pv_manufacturer, + electricity_efficiency=pv_electricity_efficiency, + nominal_electricity_output=pv_nominal_electricity_output, + nominal_ambient_temperature=nominal_ambient_temperature, + nominal_cell_temperature=nominal_cell_temperature, + nominal_radiation=nominal_radiation, + standard_test_condition_cell_temperature=standard_test_condition_cell_temperature, + standard_test_condition_maximum_power=standard_test_condition_maximum_power, + cell_temperature_coefficient=cell_temperature_coefficient, + width=width, + height=height) generation_components.append(pv_component) for template in templates: system_id = template['@generation_id'] @@ -294,7 +251,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'tank', tank_material, thickness) -# the convention is from outside to inside + # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = ThermalStorageSystem(storage_id, name, @@ -324,7 +281,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(template['physical_characteristics']['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'tank', tank_material, thickness) -# the convention is from outside to inside + # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = ThermalStorageSystem(storage_id, name, diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index f24808f3..4d37d965 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -23,8 +23,6 @@ class TestSystemsCatalog(TestCase): self.assertEqual(7, len(generation_equipments['generation_equipments'])) distribution_equipments = catalog.names('distribution_equipments') self.assertEqual(8, len(distribution_equipments['distribution_equipments'])) - emission_equipments = catalog.names('emission_equipments') - self.assertEqual(3, len(emission_equipments['emission_equipments'])) with self.assertRaises(ValueError): catalog.names('unknown') -- 2.39.2 From 84f5ebe4a05705c21287d9804d1bac6e077b1299 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Tue, 10 Oct 2023 16:22:45 -0400 Subject: [PATCH 078/101] checking a problem with lists assignation where a single value should be assigned --- .../energy_systems/distribution_system.py | 31 +++++++++++++++++-- .../energy_systems/generation_system.py | 16 ++++++++-- .../non_pv_generation_system.py | 12 +++++-- .../energy_systems/pv_generation_system.py | 11 +++++-- .../data_models/energy_systems/system.py | 7 ++--- .../energy_systems/montreal_custom_catalog.py | 25 ++++++++------- tests/test_systems_catalog.py | 2 -- 7 files changed, 74 insertions(+), 30 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index b6836086..2483ccd2 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -9,7 +9,8 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from typing import Union, List from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem - +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem +from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem class DistributionSystem: """ @@ -18,7 +19,7 @@ class DistributionSystem: def __init__(self, system_id, model_name=None, system_type=None, supply_temperature=None, distribution_consumption_fix_flow=None, distribution_consumption_variable_flow=None, heat_losses=None, - generation_systems=None): + generation_systems=None, energy_storage_systems=None, emission_systems=None): self._system_id = system_id self._model_name = model_name self._type = system_type @@ -27,6 +28,8 @@ class DistributionSystem: self._distribution_consumption_variable_flow = distribution_consumption_variable_flow self._heat_losses = heat_losses self._generation_systems = generation_systems + self._energy_storage_systems = energy_storage_systems + self._emission_systems = emission_systems @property def id(self): @@ -93,10 +96,30 @@ class DistributionSystem: """ return self._generation_systems + @property + def energy_storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: + """ + Get energy storage systems connected to this distribution system + :return: [EnergyStorageSystem] + """ + return self._energy_storage_systems + + @property + def emission_systems(self) -> Union[None, List[EmissionSystem]]: + """ + Get energy emission systems connected to this distribution system + :return: [EmissionSystem] + """ + return self._emission_systems + def to_dictionary(self): """Class content to dictionary""" _generation_systems = [_generation_system.to_dictionary() for _generation_system in self.generation_systems] if self.generation_systems is not None else None + _energy_storage_systems = [_energy_storage_system.to_dictionary() for _energy_storage_system in + self.energy_storage_systems] if self.energy_storage_systems is not None else None + _emission_systems = [_emission_system.to_dictionary() for _emission_system in + self.emission_systems] if self.emission_systems is not None else None content = { 'Layer': { @@ -107,7 +130,9 @@ class DistributionSystem: 'distribution consumption if fix flow over peak power [W/W]': self.distribution_consumption_fix_flow, 'distribution consumption if variable flow over peak power [J/J]': self.distribution_consumption_variable_flow, 'heat losses per energy produced [J/J]': self.heat_losses, - 'generation systems connected': _generation_systems + 'generation systems connected': _generation_systems, + 'energy storage systems connected': _energy_storage_systems, + 'emission systems connected': _emission_systems } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index 3849a039..bb0ba255 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -9,6 +9,8 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from abc import ABC from typing import List, Union, TypeVar +from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem + DistributionSystem = TypeVar('DistributionSystem') @@ -17,12 +19,14 @@ class GenerationSystem(ABC): Heat Generation system class """ - def __init__(self, system_id, model_name=None, manufacturer=None, fuel_type=None, distribution_systems=None): + def __init__(self, system_id, model_name=None, manufacturer=None, fuel_type=None, + distribution_systems=None, energy_storage_systems=None): self._system_id = system_id self._model_name = model_name self._manufacturer = manufacturer self._fuel_type = fuel_type self._distribution_systems = distribution_systems + self._energy_storage_systems = energy_storage_systems @property def id(self): @@ -68,10 +72,18 @@ class GenerationSystem(ABC): def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ Get distributions systems connected to this generation system - :return: [DistributionSystems] + :return: [DistributionSystem] """ return self._distribution_systems + @property + def energy_storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: + """ + Get energy storage systems connected to this generation system + :return: [EnergyStorageSystem] + """ + return self._energy_storage_systems + def to_dictionary(self): """Class content to dictionary""" raise NotImplementedError diff --git a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py index b9780df5..87e688d3 100644 --- a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py @@ -24,8 +24,10 @@ class NonPvGenerationSystem(GenerationSystem): maximum_heat_supply_temperature=None, minimum_heat_supply_temperature=None, maximum_cooling_supply_temperature=None, minimum_cooling_supply_temperature=None, heat_output_curve=None, heat_fuel_consumption_curve=None, heat_efficiency_curve=None, cooling_output_curve=None, - cooling_fuel_consumption_curve=None, cooling_efficiency_curve=None): - super().__init__(system_id=system_id, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type) + cooling_fuel_consumption_curve=None, cooling_efficiency_curve=None, + distribution_systems=None, energy_storage_systems=None): + super().__init__(system_id=system_id, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type, + distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) self._system_type = system_type self._nominal_thermal_output = nominal_thermal_output self._maximum_heat_output = maximum_heat_output @@ -256,6 +258,9 @@ class NonPvGenerationSystem(GenerationSystem): """Class content to dictionary""" _distribution_systems = [_distribution_system.to_dictionary() for _distribution_system in self.distribution_systems] if self.distribution_systems is not None else None + _energy_storage_systems = [_energy_storage_system.to_dictionary() for _energy_storage_system in + self.energy_storage_systems] if self.energy_storage_systems is not None else None + content = { 'Energy Generation component': { @@ -288,7 +293,8 @@ class NonPvGenerationSystem(GenerationSystem): 'cooling output curve': self.cooling_output_curve, 'cooling fuel consumption curve': self.cooling_fuel_consumption_curve, 'cooling efficiency curve': self.cooling_efficiency_curve, - 'distribution systems connected': _distribution_systems + 'distribution systems connected': _distribution_systems, + 'storage systems connected': _energy_storage_systems } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index ce037239..15965912 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -17,9 +17,11 @@ class PvGenerationSystem(GenerationSystem): def __init__(self, system_id, model_name=None, manufacturer=None, electricity_efficiency=None, nominal_electricity_output=None, nominal_ambient_temperature=None, nominal_cell_temperature=None, nominal_radiation=None, standard_test_condition_cell_temperature=None, - standard_test_condition_maximum_power=None, cell_temperature_coefficient=None, width=None, height=None): + standard_test_condition_maximum_power=None, cell_temperature_coefficient=None, width=None, height=None, + distribution_systems=None, energy_storage_systems=None): super().__init__(system_id=system_id, model_name=model_name, - manufacturer=manufacturer, fuel_type='renewable') + manufacturer=manufacturer, fuel_type='renewable', distribution_systems=distribution_systems, + energy_storage_systems=energy_storage_systems) self._system_type = 'PV' self._electricity_efficiency = electricity_efficiency self._nominal_electricity_output = nominal_electricity_output @@ -124,6 +126,8 @@ class PvGenerationSystem(GenerationSystem): """Class content to dictionary""" _distribution_systems = [_distribution_system.to_dictionary() for _distribution_system in self.distribution_systems] if self.distribution_systems is not None else None + _energy_storage_systems = [_energy_storage_system.to_dictionary() for _energy_storage_system in + self.energy_storage_systems] if self.energy_storage_systems is not None else None content = { 'Energy Generation component': { @@ -142,7 +146,8 @@ class PvGenerationSystem(GenerationSystem): 'cell temperature coefficient': self.cell_temperature_coefficient, 'width': self.width, 'height': self.height, - 'distribution systems connected': _distribution_systems + 'distribution systems connected': _distribution_systems, + 'storage systems connected': _energy_storage_systems } } return content diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 3479e0dc..962c03dd 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -24,16 +24,12 @@ class System: name=None, generation_systems=None, distribution_systems=None, - emission_systems=None, - energy_storage_systems=None, configuration_schema=None): self._system_id = system_id self._name = name self._demand_types = demand_types self._distribution_systems = distribution_systems - self._emission_systems = emission_systems self._generation_systems = generation_systems - self._energy_storage_systems = energy_storage_systems self._configuration_schema = configuration_schema @property @@ -96,7 +92,8 @@ class System: 'name': self.name, 'demand types': self.demand_types, 'generation system(s)': _generation_systems, - 'distribution system(s)': _distribution_systems + 'distribution system(s)': _distribution_systems, + 'configuration schema path': self.configuration_schema } } return content diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index c8ba7011..3b31cd81 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -30,7 +30,7 @@ class MontrealCustomCatalog(Catalog): self._archetypes = xmltodict.parse(xml.read(), force_list=('system', 'system_cluster', 'equipment', 'demand', 'system_id')) - self._catalog_generation_equipments, self._catalog_storage_equipments = self._load_generation_and_storage_equipments() + self._catalog_generation_equipments = self._load_generation_equipments() self._catalog_distribution_equipments = self._load_distribution_equipments() self._catalog_emission_equipments = self._load_emission_equipments() self._catalog_systems = self._load_systems() @@ -41,7 +41,7 @@ class MontrealCustomCatalog(Catalog): self._catalog_generation_equipments, self._catalog_distribution_equipments) - def _load_generation_and_storage_equipments(self): + def _load_generation_equipments(self): _equipments = [] _storages = [] equipments = self._archetypes['catalog']['generation_equipments']['equipment'] @@ -73,16 +73,16 @@ class MontrealCustomCatalog(Catalog): cooling_efficiency=cooling_efficiency, electricity_efficiency=electricity_efficiency, ) - _equipments.append(generation_system) storage = literal_eval(equipment['storage'].capitalize()) if storage: if equipment_type == 'electricity generator': storage_system = ElectricalStorageSystem(equipment_id) else: storage_system = ThermalStorageSystem(equipment_id) - _storages.append(storage_system) + generation_system.energy_storage_systems = [storage_system] + _equipments.append(generation_system) - return _equipments, _storages + return _equipments def _load_distribution_equipments(self): _equipments = [] @@ -143,10 +143,6 @@ class MontrealCustomCatalog(Catalog): for equipment_archetype in self._catalog_generation_equipments: if int(equipment_archetype.id) == int(generation_equipment): _generation_equipments = [equipment_archetype] - _storage_equipments = None - for equipment_archetype in self._catalog_storage_equipments: - if int(equipment_archetype.id) == int(generation_equipment): - _storage_equipments = [equipment_archetype] distribution_equipment = system['equipments']['distribution_id'] _distribution_equipments = None for equipment_archetype in self._catalog_distribution_equipments: @@ -158,13 +154,18 @@ class MontrealCustomCatalog(Catalog): if int(equipment_archetype.id) == int(emission_equipment): _emission_equipments = [equipment_archetype] + + + + + + + _catalog_systems.append(System(system_id, demands, name=name, generation_systems=_generation_equipments, - distribution_systems=_distribution_equipments, - emission_systems=_emission_equipments, - energy_storage_systems=_storage_equipments)) + distribution_systems=_distribution_equipments)) return _catalog_systems def _load_archetypes(self): diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 4d37d965..563e1b7d 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -31,8 +31,6 @@ class TestSystemsCatalog(TestCase): for value in catalog_categories[category]: catalog.get_entry(value) - print(catalog.entries()) - with self.assertRaises(IndexError): catalog.get_entry('unknown') -- 2.39.2 From 57ee3e734bd59bfa591659ea3dfb45c67f798105 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Wed, 11 Oct 2023 09:14:38 -0400 Subject: [PATCH 079/101] finished generic system and system parts --- .../energy_systems/distribution_system.py | 1 + .../energy_systems/energy_storage_system.py | 2 +- .../energy_systems/generation_system.py | 6 +- .../non_pv_generation_system.py | 18 +- .../energy_systems/pv_generation_system.py | 8 +- .../data_models/energy_systems/system.py | 2 +- .../north_america_energy_system_catalog.py | 4 +- .../generic_distribution_system.py | 74 +++ .../generic_electrical_storage_system.py | 104 +++++ .../energy_systems/generic_emission_system.py | 34 ++ .../energy_systems/generic_energy_system.py | 105 ++--- .../generic_generation_system.py | 394 +++------------- .../generic_non_pv_generation_system.py | 428 ++++++++++++++++++ .../generic_pv_generation_system.py | 187 ++++++++ .../energy_systems/generic_storage_system.py | 60 ++- .../generic_thermal_storage_system.py | 88 ++++ 16 files changed, 1106 insertions(+), 409 deletions(-) create mode 100644 hub/city_model_structure/energy_systems/generic_electrical_storage_system.py create mode 100644 hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py create mode 100644 hub/city_model_structure/energy_systems/generic_pv_generation_system.py create mode 100644 hub/city_model_structure/energy_systems/generic_thermal_storage_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index 2483ccd2..8654b533 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -12,6 +12,7 @@ from hub.catalog_factories.data_models.energy_systems.generation_system import G from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem + class DistributionSystem: """ Distribution system class diff --git a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py index 56a5667d..909fb1ef 100644 --- a/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/energy_storage_system.py @@ -42,7 +42,7 @@ class EnergyStorageSystem(ABC): def model_name(self): """ Get system model - :return: float + :return: string """ return self._model_name diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index bb0ba255..1b43a183 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -6,12 +6,12 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ +from __future__ import annotations from abc import ABC -from typing import List, Union, TypeVar +from typing import List, Union from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem - -DistributionSystem = TypeVar('DistributionSystem') +from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem class GenerationSystem(ABC): diff --git a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py index 87e688d3..7f622382 100644 --- a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py @@ -17,7 +17,7 @@ class NonPvGenerationSystem(GenerationSystem): """ def __init__(self, system_id, system_type, model_name=None, manufacturer=None, fuel_type=None, - nominal_thermal_output=None, maximum_heat_output=None, minimum_heat_output=None, source_medium=None, + nominal_heat_output=None, maximum_heat_output=None, minimum_heat_output=None, source_medium=None, supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, maximum_cooling_output=None, minimum_cooling_output=None, cooling_efficiency=None, electricity_efficiency=None, source_temperature=None, source_mass_flow=None, nominal_electricity_output=None, @@ -29,7 +29,7 @@ class NonPvGenerationSystem(GenerationSystem): super().__init__(system_id=system_id, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type, distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) self._system_type = system_type - self._nominal_thermal_output = nominal_thermal_output + self._nominal_heat_output = nominal_heat_output self._maximum_heat_output = maximum_heat_output self._minimum_heat_output = minimum_heat_output self._heat_efficiency = heat_efficiency @@ -63,12 +63,12 @@ class NonPvGenerationSystem(GenerationSystem): return self._system_type @property - def nominal_thermal_output(self): + def nominal_heat_output(self): """ - Get nominal_thermal_output of heat generation devices in kW + Get nominal heat output of heat generation devices in W :return: float """ - return self._nominal_thermal_output + return self._nominal_heat_output @property def maximum_heat_output(self): @@ -90,7 +90,7 @@ class NonPvGenerationSystem(GenerationSystem): def source_medium(self): """ Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] - :return: [string] + :return: string """ return self._source_medium @@ -113,7 +113,7 @@ class NonPvGenerationSystem(GenerationSystem): @property def nominal_cooling_output(self): """ - Get nominal_thermal_output of heat generation devices in kW + Get nominal cooling output of heat generation devices in W :return: float """ return self._nominal_cooling_output @@ -169,7 +169,7 @@ class NonPvGenerationSystem(GenerationSystem): @property def nominal_electricity_output(self): """ - Get nominal_power_output of electricity generation devices or inverters in kW + Get nominal_power_output of electricity generation devices or inverters in W :return: float """ return self._nominal_electricity_output @@ -269,7 +269,7 @@ class NonPvGenerationSystem(GenerationSystem): 'manufacturer': self.manufacturer, 'type': self.system_type, 'fuel type': self.fuel_type, - 'nominal thermal output [W]': self.nominal_thermal_output, + 'nominal heat output [W]': self.nominal_heat_output, 'maximum heat output [W]': self.maximum_heat_output, 'minimum heat output [W]': self.minimum_heat_output, 'source medium': self.source_medium, diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 15965912..61365223 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -45,7 +45,7 @@ class PvGenerationSystem(GenerationSystem): @property def nominal_electricity_output(self): """ - Get nominal_power_output of electricity generation devices or inverters in kW + Get nominal_power_output of electricity generation devices or inverters in W :return: float """ return self._nominal_electricity_output @@ -93,7 +93,7 @@ class PvGenerationSystem(GenerationSystem): @property def standard_test_condition_maximum_power(self): """ - Get standard test condition maximum power of PV panels in kW + Get standard test condition maximum power of PV panels in W :return: float """ return self._standard_test_condition_maximum_power @@ -137,12 +137,12 @@ class PvGenerationSystem(GenerationSystem): 'type': self.system_type, 'fuel type': self.fuel_type, 'electricity efficiency': self.electricity_efficiency, - 'nominal power output [kW]': self.nominal_electricity_output, + 'nominal power output [W]': self.nominal_electricity_output, 'nominal ambient temperature [Celsius]': self.nominal_ambient_temperature, 'nominal cell temperature [Celsius]': self.nominal_cell_temperature, 'nominal radiation [W/m2]': self.nominal_radiation, 'standard test condition cell temperature [Celsius]': self.standard_test_condition_cell_temperature, - 'standard test condition maximum power [kW]': self.standard_test_condition_maximum_power, + 'standard test condition maximum power [W]': self.standard_test_condition_maximum_power, 'cell temperature coefficient': self.cell_temperature_coefficient, 'width': self.width, 'height': self.height, diff --git a/hub/catalog_factories/data_models/energy_systems/system.py b/hub/catalog_factories/data_models/energy_systems/system.py index 962c03dd..bc162982 100644 --- a/hub/catalog_factories/data_models/energy_systems/system.py +++ b/hub/catalog_factories/data_models/energy_systems/system.py @@ -28,8 +28,8 @@ class System: self._system_id = system_id self._name = name self._demand_types = demand_types - self._distribution_systems = distribution_systems self._generation_systems = generation_systems + self._distribution_systems = distribution_systems self._configuration_schema = configuration_schema @property diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index ea78ed97..ee7873cc 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -57,7 +57,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): model_name=boiler_model_name, manufacturer=boiler_manufacturer, fuel_type=boiler_fuel_type, - nominal_thermal_output=boiler_nominal_thermal_output, + nominal_heat_output=boiler_nominal_thermal_output, maximum_heat_output=boiler_maximum_heat_output, minimum_heat_output=boiler_minimum_heat_output, heat_efficiency=boiler_heat_efficiency) @@ -89,7 +89,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): model_name=heat_pump_model_name, manufacturer=heat_pump_manufacturer, fuel_type=heat_pump_fuel_type, - nominal_thermal_output=heat_pump_nominal_thermal_output, + nominal_heat_output=heat_pump_nominal_thermal_output, maximum_heat_output=heat_pump_maximum_heat_output, minimum_heat_output=heat_pump_minimum_heat_output, source_medium=heat_pump_source_medium, diff --git a/hub/city_model_structure/energy_systems/generic_distribution_system.py b/hub/city_model_structure/energy_systems/generic_distribution_system.py index 046b8ba9..832fb589 100644 --- a/hub/city_model_structure/energy_systems/generic_distribution_system.py +++ b/hub/city_model_structure/energy_systems/generic_distribution_system.py @@ -5,17 +5,43 @@ Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ +from typing import Union, List + +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem + class GenericDistributionSystem: """ GenericDistributionSystem class """ def __init__(self): + self._model_name = None self._type = None self._supply_temperature = None self._distribution_consumption_fix_flow = None self._distribution_consumption_variable_flow = None self._heat_losses = None + self._generic_generation_systems = None + self._generic_storage_systems = None + self._generic_emission_systems = None + + @property + def model_name(self): + """ + Get model name + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set model name + :param value: string + """ + self._model_name = value @property def type(self): @@ -98,3 +124,51 @@ class GenericDistributionSystem: :param value: float """ self._heat_losses = value + + @property + def generic_generation_systems(self) -> Union[None, List[GenericGenerationSystem]]: + """ + Get generation systems connected to the distribution system + :return: [generic_generation_systems] + """ + return self._generic_generation_systems + + @generic_generation_systems.setter + def generic_generation_systems(self, value): + """ + Set generation systems connected to the distribution system + :param value: [generic_generation_systems] + """ + self._generic_generation_systems = value + + @property + def generic_storage_systems(self) -> Union[None, List[GenericStorageSystem]]: + """ + Get energy storage systems connected to this distribution system + :return: [GenericStorageSystem] + """ + return self._generic_storage_systems + + @generic_storage_systems.setter + def generic_storage_systems(self, value): + """ + Set energy storage systems connected to this distribution system + :param value: [GenericStorageSystem] + """ + self._generic_storage_systems = value + + @property + def generic_emission_systems(self) -> Union[None, List[GenericEmissionSystem]]: + """ + Get energy emission systems connected to this distribution system + :return: [GenericEmissionSystem] + """ + return self._generic_emission_systems + + @generic_emission_systems.setter + def generic_emission_systems(self, value): + """ + Set energy emission systems connected to this distribution system + :param value: [GenericEmissionSystem] + """ + self._generic_emission_systems = value diff --git a/hub/city_model_structure/energy_systems/generic_electrical_storage_system.py b/hub/city_model_structure/energy_systems/generic_electrical_storage_system.py new file mode 100644 index 00000000..0eb5419d --- /dev/null +++ b/hub/city_model_structure/energy_systems/generic_electrical_storage_system.py @@ -0,0 +1,104 @@ +""" +Generic electrical storage system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem + + +class GenericElectricalStorageSystem(GenericStorageSystem): + """" + Generic Electrical Storage System Class + """ + + def __init__(self): + + super().__init__() + self._rated_output_power = None + self._nominal_efficiency = None + self._battery_voltage = None + self._depth_of_discharge = None + self._self_discharge_rate = None + + @property + def rated_output_power(self): + """ + Get the rated output power of storage system in Watts + :return: float + """ + return self._rated_output_power + + @rated_output_power.setter + def rated_output_power(self, value): + """ + Set the rated output power of storage system in Watts + :param value: float + """ + self._rated_output_power = value + + @property + def nominal_efficiency(self): + """ + Get the nominal efficiency of the storage system + :return: float + """ + return self._nominal_efficiency + + @nominal_efficiency.setter + def nominal_efficiency(self, value): + """ + Set the nominal efficiency of the storage system + :param value: float + """ + self._nominal_efficiency = value + + @property + def battery_voltage(self): + """ + Get the battery voltage in Volts + :return: float + """ + return self._battery_voltage + + @battery_voltage.setter + def battery_voltage(self, value): + """ + Set the battery voltage in Volts + :param value: float + """ + self._battery_voltage = value + + @property + def depth_of_discharge(self): + """ + Get the depth of discharge as a percentage + :return: float + """ + return self._depth_of_discharge + + @depth_of_discharge.setter + def depth_of_discharge(self, value): + """ + Set the depth of discharge as a percentage + :param value: float + """ + self._depth_of_discharge = value + + @property + def self_discharge_rate(self): + """ + Get the self discharge rate of battery as a percentage + :return: float + """ + return self._self_discharge_rate + + @self_discharge_rate.setter + def self_discharge_rate(self, value): + """ + Set the self discharge rate of battery as a percentage + :param value: float + """ + self._self_discharge_rate = value diff --git a/hub/city_model_structure/energy_systems/generic_emission_system.py b/hub/city_model_structure/energy_systems/generic_emission_system.py index afc6b1e0..7fb25507 100644 --- a/hub/city_model_structure/energy_systems/generic_emission_system.py +++ b/hub/city_model_structure/energy_systems/generic_emission_system.py @@ -11,8 +11,42 @@ class GenericEmissionSystem: GenericEmissionSystem class """ def __init__(self): + self._model_name = None + self._type = None self._parasitic_energy_consumption = None + @property + def model_name(self): + """ + Get model name + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set model name + :param value: string + """ + self._model_name = value + + @property + def type(self): + """ + Get type + :return: string + """ + return self._type + + @type.setter + def type(self, value): + """ + Set type + :param value: string + """ + self._type = value + @property def parasitic_energy_consumption(self): """ diff --git a/hub/city_model_structure/energy_systems/generic_energy_system.py b/hub/city_model_structure/energy_systems/generic_energy_system.py index 83661fb8..b18a6a43 100644 --- a/hub/city_model_structure/energy_systems/generic_energy_system.py +++ b/hub/city_model_structure/energy_systems/generic_energy_system.py @@ -6,41 +6,22 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from typing import Union, List +from pathlib import Path from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem -from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem + class GenericEnergySystem: """ GenericEnergySystem class """ def __init__(self): - self._name = None self._demand_types = None - self._generation_system = None - self._distribution_system = None - self._emission_system = None - self._connected_city_objects = None - self._energy_storage_system = None - - - @property - def name(self): - """ - Get energy system name - :return: str - """ - return self._name - - @name.setter - def name(self, value): - """ - Set energy system name - :param value: - """ - self._name = value + self._name = None + self._generation_systems = None + self._distribution_systems = None + self._configuration_schema = None @property def demand_types(self): @@ -58,66 +39,66 @@ class GenericEnergySystem: """ self._demand_types = value + @property + def name(self): + """ + Get energy system name + :return: str + """ + return self._name + + @name.setter + def name(self, value): + """ + Set energy system name + :param value: + """ + self._name = value + @property def generation_systems(self) -> List[GenericGenerationSystem]: """ - Get generation system - :return: GenerationSystem + Get generation systems + :return: [GenerationSystem] """ - return self._generation_system + return self._generation_systems @generation_systems.setter def generation_systems(self, value): """ - Set generation system - :return: GenerationSystem + Set generation systems + :return: [GenerationSystem] """ - self._generation_system = value + self._generation_systems = value @property def distribution_systems(self) -> Union[None, List[GenericDistributionSystem]]: """ - Get distribution system - :return: DistributionSystem + Get distribution systems + :return: [DistributionSystem] """ - return self._distribution_system + return self._distribution_systems @distribution_systems.setter def distribution_systems(self, value): """ - Set distribution system - :param value: DistributionSystem + Set distribution systems + :param value: [DistributionSystem] """ - self._distribution_system = value + self._distribution_systems = value @property - def emission_systems(self) -> Union[None, List[GenericEmissionSystem]]: + def configuration_schema(self) -> Path: """ - Get emission system - :return: EmissionSystem + Get the schema of the system configuration + :return: Path """ - return self._emission_system + return self._configuration_schema - @emission_systems.setter - def emission_systems(self, value): + @configuration_schema.setter + def configuration_schema(self, value): """ - Set emission system - :param value: EmissionSystem + Set the schema of the system configuration + :param value: Path """ - self._emission_system = value - - @property - def energy_storage_systems(self) -> Union[None, List[GenericStorageSystem]]: - """ - Get storage system - :return: EnergyStorageSystem - """ - return self._energy_storage_system - - @energy_storage_systems.setter - def energy_storage_systems(self, value): - """ - Set storage system - :return: EnergyStorageSystem - """ - self._energy_storage_system = value + self._configuration_schema = value diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py index 32cefdd0..0d98e9cc 100644 --- a/hub/city_model_structure/energy_systems/generic_generation_system.py +++ b/hub/city_model_structure/energy_systems/generic_generation_system.py @@ -1,58 +1,78 @@ """ -Energy System catalog heat generation system +Generic energy generation system (abstract class) SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca -Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from __future__ import annotations -from typing import Union -from hub.city_model_structure.energy_systems.performance_curve import PerformanceCurves +from abc import ABC +from typing import Union, List + +from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem -class GenericGenerationSystem: +class GenericGenerationSystem(ABC): """ GenericGenerationSystem class """ def __init__(self): - self._type = None + self._system_type = None + self._model_name = None + self._manufacturer = None self._fuel_type = None - self._source_types = None - self._heat_efficiency = None - self._cooling_efficiency = None - self._electricity_efficiency = None - self._source_temperature = None - self._source_mass_flow = None - self._storage = None - self._auxiliary_equipment = None - self._supply_medium = None - self._maximum_heat_supply_temperature = None - self._minimum_heat_supply_temperature = None - self._maximum_cooling_supply_temperature = None - self._minimum_cooling_supply_temperature = None - self._heat_output_curve = None - self._heat_fuel_consumption_curve = None - self._heat_efficiency_curve = None - self._cooling_output_curve = None - self._cooling_fuel_consumption_curve = None - self._cooling_efficiency_curve = None + self._generic_distribution_systems = None + self._generic_storage_systems = None @property - def type(self): + def system_type(self): """ - Get system type + Get type :return: string """ - return self._type + return self._system_type - @type.setter - def type(self, value): + @system_type.setter + def system_type(self, value): """ - Set system type + Set type :param value: string """ - self._type = value + self._system_type = value + + @property + def model_name(self): + """ + Get model name + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set model name + :param value: string + """ + self._model_name = value + + @property + def manufacturer(self): + """ + Get manufacturer's name + :return: string + """ + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set manufacturer's name + :param value: string + """ + self._manufacturer = value @property def fuel_type(self): @@ -71,305 +91,33 @@ class GenericGenerationSystem: self._fuel_type = value @property - def source_types(self): + def generic_distribution_systems(self) -> Union[None, List[GenericDistributionSystem]]: """ - Get source_type from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity] - :return: [string] + Get distributions systems connected to this generation system + :return: [GenericDistributionSystem] """ - return self._source_types + return self._generic_distribution_systems - @source_types.setter - def source_types(self, value): + @generic_distribution_systems.setter + def generic_distribution_systems(self, value): """ - Set source_type from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity] - :param value: [string] + Set distributions systems connected to this generation system + :param value: [GenericDistributionSystem] """ - self._source_types = value + self._generic_distribution_systems = value @property - def heat_efficiency(self): + def generic_storage_systems(self) -> Union[None, List[GenericStorageSystem]]: """ - Get heat_efficiency - :return: float + Get energy storage systems connected to this generation system + :return: [GenericStorageSystem] """ - return self._heat_efficiency + return self._generic_storage_systems - @heat_efficiency.setter - def heat_efficiency(self, value): + @generic_storage_systems.setter + def generic_storage_systems(self, value): """ - Set heat_efficiency - :param value: float + Set energy storage systems connected to this generation system + :param value: [GenericStorageSystem] """ - self._heat_efficiency = value - - @property - def cooling_efficiency(self): - """ - Get cooling_efficiency - :return: float - """ - return self._cooling_efficiency - - @cooling_efficiency.setter - def cooling_efficiency(self, value): - """ - Set cooling_efficiency - :param value: float - """ - self._cooling_efficiency = value - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._electricity_efficiency - - @electricity_efficiency.setter - def electricity_efficiency(self, value): - """ - Set electricity_efficiency - :param value: float - """ - self._electricity_efficiency = value - - @property - def source_temperature(self): - """ - Get source_temperature in degree Celsius - :return: float - """ - return self._source_temperature - - @source_temperature.setter - def source_temperature(self, value): - """ - Set source_temperature in degree Celsius - :param value: float - """ - self._source_temperature = value - - @property - def source_mass_flow(self): - """ - Get source_mass_flow in kg/s - :return: float - """ - return self._source_mass_flow - - @source_mass_flow.setter - def source_mass_flow(self, value): - """ - Set source_mass_flow in kg/s - :param value: float - """ - self._source_mass_flow = value - - @property - def storage(self): - """ - Get boolean storage exists - :return: bool - """ - return self._storage - - @storage.setter - def storage(self, value): - """ - Set boolean storage exists - :return: bool - """ - self._storage = value - - @property - def auxiliary_equipment(self) -> Union[None, GenericGenerationSystem]: - """ - Get auxiliary_equipment - :return: GenerationSystem - """ - return self._auxiliary_equipment - - @auxiliary_equipment.setter - def auxiliary_equipment(self, value): - """ - Set auxiliary_equipment - :return: GenerationSystem - """ - self._auxiliary_equipment = value - - @property - def supply_medium(self): - """ - Get the supply medium from ['air', 'water'] - :return: string - """ - return self._supply_medium - - @supply_medium.setter - def supply_medium(self, value): - """ - Set the supply medium from ['air', 'water'] - :param value: string - """ - self._supply_medium = value - - @property - def maximum_heat_supply_temperature(self): - """ - Get maximum heating supply temperature in degree Celsius - :return: float - """ - return self._maximum_heat_supply_temperature - - @maximum_heat_supply_temperature.setter - def maximum_heat_supply_temperature(self, value): - """ - Set maximum heating supply temperature in degree Celsius - :param value: float - """ - self._maximum_heat_supply_temperature = value - - @property - def minimum_heat_supply_temperature(self): - """ - Get minimum heating supply temperature in degree Celsius - :return: float - """ - return self._minimum_heat_supply_temperature - - @minimum_heat_supply_temperature.setter - def minimum_heat_supply_temperature(self, value): - """ - Set minimum heating supply temperature in degree Celsius - :param value: float - """ - self._minimum_heat_supply_temperature = value - - @property - def maximum_cooling_supply_temperature(self): - """ - Get maximum cooling supply temperature in degree Celsius - :return: float - """ - return self._maximum_cooling_supply_temperature - - @maximum_cooling_supply_temperature.setter - def maximum_cooling_supply_temperature(self, value): - """ - Set maximum cooling supply temperature in degree Celsius - :param value: float - """ - self._maximum_cooling_supply_temperature = value - - @property - def minimum_cooling_supply_temperature(self): - """ - Get minimum cooling supply temperature in degree Celsius - :return: float - """ - return self._minimum_cooling_supply_temperature - - @minimum_cooling_supply_temperature.setter - def minimum_cooling_supply_temperature(self, value): - """ - Set minimum cooling supply temperature in degree Celsius - :param value: float - """ - self._minimum_cooling_supply_temperature = value - - @property - def heat_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_output_curve - - @heat_output_curve.setter - def heat_output_curve(self, value): - """ - Set the heat output curve of the heat generation device - :return: PerformanceCurve - """ - self._heat_output_curve = value - - @property - def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_fuel_consumption_curve - - @heat_fuel_consumption_curve.setter - def heat_fuel_consumption_curve(self, value): - """ - Set the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - self._heat_fuel_consumption_curve = value - - @property - def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_efficiency_curve - - @heat_efficiency_curve.setter - def heat_efficiency_curve(self, value): - """ - Set the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - self._heat_efficiency_curve = value - - @property - def cooling_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the cooling output curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_output_curve - - @cooling_output_curve.setter - def cooling_output_curve(self, value): - """ - Set the cooling output curve of the heat generation device - :return: PerformanceCurve - """ - self._cooling_output_curve = value - - @property - def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_fuel_consumption_curve - - @cooling_fuel_consumption_curve.setter - def cooling_fuel_consumption_curve(self, value): - """ - Set the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - self._cooling_fuel_consumption_curve = value - - @property - def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_efficiency_curve - - @cooling_efficiency_curve.setter - def cooling_efficiency_curve(self, value): - """ - Set the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - self._cooling_efficiency_curve = value + self._generic_storage_systems = value diff --git a/hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py b/hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py new file mode 100644 index 00000000..8f5f8068 --- /dev/null +++ b/hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py @@ -0,0 +1,428 @@ +""" +Generic non PV energy generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from typing import Union + +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.performance_curve import PerformanceCurves + + +class GenericNonPvGenerationSystem(GenericGenerationSystem): + """ + GenericNonPvGenerationSystem class + """ + def __init__(self): + super().__init__() + self._nominal_heat_output = None + self._maximum_heat_output = None + self._minimum_heat_output = None + self._heat_efficiency = None + self._nominal_cooling_output = None + self._maximum_cooling_output = None + self._minimum_cooling_output = None + self._cooling_efficiency = None + self._electricity_efficiency = None + self._nominal_electricity_output = None + self._source_medium = None + self._source_temperature = None + self._source_mass_flow = None + self._supply_medium = None + self._maximum_heat_supply_temperature = None + self._minimum_heat_supply_temperature = None + self._maximum_cooling_supply_temperature = None + self._minimum_cooling_supply_temperature = None + self._heat_output_curve = None + self._heat_fuel_consumption_curve = None + self._heat_efficiency_curve = None + self._cooling_output_curve = None + self._cooling_fuel_consumption_curve = None + self._cooling_efficiency_curve = None + + @property + def nominal_heat_output(self): + """ + Get nominal heat output of heat generation devices in W + :return: float + """ + return self._nominal_heat_output + + @nominal_heat_output.setter + def nominal_heat_output(self, value): + """ + Set nominal heat output of heat generation devices in W + :param value: float + """ + self._nominal_heat_output = value + + @property + def maximum_heat_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_heat_output + + @maximum_heat_output.setter + def maximum_heat_output(self, value): + """ + Set maximum heat output of heat generation devices in W + :param value: float + """ + self._maximum_heat_output = value + + @property + def minimum_heat_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_heat_output + + @minimum_heat_output.setter + def minimum_heat_output(self, value): + """ + Set minimum heat output of heat generation devices in W + :param value: float + """ + self._minimum_heat_output = value + + @property + def source_medium(self): + """ + Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] + :return: string + """ + return self._source_medium + + @source_medium.setter + def source_medium(self, value): + """ + Set source medium from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity] + :param value: [string] + """ + self._source_medium = value + + @property + def supply_medium(self): + """ + Get the supply medium from ['air', 'water'] + :return: string + """ + return self._supply_medium + + @supply_medium.setter + def supply_medium(self, value): + """ + Set the supply medium from ['air', 'water'] + :param value: string + """ + self._supply_medium = value + + @property + def heat_efficiency(self): + """ + Get heat_efficiency + :return: float + """ + return self._heat_efficiency + + @heat_efficiency.setter + def heat_efficiency(self, value): + """ + Set heat_efficiency + :param value: float + """ + self._heat_efficiency = value + + @property + def nominal_cooling_output(self): + """ + Get nominal cooling output of heat generation devices in W + :return: float + """ + return self._nominal_cooling_output + + @nominal_cooling_output.setter + def nominal_cooling_output(self, value): + """ + Set nominal cooling output of heat generation devices in W + :param value: float + """ + self._nominal_cooling_output = value + + @property + def maximum_cooling_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_cooling_output + + @maximum_cooling_output.setter + def maximum_cooling_output(self, value): + """ + Set maximum heat output of heat generation devices in W + :param value: float + """ + self._maximum_cooling_output = value + + @property + def minimum_cooling_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_cooling_output + + @minimum_cooling_output.setter + def minimum_cooling_output(self, value): + """ + Set minimum heat output of heat generation devices in W + :param value: float + """ + self._minimum_cooling_output = value + + @property + def cooling_efficiency(self): + """ + Get cooling_efficiency + :return: float + """ + return self._cooling_efficiency + + @cooling_efficiency.setter + def cooling_efficiency(self, value): + """ + Set cooling_efficiency + :param value: float + """ + self._cooling_efficiency = value + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + + @electricity_efficiency.setter + def electricity_efficiency(self, value): + """ + Set electricity_efficiency + :param value: float + """ + self._electricity_efficiency = value + + @property + def source_temperature(self): + """ + Get source_temperature in degree Celsius + :return: float + """ + return self._source_temperature + + @source_temperature.setter + def source_temperature(self, value): + """ + Set source_temperature in degree Celsius + :param value: float + """ + self._source_temperature = value + + @property + def source_mass_flow(self): + """ + Get source_mass_flow in kg/s + :return: float + """ + return self._source_mass_flow + + @source_mass_flow.setter + def source_mass_flow(self, value): + """ + Set source_mass_flow in kg/s + :param value: float + """ + self._source_mass_flow = value + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :return: float + """ + return self._nominal_electricity_output + + @nominal_electricity_output.setter + def nominal_electricity_output(self, value): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :param value: float + """ + self._nominal_electricity_output = value + + @property + def maximum_heat_supply_temperature(self): + """ + Get the maximum heat supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @maximum_heat_supply_temperature.setter + def maximum_heat_supply_temperature(self, value): + """ + Set maximum heating supply temperature in degree Celsius + :param value: float + """ + self._maximum_heat_supply_temperature = value + + @property + def minimum_heat_supply_temperature(self): + """ + Get the minimum heat supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @minimum_heat_supply_temperature.setter + def minimum_heat_supply_temperature(self, value): + """ + Set minimum heating supply temperature in degree Celsius + :param value: float + """ + self._minimum_heat_supply_temperature = value + + @property + def maximum_cooling_supply_temperature(self): + """ + Get the maximum cooling supply temperature in degree Celsius + :return: float + """ + return self._maximum_cooling_supply_temperature + + @maximum_cooling_supply_temperature.setter + def maximum_cooling_supply_temperature(self, value): + """ + Set maximum cooling supply temperature in degree Celsius + :param value: float + """ + self._maximum_cooling_supply_temperature = value + + @property + def minimum_cooling_supply_temperature(self): + """ + Get the minimum cooling supply temperature in degree Celsius + :return: float + """ + return self._minimum_cooling_supply_temperature + + @minimum_cooling_supply_temperature.setter + def minimum_cooling_supply_temperature(self, value): + """ + Set minimum cooling supply temperature in degree Celsius + :param value: float + """ + self._minimum_cooling_supply_temperature = value + + @property + def heat_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_output_curve + + @heat_output_curve.setter + def heat_output_curve(self, value): + """ + Set the heat output curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_output_curve = value + + @property + def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_fuel_consumption_curve + + @heat_fuel_consumption_curve.setter + def heat_fuel_consumption_curve(self, value): + """ + Set the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_fuel_consumption_curve = value + + @property + def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_efficiency_curve + + @heat_efficiency_curve.setter + def heat_efficiency_curve(self, value): + """ + Set the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_efficiency_curve = value + + @property + def cooling_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_output_curve + + @cooling_output_curve.setter + def cooling_output_curve(self, value): + """ + Set the cooling output curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_output_curve = value + + @property + def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_fuel_consumption_curve + + @cooling_fuel_consumption_curve.setter + def cooling_fuel_consumption_curve(self, value): + """ + Set the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_fuel_consumption_curve = value + + @property + def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_efficiency_curve + + @cooling_efficiency_curve.setter + def cooling_efficiency_curve(self, value): + """ + Set the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_efficiency_curve = value diff --git a/hub/city_model_structure/energy_systems/generic_pv_generation_system.py b/hub/city_model_structure/energy_systems/generic_pv_generation_system.py new file mode 100644 index 00000000..280f021d --- /dev/null +++ b/hub/city_model_structure/energy_systems/generic_pv_generation_system.py @@ -0,0 +1,187 @@ +""" +Generic PV energy generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem + + +class GenericPvGenerationSystem(GenericGenerationSystem): + """ + GenericPvGenerationSystem class + """ + def __init__(self): + super().__init__() + self._electricity_efficiency = None + self._nominal_electricity_output = None + self._nominal_ambient_temperature = None + self._nominal_cell_temperature = None + self._nominal_radiation = None + self._standard_test_condition_cell_temperature = None + self._standard_test_condition_maximum_power = None + self._cell_temperature_coefficient = None + self._width = None + self._height = None + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :return: float + """ + return self._nominal_electricity_output + + @nominal_electricity_output.setter + def nominal_electricity_output(self, value): + """ + Set nominal_power_output of electricity generation devices or inverters in W + :param value: float + """ + self._nominal_electricity_output = value + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + + @electricity_efficiency.setter + def electricity_efficiency(self, value): + """ + Set electricity_efficiency + :param value: float + """ + self._electricity_efficiency = value + + @property + def nominal_ambient_temperature(self): + """ + Get nominal ambient temperature of PV panels in degree Celsius + :return: float + """ + return self._nominal_ambient_temperature + + @nominal_ambient_temperature.setter + def nominal_ambient_temperature(self, value): + """ + Set nominal ambient temperature of PV panels in degree Celsius + :param value: float + """ + self._nominal_ambient_temperature = value + + @property + def nominal_cell_temperature(self): + """ + Get nominal cell temperature of PV panels in degree Celsius + :return: float + """ + return self._nominal_cell_temperature + + @nominal_cell_temperature.setter + def nominal_cell_temperature(self, value): + """ + Set nominal cell temperature of PV panels in degree Celsius + :param value: float + """ + self._nominal_cell_temperature = value + + @property + def nominal_radiation(self): + """ + Get nominal radiation of PV panels + :return: float + """ + return self._nominal_radiation + + @nominal_radiation.setter + def nominal_radiation(self, value): + """ + Set nominal radiation of PV panels + :param value: float + """ + self._nominal_radiation = value + + @property + def standard_test_condition_cell_temperature(self): + """ + Get standard test condition cell temperature of PV panels in degree Celsius + :return: float + """ + return self._standard_test_condition_cell_temperature + + @standard_test_condition_cell_temperature.setter + def standard_test_condition_cell_temperature(self, value): + """ + Set standard test condition cell temperature of PV panels in degree Celsius + :param value: float + """ + self._standard_test_condition_cell_temperature = value + + @property + def standard_test_condition_maximum_power(self): + """ + Get standard test condition maximum power of PV panels in W + :return: float + """ + return self._standard_test_condition_maximum_power + + @standard_test_condition_maximum_power.setter + def standard_test_condition_maximum_power(self, value): + """ + Set standard test condition maximum power of PV panels in W + :param value: float + """ + self._standard_test_condition_maximum_power = value + + @property + def cell_temperature_coefficient(self): + """ + Get cell temperature coefficient of PV module + :return: float + """ + return self._cell_temperature_coefficient + + @cell_temperature_coefficient.setter + def cell_temperature_coefficient(self, value): + """ + Set cell temperature coefficient of PV module + :param value: float + """ + self._cell_temperature_coefficient = value + + @property + def width(self): + """ + Get PV module width in m + :return: float + """ + return self._width + + @width.setter + def width(self, value): + """ + Set PV module width in m + :param value: float + """ + self._width = value + + @property + def height(self): + """ + Get PV module height in m + :return: float + """ + return self._height + + @height.setter + def height(self, value): + """ + Set PV module height in m + :param value: float + """ + self._height = value diff --git a/hub/city_model_structure/energy_systems/generic_storage_system.py b/hub/city_model_structure/energy_systems/generic_storage_system.py index 3cd46ca9..6e4771c9 100644 --- a/hub/city_model_structure/energy_systems/generic_storage_system.py +++ b/hub/city_model_structure/energy_systems/generic_storage_system.py @@ -7,21 +7,41 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord """ from __future__ import annotations +from abc import ABC -class GenericStorageSystem: +class GenericStorageSystem(ABC): """ Generic storage System class """ def __init__(self): + self._type_energy_stored = None self._storage_type = None + self._model_name = None + self._manufacturer = None self._nominal_capacity = None self._losses_ratio = None + @property + def type_energy_stored(self): + """ + Get type of energy stored from ['electrical', 'thermal'] + :return: string + """ + return self._type_energy_stored + + @type_energy_stored.setter + def type_energy_stored(self, value): + """ + Set type of energy stored from ['electrical', 'thermal'] + :return: string + """ + self._type_energy_stored = value + @property def storage_type(self): """ - Get the type of storage system from [sensible, latent, lithium_ion, NiCd, lead_acid] + Get storage type :return: string """ return self._storage_type @@ -29,11 +49,43 @@ class GenericStorageSystem: @storage_type.setter def storage_type(self, value): """ - Set the type of storage system from [sensible, latent, lithium_ion, NiCd, lead_acid] - :return: string + Get storage type + :param value: string """ self._storage_type = value + @property + def model_name(self): + """ + Get system model + :return: string + """ + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set system model + :param value: string + """ + self._model_name = value + + @property + def manufacturer(self): + """ + Get name of manufacturer + :return: string + """ + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set name of manufacturer + :param value: string + """ + self._manufacturer = value + @property def nominal_capacity(self): """ diff --git a/hub/city_model_structure/energy_systems/generic_thermal_storage_system.py b/hub/city_model_structure/energy_systems/generic_thermal_storage_system.py new file mode 100644 index 00000000..c0cfadd9 --- /dev/null +++ b/hub/city_model_structure/energy_systems/generic_thermal_storage_system.py @@ -0,0 +1,88 @@ +""" +Generic thermal storage system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem +from hub.city_model_structure.building_demand.layer import Layer + + +class GenericThermalStorageSystem(GenericStorageSystem): + """" + Generic Thermal Storage System Class + """ + + def __init__(self): + + super().__init__() + self._volume = None + self._height = None + self._layers = None + self._maximum_operating_temperature = None + + @property + def volume(self): + """ + Get the physical volume of the storage system in cubic meters + :return: float + """ + return self._volume + + @volume.setter + def volume(self, value): + """ + Set the physical volume of the storage system in cubic meters + :param value: float + """ + self._volume = value + + @property + def height(self): + """ + Get the diameter of the storage system in meters + :return: float + """ + return self._height + + @height.setter + def height(self, value): + """ + Set the diameter of the storage system in meters + :param value: float + """ + self._height = value + + @property + def layers(self) -> [Layer]: + """ + Get construction layers + :return: [layer] + """ + return self._layers + + @layers.setter + def layers(self, value): + """ + Set construction layers + :param value: [layer] + """ + self._layers = value + + @property + def maximum_operating_temperature(self): + """ + Get maximum operating temperature of the storage system in degree Celsius + :return: float + """ + return self._maximum_operating_temperature + + @maximum_operating_temperature.setter + def maximum_operating_temperature(self, value): + """ + Set maximum operating temperature of the storage system in degree Celsius + :param value: float + """ + self._maximum_operating_temperature = value -- 2.39.2 From 1a7ad201351b814a501f8b41022ce47a78a606b3 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Thu, 12 Oct 2023 11:59:52 -0400 Subject: [PATCH 080/101] new catalog model and factory finished and test passed --- .../energy_systems/distribution_system.py | 6 +- .../energy_systems/montreal_custom_catalog.py | 43 ++++--- .../montreal_custom_systems.xml | 111 +++++++++++------- tests/test_systems_catalog.py | 2 +- 4 files changed, 94 insertions(+), 68 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index 8654b533..1b3ad2e2 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -6,12 +6,14 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from typing import Union, List +from typing import Union, List, TypeVar -from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem +#from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem +GenerationSystem = TypeVar('GenerationSystem') + class DistributionSystem: """ diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 3b31cd81..9b984fdd 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -31,8 +31,8 @@ class MontrealCustomCatalog(Catalog): 'demand', 'system_id')) self._catalog_generation_equipments = self._load_generation_equipments() - self._catalog_distribution_equipments = self._load_distribution_equipments() self._catalog_emission_equipments = self._load_emission_equipments() + self._catalog_distribution_equipments = self._load_distribution_equipments() self._catalog_systems = self._load_systems() self._catalog_archetypes = self._load_archetypes() # store the full catalog data model in self._content @@ -59,10 +59,20 @@ class MontrealCustomCatalog(Catalog): electricity_efficiency = None if 'electrical_efficiency' in equipment: electricity_efficiency = float(equipment['electrical_efficiency']) + + storage_systems = None + storage = literal_eval(equipment['storage'].capitalize()) + if storage: + if equipment_type == 'electricity generator': + storage_system = ElectricalStorageSystem(equipment_id) + else: + storage_system = ThermalStorageSystem(equipment_id) + storage_systems = [storage_system] if model_name == 'PV system': generation_system = PvGenerationSystem(equipment_id, model_name=model_name, electricity_efficiency=electricity_efficiency, + energy_storage_systems=storage_systems ) else: generation_system = NonPvGenerationSystem(equipment_id, @@ -72,14 +82,8 @@ class MontrealCustomCatalog(Catalog): heat_efficiency=heating_efficiency, cooling_efficiency=cooling_efficiency, electricity_efficiency=electricity_efficiency, - ) - storage = literal_eval(equipment['storage'].capitalize()) - if storage: - if equipment_type == 'electricity generator': - storage_system = ElectricalStorageSystem(equipment_id) - else: - storage_system = ThermalStorageSystem(equipment_id) - generation_system.energy_storage_systems = [storage_system] + energy_storage_systems=storage_systems + ) _equipments.append(generation_system) return _equipments @@ -102,12 +106,19 @@ class MontrealCustomCatalog(Catalog): distribution_consumption_variable_flow = float( equipment['distribution_consumption_variable_flow']['#text']) / 100 + emission_equipment = equipment['dissipation_id'] + _emission_equipments = None + for equipment_archetype in self._catalog_emission_equipments: + if int(equipment_archetype.id) == int(emission_equipment): + _emission_equipments = [equipment_archetype] + distribution_system = DistributionSystem(equipment_id, model_name=model_name, system_type=equipment_type, distribution_consumption_fix_flow=distribution_consumption_fix_flow, distribution_consumption_variable_flow=distribution_consumption_variable_flow, - heat_losses=distribution_heat_losses) + heat_losses=distribution_heat_losses, + emission_systems=_emission_equipments) _equipments.append(distribution_system) return _equipments @@ -148,18 +159,6 @@ class MontrealCustomCatalog(Catalog): for equipment_archetype in self._catalog_distribution_equipments: if int(equipment_archetype.id) == int(distribution_equipment): _distribution_equipments = [equipment_archetype] - emission_equipment = system['equipments']['dissipation_id'] - _emission_equipments = None - for equipment_archetype in self._catalog_emission_equipments: - if int(equipment_archetype.id) == int(emission_equipment): - _emission_equipments = [equipment_archetype] - - - - - - - _catalog_systems.append(System(system_id, demands, diff --git a/hub/data/energy_systems/montreal_custom_systems.xml b/hub/data/energy_systems/montreal_custom_systems.xml index d3a7591d..f3b0466f 100644 --- a/hub/data/energy_systems/montreal_custom_systems.xml +++ b/hub/data/energy_systems/montreal_custom_systems.xml @@ -38,53 +38,96 @@ - + Water distribution heating 10 2 0 + 1 - + + Water distribution heating + 10 + 2 + 0 + 2 + + + Water distribution heating + 10 + 2 + 0 + 3 + + Water distribution cooling 5 4 0 + 2 - + Central air distribution heating 10 0 13 + 2 - + + Central air distribution heating + 10 + 0 + 13 + 3 + + Central air distribution cooling 5 0 13 + 2 - + Local air distribution heating 5 8 0 + 1 - + + Local air distribution heating + 5 + 8 + 0 + 3 + + Local air distribution cooling 2 8 0 + 3 - + Refrigerant distribution 1 1 0 + 2 - + No distribution 0 0 0 + 1 + + + No distribution + 0 + 0 + 0 + 3 @@ -111,7 +154,6 @@ 1 1 - 1 @@ -122,8 +164,7 @@ 2 - 8 - 1 + 12 @@ -134,8 +175,7 @@ 1 - 1 - 2 + 2 @@ -146,8 +186,7 @@ 2 - 1 - 2 + 2 @@ -158,9 +197,8 @@ 3 - 5 - 1 - + 8 +g Single zone packaged rooftop unit with electrical resistance furnace and baseboards and fuel boiler for acs @@ -170,8 +208,7 @@ 4 - 5 - 1 + 8 @@ -183,7 +220,6 @@ 1 1 - 1 @@ -194,8 +230,7 @@ 2 - 8 - 3 + 13 @@ -206,8 +241,7 @@ 2 - 1 - 3 + 3 @@ -218,8 +252,7 @@ 2 - 8 - 3 + 13 @@ -229,8 +262,7 @@ 5 - 6 - 3 + 10 @@ -240,8 +272,7 @@ 5 - 2 - 2 + 4 @@ -251,8 +282,7 @@ 5 - 6 - 3 + 10 @@ -262,8 +292,7 @@ 5 - 6 - 3 + 10 @@ -273,8 +302,7 @@ 5 - 3 - 3 + 6 @@ -284,8 +312,7 @@ 6 - 5 - 3 + 9 @@ -296,8 +323,7 @@ 7 - 3 - 2 + 5 @@ -307,8 +333,7 @@ 7 - 4 - 2 + 7 diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 563e1b7d..01da9114 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -22,7 +22,7 @@ class TestSystemsCatalog(TestCase): generation_equipments = catalog.names('generation_equipments') self.assertEqual(7, len(generation_equipments['generation_equipments'])) distribution_equipments = catalog.names('distribution_equipments') - self.assertEqual(8, len(distribution_equipments['distribution_equipments'])) + self.assertEqual(13, len(distribution_equipments['distribution_equipments'])) with self.assertRaises(ValueError): catalog.names('unknown') -- 2.39.2 From d94bce4174d5a077945e1fb811f22e93cc4051fe Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 13 Oct 2023 08:23:40 -0400 Subject: [PATCH 081/101] half made changes in central data model for systems --- .../energy_systems/distribution_system.py | 1 - .../energy_systems/pv_generation_system.py | 2 +- .../energy_systems/energy_storage_system.py | 65 +++++ .../energy_systems/energy_system.py | 80 +----- .../energy_systems/generation_system.py | 211 +++----------- .../generic_distribution_system.py | 5 +- .../energy_systems/generic_storage_system.py | 1 - .../energy_systems/heat_pump.py | 64 ----- .../energy_systems/hvac_terminal_unit.py | 32 --- .../non_pv_generation_system.py | 263 ++++++++++++++++++ .../energy_systems/pv_generation_system.py | 114 ++++++++ .../energy_systems/thermal_storage_system.py | 7 +- hub/helpers/constants.py | 1 + ..._system_to_hub_energy_generation_system.py | 31 +++ hub/helpers/dictionaries.py | 8 + ...ontreal_custom_energy_system_parameters.py | 86 ++++-- 16 files changed, 595 insertions(+), 376 deletions(-) create mode 100644 hub/city_model_structure/energy_systems/energy_storage_system.py delete mode 100644 hub/city_model_structure/energy_systems/heat_pump.py delete mode 100644 hub/city_model_structure/energy_systems/hvac_terminal_unit.py create mode 100644 hub/city_model_structure/energy_systems/non_pv_generation_system.py create mode 100644 hub/city_model_structure/energy_systems/pv_generation_system.py create mode 100644 hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py diff --git a/hub/catalog_factories/data_models/energy_systems/distribution_system.py b/hub/catalog_factories/data_models/energy_systems/distribution_system.py index 1b3ad2e2..53e3168d 100644 --- a/hub/catalog_factories/data_models/energy_systems/distribution_system.py +++ b/hub/catalog_factories/data_models/energy_systems/distribution_system.py @@ -8,7 +8,6 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from typing import Union, List, TypeVar -#from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.energy_systems.emission_system import EmissionSystem diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 61365223..5aa272b7 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -22,7 +22,7 @@ class PvGenerationSystem(GenerationSystem): super().__init__(system_id=system_id, model_name=model_name, manufacturer=manufacturer, fuel_type='renewable', distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) - self._system_type = 'PV' + self._system_type = 'PV system' self._electricity_efficiency = electricity_efficiency self._nominal_electricity_output = nominal_electricity_output self._nominal_ambient_temperature = nominal_ambient_temperature diff --git a/hub/city_model_structure/energy_systems/energy_storage_system.py b/hub/city_model_structure/energy_systems/energy_storage_system.py new file mode 100644 index 00000000..8841db9d --- /dev/null +++ b/hub/city_model_structure/energy_systems/energy_storage_system.py @@ -0,0 +1,65 @@ +""" +Energy storage system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +from abc import ABC + + +class EnergyStorageSystem(ABC): + """ + Energy storage System class + """ + def __init__(self, generic_storage_system): + self._generic_storage_system = generic_storage_system + + @property + def type_energy_stored(self): + """ + Get type of energy stored from ['electrical', 'thermal'] + :return: string + """ + return self._generic_storage_system.type_energy_stored + + @property + def storage_type(self): + """ + Get storage type + :return: string + """ + return self._generic_storage_system.storage_type + + @property + def model_name(self): + """ + Get system model + :return: string + """ + return self._generic_storage_system.model_name + + @property + def manufacturer(self): + """ + Get name of manufacturer + :return: string + """ + return self._generic_storage_system.manufacturer + + @property + def nominal_capacity(self): + """ + Get the nominal capacity of storage systems in Jules + :return: float + """ + return self._generic_storage_system.nominal_capacity + + @property + def losses_ratio(self): + """ + Get the losses-ratio of storage system in Jules lost / Jules stored + :return: float + """ + return self._generic_storage_system.losses_ratio diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py index 01d683ba..0f5693ad 100644 --- a/hub/city_model_structure/energy_systems/energy_system.py +++ b/hub/city_model_structure/energy_systems/energy_system.py @@ -9,10 +9,7 @@ from typing import Union, List from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem -from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.city_model_structure.energy_systems.control_system import ControlSystem -from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem -from hub.city_model_structure.energy_systems.electrical_storage_system import ElectricalStorageSystem from hub.city_model_structure.city_object import CityObject @@ -20,15 +17,12 @@ class EnergySystem: """ EnergySystem class """ - def __init__(self): - self._name = None - self._demand_types = None + def __init__(self, generic_energy_system): + self._generic_energy_system = generic_energy_system self._generation_systems = None self._distribution_systems = None - self._emission_systems = None self._connected_city_objects = None self._control_system = None - self._energy_storage_systems = None @property def name(self): @@ -36,15 +30,7 @@ class EnergySystem: Get energy system name :return: str """ - return self._name - - @name.setter - def name(self, value): - """ - Set energy system name - :param value: - """ - self._name = value + return self._generic_energy_system.name @property def demand_types(self): @@ -52,69 +38,45 @@ class EnergySystem: Get demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity] :return: [string] """ - return self._demand_types - - @demand_types.setter - def demand_types(self, value): - """ - Set demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity] - :param value: [string] - """ - self._demand_types = value + return self._generic_energy_system.demand_types @property def generation_systems(self) -> List[GenerationSystem]: """ Get generation systems - :return: GenerationSystem + :return: [GenerationSystem] """ return self._generation_systems @generation_systems.setter def generation_systems(self, value): """ - Set generation system - :param value: GenerationSystem + Set generation systems + :param value: [GenerationSystem] """ self._generation_systems = value @property def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ - Get distribution system - :return: DistributionSystem + Get distribution systems + :return: [DistributionSystem] """ return self._distribution_systems @distribution_systems.setter def distribution_systems(self, value): """ - Set distribution system - :param value: DistributionSystem + Set distribution systems + :param value: [DistributionSystem] """ self._distribution_systems = value - @property - def emission_systems(self) -> Union[None, List[EmissionSystem]]: - """ - Get emission system - :return: EmissionSystem - """ - return self._emission_systems - - @emission_systems.setter - def emission_systems(self, value): - """ - Set emission system - :param value: EmissionSystem - """ - self._emission_systems = value - @property def connected_city_objects(self) -> Union[None, List[CityObject]]: """ Get list of city objects that are connected to this energy system - :return: List[CityObject] + :return: [CityObject] """ return self._connected_city_objects @@ -122,7 +84,7 @@ class EnergySystem: def connected_city_objects(self, value): """ Set list of city objects that are connected to this energy system - :param value: List[CityObject] + :param value: [CityObject] """ self._connected_city_objects = value @@ -141,19 +103,3 @@ class EnergySystem: :param value: ControlSystem """ self._control_system = value - - @property - def energy_storage_systems(self) -> Union[None, List[ThermalStorageSystem], List[ElectricalStorageSystem]]: - """ - Get energy storage systems - :return: [EnergyStorageSystem] - """ - return self._energy_storage_systems - - @energy_storage_systems.setter - def energy_storage_systems(self, value): - """ - Set storage system - :param value: [EnergyStorageSystem] - """ - self._energy_storage_systems = value diff --git a/hub/city_model_structure/energy_systems/generation_system.py b/hub/city_model_structure/energy_systems/generation_system.py index 5d64f303..1a082bb3 100644 --- a/hub/city_model_structure/energy_systems/generation_system.py +++ b/hub/city_model_structure/energy_systems/generation_system.py @@ -6,125 +6,29 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from __future__ import annotations -from typing import Union +from abc import ABC +from typing import Union, List -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem +from hub.city_model_structure.energy_systems.energy_storage_system import EnergyStorageSystem -class GenerationSystem: +class GenerationSystem(ABC): """ GenerationSystem class """ - def __init__(self): - self._heat_power = None - self._cooling_power = None - self._electricity_power = None - self._storage_capacity = None - self._generic_generation_system = None - self._auxiliary_equipment = None - self._model_name = None - self._manufacturer = None - self._maximum_heat_output = None - self._minimum_heat_output = None - self._maximum_cooling_output = None - self._minimum_cooling_output = None - + def __init__(self, generic_generation_system): + self._generic_generation_system = generic_generation_system + self._distribution_systems = None + self._storage_systems = None @property - def generic_generation_system(self) -> GenericGenerationSystem: + def system_type(self): """ - Get associated generic_generation_system - :return: GenericGenerationSystem + Get type + :return: string """ - return self._generic_generation_system - - @generic_generation_system.setter - def generic_generation_system(self, value): - """ - Set associated generic_generation_system - :param value: GenericGenerationSystem - """ - self._generic_generation_system = value - - @property - def heat_power(self): - """ - Get heat_power in W - :return: float - """ - return self._heat_power - - @heat_power.setter - def heat_power(self, value): - """ - Set heat_power in W - :param value: float - """ - self._heat_power = value - - @property - def cooling_power(self): - """ - Get cooling_power in W - :return: float - """ - return self._cooling_power - - @cooling_power.setter - def cooling_power(self, value): - """ - Set cooling_power in W - :param value: float - """ - self._cooling_power = value - - @property - def electricity_power(self): - """ - Get electricity_power in W - :return: float - """ - return self._electricity_power - - @electricity_power.setter - def electricity_power(self, value): - """ - Set electricity_power in W - :param value: float - """ - self._electricity_power = value - - @property - def storage_capacity(self): - """ - Get storage_capacity in J - :return: float - """ - return self._storage_capacity - - @storage_capacity.setter - def storage_capacity(self, value): - """ - Set storage_capacity in J - :param value: float - """ - self._storage_capacity = value - - @property - def auxiliary_equipment(self) -> Union[None, GenerationSystem]: - """ - Get auxiliary_equipment - :return: GenerationSystem - """ - return self._auxiliary_equipment - - @auxiliary_equipment.setter - def auxiliary_equipment(self, value): - """ - Set auxiliary_equipment - :param value: GenerationSystem - """ - self._auxiliary_equipment = value + return self._generic_generation_system.system_type @property def model_name(self): @@ -132,15 +36,7 @@ class GenerationSystem: Get the model name :return: string """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set the model name - :return: string - """ - self._model_name = value + return self._generic_generation_system.model_name @property def manufacturer(self): @@ -148,77 +44,44 @@ class GenerationSystem: Get the manufacturer name :return: string """ - return self._manufacturer + return self._generic_generation_system.manufacturer - @manufacturer.setter - def manufacturer(self, value): + @property + def fuel_type(self): """ - Set the manufacturer name + Get fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal] :return: string """ - self._manufacturer = value + return self._generic_generation_system.fuel_type @property - def maximum_heat_output(self): + def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ - Get maximum heat output in W - :return: float + Get distributions systems connected to this generation system + :return: [GenericDistributionSystem] """ - return self._maximum_heat_output + return self._distribution_systems - @maximum_heat_output.setter - def maximum_heat_output(self, value): + @distribution_systems.setter + def distribution_systems(self, value): """ - Set maximum heat output in W - :return: float + Set distributions systems connected to this generation system + :param value: [DistributionSystem] """ - self._maximum_heat_output = value + self._distribution_systems = value @property - def minimum_heat_output(self): + def storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: """ - Get minimum heat output in W - :return: float + Get energy storage systems connected to this generation system + :return: [EnergyStorageSystem] """ - return self._minimum_heat_output + return self._storage_systems - @minimum_heat_output.setter - def minimum_heat_output(self, value): + @storage_systems.setter + def storage_systems(self, value): """ - Set minimum heat output in W - :return: float + Set energy storage systems connected to this generation system + :param value: [EnergyStorageSystem] """ - self._minimum_heat_output = value - - @property - def maximum_cooling_output(self): - """ - Get maximum cooling output in W - :return: float - """ - return self._maximum_cooling_output - - @maximum_cooling_output.setter - def maximum_cooling_output(self, value): - """ - Set maximum cooling output in W - :return: float - """ - self._maximum_cooling_output = value - - @property - def minimum_cooling_output(self): - """ - Get minimum cooling output in W - :return: float - """ - return self._minimum_cooling_output - - @minimum_cooling_output.setter - def minimum_cooling_output(self, value): - """ - Set minimum cooling output in W - :return: float - """ - self._minimum_cooling_output = value - + self._storage_systems = value diff --git a/hub/city_model_structure/energy_systems/generic_distribution_system.py b/hub/city_model_structure/energy_systems/generic_distribution_system.py index 832fb589..887fcf77 100644 --- a/hub/city_model_structure/energy_systems/generic_distribution_system.py +++ b/hub/city_model_structure/energy_systems/generic_distribution_system.py @@ -5,12 +5,13 @@ Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from typing import Union, List +from typing import Union, List, TypeVar -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem +GenericGenerationSystem = TypeVar('GenericGenerationSystem') + class GenericDistributionSystem: """ diff --git a/hub/city_model_structure/energy_systems/generic_storage_system.py b/hub/city_model_structure/energy_systems/generic_storage_system.py index 6e4771c9..1bc4efd1 100644 --- a/hub/city_model_structure/energy_systems/generic_storage_system.py +++ b/hub/city_model_structure/energy_systems/generic_storage_system.py @@ -6,7 +6,6 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from __future__ import annotations from abc import ABC diff --git a/hub/city_model_structure/energy_systems/heat_pump.py b/hub/city_model_structure/energy_systems/heat_pump.py deleted file mode 100644 index 067147fe..00000000 --- a/hub/city_model_structure/energy_systems/heat_pump.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -heat_pump module defines a heat pump -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Peter Yefi peteryefi@gmail.com -""" -from typing import List -from pandas.core.series import Series - - -class HeatPump: - """ - HeatPump class - """ - - def __init__(self): - self._model = None - self._hp_monthly_fossil_consumption = None - self._hp_monthly_electricity_demand = None - - @property - def model(self) -> str: - """ - Get model name - :return: str - """ - return self._model - - @model.setter - def model(self, value): - """ - Set model (name, indicated in capacity) - :param value: str - """ - if self._model is None: - self._model = value - - @property - def hp_monthly_fossil_consumption(self) -> List: - """ - Fossil fuel consumption that results from insel simulation - ":return: [] - :return: - """ - return self._hp_monthly_fossil_consumption - - @hp_monthly_fossil_consumption.setter - def hp_monthly_fossil_consumption(self, value): - if isinstance(value, Series): - self._hp_monthly_fossil_consumption = value - - @property - def hp_monthly_electricity_demand(self) -> List: - """ - Electricity demand that results from insel simulation - ":return: [] - :return: - """ - return self._hp_monthly_electricity_demand - - @hp_monthly_electricity_demand.setter - def hp_monthly_electricity_demand(self, value): - if isinstance(value, Series): - self._hp_monthly_electricity_demand = value diff --git a/hub/city_model_structure/energy_systems/hvac_terminal_unit.py b/hub/city_model_structure/energy_systems/hvac_terminal_unit.py deleted file mode 100644 index 6bb22ef7..00000000 --- a/hub/city_model_structure/energy_systems/hvac_terminal_unit.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -HvacTerminalUnit module -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" -from typing import Union - - -class HvacTerminalUnit: - """ - HvacTerminalUnit class - """ - def __init__(self): - self._type = None - - @property - def type(self) -> Union[None, str]: - """ - Get type of hvac terminal unit defined for a thermal zone - :return: None or str - """ - return self._type - - @type.setter - def type(self, value): - """ - Set type of hvac terminal unit defined for a thermal zone - :param value: str - """ - if value is not None: - self._type = str(value) diff --git a/hub/city_model_structure/energy_systems/non_pv_generation_system.py b/hub/city_model_structure/energy_systems/non_pv_generation_system.py new file mode 100644 index 00000000..7f1bdf90 --- /dev/null +++ b/hub/city_model_structure/energy_systems/non_pv_generation_system.py @@ -0,0 +1,263 @@ +""" +Non PV generation system definition +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +from typing import Union + +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.performance_curve import PerformanceCurves + + +class NonPvGenerationSystem(GenericGenerationSystem): + """ + NonPvGenerationSystem class + """ + def __init__(self, non_pv_generation_system): + super().__init__() + self._non_pv_generation_system = non_pv_generation_system + self._heat_power = None + self._cooling_power = None + self._electricity_power = None + + @property + def heat_power(self): + """ + Get heat_power in W + :return: float + """ + return self._heat_power + + @heat_power.setter + def heat_power(self, value): + """ + Set heat_power in W + :param value: float + """ + self._heat_power = value + + @property + def cooling_power(self): + """ + Get cooling_power in W + :return: float + """ + return self._cooling_power + + @cooling_power.setter + def cooling_power(self, value): + """ + Set cooling_power in W + :param value: float + """ + self._cooling_power = value + + @property + def electricity_power(self): + """ + Get electricity_power in W + :return: float + """ + return self._electricity_power + + @electricity_power.setter + def electricity_power(self, value): + """ + Set electricity_power in W + :param value: float + """ + self._electricity_power = value + + @property + def nominal_heat_output(self): + """ + Get nominal heat output of heat generation devices in W + :return: float + """ + return self._non_pv_generation_system.nominal_heat_output + + @property + def maximum_heat_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._non_pv_generation_system.maximum_heat_output + + @property + def minimum_heat_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._non_pv_generation_system.minimum_heat_output + + @property + def source_medium(self): + """ + Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] + :return: string + """ + return self._non_pv_generation_system.source_medium + + @property + def supply_medium(self): + """ + Get the supply medium from ['air', 'water'] + :return: string + """ + return self._non_pv_generation_system.supply_medium + + @property + def heat_efficiency(self): + """ + Get heat_efficiency + :return: float + """ + return self._non_pv_generation_system.heat_efficiency + + @property + def nominal_cooling_output(self): + """ + Get nominal cooling output of heat generation devices in W + :return: float + """ + return self._non_pv_generation_system.nominal_cooling_output + + @property + def maximum_cooling_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._non_pv_generation_system.maximum_cooling_output + + @property + def minimum_cooling_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._non_pv_generation_system.minimum_cooling_output + + @property + def cooling_efficiency(self): + """ + Get cooling_efficiency + :return: float + """ + return self._non_pv_generation_system.cooling_efficiency + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._non_pv_generation_system.electricity_efficiency + + @property + def source_temperature(self): + """ + Get source_temperature in degree Celsius + :return: float + """ + return self._non_pv_generation_system.source_temperature + + @property + def source_mass_flow(self): + """ + Get source_mass_flow in kg/s + :return: float + """ + return self._non_pv_generation_system.source_mass_flow + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :return: float + """ + return self._non_pv_generation_system.nominal_electricity_output + + @property + def maximum_heat_supply_temperature(self): + """ + Get the maximum heat supply temperature in degree Celsius + :return: float + """ + return self._non_pv_generation_system.maximum_heat_supply_temperature + + @property + def minimum_heat_supply_temperature(self): + """ + Get the minimum heat supply temperature in degree Celsius + :return: float + """ + return self._non_pv_generation_system.minimum_heat_supply_temperature + + @property + def maximum_cooling_supply_temperature(self): + """ + Get the maximum cooling supply temperature in degree Celsius + :return: float + """ + return self._non_pv_generation_system.maximum_cooling_supply_temperature + + @property + def minimum_cooling_supply_temperature(self): + """ + Get the minimum cooling supply temperature in degree Celsius + :return: float + """ + return self._non_pv_generation_system.minimum_cooling_supply_temperature + + @property + def heat_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._non_pv_generation_system.heat_output_curve + + @property + def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._non_pv_generation_system.heat_fuel_consumption_curve + + @property + def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._non_pv_generation_system.heat_efficiency_curve + + @property + def cooling_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._non_pv_generation_system.cooling_output_curve + + @property + def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._non_pv_generation_system.cooling_fuel_consumption_curve + + @property + def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._non_pv_generation_system.cooling_efficiency_curve diff --git a/hub/city_model_structure/energy_systems/pv_generation_system.py b/hub/city_model_structure/energy_systems/pv_generation_system.py new file mode 100644 index 00000000..ef915aaf --- /dev/null +++ b/hub/city_model_structure/energy_systems/pv_generation_system.py @@ -0,0 +1,114 @@ +""" +PV generation system definition +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem + + +class PvGenerationSystem(GenericGenerationSystem): + """ + PvGenerationSystem class + """ + def __init__(self, generic_pv_generation_system): + super().__init__() + self._generic_pv_generation_system = generic_pv_generation_system + self._electricity_power = None + + @property + def electricity_power(self): + """ + Get electricity_power in W + :return: float + """ + return self._electricity_power + + @electricity_power.setter + def electricity_power(self, value): + """ + Set electricity_power in W + :param value: float + """ + self._electricity_power = value + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :return: float + """ + return self._generic_pv_generation_system.nominal_electricity_output + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._generic_pv_generation_system.electricity_efficiency + + @property + def nominal_ambient_temperature(self): + """ + Get nominal ambient temperature of PV panels in degree Celsius + :return: float + """ + return self._generic_pv_generation_system.nominal_ambient_temperature + + @property + def nominal_cell_temperature(self): + """ + Get nominal cell temperature of PV panels in degree Celsius + :return: float + """ + return self._generic_pv_generation_system.nominal_cell_temperature + + @property + def nominal_radiation(self): + """ + Get nominal radiation of PV panels + :return: float + """ + return self._generic_pv_generation_system.nominal_radiation + + @property + def standard_test_condition_cell_temperature(self): + """ + Get standard test condition cell temperature of PV panels in degree Celsius + :return: float + """ + return self._generic_pv_generation_system.standard_test_condition_cell_temperature + + @property + def standard_test_condition_maximum_power(self): + """ + Get standard test condition maximum power of PV panels in W + :return: float + """ + return self._generic_pv_generation_system.standard_test_condition_maximum_power + + @property + def cell_temperature_coefficient(self): + """ + Get cell temperature coefficient of PV module + :return: float + """ + return self._generic_pv_generation_system.cell_temperature_coefficient + + @property + def width(self): + """ + Get PV module width in m + :return: float + """ + return self._generic_pv_generation_system.width + + @property + def height(self): + """ + Get PV module height in m + :return: float + """ + return self._generic_pv_generation_system.height diff --git a/hub/city_model_structure/energy_systems/thermal_storage_system.py b/hub/city_model_structure/energy_systems/thermal_storage_system.py index 23ee7c54..1dc70c88 100644 --- a/hub/city_model_structure/energy_systems/thermal_storage_system.py +++ b/hub/city_model_structure/energy_systems/thermal_storage_system.py @@ -6,15 +6,12 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from __future__ import annotations - - -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem from hub.city_model_structure.building_demand.layer import Layer class ThermalStorageSystem: - def __init__(self): + def __init__(self, generic_thermal_storage_system): + self._generic_thermal_storage_system = generic_thermal_storage_system self._model_name = None self._manufacturer = None self._volume = None diff --git a/hub/helpers/constants.py b/hub/helpers/constants.py index 0f65aa59..23fab290 100644 --- a/hub/helpers/constants.py +++ b/hub/helpers/constants.py @@ -302,6 +302,7 @@ PHOTOVOLTAIC = 'Photovoltaic' BOILER = 'Boiler' HEAT_PUMP = 'Heat Pump' BASEBOARD = 'Baseboard' +ELECTRICITY_GENERATOR = 'Electricity generator' CHILLER = 'Chiller' SENSIBLE = 'sensible' LATENT = 'Latent' diff --git a/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py b/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py new file mode 100644 index 00000000..776ccd65 --- /dev/null +++ b/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py @@ -0,0 +1,31 @@ +""" +Dictionaries module for Montreal system to hub energy generation system +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +""" + +import hub.helpers.constants as cte + + +class MontrealGenerationSystemToHubEnergyGenerationSystem: + """ + Montreal's generation system to hub energy generation system class + """ + def __init__(self): + self._dictionary = { + 'boiler': cte.BOILER, + 'furnace': cte.BASEBOARD, + 'cooler': cte.CHILLER, + 'electricity generator': cte.ELECTRICITY_GENERATOR, + 'PV system': cte.PHOTOVOLTAIC, + 'heat pump': cte.HEAT_PUMP + } + + @property + def dictionary(self) -> dict: + """ + Get the dictionary + :return: {} + """ + return self._dictionary diff --git a/hub/helpers/dictionaries.py b/hub/helpers/dictionaries.py index 561d375e..107a543a 100644 --- a/hub/helpers/dictionaries.py +++ b/hub/helpers/dictionaries.py @@ -19,6 +19,7 @@ from hub.helpers.data.hub_usage_to_hft_usage import HubUsageToHftUsage from hub.helpers.data.hub_usage_to_nrcan_usage import HubUsageToNrcanUsage from hub.helpers.data.hub_usage_to_eilat_usage import HubUsageToEilatUsage from hub.helpers.data.montreal_system_to_hub_energy_generation_system import MontrealSystemToHubEnergyGenerationSystem +from hub.helpers.data.montreal_generation_system_to_hub_energy_generation_system import MontrealGenerationSystemToHubEnergyGenerationSystem from hub.helpers.data.montreal_demand_type_to_hub_energy_demand_type import MontrealDemandTypeToHubEnergyDemandType from hub.helpers.data.hub_function_to_montreal_custom_costs_function import HubFunctionToMontrealCustomCostsFunction from hub.helpers.data.north_america_demand_type_to_hub_energy_demand_type import NorthAmericaDemandTypeToHubEnergyDemandType @@ -154,6 +155,13 @@ class Dictionaries: """ return MontrealCustomFuelToHubFuel().dictionary + @property + def montreal_generation_system_to_hub_energy_generation_system(self): + """ + Get montreal custom generation system names to hub energy system names, transformation dictionary + """ + return MontrealGenerationSystemToHubEnergyGenerationSystem().dictionary + @property def north_america_demand_type_to_hub_energy_demand_type(self): """ diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index a884309d..972da034 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -11,9 +11,14 @@ import copy from pandas import DataFrame from hub.catalog_factories.energy_systems_catalog_factory import EnergySystemsCatalogFactory -from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem +from hub.city_model_structure.energy_systems.generic_non_pv_generation_system import GenericNonPvGenerationSystem +from hub.city_model_structure.energy_systems.generic_pv_generation_system import GenericPvGenerationSystem +from hub.city_model_structure.energy_systems.generic_electrical_storage_system import GenericElectricalStorageSystem +from hub.city_model_structure.energy_systems.generic_thermal_storage_system import GenericThermalStorageSystem +from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem + from hub.city_model_structure.energy_systems.energy_system import EnergySystem from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem @@ -86,35 +91,58 @@ class MontrealCustomEnergySystemParameters: _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) energy_system.name = system.name energy_system.demand_types = _hub_demand_types - _generation_system = GenericGenerationSystem() - archetype_generation_equipment = system.generation_systems - _type = system.name - _generation_system.type = Dictionaries().montreal_system_to_hub_energy_generation_system[ - _type] - _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.source_types = archetype_generation_equipment.source_medium - _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency - _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency - _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency - _generation_system.source_temperature = archetype_generation_equipment.source_temperature - _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow - _generation_system.storage = archetype_generation_equipment.storage - _generation_system.auxiliary_equipment = None - energy_system.generation_systems = _generation_system + _generation_systems = [] + for catalog_generation_system in system.generation_systems: + if catalog_generation_system.system_type == 'PV system': + _generation_system = GenericPvGenerationSystem() + _type = 'PV system' + _generation_system.type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[catalog_generation_system.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.electricity_efficiency = catalog_generation_system.electricity_efficiency + _generic_storage_system = None + if catalog_generation_system.energy_storage_systems is not None: + _generic_storage_system = GenericElectricalStorageSystem() + _generic_storage_system.type_energy_stored = 'electrical' + _generation_system.generic_storage_systems = [_generic_storage_system] + else: + _generation_system = GenericNonPvGenerationSystem() + _type = catalog_generation_system.system_type + _generation_system.type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[catalog_generation_system.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = catalog_generation_system.source_medium + _generation_system.heat_efficiency = catalog_generation_system.heat_efficiency + _generation_system.cooling_efficiency = catalog_generation_system.cooling_efficiency + _generation_system.electricity_efficiency = catalog_generation_system.electricity_efficiency + _generic_storage_system = None + if catalog_generation_system.energy_storage_systems is not None: + if catalog_generation_system.energy_storage_systems.type_energy_stored == 'electrical': + _generic_storage_system = GenericElectricalStorageSystem() + _generic_storage_system.type_energy_stored = 'electrical' + else: + _generic_storage_system = GenericThermalStorageSystem() + _generic_storage_system.type_energy_stored = 'thermal' + _generation_system.generic_storage_systems = [_generic_storage_system] + _generation_systems.append(_generation_system) + energy_system.generation_systems = _generation_systems - _distribution_system = GenericDistributionSystem() - archetype_distribution_equipment = system.distribution_systems - _distribution_system.type = archetype_distribution_equipment.type - _distribution_system.supply_temperature = archetype_distribution_equipment.supply_temperature - _distribution_system.distribution_consumption_fix_flow = \ - archetype_distribution_equipment.distribution_consumption_fix_flow - _distribution_system.distribution_consumption_variable_flow = \ - archetype_distribution_equipment.distribution_consumption_variable_flow - _distribution_system.heat_losses = archetype_distribution_equipment.heat_losses - - energy_system.distribution_systems = _distribution_system + _distribution_systems = [] + for catalog_distribution_system in system.distribution_systems: + _distribution_system = GenericDistributionSystem() + _distribution_system.type = catalog_distribution_system.type + _distribution_system.distribution_consumption_fix_flow = \ + catalog_distribution_system.distribution_consumption_fix_flow + _distribution_system.distribution_consumption_variable_flow = \ + catalog_distribution_system.distribution_consumption_variable_flow + _distribution_system.heat_losses = catalog_distribution_system.heat_losses + _emission_system = None + if catalog_distribution_system.emission_systems is not None: + _emission_system = GenericEmissionSystem() + _distribution_system.generic_emission_systems = [_emission_system] + _distribution_systems.append(_distribution_system) + energy_system.distribution_systems = _distribution_systems building_systems.append(energy_system) -- 2.39.2 From 3f649fd020324269ac8ba5002a6597110d56d43f Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 13 Oct 2023 13:31:46 -0400 Subject: [PATCH 082/101] finished central data model new structure for energy systems, importer and test --- hub/city_model_structure/building.py | 12 +- hub/city_model_structure/city.py | 19 - .../energy_systems/distribution_system.py | 165 ++++- .../electrical_storage_system.py | 89 +-- .../energy_systems/emission_system.py | 58 +- .../energy_systems/energy_storage_system.py | 75 ++- .../energy_systems/energy_system.py | 61 +- .../energy_systems/generation_system.py | 68 +- .../generic_distribution_system.py | 175 ----- .../generic_electrical_storage_system.py | 104 --- .../energy_systems/generic_emission_system.py | 64 -- .../energy_systems/generic_energy_system.py | 104 --- .../generic_generation_system.py | 123 ---- .../generic_non_pv_generation_system.py | 428 ------------ .../generic_pv_generation_system.py | 187 ------ .../energy_systems/generic_storage_system.py | 118 ---- .../generic_thermal_storage_system.py | 88 --- .../non_pv_generation_system.py | 609 ++++++++++++------ .../energy_systems/pv_generation_system.py | 260 +++++--- .../energy_systems/thermal_storage_system.py | 105 +-- ...ontreal_custom_energy_system_parameters.py | 205 +++--- ...america_custom_energy_system_parameters.py | 8 +- tests/test_systems_factory.py | 42 +- 23 files changed, 1104 insertions(+), 2063 deletions(-) delete mode 100644 hub/city_model_structure/energy_systems/generic_distribution_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_electrical_storage_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_emission_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_energy_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_generation_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_pv_generation_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_storage_system.py delete mode 100644 hub/city_model_structure/energy_systems/generic_thermal_storage_system.py diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index fca61641..344ba391 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -754,19 +754,17 @@ class Building(CityObject): return None for energy_system in self.energy_systems: generation_systems = energy_system.generation_systems - print(generation_systems) - print(type(generation_systems)) for demand_type in energy_system.demand_types: if demand_type.lower() == consumption_type.lower(): if consumption_type in (cte.HEATING, cte.DOMESTIC_HOT_WATER): for generation_system in generation_systems: - coefficient_of_performance = generation_system.generic_generation_system.heat_efficiency + coefficient_of_performance = generation_system.heat_efficiency elif consumption_type == cte.COOLING: for generation_system in generation_systems: - coefficient_of_performance = generation_system.generic_generation_system.cooling_efficiency + coefficient_of_performance = generation_system.cooling_efficiency elif consumption_type == cte.ELECTRICITY: for generation_system in generation_systems: - coefficient_of_performance = generation_system.generic_generation_system.electricity_efficiency + coefficient_of_performance = generation_system.electricity_efficiency if coefficient_of_performance == 0: values = [0]*len(demand) final_energy_consumed = values @@ -797,8 +795,8 @@ class Building(CityObject): if self.energy_systems is None: return self._onsite_electrical_production for energy_system in self.energy_systems: - if energy_system.generation_systems.generic_generation_system.type == cte.PHOTOVOLTAIC: - _efficiency = energy_system.generation_systems.generic_generation_system.electricity_efficiency + if energy_system.generation_systems[0].system_type == cte.PHOTOVOLTAIC: + _efficiency = energy_system.generation_systems[0].electricity_efficiency self._onsite_electrical_production = {} for _key in self.roofs[0].global_irradiance.keys(): _results = [0 for _ in range(0, len(self.roofs[0].global_irradiance[_key]))] diff --git a/hub/city_model_structure/city.py b/hub/city_model_structure/city.py index 97000fbb..76bd4949 100644 --- a/hub/city_model_structure/city.py +++ b/hub/city_model_structure/city.py @@ -62,7 +62,6 @@ class City: self._level_of_detail = LevelOfDetail() self._city_objects_dictionary = {} self._city_objects_alias_dictionary = {} - self._energy_systems_connection_table = None self._generic_energy_systems = None def _get_location(self) -> Location: @@ -505,24 +504,6 @@ class City: """ return self._level_of_detail - @property - def energy_systems_connection_table(self) -> Union[None, DataFrame]: - """ - Get energy systems connection table which includes at least two columns: energy_system_type and associated_building - and may also include dimensioned_energy_system and connection_building_to_dimensioned_energy_system - :return: DataFrame - """ - return self._energy_systems_connection_table - - @energy_systems_connection_table.setter - def energy_systems_connection_table(self, value): - """ - Set energy systems connection table which includes at least two columns: energy_system_type and associated_building - and may also include dimensioned_energy_system and connection_building_to_dimensioned_energy_system - :param value: DataFrame - """ - self._energy_systems_connection_table = value - @property def generic_energy_systems(self) -> dict: """ diff --git a/hub/city_model_structure/energy_systems/distribution_system.py b/hub/city_model_structure/energy_systems/distribution_system.py index a5a1d770..e138db7b 100644 --- a/hub/city_model_structure/energy_systems/distribution_system.py +++ b/hub/city_model_structure/energy_systems/distribution_system.py @@ -5,7 +5,12 @@ Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem +from typing import Union, List, TypeVar + +from hub.city_model_structure.energy_systems.emission_system import EmissionSystem +from hub.city_model_structure.energy_systems.energy_storage_system import EnergyStorageSystem + +GenerationSystem = TypeVar('GenerationSystem') class DistributionSystem: @@ -13,20 +18,158 @@ class DistributionSystem: DistributionSystem class """ def __init__(self): - self._generic_distribution_system = None + self._model_name = None + self._type = None + self._supply_temperature = None + self._distribution_consumption_fix_flow = None + self._distribution_consumption_variable_flow = None + self._heat_losses = None + self._generation_systems = None + self._energy_storage_systems = None + self._emission_systems = None @property - def generic_distribution_system(self) -> GenericDistributionSystem: + def model_name(self): """ - Get generic_distribution_system - :return: GenericDistributionSystem + Get model name + :return: string """ - return self._generic_distribution_system + return self._model_name - @generic_distribution_system.setter - def generic_distribution_system(self, value): + @model_name.setter + def model_name(self, value): """ - Set associated generic_distribution_system - :param value: GenericDistributionSystem + Set model name + :param value: string """ - self._generic_distribution_system = value + self._model_name = value + + @property + def type(self): + """ + Get type from [air, water, refrigerant] + :return: string + """ + return self._type + + @type.setter + def type(self, value): + """ + Set type from [air, water, refrigerant] + :param value: string + """ + self._type = value + + @property + def supply_temperature(self): + """ + Get supply_temperature in degree Celsius + :return: float + """ + return self._supply_temperature + + @supply_temperature.setter + def supply_temperature(self, value): + """ + Set supply_temperature in degree Celsius + :param value: float + """ + self._supply_temperature = value + + @property + def distribution_consumption_fix_flow(self): + """ + Get distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W) + :return: float + """ + return self._distribution_consumption_fix_flow + + @distribution_consumption_fix_flow.setter + def distribution_consumption_fix_flow(self, value): + """ + Set distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W) + :return: float + """ + self._distribution_consumption_fix_flow = value + + @property + def distribution_consumption_variable_flow(self): + """ + Get distribution_consumption if the pump or fan work at variable mass or volume flow in ratio + over energy produced (J/J) + :return: float + """ + return self._distribution_consumption_variable_flow + + @distribution_consumption_variable_flow.setter + def distribution_consumption_variable_flow(self, value): + """ + Set distribution_consumption if the pump or fan work at variable mass or volume flow in ratio + over energy produced (J/J) + :return: float + """ + self._distribution_consumption_variable_flow = value + + @property + def heat_losses(self): + """ + Get heat_losses in ratio over energy produced + :return: float + """ + return self._heat_losses + + @heat_losses.setter + def heat_losses(self, value): + """ + Set heat_losses in ratio over energy produced + :param value: float + """ + self._heat_losses = value + + @property + def generation_systems(self) -> Union[None, List[GenerationSystem]]: + """ + Get generation systems connected to the distribution system + :return: [GenerationSystem] + """ + return self._generation_systems + + @generation_systems.setter + def generation_systems(self, value): + """ + Set generation systems connected to the distribution system + :param value: [GenerationSystem] + """ + self._generation_systems = value + + @property + def energy_storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: + """ + Get energy storage systems connected to this distribution system + :return: [EnergyStorageSystem] + """ + return self._energy_storage_systems + + @energy_storage_systems.setter + def energy_storage_systems(self, value): + """ + Set energy storage systems connected to this distribution system + :param value: [EnergyStorageSystem] + """ + self._energy_storage_systems = value + + @property + def emission_systems(self) -> Union[None, List[EmissionSystem]]: + """ + Get energy emission systems connected to this distribution system + :return: [EmissionSystem] + """ + return self._emission_systems + + @emission_systems.setter + def emission_systems(self, value): + """ + Set energy emission systems connected to this distribution system + :param value: [EmissionSystem] + """ + self._emission_systems = value diff --git a/hub/city_model_structure/energy_systems/electrical_storage_system.py b/hub/city_model_structure/energy_systems/electrical_storage_system.py index 080f86c7..c84051cb 100644 --- a/hub/city_model_structure/energy_systems/electrical_storage_system.py +++ b/hub/city_model_structure/energy_systems/electrical_storage_system.py @@ -1,83 +1,32 @@ """ -Energy System catalog heat generation system +Electrical storage system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from __future__ import annotations - -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem +from hub.city_model_structure.energy_systems.energy_storage_system import EnergyStorageSystem - -class ElectricalStorageSystem: - """ - Electrical Storage system class +class ElectricalStorageSystem(EnergyStorageSystem): + """" + Electrical Storage System Class """ + def __init__(self): - self._model_name = None - self._manufacturer = None - self._generic_storage_system = None + + super().__init__() self._rated_output_power = None self._nominal_efficiency = None self._battery_voltage = None self._depth_of_discharge = None self._self_discharge_rate = None - @property - def model_name(self): - """ - Get the model name - :return: string - """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set the model name - :return: string - """ - self._model_name = value - - @property - def manufacturer(self): - """ - Get the manufacturer name - :return: string - """ - return self._manufacturer - - @manufacturer.setter - def manufacturer(self, value): - """ - Set the manufacturer name - :return: string - """ - self._manufacturer = value - - @property - def generic_storage_system(self) -> GenericStorageSystem: - """ - Get associated generic_storage_system - :return: GenericStorageSystem - """ - return self._generic_storage_system - - @generic_storage_system.setter - def generic_storage_system(self, value): - """ - Set associated generic_storage_system - :param value: GenericStorageSystem - """ - self._generic_storage_system = value - @property def rated_output_power(self): """ - Get the rated output power in Watts + Get the rated output power of storage system in Watts :return: float """ return self._rated_output_power @@ -85,15 +34,15 @@ class ElectricalStorageSystem: @rated_output_power.setter def rated_output_power(self, value): """ - Set the rated output power in Watts - :return: float + Set the rated output power of storage system in Watts + :param value: float """ self._rated_output_power = value @property def nominal_efficiency(self): """ - Get the nominal efficiency + Get the nominal efficiency of the storage system :return: float """ return self._nominal_efficiency @@ -101,8 +50,8 @@ class ElectricalStorageSystem: @nominal_efficiency.setter def nominal_efficiency(self, value): """ - Set the nominal efficiency - :return: float + Set the nominal efficiency of the storage system + :param value: float """ self._nominal_efficiency = value @@ -117,8 +66,8 @@ class ElectricalStorageSystem: @battery_voltage.setter def battery_voltage(self, value): """ - Get the battery voltage in Volts - :return: float + Set the battery voltage in Volts + :param value: float """ self._battery_voltage = value @@ -134,7 +83,7 @@ class ElectricalStorageSystem: def depth_of_discharge(self, value): """ Set the depth of discharge as a percentage - :return: float + :param value: float """ self._depth_of_discharge = value @@ -149,7 +98,7 @@ class ElectricalStorageSystem: @self_discharge_rate.setter def self_discharge_rate(self, value): """ - Get the self discharge rate of battery as a percentage - :return: float + Set the self discharge rate of battery as a percentage + :param value: float """ self._self_discharge_rate = value diff --git a/hub/city_model_structure/energy_systems/emission_system.py b/hub/city_model_structure/energy_systems/emission_system.py index a1fd9a30..32bf7c17 100644 --- a/hub/city_model_structure/energy_systems/emission_system.py +++ b/hub/city_model_structure/energy_systems/emission_system.py @@ -1,32 +1,64 @@ """ -Energy emission system definition +Emission system module SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem - class EmissionSystem: """ EmissionSystem class """ def __init__(self): - self._generic_emission_system = None + self._model_name = None + self._type = None + self._parasitic_energy_consumption = None @property - def generic_emission_system(self) -> GenericEmissionSystem: + def model_name(self): """ - Get associated generic_emission_system - :return: GenericEmissionSystem + Get model name + :return: string """ - return self._generic_emission_system + return self._model_name - @generic_emission_system.setter - def generic_emission_system(self, value): + @model_name.setter + def model_name(self, value): """ - Set associated - :param value: GenericEmissionSystem + Set model name + :param value: string """ - self._generic_emission_system = value + self._model_name = value + + @property + def type(self): + """ + Get type + :return: string + """ + return self._type + + @type.setter + def type(self, value): + """ + Set type + :param value: string + """ + self._type = value + + @property + def parasitic_energy_consumption(self): + """ + Get parasitic_energy_consumption in ratio (W/W) + :return: float + """ + return self._parasitic_energy_consumption + + @parasitic_energy_consumption.setter + def parasitic_energy_consumption(self, value): + """ + Set parasitic_energy_consumption in ratio (W/W) + :param value: float + """ + self._parasitic_energy_consumption = value diff --git a/hub/city_model_structure/energy_systems/energy_storage_system.py b/hub/city_model_structure/energy_systems/energy_storage_system.py index 8841db9d..8951da02 100644 --- a/hub/city_model_structure/energy_systems/energy_storage_system.py +++ b/hub/city_model_structure/energy_systems/energy_storage_system.py @@ -1,9 +1,9 @@ """ -Energy storage system +Energy storage system. Abstract class SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from abc import ABC @@ -13,8 +13,13 @@ class EnergyStorageSystem(ABC): """ Energy storage System class """ - def __init__(self, generic_storage_system): - self._generic_storage_system = generic_storage_system + def __init__(self): + self._type_energy_stored = None + self._storage_type = None + self._model_name = None + self._manufacturer = None + self._nominal_capacity = None + self._losses_ratio = None @property def type_energy_stored(self): @@ -22,7 +27,15 @@ class EnergyStorageSystem(ABC): Get type of energy stored from ['electrical', 'thermal'] :return: string """ - return self._generic_storage_system.type_energy_stored + return self._type_energy_stored + + @type_energy_stored.setter + def type_energy_stored(self, value): + """ + Set type of energy stored from ['electrical', 'thermal'] + :return: string + """ + self._type_energy_stored = value @property def storage_type(self): @@ -30,7 +43,15 @@ class EnergyStorageSystem(ABC): Get storage type :return: string """ - return self._generic_storage_system.storage_type + return self._storage_type + + @storage_type.setter + def storage_type(self, value): + """ + Get storage type + :param value: string + """ + self._storage_type = value @property def model_name(self): @@ -38,7 +59,15 @@ class EnergyStorageSystem(ABC): Get system model :return: string """ - return self._generic_storage_system.model_name + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set system model + :param value: string + """ + self._model_name = value @property def manufacturer(self): @@ -46,7 +75,15 @@ class EnergyStorageSystem(ABC): Get name of manufacturer :return: string """ - return self._generic_storage_system.manufacturer + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set name of manufacturer + :param value: string + """ + self._manufacturer = value @property def nominal_capacity(self): @@ -54,7 +91,15 @@ class EnergyStorageSystem(ABC): Get the nominal capacity of storage systems in Jules :return: float """ - return self._generic_storage_system.nominal_capacity + return self._nominal_capacity + + @nominal_capacity.setter + def nominal_capacity(self, value): + """ + Set the nominal capacity of storage systems in Jules + :return: float + """ + self._nominal_capacity = value @property def losses_ratio(self): @@ -62,4 +107,12 @@ class EnergyStorageSystem(ABC): Get the losses-ratio of storage system in Jules lost / Jules stored :return: float """ - return self._generic_storage_system.losses_ratio + return self._losses_ratio + + @losses_ratio.setter + def losses_ratio(self, value): + """ + Set the losses-ratio of storage system in Jules lost / Jules stored + :return: float + """ + self._losses_ratio = value diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py index 0f5693ad..f76a93ae 100644 --- a/hub/city_model_structure/energy_systems/energy_system.py +++ b/hub/city_model_structure/energy_systems/energy_system.py @@ -6,9 +6,10 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from typing import Union, List +from pathlib import Path -from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem +from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.control_system import ControlSystem from hub.city_model_structure.city_object import CityObject @@ -17,28 +18,46 @@ class EnergySystem: """ EnergySystem class """ - def __init__(self, generic_energy_system): - self._generic_energy_system = generic_energy_system + def __init__(self): + self._demand_types = None + self._name = None self._generation_systems = None self._distribution_systems = None + self._configuration_schema = None self._connected_city_objects = None self._control_system = None - @property - def name(self): - """ - Get energy system name - :return: str - """ - return self._generic_energy_system.name - @property def demand_types(self): """ Get demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity] :return: [string] """ - return self._generic_energy_system.demand_types + return self._demand_types + + @demand_types.setter + def demand_types(self, value): + """ + Set demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity] + :param value: [string] + """ + self._demand_types = value + + @property + def name(self): + """ + Get energy system name + :return: str + """ + return self._name + + @name.setter + def name(self, value): + """ + Set energy system name + :param value: + """ + self._name = value @property def generation_systems(self) -> List[GenerationSystem]: @@ -52,7 +71,7 @@ class EnergySystem: def generation_systems(self, value): """ Set generation systems - :param value: [GenerationSystem] + :return: [GenerationSystem] """ self._generation_systems = value @@ -72,6 +91,22 @@ class EnergySystem: """ self._distribution_systems = value + @property + def configuration_schema(self) -> Path: + """ + Get the schema of the system configuration + :return: Path + """ + return self._configuration_schema + + @configuration_schema.setter + def configuration_schema(self, value): + """ + Set the schema of the system configuration + :param value: Path + """ + self._configuration_schema = value + @property def connected_city_objects(self) -> Union[None, List[CityObject]]: """ diff --git a/hub/city_model_structure/energy_systems/generation_system.py b/hub/city_model_structure/energy_systems/generation_system.py index 1a082bb3..8b2bcbab 100644 --- a/hub/city_model_structure/energy_systems/generation_system.py +++ b/hub/city_model_structure/energy_systems/generation_system.py @@ -1,8 +1,9 @@ """ -Energy generation system definition +Energy generation system (abstract class) SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from __future__ import annotations @@ -17,10 +18,13 @@ class GenerationSystem(ABC): """ GenerationSystem class """ - def __init__(self, generic_generation_system): - self._generic_generation_system = generic_generation_system + def __init__(self): + self._system_type = None + self._model_name = None + self._manufacturer = None + self._fuel_type = None self._distribution_systems = None - self._storage_systems = None + self._energy_storage_systems = None @property def system_type(self): @@ -28,23 +32,47 @@ class GenerationSystem(ABC): Get type :return: string """ - return self._generic_generation_system.system_type + return self._system_type + + @system_type.setter + def system_type(self, value): + """ + Set type + :param value: string + """ + self._system_type = value @property def model_name(self): """ - Get the model name + Get model name :return: string """ - return self._generic_generation_system.model_name + return self._model_name + + @model_name.setter + def model_name(self, value): + """ + Set model name + :param value: string + """ + self._model_name = value @property def manufacturer(self): """ - Get the manufacturer name + Get manufacturer's name :return: string """ - return self._generic_generation_system.manufacturer + return self._manufacturer + + @manufacturer.setter + def manufacturer(self, value): + """ + Set manufacturer's name + :param value: string + """ + self._manufacturer = value @property def fuel_type(self): @@ -52,13 +80,21 @@ class GenerationSystem(ABC): Get fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal] :return: string """ - return self._generic_generation_system.fuel_type + return self._fuel_type + + @fuel_type.setter + def fuel_type(self, value): + """ + Set fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal] + :param value: string + """ + self._fuel_type = value @property def distribution_systems(self) -> Union[None, List[DistributionSystem]]: """ Get distributions systems connected to this generation system - :return: [GenericDistributionSystem] + :return: [DistributionSystem] """ return self._distribution_systems @@ -71,17 +107,17 @@ class GenerationSystem(ABC): self._distribution_systems = value @property - def storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: + def energy_storage_systems(self) -> Union[None, List[EnergyStorageSystem]]: """ Get energy storage systems connected to this generation system :return: [EnergyStorageSystem] """ - return self._storage_systems + return self._energy_storage_systems - @storage_systems.setter - def storage_systems(self, value): + @energy_storage_systems.setter + def energy_storage_systems(self, value): """ Set energy storage systems connected to this generation system :param value: [EnergyStorageSystem] """ - self._storage_systems = value + self._energy_storage_systems = value diff --git a/hub/city_model_structure/energy_systems/generic_distribution_system.py b/hub/city_model_structure/energy_systems/generic_distribution_system.py deleted file mode 100644 index 887fcf77..00000000 --- a/hub/city_model_structure/energy_systems/generic_distribution_system.py +++ /dev/null @@ -1,175 +0,0 @@ -""" -Generic energy distribution system definition -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - -from typing import Union, List, TypeVar - -from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem - -GenericGenerationSystem = TypeVar('GenericGenerationSystem') - - -class GenericDistributionSystem: - """ - GenericDistributionSystem class - """ - def __init__(self): - self._model_name = None - self._type = None - self._supply_temperature = None - self._distribution_consumption_fix_flow = None - self._distribution_consumption_variable_flow = None - self._heat_losses = None - self._generic_generation_systems = None - self._generic_storage_systems = None - self._generic_emission_systems = None - - @property - def model_name(self): - """ - Get model name - :return: string - """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set model name - :param value: string - """ - self._model_name = value - - @property - def type(self): - """ - Get type from [air, water, refrigerant] - :return: string - """ - return self._type - - @type.setter - def type(self, value): - """ - Set type from [air, water, refrigerant] - :param value: string - """ - self._type = value - - @property - def supply_temperature(self): - """ - Get supply_temperature in degree Celsius - :return: float - """ - return self._supply_temperature - - @supply_temperature.setter - def supply_temperature(self, value): - """ - Set supply_temperature in degree Celsius - :param value: float - """ - self._supply_temperature = value - - @property - def distribution_consumption_fix_flow(self): - """ - Get distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W) - :return: float - """ - return self._distribution_consumption_fix_flow - - @distribution_consumption_fix_flow.setter - def distribution_consumption_fix_flow(self, value): - """ - Set distribution_consumption if the pump or fan work at fix mass or volume flow in ratio over peak power (W/W) - :return: float - """ - self._distribution_consumption_fix_flow = value - - @property - def distribution_consumption_variable_flow(self): - """ - Get distribution_consumption if the pump or fan work at variable mass or volume flow in ratio - over energy produced (J/J) - :return: float - """ - return self._distribution_consumption_variable_flow - - @distribution_consumption_variable_flow.setter - def distribution_consumption_variable_flow(self, value): - """ - Set distribution_consumption if the pump or fan work at variable mass or volume flow in ratio - over energy produced (J/J) - :return: float - """ - self._distribution_consumption_variable_flow = value - - @property - def heat_losses(self): - """ - Get heat_losses in ratio over energy produced - :return: float - """ - return self._heat_losses - - @heat_losses.setter - def heat_losses(self, value): - """ - Set heat_losses in ratio over energy produced - :param value: float - """ - self._heat_losses = value - - @property - def generic_generation_systems(self) -> Union[None, List[GenericGenerationSystem]]: - """ - Get generation systems connected to the distribution system - :return: [generic_generation_systems] - """ - return self._generic_generation_systems - - @generic_generation_systems.setter - def generic_generation_systems(self, value): - """ - Set generation systems connected to the distribution system - :param value: [generic_generation_systems] - """ - self._generic_generation_systems = value - - @property - def generic_storage_systems(self) -> Union[None, List[GenericStorageSystem]]: - """ - Get energy storage systems connected to this distribution system - :return: [GenericStorageSystem] - """ - return self._generic_storage_systems - - @generic_storage_systems.setter - def generic_storage_systems(self, value): - """ - Set energy storage systems connected to this distribution system - :param value: [GenericStorageSystem] - """ - self._generic_storage_systems = value - - @property - def generic_emission_systems(self) -> Union[None, List[GenericEmissionSystem]]: - """ - Get energy emission systems connected to this distribution system - :return: [GenericEmissionSystem] - """ - return self._generic_emission_systems - - @generic_emission_systems.setter - def generic_emission_systems(self, value): - """ - Set energy emission systems connected to this distribution system - :param value: [GenericEmissionSystem] - """ - self._generic_emission_systems = value diff --git a/hub/city_model_structure/energy_systems/generic_electrical_storage_system.py b/hub/city_model_structure/energy_systems/generic_electrical_storage_system.py deleted file mode 100644 index 0eb5419d..00000000 --- a/hub/city_model_structure/energy_systems/generic_electrical_storage_system.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -Generic electrical storage system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem - - -class GenericElectricalStorageSystem(GenericStorageSystem): - """" - Generic Electrical Storage System Class - """ - - def __init__(self): - - super().__init__() - self._rated_output_power = None - self._nominal_efficiency = None - self._battery_voltage = None - self._depth_of_discharge = None - self._self_discharge_rate = None - - @property - def rated_output_power(self): - """ - Get the rated output power of storage system in Watts - :return: float - """ - return self._rated_output_power - - @rated_output_power.setter - def rated_output_power(self, value): - """ - Set the rated output power of storage system in Watts - :param value: float - """ - self._rated_output_power = value - - @property - def nominal_efficiency(self): - """ - Get the nominal efficiency of the storage system - :return: float - """ - return self._nominal_efficiency - - @nominal_efficiency.setter - def nominal_efficiency(self, value): - """ - Set the nominal efficiency of the storage system - :param value: float - """ - self._nominal_efficiency = value - - @property - def battery_voltage(self): - """ - Get the battery voltage in Volts - :return: float - """ - return self._battery_voltage - - @battery_voltage.setter - def battery_voltage(self, value): - """ - Set the battery voltage in Volts - :param value: float - """ - self._battery_voltage = value - - @property - def depth_of_discharge(self): - """ - Get the depth of discharge as a percentage - :return: float - """ - return self._depth_of_discharge - - @depth_of_discharge.setter - def depth_of_discharge(self, value): - """ - Set the depth of discharge as a percentage - :param value: float - """ - self._depth_of_discharge = value - - @property - def self_discharge_rate(self): - """ - Get the self discharge rate of battery as a percentage - :return: float - """ - return self._self_discharge_rate - - @self_discharge_rate.setter - def self_discharge_rate(self, value): - """ - Set the self discharge rate of battery as a percentage - :param value: float - """ - self._self_discharge_rate = value diff --git a/hub/city_model_structure/energy_systems/generic_emission_system.py b/hub/city_model_structure/energy_systems/generic_emission_system.py deleted file mode 100644 index 7fb25507..00000000 --- a/hub/city_model_structure/energy_systems/generic_emission_system.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -Generic energy emission system module -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - - -class GenericEmissionSystem: - """ - GenericEmissionSystem class - """ - def __init__(self): - self._model_name = None - self._type = None - self._parasitic_energy_consumption = None - - @property - def model_name(self): - """ - Get model name - :return: string - """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set model name - :param value: string - """ - self._model_name = value - - @property - def type(self): - """ - Get type - :return: string - """ - return self._type - - @type.setter - def type(self, value): - """ - Set type - :param value: string - """ - self._type = value - - @property - def parasitic_energy_consumption(self): - """ - Get parasitic_energy_consumption in ratio (W/W) - :return: float - """ - return self._parasitic_energy_consumption - - @parasitic_energy_consumption.setter - def parasitic_energy_consumption(self, value): - """ - Set parasitic_energy_consumption in ratio (W/W) - :param value: float - """ - self._parasitic_energy_consumption = value diff --git a/hub/city_model_structure/energy_systems/generic_energy_system.py b/hub/city_model_structure/energy_systems/generic_energy_system.py deleted file mode 100644 index b18a6a43..00000000 --- a/hub/city_model_structure/energy_systems/generic_energy_system.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -Generic energy system definition -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - -from typing import Union, List -from pathlib import Path - -from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem - - -class GenericEnergySystem: - """ - GenericEnergySystem class - """ - def __init__(self): - self._demand_types = None - self._name = None - self._generation_systems = None - self._distribution_systems = None - self._configuration_schema = None - - @property - def demand_types(self): - """ - Get demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity] - :return: [string] - """ - return self._demand_types - - @demand_types.setter - def demand_types(self, value): - """ - Set demand able to cover from [Heating, Cooling, Domestic Hot Water, Electricity] - :param value: [string] - """ - self._demand_types = value - - @property - def name(self): - """ - Get energy system name - :return: str - """ - return self._name - - @name.setter - def name(self, value): - """ - Set energy system name - :param value: - """ - self._name = value - - @property - def generation_systems(self) -> List[GenericGenerationSystem]: - """ - Get generation systems - :return: [GenerationSystem] - """ - return self._generation_systems - - @generation_systems.setter - def generation_systems(self, value): - """ - Set generation systems - :return: [GenerationSystem] - """ - self._generation_systems = value - - @property - def distribution_systems(self) -> Union[None, List[GenericDistributionSystem]]: - """ - Get distribution systems - :return: [DistributionSystem] - """ - return self._distribution_systems - - @distribution_systems.setter - def distribution_systems(self, value): - """ - Set distribution systems - :param value: [DistributionSystem] - """ - self._distribution_systems = value - - @property - def configuration_schema(self) -> Path: - """ - Get the schema of the system configuration - :return: Path - """ - return self._configuration_schema - - @configuration_schema.setter - def configuration_schema(self, value): - """ - Set the schema of the system configuration - :param value: Path - """ - self._configuration_schema = value diff --git a/hub/city_model_structure/energy_systems/generic_generation_system.py b/hub/city_model_structure/energy_systems/generic_generation_system.py deleted file mode 100644 index 0d98e9cc..00000000 --- a/hub/city_model_structure/energy_systems/generic_generation_system.py +++ /dev/null @@ -1,123 +0,0 @@ -""" -Generic energy generation system (abstract class) -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from __future__ import annotations -from abc import ABC -from typing import Union, List - -from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem - - -class GenericGenerationSystem(ABC): - """ - GenericGenerationSystem class - """ - def __init__(self): - self._system_type = None - self._model_name = None - self._manufacturer = None - self._fuel_type = None - self._generic_distribution_systems = None - self._generic_storage_systems = None - - @property - def system_type(self): - """ - Get type - :return: string - """ - return self._system_type - - @system_type.setter - def system_type(self, value): - """ - Set type - :param value: string - """ - self._system_type = value - - @property - def model_name(self): - """ - Get model name - :return: string - """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set model name - :param value: string - """ - self._model_name = value - - @property - def manufacturer(self): - """ - Get manufacturer's name - :return: string - """ - return self._manufacturer - - @manufacturer.setter - def manufacturer(self, value): - """ - Set manufacturer's name - :param value: string - """ - self._manufacturer = value - - @property - def fuel_type(self): - """ - Get fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal] - :return: string - """ - return self._fuel_type - - @fuel_type.setter - def fuel_type(self, value): - """ - Set fuel_type from [Renewable, Gas, Diesel, Electricity, Wood, Coal] - :param value: string - """ - self._fuel_type = value - - @property - def generic_distribution_systems(self) -> Union[None, List[GenericDistributionSystem]]: - """ - Get distributions systems connected to this generation system - :return: [GenericDistributionSystem] - """ - return self._generic_distribution_systems - - @generic_distribution_systems.setter - def generic_distribution_systems(self, value): - """ - Set distributions systems connected to this generation system - :param value: [GenericDistributionSystem] - """ - self._generic_distribution_systems = value - - @property - def generic_storage_systems(self) -> Union[None, List[GenericStorageSystem]]: - """ - Get energy storage systems connected to this generation system - :return: [GenericStorageSystem] - """ - return self._generic_storage_systems - - @generic_storage_systems.setter - def generic_storage_systems(self, value): - """ - Set energy storage systems connected to this generation system - :param value: [GenericStorageSystem] - """ - self._generic_storage_systems = value diff --git a/hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py b/hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py deleted file mode 100644 index 8f5f8068..00000000 --- a/hub/city_model_structure/energy_systems/generic_non_pv_generation_system.py +++ /dev/null @@ -1,428 +0,0 @@ -""" -Generic non PV energy generation system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from typing import Union - -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem -from hub.city_model_structure.energy_systems.performance_curve import PerformanceCurves - - -class GenericNonPvGenerationSystem(GenericGenerationSystem): - """ - GenericNonPvGenerationSystem class - """ - def __init__(self): - super().__init__() - self._nominal_heat_output = None - self._maximum_heat_output = None - self._minimum_heat_output = None - self._heat_efficiency = None - self._nominal_cooling_output = None - self._maximum_cooling_output = None - self._minimum_cooling_output = None - self._cooling_efficiency = None - self._electricity_efficiency = None - self._nominal_electricity_output = None - self._source_medium = None - self._source_temperature = None - self._source_mass_flow = None - self._supply_medium = None - self._maximum_heat_supply_temperature = None - self._minimum_heat_supply_temperature = None - self._maximum_cooling_supply_temperature = None - self._minimum_cooling_supply_temperature = None - self._heat_output_curve = None - self._heat_fuel_consumption_curve = None - self._heat_efficiency_curve = None - self._cooling_output_curve = None - self._cooling_fuel_consumption_curve = None - self._cooling_efficiency_curve = None - - @property - def nominal_heat_output(self): - """ - Get nominal heat output of heat generation devices in W - :return: float - """ - return self._nominal_heat_output - - @nominal_heat_output.setter - def nominal_heat_output(self, value): - """ - Set nominal heat output of heat generation devices in W - :param value: float - """ - self._nominal_heat_output = value - - @property - def maximum_heat_output(self): - """ - Get maximum heat output of heat generation devices in W - :return: float - """ - return self._maximum_heat_output - - @maximum_heat_output.setter - def maximum_heat_output(self, value): - """ - Set maximum heat output of heat generation devices in W - :param value: float - """ - self._maximum_heat_output = value - - @property - def minimum_heat_output(self): - """ - Get minimum heat output of heat generation devices in W - :return: float - """ - return self._minimum_heat_output - - @minimum_heat_output.setter - def minimum_heat_output(self, value): - """ - Set minimum heat output of heat generation devices in W - :param value: float - """ - self._minimum_heat_output = value - - @property - def source_medium(self): - """ - Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] - :return: string - """ - return self._source_medium - - @source_medium.setter - def source_medium(self, value): - """ - Set source medium from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity] - :param value: [string] - """ - self._source_medium = value - - @property - def supply_medium(self): - """ - Get the supply medium from ['air', 'water'] - :return: string - """ - return self._supply_medium - - @supply_medium.setter - def supply_medium(self, value): - """ - Set the supply medium from ['air', 'water'] - :param value: string - """ - self._supply_medium = value - - @property - def heat_efficiency(self): - """ - Get heat_efficiency - :return: float - """ - return self._heat_efficiency - - @heat_efficiency.setter - def heat_efficiency(self, value): - """ - Set heat_efficiency - :param value: float - """ - self._heat_efficiency = value - - @property - def nominal_cooling_output(self): - """ - Get nominal cooling output of heat generation devices in W - :return: float - """ - return self._nominal_cooling_output - - @nominal_cooling_output.setter - def nominal_cooling_output(self, value): - """ - Set nominal cooling output of heat generation devices in W - :param value: float - """ - self._nominal_cooling_output = value - - @property - def maximum_cooling_output(self): - """ - Get maximum heat output of heat generation devices in W - :return: float - """ - return self._maximum_cooling_output - - @maximum_cooling_output.setter - def maximum_cooling_output(self, value): - """ - Set maximum heat output of heat generation devices in W - :param value: float - """ - self._maximum_cooling_output = value - - @property - def minimum_cooling_output(self): - """ - Get minimum heat output of heat generation devices in W - :return: float - """ - return self._minimum_cooling_output - - @minimum_cooling_output.setter - def minimum_cooling_output(self, value): - """ - Set minimum heat output of heat generation devices in W - :param value: float - """ - self._minimum_cooling_output = value - - @property - def cooling_efficiency(self): - """ - Get cooling_efficiency - :return: float - """ - return self._cooling_efficiency - - @cooling_efficiency.setter - def cooling_efficiency(self, value): - """ - Set cooling_efficiency - :param value: float - """ - self._cooling_efficiency = value - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._electricity_efficiency - - @electricity_efficiency.setter - def electricity_efficiency(self, value): - """ - Set electricity_efficiency - :param value: float - """ - self._electricity_efficiency = value - - @property - def source_temperature(self): - """ - Get source_temperature in degree Celsius - :return: float - """ - return self._source_temperature - - @source_temperature.setter - def source_temperature(self, value): - """ - Set source_temperature in degree Celsius - :param value: float - """ - self._source_temperature = value - - @property - def source_mass_flow(self): - """ - Get source_mass_flow in kg/s - :return: float - """ - return self._source_mass_flow - - @source_mass_flow.setter - def source_mass_flow(self, value): - """ - Set source_mass_flow in kg/s - :param value: float - """ - self._source_mass_flow = value - - @property - def nominal_electricity_output(self): - """ - Get nominal_power_output of electricity generation devices or inverters in W - :return: float - """ - return self._nominal_electricity_output - - @nominal_electricity_output.setter - def nominal_electricity_output(self, value): - """ - Get nominal_power_output of electricity generation devices or inverters in W - :param value: float - """ - self._nominal_electricity_output = value - - @property - def maximum_heat_supply_temperature(self): - """ - Get the maximum heat supply temperature in degree Celsius - :return: float - """ - return self._minimum_heat_supply_temperature - - @maximum_heat_supply_temperature.setter - def maximum_heat_supply_temperature(self, value): - """ - Set maximum heating supply temperature in degree Celsius - :param value: float - """ - self._maximum_heat_supply_temperature = value - - @property - def minimum_heat_supply_temperature(self): - """ - Get the minimum heat supply temperature in degree Celsius - :return: float - """ - return self._minimum_heat_supply_temperature - - @minimum_heat_supply_temperature.setter - def minimum_heat_supply_temperature(self, value): - """ - Set minimum heating supply temperature in degree Celsius - :param value: float - """ - self._minimum_heat_supply_temperature = value - - @property - def maximum_cooling_supply_temperature(self): - """ - Get the maximum cooling supply temperature in degree Celsius - :return: float - """ - return self._maximum_cooling_supply_temperature - - @maximum_cooling_supply_temperature.setter - def maximum_cooling_supply_temperature(self, value): - """ - Set maximum cooling supply temperature in degree Celsius - :param value: float - """ - self._maximum_cooling_supply_temperature = value - - @property - def minimum_cooling_supply_temperature(self): - """ - Get the minimum cooling supply temperature in degree Celsius - :return: float - """ - return self._minimum_cooling_supply_temperature - - @minimum_cooling_supply_temperature.setter - def minimum_cooling_supply_temperature(self, value): - """ - Set minimum cooling supply temperature in degree Celsius - :param value: float - """ - self._minimum_cooling_supply_temperature = value - - @property - def heat_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_output_curve - - @heat_output_curve.setter - def heat_output_curve(self, value): - """ - Set the heat output curve of the heat generation device - :return: PerformanceCurve - """ - self._heat_output_curve = value - - @property - def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_fuel_consumption_curve - - @heat_fuel_consumption_curve.setter - def heat_fuel_consumption_curve(self, value): - """ - Set the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - self._heat_fuel_consumption_curve = value - - @property - def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._heat_efficiency_curve - - @heat_efficiency_curve.setter - def heat_efficiency_curve(self, value): - """ - Set the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - self._heat_efficiency_curve = value - - @property - def cooling_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_output_curve - - @cooling_output_curve.setter - def cooling_output_curve(self, value): - """ - Set the cooling output curve of the heat generation device - :return: PerformanceCurve - """ - self._cooling_output_curve = value - - @property - def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_fuel_consumption_curve - - @cooling_fuel_consumption_curve.setter - def cooling_fuel_consumption_curve(self, value): - """ - Set the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - self._cooling_fuel_consumption_curve = value - - @property - def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._cooling_efficiency_curve - - @cooling_efficiency_curve.setter - def cooling_efficiency_curve(self, value): - """ - Set the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - self._cooling_efficiency_curve = value diff --git a/hub/city_model_structure/energy_systems/generic_pv_generation_system.py b/hub/city_model_structure/energy_systems/generic_pv_generation_system.py deleted file mode 100644 index 280f021d..00000000 --- a/hub/city_model_structure/energy_systems/generic_pv_generation_system.py +++ /dev/null @@ -1,187 +0,0 @@ -""" -Generic PV energy generation system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem - - -class GenericPvGenerationSystem(GenericGenerationSystem): - """ - GenericPvGenerationSystem class - """ - def __init__(self): - super().__init__() - self._electricity_efficiency = None - self._nominal_electricity_output = None - self._nominal_ambient_temperature = None - self._nominal_cell_temperature = None - self._nominal_radiation = None - self._standard_test_condition_cell_temperature = None - self._standard_test_condition_maximum_power = None - self._cell_temperature_coefficient = None - self._width = None - self._height = None - - @property - def nominal_electricity_output(self): - """ - Get nominal_power_output of electricity generation devices or inverters in W - :return: float - """ - return self._nominal_electricity_output - - @nominal_electricity_output.setter - def nominal_electricity_output(self, value): - """ - Set nominal_power_output of electricity generation devices or inverters in W - :param value: float - """ - self._nominal_electricity_output = value - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._electricity_efficiency - - @electricity_efficiency.setter - def electricity_efficiency(self, value): - """ - Set electricity_efficiency - :param value: float - """ - self._electricity_efficiency = value - - @property - def nominal_ambient_temperature(self): - """ - Get nominal ambient temperature of PV panels in degree Celsius - :return: float - """ - return self._nominal_ambient_temperature - - @nominal_ambient_temperature.setter - def nominal_ambient_temperature(self, value): - """ - Set nominal ambient temperature of PV panels in degree Celsius - :param value: float - """ - self._nominal_ambient_temperature = value - - @property - def nominal_cell_temperature(self): - """ - Get nominal cell temperature of PV panels in degree Celsius - :return: float - """ - return self._nominal_cell_temperature - - @nominal_cell_temperature.setter - def nominal_cell_temperature(self, value): - """ - Set nominal cell temperature of PV panels in degree Celsius - :param value: float - """ - self._nominal_cell_temperature = value - - @property - def nominal_radiation(self): - """ - Get nominal radiation of PV panels - :return: float - """ - return self._nominal_radiation - - @nominal_radiation.setter - def nominal_radiation(self, value): - """ - Set nominal radiation of PV panels - :param value: float - """ - self._nominal_radiation = value - - @property - def standard_test_condition_cell_temperature(self): - """ - Get standard test condition cell temperature of PV panels in degree Celsius - :return: float - """ - return self._standard_test_condition_cell_temperature - - @standard_test_condition_cell_temperature.setter - def standard_test_condition_cell_temperature(self, value): - """ - Set standard test condition cell temperature of PV panels in degree Celsius - :param value: float - """ - self._standard_test_condition_cell_temperature = value - - @property - def standard_test_condition_maximum_power(self): - """ - Get standard test condition maximum power of PV panels in W - :return: float - """ - return self._standard_test_condition_maximum_power - - @standard_test_condition_maximum_power.setter - def standard_test_condition_maximum_power(self, value): - """ - Set standard test condition maximum power of PV panels in W - :param value: float - """ - self._standard_test_condition_maximum_power = value - - @property - def cell_temperature_coefficient(self): - """ - Get cell temperature coefficient of PV module - :return: float - """ - return self._cell_temperature_coefficient - - @cell_temperature_coefficient.setter - def cell_temperature_coefficient(self, value): - """ - Set cell temperature coefficient of PV module - :param value: float - """ - self._cell_temperature_coefficient = value - - @property - def width(self): - """ - Get PV module width in m - :return: float - """ - return self._width - - @width.setter - def width(self, value): - """ - Set PV module width in m - :param value: float - """ - self._width = value - - @property - def height(self): - """ - Get PV module height in m - :return: float - """ - return self._height - - @height.setter - def height(self, value): - """ - Set PV module height in m - :param value: float - """ - self._height = value diff --git a/hub/city_model_structure/energy_systems/generic_storage_system.py b/hub/city_model_structure/energy_systems/generic_storage_system.py deleted file mode 100644 index 1bc4efd1..00000000 --- a/hub/city_model_structure/energy_systems/generic_storage_system.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -Energy System catalog heat generation system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca -Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - -from abc import ABC - - -class GenericStorageSystem(ABC): - """ - Generic storage System class - """ - def __init__(self): - self._type_energy_stored = None - self._storage_type = None - self._model_name = None - self._manufacturer = None - self._nominal_capacity = None - self._losses_ratio = None - - @property - def type_energy_stored(self): - """ - Get type of energy stored from ['electrical', 'thermal'] - :return: string - """ - return self._type_energy_stored - - @type_energy_stored.setter - def type_energy_stored(self, value): - """ - Set type of energy stored from ['electrical', 'thermal'] - :return: string - """ - self._type_energy_stored = value - - @property - def storage_type(self): - """ - Get storage type - :return: string - """ - return self._storage_type - - @storage_type.setter - def storage_type(self, value): - """ - Get storage type - :param value: string - """ - self._storage_type = value - - @property - def model_name(self): - """ - Get system model - :return: string - """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set system model - :param value: string - """ - self._model_name = value - - @property - def manufacturer(self): - """ - Get name of manufacturer - :return: string - """ - return self._manufacturer - - @manufacturer.setter - def manufacturer(self, value): - """ - Set name of manufacturer - :param value: string - """ - self._manufacturer = value - - @property - def nominal_capacity(self): - """ - Get the nominal capacity of storage systems in Jules - :return: float - """ - return self._nominal_capacity - - @nominal_capacity.setter - def nominal_capacity(self, value): - """ - Set the nominal capacity of storage systems in Jules - :return: float - """ - self._nominal_capacity = value - - @property - def losses_ratio(self): - """ - Get the losses-ratio of storage system in Jules lost / Jules stored - :return: float - """ - return self._losses_ratio - - @losses_ratio.setter - def losses_ratio(self, value): - """ - Set the losses-ratio of storage system in Jules lost / Jules stored - :return: float - """ - self._losses_ratio = value diff --git a/hub/city_model_structure/energy_systems/generic_thermal_storage_system.py b/hub/city_model_structure/energy_systems/generic_thermal_storage_system.py deleted file mode 100644 index c0cfadd9..00000000 --- a/hub/city_model_structure/energy_systems/generic_thermal_storage_system.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -Generic thermal storage system -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2023 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca -""" - -from hub.city_model_structure.energy_systems.generic_storage_system import GenericStorageSystem -from hub.city_model_structure.building_demand.layer import Layer - - -class GenericThermalStorageSystem(GenericStorageSystem): - """" - Generic Thermal Storage System Class - """ - - def __init__(self): - - super().__init__() - self._volume = None - self._height = None - self._layers = None - self._maximum_operating_temperature = None - - @property - def volume(self): - """ - Get the physical volume of the storage system in cubic meters - :return: float - """ - return self._volume - - @volume.setter - def volume(self, value): - """ - Set the physical volume of the storage system in cubic meters - :param value: float - """ - self._volume = value - - @property - def height(self): - """ - Get the diameter of the storage system in meters - :return: float - """ - return self._height - - @height.setter - def height(self, value): - """ - Set the diameter of the storage system in meters - :param value: float - """ - self._height = value - - @property - def layers(self) -> [Layer]: - """ - Get construction layers - :return: [layer] - """ - return self._layers - - @layers.setter - def layers(self, value): - """ - Set construction layers - :param value: [layer] - """ - self._layers = value - - @property - def maximum_operating_temperature(self): - """ - Get maximum operating temperature of the storage system in degree Celsius - :return: float - """ - return self._maximum_operating_temperature - - @maximum_operating_temperature.setter - def maximum_operating_temperature(self, value): - """ - Set maximum operating temperature of the storage system in degree Celsius - :param value: float - """ - self._maximum_operating_temperature = value diff --git a/hub/city_model_structure/energy_systems/non_pv_generation_system.py b/hub/city_model_structure/energy_systems/non_pv_generation_system.py index 7f1bdf90..9db9f683 100644 --- a/hub/city_model_structure/energy_systems/non_pv_generation_system.py +++ b/hub/city_model_structure/energy_systems/non_pv_generation_system.py @@ -1,27 +1,435 @@ """ -Non PV generation system definition +Non PV energy generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ from typing import Union -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.performance_curve import PerformanceCurves -class NonPvGenerationSystem(GenericGenerationSystem): +class NonPvGenerationSystem(GenerationSystem): """ NonPvGenerationSystem class """ - def __init__(self, non_pv_generation_system): + def __init__(self): super().__init__() - self._non_pv_generation_system = non_pv_generation_system + self._nominal_heat_output = None + self._maximum_heat_output = None + self._minimum_heat_output = None + self._heat_efficiency = None + self._nominal_cooling_output = None + self._maximum_cooling_output = None + self._minimum_cooling_output = None + self._cooling_efficiency = None + self._electricity_efficiency = None + self._nominal_electricity_output = None + self._source_medium = None + self._source_temperature = None + self._source_mass_flow = None + self._supply_medium = None + self._maximum_heat_supply_temperature = None + self._minimum_heat_supply_temperature = None + self._maximum_cooling_supply_temperature = None + self._minimum_cooling_supply_temperature = None + self._heat_output_curve = None + self._heat_fuel_consumption_curve = None + self._heat_efficiency_curve = None + self._cooling_output_curve = None + self._cooling_fuel_consumption_curve = None + self._cooling_efficiency_curve = None self._heat_power = None self._cooling_power = None self._electricity_power = None + @property + def nominal_heat_output(self): + """ + Get nominal heat output of heat generation devices in W + :return: float + """ + return self._nominal_heat_output + + @nominal_heat_output.setter + def nominal_heat_output(self, value): + """ + Set nominal heat output of heat generation devices in W + :param value: float + """ + self._nominal_heat_output = value + + @property + def maximum_heat_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_heat_output + + @maximum_heat_output.setter + def maximum_heat_output(self, value): + """ + Set maximum heat output of heat generation devices in W + :param value: float + """ + self._maximum_heat_output = value + + @property + def minimum_heat_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_heat_output + + @minimum_heat_output.setter + def minimum_heat_output(self, value): + """ + Set minimum heat output of heat generation devices in W + :param value: float + """ + self._minimum_heat_output = value + + @property + def source_medium(self): + """ + Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] + :return: string + """ + return self._source_medium + + @source_medium.setter + def source_medium(self, value): + """ + Set source medium from [Air, Water, Geothermal, District Heating, Grid, Onsite Electricity] + :param value: [string] + """ + self._source_medium = value + + @property + def supply_medium(self): + """ + Get the supply medium from ['air', 'water'] + :return: string + """ + return self._supply_medium + + @supply_medium.setter + def supply_medium(self, value): + """ + Set the supply medium from ['air', 'water'] + :param value: string + """ + self._supply_medium = value + + @property + def heat_efficiency(self): + """ + Get heat_efficiency + :return: float + """ + return self._heat_efficiency + + @heat_efficiency.setter + def heat_efficiency(self, value): + """ + Set heat_efficiency + :param value: float + """ + self._heat_efficiency = value + + @property + def nominal_cooling_output(self): + """ + Get nominal cooling output of heat generation devices in W + :return: float + """ + return self._nominal_cooling_output + + @nominal_cooling_output.setter + def nominal_cooling_output(self, value): + """ + Set nominal cooling output of heat generation devices in W + :param value: float + """ + self._nominal_cooling_output = value + + @property + def maximum_cooling_output(self): + """ + Get maximum heat output of heat generation devices in W + :return: float + """ + return self._maximum_cooling_output + + @maximum_cooling_output.setter + def maximum_cooling_output(self, value): + """ + Set maximum heat output of heat generation devices in W + :param value: float + """ + self._maximum_cooling_output = value + + @property + def minimum_cooling_output(self): + """ + Get minimum heat output of heat generation devices in W + :return: float + """ + return self._minimum_cooling_output + + @minimum_cooling_output.setter + def minimum_cooling_output(self, value): + """ + Set minimum heat output of heat generation devices in W + :param value: float + """ + self._minimum_cooling_output = value + + @property + def cooling_efficiency(self): + """ + Get cooling_efficiency + :return: float + """ + return self._cooling_efficiency + + @cooling_efficiency.setter + def cooling_efficiency(self, value): + """ + Set cooling_efficiency + :param value: float + """ + self._cooling_efficiency = value + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + + @electricity_efficiency.setter + def electricity_efficiency(self, value): + """ + Set electricity_efficiency + :param value: float + """ + self._electricity_efficiency = value + + @property + def source_temperature(self): + """ + Get source_temperature in degree Celsius + :return: float + """ + return self._source_temperature + + @source_temperature.setter + def source_temperature(self, value): + """ + Set source_temperature in degree Celsius + :param value: float + """ + self._source_temperature = value + + @property + def source_mass_flow(self): + """ + Get source_mass_flow in kg/s + :return: float + """ + return self._source_mass_flow + + @source_mass_flow.setter + def source_mass_flow(self, value): + """ + Set source_mass_flow in kg/s + :param value: float + """ + self._source_mass_flow = value + + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :return: float + """ + return self._nominal_electricity_output + + @nominal_electricity_output.setter + def nominal_electricity_output(self, value): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :param value: float + """ + self._nominal_electricity_output = value + + @property + def maximum_heat_supply_temperature(self): + """ + Get the maximum heat supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @maximum_heat_supply_temperature.setter + def maximum_heat_supply_temperature(self, value): + """ + Set maximum heating supply temperature in degree Celsius + :param value: float + """ + self._maximum_heat_supply_temperature = value + + @property + def minimum_heat_supply_temperature(self): + """ + Get the minimum heat supply temperature in degree Celsius + :return: float + """ + return self._minimum_heat_supply_temperature + + @minimum_heat_supply_temperature.setter + def minimum_heat_supply_temperature(self, value): + """ + Set minimum heating supply temperature in degree Celsius + :param value: float + """ + self._minimum_heat_supply_temperature = value + + @property + def maximum_cooling_supply_temperature(self): + """ + Get the maximum cooling supply temperature in degree Celsius + :return: float + """ + return self._maximum_cooling_supply_temperature + + @maximum_cooling_supply_temperature.setter + def maximum_cooling_supply_temperature(self, value): + """ + Set maximum cooling supply temperature in degree Celsius + :param value: float + """ + self._maximum_cooling_supply_temperature = value + + @property + def minimum_cooling_supply_temperature(self): + """ + Get the minimum cooling supply temperature in degree Celsius + :return: float + """ + return self._minimum_cooling_supply_temperature + + @minimum_cooling_supply_temperature.setter + def minimum_cooling_supply_temperature(self, value): + """ + Set minimum cooling supply temperature in degree Celsius + :param value: float + """ + self._minimum_cooling_supply_temperature = value + + @property + def heat_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_output_curve + + @heat_output_curve.setter + def heat_output_curve(self, value): + """ + Set the heat output curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_output_curve = value + + @property + def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_fuel_consumption_curve + + @heat_fuel_consumption_curve.setter + def heat_fuel_consumption_curve(self, value): + """ + Set the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_fuel_consumption_curve = value + + @property + def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._heat_efficiency_curve + + @heat_efficiency_curve.setter + def heat_efficiency_curve(self, value): + """ + Set the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + self._heat_efficiency_curve = value + + @property + def cooling_output_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heat output curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_output_curve + + @cooling_output_curve.setter + def cooling_output_curve(self, value): + """ + Set the cooling output curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_output_curve = value + + @property + def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_fuel_consumption_curve + + @cooling_fuel_consumption_curve.setter + def cooling_fuel_consumption_curve(self, value): + """ + Set the heating fuel consumption curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_fuel_consumption_curve = value + + @property + def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: + """ + Get the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + return self._cooling_efficiency_curve + + @cooling_efficiency_curve.setter + def cooling_efficiency_curve(self, value): + """ + Set the heating efficiency curve of the heat generation device + :return: PerformanceCurve + """ + self._cooling_efficiency_curve = value + @property def heat_power(self): """ @@ -70,194 +478,3 @@ class NonPvGenerationSystem(GenericGenerationSystem): """ self._electricity_power = value - @property - def nominal_heat_output(self): - """ - Get nominal heat output of heat generation devices in W - :return: float - """ - return self._non_pv_generation_system.nominal_heat_output - - @property - def maximum_heat_output(self): - """ - Get maximum heat output of heat generation devices in W - :return: float - """ - return self._non_pv_generation_system.maximum_heat_output - - @property - def minimum_heat_output(self): - """ - Get minimum heat output of heat generation devices in W - :return: float - """ - return self._non_pv_generation_system.minimum_heat_output - - @property - def source_medium(self): - """ - Get source_type from [air, water, ground, district_heating, grid, on_site_electricity] - :return: string - """ - return self._non_pv_generation_system.source_medium - - @property - def supply_medium(self): - """ - Get the supply medium from ['air', 'water'] - :return: string - """ - return self._non_pv_generation_system.supply_medium - - @property - def heat_efficiency(self): - """ - Get heat_efficiency - :return: float - """ - return self._non_pv_generation_system.heat_efficiency - - @property - def nominal_cooling_output(self): - """ - Get nominal cooling output of heat generation devices in W - :return: float - """ - return self._non_pv_generation_system.nominal_cooling_output - - @property - def maximum_cooling_output(self): - """ - Get maximum heat output of heat generation devices in W - :return: float - """ - return self._non_pv_generation_system.maximum_cooling_output - - @property - def minimum_cooling_output(self): - """ - Get minimum heat output of heat generation devices in W - :return: float - """ - return self._non_pv_generation_system.minimum_cooling_output - - @property - def cooling_efficiency(self): - """ - Get cooling_efficiency - :return: float - """ - return self._non_pv_generation_system.cooling_efficiency - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._non_pv_generation_system.electricity_efficiency - - @property - def source_temperature(self): - """ - Get source_temperature in degree Celsius - :return: float - """ - return self._non_pv_generation_system.source_temperature - - @property - def source_mass_flow(self): - """ - Get source_mass_flow in kg/s - :return: float - """ - return self._non_pv_generation_system.source_mass_flow - - @property - def nominal_electricity_output(self): - """ - Get nominal_power_output of electricity generation devices or inverters in W - :return: float - """ - return self._non_pv_generation_system.nominal_electricity_output - - @property - def maximum_heat_supply_temperature(self): - """ - Get the maximum heat supply temperature in degree Celsius - :return: float - """ - return self._non_pv_generation_system.maximum_heat_supply_temperature - - @property - def minimum_heat_supply_temperature(self): - """ - Get the minimum heat supply temperature in degree Celsius - :return: float - """ - return self._non_pv_generation_system.minimum_heat_supply_temperature - - @property - def maximum_cooling_supply_temperature(self): - """ - Get the maximum cooling supply temperature in degree Celsius - :return: float - """ - return self._non_pv_generation_system.maximum_cooling_supply_temperature - - @property - def minimum_cooling_supply_temperature(self): - """ - Get the minimum cooling supply temperature in degree Celsius - :return: float - """ - return self._non_pv_generation_system.minimum_cooling_supply_temperature - - @property - def heat_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._non_pv_generation_system.heat_output_curve - - @property - def heat_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._non_pv_generation_system.heat_fuel_consumption_curve - - @property - def heat_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._non_pv_generation_system.heat_efficiency_curve - - @property - def cooling_output_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heat output curve of the heat generation device - :return: PerformanceCurve - """ - return self._non_pv_generation_system.cooling_output_curve - - @property - def cooling_fuel_consumption_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating fuel consumption curve of the heat generation device - :return: PerformanceCurve - """ - return self._non_pv_generation_system.cooling_fuel_consumption_curve - - @property - def cooling_efficiency_curve(self) -> Union[None, PerformanceCurves]: - """ - Get the heating efficiency curve of the heat generation device - :return: PerformanceCurve - """ - return self._non_pv_generation_system.cooling_efficiency_curve diff --git a/hub/city_model_structure/energy_systems/pv_generation_system.py b/hub/city_model_structure/energy_systems/pv_generation_system.py index ef915aaf..13409c7e 100644 --- a/hub/city_model_structure/energy_systems/pv_generation_system.py +++ b/hub/city_model_structure/energy_systems/pv_generation_system.py @@ -1,22 +1,192 @@ """ -PV generation system definition +PV energy generation system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.generation_system import GenerationSystem -class PvGenerationSystem(GenericGenerationSystem): +class PvGenerationSystem(GenerationSystem): """ PvGenerationSystem class """ - def __init__(self, generic_pv_generation_system): + def __init__(self): super().__init__() - self._generic_pv_generation_system = generic_pv_generation_system + self._electricity_efficiency = None + self._nominal_electricity_output = None + self._nominal_ambient_temperature = None + self._nominal_cell_temperature = None + self._nominal_radiation = None + self._standard_test_condition_cell_temperature = None + self._standard_test_condition_maximum_power = None + self._cell_temperature_coefficient = None + self._width = None + self._height = None self._electricity_power = None + @property + def nominal_electricity_output(self): + """ + Get nominal_power_output of electricity generation devices or inverters in W + :return: float + """ + return self._nominal_electricity_output + + @nominal_electricity_output.setter + def nominal_electricity_output(self, value): + """ + Set nominal_power_output of electricity generation devices or inverters in W + :param value: float + """ + self._nominal_electricity_output = value + + @property + def electricity_efficiency(self): + """ + Get electricity_efficiency + :return: float + """ + return self._electricity_efficiency + + @electricity_efficiency.setter + def electricity_efficiency(self, value): + """ + Set electricity_efficiency + :param value: float + """ + self._electricity_efficiency = value + + @property + def nominal_ambient_temperature(self): + """ + Get nominal ambient temperature of PV panels in degree Celsius + :return: float + """ + return self._nominal_ambient_temperature + + @nominal_ambient_temperature.setter + def nominal_ambient_temperature(self, value): + """ + Set nominal ambient temperature of PV panels in degree Celsius + :param value: float + """ + self._nominal_ambient_temperature = value + + @property + def nominal_cell_temperature(self): + """ + Get nominal cell temperature of PV panels in degree Celsius + :return: float + """ + return self._nominal_cell_temperature + + @nominal_cell_temperature.setter + def nominal_cell_temperature(self, value): + """ + Set nominal cell temperature of PV panels in degree Celsius + :param value: float + """ + self._nominal_cell_temperature = value + + @property + def nominal_radiation(self): + """ + Get nominal radiation of PV panels + :return: float + """ + return self._nominal_radiation + + @nominal_radiation.setter + def nominal_radiation(self, value): + """ + Set nominal radiation of PV panels + :param value: float + """ + self._nominal_radiation = value + + @property + def standard_test_condition_cell_temperature(self): + """ + Get standard test condition cell temperature of PV panels in degree Celsius + :return: float + """ + return self._standard_test_condition_cell_temperature + + @standard_test_condition_cell_temperature.setter + def standard_test_condition_cell_temperature(self, value): + """ + Set standard test condition cell temperature of PV panels in degree Celsius + :param value: float + """ + self._standard_test_condition_cell_temperature = value + + @property + def standard_test_condition_maximum_power(self): + """ + Get standard test condition maximum power of PV panels in W + :return: float + """ + return self._standard_test_condition_maximum_power + + @standard_test_condition_maximum_power.setter + def standard_test_condition_maximum_power(self, value): + """ + Set standard test condition maximum power of PV panels in W + :param value: float + """ + self._standard_test_condition_maximum_power = value + + @property + def cell_temperature_coefficient(self): + """ + Get cell temperature coefficient of PV module + :return: float + """ + return self._cell_temperature_coefficient + + @cell_temperature_coefficient.setter + def cell_temperature_coefficient(self, value): + """ + Set cell temperature coefficient of PV module + :param value: float + """ + self._cell_temperature_coefficient = value + + @property + def width(self): + """ + Get PV module width in m + :return: float + """ + return self._width + + @width.setter + def width(self, value): + """ + Set PV module width in m + :param value: float + """ + self._width = value + + @property + def height(self): + """ + Get PV module height in m + :return: float + """ + return self._height + + @height.setter + def height(self, value): + """ + Set PV module height in m + :param value: float + """ + self._height = value + @property def electricity_power(self): """ @@ -32,83 +202,3 @@ class PvGenerationSystem(GenericGenerationSystem): :param value: float """ self._electricity_power = value - - @property - def nominal_electricity_output(self): - """ - Get nominal_power_output of electricity generation devices or inverters in W - :return: float - """ - return self._generic_pv_generation_system.nominal_electricity_output - - @property - def electricity_efficiency(self): - """ - Get electricity_efficiency - :return: float - """ - return self._generic_pv_generation_system.electricity_efficiency - - @property - def nominal_ambient_temperature(self): - """ - Get nominal ambient temperature of PV panels in degree Celsius - :return: float - """ - return self._generic_pv_generation_system.nominal_ambient_temperature - - @property - def nominal_cell_temperature(self): - """ - Get nominal cell temperature of PV panels in degree Celsius - :return: float - """ - return self._generic_pv_generation_system.nominal_cell_temperature - - @property - def nominal_radiation(self): - """ - Get nominal radiation of PV panels - :return: float - """ - return self._generic_pv_generation_system.nominal_radiation - - @property - def standard_test_condition_cell_temperature(self): - """ - Get standard test condition cell temperature of PV panels in degree Celsius - :return: float - """ - return self._generic_pv_generation_system.standard_test_condition_cell_temperature - - @property - def standard_test_condition_maximum_power(self): - """ - Get standard test condition maximum power of PV panels in W - :return: float - """ - return self._generic_pv_generation_system.standard_test_condition_maximum_power - - @property - def cell_temperature_coefficient(self): - """ - Get cell temperature coefficient of PV module - :return: float - """ - return self._generic_pv_generation_system.cell_temperature_coefficient - - @property - def width(self): - """ - Get PV module width in m - :return: float - """ - return self._generic_pv_generation_system.width - - @property - def height(self): - """ - Get PV module height in m - :return: float - """ - return self._generic_pv_generation_system.height diff --git a/hub/city_model_structure/energy_systems/thermal_storage_system.py b/hub/city_model_structure/energy_systems/thermal_storage_system.py index 1dc70c88..0f7f6a12 100644 --- a/hub/city_model_structure/energy_systems/thermal_storage_system.py +++ b/hub/city_model_structure/energy_systems/thermal_storage_system.py @@ -1,61 +1,32 @@ """ -Energy System catalog heat generation system +Thermal storage system SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2023 Concordia CERC group -Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca -Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca +Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca """ +from hub.city_model_structure.energy_systems.energy_storage_system import EnergyStorageSystem from hub.city_model_structure.building_demand.layer import Layer -class ThermalStorageSystem: - def __init__(self, generic_thermal_storage_system): - self._generic_thermal_storage_system = generic_thermal_storage_system - self._model_name = None - self._manufacturer = None +class ThermalStorageSystem(EnergyStorageSystem): + """" + Thermal Storage System Class + """ + + def __init__(self): + + super().__init__() self._volume = None self._height = None self._layers = None self._maximum_operating_temperature = None - self._generic_storage_system = None - - @property - def model_name(self): - """ - Get the model name - :return: string - """ - return self._model_name - - @model_name.setter - def model_name(self, value): - """ - Set the model name - :return: string - """ - self._model_name = value - - @property - def manufacturer(self): - """ - Get the manufacturer name - :return: string - """ - return self._manufacturer - - @manufacturer.setter - def manufacturer(self, value): - """ - Set the manufacturer name - :return: string - """ - self._manufacturer = value @property def volume(self): """ - Get the volume of thermal storage in m3 + Get the physical volume of the storage system in cubic meters :return: float """ return self._volume @@ -63,15 +34,15 @@ class ThermalStorageSystem: @volume.setter def volume(self, value): """ - Set the thermal storage volume in m3 - :return: float + Set the physical volume of the storage system in cubic meters + :param value: float """ self._volume = value @property def height(self): """ - Get the storage height in m + Get the diameter of the storage system in meters :return: float """ return self._height @@ -79,31 +50,31 @@ class ThermalStorageSystem: @height.setter def height(self, value): """ - Set the storage height in m - :return: float + Set the diameter of the storage system in meters + :param value: float """ self._height = value @property - def generic_storage_system(self) -> GenericStorageSystem: + def layers(self) -> [Layer]: """ - Get associated generic_storage_system - :return: GenericStorageSystem + Get construction layers + :return: [layer] """ - return self._generic_storage_system + return self._layers - @generic_storage_system.setter - def generic_storage_system(self, value): + @layers.setter + def layers(self, value): """ - Set associated generic_storage_system - :param value: GenericStorageSystem + Set construction layers + :param value: [layer] """ - self._generic_storage_system = value + self._layers = value @property def maximum_operating_temperature(self): """ - Get the storage maximum operating temperature in degree Celsius + Get maximum operating temperature of the storage system in degree Celsius :return: float """ return self._maximum_operating_temperature @@ -111,23 +82,7 @@ class ThermalStorageSystem: @maximum_operating_temperature.setter def maximum_operating_temperature(self, value): """ - Set the storage maximum operating temperature in degree Celsius - :return: float + Set maximum operating temperature of the storage system in degree Celsius + :param value: float """ self._maximum_operating_temperature = value - - @property - def layers(self) -> [Layer]: - """ - Get the storage system layers - :return: Layer - """ - return self._layers - - @layers.setter - def layers(self, value): - """ - Set the storage system layers - :return: Layer - """ - self._layers = value diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 972da034..a5ff316b 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -8,20 +8,13 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca import logging import copy -from pandas import DataFrame - from hub.catalog_factories.energy_systems_catalog_factory import EnergySystemsCatalogFactory -from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem -from hub.city_model_structure.energy_systems.generic_distribution_system import GenericDistributionSystem -from hub.city_model_structure.energy_systems.generic_non_pv_generation_system import GenericNonPvGenerationSystem -from hub.city_model_structure.energy_systems.generic_pv_generation_system import GenericPvGenerationSystem -from hub.city_model_structure.energy_systems.generic_electrical_storage_system import GenericElectricalStorageSystem -from hub.city_model_structure.energy_systems.generic_thermal_storage_system import GenericThermalStorageSystem -from hub.city_model_structure.energy_systems.generic_emission_system import GenericEmissionSystem - from hub.city_model_structure.energy_systems.energy_system import EnergySystem -from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem +from hub.city_model_structure.energy_systems.non_pv_generation_system import NonPvGenerationSystem +from hub.city_model_structure.energy_systems.pv_generation_system import PvGenerationSystem +from hub.city_model_structure.energy_systems.electrical_storage_system import ElectricalStorageSystem +from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.helpers.dictionaries import Dictionaries @@ -41,10 +34,6 @@ class MontrealCustomEnergySystemParameters: """ city = self._city montreal_custom_catalog = EnergySystemsCatalogFactory('montreal_custom').catalog - if city.energy_systems_connection_table is None: - _energy_systems_connection_table = DataFrame(columns=['Energy System Type', 'Building']) - else: - _energy_systems_connection_table = city.energy_systems_connection_table if city.generic_energy_systems is None: _generic_energy_systems = {} else: @@ -58,16 +47,12 @@ class MontrealCustomEnergySystemParameters: archetype_name) continue - _energy_systems_connection_table, _generic_energy_systems = self._create_generic_systems( - archetype, - building, - _energy_systems_connection_table, - _generic_energy_systems - ) - city.energy_systems_connection_table = _energy_systems_connection_table + if archetype.name not in _generic_energy_systems: + _generic_energy_systems = self._create_generic_systems_list(archetype, _generic_energy_systems) + city.generic_energy_systems = _generic_energy_systems - self._associate_energy_systems(city) + self._assign_energy_systems_to_buildings(city) @staticmethod def _search_archetypes(catalog, name): @@ -77,108 +62,88 @@ class MontrealCustomEnergySystemParameters: return building_archetype raise KeyError('archetype not found') - @staticmethod - def _create_generic_systems(archetype, building, - _energy_systems_connection_table, _generic_energy_systems): - data = [archetype.name, building.name] - _energy_systems_connection_table.loc[len(_energy_systems_connection_table)] = data - if archetype.name not in _generic_energy_systems: - building_systems = [] - for system in archetype.systems: - energy_system = GenericEnergySystem() - _hub_demand_types = [] - for demand_type in system.demand_types: - _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) - energy_system.name = system.name - energy_system.demand_types = _hub_demand_types + def _create_generic_systems_list(self, archetype, _generic_energy_systems): + building_systems = [] + for archetype_system in archetype.systems: + energy_system = EnergySystem() + _hub_demand_types = [] + for demand_type in archetype_system.demand_types: + _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) + energy_system.name = archetype_system.name + energy_system.demand_types = _hub_demand_types + energy_system.generation_systems = self._create_generation_systems(archetype_system) + energy_system.distribution_systems = self._create_distribution_systems(archetype_system) + building_systems.append(energy_system) - _generation_systems = [] - for catalog_generation_system in system.generation_systems: - if catalog_generation_system.system_type == 'PV system': - _generation_system = GenericPvGenerationSystem() - _type = 'PV system' - _generation_system.type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] - _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[catalog_generation_system.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.electricity_efficiency = catalog_generation_system.electricity_efficiency - _generic_storage_system = None - if catalog_generation_system.energy_storage_systems is not None: - _generic_storage_system = GenericElectricalStorageSystem() - _generic_storage_system.type_energy_stored = 'electrical' - _generation_system.generic_storage_systems = [_generic_storage_system] + _generic_energy_systems[archetype.name] = building_systems + + return _generic_energy_systems + + @staticmethod + def _create_generation_systems(archetype_system): + _generation_systems = [] + for archetype_generation_system in archetype_system.generation_systems: + if archetype_generation_system.system_type == 'PV system': + _generation_system = PvGenerationSystem() + _type = 'PV system' + _generation_system.system_type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_system.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.electricity_efficiency = archetype_generation_system.electricity_efficiency + _generic_storage_system = None + if archetype_generation_system.energy_storage_systems is not None: + _generic_storage_system = ElectricalStorageSystem() + _generic_storage_system.type_energy_stored = 'electrical' + _generation_system.energy_storage_systems = [_generic_storage_system] + else: + _generation_system = NonPvGenerationSystem() + _type = archetype_generation_system.system_type + _generation_system.system_type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_system.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = archetype_generation_system.source_medium + _generation_system.heat_efficiency = archetype_generation_system.heat_efficiency + _generation_system.cooling_efficiency = archetype_generation_system.cooling_efficiency + _generation_system.electricity_efficiency = archetype_generation_system.electricity_efficiency + _generic_storage_system = None + if archetype_generation_system.energy_storage_systems is not None: + if archetype_generation_system.energy_storage_systems.type_energy_stored == 'electrical': + _generic_storage_system = ElectricalStorageSystem() + _generic_storage_system.type_energy_stored = 'electrical' else: - _generation_system = GenericNonPvGenerationSystem() - _type = catalog_generation_system.system_type - _generation_system.type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] - _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[catalog_generation_system.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.source_types = catalog_generation_system.source_medium - _generation_system.heat_efficiency = catalog_generation_system.heat_efficiency - _generation_system.cooling_efficiency = catalog_generation_system.cooling_efficiency - _generation_system.electricity_efficiency = catalog_generation_system.electricity_efficiency - _generic_storage_system = None - if catalog_generation_system.energy_storage_systems is not None: - if catalog_generation_system.energy_storage_systems.type_energy_stored == 'electrical': - _generic_storage_system = GenericElectricalStorageSystem() - _generic_storage_system.type_energy_stored = 'electrical' - else: - _generic_storage_system = GenericThermalStorageSystem() - _generic_storage_system.type_energy_stored = 'thermal' - _generation_system.generic_storage_systems = [_generic_storage_system] - _generation_systems.append(_generation_system) - energy_system.generation_systems = _generation_systems - - _distribution_systems = [] - for catalog_distribution_system in system.distribution_systems: - _distribution_system = GenericDistributionSystem() - _distribution_system.type = catalog_distribution_system.type - _distribution_system.distribution_consumption_fix_flow = \ - catalog_distribution_system.distribution_consumption_fix_flow - _distribution_system.distribution_consumption_variable_flow = \ - catalog_distribution_system.distribution_consumption_variable_flow - _distribution_system.heat_losses = catalog_distribution_system.heat_losses - _emission_system = None - if catalog_distribution_system.emission_systems is not None: - _emission_system = GenericEmissionSystem() - _distribution_system.generic_emission_systems = [_emission_system] - _distribution_systems.append(_distribution_system) - energy_system.distribution_systems = _distribution_systems - - building_systems.append(energy_system) - - _generic_energy_systems[archetype.name] = building_systems - - return _energy_systems_connection_table, _generic_energy_systems + _generic_storage_system = ThermalStorageSystem() + _generic_storage_system.type_energy_stored = 'thermal' + _generation_system.energy_storage_systems = [_generic_storage_system] + _generation_systems.append(_generation_system) + return _generation_systems @staticmethod - def _associate_energy_systems(city): - energy_systems_connection = city.energy_systems_connection_table + def _create_distribution_systems(archetype_system): + _distribution_systems = [] + for archetype_distribution_system in archetype_system.distribution_systems: + _distribution_system = DistributionSystem() + _distribution_system.type = archetype_distribution_system.type + _distribution_system.distribution_consumption_fix_flow = \ + archetype_distribution_system.distribution_consumption_fix_flow + _distribution_system.distribution_consumption_variable_flow = \ + archetype_distribution_system.distribution_consumption_variable_flow + _distribution_system.heat_losses = archetype_distribution_system.heat_losses + _emission_system = None + if archetype_distribution_system.emission_systems is not None: + _emission_system = EmissionSystem() + _distribution_system.emission_systems = [_emission_system] + _distribution_systems.append(_distribution_system) + return _distribution_systems + + @staticmethod + def _assign_energy_systems_to_buildings(city): for building in city.buildings: _building_energy_systems = [] - energy_systems = energy_systems_connection['Energy System Type'][ - energy_systems_connection['Building'] == building.name] - for energy_system in energy_systems: - if str(energy_system) == 'nan': - break - _generic_building_energy_systems = city.generic_energy_systems[energy_system] - for _generic_building_energy_system in _generic_building_energy_systems: - _building_energy_equipment = EnergySystem() - _building_energy_equipment.name = _generic_building_energy_system.name - _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types + energy_systems_cluster_name = building.energy_systems_archetype_name + if str(energy_systems_cluster_name) == 'nan': + break + _generic_building_energy_systems = city.generic_energy_systems[energy_systems_cluster_name] + for _generic_building_energy_system in _generic_building_energy_systems: + _building_energy_systems.append(copy.deepcopy(_generic_building_energy_system)) - _building_distribution_system = DistributionSystem() - _building_distribution_system.generic_distribution_system = \ - copy.deepcopy(_generic_building_energy_system.distribution_systems) - _building_emission_system = EmissionSystem() - _building_emission_system.generic_emission_system = \ - copy.deepcopy(_generic_building_energy_system.emission_systems) - _building_generation_system = GenerationSystem() - _building_generation_system.generic_generation_system = \ - copy.deepcopy(_generic_building_energy_system.generation_systems) - - _building_energy_equipment.generation_systems = _building_generation_system - _building_energy_equipment.distribution_systems = _building_distribution_system - _building_energy_equipment.emission_systems = _building_emission_system - - _building_energy_systems.append(_building_energy_equipment) building.energy_systems = _building_energy_systems diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 30ca9465..722ae153 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -16,8 +16,8 @@ from hub.city_model_structure.energy_systems.distribution_system import Distribu from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.city_model_structure.energy_systems.energy_system import EnergySystem from hub.city_model_structure.energy_systems.generation_system import GenerationSystem -from hub.city_model_structure.energy_systems.generic_energy_system import GenericEnergySystem -from hub.city_model_structure.energy_systems.generic_generation_system import GenericGenerationSystem +from hub.city_model_structure.energy_systems.energy_system import EnergySystem +from hub.city_model_structure.energy_systems.generation_system import GenerationSystem from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem from hub.helpers.dictionaries import Dictionaries @@ -79,7 +79,7 @@ class NorthAmericaCustomEnergySystemParameters: data = [archetype.name, building.name] _energy_systems_connection_table.loc[len(_energy_systems_connection_table)] = data for system in archetype.systems: - energy_system = GenericEnergySystem() + energy_system = EnergySystem() _hub_demand_types = [] demand_types = system.demand_types if isinstance(demand_types, str): @@ -91,7 +91,7 @@ class NorthAmericaCustomEnergySystemParameters: archetype_generation_equipments = system.generation_systems _generation_systems = [] for archetype_generation_equipment in archetype_generation_equipments: - _generation_system = GenericGenerationSystem() + _generation_system = GenerationSystem() _type = archetype_generation_equipment.name _generation_system.type = Dictionaries().north_america_system_to_hub_energy_generation_system[_type] _fuel_type = Dictionaries().north_america_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 420e4172..5dde6abf 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -9,6 +9,7 @@ import subprocess from pathlib import Path from unittest import TestCase import copy +from typing import cast import hub.helpers.constants as cte from hub.exports.energy_building_exports_factory import EnergyBuildingsExportsFactory @@ -25,6 +26,8 @@ from hub.city_model_structure.energy_systems.generation_system import Generation from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem +from hub.city_model_structure.energy_systems.non_pv_generation_system import NonPvGenerationSystem + class TestSystemsFactory(TestCase): """ @@ -54,7 +57,6 @@ class TestSystemsFactory(TestCase): building.energy_systems_archetype_name = 'system 1 gas' EnergySystemsFactory('montreal_custom', self._city).enrich() - self.assertEqual(17, len(self._city.energy_systems_connection_table)) self.assertEqual(1, len(self._city.generic_energy_systems)) def test_montreal_custom_system_results(self): @@ -78,39 +80,15 @@ class TestSystemsFactory(TestCase): building.energy_systems_archetype_name = 'system 1 gas pv' EnergySystemsFactory('montreal_custom', self._city).enrich() # Need to assign energy systems to buildings: - energy_systems_connection = self._city.energy_systems_connection_table for building in self._city.buildings: _building_energy_systems = [] - energy_systems = energy_systems_connection['Energy System Type'][ - energy_systems_connection['Building'] == building.name] - for energy_system in energy_systems: - _generic_building_energy_systems = self._city.generic_energy_systems[energy_system] - for _generic_building_energy_system in _generic_building_energy_systems: - _building_energy_equipment = EnergySystem() - _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types - - _building_distribution_system = DistributionSystem() - _building_distribution_system.generic_distribution_system = ( - copy.deepcopy(_generic_building_energy_system.distribution_systems) - ) - _building_emission_system = EmissionSystem() - _building_emission_system.generic_emission_system = ( - copy.deepcopy(_generic_building_energy_system.emission_systems) - ) - _building_generation_system = GenerationSystem() - _building_generation_system.generic_generation_system = ( - copy.deepcopy(_generic_building_energy_system.generation_systems) - ) - if cte.HEATING in _building_energy_equipment.demand_types: - _building_generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] - if cte.COOLING in _building_energy_equipment.demand_types: - _building_generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] - _building_energy_equipment.generation_systems = _building_generation_system - _building_energy_equipment.distribution_systems = _building_distribution_system - _building_energy_equipment.emission_systems = _building_emission_system - - _building_energy_systems.append(_building_energy_equipment) - building.energy_systems = _building_energy_systems + for energy_system in building.energy_systems: + if cte.HEATING in energy_system.demand_types: + _generation_system = cast(NonPvGenerationSystem, energy_system.generation_systems[0]) + _generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] + if cte.COOLING in energy_system.demand_types: + _generation_system = cast(NonPvGenerationSystem, energy_system.generation_systems[0]) + _generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] for building in self._city.buildings: self.assertLess(0, building.heating_consumption[cte.YEAR][0]) -- 2.39.2 From c6d4feec8929cbac698b3c8b0a3df1aa13c7ece8 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 16 Oct 2023 16:44:53 -0400 Subject: [PATCH 083/101] Modified the classes and the north amercia catalog importer based on the changes Pilar made in the data model structure --- .../energy_systems/generation_system.py | 11 +- .../non_pv_generation_system.py | 4 +- .../energy_systems/pv_generation_system.py | 4 +- .../north_america_energy_system_catalog.py | 158 ++++++------------ .../energy_systems/north_america_systems.xml | 47 +++--- tests/test_systems_catalog.py | 20 ++- 6 files changed, 110 insertions(+), 134 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/generation_system.py b/hub/catalog_factories/data_models/energy_systems/generation_system.py index 1b43a183..cb4b1e9d 100644 --- a/hub/catalog_factories/data_models/energy_systems/generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/generation_system.py @@ -19,9 +19,10 @@ class GenerationSystem(ABC): Heat Generation system class """ - def __init__(self, system_id, model_name=None, manufacturer=None, fuel_type=None, + def __init__(self, system_id, name, model_name=None, manufacturer=None, fuel_type=None, distribution_systems=None, energy_storage_systems=None): self._system_id = system_id + self._name = name self._model_name = model_name self._manufacturer = manufacturer self._fuel_type = fuel_type @@ -36,6 +37,14 @@ class GenerationSystem(ABC): """ return self._system_id + @property + def name(self): + """ + Get system name + :return: string + """ + return self._name + @property def system_type(self): """ diff --git a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py index 7f622382..a33490d4 100644 --- a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py @@ -16,7 +16,7 @@ class NonPvGenerationSystem(GenerationSystem): Non PV Generation system class """ - def __init__(self, system_id, system_type, model_name=None, manufacturer=None, fuel_type=None, + def __init__(self, system_id, name, system_type, model_name=None, manufacturer=None, fuel_type=None, nominal_heat_output=None, maximum_heat_output=None, minimum_heat_output=None, source_medium=None, supply_medium=None, heat_efficiency=None, nominal_cooling_output=None, maximum_cooling_output=None, minimum_cooling_output=None, cooling_efficiency=None, electricity_efficiency=None, @@ -26,7 +26,7 @@ class NonPvGenerationSystem(GenerationSystem): heat_fuel_consumption_curve=None, heat_efficiency_curve=None, cooling_output_curve=None, cooling_fuel_consumption_curve=None, cooling_efficiency_curve=None, distribution_systems=None, energy_storage_systems=None): - super().__init__(system_id=system_id, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type, + super().__init__(system_id=system_id, name=name, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type, distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) self._system_type = system_type self._nominal_heat_output = nominal_heat_output diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 5aa272b7..232d5402 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -14,12 +14,12 @@ class PvGenerationSystem(GenerationSystem): Electricity Generation system class """ - def __init__(self, system_id, model_name=None, manufacturer=None, electricity_efficiency=None, + def __init__(self, system_id, name, model_name=None, manufacturer=None, electricity_efficiency=None, nominal_electricity_output=None, nominal_ambient_temperature=None, nominal_cell_temperature=None, nominal_radiation=None, standard_test_condition_cell_temperature=None, standard_test_condition_maximum_power=None, cell_temperature_coefficient=None, width=None, height=None, distribution_systems=None, energy_storage_systems=None): - super().__init__(system_id=system_id, model_name=model_name, + super().__init__(system_id=system_id, name=name, model_name=model_name, manufacturer=manufacturer, fuel_type='renewable', distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) self._system_type = 'PV system' diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index ee7873cc..55fa4bf4 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -28,8 +28,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): path = str(path / 'north_america_systems.xml') with open(path, 'r', encoding='utf-8') as xml: self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules', 'templateStorages']) - self._generation_components = self._load_generation_components() + self._storage_components = self._load_storage_components() + self._generation_components = self._load_generation_components() self._systems = self._load_systems() self._system_archetypes = self._load_archetypes() self._content = Content(self._system_archetypes, @@ -39,12 +40,18 @@ class NorthAmericaEnergySystemCatalog(Catalog): def _load_generation_components(self): generation_components = [] boilers = self._archetypes['EnergySystemCatalog']['energy_generation_components']['boilers'] + print(len(boilers)) heat_pumps = self._archetypes['EnergySystemCatalog']['energy_generation_components']['heatPumps'] + print(len(heat_pumps)) photovoltaics = self._archetypes['EnergySystemCatalog']['energy_generation_components']['photovoltaicModules'] + print(len(photovoltaics)) templates = self._archetypes['EnergySystemCatalog']['energy_generation_components']['templateGenerationEquipments'] + print(len(templates)) for boiler in boilers: + print(boiler) boiler_id = boiler['@generation_id'] - system_type = boiler['@name'] + name = boiler['@name'] + system_type = 'Boiler' boiler_model_name = boiler['@modelName'] boiler_manufacturer = boiler['@manufacturer'] boiler_fuel_type = boiler['@fuel'] @@ -53,7 +60,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): boiler_minimum_heat_output = float(boiler['@minimumHeatOutput']) boiler_heat_efficiency = float(boiler['@nominalEfficiency']) boiler_component = NonPvGenerationSystem(boiler_id, - system_type, + name=name, + system_type=system_type, model_name=boiler_model_name, manufacturer=boiler_manufacturer, fuel_type=boiler_fuel_type, @@ -64,7 +72,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): generation_components.append(boiler_component) for heat_pump in heat_pumps: heat_pump_id = heat_pump['@generation_id'] - system_type = heat_pump['@name'] + name = heat_pump['@name'] + system_type = 'Heat Pump' heat_pump_model_name = heat_pump['@modelName'] heat_pump_manufacturer = heat_pump['@manufacturer'] heat_pump_fuel_type = heat_pump['@fuel'] @@ -85,7 +94,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): cop_curve = PerformanceCurves(cop_curve_type, dependant_variable, parameters, coefficients) heat_pump_component = NonPvGenerationSystem(heat_pump_id, - system_type, + name=name, + system_type=system_type, model_name=heat_pump_model_name, manufacturer=heat_pump_manufacturer, fuel_type=heat_pump_fuel_type, @@ -103,6 +113,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): generation_components.append(heat_pump_component) for pv in photovoltaics: pv_id = pv['@generation_id'] + name = pv['@name'] pv_model_name = pv['@modelName'] pv_manufacturer = pv['@manufacturer'] pv_electricity_efficiency = pv['@nominalEfficiency'] @@ -117,6 +128,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): height = float(pv['@height']) pv_component = PvGenerationSystem(pv_id, + name=name, model_name=pv_model_name, manufacturer=pv_manufacturer, electricity_efficiency=pv_electricity_efficiency, @@ -130,45 +142,26 @@ class NorthAmericaEnergySystemCatalog(Catalog): width=width, height=height) generation_components.append(pv_component) + for template in templates: system_id = template['@generation_id'] system_name = template['@name'] + if 'storage_id' in template.keys(): + storage_component = template['storage_id'] + storage_systems = self._search_storage_equipment(self._load_storage_components(), storage_component) + energy_storage_system = storage_systems + else: + energy_storage_system = None if "Boiler" in system_name: system_type = 'boiler' fuel_type = template['@fuel'] heat_efficiency = float(template['@nominalEfficiency']) - source_medium = None - supply_medium = None - boiler_template = GenerationSystem(system_id, - system_name, - None, - None, - system_type, - fuel_type, - None, - None, - None, - source_medium, - supply_medium, - heat_efficiency, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None) + boiler_template = NonPvGenerationSystem(system_id=system_id, + name=system_name, + system_type=system_type, + fuel_type=fuel_type, + heat_efficiency=heat_efficiency, + energy_storage_systems=energy_storage_system) generation_components.append(boiler_template) elif "Heat Pump" in system_name: system_type = 'heat pump' @@ -176,55 +169,23 @@ class NorthAmericaEnergySystemCatalog(Catalog): heat_efficiency = template['@nominalCOP'] source_medium = template['@heatSource'] supply_medium = template['@supply_medium'] - heat_pump_template = GenerationSystem(system_id, - system_name, - None, - None, - system_type, - fuel_type, - None, - None, - None, - source_medium, - supply_medium, - heat_efficiency, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None) + heat_pump_template = NonPvGenerationSystem(system_id=system_id, + name=system_name, + system_type=system_type, + source_medium=source_medium, + supply_medium=supply_medium, + fuel_type=fuel_type, + heat_efficiency=heat_efficiency) generation_components.append(heat_pump_template) else: electricity_efficiency = float(template['@nominalEfficiency']) height = float(template['@height']) width = float(template['@width']) - pv_template = PvGenerationSystem(system_id, - system_name, - None, - None, - electricity_efficiency, - None, - None, - None, - None, - None, - None, - None, - width, - height) + pv_template = PvGenerationSystem(system_id=system_id, + name=system_name, + electricity_efficiency=electricity_efficiency, + width=width, + height=height) generation_components.append(pv_template) return generation_components @@ -235,7 +196,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): template_storages = self._archetypes['EnergySystemCatalog']['energy_storage_components']['templateStorages'] for tes in thermal_storages: storage_id = tes['@storage_id'] - name = tes['@name'] model_name = tes['@modelName'] manufacturer = tes['@manufacturer'] storage_type = 'sensible' @@ -254,7 +214,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = ThermalStorageSystem(storage_id, - name, model_name, manufacturer, storage_type, @@ -268,7 +227,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): for template in template_storages: storage_id = template['@storage_id'] - name = template['@name'] storage_type = 'sensible' maximum_temperature = template['@maxTemp'] height = template['physical_characteristics']['@height'] @@ -284,7 +242,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = ThermalStorageSystem(storage_id, - name, None, None, storage_type, @@ -306,19 +263,12 @@ class NorthAmericaEnergySystemCatalog(Catalog): demands = system['demands']['demand'] generation_components = system['components']['generation_id'] generation_systems = self._search_generation_equipment(self._load_generation_components(), generation_components) - if 'storage_id' in system['components'].keys(): - storage_components = system['components']['storage_id'] - storage_systems = self._search_storage_equipment(self._load_storage_components(), storage_components) - else: - storage_systems = None - energy_system = System(None, - system_id, - name, - demands, - generation_systems, - None, - None, - storage_systems) + energy_system = System(system_id=system_id, + name=name, + demand_types=demands, + generation_systems=generation_systems, + distribution_systems=None, + configuration_schema=None) _catalog_systems.append(energy_system) return _catalog_systems @@ -333,7 +283,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): for system_archetype in self._systems: if int(system_archetype.id) in integer_system_ids: _systems.append(system_archetype) - _system_archetypes.append(Archetype(None, name, _systems)) + _system_archetypes.append(Archetype(name=name, systems=_systems)) return _system_archetypes def _load_materials(self): @@ -411,8 +361,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): _names['systems'].append(system.name) for equipment in self._content.generation_equipments: _names['generation_equipments'].append(equipment.name) - for equipment in self._content.storage_equipments: - _names['storage_equipments'].append(equipment.name) else: _names = {category: []} if category.lower() == 'archetypes': @@ -424,9 +372,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): elif category.lower() == 'generation_equipments': for system in self._content.generation_equipments: _names[category].append(system.name) - elif category.lower() == 'storage_equipments': - for system in self._content.storage_equipments: - _names[category].append(system.name) else: raise ValueError(f'Unknown category [{category}]') return _names @@ -444,8 +389,6 @@ class NorthAmericaEnergySystemCatalog(Catalog): return self._content.systems if category.lower() == 'generation_equipments': return self._content.generation_equipments - if category.lower() == 'storage_equipments': - return self._content.storage_equipments raise ValueError(f'Unknown category [{category}]') def get_entry(self, name): @@ -462,7 +405,4 @@ class NorthAmericaEnergySystemCatalog(Catalog): for entry in self._content.generation_equipments: if entry.name.lower() == name.lower(): return entry - for entry in self._content.storage_equipments: - if entry.name.lower() == name.lower(): - return entry raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 36cee745..2a7c89c8 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -41,12 +41,27 @@ - - - - - - + + 6 + + + 6 + + + 6 + + + 6 + + + 6 + + + + + + + @@ -99,9 +114,8 @@ domestic_hot_water - 16 + 21 18 - 6 @@ -111,9 +125,8 @@ domestic_hot_water - 17 + 22 18 - 6 @@ -123,9 +136,8 @@ domestic_hot_water - 16 + 21 19 - 6 @@ -135,9 +147,8 @@ domestic_hot_water - 17 + 22 19 - 6 @@ -147,9 +158,8 @@ domestic_hot_water - 16 + 21 20 - 6 @@ -159,9 +169,8 @@ domestic_hot_water - 17 + 22 20 - 6 @@ -170,7 +179,7 @@ electricity - 21 + 26 diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 01da9114..87634a73 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -36,4 +36,22 @@ class TestSystemsCatalog(TestCase): def test_north_america_systems_catalog(self): catalog = EnergySystemsCatalogFactory('north_america').catalog - print(catalog.entries()) + + catalog_categories = catalog.names() + archetypes = catalog.names('archetypes') + self.assertEqual(6, len(archetypes['archetypes'])) + systems = catalog.names('systems') + self.assertEqual(7, len(systems['systems'])) + generation_equipments = catalog.names('generation_equipments') + self.assertEqual(26, len(generation_equipments['generation_equipments'])) + with self.assertRaises(ValueError): + catalog.names('unknown') + + # retrieving all the entries should not raise any exceptions + for category in catalog_categories: + for value in catalog_categories[category]: + catalog.get_entry(value) + + with self.assertRaises(IndexError): + catalog.get_entry('unknown') + -- 2.39.2 From 0240e891709f8079c895b5135864e05d8e79e90b Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 16 Oct 2023 17:24:39 -0400 Subject: [PATCH 084/101] modified a small bug in north_america_energy_system_catalog.py --- .../energy_systems/north_america_energy_system_catalog.py | 8 ++------ tests/test_systems_catalog.py | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 55fa4bf4..79a5d745 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -40,15 +40,10 @@ class NorthAmericaEnergySystemCatalog(Catalog): def _load_generation_components(self): generation_components = [] boilers = self._archetypes['EnergySystemCatalog']['energy_generation_components']['boilers'] - print(len(boilers)) heat_pumps = self._archetypes['EnergySystemCatalog']['energy_generation_components']['heatPumps'] - print(len(heat_pumps)) photovoltaics = self._archetypes['EnergySystemCatalog']['energy_generation_components']['photovoltaicModules'] - print(len(photovoltaics)) templates = self._archetypes['EnergySystemCatalog']['energy_generation_components']['templateGenerationEquipments'] - print(len(templates)) for boiler in boilers: - print(boiler) boiler_id = boiler['@generation_id'] name = boiler['@name'] system_type = 'Boiler' @@ -175,7 +170,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): source_medium=source_medium, supply_medium=supply_medium, fuel_type=fuel_type, - heat_efficiency=heat_efficiency) + heat_efficiency=heat_efficiency, + energy_storage_systems=energy_storage_system) generation_components.append(heat_pump_template) else: electricity_efficiency = float(template['@nominalEfficiency']) diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 87634a73..0178b007 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -54,4 +54,4 @@ class TestSystemsCatalog(TestCase): with self.assertRaises(IndexError): catalog.get_entry('unknown') - + print(catalog.entries()) -- 2.39.2 From 978cc9d1ea294d748ff9b122b630f29c8ba98355 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Mon, 16 Oct 2023 17:48:42 -0400 Subject: [PATCH 085/101] added system schematics to the data folder and to the catalog importer --- .../north_america_energy_system_catalog.py | 5 ++++- .../energy_systems/north_america_systems.xml | 9 ++++++++- .../schemas/ASHP+TES+ElectricBoiler.jpg | Bin 0 -> 65949 bytes .../schemas/ASHP+TES+GasBoiler.jpg | Bin 0 -> 65949 bytes .../schemas/GSHP+TES+ElectricBoiler.jpg | Bin 0 -> 65949 bytes .../schemas/GSHP+TES+GasBoiler.jpg | Bin 0 -> 65949 bytes hub/data/energy_systems/schemas/PV.jpg | Bin 0 -> 65949 bytes .../schemas/WSHP+TES+ElectricBoiler.jpg | Bin 0 -> 65949 bytes .../schemas/WSHP+TES+GasBoiler.jpg | Bin 0 -> 65949 bytes 9 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 hub/data/energy_systems/schemas/ASHP+TES+ElectricBoiler.jpg create mode 100644 hub/data/energy_systems/schemas/ASHP+TES+GasBoiler.jpg create mode 100644 hub/data/energy_systems/schemas/GSHP+TES+ElectricBoiler.jpg create mode 100644 hub/data/energy_systems/schemas/GSHP+TES+GasBoiler.jpg create mode 100644 hub/data/energy_systems/schemas/PV.jpg create mode 100644 hub/data/energy_systems/schemas/WSHP+TES+ElectricBoiler.jpg create mode 100644 hub/data/energy_systems/schemas/WSHP+TES+GasBoiler.jpg diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 79a5d745..1e790d88 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -7,6 +7,7 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord """ import xmltodict +from pathlib import Path from hub.catalog_factories.catalog import Catalog from hub.catalog_factories.data_models.energy_systems.system import System from hub.catalog_factories.data_models.energy_systems.content import Content @@ -251,6 +252,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): return storage_components def _load_systems(self): + base_path = Path(Path(__file__).parent.parent.parent / 'data/energy_systems') _catalog_systems = [] systems = self._archetypes['EnergySystemCatalog']['systems']['system'] for system in systems: @@ -259,12 +261,13 @@ class NorthAmericaEnergySystemCatalog(Catalog): demands = system['demands']['demand'] generation_components = system['components']['generation_id'] generation_systems = self._search_generation_equipment(self._load_generation_components(), generation_components) + configuration_schema = Path(base_path / system['schema']) energy_system = System(system_id=system_id, name=name, demand_types=demands, generation_systems=generation_systems, distribution_systems=None, - configuration_schema=None) + configuration_schema=configuration_schema) _catalog_systems.append(energy_system) return _catalog_systems diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 2a7c89c8..ce575841 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -109,6 +109,7 @@ Air Source Heat Pump with Natural Gas Boiler and thermal storage + schemas/ASHP+TES+GasBoiler.jpg heating domestic_hot_water @@ -120,6 +121,7 @@ Air Source Heat Pump with Electrical Boiler and thermal storage + schemas/ASHP+TES+ElectricBoiler.jpg heating domestic_hot_water @@ -131,6 +133,7 @@ Ground Source Heat Pump with Natural Gas Boiler and thermal storage + schemas/GSHP+TES+GasBoiler.jpg heating domestic_hot_water @@ -142,6 +145,7 @@ Ground Source Heat Pump with Electrical Boiler and thermal storage + schemas/GSHP+TES+ElectricBoiler.jpg heating domestic_hot_water @@ -153,6 +157,7 @@ Water Source Heat Pump with Natural Gas Boiler and thermal storage + schemas/WSHP+TES+GasBoiler.jpg heating domestic_hot_water @@ -163,7 +168,8 @@ - Water Source Heat Pump with Electrical Boiler and thermal storage\ + Water Source Heat Pump with Electrical Boiler and thermal storage + schemas/WSHP+TES+ElectricBoiler.jpg heating domestic_hot_water @@ -175,6 +181,7 @@ Photovoltaic System + schemas/PV.jpg electricity diff --git a/hub/data/energy_systems/schemas/ASHP+TES+ElectricBoiler.jpg b/hub/data/energy_systems/schemas/ASHP+TES+ElectricBoiler.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ee33be2fd33cf23cdbf346475e2c42d23f441a GIT binary patch literal 65949 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 Date: Tue, 17 Oct 2023 17:25:13 -0400 Subject: [PATCH 086/101] The city energy system importer for the north america is modified and tested. --- .../energy_systems/montreal_custom_catalog.py | 2 + .../north_america_energy_system_catalog.py | 6 +- .../energy_systems/generation_system.py | 17 ++ .../non_pv_generation_system.py | 50 ----- ...america_custom_energy_system_parameters.py | 198 ++++++++---------- tests/test_systems_factory.py | 45 +--- 6 files changed, 122 insertions(+), 196 deletions(-) diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 9b984fdd..0c0abb88 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -70,12 +70,14 @@ class MontrealCustomCatalog(Catalog): storage_systems = [storage_system] if model_name == 'PV system': generation_system = PvGenerationSystem(equipment_id, + name=None, model_name=model_name, electricity_efficiency=electricity_efficiency, energy_storage_systems=storage_systems ) else: generation_system = NonPvGenerationSystem(equipment_id, + name=None, model_name=model_name, system_type=equipment_type, fuel_type=fuel_type, diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 1e790d88..3e6c649a 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -28,7 +28,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): def __init__(self, path): path = str(path / 'north_america_systems.xml') with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules', 'templateStorages']) + self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules', 'templateStorages', 'demand']) self._storage_components = self._load_storage_components() self._generation_components = self._load_generation_components() @@ -47,7 +47,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): for boiler in boilers: boiler_id = boiler['@generation_id'] name = boiler['@name'] - system_type = 'Boiler' + system_type = 'boiler' boiler_model_name = boiler['@modelName'] boiler_manufacturer = boiler['@manufacturer'] boiler_fuel_type = boiler['@fuel'] @@ -69,7 +69,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): for heat_pump in heat_pumps: heat_pump_id = heat_pump['@generation_id'] name = heat_pump['@name'] - system_type = 'Heat Pump' + system_type = 'heat pump' heat_pump_model_name = heat_pump['@modelName'] heat_pump_manufacturer = heat_pump['@manufacturer'] heat_pump_fuel_type = heat_pump['@fuel'] diff --git a/hub/city_model_structure/energy_systems/generation_system.py b/hub/city_model_structure/energy_systems/generation_system.py index 8b2bcbab..394c2f09 100644 --- a/hub/city_model_structure/energy_systems/generation_system.py +++ b/hub/city_model_structure/energy_systems/generation_system.py @@ -20,6 +20,7 @@ class GenerationSystem(ABC): """ def __init__(self): self._system_type = None + self._name = None self._model_name = None self._manufacturer = None self._fuel_type = None @@ -42,6 +43,22 @@ class GenerationSystem(ABC): """ self._system_type = value + @property + def name(self): + """ + Get name + :return: string + """ + return self._name + + @name.setter + def name(self, value): + """ + Set name + :param value: string + """ + self._name = value + @property def model_name(self): """ diff --git a/hub/city_model_structure/energy_systems/non_pv_generation_system.py b/hub/city_model_structure/energy_systems/non_pv_generation_system.py index 9db9f683..3dc044e5 100644 --- a/hub/city_model_structure/energy_systems/non_pv_generation_system.py +++ b/hub/city_model_structure/energy_systems/non_pv_generation_system.py @@ -42,9 +42,6 @@ class NonPvGenerationSystem(GenerationSystem): self._cooling_output_curve = None self._cooling_fuel_consumption_curve = None self._cooling_efficiency_curve = None - self._heat_power = None - self._cooling_power = None - self._electricity_power = None @property def nominal_heat_output(self): @@ -430,51 +427,4 @@ class NonPvGenerationSystem(GenerationSystem): """ self._cooling_efficiency_curve = value - @property - def heat_power(self): - """ - Get heat_power in W - :return: float - """ - return self._heat_power - - @heat_power.setter - def heat_power(self, value): - """ - Set heat_power in W - :param value: float - """ - self._heat_power = value - - @property - def cooling_power(self): - """ - Get cooling_power in W - :return: float - """ - return self._cooling_power - - @cooling_power.setter - def cooling_power(self, value): - """ - Set cooling_power in W - :param value: float - """ - self._cooling_power = value - - @property - def electricity_power(self): - """ - Get electricity_power in W - :return: float - """ - return self._electricity_power - - @electricity_power.setter - def electricity_power(self, value): - """ - Set electricity_power in W - :param value: float - """ - self._electricity_power = value diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index 722ae153..f898cdfa 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -6,25 +6,23 @@ Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ -import copy import logging - -from pandas import DataFrame +import copy from hub.catalog_factories.energy_systems_catalog_factory import EnergySystemsCatalogFactory +from hub.city_model_structure.energy_systems.energy_system import EnergySystem from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem -from hub.city_model_structure.energy_systems.emission_system import EmissionSystem -from hub.city_model_structure.energy_systems.energy_system import EnergySystem -from hub.city_model_structure.energy_systems.generation_system import GenerationSystem -from hub.city_model_structure.energy_systems.energy_system import EnergySystem -from hub.city_model_structure.energy_systems.generation_system import GenerationSystem +from hub.city_model_structure.energy_systems.non_pv_generation_system import NonPvGenerationSystem +from hub.city_model_structure.energy_systems.pv_generation_system import PvGenerationSystem +from hub.city_model_structure.energy_systems.electrical_storage_system import ElectricalStorageSystem from hub.city_model_structure.energy_systems.thermal_storage_system import ThermalStorageSystem +from hub.city_model_structure.energy_systems.emission_system import EmissionSystem from hub.helpers.dictionaries import Dictionaries class NorthAmericaCustomEnergySystemParameters: """ - NorthAmericaCustomEnergySystemParameters class + MontrealCustomEnergySystemParameters class """ def __init__(self, city): @@ -36,11 +34,7 @@ class NorthAmericaCustomEnergySystemParameters: :return: """ city = self._city - north_america_custom_catalog = EnergySystemsCatalogFactory('north_america').catalog - if city.energy_systems_connection_table is None: - _energy_systems_connection_table = DataFrame(columns=['Energy System Type', 'Building']) - else: - _energy_systems_connection_table = city.energy_systems_connection_table + montreal_custom_catalog = EnergySystemsCatalogFactory('north_america').catalog if city.generic_energy_systems is None: _generic_energy_systems = {} else: @@ -48,21 +42,18 @@ class NorthAmericaCustomEnergySystemParameters: for building in city.buildings: archetype_name = building.energy_systems_archetype_name try: - archetype = self._search_archetypes(north_america_custom_catalog, archetype_name) + archetype = self._search_archetypes(montreal_custom_catalog, archetype_name) except KeyError: logging.error('Building %s has unknown energy system archetype for system name %s', building.name, archetype_name) continue - _energy_systems_connection_table, _generic_energy_systems = self._create_generic_systems( - archetype, - building, - _energy_systems_connection_table, - _generic_energy_systems - ) - city.energy_systems_connection_table = _energy_systems_connection_table + + if archetype.name not in _generic_energy_systems: + _generic_energy_systems = self._create_generic_systems_list(archetype, _generic_energy_systems) + city.generic_energy_systems = _generic_energy_systems - self._associate_energy_systems(city) + self._assign_energy_systems_to_buildings(city) @staticmethod def _search_archetypes(catalog, name): @@ -72,98 +63,93 @@ class NorthAmericaCustomEnergySystemParameters: return building_archetype raise KeyError('archetype not found') - @staticmethod - def _create_generic_systems(archetype, building, - _energy_systems_connection_table, _generic_energy_systems): + def _create_generic_systems_list(self, archetype, _generic_energy_systems): building_systems = [] - data = [archetype.name, building.name] - _energy_systems_connection_table.loc[len(_energy_systems_connection_table)] = data - for system in archetype.systems: + for archetype_system in archetype.systems: energy_system = EnergySystem() _hub_demand_types = [] - demand_types = system.demand_types - if isinstance(demand_types, str): - demand_types = [demand_types] - for demand_type in demand_types: - _hub_demand_types.append(Dictionaries().north_america_demand_type_to_hub_energy_demand_type[demand_type]) - energy_system.name = system.name + for demand_type in archetype_system.demand_types: + _hub_demand_types.append(Dictionaries().montreal_demand_type_to_hub_energy_demand_type[demand_type]) + energy_system.name = archetype_system.name energy_system.demand_types = _hub_demand_types - archetype_generation_equipments = system.generation_systems - _generation_systems = [] - for archetype_generation_equipment in archetype_generation_equipments: - _generation_system = GenerationSystem() - _type = archetype_generation_equipment.name - _generation_system.type = Dictionaries().north_america_system_to_hub_energy_generation_system[_type] - _fuel_type = Dictionaries().north_america_custom_fuel_to_hub_fuel[archetype_generation_equipment.fuel_type] - _generation_system.fuel_type = _fuel_type - _generation_system.source_types = archetype_generation_equipment.source_medium - _generation_system.heat_efficiency = archetype_generation_equipment.heat_efficiency - _generation_system.cooling_efficiency = archetype_generation_equipment.cooling_efficiency - _generation_system.electricity_efficiency = archetype_generation_equipment.electricity_efficiency - _generation_system.source_temperature = archetype_generation_equipment.source_temperature - _generation_system.source_mass_flow = archetype_generation_equipment.source_mass_flow - _generation_system.storage = None - _generation_system.auxiliary_equipment = None - _generation_system.supply_medium = archetype_generation_equipment.supply_medium - _generation_system.maximum_heat_supply_temperature = archetype_generation_equipment.maximum_heat_supply_temperature - _generation_system.minimum_heat_supply_temperature = archetype_generation_equipment.minimum_heat_supply_temperature - _generation_system.maximum_cooling_supply_temperature = archetype_generation_equipment.maximum_cooling_supply_temperature - _generation_system.minimum_cooling_supply_temperature = archetype_generation_equipment.minimum_cooling_supply_temperature - _generation_system.heat_output_curve = archetype_generation_equipment.heat_output_curve - _generation_system.heat_fuel_consumption_curve = archetype_generation_equipment.heat_fuel_consumption_curve - _generation_system.heat_efficiency_curve = archetype_generation_equipment.heat_efficiency_curve - _generation_system.cooling_output_curve = archetype_generation_equipment.cooling_output_curve - _generation_system.cooling_fuel_consumption_curve = archetype_generation_equipment.cooling_fuel_consumption_curve - _generation_system.cooling_efficiency_curve = archetype_generation_equipment.cooling_efficiency_curve - _generation_systems.append(_generation_system) - - energy_system.generation_systems = _generation_systems - - _thermal_storage_system = ThermalStorageSystem() - archetype_storage_equipments = system.energy_storage_systems - if archetype_storage_equipments is not None: - for archetype_storage_equipment in archetype_storage_equipments: - _thermal_storage_system.maximum_operating_temperature = archetype_storage_equipment.maximum_operating_temperature - _thermal_storage_system.height = archetype_storage_equipment.height - _thermal_storage_system.layers = archetype_storage_equipment.layers - energy_system.energy_storage_systems = _thermal_storage_system - + energy_system.configuration_schema = archetype_system.configuration_schema + energy_system.generation_systems = self._create_generation_systems(archetype_system) + if energy_system.distribution_systems is not None: + energy_system.distribution_systems = self._create_distribution_systems(archetype_system) building_systems.append(energy_system) - if archetype.name not in _generic_energy_systems: - _generic_energy_systems[archetype.name] = building_systems - return _energy_systems_connection_table, _generic_energy_systems + _generic_energy_systems[archetype.name] = building_systems + + return _generic_energy_systems @staticmethod - def _associate_energy_systems(city): - energy_systems_connection = city.energy_systems_connection_table + def _create_generation_systems(archetype_system): + _generation_systems = [] + for archetype_generation_system in archetype_system.generation_systems: + if archetype_generation_system.system_type == 'PV system': + _generation_system = PvGenerationSystem() + _type = 'PV system' + _generation_system.system_type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().montreal_custom_fuel_to_hub_fuel[archetype_generation_system.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.electricity_efficiency = archetype_generation_system.electricity_efficiency + _generic_storage_system = None + if archetype_generation_system.energy_storage_systems is not None: + _generic_storage_system = ElectricalStorageSystem() + _generic_storage_system.type_energy_stored = 'electrical' + _generation_system.energy_storage_systems = [_generic_storage_system] + else: + _generation_system = NonPvGenerationSystem() + _type = archetype_generation_system.system_type + _generation_system.system_type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] + _fuel_type = Dictionaries().north_america_custom_fuel_to_hub_fuel[archetype_generation_system.fuel_type] + _generation_system.fuel_type = _fuel_type + _generation_system.source_types = archetype_generation_system.source_medium + _generation_system.heat_efficiency = archetype_generation_system.heat_efficiency + _generation_system.cooling_efficiency = archetype_generation_system.cooling_efficiency + _generation_system.electricity_efficiency = archetype_generation_system.electricity_efficiency + _generic_storage_system = None + if archetype_generation_system.energy_storage_systems is not None: + _storage_systems = [] + for storage_system in archetype_generation_system.energy_storage_systems: + if storage_system.type_energy_stored == 'electrical': + _generic_storage_system = ElectricalStorageSystem() + _generic_storage_system.type_energy_stored = 'electrical' + else: + _generic_storage_system = ThermalStorageSystem() + _generic_storage_system.type_energy_stored = 'thermal' + _storage_systems.append(_generic_storage_system) + _generation_system.energy_storage_systems = [_storage_systems] + _generation_systems.append(_generation_system) + return _generation_systems + + @staticmethod + def _create_distribution_systems(archetype_system): + _distribution_systems = [] + for archetype_distribution_system in archetype_system.distribution_systems: + _distribution_system = DistributionSystem() + _distribution_system.type = archetype_distribution_system.type + _distribution_system.distribution_consumption_fix_flow = \ + archetype_distribution_system.distribution_consumption_fix_flow + _distribution_system.distribution_consumption_variable_flow = \ + archetype_distribution_system.distribution_consumption_variable_flow + _distribution_system.heat_losses = archetype_distribution_system.heat_losses + _emission_system = None + if archetype_distribution_system.emission_systems is not None: + _emission_system = EmissionSystem() + _distribution_system.emission_systems = [_emission_system] + _distribution_systems.append(_distribution_system) + return _distribution_systems + + @staticmethod + def _assign_energy_systems_to_buildings(city): for building in city.buildings: _building_energy_systems = [] - energy_systems = energy_systems_connection['Energy System Type'][ - energy_systems_connection['Building'] == building.name] - print(energy_systems) - for energy_system in energy_systems: - if str(energy_system) == 'nan': - break - _generic_building_energy_systems = city.generic_energy_systems[energy_system] - for _generic_building_energy_system in _generic_building_energy_systems: - _building_energy_equipment = EnergySystem() - _building_energy_equipment.name = _generic_building_energy_system.name - _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types - _generation_systems = [] - _generic_building_generation_systems = _generic_building_energy_system.generation_systems - for _generic_building_generation_system in _generic_building_generation_systems: - _building_generation_system = GenerationSystem() - _building_generation_system.generic_generation_system = \ - copy.deepcopy(_generic_building_generation_system) - _generation_systems.append(_building_generation_system) - _building_energy_equipment.generation_systems = _generation_systems - _building_storage_system = ThermalStorageSystem() - _building_storage_system.generic_storage_system = \ - copy.deepcopy(_generic_building_energy_system.energy_storage_systems) + energy_systems_cluster_name = building.energy_systems_archetype_name + if str(energy_systems_cluster_name) == 'nan': + break + _generic_building_energy_systems = city.generic_energy_systems[energy_systems_cluster_name] + for _generic_building_energy_system in _generic_building_energy_systems: + _building_energy_systems.append(copy.deepcopy(_generic_building_energy_system)) - - _building_energy_equipment.energy_storage_systems = _building_storage_system - - _building_energy_systems.append(_building_energy_equipment) building.energy_systems = _building_energy_systems diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 5dde6abf..ce508b46 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -104,7 +104,6 @@ class TestSystemsFactory(TestCase): building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' EnergySystemsFactory('north_america', self._city).enrich() - self.assertEqual(17, len(self._city.energy_systems_connection_table)) self.assertEqual(1, len(self._city.generic_energy_systems)) def test_north_america_custom_system_results(self): @@ -128,46 +127,18 @@ class TestSystemsFactory(TestCase): building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' EnergySystemsFactory('north_america', self._city).enrich() # Need to assign energy systems to buildings: - energy_systems_connection = self._city.energy_systems_connection_table for building in self._city.buildings: _building_energy_systems = [] - energy_systems = energy_systems_connection['Energy System Type'][ - energy_systems_connection['Building'] == building.name] - for energy_system in energy_systems: - _generic_building_energy_systems = self._city.generic_energy_systems[energy_system] - for _generic_building_energy_system in _generic_building_energy_systems: - _building_energy_equipment = EnergySystem() - _building_energy_equipment.demand_types = _generic_building_energy_system.demand_types - - _building_distribution_system = DistributionSystem() - _building_distribution_system.generic_distribution_system = ( - copy.deepcopy(_generic_building_energy_system.distribution_systems) - ) - _building_emission_system = EmissionSystem() - _building_emission_system.generic_emission_system = ( - copy.deepcopy(_generic_building_energy_system.emission_systems) - ) - _building_generation_system = GenerationSystem() - _building_generation_system.generic_generation_system = ( - copy.deepcopy(_generic_building_energy_system.generation_systems) - ) - _building_storage_system = ThermalStorageSystem() - _building_storage_system.generic_storage_system = \ - copy.deepcopy(_generic_building_energy_system.energy_storage_systems) - - if cte.HEATING in _building_energy_equipment.demand_types: - _building_generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] - if cte.COOLING in _building_energy_equipment.demand_types: - _building_generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] - _building_energy_equipment.generation_systems = _building_generation_system - _building_energy_equipment.distribution_systems = _building_distribution_system - _building_energy_equipment.emission_systems = _building_emission_system - - _building_energy_systems.append(_building_energy_equipment) - building.energy_systems = _building_energy_systems + for energy_system in building.energy_systems: + if cte.HEATING in energy_system.demand_types: + _generation_system = cast(NonPvGenerationSystem, energy_system.generation_systems[0]) + _generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] + if cte.COOLING in energy_system.demand_types: + _generation_system = cast(NonPvGenerationSystem, energy_system.generation_systems[0]) + _generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] for building in self._city.buildings: self.assertLess(0, building.heating_consumption[cte.YEAR][0]) - self.assertLess(0, building.cooling_consumption[cte.YEAR][0]) + self.assertEqual(0, building.cooling_consumption[cte.YEAR][0]) self.assertLess(0, building.domestic_hot_water_consumption[cte.YEAR][0]) self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) \ No newline at end of file -- 2.39.2 From c3f2cfb02add9d27f429e56baf77ec70d2717286 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 5 Dec 2023 13:13:19 -0500 Subject: [PATCH 087/101] updated the idf.py --- hub/exports/building_energy/idf.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index 63ea0b19..a9fefdcd 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -588,6 +588,18 @@ class Idf: Reporting_Frequency="Hourly", ) + self._idf.newidfobject( + "OUTPUT:VARIABLE", + Variable_Name="Zone Lights Electricity Rate", + Reporting_Frequency="Hourly", + ) + + self._idf.newidfobject( + "OUTPUT:VARIABLE", + Variable_Name="Other Equipment Electricity Rate", + Reporting_Frequency="Hourly", + ) + # post-process to erase windows associated to adiabatic walls windows_list = [] for window in self._idf.idfobjects[self._WINDOW]: -- 2.39.2 From 020190829f05e21b0872ec9a77171bb442b9205a Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 5 Dec 2023 19:38:11 -0500 Subject: [PATCH 088/101] The energy plus result importer for multiple buildings is created and tested. Currently, buildings are enriched with hourly values but monthly and yearly values are not working. --- hub/imports/results/ep_multiple_buildings.py | 113 +- hub/imports/results_factory.py | 14 +- tests/test_results_import.py | 26 +- .../Citylayers_neighbours_simp2.json | 6 + tests/tests_data/Montreal_out.csv | 17522 ++++++++-------- 5 files changed, 8837 insertions(+), 8844 deletions(-) create mode 100644 tests/tests_data/Citylayers_neighbours_simp2.json diff --git a/hub/imports/results/ep_multiple_buildings.py b/hub/imports/results/ep_multiple_buildings.py index a5e0fd08..73d3599f 100644 --- a/hub/imports/results/ep_multiple_buildings.py +++ b/hub/imports/results/ep_multiple_buildings.py @@ -12,89 +12,54 @@ import csv import hub.helpers.constants as cte -class EnergyPlusSingleBuilding: +class EnergyPlusMultipleBuildings: def __init__(self, city, base_path): self._city = city self._base_path = base_path - @staticmethod - def _building_energy_demands(energy_plus_output_file_path): + def _building_energy_demands(self, energy_plus_output_file_path): + buildings_energy_demands = {} + with open(Path(energy_plus_output_file_path).resolve(), 'r', encoding='utf8') as csv_file: - csv_output = csv.reader(csv_file) - headers = next(csv_output) - building_energy_demands = { - 'Heating (J)': [], - 'Cooling (J)': [], - 'DHW (J)': [], - 'Appliances (J)': [], - 'Lighting (J)': [] - } - heating_column_index = [] - cooling_column_index = [] - dhw_column_index = [] - appliance_column_index = [] - lighting_column_index = [] - for index, header in enumerate(headers): - if "Total Heating" in header: - heating_column_index.append(index) - elif "Total Cooling" in header: - cooling_column_index.append(index) - elif "DHW" in header: - dhw_column_index.append(index) - elif "InteriorEquipment" in header: - appliance_column_index.append(index) - elif "InteriorLights" in header: - lighting_column_index.append(index) + csv_output = list(csv.DictReader(csv_file)) - for line in csv_output: - total_heating_demand = 0 - total_cooling_demand = 0 - total_dhw_demand = 0 - total_appliance_demand = 0 - total_lighting_demand = 0 - for heating_index in heating_column_index: - total_heating_demand += float(line[heating_index]) - building_energy_demands['Heating (J)'].append(total_heating_demand) - for cooling_index in cooling_column_index: - total_cooling_demand += float(line[cooling_index]) - building_energy_demands['Cooling (J)'].append(total_cooling_demand) - for dhw_index in dhw_column_index: - total_dhw_demand += float(line[dhw_index]) * cte.WATTS_HOUR_TO_JULES - building_energy_demands['DHW (J)'].append(total_dhw_demand) - for appliance_index in appliance_column_index: - total_appliance_demand += float(line[appliance_index]) - building_energy_demands['Appliances (J)'].append(total_appliance_demand) - for lighting_index in lighting_column_index: - total_lighting_demand += float(line[lighting_index]) - building_energy_demands['Lighting (J)'].append(total_lighting_demand) - - return building_energy_demands + for building in self._city.buildings: + building_name = building.name + buildings_energy_demands[f'Building {building_name} Heating Demand (J)'] = [ + float( + row[f"{building_name} IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly)"]) + for row in csv_output + ] + buildings_energy_demands[f'Building {building_name} Cooling Demand (J)'] = [ + float( + row[f"{building_name} IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly)"]) + for row in csv_output + ] + buildings_energy_demands[f'Building {building_name} DHW Demand (W)'] = [ + float(row[f"DHW {building.name}:Water Use Equipment Heating Rate [W](Hourly)"]) + for row in csv_output + ] + buildings_energy_demands[f'Building {building_name} Appliances (W)'] = [ + float(row[f"{building_name}_APPLIANCE:Other Equipment Electricity Rate [W](Hourly)"]) + for row in csv_output + ] + buildings_energy_demands[f'Building {building_name} Lighting (W)'] = [ + float(row[f"{building_name}:Zone Lights Electricity Rate [W](Hourly)"]) for row in csv_output + ] + return buildings_energy_demands def enrich(self): """ Enrich the city by using the energy plus workflow output files (J) :return: None """ - for building in self._city.buildings: - file_name = f'{building.name}_out.csv' - energy_plus_output_file_path = Path(self._base_path / file_name).resolve() - if energy_plus_output_file_path.is_file(): - building_energy_demands = self._building_energy_demands(energy_plus_output_file_path) - building.heating_demand[cte.HOUR] = building_energy_demands['Heating (J)'] - building.cooling_demand[cte.HOUR] = building_energy_demands['Cooling (J)'] - building.domestic_hot_water_heat_demand[cte.HOUR] = building_energy_demands['DHW (J)'] - building.appliances_electrical_demand[cte.HOUR] = building_energy_demands['Appliances (J)'] - building.lighting_electrical_demand[cte.HOUR] = building_energy_demands['Lighting (J)'] - building.heating_demand[cte.MONTH] = MonthlyValues.get_total_month(building.heating_demand[cte.HOUR]) - building.cooling_demand[cte.MONTH] = MonthlyValues.get_total_month(building.cooling_demand[cte.HOUR]) - building.domestic_hot_water_heat_demand[cte.MONTH] = ( - MonthlyValues.get_total_month(building.domestic_hot_water_heat_demand[cte.HOUR])) - building.appliances_electrical_demand[cte.MONTH] = ( - MonthlyValues.get_total_month(building.appliances_electrical_demand[cte.HOUR])) - building.lighting_electrical_demand[cte.MONTH] = ( - MonthlyValues.get_total_month(building.lighting_electrical_demand[cte.HOUR])) - building.heating_demand[cte.YEAR] = [sum(building.heating_demand[cte.MONTH])] - building.cooling_demand[cte.YEAR] = [sum(building.cooling_demand[cte.MONTH])] - building.domestic_hot_water_heat_demand[cte.YEAR] = [sum(building.domestic_hot_water_heat_demand[cte.MONTH])] - building.appliances_electrical_demand[cte.YEAR] = [sum(building.appliances_electrical_demand[cte.MONTH])] - building.lighting_electrical_demand[cte.YEAR] = [sum(building.lighting_electrical_demand[cte.MONTH])] + file_name = f'{self._city.name}_out.csv' + energy_plus_output_file_path = Path(self._base_path / file_name).resolve() + if energy_plus_output_file_path.is_file(): + building_energy_demands = self._building_energy_demands(energy_plus_output_file_path) + for building in self._city.buildings: + building.heating_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} Heating Demand (J)'] + building.cooling_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} Cooling Demand (J)'] + building.domestic_hot_water_heat_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} DHW Demand (W)'] + building.appliances_electrical_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} Appliances (W)'] + diff --git a/hub/imports/results_factory.py b/hub/imports/results_factory.py index a40f5eab..66311f60 100644 --- a/hub/imports/results_factory.py +++ b/hub/imports/results_factory.py @@ -10,8 +10,8 @@ from pathlib import Path from hub.helpers.utils import validate_import_export_type from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm -from hub.imports.results.energy_plus import EnergyPlus -# from hub.imports.results.ep_multiple_buildings import EnergyPlusMultiple + +from hub.imports.results.ep_multiple_buildings import EnergyPlusMultipleBuildings from hub.imports.results.energy_plus_single_building import EnergyPlusSingleBuilding class ResultFactory: @@ -54,11 +54,11 @@ class ResultFactory: """ EnergyPlusSingleBuilding(self._city, self._base_path).enrich() - # def _energy_plus_multiple(self): - # """ - # Enrich the city with energy plus results - # """ - # EnergyPlusMultiple(self._city, self._base_path).enrich() + def _energy_plus_multiple_buildings(self): + """ + Enrich the city with energy plus results + """ + EnergyPlusMultipleBuildings(self._city, self._base_path).enrich() def enrich(self): """ diff --git a/tests/test_results_import.py b/tests/test_results_import.py index 4b0d29d4..bb80c4ec 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -30,11 +30,11 @@ class TestResultsImport(TestCase): """ self._example_path = (Path(__file__).parent / 'tests_data').resolve() self._output_path = (Path(__file__).parent / 'tests_outputs').resolve() - file = 'test.geojson' + file = 'Citylayers_neighbours_simp2.json' file_path = (self._example_path / file).resolve() self._city = GeometryFactory('geojson', path=file_path, - height_field='citygml_me', + height_field='heightmax', year_of_construction_field='ANNEE_CONS', function_field='CODE_UTILI', function_to_hub=Dictionaries().montreal_function_to_hub_function).city @@ -115,3 +115,25 @@ class TestResultsImport(TestCase): self.assertDictEqual(building.domestic_hot_water_heat_demand, {}) self.assertDictEqual(building.lighting_electrical_demand, {}) self.assertDictEqual(building.appliances_electrical_demand, {}) + + def test_energy_plus_multiple_buildings_results_import(self): + ResultFactory('energy_plus_multiple_buildings', self._city, self._example_path).enrich() + csv_output_name = f'{self._city.name}_out.csv' + csv_output_path = (self._example_path / csv_output_name).resolve() + if csv_output_path.is_file(): + for building in self._city.buildings: + self.assertIsNotNone(building.heating_demand) + self.assertIsNotNone(building.cooling_demand) + self.assertIsNotNone(building.domestic_hot_water_heat_demand) + self.assertIsNotNone(building.lighting_electrical_demand) + self.assertIsNotNone(building.appliances_electrical_demand) + total_demand = sum(building.heating_demand[cte.HOUR]) + self.assertAlmostEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) + total_demand = sum(building.heating_demand[cte.MONTH]) + self.assertEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) + # if building.name != '12': + # self.assertDictEqual(building.heating_demand, {}) + # self.assertDictEqual(building.cooling_demand, {}) + # self.assertDictEqual(building.domestic_hot_water_heat_demand, {}) + # self.assertDictEqual(building.lighting_electrical_demand, {}) + # self.assertDictEqual(building.appliances_electrical_demand, {}) \ No newline at end of file diff --git a/tests/tests_data/Citylayers_neighbours_simp2.json b/tests/tests_data/Citylayers_neighbours_simp2.json new file mode 100644 index 00000000..01eb5acc --- /dev/null +++ b/tests/tests_data/Citylayers_neighbours_simp2.json @@ -0,0 +1,6 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57185265377689,45.52343504199365],[-73.57186901784087,45.52344250726594],[-73.5719186361361,45.523388576721516],[-73.57169557189309,45.52328954697509],[-73.57164717307853,45.523341318247276],[-73.57185265377689,45.52343504199365]]]},"id":86522, "properties":{"ID_UEV":"01027575","CIVIQUE_DE":" 951","CIVIQUE_FI":" 959","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":5,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-16-9406-0-000-0000","SUPERFICIE":189,"SUPERFIC_1":342,"NO_ARROND_":"REM21","Shape_Leng":0.000632076842566,"OBJECTID":86522,"Join_Count":1,"TARGET_FID":86522,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":86522,"Shape_Le_1":0.000632076842566,"Shape_Ar_1":1.66656602227e-8,"OBJECTID_12":86522,"Join_Count_1":4,"TARGET_FID_1":86521,"g_objectid":"965958","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"1885186","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"5","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994216872540000000","g_sup_tota":"228.4","g_geometry":"0.000850333","g_geomet_1":"2.66017e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000632076842566,"Shape_Area_1":1.66656602227e-8,"Shape_Length":0.0006320773708141846,"Shape_Area":1.66656602227e-8}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57153144831767,45.523465428286954],[-73.57149617241038,45.523503246577604],[-73.5714876720184,45.52349934711725],[-73.57146469883673,45.52352357665177],[-73.571684848377,45.523623993152796],[-73.5717241721328,45.523584846563494],[-73.57163387210545,45.52354014666048],[-73.57165310140948,45.523520919155146],[-73.57153144831767,45.523465428286954]]]},"id":92980,"properties":{"ID_UEV":"01105693","CIVIQUE_DE":" 981","CIVIQUE_FI":" 981","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":1,"NOMBRE_LOG":1,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Condominium","MATRICULE8":"9942-26-0726-9-001-0002","SUPERFICIE":64,"SUPERFIC_1":1097,"NO_ARROND_":"REM21","Shape_Leng":0.000653576866621,"OBJECTID":92980,"Join_Count":1,"TARGET_FID":92980,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":92980,"Shape_Le_1":0.000653576866621,"Shape_Ar_1":1.64021795264e-8,"OBJECTID_12":92980,"Join_Count_1":3,"TARGET_FID_1":92979,"g_objectid":"967849","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"2316950","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"6","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994226021950000000","g_sup_tota":"205.6","g_geometry":"0.000725388","g_geomet_1":"2.3681e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000653576866621,"Shape_Area_1":1.64021795264e-8,"Shape_Length":0.0006535770208011338,"Shape_Area":1.64021795264e-8}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57185265377689,45.52343504199365],[-73.57164717307853,45.523341318247276],[-73.57159495574257,45.523397333420235],[-73.57180091488027,45.52349127660119],[-73.57185265377689,45.52343504199365]]]},"id":146189, "properties":{"ID_UEV":"01027577","CIVIQUE_DE":" 961","CIVIQUE_FI":" 965","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":3,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-16-9812-9-000-0000","SUPERFICIE":159,"SUPERFIC_1":313,"NO_ARROND_":"REM21","Shape_Leng":0.00060521313674,"OBJECTID":146189,"Join_Count":1,"TARGET_FID":146189,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":146189,"Shape_Le_1":0.00060521313674,"Shape_Ar_1":1.64233386484e-8,"OBJECTID_12":146189,"Join_Count_1":4,"TARGET_FID_1":146188,"g_objectid":"967849","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"2316950","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"6","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994226021950000000","g_sup_tota":"205.6","g_geometry":"0.000725388","g_geomet_1":"2.3681e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.00060521313674,"Shape_Area_1":1.64233386484e-8,"Shape_Length":0.0006052125392461572,"Shape_Area":1.64233386484e-8}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57165310140948,45.523520919155146],[-73.57166317201774,45.52351084674825],[-73.57174737194362,45.523552647236954],[-73.5717762716576,45.523526846586776],[-73.57178620916619,45.52353250781903],[-73.57181157904108,45.523504934605114],[-73.57180091488027,45.52349127660119],[-73.57159495574257,45.523397333420235],[-73.57153144831767,45.523465428286954],[-73.57165310140948,45.523520919155146]]]},"id":156117,"properties":{"ID_UEV":"01027579","CIVIQUE_DE":" 967","CIVIQUE_FI":" 977","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":6,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-26-0219-5-000-0000","SUPERFICIE":206,"SUPERFIC_1":360,"NO_ARROND_":"REM21","Shape_Leng":0.000675507023301,"OBJECTID":156117,"Join_Count":1,"TARGET_FID":156117,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":156117,"Shape_Le_1":0.000675507023301,"Shape_Ar_1":1.96911729663e-8,"OBJECTID_12":156117,"Join_Count_1":5,"TARGET_FID_1":156116,"g_objectid":"965958","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"1885186","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"5","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994216872540000000","g_sup_tota":"228.4","g_geometry":"0.000850333","g_geomet_1":"2.66017e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000675507023301,"Shape_Area_1":1.96911729663e-8,"Shape_Length":0.0006755075167615554,"Shape_Area":1.96911729663e-8}} +]} \ No newline at end of file diff --git a/tests/tests_data/Montreal_out.csv b/tests/tests_data/Montreal_out.csv index f80ab64f..d60d365a 100644 --- a/tests/tests_data/Montreal_out.csv +++ b/tests/tests_data/Montreal_out.csv @@ -1,8761 +1,8761 @@ -Date/Time,86522 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),86522 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),92980 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),92980 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),146189 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),146189 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),156117 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),156117 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),DHW 86522:Water Use Equipment Heating Rate [W](Hourly),DHW 92980:Water Use Equipment Heating Rate [W](Hourly),DHW 146189:Water Use Equipment Heating Rate [W](Hourly),DHW 156117:Water Use Equipment Heating Rate [W](Hourly),DistrictHeating:Facility [J](Hourly),DistrictCooling:Facility [J](Hourly),InteriorEquipment:Electricity [J](Hourly),InteriorLights:Electricity [J](Hourly) - 01/01 01:00:00,60445075.4217239,0.0,73002436.86632909,0.0,36420082.75642025,0.0,56624215.35425409,0.0,2583.9882438566935,2543.5354258565864,2546.813030866066,3065.8034144407677,265156314.81279976,0.0,21139960.556782485,23253956.61246073 - 01/01 02:00:00,6992320.180099715,0.0,14354718.875117094,0.0,0.0,0.0,686074.0783205634,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,41379821.72990141,0.0,14093307.03785499,0.0 - 01/01 03:00:00,24710082.678845005,0.0,33406914.18607578,0.0,5980814.468184035,0.0,18018341.183343226,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,101467803.08470173,0.0,14093307.03785499,0.0 - 01/01 04:00:00,23121982.1137716,0.0,30295807.494761468,0.0,8425020.85110109,0.0,18963973.811267657,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,100159459.17139878,0.0,14093307.03785499,0.0 - 01/01 05:00:00,21873318.489791965,0.0,28419004.60778556,0.0,8921780.336211678,0.0,18071562.725099535,0.0,1293.3156672372614,1273.0685691988627,1274.7090479896829,1534.469670282925,96637692.79584018,0.0,14093307.03785499,0.0 - 01/01 06:00:00,21258505.57481562,0.0,27384505.03952747,0.0,9161094.127224887,0.0,17792434.939941039,0.0,1293.2333272844795,1272.9875182934023,1274.627892641858,1534.371977072059,94947334.2565595,0.0,14093307.03785499,0.0 - 01/01 07:00:00,19653783.92356316,0.0,25610194.915651427,0.0,7541097.945405368,0.0,15600981.554224488,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,145777069.38492773,0.0,14093307.03785499,15502637.741640486 - 01/01 08:00:00,34120384.34819441,0.0,43421352.85234823,0.0,23073499.08932834,0.0,33759727.79765992,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,443540603.1052954,0.0,56373228.15141996,38756594.35410121 - 01/01 09:00:00,21772276.186806598,0.0,48289445.80765087,0.0,27267641.001251945,0.0,40591622.360089939,0.0,18062.123443729644,17779.357531732254,17802.268048613187,21430.019992346388,408186553.8149167,0.0,56373228.15141996,38756594.35410121 - 01/01 10:00:00,0.0,0.0,40770378.14064714,0.0,22945038.21222695,0.0,34503601.31511632,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,291370095.2785413,0.0,28186614.07570998,0.0 - 01/01 11:00:00,0.0,6935617.410562188,40688386.81144647,0.0,23808294.866569785,0.0,35601005.37640084,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,254680506.56329937,6935617.410562188,28186614.07570998,0.0 - 01/01 12:00:00,0.0,9131873.685999873,43836039.14058268,0.0,26697571.001041198,0.0,39286830.77208929,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,187080871.95793353,9131873.685999873,28186614.07570998,0.0 - 01/01 13:00:00,0.0,0.0,46548286.511100698,0.0,27514553.055884009,0.0,38915330.95402311,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,190238601.56522817,0.0,28186614.07570998,0.0 - 01/01 14:00:00,7512068.219152128,0.0,46267620.05741463,0.0,27360180.154521809,0.0,39089637.64992069,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,197448239.92647139,0.0,28186614.07570998,0.0 - 01/01 15:00:00,16918953.053392829,0.0,48336532.2275358,0.0,27700446.406326936,0.0,40766121.31226008,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,249480227.6163554,0.0,28186614.07570998,0.0 - 01/01 16:00:00,33650426.17139411,0.0,57108766.7696415,0.0,32019679.039697306,0.0,47655546.7012957,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,362994110.16198846,0.0,28186614.07570998,0.0 - 01/01 17:00:00,48876125.744392577,0.0,65865624.50715945,0.0,36617594.1541337,0.0,54343650.666830789,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,397957798.71844688,0.0,35233267.594637479,0.0 - 01/01 18:00:00,56869695.832136917,0.0,72306591.89307399,0.0,41501758.27989178,0.0,60713268.119608048,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,500291329.5255935,0.0,14093307.03785499,0.0 - 01/01 19:00:00,47517009.1073462,0.0,62249452.78930352,0.0,30041470.842119516,0.0,47298908.97443694,0.0,17936.506471112665,17655.70711625542,17678.45829695528,21280.98024943098,455492789.3947218,0.0,63419881.67034747,0.0 - 01/01 20:00:00,38000955.20955116,0.0,52448222.45485572,0.0,18750059.3746076,0.0,34138340.1451563,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,296375397.1012757,0.0,63419881.67034747,69761869.8373822 - 01/01 21:00:00,44501445.99140573,0.0,58788487.57998185,0.0,23384065.424150837,0.0,40411586.69636179,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,319932536.7070119,0.0,49326574.63249246,69761869.8373822 - 01/01 22:00:00,54369871.313445467,0.0,68924632.14098932,0.0,30602929.399480765,0.0,50188686.744855049,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,280023164.953971,0.0,35233267.594637479,69761869.8373822 - 01/01 23:00:00,63542518.1839637,0.0,78428499.41666687,0.0,37153661.83561557,0.0,59087046.54480682,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,313795767.7649428,0.0,35233267.594637479,62010550.96656194 - 01/01 24:00:00,72174394.26550505,0.0,87156354.66111823,0.0,43892698.483689609,0.0,67866268.01632634,0.0,2517.4220429791564,2478.0113312716996,2481.2045017974016,2986.8251580876706,308758182.34952858,0.0,35233267.594637479,46507913.22492146 - 01/02 01:00:00,84159375.70416026,0.0,99322533.64811503,0.0,54264807.61910432,0.0,81032814.71084625,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,356377571.48987177,0.0,21139960.556782485,23253956.61246073 - 01/02 02:00:00,44453886.621426377,0.0,58669198.20928459,0.0,20821455.329161548,0.0,37458805.53819804,0.0,1254.3426172538225,1234.70564958333,1236.2966938366035,1488.2296341703523,180172214.23950935,0.0,14093307.03785499,0.0 - 01/02 03:00:00,73571864.45807596,0.0,87341355.59099067,0.0,45055693.044752318,0.0,69339843.98300483,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,294077625.61826249,0.0,14093307.03785499,0.0 - 01/02 04:00:00,76024036.73178056,0.0,89240662.26252817,0.0,47527603.51632239,0.0,72171875.10584264,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,303733046.1579125,0.0,14093307.03785499,0.0 - 01/02 05:00:00,78067984.41299495,0.0,90907950.12362954,0.0,49635257.4374286,0.0,74302621.41278994,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,311645543.0360032,0.0,14093307.03785499,0.0 - 01/02 06:00:00,79694203.5743237,0.0,92447703.95989013,0.0,51187887.31700185,0.0,76035890.45592542,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,318097414.9563012,0.0,14093307.03785499,0.0 - 01/02 07:00:00,77309993.37324718,0.0,89974781.98484874,0.0,48850105.70217364,0.0,73059677.52220524,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,364121477.1791153,0.0,14093307.03785499,15502637.741640486 - 01/02 08:00:00,80922722.17718604,0.0,95710253.277962,0.0,51617807.52689248,0.0,76880008.39141627,0.0,20029.769395586467,19716.199619148774,19741.60595474871,23764.55680456099,604838465.7600186,0.0,56373228.15141996,38756594.35410121 - 01/02 09:00:00,77671502.10879413,0.0,102278118.2592752,0.0,58777788.863582078,0.0,85649248.25936158,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.214878384926,587140817.071156,0.0,56373228.15141996,38756594.35410121 - 01/02 10:00:00,60381647.242279458,0.0,103048178.52381061,0.0,63671374.60581081,0.0,91262039.6080265,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,505680536.4715285,0.0,28186614.07570998,0.0 - 01/02 11:00:00,52936031.947730127,0.0,104069690.12003923,0.0,64505441.28366363,0.0,92576884.48683492,0.0,10034.74093803058,9877.64519666664,9890.37355069283,11905.837073362818,464238996.1697782,0.0,28186614.07570998,0.0 - 01/02 12:00:00,58254687.06857228,0.0,104624498.4176988,0.0,65151352.51462499,0.0,93452034.425062,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,396678652.04125,0.0,28186614.07570998,0.0 - 01/02 13:00:00,55257430.417458128,0.0,104006891.2848323,0.0,64413680.88005348,0.0,90590328.87835963,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,389464411.07599547,0.0,28186614.07570998,0.0 - 01/02 14:00:00,77158613.19972666,0.0,104531196.28550864,0.0,63974818.518555838,0.0,91874116.81471151,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,412734824.43379458,0.0,28186614.07570998,0.0 - 01/02 15:00:00,87636361.51102215,0.0,110062391.66259665,0.0,66064987.88054246,0.0,95490531.60517937,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,471867483.90797337,0.0,28186614.07570998,0.0 - 01/02 16:00:00,93690072.76059017,0.0,113856960.77915901,0.0,67188968.19850151,0.0,97431428.75588434,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,560509765.1085817,0.0,28186614.07570998,0.0 - 01/02 17:00:00,94826806.74805144,0.0,113923532.86283933,0.0,66144549.55987655,0.0,96357027.86766905,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,559594251.652883,0.0,35233267.594637479,0.0 - 01/02 18:00:00,97526010.18685913,0.0,115578352.9189447,0.0,68018614.33608575,0.0,98485712.02644608,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,643687372.9050984,0.0,14093307.03785499,0.0 - 01/02 19:00:00,82453562.20686186,0.0,99817363.89600168,0.0,52757590.18970223,0.0,79871390.65189535,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,579444053.1880757,0.0,63419881.67034747,0.0 - 01/02 20:00:00,68157009.39595093,0.0,85233120.6948908,0.0,38103545.31877306,0.0,62206535.97420116,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,404868294.95159569,0.0,63419881.67034747,69761869.8373822 - 01/02 21:00:00,70016936.63750161,0.0,86419288.48552263,0.0,39717395.6859526,0.0,64019413.35553303,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,411556116.13034197,0.0,49326574.63249246,69761869.8373822 - 01/02 22:00:00,70958181.73631287,0.0,86408316.17541474,0.0,40840481.169147308,0.0,64987708.147283058,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,339011198.3392441,0.0,35233267.594637479,69761869.8373822 - 01/02 23:00:00,72622422.9693938,0.0,87268602.53956875,0.0,41924543.26473997,0.0,66357607.64496565,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,343989687.5297544,0.0,35233267.594637479,62010550.96656194 - 01/02 24:00:00,72749183.55698367,0.0,86877095.43670835,0.0,42434911.34476951,0.0,66452895.75742474,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,306632321.96601316,0.0,35233267.594637479,46507913.22492146 - 01/03 01:00:00,78152413.62748987,0.0,91591583.16616729,0.0,48249368.150460179,0.0,73121961.60005354,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,329233562.4142977,0.0,21139960.556782485,23253956.61246073 - 01/03 02:00:00,33661001.22299934,0.0,46045987.63731128,0.0,9871389.280842223,0.0,24999123.820073517,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,133707229.45086447,0.0,14093307.03785499,0.0 - 01/03 03:00:00,57505557.627468708,0.0,68654179.6630078,0.0,31976708.7093262,0.0,51612865.81468637,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,228898028.35463578,0.0,14093307.03785499,0.0 - 01/03 04:00:00,56397035.55312042,0.0,66723366.19642481,0.0,32001354.97386053,0.0,51060643.452704329,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,225352825.01050408,0.0,14093307.03785499,0.0 - 01/03 05:00:00,56882407.20140466,0.0,67407218.9008538,0.0,32456003.04058176,0.0,51641491.986158657,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,227578070.5739687,0.0,14093307.03785499,0.0 - 01/03 06:00:00,56728552.94303082,0.0,67060978.81062118,0.0,32599295.884684445,0.0,51564708.07431501,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,227144485.1576213,0.0,14093307.03785499,0.0 - 01/03 07:00:00,51559057.670662108,0.0,61049603.941975269,0.0,28782277.196271458,0.0,46026038.768947917,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,264180775.3577361,0.0,14093307.03785499,15502637.741640486 - 01/03 08:00:00,51982804.57074971,0.0,61884879.361344087,0.0,32656353.063713533,0.0,46714900.2806039,0.0,20520.811428769444,20199.554297698473,20225.583485136696,24347.15943270584,500294128.39592888,0.0,56373228.15141996,38756594.35410121 - 01/03 09:00:00,65302213.03757514,0.0,75286407.8207201,0.0,41415968.92537862,0.0,60824520.0769598,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,511502402.0902116,0.0,56373228.15141996,38756594.35410121 - 01/03 10:00:00,73692627.08074792,0.0,83934489.7996141,0.0,50197808.79994893,0.0,72133279.13429857,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,472029644.3866686,0.0,28186614.07570998,0.0 - 01/03 11:00:00,68057655.33408392,0.0,79717165.67682746,0.0,47257358.96112887,0.0,68623000.88266583,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,417459023.7714504,0.0,28186614.07570998,0.0 - 01/03 12:00:00,57957610.05523778,0.0,71045815.31111638,0.0,42542418.25472307,0.0,61839107.4746973,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,310458877.87607696,0.0,28186614.07570998,0.0 - 01/03 13:00:00,50949658.52245888,0.0,69902917.18943924,0.0,41201686.44836928,0.0,59686166.38393995,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,298814355.32450976,0.0,28186614.07570998,0.0 - 01/03 14:00:00,51056532.01160313,0.0,69977222.58205523,0.0,40852070.462345469,0.0,59415053.10159337,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,298324754.7495811,0.0,28186614.07570998,0.0 - 01/03 15:00:00,47821501.19010649,0.0,67857874.35959563,0.0,39650925.189869899,0.0,57572980.93850424,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,328342335.061896,0.0,28186614.07570998,0.0 - 01/03 16:00:00,62870133.56088223,0.0,74803910.81616494,0.0,42729053.85361065,0.0,62437463.11081266,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,435238983.64783677,0.0,28186614.07570998,0.0 - 01/03 17:00:00,64428618.71990508,0.0,74784541.83776996,0.0,41979202.55501054,0.0,61778955.31250733,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,435369740.73155918,0.0,35233267.594637479,0.0 - 01/03 18:00:00,67862104.10724741,0.0,78103134.7306261,0.0,44815822.19428449,0.0,65321639.61896272,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,525259425.7554232,0.0,14093307.03785499,0.0 - 01/03 19:00:00,55131245.50890508,0.0,66179511.82710303,0.0,31821737.06331619,0.0,49899381.894185688,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,471931891.69439277,0.0,63419881.67034747,0.0 - 01/03 20:00:00,42509774.7701567,0.0,53992531.46459457,0.0,18797635.65889403,0.0,34443749.35621932,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,303271286.8096235,0.0,63419881.67034747,69761869.8373822 - 01/03 21:00:00,46045567.88133322,0.0,57555468.47470942,0.0,21720480.116743439,0.0,38204623.96614873,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,317053735.9986936,0.0,49326574.63249246,69761869.8373822 - 01/03 22:00:00,51263618.48919115,0.0,63081904.495718318,0.0,26003914.040983946,0.0,43840600.43246013,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,260784903.61894024,0.0,35233267.594637479,69761869.8373822 - 01/03 23:00:00,60093053.0518236,0.0,72460649.02490461,0.0,32708089.765829639,0.0,53205899.153908509,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,294501762.9488774,0.0,35233267.594637479,62010550.96656194 - 01/03 24:00:00,71624586.16814676,0.0,84920035.64829798,0.0,41756069.59669213,0.0,65325252.71739192,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,301417965.0224738,0.0,35233267.594637479,46507913.22492146 - 01/04 01:00:00,86233702.54826606,0.0,100270994.03890862,0.0,54281879.50697644,0.0,81447037.15313322,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,359831653.05493029,0.0,21139960.556782485,23253956.61246073 - 01/04 02:00:00,49629778.44316507,0.0,62924678.628412488,0.0,22503510.943425768,0.0,40423116.04227322,0.0,1251.8605872241543,1232.2624761967982,1233.8503721717944,1485.284800285062,194212813.7064367,0.0,14093307.03785499,0.0 - 01/04 03:00:00,79532447.93339923,0.0,93440284.66223103,0.0,48152361.0014906,0.0,73794612.5313577,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,313619697.69693866,0.0,14093307.03785499,0.0 - 01/04 04:00:00,82774925.61856982,0.0,96610731.1499606,0.0,51359952.267666418,0.0,77726101.48291181,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,327171702.0875687,0.0,14093307.03785499,0.0 - 01/04 05:00:00,84624860.76194427,0.0,98499411.66386034,0.0,53227552.27974497,0.0,79734616.86084469,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,334786433.13485428,0.0,14093307.03785499,0.0 - 01/04 06:00:00,86707276.16714165,0.0,100525549.61708358,0.0,55187139.98259283,0.0,81945522.34077218,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,343026458.5638647,0.0,14093307.03785499,0.0 - 01/04 07:00:00,84762165.91464065,0.0,98554069.83991097,0.0,53275938.84196922,0.0,79513830.36699984,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,390749886.78861847,0.0,14093307.03785499,15502637.741640486 - 01/04 08:00:00,84467106.46155381,0.0,103648967.21537489,0.0,54860271.7794648,0.0,82140383.32511461,0.0,19954.10685172838,19641.721586529617,19667.031949582703,23674.78608449023,623692256.0818994,0.0,56373228.15141996,38756594.35410121 - 01/04 09:00:00,56340402.38560875,0.0,101899836.84437818,0.0,55307186.58404539,0.0,82479773.893852,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,557827081.6663252,0.0,56373228.15141996,38756594.35410121 - 01/04 10:00:00,36605511.30874746,0.0,102687571.92988096,0.0,61055203.9502362,0.0,88519891.35325799,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,476185475.03372368,0.0,28186614.07570998,0.0 - 01/04 11:00:00,22151428.375356936,0.0,101872134.98333268,0.0,62034641.47449381,0.0,89624631.2994629,0.0,10034.74093803058,9877.64519666664,9890.37355069283,11905.837073362818,425833784.4641566,0.0,28186614.07570998,0.0 - 01/04 12:00:00,13355910.520792287,0.0,100941381.42172413,0.0,63005771.64713939,0.0,90380378.75413753,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,343020376.18957206,0.0,28186614.07570998,0.0 - 01/04 13:00:00,9003397.949416087,0.0,97465954.3569685,0.0,61000211.16993153,0.0,82847106.97465258,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,325767722.86147239,0.0,28186614.07570998,0.0 - 01/04 14:00:00,16558071.09920207,0.0,88360838.58122756,0.0,55947723.912757087,0.0,77053627.50911974,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,313504302.8861964,0.0,28186614.07570998,0.0 - 01/04 15:00:00,50215692.0051368,0.0,92572708.83398566,0.0,55564582.872408289,0.0,79806545.98686652,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,391696841.1727712,0.0,28186614.07570998,0.0 - 01/04 16:00:00,62392792.71867935,0.0,96241139.61795211,0.0,56236942.6707402,0.0,81717190.04497558,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,485816917.5096373,0.0,28186614.07570998,0.0 - 01/04 17:00:00,74195874.8051225,0.0,99233962.44150827,0.0,57327072.4453489,0.0,83387563.78911796,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,503685751.25881299,0.0,35233267.594637479,0.0 - 01/04 18:00:00,79022597.09432891,0.0,101642641.73243983,0.0,60011040.87661641,0.0,86483206.67013115,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,592079879.8137224,0.0,14093307.03785499,0.0 - 01/04 19:00:00,65393622.677930127,0.0,86850491.00184179,0.0,45509137.515452999,0.0,68903255.24360228,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,532014295.3276286,0.0,63419881.67034747,0.0 - 01/04 20:00:00,50823312.3924623,0.0,71536838.91210158,0.0,30044225.1247152,0.0,50367746.26722429,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,354840266.6013254,0.0,63419881.67034747,69761869.8373822 - 01/04 21:00:00,55217642.47770602,0.0,75046175.8649887,0.0,32723390.625303627,0.0,53878955.89736696,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,368740255.5757662,0.0,49326574.63249246,69761869.8373822 - 01/04 22:00:00,60025651.61353547,0.0,78978719.59593329,0.0,36361189.7930268,0.0,58381523.14758493,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,309563595.2611667,0.0,35233267.594637479,69761869.8373822 - 01/04 23:00:00,63656525.81724127,0.0,81884537.55936909,0.0,38984199.06971706,0.0,61673493.62983601,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,321890297.05907949,0.0,35233267.594637479,62010550.96656194 - 01/04 24:00:00,64686006.18043056,0.0,82253950.23581267,0.0,39767279.1928671,0.0,62472197.76772454,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,287297669.2469617,0.0,35233267.594637479,46507913.22492146 - 01/05 01:00:00,67894147.58751135,0.0,84272536.91559939,0.0,43617226.8824303,0.0,66649696.16694027,0.0,2556.918377229535,2516.889343041355,2520.132611853418,3033.686051007979,300693062.5317575,0.0,21139960.556782485,23253956.61246073 - 01/05 02:00:00,28060748.303724588,0.0,41516728.41045338,0.0,9303167.277386776,0.0,22820414.696300854,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,120892008.13283545,0.0,14093307.03785499,0.0 - 01/05 03:00:00,47629508.52544385,0.0,60698638.279869128,0.0,27301114.883436517,0.0,44992069.22890341,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,199812280.36262275,0.0,14093307.03785499,0.0 - 01/05 04:00:00,53283417.13567519,0.0,65564374.14145143,0.0,32374938.445027707,0.0,50913331.29283124,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,221172652.69588325,0.0,14093307.03785499,0.0 - 01/05 05:00:00,55719951.08578046,0.0,67444229.82844374,0.0,34951860.75300943,0.0,53570461.99419731,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,230745621.59649436,0.0,14093307.03785499,0.0 - 01/05 06:00:00,55904250.87957157,0.0,67248877.52715636,0.0,35349466.14506139,0.0,53722958.24987565,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,231284670.73672838,0.0,14093307.03785499,0.0 - 01/05 07:00:00,52013157.60745565,0.0,63034141.575432028,0.0,31920300.80912316,0.0,49218249.16082006,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,215270948.32154689,0.0,14093307.03785499,15502637.741640486 - 01/05 08:00:00,52428004.30583287,0.0,65430907.2923362,0.0,34820326.5586581,0.0,49437660.755890388,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,278457295.58758148,0.0,56373228.15141996,38756594.35410121 - 01/05 09:00:00,54887382.017656829,0.0,73087586.24944756,0.0,40247952.44479548,0.0,59230723.61430421,0.0,12784.591886147677,12584.446715206774,12600.663059267092,15168.430255039897,418750919.22258529,0.0,56373228.15141996,38756594.35410121 - 01/05 10:00:00,54852566.82583274,0.0,75006971.94398043,0.0,45656800.56589419,0.0,65582316.626826297,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,432585821.3640005,0.0,28186614.07570998,0.0 - 01/05 11:00:00,52027414.575352277,0.0,74146061.94489153,0.0,45081945.816827747,0.0,65030102.77912033,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,427582800.012573,0.0,28186614.07570998,0.0 - 01/05 12:00:00,48655867.48025651,0.0,72504040.597485,0.0,44366771.379809077,0.0,64197344.99469307,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,344502389.39007237,0.0,28186614.07570998,0.0 - 01/05 13:00:00,45885838.98932815,0.0,73494268.33638974,0.0,45231174.74952899,0.0,64403155.68165517,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,343369145.3672825,0.0,28186614.07570998,0.0 - 01/05 14:00:00,47015660.622346948,0.0,75831278.66923648,0.0,46265694.259471509,0.0,66249020.780863959,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,349581204.417305,0.0,28186614.07570998,0.0 - 01/05 15:00:00,63878625.72072981,0.0,83171424.12569498,0.0,49358877.421907197,0.0,71820730.94976649,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,382135226.2508991,0.0,28186614.07570998,0.0 - 01/05 16:00:00,72615980.92218708,0.0,89081949.16820883,0.0,52080728.05664204,0.0,75875005.31714463,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,555433322.2073841,0.0,28186614.07570998,0.0 - 01/05 17:00:00,76895465.43766725,0.0,92631049.89771004,0.0,53102790.58484881,0.0,77741856.08428192,0.0,22801.026255618603,22444.071936059645,22472.993413568056,27052.547283611366,641545462.0043956,0.0,35233267.594637479,0.0 - 01/05 18:00:00,81647065.08373335,0.0,97025397.50273842,0.0,56507728.36350004,0.0,82166867.93108115,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,582704847.7698544,0.0,14093307.03785499,0.0 - 01/05 19:00:00,71148630.86466648,0.0,86383762.40810833,0.0,45196622.17959901,0.0,68736584.86194483,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,536823389.20312008,0.0,63419881.67034747,0.0 - 01/05 20:00:00,59315236.231641348,0.0,74751812.62420856,0.0,32376164.456129735,0.0,53669046.73405357,0.0,15175.62852723902,14938.051231634385,14957.300435341542,18005.303958215063,447186882.99478128,0.0,63419881.67034747,69761869.8373822 - 01/05 21:00:00,63557037.564328107,0.0,78802534.88832554,0.0,35660594.223516259,0.0,57923284.38756148,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,425172303.52102139,0.0,49326574.63249246,69761869.8373822 - 01/05 22:00:00,67463172.54718183,0.0,82442186.14338444,0.0,38763664.170180577,0.0,61865121.70571197,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,401917226.5322909,0.0,35233267.594637479,69761869.8373822 - 01/05 23:00:00,70812999.1182617,0.0,85639608.1706506,0.0,41268058.04318448,0.0,65103032.42304658,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,376199760.4309782,0.0,35233267.594637479,62010550.96656194 - 01/05 24:00:00,76317030.96941227,0.0,91019908.22776988,0.0,45844924.138677109,0.0,70847600.52349654,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,359480516.26985946,0.0,35233267.594637479,46507913.22492146 - 01/06 01:00:00,86726117.19321846,0.0,101471793.34208775,0.0,55140487.933852899,0.0,82449068.25559303,0.0,2517.4220429791564,2478.0113312716996,2481.2045017974016,2986.8251580876706,363455933.6476414,0.0,21139960.556782485,23253956.61246073 - 01/06 02:00:00,47544889.668395448,0.0,61310884.560037288,0.0,21541628.006268726,0.0,38819926.04520463,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,188016348.18372906,0.0,14093307.03785499,0.0 - 01/06 03:00:00,76281168.31982906,0.0,90100482.5370378,0.0,46065193.19808812,0.0,71181213.20151247,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,302396925.7979062,0.0,14093307.03785499,0.0 - 01/06 04:00:00,79907403.59821685,0.0,93568339.04727407,0.0,49529985.446982387,0.0,75502253.74257863,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,317239711.48421207,0.0,14093307.03785499,0.0 - 01/06 05:00:00,81797194.66368807,0.0,95280799.75852368,0.0,51416755.56956105,0.0,77480082.12300486,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,324706561.76393786,0.0,14093307.03785499,0.0 - 01/06 06:00:00,82668016.26405227,0.0,95949475.72141975,0.0,52436589.472276199,0.0,78426839.78231848,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,328212650.88922688,0.0,14093307.03785499,0.0 - 01/06 07:00:00,80369484.38261067,0.0,93721196.80516353,0.0,50131755.67405189,0.0,75587087.84962255,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,318541254.36060878,0.0,14093307.03785499,15502637.741640486 - 01/06 08:00:00,79094750.86020597,0.0,96989881.00480595,0.0,50765285.73576695,0.0,76771369.18517266,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,322390155.3273903,0.0,56373228.15141996,38756594.35410121 - 01/06 09:00:00,54924552.44524279,0.0,94159697.27806944,0.0,50803375.834169778,0.0,76413796.08138643,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,351497501.25416037,0.0,56373228.15141996,38756594.35410121 - 01/06 10:00:00,46055903.817508939,0.0,93639168.7758752,0.0,56357550.72816107,0.0,81871696.58992376,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,390929720.680137,0.0,28186614.07570998,0.0 - 01/06 11:00:00,38040992.85672537,0.0,90505463.5729892,0.0,55471649.73685642,0.0,80652725.01091762,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,377847409.79324409,0.0,28186614.07570998,0.0 - 01/06 12:00:00,55319954.55751462,0.0,92772478.83009373,0.0,56820447.95207543,0.0,82615600.73406193,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,362979534.48424938,0.0,28186614.07570998,0.0 - 01/06 13:00:00,77159041.04569349,0.0,102176529.30958785,0.0,59483362.21330801,0.0,87511366.74190793,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,401914341.0943872,0.0,28186614.07570998,0.0 - 01/06 14:00:00,85553146.60391222,0.0,106255279.47651705,0.0,60314807.06776403,0.0,89447595.39574817,0.0,7600.3420852062,7481.357312019881,7490.997804522686,9017.51576120379,455295595.2105706,0.0,28186614.07570998,0.0 - 01/06 15:00:00,90942798.52265062,0.0,108860678.532197,0.0,61311345.09334738,0.0,90901100.7220303,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,503648945.0923975,0.0,28186614.07570998,0.0 - 01/06 16:00:00,93871887.05925069,0.0,110309768.31041256,0.0,61774908.857575,0.0,91533860.03047909,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,547333037.6457185,0.0,28186614.07570998,0.0 - 01/06 17:00:00,93757748.53846565,0.0,109338058.97993829,0.0,60481930.637663189,0.0,89918773.28145677,0.0,15224.850449625861,14986.502575643919,15005.814213853158,18063.70389021076,581307647.5031252,0.0,35233267.594637479,0.0 - 01/06 18:00:00,97474387.60079886,0.0,112517599.941389,0.0,63438838.52189499,0.0,93517231.1420336,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,632305846.0949179,0.0,14093307.03785499,0.0 - 01/06 19:00:00,82174171.83510833,0.0,96276030.52715466,0.0,50000041.63564718,0.0,76200898.95499444,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,456284165.17507687,0.0,63419881.67034747,0.0 - 01/06 20:00:00,63651400.82052127,0.0,76951835.78909377,0.0,33288761.195826726,0.0,55011795.53418639,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,342954901.2682447,0.0,63419881.67034747,69761869.8373822 - 01/06 21:00:00,65840903.21313944,0.0,79659878.7773597,0.0,35165484.30026503,0.0,57483016.573071029,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,314183354.8162463,0.0,49326574.63249246,69761869.8373822 - 01/06 22:00:00,67506309.56991208,0.0,81100657.15838117,0.0,36892278.52640244,0.0,59494535.88298776,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,321140147.8612741,0.0,35233267.594637479,69761869.8373822 - 01/06 23:00:00,67359223.4679311,0.0,80463009.17978963,0.0,37079243.53170265,0.0,59442570.38774434,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,320580518.3074214,0.0,35233267.594637479,62010550.96656194 - 01/06 24:00:00,69766105.78958115,0.0,82577129.64277849,0.0,39612363.92535533,0.0,62346569.66342884,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,330538640.7613974,0.0,35233267.594637479,46507913.22492146 - 01/07 01:00:00,76809582.59909962,0.0,89225628.99579899,0.0,46865380.56941298,0.0,70902958.29880615,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,321921786.33324459,0.0,21139960.556782485,23253956.61246073 - 01/07 02:00:00,34547304.43717663,0.0,46062266.58602732,0.0,10869052.472369554,0.0,25599665.571227038,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,136137407.00186397,0.0,14093307.03785499,0.0 - 01/07 03:00:00,61598838.68687877,0.0,72667589.78309353,0.0,35202180.89090642,0.0,55509587.63683343,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,244014788.67860986,0.0,14093307.03785499,0.0 - 01/07 04:00:00,65061881.2361209,0.0,75896084.54947242,0.0,38392666.222191069,0.0,59675473.6696887,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,258010367.01627327,0.0,14093307.03785499,0.0 - 01/07 05:00:00,70481647.94750595,0.0,81684297.88005786,0.0,43058963.359309639,0.0,65517269.9083889,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,279604942.19788828,0.0,14093307.03785499,0.0 - 01/07 06:00:00,75782977.02226773,0.0,87350274.11205109,0.0,47481394.75534186,0.0,71143896.69759144,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,300527411.12869086,0.0,14093307.03785499,0.0 - 01/07 07:00:00,76572109.59300617,0.0,88509438.34952079,0.0,47625204.336959768,0.0,71520329.98311936,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,359027048.53644636,0.0,14093307.03785499,15502637.741640486 - 01/07 08:00:00,79123407.07952239,0.0,96246562.14918255,0.0,50919171.24743492,0.0,76373973.5788653,0.0,19954.10685172838,19641.721586529617,19667.031949582703,23674.78608449023,601238641.3553964,0.0,56373228.15141996,38756594.35410121 - 01/07 09:00:00,63332402.1261212,0.0,99711304.26273129,0.0,55679272.570004608,0.0,82437382.85157055,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.00205521031,561853544.694356,0.0,56373228.15141996,38756594.35410121 - 01/07 10:00:00,70570255.5239749,0.0,108085255.09120724,0.0,67157298.4912435,0.0,95909372.33863659,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,527590426.14419355,0.0,28186614.07570998,0.0 - 01/07 11:00:00,77548148.7988537,0.0,112245257.81912321,0.0,70106886.95316732,0.0,100057859.47657185,0.0,9915.041662468222,9759.819835593087,9772.39635961535,11763.81845211033,508318027.76294919,0.0,28186614.07570998,0.0 - 01/07 12:00:00,79436280.39688528,0.0,112830216.70041992,0.0,71080975.27321653,0.0,101457005.39647402,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,438841988.83327957,0.0,28186614.07570998,0.0 - 01/07 13:00:00,76899533.49809838,0.0,112260485.68592602,0.0,70873000.96360915,0.0,99986980.38586857,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,434057511.599786,0.0,28186614.07570998,0.0 - 01/07 14:00:00,70898992.18525149,0.0,109487360.58233118,0.0,68845534.32166647,0.0,97388488.68603328,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,420800313.13289907,0.0,28186614.07570998,0.0 - 01/07 15:00:00,44958840.696636158,0.0,100182763.30136064,0.0,62156627.06351109,0.0,88321569.2144225,0.0,7453.058558288884,7336.37953619217,7345.833210033248,8842.769478674252,407140747.09540918,0.0,28186614.07570998,0.0 - 01/07 16:00:00,59150436.89785543,0.0,104230489.79095185,0.0,62027563.55839683,0.0,90119276.92264992,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,500977610.56389549,0.0,28186614.07570998,0.0 - 01/07 17:00:00,94936006.85279116,0.0,120386522.65360809,0.0,70784650.45987918,0.0,102607419.86951207,0.0,12370.005842494198,12176.35109340764,12192.041564605817,14676.539739967253,573808377.5015001,0.0,35233267.594637479,0.0 - 01/07 18:00:00,102880652.9276065,0.0,125444116.51913879,0.0,75285581.65497914,0.0,108048482.59258759,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,670179682.2901852,0.0,14093307.03785499,0.0 - 01/07 19:00:00,90036419.28817931,0.0,111667310.2864921,0.0,61746733.480861019,0.0,91626679.21664103,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,613597990.8680465,0.0,63419881.67034747,0.0 - 01/07 20:00:00,75892269.01523324,0.0,96835788.22678657,0.0,47081970.89837313,0.0,73856459.95379697,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,441741510.22675767,0.0,63419881.67034747,69761869.8373822 - 01/07 21:00:00,80541795.23288274,0.0,101333035.42787814,0.0,50073385.63930409,0.0,78068947.34919435,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,458092185.7818271,0.0,49326574.63249246,69761869.8373822 - 01/07 22:00:00,87213358.73245065,0.0,108199405.86789677,0.0,54683384.88907383,0.0,84511902.62202816,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,408471151.7102702,0.0,35233267.594637479,69761869.8373822 - 01/07 23:00:00,92646055.95129158,0.0,113606341.88586024,0.0,58346971.516404788,0.0,89583704.80022577,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,427897955.17203757,0.0,35233267.594637479,62010550.96656194 - 01/07 24:00:00,99729310.91420663,0.0,120605749.84487747,0.0,63726855.22138408,0.0,96657580.56740278,0.0,2457.1634278000549,2418.6960759544606,2421.8128127195038,2915.3306113904188,417486307.0881829,0.0,35233267.594637479,46507913.22492146 - 01/08 01:00:00,110042798.16965108,0.0,130457397.13208342,0.0,72797308.22686021,0.0,107827555.21874134,0.0,2457.1634278000549,2418.6960759544606,2421.8128127195038,2915.3306113904188,457891869.2876481,0.0,21139960.556782485,23253956.61246073 - 01/08 02:00:00,68759540.58132567,0.0,87239259.4793021,0.0,36152117.09380664,0.0,61117992.79229444,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.665305695209,271652315.21688488,0.0,14093307.03785499,0.0 - 01/08 03:00:00,98161777.6335387,0.0,116473645.08311118,0.0,62063906.64833236,0.0,94647530.63693986,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,389691805.5715755,0.0,14093307.03785499,0.0 - 01/08 04:00:00,100459630.06445807,0.0,118139681.69641836,0.0,64881316.7765875,0.0,97241051.44474426,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,399066625.5518616,0.0,14093307.03785499,0.0 - 01/08 05:00:00,102469674.94655258,0.0,119676311.7493793,0.0,66914130.46940431,0.0,99281089.85912767,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,406639178.098589,0.0,14093307.03785499,0.0 - 01/08 06:00:00,104109166.84435119,0.0,121129652.36928603,0.0,68409095.07559064,0.0,100931638.51164416,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,412877523.8749972,0.0,14093307.03785499,0.0 - 01/08 07:00:00,100825223.8752718,0.0,117480895.90999867,0.0,65291926.05379189,0.0,96828316.99106872,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,453806145.10874459,0.0,14093307.03785499,15502637.741640486 - 01/08 08:00:00,102897355.92243433,0.0,122061175.0666452,0.0,67479782.14308337,0.0,99726274.2349556,0.0,19616.18260656554,19309.08760846451,19333.969338685616,23273.851866965975,685683716.4815724,0.0,56373228.15141996,38756594.35410121 - 01/08 09:00:00,98031699.24095494,0.0,129243820.15858108,0.0,74847374.71845043,0.0,108565981.29525604,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,667518113.3883896,0.0,56373228.15141996,38756594.35410121 - 01/08 10:00:00,92898127.04450849,0.0,132681339.24197807,0.0,81642349.79086086,0.0,116457180.42837146,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,607128452.2022525,0.0,28186614.07570998,0.0 - 01/08 11:00:00,75004080.32645348,0.0,127692444.69123511,0.0,79721339.90348459,0.0,113817961.03358117,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,542995390.5119813,0.0,28186614.07570998,0.0 - 01/08 12:00:00,61465046.47559412,0.0,124128603.88633953,0.0,78866770.30325158,0.0,112399723.56662709,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,450393765.31243637,0.0,28186614.07570998,0.0 - 01/08 13:00:00,65949464.01839075,0.0,124767778.88026968,0.0,78539322.72171194,0.0,109549380.3266873,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,452185728.2256731,0.0,28186614.07570998,0.0 - 01/08 14:00:00,68357396.28346594,0.0,122586723.12343462,0.0,76508868.4921394,0.0,107616312.62361416,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,448602921.6032781,0.0,28186614.07570998,0.0 - 01/08 15:00:00,64578790.66973113,0.0,120765354.69493252,0.0,73275279.0253776,0.0,104620524.21303723,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,473540380.2240144,0.0,28186614.07570998,0.0 - 01/08 16:00:00,76241829.78868415,0.0,124381686.26700217,0.0,73019859.30878122,0.0,106046354.94232108,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,563523783.0083485,0.0,28186614.07570998,0.0 - 01/08 17:00:00,109802397.52608139,0.0,139619887.60970409,0.0,81197990.69196405,0.0,117714355.25657062,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,631784086.7808539,0.0,35233267.594637479,0.0 - 01/08 18:00:00,119177851.43586006,0.0,145601647.65059708,0.0,86237086.35184238,0.0,124347196.94340305,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,731535377.4194543,0.0,14093307.03785499,0.0 - 01/08 19:00:00,109360629.18354382,0.0,134886605.20055834,0.0,74231978.94203399,0.0,110330398.56277617,0.0,17075.4323529404,16808.113274036357,16829.77224355841,20259.348677439386,684311211.4616207,0.0,63419881.67034747,0.0 - 01/08 20:00:00,99771039.62544331,0.0,124752267.96478394,0.0,62563227.81340979,0.0,96796063.60176458,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,529163720.8475468,0.0,63419881.67034747,69761869.8373822 - 01/08 21:00:00,106411995.97143214,0.0,130685258.007227,0.0,67263867.20669793,0.0,102929826.69130081,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,552237421.0711887,0.0,49326574.63249246,69761869.8373822 - 01/08 22:00:00,111686085.85945295,0.0,135294813.8117363,0.0,71097043.31113036,0.0,107858098.43225736,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,498409278.0118424,0.0,35233267.594637479,69761869.8373822 - 01/08 23:00:00,115547280.80726205,0.0,138475962.28306089,0.0,73874836.98480119,0.0,111322667.57079648,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,511490190.9599545,0.0,35233267.594637479,62010550.96656194 - 01/08 24:00:00,122000497.13118609,0.0,144697992.34984399,0.0,78925296.47786471,0.0,117839778.46275145,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,499512144.4038118,0.0,35233267.594637479,46507913.22492146 - 01/09 01:00:00,131403112.34121597,0.0,153532016.81357346,0.0,87515669.34342699,0.0,128241492.55604424,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,536740871.0364262,0.0,21139960.556782485,23253956.61246073 - 01/09 02:00:00,91016384.37612868,0.0,111070855.60707838,0.0,52017257.01309456,0.0,83554960.90406746,0.0,1201.0793117485119,1182.2761910619648,1183.7996746065704,1425.0347553736675,355631341.6584157,0.0,14093307.03785499,0.0 - 01/09 03:00:00,120840639.94935572,0.0,141406635.47131527,0.0,77970620.97674015,0.0,116675067.72245357,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,474820587.28519049,0.0,14093307.03785499,0.0 - 01/09 04:00:00,123121836.78217225,0.0,143110373.61341549,0.0,80646549.95580963,0.0,119234709.8645379,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,484041093.381261,0.0,14093307.03785499,0.0 - 01/09 05:00:00,125261033.79647842,0.0,145277585.62659214,0.0,82493728.96620621,0.0,121334373.97960997,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,492294345.53421249,0.0,14093307.03785499,0.0 - 01/09 06:00:00,127538366.11670928,0.0,147662415.68229006,0.0,84446839.93806546,0.0,123364293.96792257,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,500885735.56374076,0.0,14093307.03785499,0.0 - 01/09 07:00:00,125801990.61069718,0.0,145767286.20463259,0.0,82548555.17566999,0.0,120951737.1236445,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,546564848.5496578,0.0,14093307.03785499,15502637.741640486 - 01/09 08:00:00,125248931.95306809,0.0,151558209.98274759,0.0,84697194.4715082,0.0,124209889.58544801,0.0,19112.40962230825,18813.20128425452,18837.444014332814,22676.144451341726,771695343.7328262,0.0,56373228.15141996,38756594.35410121 - 01/09 09:00:00,93522971.34635487,0.0,148576423.21443136,0.0,84181629.13484636,0.0,123323402.76616994,0.0,16773.698637059948,16511.103255766382,16532.379497564714,19901.353141431257,700591150.7763627,0.0,56373228.15141996,38756594.35410121 - 01/09 10:00:00,73646574.53068197,0.0,149235070.97831089,0.0,89678040.98637297,0.0,129163328.2193177,0.0,12010.79311748512,11822.761910619647,11837.996746065704,14250.347553736674,621441852.2951492,0.0,28186614.07570998,0.0 - 01/09 11:00:00,57733964.698683898,0.0,147346828.45685498,0.0,90167167.64994419,0.0,129444628.25954899,0.0,9659.681133560003,9508.457023402389,9520.709640785071,11460.842932271382,569231475.6931,0.0,28186614.07570998,0.0 - 01/09 12:00:00,48168650.416787389,0.0,146638014.80370883,0.0,91574284.80092705,0.0,131063503.47955859,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,489917690.0982473,0.0,28186614.07570998,0.0 - 01/09 13:00:00,37339493.09321169,0.0,143878791.78584809,0.0,89414759.81716155,0.0,122570925.53459753,0.0,4867.856901386803,4791.649693497785,4797.824223201373,5775.526395973954,466042256.20143458,0.0,28186614.07570998,0.0 - 01/09 14:00:00,32126759.293084429,0.0,127622073.32030384,0.0,80693944.32063169,0.0,110854334.09200973,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,424676893.3046431,0.0,28186614.07570998,0.0 - 01/09 15:00:00,40433307.03655869,0.0,119874901.6970155,0.0,73152762.92363093,0.0,103757125.16423774,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,447518528.44237878,0.0,28186614.07570998,0.0 - 01/09 16:00:00,65847788.08204066,0.0,124622526.05008072,0.0,73179741.47160129,0.0,106261317.79225685,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,553745426.0975394,0.0,28186614.07570998,0.0 - 01/09 17:00:00,102185755.40981117,0.0,138538806.64987067,0.0,80806649.15802,0.0,117105970.94032724,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,622471234.859589,0.0,35233267.594637479,0.0 - 01/09 18:00:00,109756638.30331153,0.0,141363206.91447566,0.0,84003068.31296496,0.0,120801384.68220346,0.0,17200.143994600385,16930.87253168122,16952.689689036524,20407.314279732927,713291971.9951395,0.0,14093307.03785499,0.0 - 01/09 19:00:00,97626197.9152667,0.0,127371638.3576677,0.0,70340583.51498431,0.0,104164134.27461405,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,656331792.0376799,0.0,63419881.67034747,0.0 - 01/09 20:00:00,86369748.5484382,0.0,114881855.2470442,0.0,56625854.89829336,0.0,88053525.46491245,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,492998226.3199361,0.0,63419881.67034747,69761869.8373822 - 01/09 21:00:00,89882269.3428106,0.0,116885227.2970777,0.0,58432340.98546405,0.0,90412867.48343995,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,503042467.1453026,0.0,49326574.63249246,69761869.8373822 - 01/09 22:00:00,92018001.4339608,0.0,117263886.01952817,0.0,59525069.44262848,0.0,91563975.44191098,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,434408443.4043123,0.0,35233267.594637479,69761869.8373822 - 01/09 23:00:00,93098525.12817839,0.0,116811877.42211809,0.0,59742741.328607168,0.0,91611947.5060535,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,435445028.74257376,0.0,35233267.594637479,62010550.96656194 - 01/09 24:00:00,96285264.37233755,0.0,118676378.89564497,0.0,61993773.0003177,0.0,94191018.68605201,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,408320083.8941784,0.0,35233267.594637479,46507913.22492146 - 01/10 01:00:00,103466226.27050075,0.0,124562046.36794278,0.0,68618457.43082392,0.0,101915544.08347821,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,435804157.4218782,0.0,21139960.556782485,23253956.61246073 - 01/10 02:00:00,60447417.10786973,0.0,78925203.76849728,0.0,31612803.67388557,0.0,53554186.29698376,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,243160552.48180268,0.0,14093307.03785499,0.0 - 01/10 03:00:00,86334349.09223502,0.0,104108608.58994892,0.0,53714995.37496078,0.0,83185329.88274583,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,346043274.5083506,0.0,14093307.03785499,0.0 - 01/10 04:00:00,85880940.39448145,0.0,102895261.50850967,0.0,54736537.96495208,0.0,83124223.01103939,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,345336954.4474426,0.0,14093307.03785499,0.0 - 01/10 05:00:00,89804001.89566134,0.0,106691712.42707558,0.0,57982103.04685722,0.0,87060009.84522832,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,360124651.68473568,0.0,14093307.03785499,0.0 - 01/10 06:00:00,92635689.96304608,0.0,109448773.84244788,0.0,60163254.07898209,0.0,89777348.86720534,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,370611891.2215946,0.0,14093307.03785499,0.0 - 01/10 07:00:00,91860679.23200134,0.0,108475750.27571275,0.0,58925355.825643319,0.0,88270256.70014106,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,421569553.09978237,0.0,14093307.03785499,15502637.741640486 - 01/10 08:00:00,99136476.93731718,0.0,117010765.32065162,0.0,63574523.96763055,0.0,94696001.68174258,0.0,19792.009347990723,19482.16174945223,19507.266503369305,23482.463583947607,670567812.1724775,0.0,56373228.15141996,38756594.35410121 - 01/10 09:00:00,107559628.8421091,0.0,126828881.98980308,0.0,73951032.53114106,0.0,106899512.93463186,0.0,17351.322909319388,17079.6847122879,17101.693629326863,20586.682291193076,674868837.0493431,0.0,56373228.15141996,38756594.35410121 - 01/10 10:00:00,108621012.02721577,0.0,128482489.82576657,0.0,79834857.37426509,0.0,113299171.19346984,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,615687373.8147588,0.0,28186614.07570998,0.0 - 01/10 11:00:00,102036122.7380596,0.0,123339892.25944385,0.0,76663110.36065,0.0,109350692.06444484,0.0,9937.411411051846,9781.839381589563,9794.44428004433,11790.359304899002,560084413.1819034,0.0,28186614.07570998,0.0 - 01/10 12:00:00,97106242.83498228,0.0,119083937.25214765,0.0,74040706.61984048,0.0,105941988.99531497,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,470656642.24055066,0.0,28186614.07570998,0.0 - 01/10 13:00:00,94792901.76470329,0.0,117013971.85635239,0.0,72573778.22316395,0.0,103632924.80463651,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,462497343.18712136,0.0,28186614.07570998,0.0 - 01/10 14:00:00,93430011.1235224,0.0,114455225.16438094,0.0,70324711.68381548,0.0,100884370.44571427,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,453894284.6912734,0.0,28186614.07570998,0.0 - 01/10 15:00:00,94594317.83449826,0.0,113793127.97905949,0.0,68863742.65708623,0.0,99234088.41037523,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,488875654.7759798,0.0,28186614.07570998,0.0 - 01/10 16:00:00,98485652.2494486,0.0,116214449.43565814,0.0,69006896.94860088,0.0,99887085.95631424,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,571282770.0044098,0.0,28186614.07570998,0.0 - 01/10 17:00:00,101105914.32921639,0.0,117696029.42852907,0.0,68539832.22099126,0.0,99646289.61123945,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,574676751.004364,0.0,35233267.594637479,0.0 - 01/10 18:00:00,103126575.43238011,0.0,119095897.40334162,0.0,70209693.5793114,0.0,101459229.94426647,0.0,17589.0072895276,17313.648099183974,17335.958501927096,20868.685735339546,657077675.0128212,0.0,14093307.03785499,0.0 - 01/10 19:00:00,89291098.18828848,0.0,105212425.97035836,0.0,56193664.47807113,0.0,84551387.84078947,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,598012736.0576503,0.0,63419881.67034747,0.0 - 01/10 20:00:00,73130736.42918624,0.0,88745468.76286817,0.0,40579678.837802369,0.0,65368171.3708549,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,418497923.092269,0.0,63419881.67034747,69761869.8373822 - 01/10 21:00:00,69837898.91692852,0.0,84593566.30419474,0.0,38596076.3584639,0.0,62275749.049427229,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,407177381.3394153,0.0,49326574.63249246,69761869.8373822 - 01/10 22:00:00,65151466.58701622,0.0,79731296.41465512,0.0,35014847.171110499,0.0,57699383.56385372,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,314278693.0742115,0.0,35233267.594637479,69761869.8373822 - 01/10 23:00:00,67782215.71182873,0.0,81413609.07550156,0.0,36873229.60374107,0.0,59812033.526810068,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,322027454.6414721,0.0,35233267.594637479,62010550.96656194 - 01/10 24:00:00,73314208.0654638,0.0,86783935.86141172,0.0,41739164.18604145,0.0,65837152.14585851,0.0,2544.4696551515264,2504.635508029784,2507.862986524712,3018.9161174593575,305747643.62057086,0.0,35233267.594637479,46507913.22492146 - 01/11 01:00:00,82461050.9676499,0.0,95919091.97119372,0.0,50493376.71983035,0.0,76460233.16283153,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,343302275.4991058,0.0,21139960.556782485,23253956.61246073 - 01/11 02:00:00,43405550.09469449,0.0,56204392.441586259,0.0,17396972.34109524,0.0,34229789.19537282,0.0,1264.6357106032518,1244.8376026361994,1246.4417029451284,1500.4419965179218,170159589.3184778,0.0,14093307.03785499,0.0 - 01/11 03:00:00,72038412.87998572,0.0,84405742.90214847,0.0,41946650.061095457,0.0,65669712.17502119,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,282956528.46422329,0.0,14093307.03785499,0.0 - 01/11 04:00:00,76212114.84185487,0.0,88161655.824292,0.0,45798180.10358644,0.0,70236037.70335546,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,299242221.9345334,0.0,14093307.03785499,0.0 - 01/11 05:00:00,78455641.52316693,0.0,90287600.04640493,0.0,47978233.76628493,0.0,72643060.10683698,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,308198768.90413847,0.0,14093307.03785499,0.0 - 01/11 06:00:00,80215331.90270347,0.0,92194036.07230523,0.0,49735086.868587847,0.0,74620935.48523453,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,315564410.23265406,0.0,14093307.03785499,0.0 - 01/11 07:00:00,78719356.80490655,0.0,91556302.05907695,0.0,48377819.24687031,0.0,72995634.09595204,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,366724586.3725611,0.0,14093307.03785499,15502637.741640486 - 01/11 08:00:00,84457931.38139105,0.0,100116937.00394604,0.0,52607665.44519711,0.0,78986581.6790252,0.0,20029.769395586467,19716.199619148774,19741.60595474871,23764.55680456099,615876789.8961212,0.0,56373228.15141996,38756594.35410121 - 01/11 09:00:00,90321907.03569938,0.0,113112342.46329192,0.0,64756599.84566538,0.0,94679061.89113364,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,623085453.8145741,0.0,56373228.15141996,38756594.35410121 - 01/11 10:00:00,101800650.52648776,0.0,125958305.964782,0.0,78009543.43039796,0.0,110915276.80638388,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,600970979.2736895,0.0,28186614.07570998,0.0 - 01/11 11:00:00,110318594.39045322,0.0,130891198.41010154,0.0,81347724.33936122,0.0,115831251.50909248,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,585148333.2062354,0.0,28186614.07570998,0.0 - 01/11 12:00:00,106802013.36129996,0.0,132225575.36492899,0.0,82385036.12783581,0.0,117608743.75077498,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,512213252.90134027,0.0,28186614.07570998,0.0 - 01/11 13:00:00,96464568.92935263,0.0,132510672.70840077,0.0,82274837.14506057,0.0,116600661.20762868,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,501230522.2690561,0.0,28186614.07570998,0.0 - 01/11 14:00:00,103728265.84589172,0.0,134245122.9976204,0.0,82207920.4096677,0.0,117547581.93900986,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,511108673.47080317,0.0,28186614.07570998,0.0 - 01/11 15:00:00,68441733.06205042,0.0,123794521.34028536,0.0,75822949.46684243,0.0,108361294.71079043,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,486490171.9978888,0.0,28186614.07570998,0.0 - 01/11 16:00:00,82895544.97422958,0.0,128585679.11078632,0.0,76315015.2874257,0.0,111036884.55684909,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,581812834.670542,0.0,28186614.07570998,0.0 - 01/11 17:00:00,119581273.90490355,0.0,145459217.71073563,0.0,85257861.8362306,0.0,123938027.77319438,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,657216091.9663155,0.0,35233267.594637479,0.0 - 01/11 18:00:00,129442640.87930966,0.0,153015465.49229209,0.0,90902298.84203157,0.0,131203453.647104,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,759497859.7578923,0.0,14093307.03785499,0.0 - 01/11 19:00:00,119049770.15905775,0.0,142065292.68515665,0.0,78998728.08013517,0.0,117077196.92201448,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,711432951.0701182,0.0,63419881.67034747,0.0 - 01/11 20:00:00,108625257.22385593,0.0,131392917.53861454,0.0,67125062.89817678,0.0,103106073.00411603,0.0,9659.681133560003,9508.457023402389,9520.709640785071,11460.842932271382,554788197.2928312,0.0,63419881.67034747,69761869.8373822 - 01/11 21:00:00,114763132.09081283,0.0,137251021.64606706,0.0,71749229.78936087,0.0,109150476.8583409,0.0,9636.653389793966,9485.78978326083,9498.013191590995,11433.521393315998,577108180.3132441,0.0,49326574.63249246,69761869.8373822 - 01/11 22:00:00,120636419.63469573,0.0,142929408.10939534,0.0,76289365.93512883,0.0,115033520.61602026,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,526776249.32742646,0.0,35233267.594637479,69761869.8373822 - 01/11 23:00:00,125574578.61860886,0.0,148003484.68961967,0.0,79829720.89085239,0.0,119882428.44968519,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,545000705.3100691,0.0,35233267.594637479,62010550.96656194 - 01/11 24:00:00,132166233.12842058,0.0,154750081.22855533,0.0,85077671.8152492,0.0,126759117.56672596,0.0,2389.051202788531,2351.650160531815,2354.6805017916019,2834.518056417716,534500743.45645788,0.0,35233267.594637479,46507913.22492146 - 01/12 01:00:00,142934116.73209445,0.0,165399153.21145738,0.0,94769091.13655959,0.0,138753111.5688006,0.0,2381.761392685993,2344.474473766345,2347.4955684213275,2825.868975000213,577494034.124458,0.0,21139960.556782485,23253956.61246073 - 01/12 02:00:00,101607482.67240516,0.0,122012859.54814638,0.0,58580915.68438175,0.0,93195210.65856862,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,393169751.5370661,0.0,14093307.03785499,0.0 - 01/12 03:00:00,130817344.9053998,0.0,151592685.4927357,0.0,84502353.55033499,0.0,125801368.63176726,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,510487035.55380198,0.0,14093307.03785499,0.0 - 01/12 04:00:00,133921153.63976656,0.0,154510166.64056099,0.0,87711081.9780866,0.0,129314939.12921357,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,523174785.3543768,0.0,14093307.03785499,0.0 - 01/12 05:00:00,135935391.94581677,0.0,156376430.43849654,0.0,89696390.80270124,0.0,131475447.01456276,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,531201104.1683263,0.0,14093307.03785499,0.0 - 01/12 06:00:00,136998868.91367484,0.0,157267801.43840949,0.0,90798379.83652272,0.0,132585374.05225855,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,535367868.20761469,0.0,14093307.03785499,0.0 - 01/12 07:00:00,134127850.65358348,0.0,154140960.64834709,0.0,88179045.63941744,0.0,129108477.09334049,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,523273778.00143757,0.0,14093307.03785499,15502637.741640486 - 01/12 08:00:00,133629020.99296102,0.0,159708853.09082637,0.0,90674695.17348194,0.0,132676165.96815232,0.0,4723.7206571421,4649.769929045323,4655.761632191047,5604.514244196306,587370294.4906908,0.0,56373228.15141996,38756594.35410121 - 01/12 09:00:00,100916123.60777416,0.0,156925930.85461907,0.0,89564316.61658208,0.0,131377992.87881218,0.0,11840.748411249897,11655.379285982344,11670.398431832165,14048.596000794068,655958803.625278,0.0,56373228.15141996,38756594.35410121 - 01/12 10:00:00,81665574.42667787,0.0,157884262.6499376,0.0,94439774.90191597,0.0,136333968.91860614,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,648056410.632779,0.0,28186614.07570998,0.0 - 01/12 11:00:00,67339945.61559414,0.0,157850870.06973268,0.0,95898007.26591724,0.0,138025620.79629875,0.0,11908.806963429963,11722.372368831724,11737.477842106638,14129.344875001067,637307251.1252728,0.0,28186614.07570998,0.0 - 01/12 12:00:00,60996024.95807868,0.0,159824043.91366325,0.0,98319151.46039185,0.0,140853619.730104,0.0,7167.153608365593,7054.950481595443,7064.041505374807,8503.554169253148,567235759.2147582,0.0,28186614.07570998,0.0 - 01/12 13:00:00,54773391.5023909,0.0,157148294.7903879,0.0,96225869.56489459,0.0,133012696.45207265,0.0,7206.475870491073,7093.657146371787,7102.798047639422,8550.208532242006,548991554.8580254,0.0,28186614.07570998,0.0 - 01/12 14:00:00,51904941.92256561,0.0,145945340.83593688,0.0,90120822.14674169,0.0,125160864.08905538,0.0,7227.490042345475,7114.342337445621,7123.509893693246,8575.141044987,521277708.9407964,0.0,28186614.07570998,0.0 - 01/12 15:00:00,57501085.42883986,0.0,139667790.36813448,0.0,83731959.86839772,0.0,119260174.03264213,0.0,7244.760850170003,7131.342767551789,7140.532230588806,8595.632199203537,508565174.6690651,0.0,28186614.07570998,0.0 - 01/12 16:00:00,78639582.75689706,0.0,140951437.3074721,0.0,82019751.43876826,0.0,119272344.75166072,0.0,16952.110978744815,16686.722518959385,16708.225064103426,20113.032574422585,674539444.3452269,0.0,28186614.07570998,0.0 - 01/12 17:00:00,119170943.23515415,0.0,156934690.92782364,0.0,90988129.5015846,0.0,131983384.51272552,0.0,21734.28255051001,21394.02830265537,21421.596691766415,25786.89659761061,824289643.0904406,0.0,35233267.594637479,0.0 - 01/12 18:00:00,129022293.41654983,0.0,162438145.88756604,0.0,95425127.22299764,0.0,137590703.91853363,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,777419322.0447658,0.0,14093307.03785499,0.0 - 01/12 19:00:00,119613104.82619831,0.0,150932648.8952367,0.0,83833018.86232449,0.0,123625438.74237785,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,730947262.925256,0.0,63419881.67034747,0.0 - 01/12 20:00:00,106900996.86974398,0.0,136360004.60844154,0.0,69592592.76743207,0.0,106350373.44770997,0.0,14489.521700340007,14262.685535103577,14281.064461177612,17191.264398407075,636012297.6354293,0.0,63419881.67034747,69761869.8373822 - 01/12 21:00:00,110725589.66727981,0.0,138471342.34133793,0.0,72095924.68331042,0.0,109310890.1784873,0.0,12074.601416950005,11885.571279252983,11900.887050981342,14326.053665339228,611277355.1555002,0.0,49326574.63249246,69761869.8373822 - 01/12 22:00:00,113909571.12288104,0.0,139907491.19320036,0.0,74500853.68705179,0.0,111996807.39231739,0.0,9659.681133560003,9508.457023402389,9520.709640785071,11460.842932271382,584853610.0235185,0.0,35233267.594637479,69761869.8373822 - 01/12 23:00:00,116755727.10107503,0.0,141572776.6994859,0.0,76511706.60300319,0.0,114354352.67800331,0.0,7227.490042345475,7114.342337445621,7123.509893693246,8575.141044987,557340303.0280643,0.0,35233267.594637479,62010550.96656194 - 01/12 24:00:00,122024427.76362588,0.0,146535106.75360818,0.0,80531792.97691414,0.0,119472651.40341984,0.0,4818.326694896983,4742.894891630415,4749.006595795498,5716.760696657999,540661138.8618993,0.0,35233267.594637479,46507913.22492146 - 01/13 01:00:00,130279882.60090626,0.0,153871593.6597422,0.0,88251228.43638447,0.0,128669525.71498157,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,537120810.39418,0.0,21139960.556782485,23253956.61246073 - 01/13 02:00:00,87544686.57095765,0.0,107982251.74256164,0.0,51427603.2764847,0.0,81738033.5586624,0.0,1201.0793117485119,1182.2761910619648,1183.7996746065704,1425.0347553736675,346664458.9067129,0.0,14093307.03785499,0.0 - 01/13 03:00:00,115487338.20141796,0.0,136150376.9537602,0.0,76083587.13773616,0.0,112899565.86523757,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,458592751.9161984,0.0,14093307.03785499,0.0 - 01/13 04:00:00,116377102.11940706,0.0,136336142.88291807,0.0,77794988.07977197,0.0,114058605.89820278,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,462538722.7383464,0.0,14093307.03785499,0.0 - 01/13 05:00:00,118079045.47678775,0.0,137607881.53178663,0.0,79488073.24218899,0.0,115760136.70716612,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,468862760.12325528,0.0,14093307.03785499,0.0 - 01/13 06:00:00,118828897.37155029,0.0,137968558.17197157,0.0,80417716.40179169,0.0,116548491.57231649,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,471691286.68295589,0.0,14093307.03785499,0.0 - 01/13 07:00:00,116832340.95140328,0.0,135896751.52286873,0.0,78041576.27549505,0.0,113722492.7060213,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,462420784.62111416,0.0,14093307.03785499,15502637.741640486 - 01/13 08:00:00,113512802.86338078,0.0,137114717.72056604,0.0,77745321.54208446,0.0,113403674.63361605,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,459843877.5881558,0.0,56373228.15141996,38756594.35410121 - 01/13 09:00:00,88310814.10733813,0.0,132454132.60834414,0.0,76749618.68413624,0.0,111664485.42182237,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,481652287.4189063,0.0,56373228.15141996,38756594.35410121 - 01/13 10:00:00,81898051.92330033,0.0,132092719.71544576,0.0,81511060.8758367,0.0,116744240.61681153,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,521503502.0873179,0.0,28186614.07570998,0.0 - 01/13 11:00:00,65654845.06025318,0.0,124403292.41789076,0.0,78169530.5533567,0.0,111943758.6013506,0.0,7318.042436974457,7203.477117444153,7212.759532953605,8682.578004616882,489672112.16401198,0.0,28186614.07570998,0.0 - 01/13 12:00:00,54680156.52225384,0.0,121720907.68123356,0.0,77443646.24545409,0.0,110795408.85874087,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,437832003.60418286,0.0,28186614.07570998,0.0 - 01/13 13:00:00,55898950.90503122,0.0,121519506.79250132,0.0,76476891.28706457,0.0,107031510.92983619,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,434118744.2109338,0.0,28186614.07570998,0.0 - 01/13 14:00:00,73101587.52810487,0.0,118802964.89980218,0.0,73599028.58709954,0.0,105221370.64954435,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,481025383.2854868,0.0,28186614.07570998,0.0 - 01/13 15:00:00,90577787.60732848,0.0,125746819.47732759,0.0,75372237.1041921,0.0,109315326.45750273,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,547771735.2035778,0.0,28186614.07570998,0.0 - 01/13 16:00:00,102016979.43586664,0.0,133219436.21310237,0.0,78250422.88474663,0.0,114042117.97232798,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,610978412.2025774,0.0,28186614.07570998,0.0 - 01/13 17:00:00,112941387.27258985,0.0,140358854.51301984,0.0,81096483.72583884,0.0,118489658.28359877,0.0,14674.46471387139,14444.733231257043,14463.346744368791,17410.692224253227,672462036.6845489,0.0,35233267.594637479,0.0 - 01/13 18:00:00,119078584.0393251,0.0,144847341.62986637,0.0,84820618.12584177,0.0,123148746.32112563,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,728066885.1539106,0.0,14093307.03785499,0.0 - 01/13 19:00:00,108467272.99260055,0.0,133139617.08436024,0.0,72853498.87705052,0.0,108765652.09508467,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,569985605.6063229,0.0,63419881.67034747,0.0 - 01/13 20:00:00,94697816.36266646,0.0,118304524.8170146,0.0,58343832.31986687,0.0,91076627.04546523,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,472492473.9629334,0.0,63419881.67034747,69761869.8373822 - 01/13 21:00:00,98632334.2356711,0.0,121388475.9634836,0.0,61164965.41002308,0.0,94582996.40570997,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,449148554.29350128,0.0,49326574.63249246,69761869.8373822 - 01/13 22:00:00,103830490.10222332,0.0,126130624.19639784,0.0,65041017.24723617,0.0,99586399.86978154,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,467780415.71213939,0.0,35233267.594637479,69761869.8373822 - 01/13 23:00:00,105841183.85186307,0.0,127437906.16287419,0.0,66469344.705617178,0.0,101251369.52032602,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,474379586.51929387,0.0,35233267.594637479,62010550.96656194 - 01/13 24:00:00,108937286.3245183,0.0,129795848.55397448,0.0,69260952.71567354,0.0,104439524.34739657,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,485813394.2201763,0.0,35233267.594637479,46507913.22492146 - 01/14 01:00:00,117836693.40607183,0.0,138007095.3074659,0.0,77668582.98782985,0.0,114463721.00979227,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,484572034.85941007,0.0,21139960.556782485,23253956.61246073 - 01/14 02:00:00,74516329.22542314,0.0,92663092.9862028,0.0,38981796.69017647,0.0,66089884.37264092,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,290596048.8440967,0.0,14093307.03785499,0.0 - 01/14 03:00:00,102087044.82852668,0.0,120004315.67561148,0.0,64450020.65498989,0.0,97701417.25311437,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,402587743.9818958,0.0,14093307.03785499,0.0 - 01/14 04:00:00,101690607.68038726,0.0,118569069.34459219,0.0,65450412.98715161,0.0,97666934.13465676,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,401760429.4169437,0.0,14093307.03785499,0.0 - 01/14 05:00:00,102303810.89895067,0.0,118900608.7087326,0.0,66354373.23748994,0.0,98384313.4712257,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,404326511.5865549,0.0,14093307.03785499,0.0 - 01/14 06:00:00,103025039.8410215,0.0,119833447.36124479,0.0,66915743.50362031,0.0,99076368.77523649,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,407279319.7356869,0.0,14093307.03785499,0.0 - 01/14 07:00:00,100385392.76361147,0.0,117467173.5304278,0.0,64184565.13784461,0.0,95563905.37676952,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,451315917.8269086,0.0,14093307.03785499,15502637.741640486 - 01/14 08:00:00,106552624.68071427,0.0,125014128.25708483,0.0,68140778.0412006,0.0,101011194.2510199,0.0,19705.762568019818,19397.265178911097,19422.26053493182,23380.135071754125,695578249.3030403,0.0,56373228.15141996,38756594.35410121 - 01/14 09:00:00,106353231.3415872,0.0,132958655.34494606,0.0,76674139.0974892,0.0,111014047.63038989,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,685002156.9783055,0.0,56373228.15141996,38756594.35410121 - 01/14 10:00:00,63521750.16546592,0.0,123717953.35803813,0.0,74643250.24727774,0.0,107405791.41146885,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,553946494.1793029,0.0,28186614.07570998,0.0 - 01/14 11:00:00,35821445.04659772,0.0,121075676.69318304,0.0,73900396.102725,0.0,106369267.78341662,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,485241807.7584901,0.0,28186614.07570998,0.0 - 01/14 12:00:00,29942036.987720379,0.0,121257243.12709449,0.0,75200885.75751896,0.0,107720197.00612426,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,408467660.75811067,0.0,28186614.07570998,0.0 - 01/14 13:00:00,22598888.74295462,0.0,116315235.8046166,0.0,72021312.9424425,0.0,98428205.56990099,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,384007524.8850125,0.0,28186614.07570998,0.0 - 01/14 14:00:00,20964105.5376943,0.0,102446329.88547232,0.0,64529837.28167457,0.0,88893115.47692019,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,351760306.77840188,0.0,28186614.07570998,0.0 - 01/14 15:00:00,26759158.778161639,0.0,97804629.64609924,0.0,59000741.691729437,0.0,84019170.3016742,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,379974078.31262519,0.0,28186614.07570998,0.0 - 01/14 16:00:00,44125730.95887227,0.0,100034887.15739958,0.0,57509657.140264358,0.0,84280495.00403814,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,473639455.6749622,0.0,28186614.07570998,0.0 - 01/14 17:00:00,84029790.28787527,0.0,116357204.99305733,0.0,66708853.26521218,0.0,97318402.86597686,0.0,12497.394989377714,12301.745939432274,12317.597994688338,14827.682100001863,551414167.0967223,0.0,35233267.594637479,0.0 - 01/14 18:00:00,94466495.76311863,0.0,122501419.95537615,0.0,71880930.56109679,0.0,103913647.3621498,0.0,17459.843495262332,17186.50638821341,17208.652955884863,20715.437823928944,654016080.0295837,0.0,14093307.03785499,0.0 - 01/14 19:00:00,83565184.81920555,0.0,109600537.59691759,0.0,59010727.38136866,0.0,88307075.92609218,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,601176708.6075122,0.0,63419881.67034747,0.0 - 01/14 20:00:00,68988155.73090574,0.0,93289354.43147327,0.0,43677340.90730572,0.0,69477751.10449016,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,425032534.72185549,0.0,63419881.67034747,69761869.8373822 - 01/14 21:00:00,70899479.39333922,0.0,93705177.75310129,0.0,45030068.2517555,0.0,70846740.35444513,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,430081398.3003217,0.0,49326574.63249246,69761869.8373822 - 01/14 22:00:00,73129998.5244371,0.0,94792874.92293097,0.0,46852642.391245488,0.0,72841231.77155337,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,362543666.2068074,0.0,35233267.594637479,69761869.8373822 - 01/14 23:00:00,74521632.27311538,0.0,95423279.0123926,0.0,47873126.54944815,0.0,73979299.05458611,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,366724255.4861827,0.0,35233267.594637479,62010550.96656194 - 01/14 24:00:00,77475753.69502698,0.0,97586678.77543883,0.0,50337541.20699954,0.0,76886379.13132988,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,339824089.89167287,0.0,35233267.594637479,46507913.22492146 - 01/15 01:00:00,86921793.53272747,0.0,106803861.17092929,0.0,58371525.537341218,0.0,86990027.78956507,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,376624945.11344066,0.0,21139960.556782485,23253956.61246073 - 01/15 02:00:00,49766755.11744526,0.0,68097528.85672552,0.0,24976821.231224546,0.0,44040776.37219304,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,205542852.03386284,0.0,14093307.03785499,0.0 - 01/15 03:00:00,79349127.59191045,0.0,97360564.44203316,0.0,50726656.317422319,0.0,77629895.51368439,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,323687185.4996166,0.0,14093307.03785499,0.0 - 01/15 04:00:00,82435721.32921362,0.0,99907664.98796802,0.0,53619198.86225997,0.0,80964403.21163686,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,335547930.0256448,0.0,14093307.03785499,0.0 - 01/15 05:00:00,86354551.89951037,0.0,103779162.36546424,0.0,56694109.25271289,0.0,84688933.87563847,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,350061741.73273006,0.0,14093307.03785499,0.0 - 01/15 06:00:00,91442190.09590625,0.0,108748853.67288777,0.0,60404788.100208,0.0,89682514.24215815,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,368744121.0108654,0.0,14093307.03785499,0.0 - 01/15 07:00:00,92033383.50385861,0.0,109268095.48512182,0.0,59922450.36692014,0.0,89341569.04656787,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,424280379.4207236,0.0,14093307.03785499,15502637.741640486 - 01/15 08:00:00,94826861.27504352,0.0,118356007.83510974,0.0,64087789.951705288,0.0,95742565.77014618,0.0,19565.95295182852,19259.64430834273,19284.462325825054,23214.256299004297,665780762.0180069,0.0,56373228.15141996,38756594.35410121 - 01/15 09:00:00,68872046.07227209,0.0,121447782.4992272,0.0,67663390.56656577,0.0,100509700.68994701,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,613426920.725167,0.0,56373228.15141996,38756594.35410121 - 01/15 10:00:00,56320829.72069547,0.0,128702288.86845133,0.0,77460514.4043172,0.0,111735668.9961967,0.0,12136.60683692166,11946.605992807883,11962.00041399434,14399.620729243206,555820704.2923423,0.0,28186614.07570998,0.0 - 01/15 11:00:00,45862788.738720949,0.0,132329603.15394935,0.0,81197874.93963297,0.0,116626851.57007966,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,521298240.24452808,0.0,28186614.07570998,0.0 - 01/15 12:00:00,40716593.66832508,0.0,136888266.20631285,0.0,85409289.27452761,0.0,121852646.74855258,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,457507356.8187907,0.0,28186614.07570998,0.0 - 01/15 13:00:00,36074068.93569249,0.0,140152210.85755489,0.0,86648930.4870304,0.0,118511087.37679698,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,454026858.5781473,0.0,28186614.07570998,0.0 - 01/15 14:00:00,33613151.72209151,0.0,131138077.78870753,0.0,82311437.12971722,0.0,112919920.94140443,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,432623148.5029933,0.0,28186614.07570998,0.0 - 01/15 15:00:00,39579462.65788297,0.0,125354717.52328138,0.0,76161903.21849612,0.0,107553914.53185776,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,457907426.8874418,0.0,28186614.07570998,0.0 - 01/15 16:00:00,65215150.80487547,0.0,130953268.41515792,0.0,76584261.4713905,0.0,110986270.29235476,0.0,12136.60683692166,11946.605992807883,11962.00041399434,14399.620729243206,565340353.2864602,0.0,28186614.07570998,0.0 - 01/15 17:00:00,113612827.61339444,0.0,152370029.60892535,0.0,88935030.2020688,0.0,129005007.9226578,0.0,12074.601416950005,11885.571279252983,11900.887050981342,14326.053665339228,664596503.6321313,0.0,35233267.594637479,0.0 - 01/15 18:00:00,127133136.52659433,0.0,161159314.76068545,0.0,95415654.04138278,0.0,137414186.39906676,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,773462351.6028886,0.0,14093307.03785499,0.0 - 01/15 19:00:00,118853203.97963476,0.0,150751263.55541194,0.0,83702980.04056677,0.0,123909337.04180385,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,728823157.2300693,0.0,63419881.67034747,0.0 - 01/15 20:00:00,109412596.17254621,0.0,139680613.71735729,0.0,71463082.36763758,0.0,109579387.98684947,0.0,9584.970649748542,9434.916146152222,9447.073998608408,11372.201795103576,573556665.5669963,0.0,63419881.67034747,69761869.8373822 - 01/15 21:00:00,116088589.64642191,0.0,144751509.2638627,0.0,75791255.7299272,0.0,115086154.10594088,0.0,9556.204811154124,9406.60064212726,9418.722007166407,11338.072225670863,594708067.61618,0.0,49326574.63249246,69761869.8373822 - 01/15 22:00:00,121778247.50981853,0.0,149246861.80446006,0.0,79612039.53129626,0.0,119852532.88261079,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,541984961.1631992,0.0,35233267.594637479,69761869.8373822 - 01/15 23:00:00,126652618.37402034,0.0,153642274.40995748,0.0,82687633.62511568,0.0,123645455.6971842,0.0,4763.522785371986,4688.94894753269,4694.991136842655,5651.737950000426,557905105.0573697,0.0,35233267.594637479,62010550.96656194 - 01/15 24:00:00,133403631.5030637,0.0,159956700.380216,0.0,87725525.26968205,0.0,130101373.85067873,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,546733796.9507687,0.0,35233267.594637479,46507913.22492146 - 01/16 01:00:00,143364677.80941204,0.0,169337593.7298913,0.0,96469054.85536349,0.0,140818524.97455273,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,585536417.3163478,0.0,21139960.556782485,23253956.61246073 - 01/16 02:00:00,101162792.21791686,0.0,124808306.25038344,0.0,58917365.88760397,0.0,93881423.60454941,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,396589168.69822666,0.0,14093307.03785499,0.0 - 01/16 03:00:00,129054840.95733738,0.0,152322081.76473657,0.0,83834189.41495919,0.0,125368670.56241572,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,508399063.4372218,0.0,14093307.03785499,0.0 - 01/16 04:00:00,130810544.80057232,0.0,153375411.61698739,0.0,85905436.97953284,0.0,127172534.0124133,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,515083208.14727887,0.0,14093307.03785499,0.0 - 01/16 05:00:00,131288493.20510663,0.0,153512721.4726946,0.0,86488675.39962013,0.0,127110186.16054939,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,516273896.0967241,0.0,14093307.03785499,0.0 - 01/16 06:00:00,130212725.07823816,0.0,151713332.57705293,0.0,85945603.81364301,0.0,125917454.22900982,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,511716738.8632697,0.0,14093307.03785499,0.0 - 01/16 07:00:00,126949396.81338409,0.0,148126050.74419458,0.0,82827804.10699296,0.0,121897032.2752059,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,551510776.6010804,0.0,14093307.03785499,15502637.741640486 - 01/16 08:00:00,132363062.37540324,0.0,154663326.06642203,0.0,86515114.48937065,0.0,126665228.33355156,0.0,19217.26898797619,18916.41905699144,18940.794793705125,22800.55608597868,787756871.3934925,0.0,56373228.15141996,38756594.35410121 - 01/16 09:00:00,138838844.36265639,0.0,162444338.5378471,0.0,95613021.83449395,0.0,137205598.13298915,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,786441862.7431458,0.0,56373228.15141996,38756594.35410121 - 01/16 10:00:00,135010849.94142369,0.0,160341745.12011288,0.0,98906158.38584778,0.0,140176258.57629843,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,715618103.5168461,0.0,28186614.07570998,0.0 - 01/16 11:00:00,117324920.40035224,0.0,150908715.61370517,0.0,93204509.89634964,0.0,133122629.49702023,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,640237347.3486587,0.0,28186614.07570998,0.0 - 01/16 12:00:00,102301710.31103489,0.0,145698115.77760763,0.0,90014297.17324849,0.0,128798640.14822383,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,540004647.7066153,0.0,28186614.07570998,0.0 - 01/16 13:00:00,86709175.7060784,0.0,141769011.1769508,0.0,87220656.95058127,0.0,122327486.15804863,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,511406112.27027258,0.0,28186614.07570998,0.0 - 01/16 14:00:00,80935999.85626778,0.0,133485581.06587516,0.0,81791166.049027,0.0,115403497.7407154,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,485479344.31070616,0.0,28186614.07570998,0.0 - 01/16 15:00:00,57310844.08212825,0.0,122588955.12077283,0.0,73778527.25529462,0.0,105175832.04060556,0.0,7404.519361253068,7288.600229340928,7297.992334668395,8785.179574246316,469648807.8970326,0.0,28186614.07570998,0.0 - 01/16 16:00:00,71222150.32456434,0.0,123914693.49629241,0.0,71980735.52806589,0.0,104929814.86558911,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,556705143.2115641,0.0,28186614.07570998,0.0 - 01/16 17:00:00,111012999.84874973,0.0,140717023.05984695,0.0,81105544.24872962,0.0,118026571.56643652,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,635149341.2694008,0.0,35233267.594637479,0.0 - 01/16 18:00:00,120949298.52958146,0.0,146766748.02878193,0.0,85745034.84571737,0.0,123905141.84788636,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,735368306.81586,0.0,14093307.03785499,0.0 - 01/16 19:00:00,108079680.36383128,0.0,132641207.9077031,0.0,71761926.02523235,0.0,106991120.14854764,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,677476018.0092075,0.0,63419881.67034747,0.0 - 01/16 20:00:00,94957139.01129365,0.0,118575737.75922618,0.0,57626347.66728639,0.0,89939369.05341998,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,508528355.5277366,0.0,63419881.67034747,69761869.8373822 - 01/16 21:00:00,97852351.5714405,0.0,120424641.97584635,0.0,59644656.983432579,0.0,92335703.09736108,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,517983552.82572236,0.0,49326574.63249246,69761869.8373822 - 01/16 22:00:00,99272362.29001057,0.0,120951261.0776403,0.0,60737459.73111312,0.0,93510085.7862567,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,448651106.2426373,0.0,35233267.594637479,69761869.8373822 - 01/16 23:00:00,99134625.26039762,0.0,120004782.19244199,0.0,60625619.59633523,0.0,93137067.06217231,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,447249391.9909997,0.0,35233267.594637479,62010550.96656194 - 01/16 24:00:00,101913095.47516273,0.0,122128537.9847186,0.0,63189689.758950088,0.0,96098602.17466702,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,420503574.3333247,0.0,35233267.594637479,46507913.22492146 - 01/17 01:00:00,109258483.08049259,0.0,128800604.31963821,0.0,70239769.84824655,0.0,104454989.1178275,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,449995729.6353374,0.0,21139960.556782485,23253956.61246073 - 01/17 02:00:00,65623816.716019358,0.0,82978228.18101788,0.0,32801797.12475135,0.0,56193842.38242924,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,256218626.0387842,0.0,14093307.03785499,0.0 - 01/17 03:00:00,92810821.98615705,0.0,109867057.94972836,0.0,56620254.936849918,0.0,87248732.13740304,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,365167808.6447047,0.0,14093307.03785499,0.0 - 01/17 04:00:00,93677561.67327862,0.0,110086338.60293684,0.0,58577026.75952998,0.0,88589007.07891032,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,369550875.74922218,0.0,14093307.03785499,0.0 - 01/17 05:00:00,93607481.1615975,0.0,108317252.29912246,0.0,58716944.38946153,0.0,88100285.38708776,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,367402933.6935438,0.0,14093307.03785499,0.0 - 01/17 06:00:00,92127953.02201635,0.0,106533825.9833399,0.0,58086080.287508267,0.0,86772838.2605231,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,362220689.1218476,0.0,14093307.03785499,0.0 - 01/17 07:00:00,88049600.60402477,0.0,103074863.43103545,0.0,54814131.03878102,0.0,82519666.48491964,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,403258227.8326011,0.0,14093307.03785499,15502637.741640486 - 01/17 08:00:00,92431222.35399723,0.0,109362267.28379289,0.0,57824717.747912529,0.0,86695514.22631043,0.0,19995.831983004344,19682.79350309164,19708.15679150134,23724.29136000298,645513586.7073742,0.0,56373228.15141996,38756594.35410121 - 01/17 09:00:00,91320541.11377299,0.0,115588203.90828017,0.0,65325517.42319028,0.0,95471514.8192674,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,629949992.3527523,0.0,56373228.15141996,38756594.35410121 - 01/17 10:00:00,77903866.60849032,0.0,110992406.22978962,0.0,67953609.57275568,0.0,97343086.54146478,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,541881654.3668883,0.0,28186614.07570998,0.0 - 01/17 11:00:00,82561873.50944191,0.0,109669350.13618829,0.0,67274987.35024706,0.0,96528591.08803316,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,506708669.7754677,0.0,28186614.07570998,0.0 - 01/17 12:00:00,75128873.2750797,0.0,103410503.30458838,0.0,63804000.33229584,0.0,91745673.66072402,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,409673092.35657778,0.0,28186614.07570998,0.0 - 01/17 13:00:00,70495820.8911147,0.0,99308747.0050999,0.0,61211628.274894978,0.0,87137482.09533195,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,393845219.24935749,0.0,28186614.07570998,0.0 - 01/17 14:00:00,68110970.97765082,0.0,95673883.27797356,0.0,58596751.51471137,0.0,83848811.17881668,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,382046928.0602386,0.0,28186614.07570998,0.0 - 01/17 15:00:00,65856929.96911811,0.0,94913255.51798047,0.0,57059652.72923523,0.0,82341215.44973959,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,413708365.1404474,0.0,28186614.07570998,0.0 - 01/17 16:00:00,71325794.25509511,0.0,97661600.3858146,0.0,57141123.28528169,0.0,83416218.6647091,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,498773589.0481905,0.0,28186614.07570998,0.0 - 01/17 17:00:00,89096363.73886487,0.0,106279299.05505423,0.0,61187127.83629571,0.0,89393730.22327155,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,534916625.31321099,0.0,35233267.594637479,0.0 - 01/17 18:00:00,95203562.73730278,0.0,110703340.71061158,0.0,64782232.33117996,0.0,93904881.05019233,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,629138163.0729013,0.0,14093307.03785499,0.0 - 01/17 19:00:00,81615742.6986632,0.0,96712932.74865622,0.0,50797807.02831801,0.0,76994109.94307073,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,570664738.6623228,0.0,63419881.67034747,0.0 - 01/17 20:00:00,68036683.46734536,0.0,82945402.94006565,0.0,36774796.36621867,0.0,60124713.45135215,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,399049679.79276159,0.0,63419881.67034747,69761869.8373822 - 01/17 21:00:00,71471652.10493249,0.0,86060052.16624104,0.0,39459601.73369894,0.0,63541067.73081914,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,411700457.3034714,0.0,49326574.63249246,69761869.8373822 - 01/17 22:00:00,74756943.99059665,0.0,89065019.68847333,0.0,42258508.41146034,0.0,67004646.24453542,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,348669160.1189556,0.0,35233267.594637479,69761869.8373822 - 01/17 23:00:00,76494612.79820022,0.0,90557447.34378353,0.0,43794996.29920345,0.0,68840747.19449072,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,355271845.4195678,0.0,35233267.594637479,62010550.96656194 - 01/17 24:00:00,79699183.39425867,0.0,93517886.76181373,0.0,46907725.555304069,0.0,72534033.90799184,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,330450850.5113133,0.0,35233267.594637479,46507913.22492146 - 01/18 01:00:00,87025299.38776177,0.0,100705408.52187005,0.0,54154493.640410307,0.0,81219388.71747865,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,360950360.7589787,0.0,21139960.556782485,23253956.61246073 - 01/18 02:00:00,45522553.67433648,0.0,58706058.38525405,0.0,19398019.889425219,0.0,36071719.64124299,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,178594362.03623123,0.0,14093307.03785499,0.0 - 01/18 03:00:00,72298008.47345132,0.0,85257001.70400688,0.0,42503997.27825113,0.0,66453672.904831428,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,285408690.80651316,0.0,14093307.03785499,0.0 - 01/18 04:00:00,73393349.72247814,0.0,85817937.50935866,0.0,44399031.3091693,0.0,68152985.79330348,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,290659314.780282,0.0,14093307.03785499,0.0 - 01/18 05:00:00,73971984.11524779,0.0,86178065.49679485,0.0,45474143.33418944,0.0,69005332.46431251,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,293525535.856517,0.0,14093307.03785499,0.0 - 01/18 06:00:00,75384356.69445384,0.0,87485131.47456903,0.0,46940168.120052758,0.0,70553432.62189718,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,299225852.01359876,0.0,14093307.03785499,0.0 - 01/18 07:00:00,74591046.56829693,0.0,86291655.81487552,0.0,45528750.948725488,0.0,68871954.07090533,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,350620341.24858197,0.0,14093307.03785499,15502637.741640486 - 01/18 08:00:00,78439715.32044792,0.0,93574523.13272344,0.0,48832835.17121369,0.0,73673947.63373778,0.0,20101.72261660297,19787.026399067403,19812.524002202397,23849.92655467377,595305339.7192904,0.0,56373228.15141996,38756594.35410121 - 01/18 09:00:00,71574246.61901416,0.0,98503995.3579551,0.0,54967015.3586774,0.0,80834911.41421892,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,569559437.2100909,0.0,56373228.15141996,38756594.35410121 - 01/18 10:00:00,72693819.30437939,0.0,101623942.9489828,0.0,62392795.25322899,0.0,89002955.32790631,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,514341143.86075666,0.0,28186614.07570998,0.0 - 01/18 11:00:00,72140116.2890062,0.0,99732996.30235853,0.0,61620128.07933885,0.0,88088552.11243005,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,472483897.6041409,0.0,28186614.07570998,0.0 - 01/18 12:00:00,67808502.91931145,0.0,96985058.09844704,0.0,59955194.84683885,0.0,85907107.7043488,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,386347404.5518621,0.0,28186614.07570998,0.0 - 01/18 13:00:00,59330293.397596407,0.0,94299419.75060846,0.0,58210783.50345531,0.0,82221805.64721664,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,369753843.28179278,0.0,28186614.07570998,0.0 - 01/18 14:00:00,65682169.86098538,0.0,94171735.5378117,0.0,57443807.48220301,0.0,82031174.79119616,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,375020428.65511229,0.0,28186614.07570998,0.0 - 01/18 15:00:00,68624356.78560543,0.0,94661289.68439529,0.0,56419600.80788402,0.0,81430251.71284044,0.0,7600.3420852062,7481.357312019881,7490.997804522686,9017.51576120379,414860265.6573543,0.0,28186614.07570998,0.0 - 01/18 16:00:00,70944913.84544975,0.0,96046489.72285748,0.0,55894794.30762483,0.0,81412932.83090309,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,493840408.4845505,0.0,28186614.07570998,0.0 - 01/18 17:00:00,83510329.2333601,0.0,102187193.9579742,0.0,58324086.755285147,0.0,85217597.84341648,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,518780485.5677513,0.0,35233267.594637479,0.0 - 01/18 18:00:00,89650453.57444266,0.0,106806462.44399429,0.0,62130797.29317233,0.0,89998391.52669083,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,613506498.2785062,0.0,14093307.03785499,0.0 - 01/18 19:00:00,76843664.79762817,0.0,93672331.66562718,0.0,48668866.76464262,0.0,73871594.44589582,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,557976851.1139999,0.0,63419881.67034747,0.0 - 01/18 20:00:00,64235869.642159689,0.0,80983580.71171056,0.0,35326786.27419908,0.0,57963377.08197807,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,389677697.27782717,0.0,63419881.67034747,69761869.8373822 - 01/18 21:00:00,67242778.37091337,0.0,83546334.1378934,0.0,37728903.59403127,0.0,60948651.76088405,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,400849749.82955417,0.0,49326574.63249246,69761869.8373822 - 01/18 22:00:00,70214687.57032058,0.0,86100692.69080028,0.0,40217861.21689476,0.0,64018633.328031327,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,336243415.78896299,0.0,35233267.594637479,69761869.8373822 - 01/18 23:00:00,72145078.41293569,0.0,87648521.75429164,0.0,41798622.91622523,0.0,65943428.15560594,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,343227192.2219745,0.0,35233267.594637479,62010550.96656194 - 01/18 24:00:00,75754361.75360498,0.0,90967501.3063295,0.0,45060959.47658163,0.0,69905751.93468324,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,319534344.96265736,0.0,35233267.594637479,46507913.22492146 - 01/19 01:00:00,83929655.76600355,0.0,98857129.41381203,0.0,52877318.38635652,0.0,79349168.22038728,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,352859042.27801737,0.0,21139960.556782485,23253956.61246073 - 01/19 02:00:00,42062258.46465574,0.0,56121796.869122888,0.0,17737436.323839185,0.0,34056373.446359548,0.0,1264.6357106032518,1244.8376026361994,1246.4417029451284,1500.4419965179218,168900750.34970636,0.0,14093307.03785499,0.0 - 01/19 03:00:00,69159853.13550014,0.0,82425035.94245145,0.0,40840071.50899323,0.0,63971148.05644317,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,275318993.889117,0.0,14093307.03785499,0.0 - 01/19 04:00:00,70623699.2388145,0.0,83362729.67389873,0.0,42800650.135331589,0.0,65886197.55005151,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,281596161.84382537,0.0,14093307.03785499,0.0 - 01/19 05:00:00,71186172.81958528,0.0,83551802.13772086,0.0,43841201.81852613,0.0,66669721.401605937,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,284171783.4231672,0.0,14093307.03785499,0.0 - 01/19 06:00:00,71599234.96187887,0.0,83713634.19228319,0.0,44561442.12349801,0.0,67214570.58286448,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,286011767.10625359,0.0,14093307.03785499,0.0 - 01/19 07:00:00,69563048.90147603,0.0,81667779.95443389,0.0,42549049.487593937,0.0,64668487.8286518,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,277344376.6181281,0.0,14093307.03785499,15502637.741640486 - 01/19 08:00:00,74406169.88267674,0.0,87583703.81849137,0.0,45314113.18527419,0.0,68555054.23977776,0.0,5058.542842413007,4979.350410544797,4985.766811780513,6001.767986071687,351550582.10913607,0.0,56373228.15141996,38756594.35410121 - 01/19 09:00:00,83326191.56752575,0.0,97058393.57660245,0.0,54988067.84931335,0.0,79969039.63201082,0.0,12646.357106032516,12448.376026361992,12464.417029451284,15004.419965179217,504570545.0827424,0.0,56373228.15141996,38756594.35410121 - 01/19 10:00:00,84978522.13724785,0.0,98263600.23291111,0.0,60081390.2479439,0.0,85402449.77716269,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,518568575.7832667,0.0,28186614.07570998,0.0 - 01/19 11:00:00,79309279.38503227,0.0,93105176.48333025,0.0,56545786.76883376,0.0,81012389.93890113,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,500057812.45712497,0.0,28186614.07570998,0.0 - 01/19 12:00:00,74286790.39657732,0.0,88016249.04275304,0.0,53582671.272828679,0.0,77162479.76160042,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,407267740.5591455,0.0,28186614.07570998,0.0 - 01/19 13:00:00,68009831.22200418,0.0,82856743.98747739,0.0,50635477.62288831,0.0,72869023.05682768,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,388725783.49957796,0.0,28186614.07570998,0.0 - 01/19 14:00:00,71470548.46660504,0.0,84362947.24299538,0.0,50413513.33609345,0.0,73116478.90590394,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,393718195.5619782,0.0,28186614.07570998,0.0 - 01/19 15:00:00,68864410.6595472,0.0,82460898.9274286,0.0,48842343.90543915,0.0,71124153.78572572,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,385802402.29043659,0.0,28186614.07570998,0.0 - 01/19 16:00:00,71444332.13926849,0.0,84326423.25668085,0.0,48781304.7091742,0.0,71399436.35751583,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,543433660.7390847,0.0,28186614.07570998,0.0 - 01/19 17:00:00,72845419.02684653,0.0,84562385.15557295,0.0,47900208.01580018,0.0,70444045.8062589,0.0,22983.564477667012,22623.752488189417,22652.90550242886,27269.121916159504,619657697.7884798,0.0,35233267.594637479,0.0 - 01/19 18:00:00,76128353.55222449,0.0,87543501.57961308,0.0,50655677.35507843,0.0,73806827.9135823,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,555325748.762522,0.0,14093307.03785499,0.0 - 01/19 19:00:00,65266752.94761987,0.0,77080878.0949789,0.0,39292031.223170209,0.0,60364386.784953068,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,509195437.4127458,0.0,63419881.67034747,0.0 - 01/19 20:00:00,51082880.643137868,0.0,63060943.845555979,0.0,25135828.151958787,0.0,43302947.15268267,0.0,15305.719589211305,15066.105693763031,15085.519908714887,18159.652037364056,411603789.8179271,0.0,63419881.67034747,69761869.8373822 - 01/19 21:00:00,53166655.17368796,0.0,64967909.03458802,0.0,27304343.405165435,0.0,45867272.14099561,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,382157171.44159689,0.0,49326574.63249246,69761869.8373822 - 01/19 22:00:00,54722350.056894008,0.0,66276524.02991684,0.0,29129117.160869764,0.0,47930443.71054493,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,350905385.9733372,0.0,35233267.594637479,69761869.8373822 - 01/19 23:00:00,56897014.40850369,0.0,68456700.95159272,0.0,30946101.69889637,0.0,50270407.197444308,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,321080819.26873299,0.0,35233267.594637479,62010550.96656194 - 01/19 24:00:00,60866697.63825473,0.0,72413924.56430896,0.0,34518860.18258419,0.0,54720358.37445534,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,298860237.4344672,0.0,35233267.594637479,46507913.22492146 - 01/20 01:00:00,67413174.39508157,0.0,78613451.54862049,0.0,41398862.83046246,0.0,62780022.02018754,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,288417248.54813006,0.0,21139960.556782485,23253956.61246073 - 01/20 02:00:00,30785373.391655908,0.0,40332262.41672219,0.0,10165208.788947754,0.0,23132513.929586147,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,123521227.403801,0.0,14093307.03785499,0.0 - 01/20 03:00:00,52244921.4329474,0.0,62041619.96187087,0.0,29465845.815164038,0.0,47270863.68038995,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,210129119.76726128,0.0,14093307.03785499,0.0 - 01/20 04:00:00,52735707.40993585,0.0,61957432.60567498,0.0,30657411.279511438,0.0,48209691.91979556,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,212666112.0918068,0.0,14093307.03785499,0.0 - 01/20 05:00:00,52435326.37356382,0.0,61292871.97656802,0.0,31008763.400634059,0.0,48126384.11052014,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,211993073.35092414,0.0,14093307.03785499,0.0 - 01/20 06:00:00,52302340.62007158,0.0,60960903.130502078,0.0,31301711.43037853,0.0,48119352.438764329,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,211814035.10935463,0.0,14093307.03785499,0.0 - 01/20 07:00:00,48595229.4366655,0.0,57107948.82780392,0.0,28077981.453466447,0.0,43925905.90242933,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,196855782.16051189,0.0,14093307.03785499,15502637.741640486 - 01/20 08:00:00,52039599.76399322,0.0,61986797.71890781,0.0,33736378.840207148,0.0,47726135.26943232,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,214594780.4694295,0.0,56373228.15141996,38756594.35410121 - 01/20 09:00:00,64855849.009479258,0.0,75211727.99617197,0.0,42265923.32393433,0.0,61628983.93556243,0.0,5107.458772814891,5027.500552930982,5033.979000539748,6059.804870257667,320385959.7727038,0.0,56373228.15141996,38756594.35410121 - 01/20 10:00:00,68816833.04113868,0.0,79075565.22824687,0.0,49044354.85260494,0.0,69573637.60729525,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,381145603.9906195,0.0,28186614.07570998,0.0 - 01/20 11:00:00,65371594.21219751,0.0,75910550.81224728,0.0,46748179.94757244,0.0,66814143.99797488,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,369622833.90782079,0.0,28186614.07570998,0.0 - 01/20 12:00:00,63179460.677796948,0.0,73695729.33296749,0.0,45070191.2980754,0.0,64801311.22647497,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,323265602.4938672,0.0,28186614.07570998,0.0 - 01/20 13:00:00,63656557.09082344,0.0,73762984.2701424,0.0,44547879.25989945,0.0,64302841.24590525,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,322789171.825323,0.0,28186614.07570998,0.0 - 01/20 14:00:00,60560998.27608297,0.0,70959490.43529047,0.0,42822750.1804512,0.0,61987484.93846311,0.0,7678.3694773040019,7558.163170738395,7567.90263542957,9110.092283439166,351223023.0711679,0.0,28186614.07570998,0.0 - 01/20 15:00:00,61964270.33894813,0.0,73013781.11003219,0.0,43241656.04764655,0.0,62901138.771348,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,394158666.1850798,0.0,28186614.07570998,0.0 - 01/20 16:00:00,59646951.046152938,0.0,73065999.56573391,0.0,42445936.292832497,0.0,62127327.597662,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,428773379.9038482,0.0,28186614.07570998,0.0 - 01/20 17:00:00,64578058.52377061,0.0,75407616.60416839,0.0,42651806.09794207,0.0,62852815.471991349,0.0,15356.738954608003,15116.32634147679,15135.80527085914,18220.18456687833,475274895.17963257,0.0,35233267.594637479,0.0 - 01/20 18:00:00,67681972.72499258,0.0,77987742.6966785,0.0,45060952.420465018,0.0,65711718.75787564,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,524524418.16206529,0.0,14093307.03785499,0.0 - 01/20 19:00:00,56648493.51522254,0.0,67144152.7376833,0.0,33809687.48490816,0.0,52254040.757928099,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,362894194.41284707,0.0,63419881.67034747,0.0 - 01/20 20:00:00,42454919.01469222,0.0,53044533.30932282,0.0,19879888.67172297,0.0,35343111.404400739,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,265500817.33796747,0.0,63419881.67034747,69761869.8373822 - 01/20 21:00:00,44706461.875117439,0.0,55174889.42515455,0.0,22113382.987941669,0.0,38043269.654979038,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,236556913.9017452,0.0,49326574.63249246,69761869.8373822 - 01/20 22:00:00,47617756.55015162,0.0,58032687.79259904,0.0,24731021.99005458,0.0,41331595.4110274,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,248231971.70238508,0.0,35233267.594637479,69761869.8373822 - 01/20 23:00:00,49561315.33089363,0.0,59914871.27287076,0.0,26330450.223657315,0.0,43373360.300174858,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,255698907.08614905,0.0,35233267.594637479,62010550.96656194 - 01/20 24:00:00,53165838.778291817,0.0,63456107.30440966,0.0,29598972.582694197,0.0,47429671.75233139,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,270169500.37627956,0.0,35233267.594637479,46507913.22492146 - 01/21 01:00:00,62336282.88754583,0.0,72599339.461009,0.0,38145529.757671359,0.0,58007968.057556558,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,269300857.91756066,0.0,21139960.556782485,23253956.61246073 - 01/21 02:00:00,22632305.76168699,0.0,31102827.785109827,0.0,3872236.667367368,0.0,13769569.999496397,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,90482809.09054955,0.0,14093307.03785499,0.0 - 01/21 03:00:00,47725907.34886873,0.0,56685458.95961941,0.0,26815412.095930689,0.0,43370461.484600428,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,193703108.76590825,0.0,14093307.03785499,0.0 - 01/21 04:00:00,50200949.599584158,0.0,58910045.286242287,0.0,29172895.1045942,0.0,45979860.62501178,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,203348849.7841484,0.0,14093307.03785499,0.0 - 01/21 05:00:00,52095024.59173387,0.0,60663990.482300389,0.0,31271330.313258765,0.0,48201170.74331178,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,211290634.06566824,0.0,14093307.03785499,0.0 - 01/21 06:00:00,53224766.286318588,0.0,61738573.91858576,0.0,32553639.679980816,0.0,49535887.681565199,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,216111985.50151379,0.0,14093307.03785499,0.0 - 01/21 07:00:00,50859017.9955706,0.0,59340407.84699409,0.0,30198614.618070984,0.0,46554693.321952659,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,263189205.52284194,0.0,14093307.03785499,15502637.741640486 - 01/21 08:00:00,52377259.84085387,0.0,65928227.93703794,0.0,34666145.03835262,0.0,49492070.867074977,0.0,20267.5788938832,19950.286165386355,19975.994145393826,24046.708696543436,505729748.12766399,0.0,56373228.15141996,38756594.35410121 - 01/21 09:00:00,33292400.61991904,0.0,66872309.22716859,0.0,35592539.86269478,0.0,53480160.3344384,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,455356661.8776593,0.0,56373228.15141996,38756594.35410121 - 01/21 10:00:00,8518413.443160089,0.0,64965206.25362577,0.0,38825613.043501827,0.0,57125036.65115857,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,359800186.20042309,0.0,28186614.07570998,0.0 - 01/21 11:00:00,0.0,0.0,64127875.13759794,0.0,39489113.87303667,0.0,57694338.973987,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,313992121.33434948,0.0,28186614.07570998,0.0 - 01/21 12:00:00,0.0,1991745.458045486,64239672.65495547,0.0,41092529.721487957,0.0,59425324.92730551,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,241181002.81130479,1991745.458045486,28186614.07570998,0.0 - 01/21 13:00:00,0.0,9968679.20058892,58087388.43969958,0.0,37499670.48377858,0.0,50485870.24605761,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,222754628.50711168,9968679.20058892,28186614.07570998,0.0 - 01/21 14:00:00,0.0,2019755.0784979719,48290565.94565794,0.0,32068429.75828805,0.0,43885231.90233292,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,200925926.9438548,2019755.0784979719,28186614.07570998,0.0 - 01/21 15:00:00,0.0,0.0,47778879.07049747,0.0,29544866.01121817,0.0,42509012.410853598,0.0,7687.074201905429,7566.731621252323,7576.482127266549,9120.420106898993,234855306.4989331,0.0,28186614.07570998,0.0 - 01/21 16:00:00,12862929.57807731,0.0,53060412.583813469,0.0,30388653.214536404,0.0,45387654.58945136,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,333186815.36734536,0.0,28186614.07570998,0.0 - 01/21 17:00:00,37593189.6814105,0.0,65327059.70207131,0.0,36062887.24894304,0.0,54091963.82671157,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,384372375.3555176,0.0,35233267.594637479,0.0 - 01/21 18:00:00,47908879.46867548,0.0,72602143.85427667,0.0,41389748.909505639,0.0,61037510.1926171,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,490420446.70152029,0.0,14093307.03785499,0.0 - 01/21 19:00:00,38691478.6172408,0.0,61692132.13923056,0.0,29530165.083841534,0.0,47020677.70328441,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,444125841.90562108,0.0,63419881.67034747,0.0 - 01/21 20:00:00,27904094.066784298,0.0,49368244.4390905,0.0,16854629.35300993,0.0,31734467.39891289,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,278542228.6075255,0.0,63419881.67034747,69761869.8373822 - 01/21 21:00:00,33537895.454149665,0.0,53882952.80126562,0.0,20249201.64720057,0.0,36272187.40261421,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,296623030.6549579,0.0,49326574.63249246,69761869.8373822 - 01/21 22:00:00,39569194.823671597,0.0,58864182.21455454,0.0,23988102.02266471,0.0,41250700.29475189,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,240012576.03050665,0.0,35233267.594637479,69761869.8373822 - 01/21 23:00:00,43961694.06499037,0.0,62130486.34157606,0.0,26511903.85639721,0.0,44542928.4515341,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,253487409.38936169,0.0,35233267.594637479,62010550.96656194 - 01/21 24:00:00,50485376.52099017,0.0,67680991.61475788,0.0,31224780.345072409,0.0,50474498.05864784,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,237983882.40959514,0.0,35233267.594637479,46507913.22492146 - 01/22 01:00:00,60881236.56049782,0.0,77160994.00131272,0.0,40083170.88009202,0.0,61349738.72218775,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,277593376.0342171,0.0,21139960.556782485,23253956.61246073 - 01/22 02:00:00,27433534.858172515,0.0,40913670.482565689,0.0,10048868.54045501,0.0,23504840.910825556,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,120960032.7270822,0.0,14093307.03785499,0.0 - 01/22 03:00:00,51071500.14092676,0.0,64956240.284636657,0.0,30840955.475216178,0.0,49542631.558381717,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,215447919.140059,0.0,14093307.03785499,0.0 - 01/22 04:00:00,54934955.78963438,0.0,68470979.07294306,0.0,33991478.256509739,0.0,53370358.29641828,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,229776289.40360818,0.0,14093307.03785499,0.0 - 01/22 05:00:00,57333201.95157497,0.0,70392362.00895557,0.0,36067297.57919698,0.0,55624652.474065687,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,238426032.00189597,0.0,14093307.03785499,0.0 - 01/22 06:00:00,58552122.07031083,0.0,71016106.37588167,0.0,37189084.32003862,0.0,56673777.99558091,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,242439608.74991478,0.0,14093307.03785499,0.0 - 01/22 07:00:00,56942014.816276218,0.0,68904152.50297761,0.0,35374587.43556069,0.0,54339485.05818568,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,291497285.1682006,0.0,14093307.03785499,15502637.741640486 - 01/22 08:00:00,62868530.105372939,0.0,75791956.3774307,0.0,39122894.67867736,0.0,59001097.77933465,0.0,20299.800599501148,19982.003434191898,20007.752285137543,24084.93852028101,540532660.3616173,0.0,56373228.15141996,38756594.35410121 - 01/22 09:00:00,74902933.76636754,0.0,87960262.59519056,0.0,50434082.8802565,0.0,73069176.35817376,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,552146114.3431898,0.0,56373228.15141996,38756594.35410121 - 01/22 10:00:00,80897453.78252436,0.0,93257584.46245608,0.0,58361961.91262349,0.0,82238106.90680543,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,504840286.94543698,0.0,28186614.07570998,0.0 - 01/22 11:00:00,79512568.05088616,0.0,91440182.72762272,0.0,56780216.812707457,0.0,80466917.16945286,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,460268028.6654912,0.0,28186614.07570998,0.0 - 01/22 12:00:00,73849982.99935442,0.0,86396842.68103138,0.0,54270924.5777593,0.0,77072179.7418055,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,367624001.9523616,0.0,28186614.07570998,0.0 - 01/22 13:00:00,74103934.7032829,0.0,86203833.32551724,0.0,53314327.901776898,0.0,76121465.11056374,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,365889927.7647314,0.0,28186614.07570998,0.0 - 01/22 14:00:00,72247833.14274758,0.0,83859897.59103263,0.0,51542155.39356885,0.0,73748306.9575983,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,357634664.82520106,0.0,28186614.07570998,0.0 - 01/22 15:00:00,66268738.47899096,0.0,79823839.86885064,0.0,49624682.423850599,0.0,70991466.8063926,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,380928277.66347089,0.0,28186614.07570998,0.0 - 01/22 16:00:00,71477794.3134633,0.0,84486698.77648905,0.0,51116320.63514065,0.0,73628267.91401774,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,471074998.4480875,0.0,28186614.07570998,0.0 - 01/22 17:00:00,74424463.11412391,0.0,86349171.1988633,0.0,50661639.75820833,0.0,73483613.21433084,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,475510066.6361605,0.0,35233267.594637479,0.0 - 01/22 18:00:00,78254320.03423769,0.0,90045049.42568667,0.0,53499714.17111763,0.0,77111888.06706451,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,565423255.230674,0.0,14093307.03785499,0.0 - 01/22 19:00:00,65690446.26462396,0.0,77988828.19804369,0.0,40247248.34759663,0.0,61543269.40479362,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,511982075.74762549,0.0,63419881.67034747,0.0 - 01/22 20:00:00,52463470.10503375,0.0,65079484.00806074,0.0,26547476.65980552,0.0,45224543.26713014,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,341607707.48721167,0.0,63419881.67034747,69761869.8373822 - 01/22 21:00:00,56903952.864412169,0.0,69586549.23664987,0.0,30042643.40537182,0.0,49793233.29890921,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,358394522.710165,0.0,49326574.63249246,69761869.8373822 - 01/22 22:00:00,61260666.586103599,0.0,74065165.72013076,0.0,33576441.55515724,0.0,54427087.911419268,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,299363433.72522196,0.0,35233267.594637479,69761869.8373822 - 01/22 23:00:00,63709721.30157211,0.0,76633632.71690531,0.0,35548042.106470528,0.0,57070821.651232767,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,308996289.72859176,0.0,35233267.594637479,62010550.96656194 - 01/22 24:00:00,68357078.86955878,0.0,81301395.20162866,0.0,39648949.005238,0.0,62218111.43500443,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,289494057.1890301,0.0,35233267.594637479,46507913.22492146 - 01/23 01:00:00,77461901.67561522,0.0,90394728.68609253,0.0,48126312.67922123,0.0,72655510.07205278,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,326606975.790582,0.0,21139960.556782485,23253956.61246073 - 01/23 02:00:00,36544529.149774078,0.0,49271201.59819954,0.0,12861604.818213214,0.0,28105470.63312673,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,145736933.97708509,0.0,14093307.03785499,0.0 - 01/23 03:00:00,65448469.52873677,0.0,77466815.07973415,0.0,38629850.86764271,0.0,60458001.37303977,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,260926022.0948824,0.0,14093307.03785499,0.0 - 01/23 04:00:00,67929600.84033513,0.0,79658777.12074162,0.0,41012440.482704598,0.0,63410118.53433677,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,270933822.2238471,0.0,14093307.03785499,0.0 - 01/23 05:00:00,65114692.07422855,0.0,76149112.86311578,0.0,39522094.71016778,0.0,60691559.316625338,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,260514050.64503516,0.0,14093307.03785499,0.0 - 01/23 06:00:00,63791273.19405392,0.0,74390677.62041763,0.0,38849717.268230278,0.0,59414299.929067198,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,255482559.69266678,0.0,14093307.03785499,0.0 - 01/23 07:00:00,61897443.23172516,0.0,72726154.09808202,0.0,36969844.94577322,0.0,57105431.86868581,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,304732946.09667727,0.0,14093307.03785499,15502637.741640486 - 01/23 08:00:00,65474939.289443228,0.0,78061612.86996678,0.0,39449958.888824667,0.0,60377589.41846943,0.0,20355.75724121221,20037.084064238272,20062.903892197697,24151.32893967486,547949567.361067,0.0,56373228.15141996,38756594.35410121 - 01/23 09:00:00,70236118.60226693,0.0,86030853.68188347,0.0,48130395.81891999,0.0,70970534.32428389,0.0,17811.28758606068,17532.44855620849,17555.040905672984,21132.412822215498,541880185.9599217,0.0,56373228.15141996,38756594.35410121 - 01/23 10:00:00,74791280.27196567,0.0,90264238.73040949,0.0,56023432.16426622,0.0,79867470.39940316,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,491312338.37502136,0.0,28186614.07570998,0.0 - 01/23 11:00:00,77521376.0295278,0.0,91889086.1547667,0.0,56649302.290705908,0.0,81162787.81941878,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,459096643.00482007,0.0,28186614.07570998,0.0 - 01/23 12:00:00,79448562.95172665,0.0,93212640.69172193,0.0,56674632.26846143,0.0,81667162.7464054,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,387037070.61072638,0.0,28186614.07570998,0.0 - 01/23 13:00:00,79712352.58053138,0.0,93605980.53133549,0.0,56535504.54284887,0.0,81695732.37933289,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,387486615.389249,0.0,28186614.07570998,0.0 - 01/23 14:00:00,79960342.78567586,0.0,93728838.01719944,0.0,56206744.65657478,0.0,81442134.69377281,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,387372132.10563388,0.0,28186614.07570998,0.0 - 01/23 15:00:00,81412865.93541807,0.0,95030892.88201896,0.0,56349008.29756349,0.0,81907271.8344042,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,428751146.8780212,0.0,28186614.07570998,0.0 - 01/23 16:00:00,85133087.07343138,0.0,98728292.53653996,0.0,57941250.84068906,0.0,84346160.39696484,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,515991404.23562636,0.0,28186614.07570998,0.0 - 01/23 17:00:00,86489068.82272883,0.0,100044580.89992053,0.0,57490916.7310535,0.0,84147568.08451617,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,518257314.4192467,0.0,35233267.594637479,0.0 - 01/23 18:00:00,88700444.09620135,0.0,101938084.26230803,0.0,59494556.19340431,0.0,86441700.32186193,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,602694036.7072141,0.0,14093307.03785499,0.0 - 01/23 19:00:00,75570834.42130113,0.0,89108548.70743433,0.0,46077790.11213383,0.0,70452446.40453495,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,546989278.3886058,0.0,63419881.67034747,0.0 - 01/23 20:00:00,62080052.12432046,0.0,75976065.42085895,0.0,32358610.776670144,0.0,54086780.39624609,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,376375599.4284965,0.0,63419881.67034747,69761869.8373822 - 01/23 21:00:00,64736896.85979223,0.0,78496654.73142594,0.0,34782439.261120688,0.0,57069900.36690767,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,386959981.92964747,0.0,49326574.63249246,69761869.8373822 - 01/23 22:00:00,67629274.28275255,0.0,81274261.20640238,0.0,37438950.226895328,0.0,60345228.55738713,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,322624759.6286378,0.0,35233267.594637479,69761869.8373822 - 01/23 23:00:00,68679685.45836607,0.0,82218775.01577109,0.0,38446882.74135179,0.0,61560398.87967517,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,326939814.0475751,0.0,35233267.594637479,62010550.96656194 - 01/23 24:00:00,71519515.22590998,0.0,84930942.27753109,0.0,41261797.37127311,0.0,64933121.57224426,0.0,2540.717268136974,2500.9418653339519,2504.1645841932638,3014.464053504009,300662412.42316398,0.0,35233267.594637479,46507913.22492146 - 01/24 01:00:00,77619803.84459585,0.0,90660303.605251,0.0,47649304.26128519,0.0,72411129.82455331,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,326458777.4058122,0.0,21139960.556782485,23253956.61246073 - 01/24 02:00:00,34656197.90534781,0.0,46759986.7185303,0.0,10997274.643917665,0.0,26109206.747801186,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,137581783.95066039,0.0,14093307.03785499,0.0 - 01/24 03:00:00,59720539.62236016,0.0,70856436.33805147,0.0,33956670.04647516,0.0,54049869.6494984,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,237668614.82510118,0.0,14093307.03785499,0.0 - 01/24 04:00:00,59620526.299245487,0.0,69981726.80767125,0.0,34676669.93924835,0.0,54531593.460654389,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,237895615.67553548,0.0,14093307.03785499,0.0 - 01/24 05:00:00,59182219.09398813,0.0,68956534.77626726,0.0,35212590.0137309,0.0,54409654.91449619,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,236846097.96719844,0.0,14093307.03785499,0.0 - 01/24 06:00:00,58626339.10262562,0.0,67999544.99127943,0.0,35461498.65238861,0.0,54113624.89599475,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,235286106.8110044,0.0,14093307.03785499,0.0 - 01/24 07:00:00,55562487.043548349,0.0,64839193.56996976,0.0,32709761.567045176,0.0,50560566.68373773,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,280012405.53916499,0.0,14093307.03785499,15502637.741640486 - 01/24 08:00:00,58360582.49028951,0.0,68890889.3709864,0.0,36104467.3573792,0.0,51566078.16868173,0.0,20407.626118948407,20088.14092501738,20114.026544953183,24212.86938315207,520283604.08679267,0.0,56373228.15141996,38756594.35410121 - 01/24 09:00:00,70203222.69594538,0.0,80922283.86367986,0.0,46028969.137676019,0.0,66885172.07067675,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,531231036.1300017,0.0,56373228.15141996,38756594.35410121 - 01/24 10:00:00,74905400.72986281,0.0,85435644.17888519,0.0,53791643.65279951,0.0,75753795.49155909,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,480737475.7402664,0.0,28186614.07570998,0.0 - 01/24 11:00:00,72915015.4079115,0.0,83651476.9873543,0.0,52189070.22038103,0.0,74098473.55020695,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,435534829.5155816,0.0,28186614.07570998,0.0 - 01/24 12:00:00,69984147.5895304,0.0,80471978.13892108,0.0,50052354.00242953,0.0,71340009.5462256,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,348271964.7846624,0.0,28186614.07570998,0.0 - 01/24 13:00:00,69435965.11290401,0.0,79499381.76326578,0.0,48976697.368936847,0.0,70045225.4841102,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,344380745.23677268,0.0,28186614.07570998,0.0 - 01/24 14:00:00,70377725.74310887,0.0,80435612.41682692,0.0,48843071.87400024,0.0,70206868.54823978,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,346286754.08973166,0.0,28186614.07570998,0.0 - 01/24 15:00:00,73430164.74926397,0.0,83997221.22126703,0.0,49820019.53868731,0.0,72074404.94159866,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,393957023.71215078,0.0,28186614.07570998,0.0 - 01/24 16:00:00,75648780.84703312,0.0,86704341.7250598,0.0,50942540.553966,0.0,73826401.70850568,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,477973056.52172449,0.0,28186614.07570998,0.0 - 01/24 17:00:00,76664602.93406438,0.0,88062004.43348223,0.0,50741489.07335864,0.0,73942337.3162292,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,480261425.4442943,0.0,35233267.594637479,0.0 - 01/24 18:00:00,82182568.27886084,0.0,94112083.44018446,0.0,54989994.033508349,0.0,79567868.2108887,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,577364797.4960098,0.0,14093307.03785499,0.0 - 01/24 19:00:00,71556547.52813044,0.0,84247125.25323317,0.0,43437646.48873273,0.0,66144376.68175775,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,531165354.69505569,0.0,63419881.67034747,0.0 - 01/24 20:00:00,61949459.46538833,0.0,75594989.16584742,0.0,32656466.502194566,0.0,53796071.06246112,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,375165069.7636712,0.0,63419881.67034747,69761869.8373822 - 01/24 21:00:00,66607464.48313032,0.0,80628620.34443215,0.0,36393201.62740286,0.0,58734325.56864348,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,393746693.9894409,0.0,49326574.63249246,69761869.8373822 - 01/24 22:00:00,71765305.23241326,0.0,85967980.05095896,0.0,40618191.823276977,0.0,64220539.880232159,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,338023069.397385,0.0,35233267.594637479,69761869.8373822 - 01/24 23:00:00,77341527.9567554,0.0,91954251.99047335,0.0,44910289.717061419,0.0,69943933.19133693,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,359346082.470919,0.0,35233267.594637479,62010550.96656194 - 01/24 24:00:00,83470229.97876813,0.0,98354129.28455621,0.0,50098604.06102977,0.0,76590207.72665158,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,346050908.1338833,0.0,35233267.594637479,46507913.22492146 - 01/25 01:00:00,94520271.92358105,0.0,109618688.62812692,0.0,60134639.30469113,0.0,89089739.31183847,0.0,2499.478997875543,2460.349187886455,2463.5195989376677,2965.5364200003725,390763322.30515769,0.0,21139960.556782485,23253956.61246073 - 01/25 02:00:00,56555926.85849847,0.0,71109117.56183379,0.0,26687316.8879245,0.0,46024401.11469753,0.0,1244.456511273645,1224.9743124365232,1226.5528168686265,1476.5001468007368,218997704.05752064,0.0,14093307.03785499,0.0 - 01/25 03:00:00,91531108.04895991,0.0,105770149.12723686,0.0,56392174.87835938,0.0,85217193.54349388,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,357294030.868206,0.0,14093307.03785499,0.0 - 01/25 04:00:00,98906002.7785823,0.0,113261516.11812783,0.0,63281154.68627331,0.0,93639673.33540702,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,387338461.173584,0.0,14093307.03785499,0.0 - 01/25 05:00:00,105672150.30884804,0.0,120366848.58197323,0.0,68699561.05087118,0.0,100569173.49729125,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,413426042.5883,0.0,14093307.03785499,0.0 - 01/25 06:00:00,111533716.47356498,0.0,126639295.96880262,0.0,72880582.17786844,0.0,106199044.11712456,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,435319999.5658691,0.0,14093307.03785499,0.0 - 01/25 07:00:00,111346770.12977332,0.0,126676096.84468825,0.0,71903864.7552042,0.0,105276557.56765613,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,487472732.6113558,0.0,14093307.03785499,15502637.741640486 - 01/25 08:00:00,111242386.26262345,0.0,133205905.3180618,0.0,74577871.52296728,0.0,109428002.15767613,0.0,19217.26898797619,18916.41905699144,18940.794793705125,22800.55608597868,716004305.3900738,0.0,56373228.15141996,38756594.35410121 - 01/25 09:00:00,77938887.82994205,0.0,128025977.33524972,0.0,72678850.46383795,0.0,106770364.83004505,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,638357132.0581935,0.0,56373228.15141996,38756594.35410121 - 01/25 10:00:00,58589196.16921531,0.0,126999821.61411153,0.0,77550094.00190367,0.0,111554497.25477903,0.0,12136.60683692166,11946.605992807883,11962.00041399434,14399.620729243206,556295011.342691,0.0,28186614.07570998,0.0 - 01/25 11:00:00,43440496.139769289,0.0,125956157.51091077,0.0,78083649.39600855,0.0,112197762.2238658,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,505678979.3121021,0.0,28186614.07570998,0.0 - 01/25 12:00:00,36075386.08321826,0.0,128526211.98031327,0.0,80739233.45306447,0.0,115371837.95931489,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,433904553.7724114,0.0,28186614.07570998,0.0 - 01/25 13:00:00,31536102.95951054,0.0,128612269.3481696,0.0,80538517.31245306,0.0,110435579.68290735,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,424314353.59954109,0.0,28186614.07570998,0.0 - 01/25 14:00:00,28755132.571113439,0.0,117736507.37910183,0.0,75139790.96036496,0.0,103038891.92520148,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,398050105.11439517,0.0,28186614.07570998,0.0 - 01/25 15:00:00,31734502.638820858,0.0,111879145.38074965,0.0,68729720.77085749,0.0,97242693.4972066,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,419655735.70555487,0.0,28186614.07570998,0.0 - 01/25 16:00:00,52505062.916576329,0.0,115264327.16659853,0.0,68080970.21728289,0.0,99096806.01767168,0.0,12196.737394957428,12005.795195740257,12021.26588825601,14470.963341028135,517448308.870064,0.0,28186614.07570998,0.0 - 01/25 17:00:00,97544736.79134853,0.0,136337198.40886227,0.0,79891496.61019202,0.0,116104236.42796669,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,611060759.7315328,0.0,35233267.594637479,0.0 - 01/25 18:00:00,118931499.28153169,0.0,150449143.02891854,0.0,90081235.747753,0.0,129283076.80705366,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,741085014.7404162,0.0,14093307.03785499,0.0 - 01/25 19:00:00,111663272.65387851,0.0,141460663.2727112,0.0,79183286.17696871,0.0,116759568.4106338,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,700673163.1268442,0.0,63419881.67034747,0.0 - 01/25 20:00:00,101704115.63616444,0.0,129954367.01008456,0.0,66969439.088464219,0.0,102215997.12916659,0.0,9584.970649748542,9434.916146152222,9447.073998608408,11372.201795103576,544264904.1864857,0.0,63419881.67034747,69761869.8373822 - 01/25 21:00:00,107033928.5725795,0.0,133415554.09872554,0.0,71276277.67116326,0.0,107076957.76306893,0.0,9527.045570743972,9377.89789506538,9389.98227368531,11303.475900000853,561356964.0077211,0.0,49326574.63249246,69761869.8373822 - 01/25 22:00:00,113725419.21362773,0.0,139181484.2559659,0.0,76549043.30286375,0.0,113619056.00912668,0.0,4736.299364499959,4662.151714392939,4668.159372732866,5619.4384003176269,513944778.6485803,0.0,35233267.594637479,69761869.8373822 - 01/25 23:00:00,116723945.48115982,0.0,141496010.5350536,0.0,78581950.36713048,0.0,116165121.76459106,0.0,4751.226475486676,4676.845138672508,4682.871730989347,5637.14884770051,524060160.0421915,0.0,35233267.594637479,62010550.96656194 - 01/25 24:00:00,122299445.49150938,0.0,146533481.2040444,0.0,83118323.85268042,0.0,121802249.94281802,0.0,2361.86032857105,2324.8849645226616,2327.8808160955238,2802.257122098153,509094280.12368687,0.0,35233267.594637479,46507913.22492146 - 01/26 01:00:00,133194237.5064264,0.0,156969029.44070087,0.0,92867243.6605695,0.0,133781386.87124568,0.0,2354.2316921706458,2317.375755848226,2320.361931039263,2793.206036212027,552038528.973915,0.0,21139960.556782485,23253956.61246073 - 01/26 02:00:00,91977646.60457509,0.0,113443615.994412,0.0,56535902.449151758,0.0,87791678.78877032,0.0,1177.1158460853229,1158.687877924113,1160.1809655196315,1396.6030181060133,367362159.5843954,0.0,14093307.03785499,0.0 - 01/26 03:00:00,122718895.15318614,0.0,144577014.2287837,0.0,83114264.31130094,0.0,121893270.95888837,0.0,1170.0117899606876,1151.6950371233693,1153.1791137297713,1388.1743266926274,489810461.6151824,0.0,14093307.03785499,0.0 - 01/26 04:00:00,126084930.38114357,0.0,147389391.39702345,0.0,86332539.85074651,0.0,125307382.66137782,0.0,1170.0117899606876,1151.6950371233693,1153.1791137297713,1388.1743266926274,502621261.25331458,0.0,14093307.03785499,0.0 - 01/26 05:00:00,128478996.81972891,0.0,149338556.7665743,0.0,88491299.66042045,0.0,127656614.48091986,0.0,1166.7369441254405,1148.471459610595,1149.951382308348,1384.2888471176578,511423482.80702689,0.0,14093307.03785499,0.0 - 01/26 06:00:00,134023398.70238972,0.0,154977217.63040609,0.0,92640916.99351625,0.0,133034663.85017675,0.0,1155.4016418402926,1137.3136135973196,1138.7791582716268,1370.8399436514188,531964600.86298719,0.0,14093307.03785499,0.0 - 01/26 07:00:00,131263096.22639199,0.0,151789970.26024557,0.0,90011292.24981359,0.0,129548771.36240211,0.0,1162.7709198900078,1144.567524224429,1146.0424163029705,1379.5833107547688,520011801.11507317,0.0,14093307.03785499,15502637.741640486 - 01/26 08:00:00,126723339.79253489,0.0,153960206.96263934,0.0,90196524.98015584,0.0,130046190.3065114,0.0,4635.066756124245,4562.503921386271,4568.383173374071,5499.329774766071,570281283.0941838,0.0,56373228.15141996,38756594.35410121 - 01/26 09:00:00,88604616.43131456,0.0,144927349.4730407,0.0,85240407.81282974,0.0,123412077.74382487,0.0,11700.117899606874,11516.95037123369,11531.791137297714,13881.743266926274,617254621.0912422,0.0,56373228.15141996,38756594.35410121 - 01/26 10:00:00,61720886.62442009,0.0,138799335.80173964,0.0,85494919.07336679,0.0,122398531.09313156,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,586146502.3282995,0.0,28186614.07570998,0.0 - 01/26 11:00:00,45456809.884636219,0.0,135053424.4617211,0.0,85049564.5262518,0.0,121566870.83894369,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,564859499.4471941,0.0,28186614.07570998,0.0 - 01/26 12:00:00,37152220.75896251,0.0,136122995.26669268,0.0,86745351.9586661,0.0,123574521.5115927,0.0,7188.727987311406,7076.187109614164,7085.305498956307,8529.151346327682,491160828.4878683,0.0,28186614.07570998,0.0 - 01/26 13:00:00,26986215.815195994,0.0,134193805.29716105,0.0,84324054.22768833,0.0,115577655.40579476,0.0,7227.490042345475,7114.342337445621,7123.509893693246,8575.141044987,469227470.6923369,0.0,28186614.07570998,0.0 - 01/26 14:00:00,18615907.609741488,0.0,118917192.92085648,0.0,75990810.73391849,0.0,104111360.26149757,0.0,7265.190419462064,7151.452508125451,7160.667884615754,8619.871103323967,426345126.4219121,0.0,28186614.07570998,0.0 - 01/26 15:00:00,19886075.18944077,0.0,107939667.59154909,0.0,66851750.790605518,0.0,94608035.03418866,0.0,7281.964102152996,7167.963595684729,7177.200248396604,8639.772437545926,398246369.98739299,0.0,28186614.07570998,0.0 - 01/26 16:00:00,40923571.712293159,0.0,109142915.05383049,0.0,64662547.62938832,0.0,94324151.8254428,0.0,16952.110978744815,16686.722518959385,16708.225064103426,20113.032574422585,562709514.3113835,0.0,28186614.07570998,0.0 - 01/26 17:00:00,78327190.14212507,0.0,126096746.64009184,0.0,73026744.33830032,0.0,107163041.21138183,0.0,21682.470127036424,21343.02701233686,21370.529681079737,25725.423134960995,709050942.1713895,0.0,35233267.594637479,0.0 - 01/26 18:00:00,100775281.75169218,0.0,140015310.45338638,0.0,83019021.6009644,0.0,119961107.33763437,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,695377093.7563293,0.0,14093307.03785499,0.0 - 01/26 19:00:00,94220098.96780738,0.0,131247927.96391085,0.0,73605214.20779273,0.0,108790388.95077682,0.0,16723.358419519715,16461.5511237227,16482.763512541213,19841.626394924006,658097108.1128352,0.0,63419881.67034747,0.0 - 01/26 20:00:00,84766041.37761137,0.0,119989833.62558049,0.0,61284126.96072941,0.0,94220474.24423862,0.0,14334.307216731186,14109.900963190887,14128.083010749613,17007.108338506296,574746314.5132007,0.0,63419881.67034747,69761869.8373822 - 01/26 21:00:00,91703201.50952873,0.0,125507066.63038406,0.0,65569784.77434948,0.0,99885932.2366894,0.0,11908.806963429963,11722.372368831724,11737.477842106638,14129.344875001067,560858792.5286815,0.0,49326574.63249246,69761869.8373822 - 01/26 22:00:00,104009868.02889797,0.0,136948127.4637505,0.0,73751276.12807957,0.0,110856426.73241762,0.0,9391.233764406763,9244.21224789205,9256.124358910587,11142.340376037118,566087777.0432332,0.0,35233267.594637479,69761869.8373822 - 01/26 23:00:00,109707058.93161442,0.0,141607542.942216,0.0,76823383.47604886,0.0,115128581.04601597,0.0,7104.449046749938,6993.227571589407,7002.2390590993,8429.157600476441,549571230.1963896,0.0,35233267.594637479,62010550.96656194 - 01/26 24:00:00,116210809.4170931,0.0,146557841.573529,0.0,81334533.19179723,0.0,120655280.55468783,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,535211727.72705236,0.0,35233267.594637479,46507913.22492146 - 01/27 01:00:00,129180252.58379469,0.0,158530910.81366907,0.0,91880044.58067762,0.0,133829435.68255472,0.0,2347.8084411016909,2311.0530619730127,2314.0310897276469,2785.5850940092798,548551163.3332179,0.0,21139960.556782485,23253956.61246073 - 01/27 02:00:00,90636120.53145084,0.0,117144922.36561261,0.0,56840222.79537666,0.0,89618565.51980368,0.0,1173.9042205508454,1155.5265309865063,1157.0155448638234,1392.7925470046399,371805091.0485047,0.0,14093307.03785499,0.0 - 01/27 03:00:00,117972938.31364407,0.0,144076307.4884436,0.0,80536071.7914837,0.0,119805656.02830208,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,480061363.43819066,0.0,14093307.03785499,0.0 - 01/27 04:00:00,120483939.55701044,0.0,145550727.455756,0.0,82624624.41893684,0.0,121838332.1336909,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,488168013.3817115,0.0,14093307.03785499,0.0 - 01/27 05:00:00,123794486.03661755,0.0,148393456.7456494,0.0,84854899.9909108,0.0,124563639.9928261,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,499276872.58232119,0.0,14093307.03785499,0.0 - 01/27 06:00:00,127295521.03556352,0.0,151337510.0552786,0.0,87258606.48570001,0.0,127493452.26083222,0.0,1177.1158460853229,1158.687877924113,1160.1809655196315,1396.6030181060135,510998405.5848605,0.0,14093307.03785499,0.0 - 01/27 07:00:00,125309381.421059,0.0,148580693.1238804,0.0,84822204.26132152,0.0,124302367.97921613,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,500685036.6017943,0.0,14093307.03785499,15502637.741640486 - 01/27 08:00:00,118710238.57795069,0.0,147532869.72209663,0.0,82825057.16993383,0.0,121841026.71771162,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,488728472.9254657,0.0,56373228.15141996,38756594.35410121 - 01/27 09:00:00,91692112.08016235,0.0,141847086.5437451,0.0,80938194.36648156,0.0,118969099.00463893,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,504941771.43004158,0.0,56373228.15141996,38756594.35410121 - 01/27 10:00:00,67117707.38491702,0.0,139298638.79497088,0.0,83909704.47390837,0.0,121632973.26039012,0.0,7167.153608365593,7054.950481595443,7064.041505374807,8503.554169253148,519201943.0667067,0.0,28186614.07570998,0.0 - 01/27 11:00:00,44748213.1752697,0.0,137519182.33235259,0.0,83977366.21127337,0.0,121388597.61919946,0.0,7206.475870491073,7093.657146371787,7102.798047639422,8550.208532242006,495464661.8863746,0.0,28186614.07570998,0.0 - 01/27 12:00:00,35331076.25027074,0.0,137265067.4953013,0.0,85458958.35385496,0.0,122833724.99817258,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,453158270.4116335,0.0,28186614.07570998,0.0 - 01/27 13:00:00,33899883.20399439,0.0,132021009.74995868,0.0,81935903.1336955,0.0,113787157.66275504,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,434284514.6714762,0.0,28186614.07570998,0.0 - 01/27 14:00:00,44564763.121495258,0.0,117078769.04835756,0.0,73918061.65666385,0.0,103916622.21685593,0.0,7318.042436974457,7203.477117444153,7212.759532953605,8682.578004616882,448978901.57453337,0.0,28186614.07570998,0.0 - 01/27 15:00:00,61560598.56510788,0.0,117128178.92827685,0.0,71092303.90004854,0.0,102706302.93473616,0.0,9782.97647591426,9629.822154171365,9642.231162912527,11607.128149502149,498871152.9211705,0.0,28186614.07570998,0.0 - 01/27 16:00:00,86300358.73449546,0.0,125651182.94677516,0.0,74459487.56547806,0.0,108353446.2389037,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,577744186.2269038,0.0,28186614.07570998,0.0 - 01/27 17:00:00,98694972.68434254,0.0,131987242.0045868,0.0,76958456.47137355,0.0,112049991.82392341,0.0,14636.084873948914,14406.954234888306,14425.51906590721,17365.156009233764,638692034.0465478,0.0,35233267.594637479,0.0 - 01/27 18:00:00,103901461.08157665,0.0,134756041.99145446,0.0,79522140.8056121,0.0,115079852.90989723,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,689431091.8262923,0.0,14093307.03785499,0.0 - 01/27 19:00:00,92899521.00332928,0.0,122210157.89113496,0.0,66887621.16529714,0.0,99851094.60903496,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,528607959.2260233,0.0,63419881.67034747,0.0 - 01/27 20:00:00,81007546.05994243,0.0,109131170.03970149,0.0,53664014.06434692,0.0,83894948.29315612,0.0,7318.042436974457,7203.477117444153,7212.759532953605,8682.578004616882,437198363.98830768,0.0,63419881.67034747,69761869.8373822 - 01/27 21:00:00,86373164.66264037,0.0,113604686.64610739,0.0,56994101.51998498,0.0,88347909.17473112,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,418511746.29996439,0.0,49326574.63249246,69761869.8373822 - 01/27 22:00:00,92310623.3532295,0.0,118872030.05019096,0.0,60873449.81312355,0.0,93544148.7897616,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,438600709.02707937,0.0,35233267.594637479,69761869.8373822 - 01/27 23:00:00,98063270.05703084,0.0,124519601.44122869,0.0,64256806.46939693,0.0,98228683.59153971,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,458068818.5799699,0.0,35233267.594637479,62010550.96656194 - 01/27 24:00:00,104444983.23079843,0.0,130388662.10158539,0.0,68695041.4970037,0.0,103939697.37183839,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,480468841.2219997,0.0,35233267.594637479,46507913.22492146 - 01/28 01:00:00,115635342.16797605,0.0,140742674.41616423,0.0,78117005.3680652,0.0,115537593.0694974,0.0,2433.9284506934016,2395.8248467488926,2398.9121116006865,2887.763197986977,486451758.00701078,0.0,21139960.556782485,23253956.61246073 - 01/28 02:00:00,78032981.01604335,0.0,99681495.93839392,0.0,42867258.746593359,0.0,71513242.22726433,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873273,310213287.07761129,0.0,14093307.03785499,0.0 - 01/28 03:00:00,108917208.8893336,0.0,130359652.26674576,0.0,70131100.36258555,0.0,105997087.96802579,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,433523358.63600698,0.0,14093307.03785499,0.0 - 01/28 04:00:00,110782189.81900984,0.0,132100401.12612836,0.0,72349261.89065887,0.0,107958425.89549145,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,441350418.96155676,0.0,14093307.03785499,0.0 - 01/28 05:00:00,112868425.89672145,0.0,133425204.43937013,0.0,74183218.5790839,0.0,109773323.23755142,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,448368481.3020432,0.0,14093307.03785499,0.0 - 01/28 06:00:00,116842884.77448556,0.0,136000889.29320345,0.0,76735390.26427911,0.0,112872278.32144898,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,460518803.4819256,0.0,14093307.03785499,0.0 - 01/28 07:00:00,116981003.41255671,0.0,136221621.7571494,0.0,75895045.03175608,0.0,112065086.63298063,0.0,4818.326694896983,4742.894891630415,4749.006595795498,5716.760696657999,513259916.798774,0.0,14093307.03785499,15502637.741640486 - 01/28 08:00:00,111840761.40167624,0.0,139229702.55864088,0.0,76019081.18058548,0.0,112628647.4751133,0.0,19273.306779587932,18971.57956652166,18996.02638318199,22867.042786631995,728106832.4733408,0.0,56373228.15141996,38756594.35410121 - 01/28 09:00:00,86711041.14622061,0.0,134532196.3200419,0.0,76134010.6859753,0.0,112205322.89263693,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,661922630.9200339,0.0,56373228.15141996,38756594.35410121 - 01/28 10:00:00,75389104.31468368,0.0,133386941.8930787,0.0,81676738.0901757,0.0,117690553.54425788,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,589326429.3353593,0.0,28186614.07570998,0.0 - 01/28 11:00:00,59924470.95216857,0.0,130478522.07188867,0.0,80881869.96321169,0.0,116392778.12266225,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,532624114.3044619,0.0,28186614.07570998,0.0 - 01/28 12:00:00,53795928.315692517,0.0,130874175.08964148,0.0,82576156.99603918,0.0,118287964.96796659,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,458174786.2904123,0.0,28186614.07570998,0.0 - 01/28 13:00:00,55215882.443850759,0.0,132651506.00866625,0.0,83203649.47853178,0.0,115842514.13464883,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,459554112.9867702,0.0,28186614.07570998,0.0 - 01/28 14:00:00,57649199.99279767,0.0,129191518.55371717,0.0,81196075.21683885,0.0,113551479.79830563,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,454061510.15892478,0.0,28186614.07570998,0.0 - 01/28 15:00:00,75536240.98948865,0.0,130810574.42069972,0.0,80272037.96739577,0.0,114875847.15303087,0.0,7265.190419462064,7151.452508125451,7160.667884615754,8619.871103323967,510204555.4265131,0.0,28186614.07570998,0.0 - 01/28 16:00:00,102785537.80133929,0.0,142691633.75983394,0.0,84778090.21012643,0.0,122866240.81466776,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,634304594.0791309,0.0,28186614.07570998,0.0 - 01/28 17:00:00,125775542.31047602,0.0,156992719.49568699,0.0,91086331.27275041,0.0,132225517.68737988,0.0,12074.601416950005,11885.571279252983,11900.887050981342,14326.053665339228,686753719.051378,0.0,35233267.594637479,0.0 - 01/28 18:00:00,136099737.0932169,0.0,164371935.36008764,0.0,96358207.05407778,0.0,139020003.49636848,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,788792934.6028695,0.0,14093307.03785499,0.0 - 01/28 19:00:00,123289442.57265838,0.0,150048148.66227935,0.0,82222084.75354168,0.0,121866367.19416657,0.0,16952.110978744815,16686.722518959385,16708.225064103426,20113.032574422585,731082371.2730748,0.0,63419881.67034747,0.0 - 01/28 20:00:00,110243451.59997796,0.0,136015555.41167058,0.0,68045637.68301663,0.0,104779978.99722725,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,564031096.8864231,0.0,63419881.67034747,69761869.8373822 - 01/28 21:00:00,114380962.9086493,0.0,139263307.1088697,0.0,71005183.17568678,0.0,108462071.65152551,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,578057998.039262,0.0,49326574.63249246,69761869.8373822 - 01/28 22:00:00,119488496.4050305,0.0,141869559.04283507,0.0,74135479.77906925,0.0,112386331.54601512,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,520353103.3702153,0.0,35233267.594637479,69761869.8373822 - 01/28 23:00:00,121969965.25699273,0.0,144006477.9208145,0.0,75961297.05683035,0.0,114665226.2289335,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,529076203.06083658,0.0,35233267.594637479,62010550.96656194 - 01/28 24:00:00,126798331.87838874,0.0,149865127.954334,0.0,80356685.96697603,0.0,120206186.17424618,0.0,2414.920283390001,2377.114255850597,2380.177410196268,2865.2107330678456,513361053.63096186,0.0,35233267.594637479,46507913.22492146 - 01/29 01:00:00,137899280.90908358,0.0,158795200.110995,0.0,89563603.13665764,0.0,131498349.79259037,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,553805013.9314922,0.0,21139960.556782485,23253956.61246073 - 01/29 02:00:00,96110828.55048736,0.0,114856706.0548453,0.0,53135692.61150634,0.0,85731114.54787943,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,367858631.75580129,0.0,14093307.03785499,0.0 - 01/29 03:00:00,125199866.77416532,0.0,144205780.81277866,0.0,78718028.74822214,0.0,117993619.95256356,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,484089180.0457762,0.0,14093307.03785499,0.0 - 01/29 04:00:00,127551601.10038616,0.0,146062365.68909488,0.0,81400130.29964257,0.0,120645813.13315939,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,493631793.9803296,0.0,14093307.03785499,0.0 - 01/29 05:00:00,129597959.667761,0.0,147841828.4338759,0.0,83418974.05767535,0.0,122800773.15667589,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,501587158.4813138,0.0,14093307.03785499,0.0 - 01/29 06:00:00,130850538.6400705,0.0,148897276.51032944,0.0,84707193.33050582,0.0,124129161.66054225,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,506511793.3067737,0.0,14093307.03785499,0.0 - 01/29 07:00:00,128564292.16180946,0.0,146566531.97026447,0.0,82346275.58131123,0.0,121198422.04278183,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,550386014.41747,0.0,14093307.03785499,15502637.741640486 - 01/29 08:00:00,129754406.09735984,0.0,152556891.75772304,0.0,85143563.14799793,0.0,125131164.94588255,0.0,19112.40962230825,18813.20128425452,18837.444014332814,22676.144451341726,778567143.6890178,0.0,56373228.15141996,38756594.35410121 - 01/29 09:00:00,124485879.1447295,0.0,156992719.59421809,0.0,91419716.54941404,0.0,132474818.02524299,0.0,16773.698637059948,16511.103255766382,16532.379497564714,19901.353141431257,756359857.6281649,0.0,56373228.15141996,38756594.35410121 - 01/29 10:00:00,124555836.59836214,0.0,159659472.305242,0.0,98413310.21558267,0.0,140245040.8602306,0.0,11981.213312185679,11793.645182690276,11808.842498260512,14215.25224387947,702149891.6326748,0.0,28186614.07570998,0.0 - 01/29 11:00:00,113946348.39139378,0.0,154311329.77705715,0.0,95687395.05644629,0.0,136640429.29694913,0.0,9636.653389793966,9485.78978326083,9498.013191590995,11433.521393315998,644779822.4505088,0.0,28186614.07570998,0.0 - 01/29 12:00:00,98568221.9238537,0.0,149168682.29181815,0.0,93197861.20529391,0.0,133148209.56688874,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,546556211.5851199,0.0,28186614.07570998,0.0 - 01/29 13:00:00,80089491.46243549,0.0,146146527.62565018,0.0,91295810.10908804,0.0,127250614.43294166,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,517423004.55118796,0.0,28186614.07570998,0.0 - 01/29 14:00:00,60121948.64852601,0.0,134869600.8500818,0.0,85114635.383101,0.0,117959163.41662577,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,471065805.31910839,0.0,28186614.07570998,0.0 - 01/29 15:00:00,58636679.65790766,0.0,126325558.73911026,0.0,77308739.09152052,0.0,109882774.83282441,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,481941578.7661137,0.0,28186614.07570998,0.0 - 01/29 16:00:00,68217680.15244399,0.0,124687894.44088856,0.0,73031269.82847129,0.0,106709821.65185887,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,555626376.8149141,0.0,28186614.07570998,0.0 - 01/29 17:00:00,101544508.77036385,0.0,136916330.22823975,0.0,78835138.1282773,0.0,115749673.35546097,0.0,12196.737394957428,12005.795195740257,12021.26588825601,14470.963341028135,615546793.0342765,0.0,35233267.594637479,0.0 - 01/29 18:00:00,125339086.03955102,0.0,150247682.27752204,0.0,89382230.76477355,0.0,128610867.49254246,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,748513867.471544,0.0,14093307.03785499,0.0 - 01/29 19:00:00,113897947.39623939,0.0,138032663.35301478,0.0,76640427.56871684,0.0,113392753.50328639,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,696205755.0450115,0.0,63419881.67034747,0.0 - 01/29 20:00:00,100360594.24727795,0.0,123427469.74637847,0.0,62630099.4264881,0.0,96268669.44306988,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,527967954.70535966,0.0,63419881.67034747,69761869.8373822 - 01/29 21:00:00,103075491.14622726,0.0,125085085.9710046,0.0,64955224.129858288,0.0,98756672.64242804,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,537153595.7316635,0.0,49326574.63249246,69761869.8373822 - 01/29 22:00:00,107679794.46259642,0.0,129197401.44827998,0.0,68883387.63288509,0.0,103598406.44912409,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,481628433.30691948,0.0,35233267.594637479,69761869.8373822 - 01/29 23:00:00,109881532.54049117,0.0,131091852.53323972,0.0,70613809.97904949,0.0,105754086.06715477,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,489814517.7172006,0.0,35233267.594637479,62010550.96656194 - 01/29 24:00:00,113252428.40895413,0.0,134091879.03835809,0.0,73522910.03520511,0.0,109310554.84835953,0.0,2421.7301398206884,2383.8175027084846,2386.889294871918,2873.290367774655,466414390.62950959,0.0,35233267.594637479,46507913.22492146 - 01/30 01:00:00,121374239.07446519,0.0,141618573.4970552,0.0,81251331.28204105,0.0,118555922.83713685,0.0,2421.7301398206884,2383.8175027084846,2386.889294871918,2873.290367774655,499036684.98933097,0.0,21139960.556782485,23253956.61246073 - 01/30 02:00:00,80814571.81219894,0.0,99864664.17389915,0.0,44641677.14354248,0.0,72918192.77145176,0.0,1207.4601416950005,1188.5571279252986,1190.0887050981338,1432.6053665339228,316306466.7296008,0.0,14093307.03785499,0.0 - 01/30 03:00:00,111451111.24774803,0.0,131227646.42857424,0.0,71616812.83729583,0.0,107726227.98873124,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,440089159.3308578,0.0,14093307.03785499,0.0 - 01/30 04:00:00,113836388.31691033,0.0,133368469.00683475,0.0,74209427.07358806,0.0,110408845.44827092,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,449890490.67411258,0.0,14093307.03785499,0.0 - 01/30 05:00:00,114315817.65559767,0.0,133368324.3916015,0.0,74957226.33722118,0.0,110865077.19107664,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,451624754.72481337,0.0,14093307.03785499,0.0 - 01/30 06:00:00,115377820.11075309,0.0,134290848.5896454,0.0,75824955.58649467,0.0,111818583.11814323,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,455430516.5543527,0.0,14093307.03785499,0.0 - 01/30 07:00:00,112209995.49306464,0.0,130880754.84097784,0.0,72749816.46145183,0.0,107892527.23266196,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,496373654.9492288,0.0,14093307.03785499,15502637.741640486 - 01/30 08:00:00,117770174.53484249,0.0,137487566.91509874,0.0,76224450.1410059,0.0,112557697.33112383,0.0,19471.42760554721,19166.59877399114,19191.29689280549,23102.105583895816,735393032.8045337,0.0,56373228.15141996,38756594.35410121 - 01/30 09:00:00,129011366.92557615,0.0,149399342.51991535,0.0,87110610.10455406,0.0,125930490.3412459,0.0,17075.4323529404,16808.113274036357,16829.77224355841,20259.348677439386,746953409.4639998,0.0,56373228.15141996,38756594.35410121 - 01/30 10:00:00,133473551.15259943,0.0,152800556.8274785,0.0,92882296.57994253,0.0,132503107.30731455,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,695108967.5638688,0.0,28186614.07570998,0.0 - 01/30 11:00:00,126876545.64580192,0.0,145685347.26337255,0.0,87942074.81137648,0.0,126127966.97927773,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,634358133.8974705,0.0,28186614.07570998,0.0 - 01/30 12:00:00,116528028.82360102,0.0,135196261.83806158,0.0,81453846.03569147,0.0,117388128.53006846,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,525050031.7656878,0.0,28186614.07570998,0.0 - 01/30 13:00:00,109167635.37657939,0.0,127093909.6765931,0.0,75717208.15710888,0.0,109700069.46421841,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,496754296.840255,0.0,28186614.07570998,0.0 - 01/30 14:00:00,101680500.6424689,0.0,118471597.77177149,0.0,69624950.3165392,0.0,101472802.8555464,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,466941392.56924197,0.0,28186614.07570998,0.0 - 01/30 15:00:00,93822847.53539373,0.0,110117022.5528843,0.0,64375489.07176885,0.0,94104502.81745513,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,476325430.01030269,0.0,28186614.07570998,0.0 - 01/30 16:00:00,92128823.37415377,0.0,106911048.59411657,0.0,61526774.18900028,0.0,90241157.94508109,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,541398983.4529858,0.0,28186614.07570998,0.0 - 01/30 17:00:00,87674419.33647266,0.0,101424895.42669299,0.0,56851932.67112858,0.0,84022919.99790487,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,521271442.3285802,0.0,35233267.594637479,0.0 - 01/30 18:00:00,86134951.76768503,0.0,99050465.99725992,0.0,56211731.9711763,0.0,82566749.62560313,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,592045930.9237778,0.0,14093307.03785499,0.0 - 01/30 19:00:00,67613380.02086887,0.0,80066109.37723841,0.0,39072745.126257847,0.0,61251682.09846562,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,516677208.85240867,0.0,63419881.67034747,0.0 - 01/30 20:00:00,49535854.15232894,0.0,61627239.708940539,0.0,22294817.218270754,0.0,40427903.796980287,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,327542966.5341678,0.0,63419881.67034747,69761869.8373822 - 01/30 21:00:00,53119870.235744889,0.0,64855346.93495966,0.0,25662953.122132146,0.0,44484832.01953531,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,341160822.2294769,0.0,49326574.63249246,69761869.8373822 - 01/30 22:00:00,65850026.92681925,0.0,77911823.87548164,0.0,35526047.08351822,0.0,57348683.976813439,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,312087634.27313616,0.0,35233267.594637479,69761869.8373822 - 01/30 23:00:00,78160991.38197203,0.0,91282582.65872653,0.0,44604224.57389699,0.0,69753153.55015372,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,358600918.43858948,0.0,35233267.594637479,62010550.96656194 - 01/30 24:00:00,87862901.50544518,0.0,101575569.36299812,0.0,52143516.06375715,0.0,79783312.22633837,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,358607182.42767146,0.0,35233267.594637479,46507913.22492146 - 01/31 01:00:00,99599326.16222009,0.0,113549467.01475999,0.0,62451897.489538777,0.0,92775878.59949614,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,405550218.2058412,0.0,21139960.556782485,23253956.61246073 - 01/31 02:00:00,59363023.74561713,0.0,72115239.05010335,0.0,28340433.89347303,0.0,48090497.873589519,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,226530136.19734938,0.0,14093307.03785499,0.0 - 01/31 03:00:00,87652882.2808845,0.0,100701709.7299707,0.0,51986365.09391507,0.0,80222129.79460114,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,339149911.36928459,0.0,14093307.03785499,0.0 - 01/31 04:00:00,90249678.38221848,0.0,103142581.57707507,0.0,55166778.97581996,0.0,83459399.25165269,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,350605262.6566794,0.0,14093307.03785499,0.0 - 01/31 05:00:00,91042922.45479435,0.0,103837084.2609957,0.0,56265823.62589134,0.0,84449355.671656,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,354216127.64790377,0.0,14093307.03785499,0.0 - 01/31 06:00:00,92518935.9045124,0.0,105354741.21369764,0.0,57727948.102698829,0.0,86090866.4968682,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,360279316.18769028,0.0,14093307.03785499,0.0 - 01/31 07:00:00,90733206.26924207,0.0,103725254.50947044,0.0,55850487.97820719,0.0,83803101.80752337,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,408459348.4440957,0.0,14093307.03785499,15502637.741640486 - 01/31 08:00:00,97458512.80420402,0.0,111589020.92561235,0.0,60248384.70469373,0.0,89759150.33530703,0.0,19830.083324936444,19519.639671186174,19544.7927192307,23527.63690422066,655774818.2002835,0.0,56373228.15141996,38756594.35410121 - 01/31 09:00:00,107035082.37847775,0.0,122230727.45473853,0.0,71176313.46381718,0.0,102759496.76789747,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,663417162.6437148,0.0,56373228.15141996,38756594.35410121 - 01/31 10:00:00,99966028.76810487,0.0,120076769.80124949,0.0,74670454.30386448,0.0,106058107.47106786,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,586980776.6899498,0.0,28186614.07570998,0.0 - 01/31 11:00:00,78532641.53613803,0.0,111574345.9682245,0.0,69512113.03041226,0.0,99435943.43341582,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,508342807.6183862,0.0,28186614.07570998,0.0 - 01/31 12:00:00,86840484.15055339,0.0,114076191.25920138,0.0,70633635.2155992,0.0,101243735.97017166,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,447437928.4206234,0.0,28186614.07570998,0.0 - 01/31 13:00:00,86861121.16488886,0.0,114011969.63960324,0.0,70254904.1440268,0.0,100156582.47596108,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,445928459.2495778,0.0,28186614.07570998,0.0 - 01/31 14:00:00,87815734.41081183,0.0,113465808.1730816,0.0,69566556.24082533,0.0,99497848.74483186,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,444989829.39464846,0.0,28186614.07570998,0.0 - 01/31 15:00:00,92273459.77689547,0.0,115194587.58783257,0.0,69543298.00617975,0.0,100206600.51828672,0.0,7482.790069398141,7365.6455949486039,7375.136981093513,8878.044781683835,489183768.6268412,0.0,28186614.07570998,0.0 - 01/31 16:00:00,103469344.61765102,0.0,121267839.58303726,0.0,71956474.71119799,0.0,104172050.03585896,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,587475413.5104898,0.0,28186614.07570998,0.0 - 01/31 17:00:00,105911280.35942868,0.0,123490979.52718258,0.0,71712812.9347325,0.0,104459232.91624028,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,592184010.3003286,0.0,35233267.594637479,0.0 - 01/31 18:00:00,113132173.02915052,0.0,129038587.03821236,0.0,75860428.49227953,0.0,109695662.6313173,0.0,17459.843495262332,17186.50638821341,17208.652955884863,20715.437823928944,688980437.5788021,0.0,14093307.03785499,0.0 - 01/31 19:00:00,100423662.143165,0.0,116379658.24674732,0.0,62525411.66426205,0.0,93803190.3466667,0.0,17434.979239241366,17162.031386758874,17184.146415892843,20685.93733328707,634013462.1514896,0.0,63419881.67034747,0.0 - 01/31 20:00:00,86295740.6590489,0.0,102282362.79140137,0.0,48228034.05084753,0.0,76566724.6823278,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,462660625.8338212,0.0,63419881.67034747,69761869.8373822 - 01/31 21:00:00,88181970.59466343,0.0,103887747.70499937,0.0,49980961.91592885,0.0,78653760.2175934,0.0,9994.476619958401,9838.011224005182,9850.688505612241,11858.064996953688,470252909.2806913,0.0,49326574.63249246,69761869.8373822 - 01/31 22:00:00,89752858.74935173,0.0,105197086.65544051,0.0,51539968.54511076,0.0,80489483.73561724,0.0,5010.7825512365229,4932.337815636353,4938.693636345055,5945.102223713183,401956296.1024722,0.0,35233267.594637479,69761869.8373822 - 01/31 23:00:00,88207215.13545391,0.0,103237118.33685306,0.0,50684449.75178713,0.0,79102268.1747857,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,396567985.24465849,0.0,35233267.594637479,62010550.96656194 - 01/31 24:00:00,86059062.28953849,0.0,100426009.06706029,0.0,49982127.67612602,0.0,77545155.68460235,0.0,2532.7616268879266,2493.1107711327815,2496.323398827912,3005.0249888475107,351910349.54583325,0.0,35233267.594637479,46507913.22492146 - 02/01 01:00:00,87203897.56193438,0.0,100686681.92006013,0.0,53013879.29531252,0.0,80288104.79088825,0.0,2546.8868606728449,2507.0148717477375,2510.2454162956726,3021.784039539995,359301915.8459178,0.0,21139960.556782485,23253956.61246073 - 02/01 02:00:00,37593746.21108884,0.0,50413553.78914344,0.0,11922334.812577773,0.0,27744929.184628428,0.0,1278.7173527308478,1258.6987940293598,1260.3207558981818,1517.1493273729885,146808154.42555145,0.0,14093307.03785499,0.0 - 02/01 03:00:00,59071733.825608488,0.0,69934964.28788576,0.0,32495493.14093832,0.0,52466399.805433679,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,233149426.61271594,0.0,14093307.03785499,0.0 - 02/01 04:00:00,56096087.892477888,0.0,66023372.803168509,0.0,31337147.81647481,0.0,50223207.50149707,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,222883787.41235415,0.0,14093307.03785499,0.0 - 02/01 05:00:00,53855551.7278242,0.0,63253308.09537637,0.0,30543794.394006205,0.0,48421829.49328339,0.0,1284.2557518663967,1264.1504884932545,1265.779475426836,1523.7204265336252,215290945.8228426,0.0,14093307.03785499,0.0 - 02/01 06:00:00,51778881.83388702,0.0,60752215.14568651,0.0,29621866.66096743,0.0,46642074.80231449,0.0,1285.249089511789,1265.1282752525013,1266.7585221641226,1524.898983731854,208026363.9772324,0.0,14093307.03785499,0.0 - 02/01 07:00:00,49119841.80031764,0.0,58020736.42818916,0.0,27340250.459134025,0.0,43587198.06066078,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,254831824.52818103,0.0,14093307.03785499,15502637.741640486 - 02/01 08:00:00,44357401.12863961,0.0,57423515.003761228,0.0,30162490.983092648,0.0,43412507.506749559,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,482670217.93753769,0.0,56373228.15141996,38756594.35410121 - 02/01 09:00:00,42752370.77904398,0.0,62425633.1215441,0.0,34802341.94099511,0.0,49012645.87156016,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,457893007.1140261,0.0,56373228.15141996,38756594.35410121 - 02/01 10:00:00,49244254.45862432,0.0,68159220.62200064,0.0,41708969.43929011,0.0,60400462.113530579,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,411584346.2055048,0.0,28186614.07570998,0.0 - 02/01 11:00:00,40084168.756423529,0.0,62180547.99483955,0.0,39082282.41545077,0.0,56416414.84880297,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,351567256.9322611,0.0,28186614.07570998,0.0 - 02/01 12:00:00,7114476.629216631,0.0,55112473.22615141,0.0,35918840.096262779,0.0,51865913.68881147,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,226971072.56298883,0.0,28186614.07570998,0.0 - 02/01 13:00:00,0.0,0.0,51054401.653656709,0.0,33753778.47923537,0.0,45028184.36424184,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,206860241.08911783,0.0,28186614.07570998,0.0 - 02/01 14:00:00,0.0,7644606.048187104,46838412.94449958,0.0,30672328.09802351,0.0,40928912.94805397,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,195463530.58256097,7644606.048187104,28186614.07570998,0.0 - 02/01 15:00:00,0.0,599162.7821697093,41170613.3421937,0.0,25671584.373196514,0.0,36701475.01536059,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,219079487.61872668,599162.7821697093,28186614.07570998,0.0 - 02/01 16:00:00,2600013.9131461537,0.0,42564698.83774589,0.0,23978228.915919328,0.0,36400514.75295623,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,298228273.3705236,0.0,28186614.07570998,0.0 - 02/01 17:00:00,26298401.55331131,0.0,51114705.75029126,0.0,26438386.842053355,0.0,41208766.17724937,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,337745077.27366128,0.0,35233267.594637479,0.0 - 02/01 18:00:00,47460307.32428324,0.0,64815219.209128748,0.0,35620739.91510447,0.0,53133368.84221192,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,470788379.0217867,0.0,14093307.03785499,0.0 - 02/01 19:00:00,37835639.67553231,0.0,53688400.14328334,0.0,23686119.932537576,0.0,38970957.45762548,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,423538908.4378915,0.0,63419881.67034747,0.0 - 02/01 20:00:00,25674802.754569755,0.0,40182255.638028997,0.0,10086272.949133426,0.0,22498113.594528274,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,252589298.49686525,0.0,63419881.67034747,69761869.8373822 - 02/01 21:00:00,28984834.14039208,0.0,42240892.05193192,0.0,12222079.106716009,0.0,25052207.819396557,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,262647866.67904137,0.0,49326574.63249246,69761869.8373822 - 02/01 22:00:00,33781318.31287831,0.0,46220811.158259447,0.0,15735391.3707821,0.0,29474449.885321697,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,202235847.31922547,0.0,35233267.594637479,69761869.8373822 - 02/01 23:00:00,37731286.284793738,0.0,49656653.72919841,0.0,18550469.95382443,0.0,33087836.04510169,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,215985614.93546478,0.0,35233267.594637479,62010550.96656194 - 02/01 24:00:00,40278556.71108178,0.0,51552520.46187495,0.0,20657988.859894009,0.0,35554417.33230336,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,186608244.16630934,0.0,35233267.594637479,46507913.22492146 - 02/02 01:00:00,48157709.7010823,0.0,58801315.44199578,0.0,28050779.161807695,0.0,44412378.62431294,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,217959146.31934989,0.0,21139960.556782485,23253956.61246073 - 02/02 02:00:00,12539763.681977313,0.0,21790806.68350733,0.0,0.0,0.0,5534734.07307283,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,59090784.80315051,0.0,14093307.03785499,0.0 - 02/02 03:00:00,37579884.60316864,0.0,46809694.64564599,0.0,17123956.015741074,0.0,32367637.434234259,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,153121014.92942656,0.0,14093307.03785499,0.0 - 02/02 04:00:00,37815112.95356044,0.0,46064742.58999335,0.0,19969881.578139035,0.0,33639710.39251573,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,156745416.66220454,0.0,14093307.03785499,0.0 - 02/02 05:00:00,39509364.60462291,0.0,47503922.53977162,0.0,21894186.505502304,0.0,35645834.36144255,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,163778788.37593246,0.0,14093307.03785499,0.0 - 02/02 06:00:00,40840498.668577808,0.0,48654192.40820658,0.0,23098866.519770184,0.0,36869500.161014068,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,168702899.98820529,0.0,14093307.03785499,0.0 - 02/02 07:00:00,38630989.868767637,0.0,46353898.79661395,0.0,20905052.097165098,0.0,34051947.23198023,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,159167368.35911996,0.0,14093307.03785499,15502637.741640486 - 02/02 08:00:00,45803814.47416966,0.0,56192231.406705219,0.0,30372362.95386333,0.0,44833383.95461638,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,254275719.56965698,0.0,56373228.15141996,38756594.35410121 - 02/02 09:00:00,38217648.4187704,0.0,58559728.656358558,0.0,34137307.97875526,0.0,49216854.310584578,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,372691230.8444286,0.0,56373228.15141996,38756594.35410121 - 02/02 10:00:00,26882203.08531688,0.0,51452890.23776649,0.0,30801826.69149213,0.0,45071547.44254692,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,346893284.4078784,0.0,28186614.07570998,0.0 - 02/02 11:00:00,44091566.928187,0.0,60893982.96157529,0.0,34719160.08277843,0.0,51803964.637391,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,384332478.6157081,0.0,28186614.07570998,0.0 - 02/02 12:00:00,44524017.57477689,0.0,67766023.07117735,0.0,37379775.41065457,0.0,56343839.94967471,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,321624546.17673709,0.0,28186614.07570998,0.0 - 02/02 13:00:00,52193153.58989926,0.0,66492340.54472014,0.0,36604016.83363809,0.0,55318821.65045501,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,326366507.23555228,0.0,28186614.07570998,0.0 - 02/02 14:00:00,56078815.58650521,0.0,68181326.192259,0.0,37188309.41622123,0.0,56357889.29736142,0.0,7731.966829586066,7610.921446471907,7620.7288955862909,9173.683495985118,333500622.89581266,0.0,28186614.07570998,0.0 - 02/02 15:00:00,58439723.35501676,0.0,69709480.84203291,0.0,37949857.09873052,0.0,57382167.81130825,0.0,7731.966829586066,7610.921446471907,7620.7288955862909,9173.683495985118,339175511.5105542,0.0,28186614.07570998,0.0 - 02/02 16:00:00,61761826.17036142,0.0,72247359.02480817,0.0,39297418.59805231,0.0,59143336.782287407,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,502208684.30656769,0.0,28186614.07570998,0.0 - 02/02 17:00:00,61593863.32931255,0.0,71833248.28620592,0.0,38141440.624655608,0.0,57787763.29853745,0.0,23195.900488758198,22832.764339415724,22862.18668675887,27521.050487955352,576439162.7491088,0.0,35233267.594637479,0.0 - 02/02 18:00:00,62810096.811537738,0.0,72680550.01612717,0.0,39333402.80212799,0.0,59022773.75281395,0.0,18051.21922645151,17768.62402200979,17791.520707667903,21417.082554785447,503949230.82189956,0.0,14093307.03785499,0.0 - 02/02 19:00:00,50435310.40264206,0.0,60337639.804691787,0.0,27223351.227905826,0.0,44332757.99695713,0.0,18041.255935700818,17758.816708434446,17781.70075636801,21405.26149063194,452282385.04028359,0.0,63419881.67034747,0.0 - 02/02 20:00:00,37281580.24039528,0.0,47517507.014987979,0.0,13914309.0648503,0.0,28436931.743380909,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,358372108.40452167,0.0,63419881.67034747,69761869.8373822 - 02/02 21:00:00,40451541.393348637,0.0,50728712.50856595,0.0,16654529.888727792,0.0,31956112.65403237,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,332475713.39543077,0.0,49326574.63249246,69761869.8373822 - 02/02 22:00:00,43185481.648537088,0.0,53409941.41302588,0.0,19216414.217188918,0.0,35138587.1375422,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,305098277.97689887,0.0,35233267.594637479,69761869.8373822 - 02/02 23:00:00,43012412.44780138,0.0,53012416.158338528,0.0,19414499.298919646,0.0,35203293.666005749,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,266400796.18790505,0.0,35233267.594637479,62010550.96656194 - 02/02 24:00:00,43623912.94534274,0.0,52921164.1135702,0.0,21222861.56400027,0.0,36651478.37002815,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,231548938.59525193,0.0,35233267.594637479,46507913.22492146 - 02/03 01:00:00,52426208.2269531,0.0,61794838.60473299,0.0,29411218.57208268,0.0,46821275.35465631,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,229018301.55958034,0.0,21139960.556782485,23253956.61246073 - 02/03 02:00:00,14975361.58166287,0.0,23510576.896392228,0.0,0.0,0.0,6801793.319140139,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,64556213.49227083,0.0,14093307.03785499,0.0 - 02/03 03:00:00,39251546.05805664,0.0,47554738.07896268,0.0,17277776.459580929,0.0,32782658.386827087,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163182,156122688.1314233,0.0,14093307.03785499,0.0 - 02/03 04:00:00,40608497.335545878,0.0,48080406.05373835,0.0,21156449.5949611,0.0,35419654.837077919,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,164504850.05195988,0.0,14093307.03785499,0.0 - 02/03 05:00:00,42393348.200134519,0.0,49787758.493285778,0.0,23173429.809922078,0.0,37538181.847429309,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,172118198.71536476,0.0,14093307.03785499,0.0 - 02/03 06:00:00,45852648.25935669,0.0,53402745.112756248,0.0,26225858.087155135,0.0,41249034.79143486,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,185900711.08509694,0.0,14093307.03785499,0.0 - 02/03 07:00:00,47399828.39166699,0.0,55358798.82006652,0.0,26916652.555487858,0.0,42384103.70003642,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,191165252.3441468,0.0,14093307.03785499,15502637.741640486 - 02/03 08:00:00,54599026.2129527,0.0,64563293.44558777,0.0,34601848.44616017,0.0,49201827.21761501,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,221974513.31041838,0.0,56373228.15141996,38756594.35410121 - 02/03 09:00:00,68040029.31316087,0.0,80002627.47800276,0.0,45376539.82312373,0.0,66410028.49060576,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,335645736.2159792,0.0,56373228.15141996,38756594.35410121 - 02/03 10:00:00,73969320.91198816,0.0,86476315.10961697,0.0,54540459.901257809,0.0,77164335.71023563,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,405526494.3089334,0.0,28186614.07570998,0.0 - 02/03 11:00:00,78218936.02247656,0.0,89820434.1515253,0.0,56034540.87258125,0.0,79699860.5155784,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,416950350.1779169,0.0,28186614.07570998,0.0 - 02/03 12:00:00,74784557.5714822,0.0,87581959.2254878,0.0,54873351.7388645,0.0,78332433.97178851,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,371023354.91812667,0.0,28186614.07570998,0.0 - 02/03 13:00:00,76469845.40861483,0.0,89586800.18127704,0.0,55844460.59328525,0.0,79835282.66477497,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,376932468.46324399,0.0,28186614.07570998,0.0 - 02/03 14:00:00,84871793.83189997,0.0,97819590.39474106,0.0,59783654.142986457,0.0,85936419.33945313,0.0,7498.4369936266289,7381.047563659363,7390.558796813003,8896.609260001118,440611407.11984106,0.0,28186614.07570998,0.0 - 02/03 15:00:00,90898617.65658093,0.0,104146461.38038349,0.0,62900758.0376665,0.0,90661228.03063475,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,497894828.75546136,0.0,28186614.07570998,0.0 - 02/03 16:00:00,99280637.14330375,0.0,112922263.20104182,0.0,67508577.61511103,0.0,97421075.69429192,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,562582397.04779,0.0,28186614.07570998,0.0 - 02/03 17:00:00,107580226.37714266,0.0,121813431.54803327,0.0,71498202.25854302,0.0,103592980.449971,0.0,14809.038722506137,14577.200458681857,14595.98466933679,17570.359148492633,626074139.4301527,0.0,35233267.594637479,0.0 - 02/03 18:00:00,117687681.55743949,0.0,132502905.7268185,0.0,78638323.2231804,0.0,113263449.21703601,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,698921597.6996216,0.0,14093307.03785499,0.0 - 02/03 19:00:00,112138673.33696303,0.0,127755575.4036091,0.0,70990972.7248662,0.0,104981992.23356687,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,561868127.7405529,0.0,63419881.67034747,0.0 - 02/03 20:00:00,102858401.96935694,0.0,119279000.78545785,0.0,59907917.09706728,0.0,92470319.32220792,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,483773068.1300136,0.0,63419881.67034747,69761869.8373822 - 02/03 21:00:00,110909450.20132827,0.0,127889453.55492667,0.0,65841140.385194059,0.0,100562320.00067358,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,477675600.739388,0.0,49326574.63249246,69761869.8373822 - 02/03 22:00:00,116998500.530157,0.0,134309074.63391043,0.0,70688730.953464,0.0,106954497.96718943,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,501424040.6819863,0.0,35233267.594637479,69761869.8373822 - 02/03 23:00:00,120798452.64850882,0.0,138793341.59196816,0.0,73943339.40579964,0.0,111224832.51532045,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,517029409.47563096,0.0,35233267.594637479,62010550.96656194 - 02/03 24:00:00,124706118.71255005,0.0,144216135.08503775,0.0,78182602.64161861,0.0,116489282.31135203,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,535863582.06459239,0.0,35233267.594637479,46507913.22492146 - 02/04 01:00:00,134204071.10985956,0.0,153920018.45645727,0.0,87179693.08724673,0.0,127540819.76763568,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,538893182.4033649,0.0,21139960.556782485,23253956.61246073 - 02/04 02:00:00,94391020.39876159,0.0,113008231.31986766,0.0,52404192.37310068,0.0,84047381.68422991,0.0,1201.0793117485119,1182.2761910619648,1183.7996746065704,1425.0347553736675,361822709.5340064,0.0,14093307.03785499,0.0 - 02/04 03:00:00,124076830.4120705,0.0,143665480.8058472,0.0,78411932.28359021,0.0,117169656.40594055,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,481251523.07277426,0.0,14093307.03785499,0.0 - 02/04 04:00:00,127642438.06720694,0.0,147411050.7220457,0.0,82164247.7886267,0.0,121343370.42181395,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,496434926.85844656,0.0,14093307.03785499,0.0 - 02/04 05:00:00,130301266.81629868,0.0,150120701.3051347,0.0,84864520.50719993,0.0,124405115.40120909,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,507510884.76761546,0.0,14093307.03785499,0.0 - 02/04 06:00:00,132953441.66867176,0.0,152984848.54826296,0.0,87262711.60566902,0.0,127307682.52768564,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,518281967.3238536,0.0,14093307.03785499,0.0 - 02/04 07:00:00,133681073.12984267,0.0,154361191.13412334,0.0,87164023.95831205,0.0,127552219.77624786,0.0,4723.7206571421,4649.769929045323,4655.761632191047,5604.514244196306,573440067.2637951,0.0,14093307.03785499,15502637.741640486 - 02/04 08:00:00,139089864.32217808,0.0,163664111.20821686,0.0,92624533.00355505,0.0,134954798.9979465,0.0,18782.467528813526,18488.4244957841,18512.248717821174,22284.680752074237,811377464.9120714,0.0,56373228.15141996,38756594.35410121 - 02/04 09:00:00,137056538.4025463,0.0,170737617.8153075,0.0,101315538.40404438,0.0,145648045.64645428,0.0,16334.317217756166,16078.600434548325,16099.319352316872,19380.043859647205,799169951.3797194,0.0,56373228.15141996,38756594.35410121 - 02/04 10:00:00,124973215.51504001,0.0,172973308.52919335,0.0,107451071.84334094,0.0,152666309.39172087,0.0,11627.709198900076,11445.675242244288,11460.424163029706,13795.833107547689,732050615.4414934,0.0,28186614.07570998,0.0 - 02/04 11:00:00,95037917.44658554,0.0,169598802.3635622,0.0,105924157.34854225,0.0,150907060.4288245,0.0,9333.895553003524,9187.77167688476,9199.611058466784,11074.310776941262,661132058.2225813,0.0,28186614.07570998,0.0 - 02/04 12:00:00,79600149.39379165,0.0,172027622.70543698,0.0,108657155.22024626,0.0,154260833.8577336,0.0,4680.04715984275,4606.780148493477,4612.716454919085,5552.697306770509,584573829.0293014,0.0,28186614.07570998,0.0 - 02/04 13:00:00,74690866.63776469,0.0,172610974.754106,0.0,108254784.0042142,0.0,149261567.83239968,0.0,4695.6168822033819,4622.106123946025,4628.0621794552939,5571.170188018559,575079232.5735283,0.0,28186614.07570998,0.0 - 02/04 14:00:00,72249734.4317387,0.0,161863315.05904839,0.0,102715958.93657768,0.0,141745990.33785416,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,549028261.7551642,0.0,28186614.07570998,0.0 - 02/04 15:00:00,75618922.60964336,0.0,155116311.862712,0.0,96012275.60014057,0.0,135595185.0347382,0.0,7062.695076511937,6952.127267544677,6961.085793117788,8379.618108636083,568022589.5921519,0.0,28186614.07570998,0.0 - 02/04 16:00:00,87692787.69140491,0.0,153435273.23443423,0.0,91413345.46607799,0.0,132378673.77574891,0.0,11809.30164285525,11624.424822613306,11639.40408047762,14011.285610490764,641623978.3308389,0.0,28186614.07570998,0.0 - 02/04 17:00:00,121867385.4685333,0.0,166021320.93029604,0.0,96652249.35862565,0.0,141313531.41152597,0.0,11771.158460853228,11586.87877924113,11601.809655196314,13966.030181060138,701987644.6438439,0.0,35233267.594637479,0.0 - 02/04 18:00:00,155578312.91203345,0.0,185745674.59914089,0.0,110874152.17655571,0.0,159248752.87436203,0.0,16479.62184519452,16221.630290937579,16242.533517274838,19552.44225348419,858033313.0269002,0.0,14093307.03785499,0.0 - 02/04 19:00:00,142843078.83864308,0.0,171187317.45798404,0.0,97002489.67870848,0.0,142250648.08320344,0.0,16479.62184519452,16221.630290937579,16242.533517274838,19552.44225348419,799869954.5233471,0.0,63419881.67034747,0.0 - 02/04 20:00:00,129601255.83381063,0.0,156763417.27616994,0.0,82949589.68538727,0.0,125100465.57651814,0.0,9416.926768682582,9269.503023392905,9281.447724157051,11172.824144848108,635321254.3517763,0.0,63419881.67034747,69761869.8373822 - 02/04 21:00:00,132937002.30080177,0.0,158877651.99344645,0.0,85928704.6659417,0.0,128413462.60759402,0.0,9391.233764406763,9244.21224789205,9256.124358910587,11142.340376037118,646678900.2578714,0.0,49326574.63249246,69761869.8373822 - 02/04 22:00:00,135680685.77146704,0.0,160417337.53827564,0.0,88328439.52930466,0.0,131089432.34106745,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,585969158.1700599,0.0,35233267.594637479,69761869.8373822 - 02/04 23:00:00,138623104.17167903,0.0,162696930.4929592,0.0,91131706.02303931,0.0,134189965.82663968,0.0,4666.947776501762,4593.88583844238,4599.805529233392,5537.155388470631,596473766.8318505,0.0,35233267.594637479,62010550.96656194 - 02/04 24:00:00,142854522.41108085,0.0,166469025.6759043,0.0,94921527.76195586,0.0,138759922.58039094,0.0,2340.023579921375,2303.3900742467387,2306.3582274595426,2776.3486533852549,578019032.3553784,0.0,35233267.594637479,46507913.22492146 - 02/05 01:00:00,148145264.0807464,0.0,171533179.15784038,0.0,99673424.73757266,0.0,144671476.48358078,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,599569910.4068685,0.0,21139960.556782485,23253956.61246073 - 02/05 02:00:00,101441732.08895853,0.0,122423312.58553826,0.0,58977417.85906261,0.0,93436222.7896823,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,394097966.06101468,0.0,14093307.03785499,0.0 - 02/05 03:00:00,125670181.83831936,0.0,146500706.38956876,0.0,81110619.85908866,0.0,120764365.26867312,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,492070163.34673276,0.0,14093307.03785499,0.0 - 02/05 04:00:00,125416461.68829523,0.0,145450781.9661724,0.0,81480005.45248397,0.0,120463271.92282389,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,490834811.0208583,0.0,14093307.03785499,0.0 - 02/05 05:00:00,125164401.51469705,0.0,144586366.69731499,0.0,81758337.89396855,0.0,120241285.16957091,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,489817752.10406,0.0,14093307.03785499,0.0 - 02/05 06:00:00,123174795.20486856,0.0,141863998.04087756,0.0,80531694.79630141,0.0,118219197.23287292,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,481949825.50518867,0.0,14093307.03785499,0.0 - 02/05 07:00:00,117378128.05211503,0.0,135529962.82465864,0.0,75461717.14877232,0.0,111517249.14486362,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,512887514.19118347,0.0,14093307.03785499,15502637.741640486 - 02/05 08:00:00,120481892.7471897,0.0,139677536.7583873,0.0,77974617.01211457,0.0,114662515.21580442,0.0,19514.779831931886,19209.272313184414,19234.02542120961,23153.541345645015,744798389.8165914,0.0,56373228.15141996,38756594.35410121 - 02/05 09:00:00,123945063.03269504,0.0,145273025.22898714,0.0,86073102.78309444,0.0,124002440.02254674,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,735465226.1050751,0.0,56373228.15141996,38756594.35410121 - 02/05 10:00:00,112083851.68726874,0.0,142272572.92072547,0.0,88654401.56988597,0.0,125968633.54935809,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,651959170.4684897,0.0,28186614.07570998,0.0 - 02/05 11:00:00,81134607.1817252,0.0,128918458.2844196,0.0,81471780.14166136,0.0,116364092.4881046,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,554956180.2571588,0.0,28186614.07570998,0.0 - 02/05 12:00:00,60898585.13986577,0.0,118410016.91467902,0.0,76444093.77200279,0.0,109137191.9318653,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,438927398.8246967,0.0,28186614.07570998,0.0 - 02/05 13:00:00,70274771.75848979,0.0,115195481.72523844,0.0,74388469.72686583,0.0,104714728.46388319,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,438436551.27329817,0.0,28186614.07570998,0.0 - 02/05 14:00:00,58901233.73071506,0.0,102131814.59386149,0.0,66341013.02332442,0.0,93699537.3327843,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,395873564.95452556,0.0,28186614.07570998,0.0 - 02/05 15:00:00,62369530.28863305,0.0,98851844.2766233,0.0,60974949.51596463,0.0,87997819.58876868,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,422988263.09292748,0.0,28186614.07570998,0.0 - 02/05 16:00:00,46774484.65799679,0.0,90305753.3253464,0.0,53103042.377822939,0.0,78518016.53646936,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,457043631.5120822,0.0,28186614.07570998,0.0 - 02/05 17:00:00,66697353.33781983,0.0,97804773.07617297,0.0,55196306.78639695,0.0,82546804.91446269,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,490587572.7292991,0.0,35233267.594637479,0.0 - 02/05 18:00:00,90196678.9723829,0.0,112352482.84595548,0.0,65108737.94809356,0.0,95091748.07130179,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,626428916.2979591,0.0,14093307.03785499,0.0 - 02/05 19:00:00,83260382.12868308,0.0,105368554.00165928,0.0,55735038.910945508,0.0,84606998.05783832,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,589664155.9830545,0.0,63419881.67034747,0.0 - 02/05 20:00:00,75425773.77513902,0.0,97253965.0604769,0.0,45852773.66629447,0.0,73216489.00921606,0.0,9915.041662468222,9759.819835593087,9772.39635961535,11763.81845211033,440108876.2263595,0.0,63419881.67034747,69761869.8373822 - 02/05 21:00:00,80839206.97892107,0.0,101610649.07026784,0.0,50049016.376610409,0.0,78270219.54816434,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,458844114.1065314,0.0,49326574.63249246,69761869.8373822 - 02/05 22:00:00,85382765.18220921,0.0,105147340.28683557,0.0,53888661.113206919,0.0,82718456.13574808,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,401000322.3168206,0.0,35233267.594637479,69761869.8373822 - 02/05 23:00:00,91215887.5375084,0.0,110896733.94733009,0.0,58008100.58504861,0.0,88258682.34477677,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,421913025.49528786,0.0,35233267.594637479,62010550.96656194 - 02/05 24:00:00,92348243.77662821,0.0,111448220.4051381,0.0,59069445.05284067,0.0,89382963.29636033,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,389422521.4707935,0.0,35233267.594637479,46507913.22492146 - 02/06 01:00:00,97158262.03035602,0.0,115216459.82548683,0.0,64308492.12586619,0.0,95171006.78930119,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,409096104.0401428,0.0,21139960.556782485,23253956.61246073 - 02/06 02:00:00,54167146.22820062,0.0,70655275.84156296,0.0,26589113.587726378,0.0,46248153.70777368,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,216320659.8215381,0.0,14093307.03785499,0.0 - 02/06 03:00:00,82066585.2407731,0.0,98425186.40163204,0.0,51241113.43169135,0.0,78748342.23055287,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,329142197.76092389,0.0,14093307.03785499,0.0 - 02/06 04:00:00,83017349.28572034,0.0,98697809.65214877,0.0,52782191.484040539,0.0,80101521.5946076,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,333298863.5849773,0.0,14093307.03785499,0.0 - 02/06 05:00:00,82577832.41643594,0.0,97645622.2717649,0.0,52948791.20857784,0.0,79684775.16553064,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,331588750.7114695,0.0,14093307.03785499,0.0 - 02/06 06:00:00,82514126.44863227,0.0,97035797.45344217,0.0,53277571.74892144,0.0,79595745.51204244,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,331154970.81219848,0.0,14093307.03785499,0.0 - 02/06 07:00:00,78459805.39905896,0.0,92442276.40249363,0.0,49773523.70318213,0.0,74844760.92700899,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,370595840.5974989,0.0,14093307.03785499,15502637.741640486 - 02/06 08:00:00,79826925.9611845,0.0,94669521.49652964,0.0,50588082.95879088,0.0,75790016.77612706,0.0,20139.376343833253,19824.090650173595,19849.63601437921,23894.601264701363,602222282.5757468,0.0,56373228.15141996,38756594.35410121 - 02/06 09:00:00,85040846.16895415,0.0,102179029.01824326,0.0,59738170.42330627,0.0,86394326.55759889,0.0,17589.0072895276,17313.648099183978,17335.958501927096,20868.685735339546,596538650.8216242,0.0,56373228.15141996,38756594.35410121 - 02/06 10:00:00,79324907.42877823,0.0,100415045.40729575,0.0,63517367.540507297,0.0,89874305.50821516,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,522091730.3445211,0.0,28186614.07570998,0.0 - 02/06 11:00:00,72652230.20774699,0.0,91053741.5771612,0.0,58385614.08889785,0.0,82881465.26699491,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,456606073.3629732,0.0,28186614.07570998,0.0 - 02/06 12:00:00,58451131.026888947,0.0,81800394.46079806,0.0,52953983.42095126,0.0,75431775.16896379,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,344783650.80119279,0.0,28186614.07570998,0.0 - 02/06 13:00:00,35034820.4475339,0.0,73579794.09586728,0.0,47409076.86344776,0.0,66265790.96816169,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,298808392.3335631,0.0,28186614.07570998,0.0 - 02/06 14:00:00,41756747.9509158,0.0,69685483.56206702,0.0,43288333.08545664,0.0,61895278.71641415,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,293307542.6524295,0.0,28186614.07570998,0.0 - 02/06 15:00:00,29396225.37781242,0.0,62021064.19863764,0.0,38325789.02965524,0.0,55351766.55720301,0.0,7678.3694773040019,7558.163170738395,7567.90263542957,9110.092283439166,299987144.40418848,0.0,28186614.07570998,0.0 - 02/06 16:00:00,37813275.845170009,0.0,64640730.98256993,0.0,38002501.92208588,0.0,56203702.39734431,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,388147376.5486369,0.0,28186614.07570998,0.0 - 02/06 17:00:00,46586208.98547066,0.0,70064575.13959104,0.0,38903243.47074534,0.0,58781379.133134279,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,405394095.49783089,0.0,35233267.594637479,0.0 - 02/06 18:00:00,68008169.82961883,0.0,85816957.24742209,0.0,49764317.53500974,0.0,72863888.42826551,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,542572584.8737547,0.0,14093307.03785499,0.0 - 02/06 19:00:00,55385189.84023176,0.0,72568371.59114626,0.0,36611996.16341348,0.0,56914682.93884662,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,487992524.06620576,0.0,63419881.67034747,0.0 - 02/06 20:00:00,44085835.87964563,0.0,61148396.40120068,0.0,23828369.467340694,0.0,41872666.11650197,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,323003411.769511,0.0,63419881.67034747,69761869.8373822 - 02/06 21:00:00,48437801.99367074,0.0,64761863.5562767,0.0,27307819.049421498,0.0,46104024.24245508,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,338485599.5522249,0.0,49326574.63249246,69761869.8373822 - 02/06 22:00:00,54184559.53561272,0.0,70086337.90941888,0.0,31932892.725541694,0.0,51907960.61464895,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,283803291.76813825,0.0,35233267.594637479,69761869.8373822 - 02/06 23:00:00,58139811.289248559,0.0,73774373.50268266,0.0,34770051.11830251,0.0,55555315.2169519,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,297931092.11010166,0.0,35233267.594637479,62010550.96656194 - 02/06 24:00:00,65563123.56265119,0.0,81111821.04462885,0.0,40857598.47628087,0.0,63299154.503631588,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,288429737.3948384,0.0,35233267.594637479,46507913.22492146 - 02/07 01:00:00,76781501.64832461,0.0,92170036.35015968,0.0,50967613.27608684,0.0,75809149.43550805,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,333266037.79295679,0.0,21139960.556782485,23253956.61246073 - 02/07 02:00:00,37488533.62181332,0.0,52012449.51616937,0.0,17265264.989098349,0.0,32882537.024560565,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,158380514.8008017,0.0,14093307.03785499,0.0 - 02/07 03:00:00,69643471.40847376,0.0,84212671.72718965,0.0,44303524.767922539,0.0,67808584.30540793,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,284555076.67890706,0.0,14093307.03785499,0.0 - 02/07 04:00:00,74756359.2345049,0.0,88859783.4323739,0.0,48807640.44597655,0.0,73212629.3234467,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,304181396.7757062,0.0,14093307.03785499,0.0 - 02/07 05:00:00,76429245.72123377,0.0,90089658.6103025,0.0,50667640.47559692,0.0,75063841.82876767,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,310795370.97530499,0.0,14093307.03785499,0.0 - 02/07 06:00:00,79173819.49785401,0.0,92890128.57559102,0.0,52507237.16760932,0.0,77475184.77411145,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,320591354.3545699,0.0,14093307.03785499,0.0 - 02/07 07:00:00,73746349.95009236,0.0,87142973.85013592,0.0,47705665.82348964,0.0,71259164.85147596,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,354654120.74903419,0.0,14093307.03785499,15502637.741640486 - 02/07 08:00:00,72224640.0964606,0.0,89854995.6880159,0.0,48359226.69596282,0.0,72336483.52661523,0.0,19874.82282210369,19563.678763179127,19588.88856008866,23580.718609798,580164537.5256646,0.0,56373228.15141996,38756594.35410121 - 02/07 09:00:00,65432033.847567047,0.0,92303488.61392054,0.0,52792551.67609125,0.0,77257786.6757506,0.0,17589.0072895276,17313.648099183978,17335.958501927096,20868.685735339546,550972139.466851,0.0,56373228.15141996,38756594.35410121 - 02/07 10:00:00,62641537.07093053,0.0,88908878.89258993,0.0,55762792.81564311,0.0,79430272.43315476,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,476586094.60031947,0.0,28186614.07570998,0.0 - 02/07 11:00:00,60388265.76532636,0.0,80077164.54906157,0.0,50770549.268433008,0.0,72719149.9997979,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,416428073.063126,0.0,28186614.07570998,0.0 - 02/07 12:00:00,54779103.20785388,0.0,73465877.50955723,0.0,46383639.46048694,0.0,66996009.883548069,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,318143540.01999858,0.0,28186614.07570998,0.0 - 02/07 13:00:00,45637991.72479638,0.0,69967877.76107894,0.0,43888411.4813899,0.0,62727841.77143209,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,298816988.899284,0.0,28186614.07570998,0.0 - 02/07 14:00:00,11510080.407995884,0.0,60005501.40284703,0.0,38795844.12248026,0.0,53828518.41206962,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,240821643.68296869,0.0,28186614.07570998,0.0 - 02/07 15:00:00,0.0,0.0,47713567.6033514,0.0,30059515.79576546,0.0,42807491.7754419,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,235726271.8443779,0.0,28186614.07570998,0.0 - 02/07 16:00:00,1037895.3440718149,0.0,48335756.70886879,0.0,27720267.958433644,0.0,42050347.86490378,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,310631433.2777449,0.0,28186614.07570998,0.0 - 02/07 17:00:00,31951627.413331059,0.0,59555209.81331899,0.0,32038427.30509205,0.0,49516853.817871119,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,364549283.75108006,0.0,35233267.594637479,0.0 - 02/07 18:00:00,58553721.215076338,0.0,78586929.17098743,0.0,44633726.13794146,0.0,65906900.041211549,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,514872664.9272405,0.0,14093307.03785499,0.0 - 02/07 19:00:00,49009102.44679973,0.0,68196411.14382085,0.0,33420254.60402187,0.0,52586417.18554273,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,469724468.9127527,0.0,63419881.67034747,0.0 - 02/07 20:00:00,41610954.18032625,0.0,60293922.24775835,0.0,23999032.702718118,0.0,41614736.63707347,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,318686729.3356559,0.0,63419881.67034747,69761869.8373822 - 02/07 21:00:00,46406184.77098801,0.0,64250641.354526508,0.0,27507170.086929226,0.0,46003800.557080987,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,335800818.991697,0.0,49326574.63249246,69761869.8373822 - 02/07 22:00:00,49848728.35434827,0.0,67006848.90308211,0.0,30001271.32602948,0.0,49141418.84507358,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,271814778.53961959,0.0,35233267.594637479,69761869.8373822 - 02/07 23:00:00,52964837.09744519,0.0,69752679.94973062,0.0,32129825.753535697,0.0,51943320.50411122,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,282607174.4159089,0.0,35233267.594637479,62010550.96656194 - 02/07 24:00:00,58216664.426237788,0.0,74612056.09565848,0.0,36429880.39941547,0.0,57328877.09951296,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,264433248.5122827,0.0,35233267.594637479,46507913.22492146 - 02/08 01:00:00,67716061.27314435,0.0,83658186.65932419,0.0,45001252.29215541,0.0,67800094.37155193,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,302021365.0876339,0.0,21139960.556782485,23253956.61246073 - 02/08 02:00:00,33117436.061363408,0.0,46150034.9216083,0.0,13101330.46219364,0.0,29890306.92107535,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,141213236.1440122,0.0,14093307.03785499,0.0 - 02/08 03:00:00,60687582.57819197,0.0,74955830.033027,0.0,38544329.28704819,0.0,59435037.98457604,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,252322771.45130325,0.0,14093307.03785499,0.0 - 02/08 04:00:00,69608523.30823326,0.0,83919885.47056833,0.0,45939413.3503691,0.0,69036947.00036651,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,287049753.46894136,0.0,14093307.03785499,0.0 - 02/08 05:00:00,76043527.57168488,0.0,90370290.8286447,0.0,51194473.836069259,0.0,75553167.28863442,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,311590179.77959707,0.0,14093307.03785499,0.0 - 02/08 06:00:00,78389142.20844116,0.0,92504449.24927661,0.0,53123308.70685624,0.0,77792594.6374152,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,320275269.7016944,0.0,14093307.03785499,0.0 - 02/08 07:00:00,73105438.232306,0.0,86927460.78204882,0.0,48276832.63147504,0.0,71597650.10576728,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,354391148.2898624,0.0,14093307.03785499,15502637.741640486 - 02/08 08:00:00,55710850.18779846,0.0,79198868.36460456,0.0,40691773.138723138,0.0,62205258.09616631,0.0,20029.769395586467,19716.199619148774,19741.60595474871,23764.55680456099,537514424.1738542,0.0,56373228.15141996,38756594.35410121 - 02/08 09:00:00,28057109.20711691,0.0,69652969.36971689,0.0,37421368.471549119,0.0,55324861.83983008,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,454135577.3484383,0.0,56373228.15141996,38756594.35410121 - 02/08 10:00:00,4707235.768986266,0.0,69475220.49455874,0.0,41817589.03921214,0.0,61751945.45955815,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,366980843.21960529,0.0,28186614.07570998,0.0 - 02/08 11:00:00,0.0,536337.8561380347,67422347.50679535,0.0,41534460.082617137,0.0,60854529.8607979,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,321879481.35503247,536337.8561380347,28186614.07570998,0.0 - 02/08 12:00:00,0.0,21075080.61584215,61751258.27480615,0.0,39244384.52489913,0.0,57130964.81006304,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,234808306.94734425,21075080.61584215,28186614.07570998,0.0 - 02/08 13:00:00,0.0,33265406.895276205,55634309.70567472,0.0,35096906.11153528,0.0,46643820.06176598,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,214138833.65885539,33265406.895276205,28186614.07570998,0.0 - 02/08 14:00:00,0.0,39693335.39425905,43590713.986819598,0.0,28605058.21137295,0.0,37805205.448189448,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,186829553.47520567,39693335.39425905,28186614.07570998,0.0 - 02/08 15:00:00,0.0,38602320.84983236,34799685.07710894,0.0,20917250.828650837,0.0,29813700.700272737,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,200883518.79359073,38602320.84983236,28186614.07570998,0.0 - 02/08 16:00:00,0.0,21542956.65939722,34963520.440025057,0.0,18219764.61981158,0.0,29038723.75247119,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,273926257.15624758,21542956.65939722,28186614.07570998,0.0 - 02/08 17:00:00,193701.16285827827,1078926.078994412,47285465.04061111,0.0,23547962.72615043,0.0,37955400.36320611,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,300279804.1892071,1078926.078994412,35233267.594637479,0.0 - 02/08 18:00:00,35967026.907113138,0.0,71270388.1687006,0.0,39121961.0541125,0.0,58832670.183554518,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,471704329.8460483,0.0,14093307.03785499,0.0 - 02/08 19:00:00,32081010.69523058,0.0,62252008.5021227,0.0,29098145.127526244,0.0,46968771.39994375,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,436179594.46802476,0.0,63419881.67034747,0.0 - 02/08 20:00:00,26469297.05048327,0.0,54838344.892870198,0.0,19741631.42222797,0.0,36170659.41561501,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,288388016.34897628,0.0,63419881.67034747,69761869.8373822 - 02/08 21:00:00,33021615.132857078,0.0,60163619.86912335,0.0,23526898.4443172,0.0,41380966.484853658,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,309726122.15332356,0.0,49326574.63249246,69761869.8373822 - 02/08 22:00:00,38225855.07826153,0.0,63841455.7222434,0.0,26373122.601413449,0.0,45201912.35282457,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,249579391.1099434,0.0,35233267.594637479,69761869.8373822 - 02/08 23:00:00,42877958.14856156,0.0,66938828.97464597,0.0,28605913.836824344,0.0,48185719.6812176,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,262642492.5936605,0.0,35233267.594637479,62010550.96656194 - 02/08 24:00:00,49862268.89431518,0.0,72337476.46859902,0.0,33323848.17060002,0.0,54029717.597261,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,247521833.80837543,0.0,35233267.594637479,46507913.22492146 - 02/09 01:00:00,62788683.19318228,0.0,84022291.6148706,0.0,43868814.00464678,0.0,67061937.77635691,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,295587497.0805145,0.0,21139960.556782485,23253956.61246073 - 02/09 02:00:00,32803462.530984954,0.0,50447274.31404206,0.0,15103076.255720936,0.0,32734172.6484638,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,149983996.19518424,0.0,14093307.03785499,0.0 - 02/09 03:00:00,57761070.88996746,0.0,76209190.36948462,0.0,37463568.615513939,0.0,59283555.4824483,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,249580148.4600402,0.0,14093307.03785499,0.0 - 02/09 04:00:00,62460204.779392037,0.0,79853232.07489413,0.0,40956884.80314246,0.0,63522515.45138411,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,265627070.57025744,0.0,14093307.03785499,0.0 - 02/09 05:00:00,66183730.81813508,0.0,82623808.38187707,0.0,43847918.98165029,0.0,66678274.45277258,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,278132752.53825798,0.0,14093307.03785499,0.0 - 02/09 06:00:00,69374827.0583741,0.0,85104499.13632122,0.0,46237929.10484903,0.0,69379748.55504014,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,288865872.3960233,0.0,14093307.03785499,0.0 - 02/09 07:00:00,68773650.73456082,0.0,84296942.00277801,0.0,44818459.65414196,0.0,67800119.57970065,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,284458040.51262018,0.0,14093307.03785499,15502637.741640486 - 02/09 08:00:00,54993780.31181235,0.0,81470487.8876918,0.0,40438725.23835926,0.0,62780956.49225743,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,314759424.095876,0.0,56373228.15141996,38756594.35410121 - 02/09 09:00:00,32402877.15200514,0.0,77786366.86608286,0.0,39871779.351156,0.0,60586581.29422554,0.0,12563.576635376856,12366.891499417125,12382.827501376501,14906.204096671105,398637803.70169928,0.0,56373228.15141996,38756594.35410121 - 02/09 10:00:00,31469819.162426674,0.0,88873216.10573477,0.0,51084280.8059586,0.0,75583202.31200922,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,435638149.4123884,0.0,28186614.07570998,0.0 - 02/09 11:00:00,36023099.871959608,0.0,92255678.07925734,0.0,54122517.27897727,0.0,79480413.91471705,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,450841813.60463598,0.0,28186614.07570998,0.0 - 02/09 12:00:00,15451434.23587305,0.0,87518078.03796682,0.0,53524444.01846624,0.0,77934977.87237805,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,347966245.6390582,0.0,28186614.07570998,0.0 - 02/09 13:00:00,9683427.783037087,0.0,83576733.63503319,0.0,51556649.960298348,0.0,71639741.81018238,0.0,7600.3420852062,7481.357312019881,7490.997804522686,9017.51576120379,330181319.85518017,0.0,28186614.07570998,0.0 - 02/09 14:00:00,45334375.440347608,0.0,80914347.73868799,0.0,49032158.905245337,0.0,70921519.99381927,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,360107970.1109008,0.0,28186614.07570998,0.0 - 02/09 15:00:00,33280800.27140431,0.0,73702344.96057569,0.0,44216247.66394959,0.0,64461938.24694133,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,329712439.0714874,0.0,28186614.07570998,0.0 - 02/09 16:00:00,45175851.88647272,0.0,78076735.06247431,0.0,44899553.95961759,0.0,66626793.212977129,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,500898185.95498028,0.0,28186614.07570998,0.0 - 02/09 17:00:00,55093163.70475894,0.0,81812486.26646236,0.0,45299245.569210398,0.0,68046537.39490018,0.0,22900.22689636374,22541.71957226805,22570.766878722407,27170.245057134216,592910083.1914902,0.0,35233267.594637479,0.0 - 02/09 18:00:00,68496596.18778126,0.0,90304113.36662799,0.0,51173098.607544969,0.0,75488674.09297534,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,551974765.787497,0.0,14093307.03785499,0.0 - 02/09 19:00:00,58393638.71438998,0.0,78844202.76551809,0.0,39669601.90117061,0.0,61557613.28245873,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,504977340.196105,0.0,63419881.67034747,0.0 - 02/09 20:00:00,46144115.66477686,0.0,65692872.687291059,0.0,26099847.923888696,0.0,45278025.31742662,0.0,15266.817930909157,15027.813048178701,15047.177919148273,18113.496704756148,411653961.7641554,0.0,63419881.67034747,69761869.8373822 - 02/09 21:00:00,50108376.1875982,0.0,68627091.8589967,0.0,28833513.460775664,0.0,48650680.09520809,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,386585578.41155549,0.0,49326574.63249246,69761869.8373822 - 02/09 22:00:00,53857581.593628797,0.0,71339846.80265862,0.0,31629894.31474258,0.0,51990854.98319785,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,361110911.1414094,0.0,35233267.594637479,69761869.8373822 - 02/09 23:00:00,53527876.07238482,0.0,69881735.44657906,0.0,31288291.35958036,0.0,51159967.75435575,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,320493083.89423379,0.0,35233267.594637479,62010550.96656194 - 02/09 24:00:00,54105421.87052751,0.0,69449456.56483764,0.0,32082634.668934488,0.0,51698043.141138467,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,283930422.4060248,0.0,35233267.594637479,46507913.22492146 - 02/10 01:00:00,63846141.9079351,0.0,78791082.93917299,0.0,40904399.18348849,0.0,62520646.98274299,0.0,2550.953264868551,2511.0176156271725,2514.253318119148,3026.6086728940088,284232469.35077157,0.0,21139960.556782485,23253956.61246073 - 02/10 02:00:00,32566693.922939674,0.0,45110967.071884158,0.0,11520103.166150649,0.0,28510144.05660436,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,136744499.89847655,0.0,14093307.03785499,0.0 - 02/10 03:00:00,54244408.69467501,0.0,67611141.0446196,0.0,32553682.243621727,0.0,51646353.17478112,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,225114703.0927609,0.0,14093307.03785499,0.0 - 02/10 04:00:00,55488951.539191368,0.0,68218502.3940438,0.0,33742049.276857528,0.0,53179844.975325677,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,229688466.1204818,0.0,14093307.03785499,0.0 - 02/10 05:00:00,56673700.06295414,0.0,68912744.61244342,0.0,35003433.036859538,0.0,54329043.65453045,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,233978039.30185098,0.0,14093307.03785499,0.0 - 02/10 06:00:00,57334708.785820309,0.0,69046887.86812453,0.0,35772896.30540497,0.0,54885013.019249949,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,236098623.91366319,0.0,14093307.03785499,0.0 - 02/10 07:00:00,52149789.755076978,0.0,63264604.10249081,0.0,31265231.873568294,0.0,48889828.326540749,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,214699181.54731495,0.0,14093307.03785499,15502637.741640486 - 02/10 08:00:00,46501170.30584818,0.0,58326392.74456085,0.0,30942476.924809189,0.0,44371036.55343975,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,199380918.7592946,0.0,56373228.15141996,38756594.35410121 - 02/10 09:00:00,48036505.01923935,0.0,60969528.70633425,0.0,34391282.93459325,0.0,48185700.60806477,0.0,5147.584189324726,5066.997798559966,5073.527142401123,6107.4121452652739,268606893.86021557,0.0,56373228.15141996,38756594.35410121 - 02/10 10:00:00,54071505.37988399,0.0,67666163.81475005,0.0,41348292.07848991,0.0,59932882.26950755,0.0,7687.074201905429,7566.731621252323,7576.482127266549,9120.420106898993,338041392.5489953,0.0,28186614.07570998,0.0 - 02/10 11:00:00,56333466.7312516,0.0,68155162.52479452,0.0,41613595.67869676,0.0,60160663.28214486,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,341505751.9601232,0.0,28186614.07570998,0.0 - 02/10 12:00:00,44612684.594067808,0.0,59195047.26014956,0.0,37490213.65976118,0.0,54271770.80412036,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,272333514.0979783,0.0,28186614.07570998,0.0 - 02/10 13:00:00,51490860.62758818,0.0,63594178.60857773,0.0,38595417.07213426,0.0,56263152.09371796,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,286707406.1818975,0.0,28186614.07570998,0.0 - 02/10 14:00:00,45422007.5891914,0.0,60065679.10614106,0.0,36946088.026317868,0.0,53958937.545464787,0.0,7687.074201905429,7566.731621252323,7576.482127266549,9120.420106898993,311415261.273479,0.0,28186614.07570998,0.0 - 02/10 15:00:00,49723622.26096946,0.0,63765848.522957969,0.0,37931096.69906501,0.0,55979774.3790733,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,360763740.5372176,0.0,28186614.07570998,0.0 - 02/10 16:00:00,59934732.6663178,0.0,71965863.36721255,0.0,41024589.96047439,0.0,60878406.625824358,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,425507840.96376886,0.0,28186614.07570998,0.0 - 02/10 17:00:00,61643604.71382329,0.0,73425666.52962905,0.0,40521327.56586081,0.0,60619601.85943596,0.0,15390.608571577086,15149.665723273849,15169.187613852526,18260.369574529384,466501594.0083873,0.0,35233267.594637479,0.0 - 02/10 18:00:00,65516927.120411369,0.0,77101209.02577767,0.0,43248044.207201469,0.0,64080188.918969709,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,518619661.5019381,0.0,14093307.03785499,0.0 - 02/10 19:00:00,52666803.89962347,0.0,64102062.10831669,0.0,30467360.38538649,0.0,48535508.32895046,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,349575577.63902148,0.0,63419881.67034747,0.0 - 02/10 20:00:00,37194078.948592837,0.0,48532164.656726438,0.0,15306617.890858215,0.0,30051570.917578624,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,246523485.79757584,0.0,63419881.67034747,69761869.8373822 - 02/10 21:00:00,41433574.880945678,0.0,52807593.680150087,0.0,18741748.58203076,0.0,34529185.43429501,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,224340678.40624524,0.0,49326574.63249246,69761869.8373822 - 02/10 22:00:00,45757908.89450537,0.0,57185214.24973828,0.0,22298546.915422616,0.0,39140520.6424179,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,241210766.5309078,0.0,35233267.594637479,69761869.8373822 - 02/10 23:00:00,50709506.06060025,0.0,62476443.53269413,0.0,25212056.09310419,0.0,43530086.12545121,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,258756667.64067347,0.0,35233267.594637479,62010550.96656194 - 02/10 24:00:00,55867236.36728782,0.0,67669200.67810482,0.0,29209988.064917923,0.0,48760812.89022201,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,278335813.82935628,0.0,35233267.594637479,46507913.22492146 - 02/11 01:00:00,63617989.39514689,0.0,75125122.6381333,0.0,36622463.92458263,0.0,57706124.42522381,0.0,2569.716901713348,2529.487504236811,2532.747007065442,3048.8710117583088,271522661.1122727,0.0,21139960.556782485,23253956.61246073 - 02/11 02:00:00,28758659.483125949,0.0,38480530.580429319,0.0,5934964.598790341,0.0,19553468.81667441,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,111953103.84361306,0.0,14093307.03785499,0.0 - 02/11 03:00:00,48135386.77312588,0.0,57968969.896953139,0.0,24438989.85629846,0.0,41982523.30799672,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,191751350.19896729,0.0,14093307.03785499,0.0 - 02/11 04:00:00,48916972.2490681,0.0,58280420.348645698,0.0,26025842.80488687,0.0,43231343.17543881,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,195680058.9426325,0.0,14093307.03785499,0.0 - 02/11 05:00:00,49259927.53501525,0.0,58351889.70941203,0.0,26979029.14410489,0.0,43897885.7224722,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,197714212.47559745,0.0,14093307.03785499,0.0 - 02/11 06:00:00,49509374.104436669,0.0,58438259.01463762,0.0,27624712.04891942,0.0,44351845.28964051,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,199149670.82222728,0.0,14093307.03785499,0.0 - 02/11 07:00:00,46569908.9785668,0.0,55463506.401044968,0.0,24978401.33349254,0.0,40948185.942069318,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,244861924.11354579,0.0,14093307.03785499,15502637.741640486 - 02/11 08:00:00,49377084.65233644,0.0,59620327.660629939,0.0,30728610.993516119,0.0,44533334.76062245,0.0,20557.735213706783,20235.90003389449,20261.976056523537,24390.96809406647,491867043.9005936,0.0,56373228.15141996,38756594.35410121 - 02/11 09:00:00,61988664.98630655,0.0,72847262.96705973,0.0,38729863.385419469,0.0,57993770.580949019,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,500716287.02403727,0.0,56373228.15141996,38756594.35410121 - 02/11 10:00:00,62916813.427340257,0.0,74518525.06788127,0.0,44678942.56229022,0.0,64829682.995212707,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,439342386.3590907,0.0,28186614.07570998,0.0 - 02/11 11:00:00,52796377.76219389,0.0,65442848.930796679,0.0,40174725.841908279,0.0,58255556.73090473,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,370717262.4497714,0.0,28186614.07570998,0.0 - 02/11 12:00:00,46573727.05325255,0.0,58968671.35039109,0.0,37131211.38086003,0.0,53677069.24736002,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,273374555.6238476,0.0,28186614.07570998,0.0 - 02/11 13:00:00,46080362.58985914,0.0,57993070.07281871,0.0,36090922.6119795,0.0,52217636.452131759,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,269405868.31877306,0.0,28186614.07570998,0.0 - 02/11 14:00:00,47926430.76539053,0.0,61103226.337179478,0.0,36829977.81412023,0.0,54048192.765083719,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,276867196.60432049,0.0,28186614.07570998,0.0 - 02/11 15:00:00,59534384.573546718,0.0,70895791.05499545,0.0,40734802.904219929,0.0,60387107.459603939,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,346904968.17992427,0.0,28186614.07570998,0.0 - 02/11 16:00:00,65138624.41774562,0.0,76011001.07773498,0.0,42989777.67371154,0.0,63767552.37705007,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,440161759.1921725,0.0,28186614.07570998,0.0 - 02/11 17:00:00,72279697.78839502,0.0,83610256.60738793,0.0,46573380.57163669,0.0,69190471.76691297,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,462951081.6307137,0.0,35233267.594637479,0.0 - 02/11 18:00:00,82363074.54371612,0.0,93966202.3584054,0.0,54055737.373790938,0.0,78950957.29316102,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,575848255.101641,0.0,14093307.03785499,0.0 - 02/11 19:00:00,74013421.27893754,0.0,85879170.57083953,0.0,44357948.76112376,0.0,67677442.19124784,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,536848376.24235466,0.0,63419881.67034747,0.0 - 02/11 20:00:00,65427392.81046466,0.0,78090643.03672374,0.0,33988729.63381702,0.0,56016134.067502129,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,384425004.3695148,0.0,63419881.67034747,69761869.8373822 - 02/11 21:00:00,71738823.71083066,0.0,84713645.24224735,0.0,38758727.538536939,0.0,62434797.212056498,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,408319861.39522877,0.0,49326574.63249246,69761869.8373822 - 02/11 22:00:00,77640613.04186155,0.0,90873887.50118444,0.0,43400699.65683417,0.0,68586175.71558666,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,355697455.53075876,0.0,35233267.594637479,69761869.8373822 - 02/11 23:00:00,82119280.46797294,0.0,95626796.57146448,0.0,46799492.407990608,0.0,73157839.17748057,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,372778882.7906638,0.0,35233267.594637479,62010550.96656194 - 02/11 24:00:00,89023662.81214084,0.0,102849368.09737413,0.0,52478653.24343918,0.0,80535466.28985074,0.0,2499.478997875543,2460.349187886455,2463.5195989376677,2965.5364200003725,362287133.57972499,0.0,35233267.594637479,46507913.22492146 - 02/12 01:00:00,100290230.33315848,0.0,114340103.11946969,0.0,62542316.69747071,0.0,93148916.89725185,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,407643507.95989969,0.0,21139960.556782485,23253956.61246073 - 02/12 02:00:00,61585223.650090787,0.0,74633839.1407057,0.0,29757855.96717184,0.0,49930957.470665138,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,234494700.69854663,0.0,14093307.03785499,0.0 - 02/12 03:00:00,92590440.72411016,0.0,106526378.71196726,0.0,55417730.1881964,0.0,85179117.8156665,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,358223045.20651128,0.0,14093307.03785499,0.0 - 02/12 04:00:00,96591159.10454123,0.0,111867626.58530271,0.0,60057934.95184078,0.0,90404681.54965802,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,377387177.09104797,0.0,14093307.03785499,0.0 - 02/12 05:00:00,100608558.74822997,0.0,116352556.00735052,0.0,63672022.90107754,0.0,94793950.70722471,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,393810493.6340387,0.0,14093307.03785499,0.0 - 02/12 06:00:00,102973033.14547526,0.0,119026852.48662865,0.0,65864576.033686939,0.0,97410534.22513226,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,403658401.16107907,0.0,14093307.03785499,0.0 - 02/12 07:00:00,100863573.45132181,0.0,117140961.036357,0.0,63789559.23013373,0.0,94846140.55084084,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,450173855.3492774,0.0,14093307.03785499,15502637.741640486 - 02/12 08:00:00,106827983.06242839,0.0,124503151.51717659,0.0,67822556.28709436,0.0,100390965.09680046,0.0,19657.307422400438,19349.568607635683,19374.502501756026,23322.64489112335,693679140.2859956,0.0,56373228.15141996,38756594.35410121 - 02/12 09:00:00,116537119.76787831,0.0,136389757.35435204,0.0,79122013.9437242,0.0,113995210.96164486,0.0,17200.143994600385,16930.87253168122,16952.689689036524,20407.314279732927,703411775.8097832,0.0,56373228.15141996,38756594.35410121 - 02/12 10:00:00,101859301.96169088,0.0,132496859.808717,0.0,81033269.34151657,0.0,115406700.9622032,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,615083334.6197656,0.0,28186614.07570998,0.0 - 02/12 11:00:00,54178265.856455188,0.0,115476568.9341355,0.0,72274099.2962679,0.0,103433549.57983732,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,492792245.70320627,0.0,28186614.07570998,0.0 - 02/12 12:00:00,45066559.19772792,0.0,116789009.43319151,0.0,74472224.48231346,0.0,106095767.8130601,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,416138441.9445482,0.0,28186614.07570998,0.0 - 02/12 13:00:00,40806446.58266848,0.0,120683109.13684277,0.0,76639047.80501396,0.0,105278721.46402546,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,416940946.06917467,0.0,28186614.07570998,0.0 - 02/12 14:00:00,36734237.430185239,0.0,115234501.38344953,0.0,73536299.2622123,0.0,101297253.11580162,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,400182073.4702621,0.0,28186614.07570998,0.0 - 02/12 15:00:00,40795324.70939809,0.0,111253762.8532802,0.0,67887642.89553474,0.0,96685269.08853634,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,426691672.96466967,0.0,28186614.07570998,0.0 - 02/12 16:00:00,56370506.39558782,0.0,111501565.61353615,0.0,64376181.754803728,0.0,95174467.69528988,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,510872177.1557512,0.0,28186614.07570998,0.0 - 02/12 17:00:00,81902076.19218117,0.0,118951068.253328,0.0,65966037.414953049,0.0,99386470.42143958,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,550039704.9834616,0.0,35233267.594637479,0.0 - 02/12 18:00:00,117829296.86493534,0.0,142424251.3107432,0.0,83486758.63038373,0.0,121004259.02648627,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,720916160.8703004,0.0,14093307.03785499,0.0 - 02/12 19:00:00,106780675.88261643,0.0,130461257.64135523,0.0,71001652.71240029,0.0,105948933.64489326,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,670364114.919017,0.0,63419881.67034747,0.0 - 02/12 20:00:00,95645934.52605325,0.0,118728437.67053509,0.0,58398455.62815908,0.0,90931668.68408689,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,509705410.55038198,0.0,63419881.67034747,69761869.8373822 - 02/12 21:00:00,100636607.39125166,0.0,122282530.78223282,0.0,61937255.38571891,0.0,95292273.88883898,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,526149581.48959007,0.0,49326574.63249246,69761869.8373822 - 02/12 22:00:00,104166666.88968034,0.0,125236706.70793088,0.0,64613728.870370689,0.0,98607774.49066049,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,465816761.2551429,0.0,35233267.594637479,69761869.8373822 - 02/12 23:00:00,105518261.95254644,0.0,126304257.19933626,0.0,65916223.421482559,0.0,100071822.43125701,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,471002449.3011228,0.0,35233267.594637479,62010550.96656194 - 02/12 24:00:00,109224505.74295144,0.0,129436964.08423019,0.0,69290598.40326737,0.0,104083431.74634233,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,448631442.12504157,0.0,35233267.594637479,46507913.22492146 - 02/13 01:00:00,118648262.6377227,0.0,138368097.4572568,0.0,78038020.65737888,0.0,114816813.39232034,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,486371422.65506568,0.0,21139960.556782485,23253956.61246073 - 02/13 02:00:00,79528609.7215679,0.0,97783666.07351394,0.0,42639579.312326449,0.0,70722801.43936897,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873273,308792965.69609358,0.0,14093307.03785499,0.0 - 02/13 03:00:00,110065902.2279511,0.0,128521984.41181156,0.0,70062003.00516384,0.0,105341782.3581291,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,432109981.15237197,0.0,14093307.03785499,0.0 - 02/13 04:00:00,114580058.89475909,0.0,132932225.50654662,0.0,74580744.29841557,0.0,110453778.78002268,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,450518691.2377905,0.0,14093307.03785499,0.0 - 02/13 05:00:00,118575352.02015352,0.0,136997011.39977927,0.0,78093298.22095625,0.0,114714451.16866993,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,466307735.97488477,0.0,14093307.03785499,0.0 - 02/13 06:00:00,121686170.17511913,0.0,140183943.33591197,0.0,80648088.58995539,0.0,117885190.70849441,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,478277212.6682342,0.0,14093307.03785499,0.0 - 02/13 07:00:00,121690205.67268543,0.0,140330598.19583614,0.0,79912983.2826583,0.0,117184997.27119524,0.0,4763.522785371986,4688.94894753269,4694.991136842655,5651.737950000426,530395907.3734671,0.0,14093307.03785499,15502637.741640486 - 02/13 08:00:00,107835894.08672035,0.0,136243529.48771299,0.0,74855035.15850692,0.0,111335935.23072756,0.0,19054.091141487945,18755.79579013076,18779.96454737062,22606.951800001705,715378885.7680354,0.0,56373228.15141996,38756594.35410121 - 02/13 09:00:00,106630168.28881957,0.0,145216944.35699374,0.0,84417287.99175492,0.0,122994498.3482898,0.0,16672.32974880195,16411.32131636441,16432.46897894929,19781.08282500149,708728829.3146798,0.0,56373228.15141996,38756594.35410121 - 02/13 10:00:00,76642296.73665594,0.0,141715638.37152113,0.0,86270836.92630856,0.0,124290151.1738131,0.0,11908.806963429963,11722.372368831724,11737.477842106638,14129.344875001067,607111730.5860286,0.0,28186614.07570998,0.0 - 02/13 11:00:00,58136617.130480129,0.0,141796476.66130979,0.0,87433791.65227136,0.0,125590997.36761266,0.0,9556.204811154124,9406.60064212726,9418.722007166407,11338.072225670863,555948441.6817012,0.0,28186614.07570998,0.0 - 02/13 12:00:00,52563480.7153961,0.0,145040358.25364167,0.0,90865356.13911069,0.0,129811112.74167013,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,489990800.5111216,0.0,28186614.07570998,0.0 - 02/13 13:00:00,47731923.86754589,0.0,144465809.04381234,0.0,90276256.66951964,0.0,124528777.02947837,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,478890301.64254257,0.0,28186614.07570998,0.0 - 02/13 14:00:00,47113204.14750211,0.0,134150499.23348755,0.0,85018661.98437801,0.0,117771231.14995632,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,455941131.5475103,0.0,28186614.07570998,0.0 - 02/13 15:00:00,52623365.1150811,0.0,128571570.3344138,0.0,78779743.257486,0.0,112344069.13707693,0.0,7206.475870491073,7093.657146371787,7102.798047639422,8550.208532242006,480150050.3923373,0.0,28186614.07570998,0.0 - 02/13 16:00:00,69011623.54271364,0.0,129794896.78668109,0.0,76210365.11632954,0.0,111847092.09002145,0.0,11981.213312185679,11793.645182690276,11808.842498260512,14215.25224387947,566140209.1890031,0.0,28186614.07570998,0.0 - 02/13 17:00:00,96486941.74179745,0.0,140289677.61041088,0.0,79319148.01145104,0.0,118293865.02676022,0.0,11981.213312185679,11793.645182690276,11808.842498260512,14215.25224387947,613665864.0436769,0.0,35233267.594637479,0.0 - 02/13 18:00:00,133677689.91295591,0.0,166284106.5635765,0.0,97433732.49319892,0.0,141063182.88511086,0.0,16723.358419519715,16461.5511237227,16482.763512541213,19841.626394924006,788692189.8773897,0.0,14093307.03785499,0.0 - 02/13 19:00:00,124617736.30716029,0.0,154875745.20269657,0.0,85791343.50603438,0.0,127020376.22701434,0.0,16672.32974880195,16411.32131636441,16432.46897894929,19781.08282500149,741775131.5717273,0.0,63419881.67034747,0.0 - 02/13 20:00:00,114013153.8791113,0.0,142596690.61988176,0.0,73467647.58681864,0.0,112115794.73424813,0.0,9502.452950973351,9353.690277345017,9365.743461978695,11274.29769540102,584379550.6085729,0.0,63419881.67034747,69761869.8373822 - 02/13 21:00:00,117411698.96528964,0.0,144453821.19016654,0.0,75759857.1157933,0.0,114938453.19100614,0.0,9556.204811154124,9406.60064212726,9418.722007166407,11338.072225670863,595554389.3322828,0.0,49326574.63249246,69761869.8373822 - 02/13 22:00:00,119742213.52375017,0.0,145581627.0708017,0.0,77460511.06515837,0.0,116777002.72043951,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,531271847.0414527,0.0,35233267.594637479,69761869.8373822 - 02/13 23:00:00,123099543.6036641,0.0,147771943.75664646,0.0,80109637.12941076,0.0,119739806.01689463,0.0,4763.522785371986,4688.94894753269,4694.991136842655,5651.737950000426,541998053.4577078,0.0,35233267.594637479,62010550.96656194 - 02/13 24:00:00,128653407.10755503,0.0,152727355.96573044,0.0,84966779.86210391,0.0,125598562.18272592,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,527492671.0652437,0.0,35233267.594637479,46507913.22492146 - 02/14 01:00:00,138191849.51257918,0.0,161683717.66035215,0.0,93947603.85477296,0.0,136388964.59548263,0.0,2368.1496822499796,2331.0758571964695,2334.079686366433,2809.7192001588134,565647023.556685,0.0,21139960.556782485,23253956.61246073 - 02/14 02:00:00,96425250.2967568,0.0,117760021.16279367,0.0,56997548.873781148,0.0,89937504.55767499,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,378893607.86457076,0.0,14093307.03785499,0.0 - 02/14 03:00:00,124979822.92649994,0.0,146618481.58841167,0.0,81889401.66310314,0.0,121559849.18191698,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,492820838.33349588,0.0,14093307.03785499,0.0 - 02/14 04:00:00,126761880.3112139,0.0,147706341.01363046,0.0,84052693.8541585,0.0,123503320.41647461,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,499797518.5690416,0.0,14093307.03785499,0.0 - 02/14 05:00:00,128343211.92327315,0.0,148800055.9306312,0.0,85915497.84459469,0.0,125289302.1246106,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,506065511.7898587,0.0,14093307.03785499,0.0 - 02/14 06:00:00,128878255.16635794,0.0,148866874.13671629,0.0,86915618.7170779,0.0,126027755.78618063,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,508405947.7730818,0.0,14093307.03785499,0.0 - 02/14 07:00:00,127764761.32549846,0.0,147612523.0733482,0.0,85669800.80150053,0.0,124405234.1134315,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,555905582.3037238,0.0,14093307.03785499,15502637.741640486 - 02/14 08:00:00,97313623.9244944,0.0,133109421.02508115,0.0,72713901.01315475,0.0,108448425.18618688,0.0,18833.853537365165,18539.00604678581,18562.895448314102,22345.648289696215,693398423.1086978,0.0,56373228.15141996,38756594.35410121 - 02/14 09:00:00,73130296.8870591,0.0,131244004.31472913,0.0,74306538.79569859,0.0,109638173.48768437,0.0,16672.32974880195,16411.32131636441,16432.46897894929,19781.08282500149,637788943.813993,0.0,56373228.15141996,38756594.35410121 - 02/14 10:00:00,55307998.12883036,0.0,131188606.05957787,0.0,79109168.66983602,0.0,114566267.35634586,0.0,12010.79311748512,11822.761910619647,11837.996746065704,14250.347553736674,559890877.7950559,0.0,28186614.07570998,0.0 - 02/14 11:00:00,43939964.76831399,0.0,132881521.89018855,0.0,81182411.00412965,0.0,117464875.60203135,0.0,9636.653389793966,9485.78978326083,9498.013191590995,11433.521393315998,519663093.1933259,0.0,28186614.07570998,0.0 - 02/14 12:00:00,38501637.605602268,0.0,135352648.19940526,0.0,84278833.82072544,0.0,121171368.70194645,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,451777724.9249448,0.0,28186614.07570998,0.0 - 02/14 13:00:00,30553494.99272657,0.0,130639335.67413631,0.0,81400092.18170329,0.0,112200862.90276659,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,427794242.7721065,0.0,28186614.07570998,0.0 - 02/14 14:00:00,24276830.850510189,0.0,115916803.14196956,0.0,72961887.28964281,0.0,101015747.18614826,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,387551050.7468842,0.0,28186614.07570998,0.0 - 02/14 15:00:00,25302556.840201849,0.0,105482445.76447147,0.0,63374478.81589828,0.0,91142390.7873294,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,395874193.73528376,0.0,28186614.07570998,0.0 - 02/14 16:00:00,37432127.56893639,0.0,101572011.66850388,0.0,57539178.3370888,0.0,86399379.58336655,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,467229899.7035336,0.0,28186614.07570998,0.0 - 02/14 17:00:00,62487105.82786591,0.0,108306252.94269943,0.0,58892374.97978415,0.0,90130101.8560296,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,504103038.15201708,0.0,35233267.594637479,0.0 - 02/14 18:00:00,100450731.01353678,0.0,132798699.61900422,0.0,77221110.7336424,0.0,112679655.92742804,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,679979435.2687585,0.0,14093307.03785499,0.0 - 02/14 19:00:00,89382756.40689886,0.0,119212985.00449725,0.0,64391082.34415138,0.0,96785779.20902467,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,626601840.9397192,0.0,63419881.67034747,0.0 - 02/14 20:00:00,81530781.98670849,0.0,110233459.11603566,0.0,54275771.94817791,0.0,84877685.48129201,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,475864171.72674486,0.0,63419881.67034747,69761869.8373822 - 02/14 21:00:00,84580739.20594722,0.0,111981667.10343594,0.0,56094125.01736257,0.0,87039811.27612448,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,486455907.1600972,0.0,49326574.63249246,69761869.8373822 - 02/14 22:00:00,91791221.17291442,0.0,118248948.39638858,0.0,61477924.021933328,0.0,93826638.70510344,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,437614175.61037376,0.0,35233267.594637479,69761869.8373822 - 02/14 23:00:00,93982352.45370358,0.0,119523988.46586979,0.0,62705739.78706516,0.0,95311313.30452733,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,444715278.30766639,0.0,35233267.594637479,62010550.96656194 - 02/14 24:00:00,100019187.86137553,0.0,124733991.73268184,0.0,67630729.31683058,0.0,101337678.87459438,0.0,2414.920283390001,2377.114255850597,2380.177410196268,2865.2107330678456,429856309.4424993,0.0,35233267.594637479,46507913.22492146 - 02/15 01:00:00,112104818.69198513,0.0,136322945.08924297,0.0,78079388.9831111,0.0,114288357.60632533,0.0,2414.920283390001,2377.114255850597,2380.177410196268,2865.2107330678456,476930232.0276815,0.0,21139960.556782485,23253956.61246073 - 02/15 02:00:00,71801276.52052994,0.0,94162448.90543683,0.0,40981156.17006677,0.0,68090954.60767709,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,293060126.19479349,0.0,14093307.03785499,0.0 - 02/15 03:00:00,101622749.07671449,0.0,123816753.19668228,0.0,67675425.47312644,0.0,101871972.93451032,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,413054261.50954207,0.0,14093307.03785499,0.0 - 02/15 04:00:00,104903043.24169269,0.0,126333391.50506842,0.0,70742238.00632748,0.0,105037624.14253216,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,425040586.88670358,0.0,14093307.03785499,0.0 - 02/15 05:00:00,109130458.3132957,0.0,130327852.15805203,0.0,73967983.33735869,0.0,109021397.61489858,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,440419575.1816516,0.0,14093307.03785499,0.0 - 02/15 06:00:00,113319890.58264554,0.0,134433634.4321639,0.0,76928773.3712402,0.0,112865757.52471212,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,455475679.0760875,0.0,14093307.03785499,0.0 - 02/15 07:00:00,114702652.97568012,0.0,136029298.67667196,0.0,76786734.79610324,0.0,113226964.8851003,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,512240930.76856926,0.0,14093307.03785499,15502637.741640486 - 02/15 08:00:00,108919158.27951004,0.0,136077960.35755859,0.0,75451689.79543272,0.0,111998510.59448795,0.0,19169.941299497084,18869.832292304443,18894.147997216816,22744.403590207152,719289289.6722012,0.0,56373228.15141996,38756594.35410121 - 02/15 09:00:00,124728167.60377348,0.0,150073089.10109604,0.0,89289129.90935749,0.0,128704111.56803131,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,744400870.7949103,0.0,56373228.15141996,38756594.35410121 - 02/15 10:00:00,129601252.1745791,0.0,152982357.71672765,0.0,95239745.50256033,0.0,135403355.33081047,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,694409802.2178408,0.0,28186614.07570998,0.0 - 02/15 11:00:00,121790802.61139375,0.0,145362981.54402054,0.0,90380978.7695151,0.0,129108070.7952404,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,632319405.6614013,0.0,28186614.07570998,0.0 - 02/15 12:00:00,116057753.23114863,0.0,138996858.1037325,0.0,86109272.66304365,0.0,123463734.89494698,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,538007401.1714852,0.0,28186614.07570998,0.0 - 02/15 13:00:00,118111721.04320382,0.0,139557078.6460657,0.0,85209511.97639594,0.0,122586267.53672369,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,538844361.4810026,0.0,28186614.07570998,0.0 - 02/15 14:00:00,117005328.04484885,0.0,137828848.48864154,0.0,83497147.79898246,0.0,120484253.25281498,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,532530458.603543,0.0,28186614.07570998,0.0 - 02/15 15:00:00,114864716.17937944,0.0,135016059.69989104,0.0,81138054.29372603,0.0,117398437.56554052,0.0,7422.00350549652,7305.810656044584,7315.22493876349,8805.923843980354,559473534.3379629,0.0,28186614.07570998,0.0 - 02/15 16:00:00,115674394.47681833,0.0,134914279.88778527,0.0,80280851.27989371,0.0,116335559.60345468,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,632654928.6419935,0.0,28186614.07570998,0.0 - 02/15 17:00:00,115435153.24103473,0.0,133994406.37275279,0.0,78473502.85817279,0.0,114125185.82896643,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,627896493.000058,0.0,35233267.594637479,0.0 - 02/15 18:00:00,118162387.61109217,0.0,135946673.9102914,0.0,80412933.31836954,0.0,116177683.67591462,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,710915221.0944516,0.0,14093307.03785499,0.0 - 02/15 19:00:00,102033839.89282206,0.0,119239088.80833413,0.0,64922573.69583111,0.0,96964580.49770339,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,643853265.778619,0.0,63419881.67034747,0.0 - 02/15 20:00:00,86811942.2775465,0.0,104043994.5992653,0.0,49951237.689803067,0.0,78814164.72373212,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,468588872.36687758,0.0,63419881.67034747,69761869.8373822 - 02/15 21:00:00,88954885.56255661,0.0,105749712.69418778,0.0,52044900.40807426,0.0,81175408.59649295,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,476892440.33784219,0.0,49326574.63249246,69761869.8373822 - 02/15 22:00:00,91983105.72275269,0.0,108698407.27616748,0.0,54733241.992870729,0.0,84514507.72876235,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,414413029.2588185,0.0,35233267.594637479,69761869.8373822 - 02/15 23:00:00,95296583.56984243,0.0,111889384.91329767,0.0,57112957.659113,0.0,87655696.46736765,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,426301920.4892733,0.0,35233267.594637479,62010550.96656194 - 02/15 24:00:00,100899355.89486376,0.0,117501726.10917145,0.0,62000555.21757279,0.0,93754357.36633304,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,411174750.1210829,0.0,35233267.594637479,46507913.22492146 - 02/16 01:00:00,111210369.37925759,0.0,127767863.57969305,0.0,71131457.42813523,0.0,105129934.42082064,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,452258380.3410484,0.0,21139960.556782485,23253956.61246073 - 02/16 02:00:00,68424702.06669653,0.0,83487629.51954402,0.0,34170414.567053068,0.0,57697310.80523376,0.0,1237.00058424942,1217.6351093407644,1219.2041564605814,1467.6539739967253,262289434.7250983,0.0,14093307.03785499,0.0 - 02/16 03:00:00,97692726.73591618,0.0,112839335.12084726,0.0,59701269.65792183,0.0,91107708.20942647,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,379806814.62381699,0.0,14093307.03785499,0.0 - 02/16 04:00:00,100258476.37831864,0.0,115383431.6469988,0.0,62763793.921112719,0.0,94167153.27942959,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,391038630.12556496,0.0,14093307.03785499,0.0 - 02/16 05:00:00,102137163.16434501,0.0,116901501.74435562,0.0,64706328.18934249,0.0,96160855.20520103,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,398334568.5578079,0.0,14093307.03785499,0.0 - 02/16 06:00:00,102973799.00792615,0.0,117551963.17305832,0.0,65877490.3884456,0.0,97216910.7050935,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,402048883.5290874,0.0,14093307.03785499,0.0 - 02/16 07:00:00,103640754.91350203,0.0,118585517.20927543,0.0,66139920.85786641,0.0,97652962.75498647,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,404269269.9908238,0.0,14093307.03785499,15502637.741640486 - 02/16 08:00:00,80283176.77265606,0.0,108186002.13555283,0.0,56382843.84025702,0.0,85844674.99276723,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,403888582.03773358,0.0,56373228.15141996,38756594.35410121 - 02/16 09:00:00,60642497.41218406,0.0,104667000.50395905,0.0,57531960.781652677,0.0,85890292.67947839,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,493389500.37432649,0.0,56373228.15141996,38756594.35410121 - 02/16 10:00:00,39688864.22599431,0.0,100724352.78099489,0.0,59731005.95417316,0.0,87419705.37670213,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,473432173.03699579,0.0,28186614.07570998,0.0 - 02/16 11:00:00,21322767.32015547,0.0,97732210.3174226,0.0,58474926.221362438,0.0,85725634.25933293,0.0,12497.394989377714,12301.745939432274,12317.597994688338,14827.682100001863,450255453.80287399,0.0,28186614.07570998,0.0 - 02/16 12:00:00,12721273.658685789,0.0,98027157.06749475,0.0,59851162.3751841,0.0,87149671.88289331,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,370362476.2328906,0.0,28186614.07570998,0.0 - 02/16 13:00:00,6945157.487742574,0.0,97196408.87905887,0.0,59383114.78778922,0.0,81946567.09880352,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,358084459.5020269,0.0,28186614.07570998,0.0 - 02/16 14:00:00,3648118.158651338,0.0,86269077.03383173,0.0,53483923.704526979,0.0,74134665.95420724,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,330329904.27415516,0.0,28186614.07570998,0.0 - 02/16 15:00:00,7935876.260060005,0.0,79578316.37101257,0.0,46563998.30698258,0.0,67758363.23322062,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,314630673.5942136,0.0,28186614.07570998,0.0 - 02/16 16:00:00,22617296.319911198,0.0,78907326.27507159,0.0,42873554.103318739,0.0,65814702.31046278,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,472977038.5889073,0.0,28186614.07570998,0.0 - 02/16 17:00:00,48887438.40016493,0.0,87750576.04305324,0.0,45652206.398022089,0.0,71552102.46547348,0.0,22533.490570034777,22180.724571542367,22209.306699092293,26735.126405131112,591013456.9915958,0.0,35233267.594637479,0.0 - 02/16 18:00:00,87767512.16755679,0.0,114524442.69559267,0.0,64540444.05217366,0.0,95603387.3343586,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,623128969.1336101,0.0,14093307.03785499,0.0 - 02/16 19:00:00,86738712.44603339,0.0,111296055.29749538,0.0,59146746.419878598,0.0,89501332.86997625,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,605203695.6292567,0.0,63419881.67034747,0.0 - 02/16 20:00:00,73895107.53801853,0.0,96788322.03921959,0.0,45339257.28530642,0.0,72477083.745695,0.0,14906.117116577769,14672.75907238434,14691.666420066496,17685.538957348504,511541664.2471971,0.0,63419881.67034747,69761869.8373822 - 02/16 21:00:00,77557274.93364291,0.0,98962132.25107032,0.0,47961751.92028195,0.0,75523207.17364994,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,485454209.6726866,0.0,49326574.63249246,69761869.8373822 - 02/16 22:00:00,79613010.90346971,0.0,99738321.44328258,0.0,49844339.47648716,0.0,77354342.98685928,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,455517547.8866292,0.0,35233267.594637479,69761869.8373822 - 02/16 23:00:00,85224132.0619704,0.0,105140440.88721079,0.0,53560227.2737489,0.0,82424764.76007141,0.0,7422.00350549652,7305.810656044584,7315.22493876349,8805.923843980354,437405831.5824273,0.0,35233267.594637479,62010550.96656194 - 02/16 24:00:00,92297079.61942353,0.0,112038537.51273662,0.0,58843694.99062191,0.0,89330350.09417768,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,426547173.28324356,0.0,35233267.594637479,46507913.22492146 - 02/17 01:00:00,99476622.81337653,0.0,118343414.69473277,0.0,65700569.75214315,0.0,97405710.35308212,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,418099966.5531607,0.0,21139960.556782485,23253956.61246073 - 02/17 02:00:00,56605330.597481239,0.0,73669375.07247596,0.0,28193965.395614827,0.0,48713638.39324043,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,225769133.9287256,0.0,14093307.03785499,0.0 - 02/17 03:00:00,82099121.82895655,0.0,98463225.2972617,0.0,51409359.0501658,0.0,78919396.14864403,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,329552072.7813026,0.0,14093307.03785499,0.0 - 02/17 04:00:00,83572867.10263065,0.0,99221721.77895184,0.0,53163761.73918099,0.0,80547634.32557315,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,335166955.40261116,0.0,14093307.03785499,0.0 - 02/17 05:00:00,83688464.35286206,0.0,98777265.84328814,0.0,53663190.753922779,0.0,80610828.26099393,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,335439740.77952697,0.0,14093307.03785499,0.0 - 02/17 06:00:00,84371454.2359398,0.0,99019844.39051755,0.0,54613093.05806472,0.0,81353344.08673361,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,338018706.2275302,0.0,14093307.03785499,0.0 - 02/17 07:00:00,83557548.32935468,0.0,98112295.66564277,0.0,52973452.51976751,0.0,79511645.46293885,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,332815912.4339783,0.0,14093307.03785499,15502637.741640486 - 02/17 08:00:00,84483407.4762601,0.0,100922159.94641207,0.0,54393939.93663257,0.0,81422351.07296369,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806395,339882828.8885429,0.0,56373228.15141996,38756594.35410121 - 02/17 09:00:00,91303695.99829239,0.0,108094228.63689214,0.0,62860835.6723925,0.0,91391330.07822779,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,428577008.98244526,0.0,56373228.15141996,38756594.35410121 - 02/17 10:00:00,93567143.0918689,0.0,108880261.4079175,0.0,67478051.81440015,0.0,95995413.85602507,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,478714989.5931495,0.0,28186614.07570998,0.0 - 02/17 11:00:00,82217828.48580946,0.0,98558922.43275184,0.0,61569998.839210618,0.0,88000811.54486758,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,443524139.9183949,0.0,28186614.07570998,0.0 - 02/17 12:00:00,51654912.28564262,0.0,77074409.83539668,0.0,51386655.49770633,0.0,73231105.0792251,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,329163593.8090569,0.0,28186614.07570998,0.0 - 02/17 13:00:00,39323900.17583692,0.0,70982635.0808719,0.0,47252970.75904443,0.0,66122221.602950919,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,299715799.5711152,0.0,28186614.07570998,0.0 - 02/17 14:00:00,17756871.13510763,0.0,64001839.907605979,0.0,41619753.47063703,0.0,58145031.89835868,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,295878204.0220898,0.0,28186614.07570998,0.0 - 02/17 15:00:00,0.0,0.0,54078697.00198729,0.0,32746722.30966368,0.0,47504083.84639606,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,286802446.63855436,0.0,28186614.07570998,0.0 - 02/17 16:00:00,0.0,0.0,50087368.11145076,0.0,26563587.883329575,0.0,41958948.70679242,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,309201084.0522069,0.0,28186614.07570998,0.0 - 02/17 17:00:00,22244390.056357214,0.0,55864246.85405413,0.0,27256092.45628996,0.0,45015742.737202677,0.0,15244.303608821841,15005.651192003705,15024.98750515958,18086.784321024057,378482687.961137,0.0,35233267.594637479,0.0 - 02/17 18:00:00,63092300.30648081,0.0,86641870.10976824,0.0,48060418.67878523,0.0,72222223.1399657,0.0,17589.0072895276,17313.648099183974,17335.958501927096,20868.685735339546,533203090.88852158,0.0,14093307.03785499,0.0 - 02/17 19:00:00,61228741.5321118,0.0,83944169.49938627,0.0,42258939.16493923,0.0,66110997.6118015,0.0,10034.74093803058,9877.64519666664,9890.37355069283,11905.837073362818,403693796.1397491,0.0,63419881.67034747,0.0 - 02/17 20:00:00,52101795.05241178,0.0,73848911.43565734,0.0,31004621.21179565,0.0,52765648.353145908,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,322111353.94797137,0.0,63419881.67034747,69761869.8373822 - 02/17 21:00:00,60878363.61664544,0.0,81823267.33970276,0.0,37236361.33625553,0.0,60812002.58849959,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,315233761.41936859,0.0,49326574.63249246,69761869.8373822 - 02/17 22:00:00,70330944.51086411,0.0,90924324.49633631,0.0,44019650.88773684,0.0,69761652.34374665,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,349216509.5963005,0.0,35233267.594637479,69761869.8373822 - 02/17 23:00:00,76290701.0639043,0.0,96301269.11939088,0.0,48205442.52340205,0.0,75150529.53499773,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,369985453.30797889,0.0,35233267.594637479,62010550.96656194 - 02/17 24:00:00,80283533.38744316,0.0,99422086.79719666,0.0,51426643.17453644,0.0,78929135.30507998,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,384408696.54390886,0.0,35233267.594637479,46507913.22492146 - 02/18 01:00:00,87925320.51831597,0.0,106194791.04710932,0.0,58569884.52048235,0.0,87362461.26454395,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,377294340.6195842,0.0,21139960.556782485,23253956.61246073 - 02/18 02:00:00,45910939.868461918,0.0,62202924.19806037,0.0,22460019.516846748,0.0,40427824.52976642,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,189662678.5694099,0.0,14093307.03785499,0.0 - 02/18 03:00:00,72736188.37011649,0.0,88470340.8693617,0.0,45845432.766434159,0.0,70578168.99422916,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,296291101.456416,0.0,14093307.03785499,0.0 - 02/18 04:00:00,74864449.30813723,0.0,89893043.47976126,0.0,48101366.23170091,0.0,73084829.19775093,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,304604658.6736249,0.0,14093307.03785499,0.0 - 02/18 05:00:00,75779019.02821876,0.0,90280344.7788121,0.0,49331812.949457298,0.0,74028987.04515428,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,308081134.2579169,0.0,14093307.03785499,0.0 - 02/18 06:00:00,78415213.21068917,0.0,92809999.4163437,0.0,51359442.47023031,0.0,76480118.9017804,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,317685715.6336099,0.0,14093307.03785499,0.0 - 02/18 07:00:00,76633327.37511331,0.0,91924338.51529293,0.0,49505174.895021189,0.0,74521320.4448277,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,366764098.5878717,0.0,14093307.03785499,15502637.741640486 - 02/18 08:00:00,51424627.3522716,0.0,79591494.91565897,0.0,38022258.85279753,0.0,60413641.48756014,0.0,19954.10685172838,19641.721586529617,19667.031949582703,23674.78608449023,528027549.9086795,0.0,56373228.15141996,38756594.35410121 - 02/18 09:00:00,30950315.727095739,0.0,70896415.16937636,0.0,36729903.90718347,0.0,55913934.55679173,0.0,17679.754964758045,17402.975102629724,17425.400612334204,20976.354387948744,459034715.60406187,0.0,56373228.15141996,38756594.35410121 - 02/18 10:00:00,19922277.534500146,0.0,65924098.73300125,0.0,40604613.71800509,0.0,60008654.51606566,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,376544824.3825997,0.0,28186614.07570998,0.0 - 02/18 11:00:00,24613080.712310744,0.0,64773210.080859888,0.0,40850419.03116727,0.0,60089084.57819496,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,342618527.8497143,0.0,28186614.07570998,0.0 - 02/18 12:00:00,22328699.75138897,0.0,60753619.84307574,0.0,38123866.063278499,0.0,56607197.44748445,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,254408249.2658144,0.0,28186614.07570998,0.0 - 02/18 13:00:00,10673724.814036416,0.0,55876355.082986149,0.0,34543074.824007827,0.0,49614158.996622968,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,227535889.54647703,0.0,28186614.07570998,0.0 - 02/18 14:00:00,0.0,0.0,45699602.4372752,0.0,28943310.79931919,0.0,41668851.674987029,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,193213686.36995358,0.0,28186614.07570998,0.0 - 02/18 15:00:00,7731303.433789998,0.0,45701389.595548529,0.0,26265869.92911675,0.0,39761125.94327188,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,234995503.789703,0.0,28186614.07570998,0.0 - 02/18 16:00:00,20065053.490257719,0.0,47265563.20300878,0.0,26032646.346631066,0.0,40426245.70903513,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,326187931.0552989,0.0,28186614.07570998,0.0 - 02/18 17:00:00,27425107.003826515,0.0,50445878.30794415,0.0,25766757.513815706,0.0,41198842.16084325,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,337235007.2927959,0.0,35233267.594637479,0.0 - 02/18 18:00:00,43498235.196560759,0.0,61863445.539044488,0.0,33484391.524813385,0.0,51010577.23752363,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,459214440.72685506,0.0,14093307.03785499,0.0 - 02/18 19:00:00,34812143.541393388,0.0,52162865.42400883,0.0,22820855.577576847,0.0,38293794.97397181,0.0,17936.506471112665,17655.70711625542,17678.45829695528,21280.98024943098,416475607.19846656,0.0,63419881.67034747,0.0 - 02/18 20:00:00,26410814.38697946,0.0,43633821.81664787,0.0,12224561.265121129,0.0,26091628.129930468,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,261550557.91985239,0.0,63419881.67034747,69761869.8373822 - 02/18 21:00:00,30478037.47561391,0.0,46946471.15462517,0.0,15023447.175903358,0.0,29666898.64692702,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,275478253.1282213,0.0,49326574.63249246,69761869.8373822 - 02/18 22:00:00,33858923.377844858,0.0,49388530.515116129,0.0,17369286.732690365,0.0,32552522.604709995,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,209933061.01024074,0.0,35233267.594637479,69761869.8373822 - 02/18 23:00:00,37103943.539072457,0.0,51936152.28362113,0.0,19354654.55492294,0.0,35118030.458389129,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,220276578.61588506,0.0,35233267.594637479,62010550.96656194 - 02/18 24:00:00,41708524.83448642,0.0,55848970.51128163,0.0,23069922.950325129,0.0,39618173.63821869,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,198627490.82425157,0.0,35233267.594637479,46507913.22492146 - 02/19 01:00:00,50334027.72317718,0.0,63793053.3735094,0.0,31088895.5560316,0.0,49208798.84306683,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,232806674.3857247,0.0,21139960.556782485,23253956.61246073 - 02/19 02:00:00,13026884.489678769,0.0,24643098.051015948,0.0,217541.42945630596,0.0,8716457.205427457,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210436,1521.697464544115,65794930.62054832,0.0,14093307.03785499,0.0 - 02/19 03:00:00,40048746.844161499,0.0,52218664.11765635,0.0,19638363.819730186,0.0,37486428.33144337,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,168540919.6531381,0.0,14093307.03785499,0.0 - 02/19 04:00:00,43455438.52085978,0.0,54588988.64753601,0.0,24997229.686612544,0.0,41216149.04035092,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,183406522.43550594,0.0,14093307.03785499,0.0 - 02/19 05:00:00,47848321.789932239,0.0,58961354.27013711,0.0,28618871.550626086,0.0,45666615.02142745,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,200180261.8008389,0.0,14093307.03785499,0.0 - 02/19 06:00:00,55485076.8394741,0.0,67183503.76701612,0.0,34462870.21291806,0.0,53415005.634687948,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,229500584.23186774,0.0,14093307.03785499,0.0 - 02/19 07:00:00,59412979.36093398,0.0,71787634.80638343,0.0,36701684.285307887,0.0,56828201.37225436,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,300181552.2353833,0.0,14093307.03785499,15502637.741640486 - 02/19 08:00:00,67289590.12285358,0.0,81590872.07374725,0.0,42467758.972123209,0.0,64825904.00758676,0.0,20069.48187606116,19755.29039333328,19780.74710138566,23811.674146725636,556476021.8393314,0.0,56373228.15141996,38756594.35410121 - 02/19 09:00:00,76718342.73695953,0.0,93862730.4522321,0.0,54828101.501055467,0.0,79845594.98587606,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,567054651.634564,0.0,56373228.15141996,38756594.35410121 - 02/19 10:00:00,65077124.64211887,0.0,94017055.1555099,0.0,60084525.067093949,0.0,85385884.0436818,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,491174293.4711491,0.0,28186614.07570998,0.0 - 02/19 11:00:00,22882299.85072858,0.0,83158960.58693543,0.0,54138458.6600877,0.0,77333096.55152154,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,387112748.19695386,0.0,28186614.07570998,0.0 - 02/19 12:00:00,8052382.251357006,0.0,83419995.38216046,0.0,55677107.94223595,0.0,79117577.12690228,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,301193981.29929617,0.0,28186614.07570998,0.0 - 02/19 13:00:00,640123.4692025987,0.0,85831786.15425122,0.0,56087675.96763046,0.0,75561329.44079593,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,293047833.6285207,0.0,28186614.07570998,0.0 - 02/19 14:00:00,0.0,0.0,76941134.14980778,0.0,50923040.79459736,0.0,69000766.11058946,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,271791859.65163508,0.0,28186614.07570998,0.0 - 02/19 15:00:00,0.0,0.0,72090167.66862537,0.0,44741570.45101179,0.0,63721433.540373567,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,292943549.5549714,0.0,28186614.07570998,0.0 - 02/19 16:00:00,15912389.70417706,0.0,74436265.0556143,0.0,42272864.19584224,0.0,63827120.47324833,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,383058343.9916265,0.0,28186614.07570998,0.0 - 02/19 17:00:00,46651220.413585398,0.0,87150341.02988959,0.0,46802788.70314414,0.0,72473680.05885829,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,438946274.9046087,0.0,35233267.594637479,0.0 - 02/19 18:00:00,87457014.07149549,0.0,115744134.18128912,0.0,66373740.672273728,0.0,97715594.18705419,0.0,17351.322909319388,17079.6847122879,17101.693629326863,20586.682291193076,626920263.8637705,0.0,14093307.03785499,0.0 - 02/19 19:00:00,84762434.18132729,0.0,110258364.31006997,0.0,58208044.83404763,0.0,88423355.6995284,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,600173047.6208464,0.0,63419881.67034747,0.0 - 02/19 20:00:00,78934978.99138767,0.0,102775781.84347946,0.0,48585624.35820672,0.0,77388386.5500082,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,454752013.9043299,0.0,63419881.67034747,69761869.8373822 - 02/19 21:00:00,88942196.62603954,0.0,111450451.10592708,0.0,55199877.987638067,0.0,86012559.16681935,0.0,9782.97647591426,9629.822154171365,9642.231162912527,11607.128149502149,487988853.4794251,0.0,49326574.63249246,69761869.8373822 - 02/19 22:00:00,96485494.694919,0.0,117893756.74188891,0.0,60716561.65092399,0.0,92947553.11831723,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,441043823.2268229,0.0,35233267.594637479,69761869.8373822 - 02/19 23:00:00,100532812.24316052,0.0,121092217.16862284,0.0,63643809.82956996,0.0,96524670.45553029,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,454793966.71765747,0.0,35233267.594637479,62010550.96656194 - 02/19 24:00:00,107464983.9646321,0.0,127690136.55002384,0.0,69146093.63979729,0.0,103480013.12432742,0.0,2427.321367384332,2389.3211985615769,2392.400082798868,2879.9241458486415,444101507.73931697,0.0,35233267.594637479,46507913.22492146 - 02/20 01:00:00,119170380.1938555,0.0,139612113.90887676,0.0,79400099.06910345,0.0,116291082.10177368,0.0,2421.7301398206884,2383.8175027084846,2386.889294871918,2873.290367774655,490710293.57224217,0.0,21139960.556782485,23253956.61246073 - 02/20 02:00:00,76510799.93033864,0.0,94545685.0857727,0.0,41367947.5837134,0.0,68315119.61532822,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,298899692.4454211,0.0,14093307.03785499,0.0 - 02/20 03:00:00,105405390.6388239,0.0,123216791.68419396,0.0,68034924.37644923,0.0,101779950.62256083,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,416504418.1505364,0.0,14093307.03785499,0.0 - 02/20 04:00:00,108486667.0032824,0.0,126032843.50913094,0.0,71310443.36873383,0.0,105199102.8423123,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,429096417.5519679,0.0,14093307.03785499,0.0 - 02/20 05:00:00,111051877.98228099,0.0,128438338.58620122,0.0,73546598.79474029,0.0,107739633.0957231,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,438800738.4500284,0.0,14093307.03785499,0.0 - 02/20 06:00:00,111447703.99072427,0.0,128560004.72772095,0.0,73892483.98204331,0.0,107917032.93757382,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,439935534.78737869,0.0,14093307.03785499,0.0 - 02/20 07:00:00,108668680.72032711,0.0,126765562.9989717,0.0,71287914.46953032,0.0,105029501.35414952,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,483639194.575165,0.0,14093307.03785499,15502637.741640486 - 02/20 08:00:00,80969992.14108414,0.0,113902433.86878629,0.0,58997919.41192397,0.0,90453117.60537908,0.0,19319.362267120006,19016.914046804777,19041.419281570143,22921.685864542764,633401236.2833091,0.0,56373228.15141996,38756594.35410121 - 02/20 09:00:00,57082365.78778964,0.0,112369930.0911414,0.0,60910061.612265828,0.0,92048530.80126006,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,577344889.1896119,0.0,56373228.15141996,38756594.35410121 - 02/20 10:00:00,42129152.863406579,0.0,113867315.7839105,0.0,67613167.92144923,0.0,98762384.43676824,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,505351731.7467859,0.0,28186614.07570998,0.0 - 02/20 11:00:00,29566517.934965716,0.0,113971395.23245767,0.0,69207758.1915919,0.0,100641426.69641245,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,460454340.21667566,0.0,28186614.07570998,0.0 - 02/20 12:00:00,21995663.446109259,0.0,113303086.5018633,0.0,70020451.4621721,0.0,101284146.32068804,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,380950645.6104853,0.0,28186614.07570998,0.0 - 02/20 13:00:00,16791796.15477398,0.0,110284679.02567542,0.0,67900035.66853044,0.0,93740204.65992354,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,363200482.0471686,0.0,28186614.07570998,0.0 - 02/20 14:00:00,14687029.43132646,0.0,97976128.72337586,0.0,61102206.229127358,0.0,84779732.17602238,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,333345062.8336923,0.0,28186614.07570998,0.0 - 02/20 15:00:00,23596461.301964359,0.0,90592919.43032156,0.0,53948491.67824678,0.0,78097237.85678348,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,358625488.16227677,0.0,28186614.07570998,0.0 - 02/20 16:00:00,34602595.850903328,0.0,89387547.59652674,0.0,49928009.01587583,0.0,75274770.41965007,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,436510219.3745571,0.0,28186614.07570998,0.0 - 02/20 17:00:00,54551730.97090559,0.0,94660915.93447253,0.0,50250334.32685661,0.0,77643282.92374307,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,464423560.6475789,0.0,35233267.594637479,0.0 - 02/20 18:00:00,90283193.24636758,0.0,117551858.97343697,0.0,66693163.423734959,0.0,98465971.60304977,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,634794069.2050302,0.0,14093307.03785499,0.0 - 02/20 19:00:00,84594993.80663222,0.0,109375640.67391363,0.0,56994478.97244786,0.0,86964859.66585014,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,598623156.0027722,0.0,63419881.67034747,0.0 - 02/20 20:00:00,75100290.14969613,0.0,98254757.48383785,0.0,45005037.84757216,0.0,72678141.2490431,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,440005759.8066798,0.0,63419881.67034747,69761869.8373822 - 02/20 21:00:00,79761283.1758721,0.0,101297734.64834509,0.0,47859848.98313387,0.0,76146987.8209157,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,454353618.2784624,0.0,49326574.63249246,69761869.8373822 - 02/20 22:00:00,86139566.53409995,0.0,106766013.69168103,0.0,52397028.671238798,0.0,81881245.53404463,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,401531152.310717,0.0,35233267.594637479,69761869.8373822 - 02/20 23:00:00,92489648.20345095,0.0,113056911.50208514,0.0,57321518.9443232,0.0,88133008.59585569,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,424864186.8445358,0.0,35233267.594637479,62010550.96656194 - 02/20 24:00:00,100755499.89911574,0.0,120155512.7597388,0.0,63672731.47481702,0.0,96122439.99207518,0.0,2457.1634278000549,2418.6960759544606,2421.8128127195038,2915.3306113904188,417472994.6660587,0.0,35233267.594637479,46507913.22492146 - 02/21 01:00:00,108915216.07283762,0.0,127641463.81551512,0.0,71004963.63407181,0.0,104987744.6280221,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,449568143.68358859,0.0,21139960.556782485,23253956.61246073 - 02/21 02:00:00,65629758.83699009,0.0,82289425.74548513,0.0,33489471.762287938,0.0,56626327.25628742,0.0,1237.00058424942,1217.6351093407644,1219.2041564605814,1467.6539739967253,256544361.3676215,0.0,14093307.03785499,0.0 - 02/21 03:00:00,95246356.65544683,0.0,111776602.0182996,0.0,58882188.78172144,0.0,90019926.10283238,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,374390848.45800557,0.0,14093307.03785499,0.0 - 02/21 04:00:00,94464682.36471114,0.0,110084357.0579823,0.0,59544340.78486374,0.0,89614635.01971257,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,372294839.6971829,0.0,14093307.03785499,0.0 - 02/21 05:00:00,94460261.39635311,0.0,109530974.47188996,0.0,59835469.986534658,0.0,89466182.44948429,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,371879712.77417519,0.0,14093307.03785499,0.0 - 02/21 06:00:00,96614817.86788705,0.0,111481330.63745898,0.0,61600203.78670105,0.0,91492365.54948806,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,379733702.1809393,0.0,14093307.03785499,0.0 - 02/21 07:00:00,93089062.1107414,0.0,108412907.79469338,0.0,58661562.29462992,0.0,87869194.57141842,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,422070237.83776697,0.0,14093307.03785499,15502637.741640486 - 02/21 08:00:00,71859470.95602682,0.0,99539338.14927407,0.0,49937929.970026429,0.0,77583752.75856249,0.0,19705.762568019818,19397.265178911097,19422.26053493182,23380.135071754125,593780015.9069104,0.0,56373228.15141996,38756594.35410121 - 02/21 09:00:00,50646177.82731342,0.0,99566190.32932896,0.0,52684013.61155631,0.0,80277953.80484212,0.0,17351.322909319388,17079.6847122879,17101.693629326863,20586.682291193076,542804116.3246988,0.0,56373228.15141996,38756594.35410121 - 02/21 10:00:00,36571827.49290333,0.0,101500115.96764186,0.0,59483695.7449893,0.0,87279381.9934544,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,471044437.544652,0.0,28186614.07570998,0.0 - 02/21 11:00:00,24700137.661180747,0.0,101817641.31401828,0.0,61116373.47015275,0.0,89225575.44810349,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,426147491.54365089,0.0,28186614.07570998,0.0 - 02/21 12:00:00,18393720.435968985,0.0,103179166.01729071,0.0,63613303.255531419,0.0,92004384.12730325,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,352117492.43273487,0.0,28186614.07570998,0.0 - 02/21 13:00:00,12661542.13885291,0.0,100815701.78828672,0.0,62316733.22682291,0.0,85721219.47841558,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,336590670.79813328,0.0,28186614.07570998,0.0 - 02/21 14:00:00,8697170.45964598,0.0,89449974.9197187,0.0,56147465.068725798,0.0,77514263.02342248,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,307004953.08680489,0.0,28186614.07570998,0.0 - 02/21 15:00:00,11335742.887282933,0.0,79112913.21352484,0.0,47698259.636862259,0.0,68721422.56927175,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,320044916.9226973,0.0,28186614.07570998,0.0 - 02/21 16:00:00,21293821.161516459,0.0,75721392.79926855,0.0,42361635.414024878,0.0,64235669.84910293,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,392572623.6836375,0.0,28186614.07570998,0.0 - 02/21 17:00:00,44860345.03259137,0.0,84357590.70790938,0.0,44424580.87795177,0.0,69007638.01632776,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,431277785.6610395,0.0,35233267.594637479,0.0 - 02/21 18:00:00,81829780.14363513,0.0,109747459.98095709,0.0,62364987.54802828,0.0,91967305.80701667,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,608153748.5678787,0.0,14093307.03785499,0.0 - 02/21 19:00:00,75401663.4427507,0.0,100658458.8519742,0.0,52159159.05230006,0.0,79722373.09249985,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,570185869.5277664,0.0,63419881.67034747,0.0 - 02/21 20:00:00,63871429.88878786,0.0,87350657.90842512,0.0,38921021.93861651,0.0,63637805.508143778,0.0,10014.884697793233,9858.099809574387,9870.802977374355,11882.278402280495,403634752.4372542,0.0,63419881.67034747,69761869.8373822 - 02/21 21:00:00,70351348.56519357,0.0,92533699.62011168,0.0,43073030.406665559,0.0,68999518.08192066,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,424557529.22157207,0.0,49326574.63249246,69761869.8373822 - 02/21 22:00:00,74242889.41657946,0.0,95128058.02252767,0.0,45322866.758833888,0.0,71817759.50238894,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,361707653.3156218,0.0,35233267.594637479,69761869.8373822 - 02/21 23:00:00,77407250.41949938,0.0,97082148.86209098,0.0,47095479.17840988,0.0,74005574.48463983,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,370665927.1103953,0.0,35233267.594637479,62010550.96656194 - 02/21 24:00:00,82914648.88589208,0.0,101606406.12654203,0.0,51234951.81034621,0.0,79102978.60483253,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,352396722.5104904,0.0,35233267.594637479,46507913.22492146 - 02/22 01:00:00,90279275.45960859,0.0,107808929.98081337,0.0,58059193.90279314,0.0,87133010.98088122,0.0,2517.4220429791564,2478.0113312716996,2481.2045017974016,2986.8251580876706,380948877.2469857,0.0,21139960.556782485,23253956.61246073 - 02/22 02:00:00,47509241.31330128,0.0,62663598.39659099,0.0,21397858.865644449,0.0,39198226.20870845,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,189631687.8868711,0.0,14093307.03785499,0.0 - 02/22 03:00:00,71998204.90201429,0.0,86504002.10920565,0.0,42995396.387453708,0.0,67265443.93962637,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,287685932.584029,0.0,14093307.03785499,0.0 - 02/22 04:00:00,70506616.48525836,0.0,83817880.52058631,0.0,42612705.9424018,0.0,66125742.516784239,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,282047206.80383077,0.0,14093307.03785499,0.0 - 02/22 05:00:00,69238755.90358041,0.0,81776681.02331499,0.0,42099906.159890148,0.0,64786471.97392775,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,276910333.0488161,0.0,14093307.03785499,0.0 - 02/22 06:00:00,67568047.37663877,0.0,79390301.17901638,0.0,41320056.274634059,0.0,63132405.474981,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,270447401.9861679,0.0,14093307.03785499,0.0 - 02/22 07:00:00,63088564.32974211,0.0,74422583.85269721,0.0,37621326.15371842,0.0,58119636.002106238,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,309398477.0618546,0.0,14093307.03785499,15502637.741640486 - 02/22 08:00:00,65318894.638480979,0.0,77499429.39725255,0.0,39463463.89636333,0.0,60175753.23492496,0.0,20355.75724121221,20037.084064238272,20062.903892197697,24151.32893967486,547043008.0613847,0.0,56373228.15141996,38756594.35410121 - 02/22 09:00:00,72583738.77151673,0.0,84750925.61133556,0.0,47244760.12262523,0.0,69500416.24227336,0.0,17916.19544704267,17635.714065056254,17658.439482668997,21256.881994691386,542161872.3098043,0.0,56373228.15141996,38756594.35410121 - 02/22 10:00:00,75236745.42878089,0.0,86317934.00571063,0.0,52935147.805730078,0.0,75518298.26200435,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,481495290.90369287,0.0,28186614.07570998,0.0 - 02/22 11:00:00,69244113.55027309,0.0,80480717.77044523,0.0,49375916.46365184,0.0,70931996.6617929,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,423396143.1213149,0.0,28186614.07570998,0.0 - 02/22 12:00:00,58010707.36306873,0.0,70486434.79660359,0.0,44079257.593878749,0.0,63598490.35646798,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,313003465.9388427,0.0,28186614.07570998,0.0 - 02/22 13:00:00,49112881.49160584,0.0,63514279.93454788,0.0,40523529.99096942,0.0,58170581.43839233,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,288149848.68433919,0.0,28186614.07570998,0.0 - 02/22 14:00:00,42421197.04698743,0.0,59207983.65352434,0.0,37605975.767365958,0.0,54208388.655094768,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,270345466.58134469,0.0,28186614.07570998,0.0 - 02/22 15:00:00,28665789.421433748,0.0,52173435.50923054,0.0,32562852.860073858,0.0,47457407.19166371,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,276298538.36622169,0.0,28186614.07570998,0.0 - 02/22 16:00:00,37694618.34124075,0.0,56741457.07624152,0.0,33059448.685816796,0.0,49438212.79701908,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,369188540.5462485,0.0,28186614.07570998,0.0 - 02/22 17:00:00,46590173.34654745,0.0,61442640.382387939,0.0,33441985.644738668,0.0,51065729.762793939,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,384938951.4428342,0.0,35233267.594637479,0.0 - 02/22 18:00:00,61200487.66720151,0.0,72586857.98764813,0.0,40853992.30825596,0.0,60527336.020320657,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,504325399.08772876,0.0,14093307.03785499,0.0 - 02/22 19:00:00,48784393.050862539,0.0,59770178.10462291,0.0,27528592.24300536,0.0,44484697.14381662,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,449925651.7712202,0.0,63419881.67034747,0.0 - 02/22 20:00:00,37679373.664356399,0.0,49469645.1456136,0.0,14521926.670271822,0.0,29825428.192087819,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,285544126.8562975,0.0,63419881.67034747,69761869.8373822 - 02/22 21:00:00,43972328.41139916,0.0,55811366.604267958,0.0,19509156.95787894,0.0,36301529.091048289,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,309121976.6243532,0.0,49326574.63249246,69761869.8373822 - 02/22 22:00:00,51518229.62723714,0.0,63298736.97990947,0.0,26106868.50907872,0.0,44529357.88892086,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,261876668.51270203,0.0,35233267.594637479,69761869.8373822 - 02/22 23:00:00,62737300.285526517,0.0,75513798.19661787,0.0,34550275.04821645,0.0,56017974.07614374,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,304510888.58942058,0.0,35233267.594637479,62010550.96656194 - 02/22 24:00:00,75655740.1924335,0.0,89460255.44026761,0.0,44733103.693708229,0.0,69576988.8051993,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,316963825.21448627,0.0,35233267.594637479,46507913.22492146 - 02/23 01:00:00,91126504.12612634,0.0,105753541.8124824,0.0,57882790.878458309,0.0,86525608.32803142,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,378610386.0576474,0.0,21139960.556782485,23253956.61246073 - 02/23 02:00:00,54872449.77280274,0.0,69019983.0851758,0.0,25874713.869638739,0.0,45318988.897714208,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,213672960.09524463,0.0,14093307.03785499,0.0 - 02/23 03:00:00,87645370.60523482,0.0,102441218.84174674,0.0,53906791.38719524,0.0,82569144.84961553,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,345028300.5834976,0.0,14093307.03785499,0.0 - 02/23 04:00:00,94497600.66015052,0.0,109601977.58134049,0.0,59854614.27789918,0.0,90071862.59340348,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,372409460.38294968,0.0,14093307.03785499,0.0 - 02/23 05:00:00,100049633.25675975,0.0,115575312.59073636,0.0,64429309.75508328,0.0,95800544.84567897,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,394152771.5223836,0.0,14093307.03785499,0.0 - 02/23 06:00:00,104214612.61253923,0.0,120134800.38193032,0.0,67841994.39702283,0.0,100097603.56684968,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,410539125.2135354,0.0,14093307.03785499,0.0 - 02/23 07:00:00,101424635.68192539,0.0,118913907.7588247,0.0,65455138.26344355,0.0,97258827.0367965,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,401262080.233644,0.0,14093307.03785499,15502637.741640486 - 02/23 08:00:00,76459395.54328078,0.0,108920870.0428178,0.0,54723041.22808858,0.0,84839789.21206805,0.0,4867.856901386803,4791.649693497784,4797.824223201373,5775.526395973954,397781381.9968709,0.0,56373228.15141996,38756594.35410121 - 02/23 09:00:00,60738814.9103369,0.0,113220951.44774349,0.0,60536446.12710366,0.0,92365895.32353904,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,508957822.73526236,0.0,56373228.15141996,38756594.35410121 - 02/23 10:00:00,50827992.71833973,0.0,118834197.75826445,0.0,69615646.7459535,0.0,102566425.16522798,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,523939977.3143249,0.0,28186614.07570998,0.0 - 02/23 11:00:00,43560486.9266358,0.0,119828871.36693317,0.0,72184745.28298533,0.0,105703675.3379252,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,524257489.65573087,0.0,28186614.07570998,0.0 - 02/23 12:00:00,42804628.53357557,0.0,121696307.51500836,0.0,74978853.81194723,0.0,108945151.02319631,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,458494614.30164769,0.0,28186614.07570998,0.0 - 02/23 13:00:00,42146099.66708092,0.0,122238634.1439389,0.0,75234748.0653304,0.0,105243061.70989067,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,454932217.0041611,0.0,28186614.07570998,0.0 - 02/23 14:00:00,50454324.22461964,0.0,114732203.9878083,0.0,70760499.02685657,0.0,100098868.77446085,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,446618217.5411281,0.0,28186614.07570998,0.0 - 02/23 15:00:00,61612010.00554215,0.0,111510498.92874104,0.0,67054850.69529602,0.0,97608066.25964226,0.0,7404.519361253068,7288.600229340928,7297.992334668395,8785.179574246316,448580075.2874528,0.0,28186614.07570998,0.0 - 02/23 16:00:00,65490199.30300012,0.0,110265410.56136412,0.0,63980874.5421534,0.0,94896415.81616453,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,593153748.8185554,0.0,28186614.07570998,0.0 - 02/23 17:00:00,74430890.40094406,0.0,112331268.20317862,0.0,61944121.51762363,0.0,94170450.35075982,0.0,22213.55808375921,21865.800688022788,21893.977004005184,26355.538722738944,675260678.6672003,0.0,35233267.594637479,0.0 - 02/23 18:00:00,107102655.91832507,0.0,135157681.29740773,0.0,77642535.42567545,0.0,114076497.21067378,0.0,17200.143994600385,16930.87253168122,16952.689689036524,20407.314279732927,691347043.6342658,0.0,14093307.03785499,0.0 - 02/23 19:00:00,102594350.25775787,0.0,127996404.49784348,0.0,69705468.35195498,0.0,104324926.8058064,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,660792744.9511147,0.0,63419881.67034747,0.0 - 02/23 20:00:00,90983738.53437735,0.0,115247829.28862497,0.0,56862810.53919161,0.0,88742988.33444932,0.0,14674.46471387139,14444.733231257043,14463.346744368791,17410.692224253227,571413019.5861449,0.0,63419881.67034747,69761869.8373822 - 02/23 21:00:00,92426314.83230058,0.0,115013919.06455969,0.0,58355989.7836609,0.0,89913737.29822064,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,539159416.6752756,0.0,49326574.63249246,69761869.8373822 - 02/23 22:00:00,95347425.50320812,0.0,117103800.56922995,0.0,60502085.34619581,0.0,92496476.38067453,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,512517029.9605563,0.0,35233267.594637479,69761869.8373822 - 02/23 23:00:00,98036088.71108577,0.0,119455020.79826026,0.0,62224802.01772012,0.0,94831769.62567416,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,484848112.7736763,0.0,35233267.594637479,62010550.96656194 - 02/23 24:00:00,101298388.15938905,0.0,122018097.80748354,0.0,65322711.078897949,0.0,98381137.45258425,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,460553955.5789788,0.0,35233267.594637479,46507913.22492146 - 02/24 01:00:00,107381447.27820376,0.0,126948223.49914083,0.0,71852248.25112449,0.0,105631245.18744385,0.0,2463.2203210024774,2424.6581473638868,2427.782566866477,2922.5168839692657,448670604.72504058,0.0,21139960.556782485,23253956.61246073 - 02/24 02:00:00,63012269.70308748,0.0,80458787.24623667,0.0,33645030.38564737,0.0,56287993.469753857,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,251869855.70443059,0.0,14093307.03785499,0.0 - 02/24 03:00:00,93814526.99346854,0.0,111695170.90195568,0.0,59683500.915598589,0.0,90854976.31353536,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,374431580.3947141,0.0,14093307.03785499,0.0 - 02/24 04:00:00,95539334.90832114,0.0,112936863.29892296,0.0,62045088.40240519,0.0,92930387.79856351,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,381880394.6627766,0.0,14093307.03785499,0.0 - 02/24 05:00:00,95460513.48452692,0.0,112341811.7468094,0.0,62359237.2352614,0.0,92796923.21037334,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,381424260.57667627,0.0,14093307.03785499,0.0 - 02/24 06:00:00,97464522.55529714,0.0,114389141.14110323,0.0,63889906.30266565,0.0,94704577.70162902,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,388876867.9552588,0.0,14093307.03785499,0.0 - 02/24 07:00:00,96631824.24214694,0.0,113869584.32196439,0.0,62596892.58210665,0.0,93368784.30715592,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,384850490.7235299,0.0,14093307.03785499,15502637.741640486 - 02/24 08:00:00,97946161.77924831,0.0,118294751.43744822,0.0,64935994.59921848,0.0,96843882.08473166,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,396365735.4703001,0.0,56373228.15141996,38756594.35410121 - 02/24 09:00:00,92617806.02828568,0.0,122187823.873885,0.0,70864686.46779911,0.0,103777370.3211944,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,462639570.9876647,0.0,56373228.15141996,38756594.35410121 - 02/24 10:00:00,73958848.39159736,0.0,120227516.94700763,0.0,73588735.39748892,0.0,106310883.97735469,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,483873811.15819939,0.0,28186614.07570998,0.0 - 02/24 11:00:00,49197989.63610032,0.0,117101085.31446876,0.0,72460003.93039127,0.0,104845306.21717377,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,453392211.54288497,0.0,28186614.07570998,0.0 - 02/24 12:00:00,38085783.00877439,0.0,115535484.09670255,0.0,73615047.99986123,0.0,105851431.89516235,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,406467529.27911397,0.0,28186614.07570998,0.0 - 02/24 13:00:00,30280157.142151026,0.0,111730492.53458967,0.0,71731653.72028595,0.0,99066975.24709511,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,386342899.72474578,0.0,28186614.07570998,0.0 - 02/24 14:00:00,28059971.675092713,0.0,99946900.13194503,0.0,65082634.05183315,0.0,90594305.7895512,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,394256133.17580488,0.0,28186614.07570998,0.0 - 02/24 15:00:00,47586655.31926184,0.0,99347801.86680965,0.0,61792453.242584679,0.0,89273379.53536658,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,445430052.0005331,0.0,28186614.07570998,0.0 - 02/24 16:00:00,59632464.45245736,0.0,103066896.61561397,0.0,61094978.902721319,0.0,90298720.92806724,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,498750809.8959122,0.0,28186614.07570998,0.0 - 02/24 17:00:00,91469826.7370292,0.0,122331017.33575578,0.0,70244892.7224058,0.0,103717678.3042899,0.0,14779.321926014863,14547.948884183315,14566.695401198864,17535.101303815594,608908058.1542462,0.0,35233267.594637479,0.0 - 02/24 18:00:00,104365471.00915125,0.0,132303421.78859949,0.0,76490198.9243789,0.0,111998940.48191154,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,683160115.7679343,0.0,14093307.03785499,0.0 - 02/24 19:00:00,97199042.4017257,0.0,123578511.51517847,0.0,66655078.58086958,0.0,100387982.26102287,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,534887856.9200446,0.0,63419881.67034747,0.0 - 02/24 20:00:00,85695351.5923885,0.0,110912866.28089604,0.0,53275734.7743893,0.0,84417404.17425034,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,444873678.3493068,0.0,63419881.67034747,69761869.8373822 - 02/24 21:00:00,91047966.13749948,0.0,115044910.28423772,0.0,56864502.67120261,0.0,88903844.48150458,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,425394844.6550684,0.0,49326574.63249246,69761869.8373822 - 02/24 22:00:00,95566377.62022051,0.0,118564973.62842293,0.0,60000732.53280635,0.0,92808345.86648259,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,440655310.6661876,0.0,35233267.594637479,69761869.8373822 - 02/24 23:00:00,99066093.52625045,0.0,121249692.96745719,0.0,62337678.590846899,0.0,95715863.66142647,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,451902949.82660499,0.0,35233267.594637479,62010550.96656194 - 02/24 24:00:00,104931623.02754125,0.0,126559958.35614711,0.0,67010838.44465904,0.0,101546419.13547266,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,473428621.2424335,0.0,35233267.594637479,46507913.22492146 - 02/25 01:00:00,114268435.82537255,0.0,135174551.2628653,0.0,75496297.59767473,0.0,111760300.56581262,0.0,2452.0228258206927,2413.6359510580639,2416.746167335702,2909.231483370747,473389476.39103206,0.0,21139960.556782485,23253956.61246073 - 02/25 02:00:00,71896232.53460376,0.0,90556926.63614013,0.0,37784151.343991998,0.0,64157779.429420847,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,282740035.51381018,0.0,14093307.03785499,0.0 - 02/25 03:00:00,100274460.2385716,0.0,118748251.89645475,0.0,63401718.00889029,0.0,96486600.73159924,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,397255976.44516929,0.0,14093307.03785499,0.0 - 02/25 04:00:00,101487010.52449718,0.0,119166752.62854019,0.0,65422355.822841677,0.0,97978616.60165057,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,402399681.147183,0.0,14093307.03785499,0.0 - 02/25 05:00:00,101919355.38108596,0.0,118884022.75701435,0.0,66354308.292340289,0.0,98438689.1973582,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,403941321.1974522,0.0,14093307.03785499,0.0 - 02/25 06:00:00,102408338.22206804,0.0,118934564.07362776,0.0,67064362.410382408,0.0,98896684.0200803,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,405648894.29581186,0.0,14093307.03785499,0.0 - 02/25 07:00:00,99069116.36100027,0.0,115472440.34834533,0.0,64135648.68238224,0.0,95101905.3950082,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,447158893.0653496,0.0,14093307.03785499,15502637.741640486 - 02/25 08:00:00,96838436.02421315,0.0,116406284.86228624,0.0,64326224.57963625,0.0,95467327.73850459,0.0,19616.18260656554,19309.08760846451,19333.969338685616,23273.851866965975,666557402.3190941,0.0,56373228.15141996,38756594.35410121 - 02/25 09:00:00,80527359.28795164,0.0,115715896.4188433,0.0,66808882.9783534,0.0,97823010.62326843,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,617046744.3461686,0.0,56373228.15141996,38756594.35410121 - 02/25 10:00:00,47998368.245083067,0.0,111875142.89950831,0.0,67243142.81253229,0.0,97505492.57697472,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,508909349.07973638,0.0,28186614.07570998,0.0 - 02/25 11:00:00,28690106.524459877,0.0,109351797.6709198,0.0,66832289.786691147,0.0,96834014.42078221,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,449783230.53542086,0.0,28186614.07570998,0.0 - 02/25 12:00:00,21656117.00089786,0.0,109773162.03764747,0.0,68890885.71724288,0.0,99006664.41494158,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,373674127.0503824,0.0,28186614.07570998,0.0 - 02/25 13:00:00,17239012.81119757,0.0,105892944.14422159,0.0,66451486.213856797,0.0,91150822.47184378,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,355378147.4662175,0.0,28186614.07570998,0.0 - 02/25 14:00:00,14310127.218107738,0.0,96429332.20893857,0.0,60857855.50013761,0.0,83847402.34796848,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,330088599.1002501,0.0,28186614.07570998,0.0 - 02/25 15:00:00,28206843.20241037,0.0,91412541.00368598,0.0,55521871.16669997,0.0,79831919.86676508,0.0,7482.790069398141,7365.6455949486039,7375.136981093513,8878.044781683835,366938997.97720816,0.0,28186614.07570998,0.0 - 02/25 16:00:00,64989896.91057089,0.0,103528450.09485804,0.0,60599868.06951641,0.0,89108085.97317419,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,504435717.3937827,0.0,28186614.07570998,0.0 - 02/25 17:00:00,79915362.65469209,0.0,113016893.48039893,0.0,63871610.02740052,0.0,94878469.14048364,0.0,12370.005842494198,12176.35109340764,12192.041564605817,14676.539739967253,536776112.9686848,0.0,35233267.594637479,0.0 - 02/25 18:00:00,104773767.22078145,0.0,132013753.86045614,0.0,76602099.58883259,0.0,111418575.77163813,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,682810280.0056013,0.0,14093307.03785499,0.0 - 02/25 19:00:00,99801432.50327888,0.0,125452448.73136278,0.0,67733769.43691705,0.0,101756263.11044297,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,650915508.8197535,0.0,63419881.67034747,0.0 - 02/25 20:00:00,92702393.0850427,0.0,117684359.26932363,0.0,57750677.5418749,0.0,90424696.59706265,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,504238698.43453529,0.0,63419881.67034747,69761869.8373822 - 02/25 21:00:00,101699484.39238253,0.0,126088426.94178662,0.0,64006837.10483082,0.0,98745640.9846927,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,535486862.6182234,0.0,49326574.63249246,69761869.8373822 - 02/25 22:00:00,111462688.19482798,0.0,135541372.04967083,0.0,71112260.77386488,0.0,108013452.33690752,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,498017308.38745757,0.0,35233267.594637479,69761869.8373822 - 02/25 23:00:00,118546437.22731804,0.0,142359841.36885638,0.0,76023389.41659585,0.0,114687004.23394118,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,523327164.9080144,0.0,35233267.594637479,62010550.96656194 - 02/25 24:00:00,126829124.20782282,0.0,150481269.93895567,0.0,82433404.06223876,0.0,123004293.23918054,0.0,2381.761392685993,2344.474473766345,2347.4955684213275,2825.868975000213,518386652.9237437,0.0,35233267.594637479,46507913.22492146 - 02/26 01:00:00,139815149.43378688,0.0,163262904.42658789,0.0,93663158.61201483,0.0,137044880.23414798,0.0,2368.1496822499796,2331.0758571964695,2334.079686366433,2809.7192001588134,569220980.6400356,0.0,21139960.556782485,23253956.61246073 - 02/26 02:00:00,101826569.75222898,0.0,123219664.98744279,0.0,59997022.92009835,0.0,94631324.61166349,0.0,1173.9042205508454,1155.5265309865063,1157.0155448638234,1392.7925470046399,397239842.10769459,0.0,14093307.03785499,0.0 - 02/26 03:00:00,135612950.51131959,0.0,156971614.75910727,0.0,88990134.22180948,0.0,131306071.65689712,0.0,1162.7709198900078,1144.567524224429,1146.0424163029705,1379.5833107547688,530279442.1653533,0.0,14093307.03785499,0.0 - 02/26 04:00:00,141515118.90486438,0.0,162906404.21122826,0.0,94070888.56565306,0.0,137378628.5363743,0.0,1158.7666890310614,1140.6259803465678,1142.0957933435178,1374.8324436915178,553209795.4812055,0.0,14093307.03785499,0.0 - 02/26 05:00:00,144509761.8885398,0.0,165424868.11026729,0.0,96515437.03635609,0.0,140165265.6153488,0.0,1158.7666890310614,1140.6259803465678,1142.0957933435178,1374.8324436915178,563954087.9135976,0.0,14093307.03785499,0.0 - 02/26 06:00:00,147552926.28611959,0.0,168319809.601132,0.0,99241360.144384,0.0,143351426.76718403,0.0,1151.3309669891669,1133.306665920372,1134.767047233617,1366.01024332777,575693016.523315,0.0,14093307.03785499,0.0 - 02/26 07:00:00,139889454.78581936,0.0,161652835.79778806,0.0,93562077.97929779,0.0,136178329.57968424,0.0,4635.066756124245,4562.503921386271,4568.383173374071,5499.329774766071,600637719.1949318,0.0,14093307.03785499,15502637.741640486 - 02/26 08:00:00,103771403.23366133,0.0,143146082.45218254,0.0,76990261.21872127,0.0,116009557.90591525,0.0,18604.334718240123,18313.080387590864,18336.678660847527,22073.3329720763,718296041.0699976,0.0,56373228.15141996,38756594.35410121 - 02/26 09:00:00,83369476.63445476,0.0,143596113.26769734,0.0,81298196.2405869,0.0,120150904.99571425,0.0,16434.659087711836,16177.371433811084,16198.217628093524,19499.095658064954,674328328.8461063,0.0,56373228.15141996,38756594.35410121 - 02/26 10:00:00,67050290.80791867,0.0,142100183.48783077,0.0,86222869.40834347,0.0,124642577.00996027,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,597748750.4496946,0.0,28186614.07570998,0.0 - 02/26 11:00:00,46772989.0780342,0.0,137756643.4836195,0.0,84980054.89252126,0.0,122541852.97641954,0.0,9584.970649748542,9434.916146152222,9447.073998608408,11372.201795103576,535472525.7532004,0.0,28186614.07570998,0.0 - 02/26 12:00:00,40191308.401282738,0.0,140007759.52881659,0.0,87873380.0359187,0.0,126001828.39628302,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,465961811.39448729,0.0,28186614.07570998,0.0 - 02/26 13:00:00,34056528.32019242,0.0,136870912.5701174,0.0,85774984.49961788,0.0,118197074.882869,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,447168943.5868306,0.0,28186614.07570998,0.0 - 02/26 14:00:00,27264595.723763654,0.0,120209870.11181414,0.0,76987000.84948723,0.0,106437465.72326085,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,403372169.0055913,0.0,28186614.07570998,0.0 - 02/26 15:00:00,29091519.794258879,0.0,112173795.08036097,0.0,68626351.66589584,0.0,98218152.21658656,0.0,7281.964102152996,7167.963595684729,7177.200248396604,8639.772437545926,417070660.1387112,0.0,28186614.07570998,0.0 - 02/26 16:00:00,40370694.50429809,0.0,106054138.90806803,0.0,61803701.92852751,0.0,92082966.7147349,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,482407216.9821678,0.0,28186614.07570998,0.0 - 02/26 17:00:00,64793828.85612236,0.0,112288204.11813395,0.0,62604330.78747928,0.0,95148530.70591699,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,516930609.39419189,0.0,35233267.594637479,0.0 - 02/26 18:00:00,104174148.84826686,0.0,140122636.42428649,0.0,80706855.42060691,0.0,118703700.17022705,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,697949304.0871415,0.0,14093307.03785499,0.0 - 02/26 19:00:00,98696751.34681498,0.0,131674553.63609128,0.0,70462976.78974848,0.0,106574256.55995156,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,661650501.5563605,0.0,63419881.67034747,0.0 - 02/26 20:00:00,87770954.53241043,0.0,118385146.54466231,0.0,57098955.49001457,0.0,90341145.57222584,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,499272774.0805445,0.0,63419881.67034747,69761869.8373822 - 02/26 21:00:00,93614697.34243278,0.0,122165173.522167,0.0,60552180.05963899,0.0,94558870.68796577,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,516567493.5534359,0.0,49326574.63249246,69761869.8373822 - 02/26 22:00:00,98392955.99823629,0.0,125118709.68435912,0.0,63663043.685169968,0.0,98271313.65865453,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,458446480.04719367,0.0,35233267.594637479,69761869.8373822 - 02/26 23:00:00,101942072.03972057,0.0,127041416.52466157,0.0,65744803.89871617,0.0,100905119.3718702,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,468633868.8557423,0.0,35233267.594637479,62010550.96656194 - 02/26 24:00:00,107209093.71581511,0.0,131077031.12401489,0.0,69688089.07195947,0.0,105632900.04821044,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,450107342.4703868,0.0,35233267.594637479,46507913.22492146 - 02/27 01:00:00,115379072.89447393,0.0,138037696.27526159,0.0,77167086.46960968,0.0,114373294.6469948,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,481553092.4345901,0.0,21139960.556782485,23253956.61246073 - 02/27 02:00:00,73550061.11575686,0.0,93806761.2498543,0.0,39446911.71696645,0.0,66976150.21818626,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,292029998.5559573,0.0,14093307.03785499,0.0 - 02/27 03:00:00,103229506.28642905,0.0,123600585.51198891,0.0,66242592.006216857,0.0,100640444.53582907,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,411963242.59565737,0.0,14093307.03785499,0.0 - 02/27 04:00:00,109391988.31216395,0.0,129428806.31137723,0.0,71658138.9299376,0.0,106904718.67554562,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,435451013.0575329,0.0,14093307.03785499,0.0 - 02/27 05:00:00,116648083.13000603,0.0,136910809.7429732,0.0,77308007.67116635,0.0,114145929.99701432,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,462940453.7064857,0.0,14093307.03785499,0.0 - 02/27 06:00:00,120854657.19801966,0.0,141276831.34417338,0.0,80381297.12607506,0.0,118188620.77957918,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,478629029.613173,0.0,14093307.03785499,0.0 - 02/27 07:00:00,116495801.33325237,0.0,138112725.78187228,0.0,76813330.46755268,0.0,114069283.91546829,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,516986420.93315926,0.0,14093307.03785499,15502637.741640486 - 02/27 08:00:00,83486119.42811872,0.0,121789876.71439697,0.0,62008242.286086078,0.0,96269158.14322257,0.0,19169.941299497084,18869.832292304443,18894.147997216816,22744.403590207152,650395367.217036,0.0,56373228.15141996,38756594.35410121 - 02/27 09:00:00,68069951.74875975,0.0,125084776.90618094,0.0,68266816.22336856,0.0,103060124.5456593,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,617424721.0230873,0.0,56373228.15141996,38756594.35410121 - 02/27 10:00:00,50695806.03702609,0.0,125814581.9994729,0.0,74040822.69426899,0.0,108716143.52946012,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,541363069.1867673,0.0,28186614.07570998,0.0 - 02/27 11:00:00,35025773.11452465,0.0,122917587.42152879,0.0,73936596.2444393,0.0,108085142.39596741,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,487032341.33770808,0.0,28186614.07570998,0.0 - 02/27 12:00:00,29193139.524012127,0.0,117554636.04768983,0.0,72651358.37031524,0.0,105427187.59525389,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,399173619.4169236,0.0,28186614.07570998,0.0 - 02/27 13:00:00,55039546.519775617,0.0,108933218.95297592,0.0,67486550.27115798,0.0,96765209.26872376,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,402868406.83773109,0.0,28186614.07570998,0.0 - 02/27 14:00:00,62395802.37042567,0.0,102121239.92557788,0.0,62372608.083515267,0.0,90682628.83396581,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,392768358.82877656,0.0,28186614.07570998,0.0 - 02/27 15:00:00,45316687.194465879,0.0,93466770.05450015,0.0,55867269.51190144,0.0,81826503.16975628,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,389482630.6992918,0.0,28186614.07570998,0.0 - 02/27 16:00:00,69850232.50758825,0.0,99589503.95916325,0.0,58319826.99395572,0.0,86191155.80434364,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,502910823.72477558,0.0,28186614.07570998,0.0 - 02/27 17:00:00,76178520.55272022,0.0,100876264.03761968,0.0,57404737.62931765,0.0,85245609.36812729,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,509246409.36550018,0.0,35233267.594637479,0.0 - 02/27 18:00:00,84222766.15066591,0.0,106605560.1405699,0.0,61104064.44025872,0.0,89851721.45774794,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,607141901.0780439,0.0,14093307.03785499,0.0 - 02/27 19:00:00,74717515.83456289,0.0,96128308.7421247,0.0,49477331.94660328,0.0,76086797.02845155,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,560488636.9885051,0.0,63419881.67034747,0.0 - 02/27 20:00:00,63221836.561726998,0.0,83755185.57406602,0.0,36694795.92659604,0.0,60704150.87771495,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,395278073.7611112,0.0,63419881.67034747,69761869.8373822 - 02/27 21:00:00,68102830.66373252,0.0,87837577.58846367,0.0,40160664.52636135,0.0,65107343.65410844,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,411882284.12422338,0.0,49326574.63249246,69761869.8373822 - 02/27 22:00:00,74642164.4930309,0.0,93910920.18191007,0.0,45002105.13990856,0.0,71382214.54203217,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,360012878.5226369,0.0,35233267.594637479,69761869.8373822 - 02/27 23:00:00,77601041.13151689,0.0,96204045.58212653,0.0,47083162.094231259,0.0,73939598.20483452,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,370023926.62800106,0.0,35233267.594637479,62010550.96656194 - 02/27 24:00:00,81262617.15652129,0.0,99159103.09325138,0.0,50203301.349087,0.0,77618764.2873438,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,345841825.6938494,0.0,35233267.594637479,46507913.22492146 - 02/28 01:00:00,89896483.07073751,0.0,107189628.77129308,0.0,58201855.5949244,0.0,87251210.23033779,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,380137217.47493866,0.0,21139960.556782485,23253956.61246073 - 02/28 02:00:00,48878970.50594801,0.0,64217474.94555281,0.0,22617213.134239407,0.0,40822120.76396728,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,195334799.25353045,0.0,14093307.03785499,0.0 - 02/28 03:00:00,76615361.6106176,0.0,91858425.70905566,0.0,46936577.27871493,0.0,72646957.93288855,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,306826191.0727155,0.0,14093307.03785499,0.0 - 02/28 04:00:00,78694795.71967492,0.0,93266841.76272184,0.0,49319571.906302567,0.0,75280534.44264187,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,315330612.37277999,0.0,14093307.03785499,0.0 - 02/28 05:00:00,79664265.83479308,0.0,93795839.88681522,0.0,50551078.38653269,0.0,76302988.99451877,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,319083041.6440985,0.0,14093307.03785499,0.0 - 02/28 06:00:00,80618354.39042534,0.0,94514606.52427677,0.0,51530591.13016538,0.0,77246425.6838063,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,322678846.2701125,0.0,14093307.03785499,0.0 - 02/28 07:00:00,77871140.1413644,0.0,91636612.9299131,0.0,48978071.51833316,0.0,73982286.310067,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,367543585.0654329,0.0,14093307.03785499,15502637.741640486 - 02/28 08:00:00,81661179.53762338,0.0,96345810.9245621,0.0,51651277.82167274,0.0,77484516.34758348,0.0,20069.48187606116,19755.29039333328,19780.74710138566,23811.674146725636,607444681.2944622,0.0,56373228.15141996,38756594.35410121 - 02/28 09:00:00,90114146.7264888,0.0,105667304.42819779,0.0,61963652.301049049,0.0,89825718.06737614,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,610334981.1032548,0.0,56373228.15141996,38756594.35410121 - 02/28 10:00:00,81579642.33771175,0.0,101101772.38406784,0.0,64823136.190399538,0.0,91826305.66778933,0.0,12563.576635376856,12366.891499417125,12382.8275013765,14906.204096671105,527321055.61819818,0.0,28186614.07570998,0.0 - 02/28 11:00:00,60241967.31636964,0.0,89206989.44646128,0.0,58255327.264711197,0.0,82988798.26311395,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,441366949.9822134,0.0,28186614.07570998,0.0 - 02/28 12:00:00,68691615.78500088,0.0,88939849.3065962,0.0,57757814.33445489,0.0,82504840.99592223,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,373345172.8324778,0.0,28186614.07570998,0.0 - 02/28 13:00:00,52109761.14581809,0.0,78890171.95792407,0.0,53234158.87798182,0.0,74926829.59024705,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,334611973.9824746,0.0,28186614.07570998,0.0 - 02/28 14:00:00,52565875.319411758,0.0,78477376.44820406,0.0,51405525.225801479,0.0,73222902.21893235,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,331255720.99623957,0.0,28186614.07570998,0.0 - 02/28 15:00:00,42512499.28058511,0.0,75469944.36724492,0.0,47447093.26404267,0.0,68350673.05862257,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,347317521.4448692,0.0,28186614.07570998,0.0 - 02/28 16:00:00,41031463.02354506,0.0,71755032.27518644,0.0,43633204.59070946,0.0,64267158.3588112,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,409646962.7079768,0.0,28186614.07570998,0.0 - 02/28 17:00:00,56731880.63389514,0.0,79292503.38477044,0.0,45622259.190009627,0.0,68263718.64495869,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,438870466.3133586,0.0,35233267.594637479,0.0 - 02/28 18:00:00,75188823.50720182,0.0,92997082.0249638,0.0,54505700.5743788,0.0,79762529.9560676,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,566998282.3062267,0.0,14093307.03785499,0.0 - 02/28 19:00:00,63472362.628688458,0.0,80825526.74658129,0.0,41303444.4412531,0.0,64029408.8837422,0.0,17709.84350992236,17432.59260600648,17455.05628088706,21012.05329823583,514625107.2024513,0.0,63419881.67034747,0.0 - 02/28 20:00:00,49275011.51407085,0.0,65881315.24181135,0.0,27034315.218683337,0.0,46433110.79902206,0.0,10122.71913237737,9964.246075968615,9977.086024066954,12010.219842621145,340091128.6437103,0.0,63419881.67034747,69761869.8373822 - 02/28 21:00:00,52953473.07587613,0.0,69146320.75084038,0.0,29776376.14373076,0.0,49940565.83971395,0.0,10128.287124316925,9969.726899955647,9982.573910655108,12016.826052514107,353367426.1649517,0.0,49326574.63249246,69761869.8373822 - 02/28 22:00:00,58168376.957308,0.0,74228033.58452793,0.0,33314144.205251554,0.0,54771846.283994439,0.0,5065.523253775853,4986.221542265563,4992.646797655824,6010.049977695021,296278390.688094,0.0,35233267.594637479,69761869.8373822 - 02/28 23:00:00,61141455.250785369,0.0,76756371.18812011,0.0,35376830.39909904,0.0,57384589.92600111,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,306475757.8750918,0.0,35233267.594637479,62010550.96656194 - 02/28 24:00:00,64051655.74994215,0.0,78844851.89480667,0.0,38487961.56705984,0.0,60708580.4096641,0.0,2532.7616268879266,2493.1107711327815,2496.323398827912,3005.0249888475107,279991044.4499788,0.0,35233267.594637479,46507913.22492146 - 03/01 01:00:00,73557243.11611638,0.0,87949715.75780472,0.0,47043850.59987478,0.0,71096420.98569717,0.0,2531.3778309285105,2491.748638757257,2494.959511205792,3003.3831677644027,317524519.39465448,0.0,21139960.556782485,23253956.61246073 - 03/01 02:00:00,33219131.368526989,0.0,46720678.146502818,0.0,11707544.947571863,0.0,26730914.99519012,0.0,1264.9888221373117,1245.1851861433207,1246.7897343490759,1500.860949873988,137306438.3508051,0.0,14093307.03785499,0.0 - 03/01 03:00:00,60685997.90664565,0.0,73580095.90229188,0.0,36544153.06926158,0.0,57326138.50852557,0.0,1264.2805603331606,1244.4880123098397,1246.0916621359514,1500.020624279378,247053956.47933466,0.0,14093307.03785499,0.0 - 03/01 04:00:00,62608498.579314608,0.0,74988992.89238845,0.0,38517974.43048737,0.0,59676422.4752933,0.0,1264.2805603331606,1244.4880123098397,1246.0916621359514,1500.020624279378,254709459.47009374,0.0,14093307.03785499,0.0 - 03/01 05:00:00,63482798.12941868,0.0,75533930.82415565,0.0,39703077.349120099,0.0,60667527.14615717,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,258310218.69458059,0.0,14093307.03785499,0.0 - 03/01 06:00:00,64396302.67848991,0.0,76275975.97541808,0.0,40514805.8926733,0.0,61479655.837613,0.0,1265.6889154642552,1245.8743193786286,1247.479755602896,1501.6915838822013,261605384.85177503,0.0,14093307.03785499,0.0 - 03/01 07:00:00,58810096.47707623,0.0,71325425.34770651,0.0,36372477.46412207,0.0,56230974.91871826,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,298430515.1905391,0.0,14093307.03785499,15502637.741640486 - 03/01 08:00:00,44448012.55163574,0.0,66502877.24603517,0.0,35373743.45162888,0.0,53872364.13297051,0.0,20299.800599501148,19982.003434191898,20007.752285137543,24084.93852028101,503945178.8030721,0.0,56373228.15141996,38756594.35410121 - 03/01 09:00:00,31374797.68594073,0.0,64528411.9599548,0.0,37991573.88440032,0.0,56552627.62370198,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,457275062.24488559,0.0,56373228.15141996,38756594.35410121 - 03/01 10:00:00,14525957.296729306,0.0,55202827.573048558,0.0,34701725.42240967,0.0,51180114.24699609,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,346461616.22634348,0.0,28186614.07570998,0.0 - 03/01 11:00:00,5060782.504296597,0.0,47807914.43853909,0.0,31800246.20165326,0.0,46841132.2431619,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,284699807.7088243,0.0,28186614.07570998,0.0 - 03/01 12:00:00,6550074.831364685,0.0,45094215.23399569,0.0,30342865.00941916,0.0,44845974.06808083,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,203661704.97168405,0.0,28186614.07570998,0.0 - 03/01 13:00:00,0.0,0.0,41529064.40263979,0.0,28341561.639382148,0.0,39711950.41084819,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,186411152.28169377,0.0,28186614.07570998,0.0 - 03/01 14:00:00,4250202.3473495929,0.0,38145070.46179967,0.0,25831121.462679965,0.0,37337101.38472767,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,182392071.48538057,0.0,28186614.07570998,0.0 - 03/01 15:00:00,19630375.96673901,0.0,41711991.49197424,0.0,25748530.797948917,0.0,38887785.56358078,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,241331566.00780118,0.0,28186614.07570998,0.0 - 03/01 16:00:00,24113254.708557417,0.0,44513447.8505203,0.0,25814754.763642558,0.0,39772801.06533727,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,326469062.03398796,0.0,28186614.07570998,0.0 - 03/01 17:00:00,32868987.3765299,0.0,51459609.61710692,0.0,27655675.52173885,0.0,43247113.75497885,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,347486189.9162849,0.0,35233267.594637479,0.0 - 03/01 18:00:00,46835694.82541365,0.0,63522552.324648048,0.0,34725832.53648175,0.0,52782366.16656209,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,466766461.25398829,0.0,14093307.03785499,0.0 - 03/01 19:00:00,39690673.0834023,0.0,55406114.307832468,0.0,24548324.59285583,0.0,40939928.220544788,0.0,17936.506471112665,17655.70711625542,17678.45829695528,21280.98024943098,428970987.8861511,0.0,63419881.67034747,0.0 - 03/01 20:00:00,30626836.80218683,0.0,45556213.95221267,0.0,13559677.849313654,0.0,27857225.716476855,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,270789686.64136347,0.0,63419881.67034747,69761869.8373822 - 03/01 21:00:00,35939249.20156881,0.0,50050916.123420599,0.0,17338670.279215579,0.0,32650683.90591039,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,289169251.8312888,0.0,49326574.63249246,69761869.8373822 - 03/01 22:00:00,40276484.67111434,0.0,53717271.62228165,0.0,20698088.074700685,0.0,36800142.93239801,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,228086853.4610814,0.0,35233267.594637479,69761869.8373822 - 03/01 23:00:00,43678635.36410392,0.0,56686946.8481606,0.0,23306297.7382451,0.0,40035878.99286931,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,240226668.9019314,0.0,35233267.594637479,62010550.96656194 - 03/01 24:00:00,47172997.19999223,0.0,59564760.673952389,0.0,26499649.593134725,0.0,43716649.78093527,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,215251490.328308,0.0,35233267.594637479,46507913.22492146 - 03/02 01:00:00,58509684.701355438,0.0,71014144.68932534,0.0,36394771.92660362,0.0,56204643.64626528,0.0,2550.953264868551,2511.0176156271725,2514.253318119148,3026.6086728940088,260293443.30098165,0.0,21139960.556782485,23253956.61246073 - 03/02 02:00:00,28115428.01620248,0.0,39164184.26374834,0.0,8364317.653452499,0.0,22394306.112877978,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,117074827.72717898,0.0,14093307.03785499,0.0 - 03/02 03:00:00,52191721.83165677,0.0,63965167.97726587,0.0,30627517.889444159,0.0,49101764.037048507,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,214894689.72351805,0.0,14093307.03785499,0.0 - 03/02 04:00:00,55631974.308227498,0.0,67020096.94108112,0.0,33529676.528421888,0.0,52732164.884254667,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,227898174.0007853,0.0,14093307.03785499,0.0 - 03/02 05:00:00,57822456.44012537,0.0,68947308.2755699,0.0,35602524.51296063,0.0,54969966.732707288,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,236326517.30016334,0.0,14093307.03785499,0.0 - 03/02 06:00:00,59226214.72157605,0.0,70151818.18498644,0.0,36916061.80962138,0.0,56361050.62829318,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,241639406.6832772,0.0,14093307.03785499,0.0 - 03/02 07:00:00,52916403.30136156,0.0,64253506.17448555,0.0,31845724.463771427,0.0,49871915.35431346,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,217871810.63273213,0.0,14093307.03785499,15502637.741640486 - 03/02 08:00:00,43664388.27270937,0.0,62161741.426026407,0.0,32964681.219510877,0.0,49819425.66323656,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,264547281.93668363,0.0,56373228.15141996,38756594.35410121 - 03/02 09:00:00,37132512.20806431,0.0,57963175.129924159,0.0,33046014.456592364,0.0,47099945.53890053,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,366300336.1023709,0.0,56373228.15141996,38756594.35410121 - 03/02 10:00:00,60332006.733543109,0.0,75058770.87124111,0.0,44691517.27634937,0.0,65434170.340530838,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,436367456.9088242,0.0,28186614.07570998,0.0 - 03/02 11:00:00,56876494.19882028,0.0,70075099.03723948,0.0,42584478.40741511,0.0,62118633.97771524,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,422951980.5175712,0.0,28186614.07570998,0.0 - 03/02 12:00:00,50264570.28689416,0.0,66346000.11513068,0.0,39410792.915058199,0.0,57918516.53239569,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,329182743.5927142,0.0,28186614.07570998,0.0 - 03/02 13:00:00,17409657.71518643,0.0,53699735.22585336,0.0,34439002.87686402,0.0,48081716.41169706,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,268775808.89942,0.0,28186614.07570998,0.0 - 03/02 14:00:00,0.0,0.0,43996303.52190663,0.0,28678321.471971014,0.0,39722916.38388978,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,227640405.1210029,0.0,28186614.07570998,0.0 - 03/02 15:00:00,0.0,0.0,35905193.488426338,0.0,21386791.868891818,0.0,31959169.744278574,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,204494018.84483219,0.0,28186614.07570998,0.0 - 03/02 16:00:00,0.0,0.0,35856304.135443139,0.0,18669481.55833592,0.0,30567747.886917063,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,353993548.98157897,0.0,28186614.07570998,0.0 - 03/02 17:00:00,26957879.69285745,0.0,48748226.35204129,0.0,24278177.09239901,0.0,39534881.88974908,0.0,23105.394181065705,22743.674924854095,22772.982471393407,27413.668208716368,485247756.2567532,0.0,35233267.594637479,0.0 - 03/02 18:00:00,45323025.15987764,0.0,62506089.37267466,0.0,32800869.29021667,0.0,50798253.67227313,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,460328252.89592489,0.0,14093307.03785499,0.0 - 03/02 19:00:00,37582737.095361549,0.0,53399482.51678032,0.0,22806362.612437525,0.0,38709709.73057489,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,421655017.0594567,0.0,63419881.67034747,0.0 - 03/02 20:00:00,25572006.33870901,0.0,40271788.003118429,0.0,9744382.333573498,0.0,22713926.744066568,0.0,15418.301410280086,15176.925025420862,15196.482042392654,18293.226070549856,329007867.7945839,0.0,63419881.67034747,69761869.8373822 - 03/02 21:00:00,30451091.325608195,0.0,44234504.96893476,0.0,13398204.289546332,0.0,27206948.430458636,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,307362188.58660706,0.0,49326574.63249246,69761869.8373822 - 03/02 22:00:00,35604075.25906057,0.0,48814095.31891142,0.0,17182095.871524104,0.0,32061405.39947477,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,287318823.50661817,0.0,35233267.594637479,69761869.8373822 - 03/02 23:00:00,38258692.412646967,0.0,50897042.85637823,0.0,18858739.2536012,0.0,34153436.913954269,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,257520793.6241389,0.0,35233267.594637479,62010550.96656194 - 03/02 24:00:00,42194108.83008865,0.0,54254953.44291098,0.0,22154368.2280305,0.0,38112416.056523818,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,233617768.0159261,0.0,35233267.594637479,46507913.22492146 - 03/03 01:00:00,54202862.10858403,0.0,66752929.331891,0.0,31494235.9381572,0.0,50620384.485315579,0.0,2571.636538009163,2531.3770882683077,2534.639026018829,3051.1485869462715,241550096.32522107,0.0,21139960.556782485,23253956.61246073 - 03/03 02:00:00,16192991.153015197,0.0,25919553.76633117,0.0,8275.599520333344,0.0,8726145.185329849,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,70086807.93483317,0.0,14093307.03785499,0.0 - 03/03 03:00:00,42164856.15734464,0.0,52504336.78163363,0.0,18498666.516440486,0.0,36668999.47956402,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,169076701.1656194,0.0,14093307.03785499,0.0 - 03/03 04:00:00,44803593.77261208,0.0,54573151.68559191,0.0,23154617.576784694,0.0,39648322.96310008,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,181435655.14608474,0.0,14093307.03785499,0.0 - 03/03 05:00:00,45341395.56855371,0.0,54564196.67257404,0.0,24145550.64817704,0.0,40277335.98027071,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,183584448.01757149,0.0,14093307.03785499,0.0 - 03/03 06:00:00,41278426.15644452,0.0,49735675.36090548,0.0,21484850.46918843,0.0,36149631.503577429,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,167971435.92872618,0.0,14093307.03785499,0.0 - 03/03 07:00:00,30881887.337019244,0.0,38796660.954234387,0.0,14139953.74883834,0.0,25942797.247871277,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,129076407.04901836,0.0,14093307.03785499,15502637.741640486 - 03/03 08:00:00,25584203.08573558,0.0,37558161.507853109,0.0,17710083.515593966,0.0,27889908.38369292,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,128065208.93148586,0.0,56373228.15141996,38756594.35410121 - 03/03 09:00:00,16447028.922459927,0.0,37194136.981635209,0.0,20914954.64028559,0.0,30885993.849908294,0.0,5165.463703289985,5084.597405398679,5091.149428129604,6128.625506082048,182733524.14873014,0.0,56373228.15141996,38756594.35410121 - 03/03 10:00:00,0.0,0.0,30340459.59919569,0.0,16094740.064972189,0.0,25907531.43150433,0.0,7745.09004676023,7623.839217233076,7633.6633122135749,9189.25369221827,188233377.66200275,0.0,28186614.07570998,0.0 - 03/03 11:00:00,0.0,1981833.1764662897,28361904.28473714,0.0,16220400.204137598,0.0,25628127.71478349,0.0,7751.467660694694,7630.116988431653,7639.9491729611,9196.82048770302,186196507.7189039,1981833.1764662897,28186614.07570998,0.0 - 03/03 12:00:00,0.0,2424238.1005785248,28449285.212136367,0.0,17631473.762872377,0.0,26910632.405985945,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,150315441.7244918,2424238.1005785248,28186614.07570998,0.0 - 03/03 13:00:00,0.0,0.0,28726559.639829223,0.0,17414572.908662574,0.0,25941172.847496146,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,149429770.35536189,0.0,28186614.07570998,0.0 - 03/03 14:00:00,0.0,0.0,25474752.48797376,0.0,15611438.664501992,0.0,23405861.095838686,0.0,7751.467660694694,7630.116988431653,7639.9491729611,9196.82048770302,180478127.76356013,0.0,28186614.07570998,0.0 - 03/03 15:00:00,11103046.02797686,0.0,28873931.615084415,0.0,16172249.400182464,0.0,25444376.60166189,0.0,10335.290214259592,10173.489317908874,10186.598897281467,12262.42731693736,236241704.33189989,0.0,28186614.07570998,0.0 - 03/03 16:00:00,11624175.943675466,0.0,28344342.399900304,0.0,14390596.147490733,0.0,23816112.198632547,0.0,12919.11276782449,12716.861647386091,12733.248621601833,15328.034146171698,271485352.5484419,0.0,28186614.07570998,0.0 - 03/03 17:00:00,12396993.818551265,0.0,27060866.26771674,0.0,10583623.794945918,0.0,20517341.805200794,0.0,15496.391109869955,15253.792216196032,15273.448284388809,18385.876518246147,302433054.94973817,0.0,35233267.594637479,0.0 - 03/03 18:00:00,34441607.59994088,0.0,44933297.327030587,0.0,22028748.640253344,0.0,35542491.80014903,0.0,18079.122961514946,17796.09091889537,17819.02299845361,21450.189271287163,407466079.50791779,0.0,14093307.03785499,0.0 - 03/03 19:00:00,30673449.83690133,0.0,40632596.240361679,0.0,15389953.043342026,0.0,27709677.658433778,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,268843144.469963,0.0,63419881.67034747,0.0 - 03/03 20:00:00,20749523.425775123,0.0,30487866.3780784,0.0,4238318.7003564559,0.0,14341066.322539978,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,185574949.44358976,0.0,63419881.67034747,69761869.8373822 - 03/03 21:00:00,25646111.849486866,0.0,35029594.860174339,0.0,7888156.715649225,0.0,19054045.293957224,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,164790025.13049419,0.0,49326574.63249246,69761869.8373822 - 03/03 22:00:00,30575820.22898194,0.0,39694944.729888338,0.0,11785667.76087086,0.0,24073001.829928176,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,183258956.15197984,0.0,35233267.594637479,69761869.8373822 - 03/03 23:00:00,34902613.141500089,0.0,43934285.44238517,0.0,15035284.559920267,0.0,28306862.98568568,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,199252972.90979363,0.0,35233267.594637479,62010550.96656194 - 03/03 24:00:00,40647878.59886375,0.0,49629350.41452182,0.0,19805327.754120895,0.0,34322375.386751357,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,221428808.74624173,0.0,35233267.594637479,46507913.22492146 - 03/04 01:00:00,47990166.06993248,0.0,56609287.04178685,0.0,27011409.615906776,0.0,42893626.869694288,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,213069250.39847563,0.0,21139960.556782485,23253956.61246073 - 03/04 02:00:00,11575230.517681072,0.0,18920019.703144965,0.0,0.0,0.0,4083099.987325177,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,53818192.43878783,0.0,14093307.03785499,0.0 - 03/04 03:00:00,37285619.53611585,0.0,45148936.20635143,0.0,15219315.85757858,0.0,31146605.43024411,0.0,1284.8584508566738,1264.7437521184057,1266.373503532721,1524.4355058791544,148025957.39488305,0.0,14093307.03785499,0.0 - 03/04 04:00:00,40628013.031483788,0.0,48371421.74689322,0.0,21701312.84965708,0.0,36103772.867897007,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,166011664.45313699,0.0,14093307.03785499,0.0 - 03/04 05:00:00,44233465.769539099,0.0,52202777.56806272,0.0,24965013.515741424,0.0,40036443.57137515,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,180608125.25911237,0.0,14093307.03785499,0.0 - 03/04 06:00:00,46485963.66864126,0.0,54566861.026642788,0.0,27019190.58309498,0.0,42448104.647383827,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,189690544.7601568,0.0,14093307.03785499,0.0 - 03/04 07:00:00,43908377.68680495,0.0,52788813.37473084,0.0,24992528.97086761,0.0,40102667.029592517,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,238311297.0205484,0.0,14093307.03785499,15502637.741640486 - 03/04 08:00:00,49714953.465579938,0.0,62842579.60768476,0.0,35338108.67386772,0.0,52179844.28476893,0.0,20379.844481671935,20060.79421445513,20086.644595363152,24179.90753101383,505021372.9929159,0.0,56373228.15141996,38756594.35410121 - 03/04 09:00:00,39399065.14687587,0.0,59866312.406882788,0.0,34923664.80839628,0.0,49324335.60352254,0.0,17811.28758606068,17532.44855620849,17555.040905672984,21132.412822215498,450025661.498245,0.0,56373228.15141996,38756594.35410121 - 03/04 10:00:00,36702123.70486522,0.0,64076794.77651408,0.0,40981199.020774308,0.0,59522024.3301999,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,391648058.64133039,0.0,28186614.07570998,0.0 - 03/04 11:00:00,31255290.52924558,0.0,61751443.10689223,0.0,40681439.48458795,0.0,58651965.281627599,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,344813081.88286069,0.0,28186614.07570998,0.0 - 03/04 12:00:00,28284025.676099317,0.0,59852939.59167427,0.0,40182353.41777417,0.0,57493996.51836365,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,262153711.87877534,0.0,28186614.07570998,0.0 - 03/04 13:00:00,3711111.6852003878,0.0,52758562.6398722,0.0,36846402.4007227,0.0,49715300.572475869,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,219550287.2568236,0.0,28186614.07570998,0.0 - 03/04 14:00:00,0.0,0.0,43869185.88494868,0.0,30879104.566968405,0.0,42233755.18704094,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,193500955.59751047,0.0,28186614.07570998,0.0 - 03/04 15:00:00,0.0,1344177.5569606485,36437065.79971186,0.0,23786618.504075003,0.0,34778703.48421149,0.0,7678.3694773040019,7558.163170738395,7567.90263542957,9110.092283439166,209894687.0288784,1344177.5569606485,28186614.07570998,0.0 - 03/04 16:00:00,0.0,656142.7277900134,33495954.282059019,0.0,17662277.734809385,0.0,29666565.608948675,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,272529045.96975687,656142.7277900134,28186614.07570998,0.0 - 03/04 17:00:00,9412646.506606374,0.0,43082795.74991986,0.0,20858473.021795505,0.0,35629654.28622352,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,300280844.4609264,0.0,35233267.594637479,0.0 - 03/04 18:00:00,44089523.245660949,0.0,64967540.54742767,0.0,34419282.28843114,0.0,53775664.82823558,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,465068195.76468899,0.0,14093307.03785499,0.0 - 03/04 19:00:00,40490907.30058838,0.0,59793016.972925599,0.0,26435848.782359873,0.0,44520602.027380909,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,438722539.3597002,0.0,63419881.67034747,0.0 - 03/04 20:00:00,31472017.007058827,0.0,49301893.09004114,0.0,15129048.572590841,0.0,30869583.95972036,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,279619493.6445228,0.0,63419881.67034747,69761869.8373822 - 03/04 21:00:00,39527316.483909297,0.0,56910990.4395047,0.0,20610000.983444219,0.0,38149251.052878659,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,307670502.4402442,0.0,49326574.63249246,69761869.8373822 - 03/04 22:00:00,46001227.716897319,0.0,62562478.6272744,0.0,25045675.03519525,0.0,43991741.73591553,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,253941519.7901464,0.0,35233267.594637479,69761869.8373822 - 03/04 23:00:00,51003332.67746549,0.0,67172091.3558687,0.0,28466272.897186165,0.0,48459432.30744971,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,271337600.97822377,0.0,35233267.594637479,62010550.96656194 - 03/04 24:00:00,57551332.72133988,0.0,73193229.39931599,0.0,33443484.7112098,0.0,54726116.373857367,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,257032399.07584984,0.0,35233267.594637479,46507913.22492146 - 03/05 01:00:00,69335826.7238736,0.0,84584922.10709214,0.0,43597757.22238984,0.0,67308857.36517146,0.0,2540.717268136974,2500.9418653339519,2504.1645841932638,3014.464053504009,302844399.39473256,0.0,21139960.556782485,23253956.61246073 - 03/05 02:00:00,31715578.0311681,0.0,45301706.88511782,0.0,10562992.367001269,0.0,25566878.724961677,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,132131417.34704899,0.0,14093307.03785499,0.0 - 03/05 03:00:00,65821138.770319927,0.0,80141542.20226704,0.0,38490193.353771749,0.0,61571509.32309472,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,264947268.89518247,0.0,14093307.03785499,0.0 - 03/05 04:00:00,73683241.47151235,0.0,87858441.18084961,0.0,43747303.88950989,0.0,68900582.15997835,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,293085579.1478226,0.0,14093307.03785499,0.0 - 03/05 05:00:00,78617789.11648381,0.0,92556215.05038607,0.0,47468698.95952309,0.0,73468134.52345509,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,310973600.752474,0.0,14093307.03785499,0.0 - 03/05 06:00:00,79457784.00368022,0.0,92955422.02813062,0.0,48259022.47027746,0.0,74104023.28226999,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,313699137.0300873,0.0,14093307.03785499,0.0 - 03/05 07:00:00,76038016.37280658,0.0,89312485.8672443,0.0,45431871.78230606,0.0,70345740.99530436,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,356712156.8015512,0.0,14093307.03785499,15502637.741640486 - 03/05 08:00:00,79143619.24589326,0.0,94203717.33835943,0.0,48188599.54594684,0.0,74225691.05601469,0.0,20169.882983876745,19854.11970307621,19879.703762781486,23930.796228602936,597565836.8282288,0.0,56373228.15141996,38756594.35410121 - 03/05 09:00:00,90532907.90967837,0.0,106616467.72230911,0.0,60073244.249571237,0.0,88723187.17702498,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,610024490.4953464,0.0,56373228.15141996,38756594.35410121 - 03/05 10:00:00,105450767.29662162,0.0,120137738.44860895,0.0,72018688.27964746,0.0,103522150.17883137,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,589471678.8181561,0.0,28186614.07570998,0.0 - 03/05 11:00:00,103856241.85588801,0.0,118567976.19860335,0.0,70910985.05471522,0.0,102154715.5570325,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,546163786.3577963,0.0,28186614.07570998,0.0 - 03/05 12:00:00,97653136.78276122,0.0,112066881.63883625,0.0,67751941.6535703,0.0,97519618.81083742,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,450442631.29650887,0.0,28186614.07570998,0.0 - 03/05 13:00:00,88406142.94621672,0.0,103923165.7079339,0.0,64089435.67354405,0.0,92185618.23046406,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,424055414.9686624,0.0,28186614.07570998,0.0 - 03/05 14:00:00,86236350.18606965,0.0,101587093.0522317,0.0,62345191.1454716,0.0,89969567.44998908,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,415722243.6176519,0.0,28186614.07570998,0.0 - 03/05 15:00:00,86390148.27422366,0.0,101213831.57513286,0.0,61535497.700201798,0.0,89021608.47201169,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,451537148.69740489,0.0,28186614.07570998,0.0 - 03/05 16:00:00,86768056.44864026,0.0,101234190.10194633,0.0,60909833.53291237,0.0,88317378.02271219,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,526458310.5635012,0.0,28186614.07570998,0.0 - 03/05 17:00:00,87050928.23548867,0.0,101482576.63063501,0.0,59572200.51966569,0.0,87052690.42789442,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,524387248.2709738,0.0,35233267.594637479,0.0 - 03/05 18:00:00,94647435.13043277,0.0,108777951.124493,0.0,63869256.08224699,0.0,92733697.74392115,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,624948733.5213,0.0,14093307.03785499,0.0 - 03/05 19:00:00,81477275.47016384,0.0,95776836.01639849,0.0,50169116.6027997,0.0,76312759.44406109,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,568656380.9736292,0.0,63419881.67034747,0.0 - 03/05 20:00:00,66974568.4490117,0.0,81320122.40707925,0.0,35856134.00002554,0.0,58939676.69894422,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,394473583.52089276,0.0,63419881.67034747,69761869.8373822 - 03/05 21:00:00,69853918.6203451,0.0,84152111.48735322,0.0,38406066.547729279,0.0,62146657.10665544,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,405941835.7279151,0.0,49326574.63249246,69761869.8373822 - 03/05 22:00:00,72994644.42852882,0.0,87276786.73357088,0.0,41207318.33607846,0.0,65674257.92507225,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,342844548.40616646,0.0,35233267.594637479,69761869.8373822 - 03/05 23:00:00,74639156.04304333,0.0,88800930.8036004,0.0,42742195.9009479,0.0,67520714.53203459,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,349394538.2625422,0.0,35233267.594637479,62010550.96656194 - 03/05 24:00:00,77681164.93202028,0.0,91597570.27556414,0.0,45809492.53240618,0.0,71106674.22431968,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,324040672.4557683,0.0,35233267.594637479,46507913.22492146 - 03/06 01:00:00,85704261.41043018,0.0,99487738.12894383,0.0,53629390.03808497,0.0,80564959.07199168,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,357232119.14090868,0.0,21139960.556782485,23253956.61246073 - 03/06 02:00:00,44293867.808801669,0.0,57404117.58359341,0.0,18809594.447159597,0.0,35563546.50940924,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106244,174967136.7949364,0.0,14093307.03785499,0.0 - 03/06 03:00:00,71055251.24992806,0.0,83536121.13460674,0.0,41780496.46869849,0.0,65487283.66618824,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,280782037.76515057,0.0,14093307.03785499,0.0 - 03/06 04:00:00,73161805.85357352,0.0,85425044.45225485,0.0,44253690.093558508,0.0,68183707.65609262,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,289920258.5014519,0.0,14093307.03785499,0.0 - 03/06 05:00:00,74654254.14181708,0.0,86931130.11507198,0.0,45923347.78433939,0.0,69972858.9862905,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,296377601.4734914,0.0,14093307.03785499,0.0 - 03/06 06:00:00,75129145.6027828,0.0,87255835.54081898,0.0,46727520.12298661,0.0,70632299.56600607,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,298640811.2785669,0.0,14093307.03785499,0.0 - 03/06 07:00:00,71061874.13102478,0.0,83437687.55680813,0.0,43433312.94392541,0.0,66472624.17221513,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,339989540.5878633,0.0,14093307.03785499,15502637.741640486 - 03/06 08:00:00,65794893.49388049,0.0,82083967.18481548,0.0,41721466.671329427,0.0,64437684.49866807,0.0,20205.434245437762,19889.114403005402,19914.743556953377,23972.97644336999,556374178.9842529,0.0,56373228.15141996,38756594.35410121 - 03/06 09:00:00,65023658.33451441,0.0,87423776.39052153,0.0,48948139.107956279,0.0,73008495.34340894,0.0,17679.754964758045,17402.975102629724,17425.400612334204,20976.354387948744,538948215.4200157,0.0,56373228.15141996,38756594.35410121 - 03/06 10:00:00,68069833.21057934,0.0,90454748.24845487,0.0,56723765.40950732,0.0,81434224.12111478,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,486223848.76737168,0.0,28186614.07570998,0.0 - 03/06 11:00:00,66770777.09754029,0.0,85711376.05702488,0.0,54372586.603823248,0.0,78294824.49778575,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,437023654.9665751,0.0,28186614.07570998,0.0 - 03/06 12:00:00,62858826.34397147,0.0,82580002.64157854,0.0,52371101.229613367,0.0,75602590.13069941,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,349446592.2982738,0.0,28186614.07570998,0.0 - 03/06 13:00:00,57384438.16984545,0.0,81437344.90233146,0.0,51064529.535373877,0.0,73349347.56522762,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,339382026.89636906,0.0,28186614.07570998,0.0 - 03/06 14:00:00,65380487.979873109,0.0,83659388.18825461,0.0,50413654.53715275,0.0,74016284.6853868,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,349810212.06553128,0.0,28186614.07570998,0.0 - 03/06 15:00:00,75863859.42085126,0.0,91047645.64863132,0.0,52606055.88340278,0.0,77873905.10299209,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,412026679.3172112,0.0,28186614.07570998,0.0 - 03/06 16:00:00,79100017.78354167,0.0,93042288.67948708,0.0,53110949.80932388,0.0,78620445.14239028,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,495170976.311124,0.0,28186614.07570998,0.0 - 03/06 17:00:00,78948495.93934885,0.0,91991875.11942789,0.0,51267022.7477045,0.0,76278485.61935178,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,490190127.76977279,0.0,35233267.594637479,0.0 - 03/06 18:00:00,78249347.68054278,0.0,90127540.60032873,0.0,51053972.21969241,0.0,75220532.16488736,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,563551408.066334,0.0,14093307.03785499,0.0 - 03/06 19:00:00,63244805.360293168,0.0,74924264.14421398,0.0,36057784.38436642,0.0,57037421.95611869,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,500164291.245875,0.0,63419881.67034747,0.0 - 03/06 20:00:00,44795457.66640392,0.0,56062110.69585275,0.0,19018844.157104415,0.0,35705662.404251899,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,309629828.10758087,0.0,63419881.67034747,69761869.8373822 - 03/06 21:00:00,44651893.70436017,0.0,55569891.12050487,0.0,19379418.53687369,0.0,35941453.52684836,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,309690510.4491919,0.0,49326574.63249246,69761869.8373822 - 03/06 22:00:00,45136923.26469101,0.0,55519978.644433047,0.0,20610045.489324236,0.0,36979476.91972122,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,235320351.09847195,0.0,35233267.594637479,69761869.8373822 - 03/06 23:00:00,43037061.89205679,0.0,52466595.60399945,0.0,20007764.460286954,0.0,35349089.725005019,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,227990033.28365878,0.0,35233267.594637479,62010550.96656194 - 03/06 24:00:00,45787150.53610214,0.0,55072583.275631617,0.0,22876026.28616053,0.0,38726376.22168677,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,200999099.70973224,0.0,35233267.594637479,46507913.22492146 - 03/07 01:00:00,56567009.5173558,0.0,66558887.27883361,0.0,32183320.930871205,0.0,50830696.21299476,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,244651852.23604734,0.0,21139960.556782485,23253956.61246073 - 03/07 02:00:00,18056384.512598754,0.0,26254748.865322774,0.0,686532.5818852782,0.0,9396984.551800522,0.0,1286.8960473311816,1266.7494496399918,1268.3817856002809,1526.8530363163184,73650619.6596033,0.0,14093307.03785499,0.0 - 03/07 03:00:00,39701339.22152616,0.0,48125149.60787659,0.0,17176754.530801409,0.0,33458590.894194154,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,157730315.94947393,0.0,14093307.03785499,0.0 - 03/07 04:00:00,36022115.68019299,0.0,43133921.94666235,0.0,17659249.997442224,0.0,30691449.460630489,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,146821844.84598313,0.0,14093307.03785499,0.0 - 03/07 05:00:00,37567237.565059628,0.0,44583170.26061474,0.0,19509994.752176498,0.0,32577003.88010723,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,153505888.1530337,0.0,14093307.03785499,0.0 - 03/07 06:00:00,41663319.82951151,0.0,48967902.80630338,0.0,22917745.796451197,0.0,36846177.02928827,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,169634987.69219098,0.0,14093307.03785499,0.0 - 03/07 07:00:00,35352657.08361735,0.0,43455716.62313599,0.0,18023590.63441765,0.0,30755283.966144269,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,204489169.76568745,0.0,14093307.03785499,15502637.741640486 - 03/07 08:00:00,31155786.263437988,0.0,46552743.79330063,0.0,22867635.823376627,0.0,35485886.62172932,0.0,20520.811428769444,20199.554297698473,20225.583485136696,24347.15943270584,443117243.6213622,0.0,56373228.15141996,38756594.35410121 - 03/07 09:00:00,22665349.115456985,0.0,53114640.60390495,0.0,29229343.43910923,0.0,44155619.977579157,0.0,17936.50647111266,17655.70711625542,17678.45829695528,21280.98024943098,417550900.8175659,0.0,56373228.15141996,38756594.35410121 - 03/07 10:00:00,7783376.156009604,0.0,50137900.291694659,0.0,28597070.52377252,0.0,43363824.43828778,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,321586419.7537043,0.0,28186614.07570998,0.0 - 03/07 11:00:00,11139697.189868652,0.0,54135085.6827059,0.0,33201804.708818035,0.0,49171497.769901629,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,300837817.67246767,0.0,28186614.07570998,0.0 - 03/07 12:00:00,21298894.16315496,0.0,56337228.80736092,0.0,35907026.91907882,0.0,52358879.70600073,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,242583728.93317134,0.0,28186614.07570998,0.0 - 03/07 13:00:00,23101493.70440031,0.0,55801732.71660125,0.0,35969004.88310765,0.0,50842422.91403715,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,242396353.5557223,0.0,28186614.07570998,0.0 - 03/07 14:00:00,9269176.682017474,0.0,50172203.48553872,0.0,32444944.874784568,0.0,45793907.9683125,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,214444030.79053266,0.0,28186614.07570998,0.0 - 03/07 15:00:00,822769.065134754,0.0,43841718.51374302,0.0,26260264.676871189,0.0,38939203.22205199,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,225009652.14762009,0.0,28186614.07570998,0.0 - 03/07 16:00:00,7937731.086808,0.0,41755905.63284361,0.0,21474753.30089215,0.0,35038628.21776905,0.0,12825.507142980903,12624.721436061543,12640.989678210439,15216.97464544115,298116512.6880113,0.0,28186614.07570998,0.0 - 03/07 17:00:00,23042003.950495006,0.0,45247342.76933893,0.0,20235671.769116507,0.0,35800413.464432548,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,316396871.5254421,0.0,35233267.594637479,0.0 - 03/07 18:00:00,53540382.6203524,0.0,68976014.92181354,0.0,36497222.63386087,0.0,56897158.88262786,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,483992810.6207082,0.0,14093307.03785499,0.0 - 03/07 19:00:00,51773480.36987883,0.0,66874838.60473128,0.0,30944904.150759728,0.0,50397008.394675198,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,467472395.7964904,0.0,63419881.67034747,0.0 - 03/07 20:00:00,41446487.61717356,0.0,56039113.64674581,0.0,19610498.718140376,0.0,36631485.98248795,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,306408379.3142756,0.0,63419881.67034747,69761869.8373822 - 03/07 21:00:00,45487243.60044415,0.0,59469676.40254149,0.0,22832296.33672759,0.0,40605198.91503906,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,321241366.26986399,0.0,49326574.63249246,69761869.8373822 - 03/07 22:00:00,49592401.59510306,0.0,63111594.420462299,0.0,26090822.21193625,0.0,44617724.58636369,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,259836018.32142116,0.0,35233267.594637479,69761869.8373822 - 03/07 23:00:00,54260387.90065543,0.0,67581350.9820711,0.0,29633439.867195947,0.0,49131518.26898248,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,276843168.7591586,0.0,35233267.594637479,62010550.96656194 - 03/07 24:00:00,59393021.14618498,0.0,72450435.3369507,0.0,34079310.10725142,0.0,54577032.81324878,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,258618035.2737627,0.0,35233267.594637479,46507913.22492146 - 03/08 01:00:00,69248613.00283417,0.0,82298041.45944815,0.0,43071236.810465518,0.0,65745522.6788106,0.0,2544.4696551515264,2504.635508029784,2507.862986524712,3018.9161174593575,298436597.3133538,0.0,21139960.556782485,23253956.61246073 - 03/08 02:00:00,37612608.96581622,0.0,48863975.2915542,0.0,13984473.294493672,0.0,31492711.552224868,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,150938030.4428891,0.0,14093307.03785499,0.0 - 03/08 03:00:00,62751086.243950989,0.0,74828716.87662031,0.0,37007606.0643301,0.0,58169117.71765925,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,251679412.14828966,0.0,14093307.03785499,0.0 - 03/08 04:00:00,66734885.40508944,0.0,78685082.40621749,0.0,40549240.18211187,0.0,62621984.34981234,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,267487202.78920365,0.0,14093307.03785499,0.0 - 03/08 05:00:00,69066342.29339719,0.0,81019021.58721628,0.0,42699735.46749706,0.0,65107892.98077612,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,276789002.7748591,0.0,14093307.03785499,0.0 - 03/08 06:00:00,71277958.89141107,0.0,83148373.37501812,0.0,44679358.73612489,0.0,67371590.57936742,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,285340044.6845475,0.0,14093307.03785499,0.0 - 03/08 07:00:00,63039203.64374614,0.0,75948413.37813741,0.0,38306407.44583034,0.0,59488978.84617375,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,312234055.7243913,0.0,14093307.03785499,15502637.741640486 - 03/08 08:00:00,45245671.61843047,0.0,69275289.73618153,0.0,35011158.708366099,0.0,54458733.929955858,0.0,20169.882983876745,19854.11970307621,19879.703762781486,23930.796228602936,505795063.6349485,0.0,56373228.15141996,38756594.35410121 - 03/08 09:00:00,32740044.952012239,0.0,70756118.70763332,0.0,40193879.19001573,0.0,60455002.388157118,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,469502834.1266199,0.0,56373228.15141996,38756594.35410121 - 03/08 10:00:00,22848993.32549504,0.0,65989051.69546517,0.0,40872735.56081003,0.0,60622436.01381463,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,379562069.0528748,0.0,28186614.07570998,0.0 - 03/08 11:00:00,34122196.56735808,0.0,66670273.33973454,0.0,43044996.61342713,0.0,63275468.41245363,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,359181078.8377954,0.0,28186614.07570998,0.0 - 03/08 12:00:00,32532424.73719799,0.0,63728011.72405769,0.0,42135396.80407974,0.0,61662622.030781317,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,276092527.2485278,0.0,28186614.07570998,0.0 - 03/08 13:00:00,33312546.93414234,0.0,63313752.41817671,0.0,41818289.316018547,0.0,60266373.9897985,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,274857329.3817268,0.0,28186614.07570998,0.0 - 03/08 14:00:00,34298618.66866283,0.0,62141084.39393188,0.0,40378966.874953549,0.0,58950361.90783562,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,271915398.5689746,0.0,28186614.07570998,0.0 - 03/08 15:00:00,39386323.01355897,0.0,64873841.797422859,0.0,40472172.623262617,0.0,60012172.401028919,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,318964059.9206595,0.0,28186614.07570998,0.0 - 03/08 16:00:00,48644190.556879799,0.0,71242463.491021,0.0,42404302.13730669,0.0,63624989.882250938,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,416281862.8764352,0.0,28186614.07570998,0.0 - 03/08 17:00:00,60130839.658541779,0.0,79508897.49491404,0.0,44971293.32197383,0.0,68037646.76243904,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,443014594.0468455,0.0,35233267.594637479,0.0 - 03/08 18:00:00,75323399.67381485,0.0,92763067.7240294,0.0,52793986.03787664,0.0,78437542.73130131,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,565437248.0004608,0.0,14093307.03785499,0.0 - 03/08 19:00:00,67105409.662906538,0.0,84029162.58566147,0.0,41781499.35780977,0.0,65518476.650200847,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,524553800.0900171,0.0,63419881.67034747,0.0 - 03/08 20:00:00,54848233.12384414,0.0,71260723.34663078,0.0,28629893.053946645,0.0,49638512.22399768,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,356445505.6532413,0.0,63419881.67034747,69761869.8373822 - 03/08 21:00:00,59065033.06715912,0.0,74897428.08398248,0.0,31805505.660680295,0.0,53592781.10194704,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,371428891.81859096,0.0,49326574.63249246,69761869.8373822 - 03/08 22:00:00,63095057.277905959,0.0,78452851.97169692,0.0,35020407.72119099,0.0,57565505.15164422,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,310167894.0748491,0.0,35233267.594637479,69761869.8373822 - 03/08 23:00:00,66959618.23896505,0.0,81959852.67451982,0.0,38071751.59483466,0.0,61346233.456381779,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,324153967.0757874,0.0,35233267.594637479,62010550.96656194 - 03/08 24:00:00,72033638.19722195,0.0,86853299.30817758,0.0,42383429.835351329,0.0,66714885.46792562,0.0,2533.4473617354,2493.7857706732945,2496.9992681742285,3005.8385870679296,305893508.3642194,0.0,35233267.594637479,46507913.22492146 - 03/09 01:00:00,79561854.26193939,0.0,93964595.7684471,0.0,49681274.75613538,0.0,75425358.8435122,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,336601606.30763438,0.0,21139960.556782485,23253956.61246073 - 03/09 02:00:00,36568910.21263588,0.0,50420017.42999256,0.0,12735374.763477589,0.0,28585945.235128493,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,147318765.62933726,0.0,14093307.03785499,0.0 - 03/09 03:00:00,64134443.04394146,0.0,76835866.73371953,0.0,37389486.12241143,0.0,59320874.61760737,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,256664931.85647989,0.0,14093307.03785499,0.0 - 03/09 04:00:00,66279007.5265177,0.0,78469330.73987565,0.0,39533454.309269409,0.0,61803734.72609007,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,265069788.64055295,0.0,14093307.03785499,0.0 - 03/09 05:00:00,67300854.05927134,0.0,79295393.98875043,0.0,40798956.48023535,0.0,62995188.758688878,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,269374654.62574616,0.0,14093307.03785499,0.0 - 03/09 06:00:00,69797725.72647289,0.0,81808126.5961238,0.0,43038377.62426633,0.0,65644840.599790308,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,279211955.79238238,0.0,14093307.03785499,0.0 - 03/09 07:00:00,67507955.68291521,0.0,79516053.42157512,0.0,41065192.91201323,0.0,63106368.052069168,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,270118455.3143018,0.0,14093307.03785499,15502637.741640486 - 03/09 08:00:00,70532363.10852939,0.0,83866287.79859638,0.0,43255762.805573318,0.0,66227179.0967391,0.0,5058.542842413007,4979.350410544797,4985.766811780513,6001.767986071687,339573133.79235419,0.0,56373228.15141996,38756594.35410121 - 03/09 09:00:00,80241016.92262498,0.0,94344855.54384402,0.0,53320962.985331859,0.0,78430244.37817,0.0,12646.357106032516,12448.376026361992,12464.417029451284,15004.419965179217,495565932.2872609,0.0,56373228.15141996,38756594.35410121 - 03/09 10:00:00,85178534.92532982,0.0,98942830.65815382,0.0,60662670.804563198,0.0,86907738.63928014,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,520651879.4870516,0.0,28186614.07570998,0.0 - 03/09 11:00:00,83219747.76690647,0.0,97500656.40338125,0.0,59396592.47692994,0.0,85697185.2135705,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,514774286.3205128,0.0,28186614.07570998,0.0 - 03/09 12:00:00,82885664.97541426,0.0,97440078.59460218,0.0,58754497.39363188,0.0,85270836.52087286,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,437727140.16035607,0.0,28186614.07570998,0.0 - 03/09 13:00:00,86599952.90763828,0.0,101122032.50915668,0.0,60017552.11627804,0.0,87433228.14824842,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,448349344.2970769,0.0,28186614.07570998,0.0 - 03/09 14:00:00,79482689.65833816,0.0,95212302.58929332,0.0,57661171.98828889,0.0,83919010.31720536,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,429451753.1688812,0.0,28186614.07570998,0.0 - 03/09 15:00:00,74936186.2743695,0.0,91864349.92667954,0.0,55831862.896563667,0.0,81468966.79883325,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,417277944.51220139,0.0,28186614.07570998,0.0 - 03/09 16:00:00,84879503.94694868,0.0,100220371.39867899,0.0,58874431.559665609,0.0,86339771.95424602,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,594392762.2963021,0.0,28186614.07570998,0.0 - 03/09 17:00:00,89230601.69354932,0.0,104627200.520129,0.0,59793915.31437937,0.0,88265550.40972154,0.0,22656.798386812407,22302.101981445296,22330.840516176613,26881.42642278903,680933470.2437832,0.0,35233267.594637479,0.0 - 03/09 18:00:00,94253810.48182498,0.0,109653287.74944633,0.0,62856488.27402668,0.0,92472080.4515478,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,622914935.4170711,0.0,14093307.03785499,0.0 - 03/09 19:00:00,85125122.43336044,0.0,100684292.93060258,0.0,52606142.00910782,0.0,80228388.97421925,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,582323214.8075154,0.0,63419881.67034747,0.0 - 03/09 20:00:00,71752634.7888721,0.0,87088332.6392275,0.0,39104803.628181498,0.0,63721803.267978269,0.0,15076.291962452227,14840.269799300548,14859.393001651799,17887.44491600533,487255813.170135,0.0,63419881.67034747,69761869.8373822 - 03/09 21:00:00,73834671.99715086,0.0,88807182.84264915,0.0,41215888.4672895,0.0,66129941.60533365,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,458330019.52686986,0.0,49326574.63249246,69761869.8373822 - 03/09 22:00:00,76043489.99719829,0.0,90775363.51570764,0.0,43453941.16060862,0.0,68786510.14452252,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,429733172.5095944,0.0,35233267.594637479,69761869.8373822 - 03/09 23:00:00,77601084.21501202,0.0,92470373.73779522,0.0,44739933.065479118,0.0,70492566.95356517,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,398480536.58760699,0.0,35233267.594637479,62010550.96656194 - 03/09 24:00:00,78954013.22364743,0.0,93687334.24712865,0.0,46392628.87935361,0.0,72145399.12919128,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,366870916.46223697,0.0,35233267.594637479,46507913.22492146 - 03/10 01:00:00,87010380.93721041,0.0,101198103.26698159,0.0,54387333.10513339,0.0,81822788.5684549,0.0,2521.235372984593,2481.764962884526,2484.962970347686,2991.349528575367,362144132.08303216,0.0,21139960.556782485,23253956.61246073 - 03/10 02:00:00,47077010.87335555,0.0,59905896.192797798,0.0,20547577.456688435,0.0,37659878.88116838,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,184053126.50663609,0.0,14093307.03785499,0.0 - 03/10 03:00:00,73886574.673572,0.0,87071911.98019168,0.0,43536525.37062609,0.0,67991494.18187343,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,291349269.30888918,0.0,14093307.03785499,0.0 - 03/10 04:00:00,74820527.15282586,0.0,87858881.98372263,0.0,45016845.97670421,0.0,69403942.60472726,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,295996208.1639524,0.0,14093307.03785499,0.0 - 03/10 05:00:00,77872275.24030644,0.0,91094228.0546106,0.0,47902594.55507543,0.0,72776245.82901746,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,308444363.5828329,0.0,14093307.03785499,0.0 - 03/10 06:00:00,82264927.31803587,0.0,95912933.0219323,0.0,51518990.26625302,0.0,77346636.50802623,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,325775216.7634076,0.0,14093307.03785499,0.0 - 03/10 07:00:00,78559399.47831401,0.0,92928119.32073315,0.0,48758435.56881222,0.0,73957500.42751315,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,312903446.3638326,0.0,14093307.03785499,15502637.741640486 - 03/10 08:00:00,71790380.2391067,0.0,91343950.41834733,0.0,46796032.072427559,0.0,71760994.65998408,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806395,300352327.84614017,0.0,56373228.15141996,38756594.35410121 - 03/10 09:00:00,58460111.4881577,0.0,90794250.43282365,0.0,49460901.67279327,0.0,74543921.75238098,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,347742951.8844209,0.0,56373228.15141996,38756594.35410121 - 03/10 10:00:00,50575413.723697569,0.0,88930890.42248318,0.0,55299908.5789723,0.0,80324132.01133916,0.0,7466.73906764187,7349.845874619138,7359.316901211759,8859.000880804424,386855994.5438901,0.0,28186614.07570998,0.0 - 03/10 11:00:00,41779461.93186216,0.0,89174127.91138295,0.0,56832701.774219628,0.0,82369495.25837785,0.0,7436.2812468511669,7319.864876694814,7329.297269711513,8822.86383908275,381425692.91226747,0.0,28186614.07570998,0.0 - 03/10 12:00:00,32766480.26278344,0.0,94437604.34678963,0.0,60905106.7974216,0.0,87096938.46318983,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,349553427.7498371,0.0,28186614.07570998,0.0 - 03/10 13:00:00,28136097.70126461,0.0,89170009.93090421,0.0,58909885.656200949,0.0,81023233.33450097,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,331722993.16113606,0.0,28186614.07570998,0.0 - 03/10 14:00:00,26248074.701864534,0.0,83956964.63297773,0.0,54454818.71184938,0.0,76357974.85878869,0.0,7482.790069398141,7365.6455949486039,7375.136981093513,8878.044781683835,352983655.6431271,0.0,28186614.07570998,0.0 - 03/10 15:00:00,32184798.12463501,0.0,78202211.48093592,0.0,48209842.46584414,0.0,70450095.03612629,0.0,10014.884697793233,9858.099809574387,9870.802977374355,11882.278402280495,378900784.30082228,0.0,28186614.07570998,0.0 - 03/10 16:00:00,41962810.01293638,0.0,79351058.27168305,0.0,44448714.76682681,0.0,68227885.8012453,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,421679154.2670794,0.0,28186614.07570998,0.0 - 03/10 17:00:00,57093137.651761028,0.0,82945257.01254475,0.0,43286465.317680258,0.0,68587497.53226097,0.0,15104.532257874936,14868.067987630193,14887.227010784409,17920.950948526024,477923159.0515831,0.0,35233267.594637479,0.0 - 03/10 18:00:00,82229996.6619046,0.0,102729362.90422526,0.0,55583302.9797423,0.0,84720651.99246755,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,588027474.1184827,0.0,14093307.03785499,0.0 - 03/10 19:00:00,84400268.63517049,0.0,104499502.9033806,0.0,53221329.837806168,0.0,82062589.16329621,0.0,10014.884697793233,9858.099809574387,9870.802977374355,11882.278402280495,474037527.73293438,0.0,63419881.67034747,0.0 - 03/10 20:00:00,74334272.25853953,0.0,94145555.29100128,0.0,41656302.36659007,0.0,68298126.93949783,0.0,7498.4369936266289,7381.047563659363,7390.558796813003,8896.609260001118,390634206.26638916,0.0,63419881.67034747,69761869.8373822 - 03/10 21:00:00,81422676.31413883,0.0,100733018.79284513,0.0,47112412.0717325,0.0,75141616.27470625,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,378893489.991688,0.0,49326574.63249246,69761869.8373822 - 03/10 22:00:00,87922314.63216013,0.0,106872925.90221302,0.0,52277033.8497989,0.0,81632248.0576547,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,403051820.3214793,0.0,35233267.594637479,69761869.8373822 - 03/10 23:00:00,95005973.14408589,0.0,112848255.40719927,0.0,57220819.807172808,0.0,88068304.12119141,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,427006452.07847025,0.0,35233267.594637479,62010550.96656194 - 03/10 24:00:00,101865256.14420064,0.0,119503369.41376402,0.0,62671913.34441221,0.0,95011017.69002226,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,452914656.19122,0.0,35233267.594637479,46507913.22492146 - 03/11 01:00:00,112323704.27738004,0.0,129629350.73789616,0.0,71992394.51125016,0.0,106488081.84559557,0.0,2463.2203210024774,2424.6581473638868,2427.782566866477,2922.5168839692657,457290971.88124957,0.0,21139960.556782485,23253956.61246073 - 03/11 02:00:00,71619440.70051289,0.0,87378164.0155753,0.0,36262493.168114248,0.0,60906955.266319397,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.665305695209,274550458.4206778,0.0,14093307.03785499,0.0 - 03/11 03:00:00,103165271.15957277,0.0,119110471.5610342,0.0,63668018.721616659,0.0,96577250.29367769,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,400818982.8100265,0.0,14093307.03785499,0.0 - 03/11 04:00:00,106985501.57243039,0.0,122728092.76297711,0.0,67461440.92923227,0.0,100693978.73835431,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,416166985.07711926,0.0,14093307.03785499,0.0 - 03/11 05:00:00,110493433.17933735,0.0,126156489.932847,0.0,70577190.87294063,0.0,104332447.71347341,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,429769133.19125226,0.0,14093307.03785499,0.0 - 03/11 06:00:00,113948803.26077323,0.0,129662597.46674884,0.0,73490695.19924963,0.0,107890359.08527646,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,443152595.24231639,0.0,14093307.03785499,0.0 - 03/11 07:00:00,102839373.68019451,0.0,119773311.6666712,0.0,64725199.61944164,0.0,97139533.7652603,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,456950655.3288331,0.0,14093307.03785499,15502637.741640486 - 03/11 08:00:00,76800321.86809896,0.0,105689917.00545644,0.0,52152191.89550356,0.0,81684909.13436044,0.0,19418.570939074656,19114.569588492614,19139.200662390944,23039.39316678913,606889583.5877099,0.0,56373228.15141996,38756594.35410121 - 03/11 09:00:00,63122623.66518887,0.0,108781897.46718917,0.0,57879344.87022462,0.0,88503370.18501117,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,574458831.2253658,0.0,56373228.15141996,38756594.35410121 - 03/11 10:00:00,52262102.15047598,0.0,112709321.04177113,0.0,66388775.407553989,0.0,97403578.70896858,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,512213233.0053034,0.0,28186614.07570998,0.0 - 03/11 11:00:00,41167691.66587264,0.0,114818758.55191612,0.0,69077173.80944748,0.0,100718891.8619683,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,473212277.92571488,0.0,28186614.07570998,0.0 - 03/11 12:00:00,36442370.230551939,0.0,117422590.44553265,0.0,72751004.50357847,0.0,104161441.30751689,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,404640506.0860008,0.0,28186614.07570998,0.0 - 03/11 13:00:00,29583625.641308994,0.0,111422440.3409608,0.0,69931631.84599811,0.0,95858879.93031064,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,381143875.6382311,0.0,28186614.07570998,0.0 - 03/11 14:00:00,25655274.682919925,0.0,97128956.22597869,0.0,61331312.21963139,0.0,85568167.61061067,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,344167477.2774059,0.0,28186614.07570998,0.0 - 03/11 15:00:00,26708538.87805244,0.0,87269575.834767,0.0,52098880.38428582,0.0,76038593.38857125,0.0,7498.4369936266289,7381.047563659363,7390.558796813003,8896.609260001118,354315537.8964369,0.0,28186614.07570998,0.0 - 03/11 16:00:00,36562271.267041269,0.0,83129953.61320585,0.0,45534366.842445779,0.0,70362033.5766809,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,422905921.79097488,0.0,28186614.07570998,0.0 - 03/11 17:00:00,52814581.91161912,0.0,84729571.41814262,0.0,42835111.72660766,0.0,69315899.44785796,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,437383849.9186152,0.0,35233267.594637479,0.0 - 03/11 18:00:00,80966417.2128481,0.0,103746525.57425052,0.0,55864761.33960679,0.0,85919832.25959045,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,588741751.4745374,0.0,14093307.03785499,0.0 - 03/11 19:00:00,82796974.40330459,0.0,104518259.72670755,0.0,52856639.939913857,0.0,82111285.29179642,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,584527374.4499639,0.0,63419881.67034747,0.0 - 03/11 20:00:00,72698698.9592021,0.0,93147724.8475706,0.0,41221353.285822208,0.0,67964445.98339813,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,424319986.72618868,0.0,63419881.67034747,69761869.8373822 - 03/11 21:00:00,79204060.58515036,0.0,98615626.92490627,0.0,46206819.4162045,0.0,74045603.39052835,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,447039643.39331999,0.0,49326574.63249246,69761869.8373822 - 03/11 22:00:00,85987044.05678317,0.0,104766748.26103267,0.0,51541650.171033937,0.0,80682803.90595453,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,397158183.7524209,0.0,35233267.594637479,69761869.8373822 - 03/11 23:00:00,91560460.45163954,0.0,109984946.2956193,0.0,55556241.141994509,0.0,85868756.03799418,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,417007914.9935314,0.0,35233267.594637479,62010550.96656194 - 03/11 24:00:00,97009288.67611891,0.0,115022369.59899879,0.0,60007085.916795279,0.0,91373701.45695602,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,400431201.1820109,0.0,35233267.594637479,46507913.22492146 - 03/12 01:00:00,106969995.82761127,0.0,124538540.54363539,0.0,69153117.90953863,0.0,102466668.41754949,0.0,2468.1731204176896,2429.53340978031,2432.6641115561317,2928.393191415438,440059872.4977452,0.0,21139960.556782485,23253956.61246073 - 03/12 02:00:00,65479506.60951753,0.0,81346945.06074457,0.0,33361077.634628547,0.0,56136475.19734271,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,254789779.4019386,0.0,14093307.03785499,0.0 - 03/12 03:00:00,93916658.09327553,0.0,109709390.37819286,0.0,58239025.03801534,0.0,88891390.48342821,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,369185184.2474758,0.0,14093307.03785499,0.0 - 03/12 04:00:00,93571489.66943252,0.0,108413696.75936774,0.0,59770721.54606671,0.0,89306439.31399791,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,369528122.1885701,0.0,14093307.03785499,0.0 - 03/12 05:00:00,93084386.16946087,0.0,107386915.01312474,0.0,60285942.024007279,0.0,89164210.1159924,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,368387228.2222905,0.0,14093307.03785499,0.0 - 03/12 06:00:00,92488353.73743609,0.0,106486297.8565132,0.0,60276965.9558849,0.0,88698667.61849483,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,366459662.9348999,0.0,14093307.03785499,0.0 - 03/12 07:00:00,83075070.84568131,0.0,97778180.56299362,0.0,53503396.01702941,0.0,80030923.68196914,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,388425082.17395737,0.0,14093307.03785499,15502637.741640486 - 03/12 08:00:00,69580158.22061423,0.0,89136150.54699369,0.0,47591827.86571847,0.0,72249896.07940173,0.0,19874.82282210369,19563.678763179127,19588.88856008866,23580.718609798,575947224.2313383,0.0,56373228.15141996,38756594.35410121 - 03/12 09:00:00,63276094.475294318,0.0,90355572.1112158,0.0,52917920.49836072,0.0,77748535.09779357,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.00205521031,544991305.0665927,0.0,56373228.15141996,38756594.35410121 - 03/12 10:00:00,35629637.9552278,0.0,84156909.24724463,0.0,52777856.140990968,0.0,76132495.6001527,0.0,12497.394989377714,12301.745939432274,12317.597994688338,14827.682100001863,435696814.6282168,0.0,28186614.07570998,0.0 - 03/12 11:00:00,14679806.044903404,0.0,74772088.37398906,0.0,47903955.469700139,0.0,69483660.00335159,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,358007593.45972397,0.0,28186614.07570998,0.0 - 03/12 12:00:00,4358546.769906872,0.0,67699042.87808134,0.0,44849908.00508264,0.0,64403322.7925346,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,257247865.8008059,0.0,28186614.07570998,0.0 - 03/12 13:00:00,11747612.474763534,0.0,61430618.83976385,0.0,40990824.30493902,0.0,57413259.085262197,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,247616386.65713964,0.0,28186614.07570998,0.0 - 03/12 14:00:00,14482047.784682235,0.0,57006298.445758629,0.0,36850636.63102841,0.0,53273198.435902688,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,237758548.02096267,0.0,28186614.07570998,0.0 - 03/12 15:00:00,6910285.839036538,0.0,50795755.324425239,0.0,30877524.01984325,0.0,46305502.98379275,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,249399663.1793937,0.0,28186614.07570998,0.0 - 03/12 16:00:00,25997426.130386056,0.0,56247648.93411997,0.0,31491705.675451608,0.0,49099035.80002345,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,353686808.2271409,0.0,28186614.07570998,0.0 - 03/12 17:00:00,37593682.84277348,0.0,61716780.39488703,0.0,31664722.65677883,0.0,51195386.41176828,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,372761751.6568417,0.0,35233267.594637479,0.0 - 03/12 18:00:00,56539246.798424188,0.0,75819899.86215265,0.0,39933447.75663527,0.0,62614197.75975795,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,501734443.2678578,0.0,14093307.03785499,0.0 - 03/12 19:00:00,56487842.44044863,0.0,74658598.57643181,0.0,35116119.12788511,0.0,56822770.86711401,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,489597614.54444709,0.0,63419881.67034747,0.0 - 03/12 20:00:00,46528428.088502157,0.0,63542912.7872873,0.0,23287057.602968877,0.0,42527284.55693957,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,328178416.4828794,0.0,63419881.67034747,69761869.8373822 - 03/12 21:00:00,53612367.71040441,0.0,69672421.60218096,0.0,28384266.254878958,0.0,48913941.53153422,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,352457087.8093994,0.0,49326574.63249246,69761869.8373822 - 03/12 22:00:00,61053160.45830354,0.0,76495125.24506147,0.0,33859499.67384432,0.0,55903110.99695269,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,303127407.4852482,0.0,35233267.594637479,69761869.8373822 - 03/12 23:00:00,65586331.96546976,0.0,80502133.33581528,0.0,37029723.83068693,0.0,59927682.64090114,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,318862382.8839593,0.0,35233267.594637479,62010550.96656194 - 03/12 24:00:00,71558326.92674463,0.0,86218679.54541327,0.0,41912074.399432707,0.0,65996339.18756522,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,303531190.55061379,0.0,35233267.594637479,46507913.22492146 - 03/13 01:00:00,81513234.2024357,0.0,95543800.93171764,0.0,51133831.00059415,0.0,77119773.24538085,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,343102660.27207329,0.0,21139960.556782485,23253956.61246073 - 03/13 02:00:00,38979515.33605526,0.0,52183324.72010365,0.0,15011618.009133915,0.0,31265677.609810994,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,156394263.45287536,0.0,14093307.03785499,0.0 - 03/13 03:00:00,68191892.1528276,0.0,80628730.3027115,0.0,40398798.54258266,0.0,63091410.52377833,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,271173594.624526,0.0,14093307.03785499,0.0 - 03/13 04:00:00,73550990.67118569,0.0,85662692.80412868,0.0,45323994.36880128,0.0,69023690.01393137,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,292330236.39948579,0.0,14093307.03785499,0.0 - 03/13 05:00:00,77652569.32647455,0.0,89602780.70382066,0.0,49078935.93213494,0.0,73403711.50325215,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,308437989.0341424,0.0,14093307.03785499,0.0 - 03/13 06:00:00,81166925.72060625,0.0,93038521.52464828,0.0,52232036.55111423,0.0,77150791.48880092,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,322209216.919736,0.0,14093307.03785499,0.0 - 03/13 07:00:00,66147839.2669148,0.0,79286620.03084795,0.0,40963212.58273626,0.0,62976055.58184296,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,323857494.00060728,0.0,14093307.03785499,15502637.741640486 - 03/13 08:00:00,43025316.373041559,0.0,67999459.27359692,0.0,34704005.27204538,0.0,53804188.49274797,0.0,20069.48187606116,19755.29039333328,19780.74710138566,23811.674146725636,499834866.07445248,0.0,56373228.15141996,38756594.35410121 - 03/13 09:00:00,27554092.62523663,0.0,68294334.77363546,0.0,39378232.86993989,0.0,57732682.777726057,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,456638611.5067634,0.0,56373228.15141996,38756594.35410121 - 03/13 10:00:00,3762187.9127302386,0.0,58350785.18770101,0.0,34631527.89512609,0.0,51811190.76421173,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,338398305.1477702,0.0,28186614.07570998,0.0 - 03/13 11:00:00,0.0,0.0,54690729.92829898,0.0,32948788.919934386,0.0,49608297.41919649,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,290094767.2825415,0.0,28186614.07570998,0.0 - 03/13 12:00:00,0.0,12463004.476475098,53620251.72040226,0.0,34289335.35830138,0.0,50378899.05612256,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,214628882.80969013,12463004.476475098,28186614.07570998,0.0 - 03/13 13:00:00,0.0,19454812.843812527,48473754.282271187,0.0,32933050.103823835,0.0,44458219.47851983,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,202205420.53947879,19454812.843812527,28186614.07570998,0.0 - 03/13 14:00:00,0.0,24128453.93088063,37649444.28588428,0.0,26748528.447943495,0.0,36839185.91242579,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,177660634.1538094,24128453.93088063,28186614.07570998,0.0 - 03/13 15:00:00,0.0,16341368.80809797,32632357.48526135,0.0,20519396.498263536,0.0,31649600.994614129,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,199436568.23947279,16341368.80809797,28186614.07570998,0.0 - 03/13 16:00:00,0.0,1980637.1332020323,37404208.8379225,0.0,19392732.48338837,0.0,33326800.48805363,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,280714921.1599986,1980637.1332020323,28186614.07570998,0.0 - 03/13 17:00:00,11920975.369906119,0.0,47769279.31983817,0.0,21953427.82968534,0.0,38797646.25025611,0.0,12722.348275757631,12523.17754014892,12539.314932623558,15094.580587296787,310807245.5786626,0.0,35233267.594637479,0.0 - 03/13 18:00:00,42723562.44459709,0.0,68935120.2269509,0.0,34981699.113502237,0.0,56364163.887809228,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,469123797.50629797,0.0,14093307.03785499,0.0 - 03/13 19:00:00,46174340.05917154,0.0,70536891.62004879,0.0,31951737.807692209,0.0,53102045.562842037,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,467544673.7929561,0.0,63419881.67034747,0.0 - 03/13 20:00:00,38956132.63697,0.0,61853078.063892778,0.0,21859694.250934423,0.0,41167980.09743969,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,315469907.27140918,0.0,63419881.67034747,69761869.8373822 - 03/13 21:00:00,46256195.95501907,0.0,67900785.01020992,0.0,26465834.283854806,0.0,47211012.22464511,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,339707918.18412986,0.0,49326574.63249246,69761869.8373822 - 03/13 22:00:00,53004906.291498709,0.0,73329844.83940764,0.0,30909875.949020167,0.0,52839992.42204258,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,286021664.8571695,0.0,35233267.594637479,69761869.8373822 - 03/13 23:00:00,58270162.503451649,0.0,77425710.40528938,0.0,34231723.637342218,0.0,56994609.659818489,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,302859251.56110218,0.0,35233267.594637479,62010550.96656194 - 03/13 24:00:00,65006150.062139619,0.0,83116539.62545899,0.0,39359963.5803712,0.0,63230433.54490196,0.0,2533.4473617354,2493.7857706732945,2496.9992681742285,3005.8385870679296,288621342.36841478,0.0,35233267.594637479,46507913.22492146 - 03/14 01:00:00,76571621.36070258,0.0,93931560.13443505,0.0,49299847.90428433,0.0,75414974.8930734,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,333063774.78395339,0.0,21139960.556782485,23253956.61246073 - 03/14 02:00:00,38098137.912963788,0.0,54002177.51129286,0.0,15702632.17884029,0.0,32742836.046385476,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106244,159441794.0954549,0.0,14093307.03785499,0.0 - 03/14 03:00:00,66484170.67934072,0.0,81694683.67747063,0.0,40289297.291716288,0.0,63762855.445399,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,271127017.5398991,0.0,14093307.03785499,0.0 - 03/14 04:00:00,68996235.88827782,0.0,83233156.18386197,0.0,42604409.38327858,0.0,66241285.09082505,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,279971096.9922159,0.0,14093307.03785499,0.0 - 03/14 05:00:00,69648188.64851062,0.0,83259652.4170775,0.0,43504114.77558218,0.0,66786526.51149097,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,282121367.5983903,0.0,14093307.03785499,0.0 - 03/14 06:00:00,71989307.55571296,0.0,85346956.9954298,0.0,45512159.99454926,0.0,69062444.32604243,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,290773631.9743604,0.0,14093307.03785499,0.0 - 03/14 07:00:00,67679992.6451754,0.0,80785983.33392053,0.0,42036911.88281153,0.0,64490278.410748649,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,330684707.25557216,0.0,14093307.03785499,15502637.741640486 - 03/14 08:00:00,64113487.79538568,0.0,78010004.97752877,0.0,40334620.00672078,0.0,61755950.55024795,0.0,20325.73814509579,20007.534922671613,20033.31667354611,24115.71242803207,548350351.1395272,0.0,56373228.15141996,38756594.35410121 - 03/14 09:00:00,72908081.44293602,0.0,86536739.06671639,0.0,48873006.45024097,0.0,71959288.07840902,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,547468503.4003261,0.0,56373228.15141996,38756594.35410121 - 03/14 10:00:00,73993423.79779873,0.0,86711754.4089435,0.0,54298010.18931925,0.0,77470738.15054803,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,483324918.2337693,0.0,28186614.07570998,0.0 - 03/14 11:00:00,71850018.47782542,0.0,83489948.6356758,0.0,52031063.7864363,0.0,74836161.45558197,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,435054143.37063118,0.0,28186614.07570998,0.0 - 03/14 12:00:00,70063126.16277708,0.0,81584725.86890781,0.0,50699486.17533241,0.0,73254053.91857435,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,351941788.80045559,0.0,28186614.07570998,0.0 - 03/14 13:00:00,68364096.91479913,0.0,80946635.87308887,0.0,49850698.11075409,0.0,72134958.03401339,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,347636785.6075194,0.0,28186614.07570998,0.0 - 03/14 14:00:00,69185366.0360651,0.0,81753540.16092536,0.0,49972975.30064306,0.0,72528616.47344855,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,349676969.71133568,0.0,28186614.07570998,0.0 - 03/14 15:00:00,71086827.19196804,0.0,83688722.29827713,0.0,50510090.79105388,0.0,73554191.78620884,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,393194539.6778883,0.0,28186614.07570998,0.0 - 03/14 16:00:00,72444787.26015386,0.0,84852257.55461078,0.0,50441642.616728197,0.0,73683445.29594997,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,472273124.41460266,0.0,28186614.07570998,0.0 - 03/14 17:00:00,73730158.3270845,0.0,85803031.64243695,0.0,49733998.26026502,0.0,73113520.87230224,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,473231700.7892486,0.0,35233267.594637479,0.0 - 03/14 18:00:00,78019612.98515487,0.0,89256764.11484485,0.0,51972769.50601068,0.0,75995295.41870542,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,563060626.8796494,0.0,14093307.03785499,0.0 - 03/14 19:00:00,63288340.27242454,0.0,74707002.31910785,0.0,37001230.552139658,0.0,57666017.84358811,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,500744622.5493137,0.0,63419881.67034747,0.0 - 03/14 20:00:00,49373598.309200439,0.0,60868035.28883294,0.0,23060337.63395101,0.0,40879744.13019896,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,327219535.2792883,0.0,63419881.67034747,69761869.8373822 - 03/14 21:00:00,51678745.02033324,0.0,63023586.738978799,0.0,25179012.578430259,0.0,43410768.070895519,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,336481844.72981128,0.0,49326574.63249246,69761869.8373822 - 03/14 22:00:00,53927971.90831215,0.0,65087829.394922379,0.0,27383733.528812015,0.0,46044384.65680898,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,269038785.6494422,0.0,35233267.594637479,69761869.8373822 - 03/14 23:00:00,58675400.96793619,0.0,70762833.76337229,0.0,30325257.342264158,0.0,50726219.85952973,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,287084578.0936891,0.0,35233267.594637479,62010550.96656194 - 03/14 24:00:00,63565919.91143614,0.0,75994414.98908179,0.0,34254556.84541007,0.0,55959597.777822289,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,268071922.60404367,0.0,35233267.594637479,46507913.22492146 - 03/15 01:00:00,70535545.0286054,0.0,82641849.38398102,0.0,41349754.104807328,0.0,64344893.63014618,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,297212891.81632789,0.0,21139960.556782485,23253956.61246073 - 03/15 02:00:00,33276094.83492433,0.0,43490532.10496942,0.0,10116776.711948352,0.0,24352569.66447649,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,130406398.15071258,0.0,14093307.03785499,0.0 - 03/15 03:00:00,52969174.34578697,0.0,63133632.23565908,0.0,28129089.686676418,0.0,46698098.42476725,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,210120944.13785953,0.0,14093307.03785499,0.0 - 03/15 04:00:00,55495587.92058175,0.0,65257010.80225068,0.0,31366163.16391545,0.0,50108520.54101038,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,221312381.59647424,0.0,14093307.03785499,0.0 - 03/15 05:00:00,59929796.6809461,0.0,69601575.00095856,0.0,35956992.60090146,0.0,55301832.060901168,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,239774457.68250744,0.0,14093307.03785499,0.0 - 03/15 06:00:00,63512716.69065199,0.0,73437293.28301446,0.0,39024224.29616295,0.0,59124349.56859928,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,254052711.61620016,0.0,14093307.03785499,0.0 - 03/15 07:00:00,58530124.17364157,0.0,68344309.9624084,0.0,35408334.1106074,0.0,54300296.029359158,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,292520109.63121697,0.0,14093307.03785499,15502637.741640486 - 03/15 08:00:00,56133691.612280968,0.0,67435876.63960642,0.0,35598238.75197342,0.0,53670733.33674799,0.0,20267.5788938832,19950.286165386355,19975.994145393826,24046.708696543436,516104584.78495338,0.0,56373228.15141996,38756594.35410121 - 03/15 09:00:00,59766594.43564218,0.0,72855321.87085441,0.0,42838359.732018347,0.0,62584406.07136856,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,504163933.94332209,0.0,56373228.15141996,38756594.35410121 - 03/15 10:00:00,62420484.67913096,0.0,77319143.52388841,0.0,50041734.2830559,0.0,70546152.30474675,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,450412694.6718496,0.0,28186614.07570998,0.0 - 03/15 11:00:00,64844160.27636611,0.0,75840989.36060398,0.0,47737307.48865,0.0,68057441.75951509,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,409517718.80224016,0.0,28186614.07570998,0.0 - 03/15 12:00:00,60414640.37948748,0.0,70763954.49695218,0.0,43641096.721237879,0.0,62983213.410465057,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,314484604.34571859,0.0,28186614.07570998,0.0 - 03/15 13:00:00,53054563.87579827,0.0,64798255.2957565,0.0,39960804.67169691,0.0,57814991.13826732,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,292457190.81034269,0.0,28186614.07570998,0.0 - 03/15 14:00:00,35940535.08989261,0.0,53962067.94440645,0.0,34133039.94556567,0.0,49424821.037866178,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,250419832.94027744,0.0,28186614.07570998,0.0 - 03/15 15:00:00,28783417.54310908,0.0,48154584.128937449,0.0,29552872.50362035,0.0,43805153.643678728,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,265831842.7073215,0.0,28186614.07570998,0.0 - 03/15 16:00:00,43158728.74928884,0.0,58360227.407583188,0.0,32944649.183760175,0.0,50246206.69454886,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,377108234.34154739,0.0,28186614.07570998,0.0 - 03/15 17:00:00,53554011.061547819,0.0,65673280.03952259,0.0,36076424.66344002,0.0,54963540.262131009,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,402338695.5987005,0.0,35233267.594637479,0.0 - 03/15 18:00:00,59497870.64035602,0.0,69995277.20869257,0.0,38738517.79287688,0.0,58476187.67259173,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,495607868.7154,0.0,14093307.03785499,0.0 - 03/15 19:00:00,52562692.51776469,0.0,63233616.291172597,0.0,29515701.299763208,0.0,47405443.54788036,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,461617469.05746367,0.0,63419881.67034747,0.0 - 03/15 20:00:00,38949180.743305239,0.0,49600036.38938391,0.0,15831015.405722063,0.0,30786887.146251028,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,288824271.34230956,0.0,63419881.67034747,69761869.8373822 - 03/15 21:00:00,40986194.83906376,0.0,51433141.294148,0.0,17820477.932231759,0.0,33127225.37776204,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,297170882.3599499,0.0,49326574.63249246,69761869.8373822 - 03/15 22:00:00,45374538.6945665,0.0,56175119.84231929,0.0,21643452.19518322,0.0,38229741.09062222,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,238186649.60257066,0.0,35233267.594637479,69761869.8373822 - 03/15 23:00:00,50342035.98444432,0.0,61384206.17364447,0.0,25547600.31900769,0.0,43299767.786787468,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,257168476.42447064,0.0,35233267.594637479,62010550.96656194 - 03/15 24:00:00,55581771.188241738,0.0,66557597.58812034,0.0,30220798.031552964,0.0,49076076.483982447,0.0,2556.918377229535,2516.889343041355,2520.132611853418,3033.686051007979,239695698.27117373,0.0,35233267.594637479,46507913.22492146 - 03/16 01:00:00,65487732.82716225,0.0,76276015.42715831,0.0,39540151.88169885,0.0,60350537.146993298,0.0,2550.953264868551,2511.0176156271725,2514.253318119148,3026.6086728940088,279824635.62044468,0.0,21139960.556782485,23253956.61246073 - 03/16 02:00:00,32631070.400216987,0.0,42230712.30070633,0.0,11331457.06583526,0.0,24712656.891330944,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,129965014.59315293,0.0,14093307.03785499,0.0 - 03/16 03:00:00,55991461.7213381,0.0,66189546.83252405,0.0,31565556.04491479,0.0,50519627.233280349,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,223302783.512955,0.0,14093307.03785499,0.0 - 03/16 04:00:00,60033353.91135767,0.0,70340244.26743928,0.0,35209450.08698727,0.0,55094758.8567713,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,239662068.46135567,0.0,14093307.03785499,0.0 - 03/16 05:00:00,63325247.84764036,0.0,73822458.8861961,0.0,38247518.192651327,0.0,58777918.30962442,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,253127271.01388369,0.0,14093307.03785499,0.0 - 03/16 06:00:00,66299217.021713558,0.0,77056539.1568555,0.0,40782994.168362278,0.0,61969789.83729585,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,265031425.42995615,0.0,14093307.03785499,0.0 - 03/16 07:00:00,55207762.77770364,0.0,67534826.27966716,0.0,32539212.0882081,0.0,51906642.579926747,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,226022677.18695034,0.0,14093307.03785499,15502637.741640486 - 03/16 08:00:00,46769743.02753471,0.0,68519579.83494509,0.0,35487168.791328098,0.0,54420812.0790938,0.0,5034.844085958313,4956.022662543399,4962.409003594803,5973.650316175341,280534237.57868036,0.0,56373228.15141996,38756594.35410121 - 03/16 09:00:00,30222517.213120048,0.0,64482934.013844329,0.0,33844960.1130712,0.0,49282233.554194469,0.0,12563.576635376856,12366.891499417125,12382.827501376501,14906.204096671105,365822843.9324598,0.0,56373228.15141996,38756594.35410121 - 03/16 10:00:00,20494218.91470337,0.0,70141389.86213476,0.0,40486422.12301783,0.0,61214949.042038608,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,380679314.55634126,0.0,28186614.07570998,0.0 - 03/16 11:00:00,9994700.115293913,0.0,66485618.60734577,0.0,41567186.85726716,0.0,61248590.93539382,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,367638431.1297474,0.0,28186614.07570998,0.0 - 03/16 12:00:00,11189837.408458697,0.0,66550435.90048511,0.0,43983669.89116086,0.0,63640275.035054448,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,298369619.00382718,0.0,28186614.07570998,0.0 - 03/16 13:00:00,30340565.813691029,0.0,74563216.40602193,0.0,47522462.623650427,0.0,67396362.49970675,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,332616726.76600798,0.0,28186614.07570998,0.0 - 03/16 14:00:00,17757871.671210108,0.0,67060132.7717991,0.0,43764938.35178729,0.0,62043054.061627257,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,303420116.2793616,0.0,28186614.07570998,0.0 - 03/16 15:00:00,24313979.982378536,0.0,65114138.507663119,0.0,40181903.3012512,0.0,59228654.249279249,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,301844076.80924019,0.0,28186614.07570998,0.0 - 03/16 16:00:00,28866247.68641589,0.0,62981445.254311,0.0,36290084.00776754,0.0,55947863.44175357,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,447764908.8504734,0.0,28186614.07570998,0.0 - 03/16 17:00:00,46380143.85679993,0.0,71108374.07302943,0.0,37671980.520868647,0.0,59980325.04283068,0.0,22656.798386812407,22302.101981445296,22330.840516176613,26881.42642278903,554157025.7995328,0.0,35233267.594637479,0.0 - 03/16 18:00:00,72802518.58062133,0.0,92526502.25748347,0.0,49983043.45009084,0.0,76877589.85210145,0.0,17589.0072895276,17313.648099183974,17335.958501927096,20868.685735339546,555375932.7938187,0.0,14093307.03785499,0.0 - 03/16 19:00:00,75718414.1239147,0.0,95365802.43236096,0.0,47869093.83005005,0.0,75004846.646109,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,556722316.6125777,0.0,63419881.67034747,0.0 - 03/16 20:00:00,67627634.60360237,0.0,86896940.32213006,0.0,37644317.8759277,0.0,63089173.84951295,0.0,14996.873987253257,14762.095127318726,14781.117593626006,17793.218520002236,479657965.47269389,0.0,63419881.67034747,69761869.8373822 - 03/16 21:00:00,76560833.4984864,0.0,95576834.86798045,0.0,44268926.14038356,0.0,71710296.05352549,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,474326306.906039,0.0,49326574.63249246,69761869.8373822 - 03/16 22:00:00,83674972.10085587,0.0,102269839.67813614,0.0,49848260.3589828,0.0,78722943.51287759,0.0,9937.411411051846,9781.839381589563,9794.44428004433,11790.359304899002,463210611.4101575,0.0,35233267.594637479,69761869.8373822 - 03/16 23:00:00,88324678.60098078,0.0,106397302.82853379,0.0,53485151.05696523,0.0,83132497.30045043,0.0,7436.2812468511669,7319.864876694814,7329.297269711513,8822.86383908275,442609535.8233551,0.0,35233267.594637479,62010550.96656194 - 03/16 24:00:00,94784865.20019531,0.0,112771978.3012815,0.0,58793647.652686107,0.0,89807424.8121378,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,430195427.0325846,0.0,35233267.594637479,46507913.22492146 - 03/17 01:00:00,105522046.74601554,0.0,123718747.76429796,0.0,68248640.41105487,0.0,101742144.2195394,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,436250334.6740497,0.0,21139960.556782485,23253956.61246073 - 03/17 02:00:00,67979947.78919211,0.0,85164638.3031592,0.0,35187828.411291528,0.0,59486175.8886731,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,266163535.96196933,0.0,14093307.03785499,0.0 - 03/17 03:00:00,101021643.04754836,0.0,118557601.54303508,0.0,63317906.25388998,0.0,96590009.22931966,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,397737274.3289865,0.0,14093307.03785499,0.0 - 03/17 04:00:00,105872705.00049225,0.0,123218704.7797226,0.0,68048024.74635017,0.0,101778309.05329438,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,417127315.0725133,0.0,14093307.03785499,0.0 - 03/17 05:00:00,108684665.99025242,0.0,126024159.91218098,0.0,70530433.85485238,0.0,104647287.76349156,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,428096119.0134312,0.0,14093307.03785499,0.0 - 03/17 06:00:00,113168641.97098309,0.0,130698932.87609466,0.0,74231943.41910288,0.0,109274618.17158675,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,445441497.2662759,0.0,14093307.03785499,0.0 - 03/17 07:00:00,98168680.8736942,0.0,117014940.95401405,0.0,63013266.09760831,0.0,95292287.81590963,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,391556536.5697347,0.0,14093307.03785499,15502637.741640486 - 03/17 08:00:00,78012301.00588642,0.0,107043990.48351279,0.0,54927198.1371256,0.0,85166249.20407677,0.0,1210.8650699103442,1191.9087513542423,1193.4446474359593,1436.6451838873275,343268047.9799179,0.0,56373228.15141996,38756594.35410121 - 03/17 09:00:00,60943927.4556571,0.0,108379817.57360108,0.0,58519471.383019607,0.0,89048806.98402018,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,389532584.3173705,0.0,56373228.15141996,38756594.35410121 - 03/17 10:00:00,50904310.918318238,0.0,112711141.28426683,0.0,66523678.51984379,0.0,97920187.3186402,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,437316746.9969926,0.0,28186614.07570998,0.0 - 03/17 11:00:00,38881270.51777682,0.0,112743884.76351385,0.0,68465499.0291499,0.0,100044319.33519659,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,429922800.09038797,0.0,28186614.07570998,0.0 - 03/17 12:00:00,33349719.95948247,0.0,114472277.42048934,0.0,71431940.66859326,0.0,102541142.79734543,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,395328701.9265345,0.0,28186614.07570998,0.0 - 03/17 13:00:00,27961240.55621374,0.0,112309885.58289966,0.0,70178519.20452401,0.0,96505645.92298354,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,380818390.8654418,0.0,28186614.07570998,0.0 - 03/17 14:00:00,25808685.70899775,0.0,101677659.51722186,0.0,63114783.98019219,0.0,88433400.13168895,0.0,7422.00350549652,7305.810656044584,7315.22493876349,8805.923843980354,390090795.9375266,0.0,28186614.07570998,0.0 - 03/17 15:00:00,27195109.37234851,0.0,91027933.33846204,0.0,53295471.86214947,0.0,78250685.17674524,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,398736732.8262358,0.0,28186614.07570998,0.0 - 03/17 16:00:00,37237748.407311078,0.0,86315616.09726832,0.0,46355481.56094079,0.0,72205548.2089698,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,428323810.62015309,0.0,28186614.07570998,0.0 - 03/17 17:00:00,53682794.695407759,0.0,87087610.78144804,0.0,42686886.27884364,0.0,70223125.39736581,0.0,14996.873987253257,14762.095127318726,14781.117593626006,17793.218520002236,478080315.974586,0.0,35233267.594637479,0.0 - 03/17 18:00:00,80051730.65950947,0.0,103006413.51728994,0.0,53550190.43863087,0.0,84262173.75028214,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,582670390.3241533,0.0,14093307.03785499,0.0 - 03/17 19:00:00,88970732.07971028,0.0,111108753.29091186,0.0,56934002.001214589,0.0,87914297.83503062,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,493895318.28339788,0.0,63419881.67034747,0.0 - 03/17 20:00:00,81034881.27946215,0.0,102108649.75942123,0.0,46613051.8027861,0.0,75731693.5443471,0.0,7436.2812468511669,7319.864876694814,7329.297269711513,8822.86383908275,416758182.4224414,0.0,63419881.67034747,69761869.8373822 - 03/17 21:00:00,88344337.0638561,0.0,108353717.29422194,0.0,51989693.27807233,0.0,82390788.8656237,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,405116047.5680579,0.0,49326574.63249246,69761869.8373822 - 03/17 22:00:00,94682453.21859235,0.0,113879015.93190015,0.0,56951124.28596316,0.0,88468942.92652902,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,427844635.9618056,0.0,35233267.594637479,69761869.8373822 - 03/17 23:00:00,98648208.1300876,0.0,117245349.91556816,0.0,59912835.6261971,0.0,92098981.74193502,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,441768475.01260879,0.0,35233267.594637479,62010550.96656194 - 03/17 24:00:00,104707100.87784319,0.0,122922774.22968079,0.0,65095073.56127134,0.0,98436274.86711839,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,464694844.6165377,0.0,35233267.594637479,46507913.22492146 - 03/18 01:00:00,116265621.11970595,0.0,134231401.38080425,0.0,75614196.51092361,0.0,111321621.90657057,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,474028783.0662546,0.0,21139960.556782485,23253956.61246073 - 03/18 02:00:00,76074908.83036056,0.0,92615767.33447716,0.0,39690932.937092769,0.0,66207810.43962014,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934884,292798991.03420457,0.0,14093307.03785499,0.0 - 03/18 03:00:00,108113162.19333434,0.0,124900750.25539835,0.0,68116077.67235346,0.0,102452516.50986962,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,421742646.86122396,0.0,14093307.03785499,0.0 - 03/18 04:00:00,109719221.24771646,0.0,126068129.60251722,0.0,70412668.59679716,0.0,104455274.23969583,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,428864865.17938056,0.0,14093307.03785499,0.0 - 03/18 05:00:00,110657718.71976149,0.0,126701540.43956444,0.0,71593339.55251426,0.0,105464524.8290116,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,432626695.03350576,0.0,14093307.03785499,0.0 - 03/18 06:00:00,112217102.9930241,0.0,128147451.3497254,0.0,72924542.2521973,0.0,106954847.93885978,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,438453516.0264605,0.0,14093307.03785499,0.0 - 03/18 07:00:00,90558110.86937556,0.0,107492748.43230182,0.0,55868809.75725855,0.0,85706175.37996245,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,412817728.7353989,0.0,14093307.03785499,15502637.741640486 - 03/18 08:00:00,61960038.936202939,0.0,90966814.02527619,0.0,42531671.16823217,0.0,68766340.14334755,0.0,19745.384963341516,19436.26727824248,19461.312892449052,23427.145531323506,559677262.6683424,0.0,56373228.15141996,38756594.35410121 - 03/18 09:00:00,46137087.35387971,0.0,91814014.60992514,0.0,46703836.364532548,0.0,73457695.40386114,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,518328176.31098249,0.0,56373228.15141996,38756594.35410121 - 03/18 10:00:00,34826167.420376028,0.0,91827261.65510546,0.0,54459529.04027101,0.0,80482583.34099442,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,448205246.01949146,0.0,28186614.07570998,0.0 - 03/18 11:00:00,24968105.487314345,0.0,90238776.6028043,0.0,55391692.21784092,0.0,81185732.04110082,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,401384238.896741,0.0,28186614.07570998,0.0 - 03/18 12:00:00,31104644.935289097,0.0,81282069.05930858,0.0,52257559.07469114,0.0,75873188.31793031,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,316101503.17110899,0.0,28186614.07570998,0.0 - 03/18 13:00:00,13977836.344136347,0.0,75368218.1894968,0.0,48563526.7634328,0.0,67453104.51977636,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,281179196.92792847,0.0,28186614.07570998,0.0 - 03/18 14:00:00,6409689.962975152,0.0,64156045.13287104,0.0,41522805.71626492,0.0,58719260.35453477,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,246744846.52184633,0.0,28186614.07570998,0.0 - 03/18 15:00:00,19262678.368256287,0.0,58418879.22725241,0.0,36164460.88695016,0.0,53692957.960730228,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,281758526.5285752,0.0,28186614.07570998,0.0 - 03/18 16:00:00,31397668.896105045,0.0,60300672.32993013,0.0,34938401.24688465,0.0,53612764.890438798,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,370840686.7139927,0.0,28186614.07570998,0.0 - 03/18 17:00:00,37180759.404001768,0.0,61511284.90790163,0.0,32697786.46533908,0.0,52000457.83134772,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,373981467.9592243,0.0,35233267.594637479,0.0 - 03/18 18:00:00,53961130.08053149,0.0,74096892.74239467,0.0,40154204.04122667,0.0,62023604.10818289,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,497063482.0632234,0.0,14093307.03785499,0.0 - 03/18 19:00:00,48910797.39197269,0.0,68127597.52209255,0.0,31760561.108270907,0.0,51714163.438815359,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,467340770.55203929,0.0,63419881.67034747,0.0 - 03/18 20:00:00,38144578.07868217,0.0,56579818.188540238,0.0,19830512.532596414,0.0,37242409.438592288,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,303865462.1432331,0.0,63419881.67034747,69761869.8373822 - 03/18 21:00:00,44077203.91463142,0.0,62049863.597258228,0.0,23981288.064292194,0.0,42697152.67830674,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,324873652.1593106,0.0,49326574.63249246,69761869.8373822 - 03/18 22:00:00,50257576.16924238,0.0,67592942.815083,0.0,28644965.734073715,0.0,48556620.78463162,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,270868616.61411687,0.0,35233267.594637479,69761869.8373822 - 03/18 23:00:00,55019897.197745259,0.0,71749399.44601205,0.0,32216121.55546152,0.0,52968604.808712188,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,287645563.99084708,0.0,35233267.594637479,62010550.96656194 - 03/18 24:00:00,61008939.51551475,0.0,77365937.3517294,0.0,37055181.123470839,0.0,59019611.623583879,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,272241690.5062438,0.0,35233267.594637479,46507913.22492146 - 03/19 01:00:00,70100626.86044148,0.0,85908195.74923751,0.0,45516252.30656239,0.0,69234538.24270736,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,308551634.05089369,0.0,21139960.556782485,23253956.61246073 - 03/19 02:00:00,31892262.76373901,0.0,46156326.61958401,0.0,11823351.838373879,0.0,26934380.15830955,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,135640554.8414511,0.0,14093307.03785499,0.0 - 03/19 03:00:00,63355943.569128569,0.0,77815264.74480325,0.0,39310758.386942569,0.0,61238478.60273765,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,260452174.95277218,0.0,14093307.03785499,0.0 - 03/19 04:00:00,70835752.52411819,0.0,85102557.75261122,0.0,45346698.4670105,0.0,69149957.07801834,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,289021790.2916714,0.0,14093307.03785499,0.0 - 03/19 05:00:00,72357014.96254839,0.0,86314517.36651114,0.0,46783924.684678267,0.0,70620501.07424487,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,294775949.65644267,0.0,14093307.03785499,0.0 - 03/19 06:00:00,69557087.50411295,0.0,83021222.79631086,0.0,44686919.56638264,0.0,67583390.41530009,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,283682853.74355128,0.0,14093307.03785499,0.0 - 03/19 07:00:00,57838286.725074369,0.0,71261318.78467612,0.0,36297076.71954247,0.0,56608166.17027058,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,297588890.1834534,0.0,14093307.03785499,15502637.741640486 - 03/19 08:00:00,51817218.861113239,0.0,67348087.81643397,0.0,36192046.15323959,0.0,52244149.57367858,0.0,20267.5788938832,19950.286165386355,19975.994145393826,24046.708696543436,510867546.84880998,0.0,56373228.15141996,38756594.35410121 - 03/19 09:00:00,66842325.605770189,0.0,81829532.16222985,0.0,46693577.82363871,0.0,69144481.0057942,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,530289575.34063449,0.0,56373228.15141996,38756594.35410121 - 03/19 10:00:00,60659224.8501208,0.0,76332736.54199572,0.0,49714509.85735788,0.0,70901243.3087259,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,447973631.36717709,0.0,28186614.07570998,0.0 - 03/19 11:00:00,51533507.337144989,0.0,68245703.0602435,0.0,44859511.176712278,0.0,64568859.24560592,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,381888374.16943457,0.0,28186614.07570998,0.0 - 03/19 12:00:00,45536284.88227433,0.0,62341597.793811518,0.0,40854043.310168508,0.0,59262838.493722427,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,284589630.6405635,0.0,28186614.07570998,0.0 - 03/19 13:00:00,45063475.46313873,0.0,60620782.60645265,0.0,38786296.75932522,0.0,56497799.14721012,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,277650053.3137026,0.0,28186614.07570998,0.0 - 03/19 14:00:00,39233615.45211306,0.0,55213800.48486241,0.0,35216227.15191988,0.0,51628034.42259662,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,258120253.34031568,0.0,28186614.07570998,0.0 - 03/19 15:00:00,31744808.719108866,0.0,49587779.76836146,0.0,30875725.932343544,0.0,45821183.39356692,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,273468551.19720056,0.0,28186614.07570998,0.0 - 03/19 16:00:00,33246183.117374049,0.0,48860596.51317654,0.0,29017671.214273707,0.0,43951920.29021953,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,347474793.44141009,0.0,28186614.07570998,0.0 - 03/19 17:00:00,34684892.289942178,0.0,48528362.066841017,0.0,26536042.182951973,0.0,41762628.25949037,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,343910347.1055918,0.0,35233267.594637479,0.0 - 03/19 18:00:00,52956111.116690147,0.0,65168651.42694174,0.0,36182613.582125607,0.0,55027740.07654849,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,477417147.7643595,0.0,14093307.03785499,0.0 - 03/19 19:00:00,49719376.056798998,0.0,62421181.52447788,0.0,29162517.399785136,0.0,47182144.55988915,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,456301404.3958849,0.0,63419881.67034747,0.0 - 03/19 20:00:00,39575056.57990906,0.0,52587974.00376563,0.0,17933985.323599999,0.0,33884000.6909149,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,296661809.94791749,0.0,63419881.67034747,69761869.8373822 - 03/19 21:00:00,45345246.731380868,0.0,57964765.7946756,0.0,22172096.745124137,0.0,39388382.06949124,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,317551284.6903997,0.0,49326574.63249246,69761869.8373822 - 03/19 22:00:00,49361353.90361091,0.0,61683358.938907537,0.0,25559685.335419008,0.0,43546574.5929602,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,256491369.44576157,0.0,35233267.594637479,69761869.8373822 - 03/19 23:00:00,55153568.772712189,0.0,67498531.37754049,0.0,30185820.252199089,0.0,49486588.28519431,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,278261554.0428465,0.0,35233267.594637479,62010550.96656194 - 03/19 24:00:00,62641633.45450863,0.0,75189432.67499301,0.0,36296637.19914916,0.0,57359965.43427311,0.0,2533.4473617354,2493.7857706732945,2496.9992681742285,3005.8385870679296,269395924.318467,0.0,35233267.594637479,46507913.22492146 - 03/20 01:00:00,72749646.84983409,0.0,85255636.84288636,0.0,45658791.514969479,0.0,68912672.6173839,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,310422518.31653186,0.0,21139960.556782485,23253956.61246073 - 03/20 02:00:00,35300675.207022767,0.0,45652212.33933542,0.0,12260064.917067485,0.0,29115581.390349188,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,141365125.53467254,0.0,14093307.03785499,0.0 - 03/20 03:00:00,54122777.56935944,0.0,65060369.904813308,0.0,30771165.966379625,0.0,49563533.54596866,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,218602946.15523703,0.0,14093307.03785499,0.0 - 03/20 04:00:00,55100305.12584287,0.0,65698448.421403829,0.0,31950185.239515976,0.0,50927507.1553576,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,222761545.11083625,0.0,14093307.03785499,0.0 - 03/20 05:00:00,59307507.39349123,0.0,69932070.14824428,0.0,35559968.21915442,0.0,55234866.248702388,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,239042929.99769504,0.0,14093307.03785499,0.0 - 03/20 06:00:00,65376373.081323977,0.0,76581843.96073225,0.0,40309373.94220559,0.0,61494825.77738635,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,262685302.0073772,0.0,14093307.03785499,0.0 - 03/20 07:00:00,49974542.0631131,0.0,63200382.707595009,0.0,28227126.359260415,0.0,46956014.44093444,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,263809117.98140664,0.0,14093307.03785499,15502637.741640486 - 03/20 08:00:00,39385511.89048904,0.0,64546754.44857247,0.0,30141402.135900573,0.0,49710786.189912747,0.0,20139.376343833253,19824.090650173595,19849.63601437921,23894.601264701363,485132190.04798957,0.0,56373228.15141996,38756594.35410121 - 03/20 09:00:00,33442903.49352234,0.0,75261086.81071435,0.0,41709680.17852209,0.0,62498846.163292977,0.0,17589.0072895276,17313.648099183978,17335.958501927096,20868.685735339546,476098795.2995733,0.0,56373228.15141996,38756594.35410121 - 03/20 10:00:00,16880355.84674076,0.0,74065871.48551424,0.0,42801699.43434183,0.0,64453069.303553339,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,386543330.6845969,0.0,28186614.07570998,0.0 - 03/20 11:00:00,2338265.8964657376,0.0,73055713.38957286,0.0,44923366.51787867,0.0,66043206.66950561,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,337262657.29443016,0.0,28186614.07570998,0.0 - 03/20 12:00:00,0.0,0.0,70948165.06293823,0.0,46718317.28133574,0.0,66597892.526483539,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,259848416.65464736,0.0,28186614.07570998,0.0 - 03/20 13:00:00,0.0,3925460.9273805685,64185487.77908427,0.0,43116126.2370294,0.0,57434386.604905057,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,240673045.9762192,3925460.9273805685,28186614.07570998,0.0 - 03/20 14:00:00,0.0,16875216.905320895,49034374.97222231,0.0,33870325.7784875,0.0,46014684.65664922,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,204953457.35977007,16875216.905320895,28186614.07570998,0.0 - 03/20 15:00:00,0.0,14270933.874596375,41138377.38545722,0.0,25823188.17923921,0.0,38310810.06973383,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,219323483.56304679,14270933.874596375,28186614.07570998,0.0 - 03/20 16:00:00,0.0,2689510.5838943126,40208766.71331519,0.0,20923503.528680318,0.0,35417373.2140629,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,286392256.8440596,2689510.5838943126,28186614.07570998,0.0 - 03/20 17:00:00,2568379.8735600898,0.0,43157275.22575605,0.0,18527946.675142379,0.0,35083654.29221707,0.0,12703.586340684868,12504.709326669756,12520.822920966315,15072.320267520045,289422435.9477031,0.0,35233267.594637479,0.0 - 03/20 18:00:00,36210661.68327568,0.0,60706623.547373447,0.0,29669957.536245407,0.0,49197171.88512136,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,441564073.3952174,0.0,14093307.03785499,0.0 - 03/20 19:00:00,41374577.127376157,0.0,67163560.85535863,0.0,29780845.609332473,0.0,50113577.178744319,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,453790349.659613,0.0,63419881.67034747,0.0 - 03/20 20:00:00,32102060.167722096,0.0,56049766.54051419,0.0,18462461.58224318,0.0,36124722.08141582,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,294372032.5940676,0.0,63419881.67034747,69761869.8373822 - 03/20 21:00:00,37525840.498515088,0.0,60005937.83426626,0.0,22170394.295785197,0.0,40696163.3427171,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,312031358.19345596,0.0,49326574.63249246,69761869.8373822 - 03/20 22:00:00,45125901.82956147,0.0,66429272.153836417,0.0,27848731.11506322,0.0,47716293.7744451,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,262571251.28340984,0.0,35233267.594637479,69761869.8373822 - 03/20 23:00:00,53750330.07653767,0.0,74485067.24477378,0.0,34196302.60880407,0.0,55882638.52157114,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,293241257.04832717,0.0,35233267.594637479,62010550.96656194 - 03/20 24:00:00,62746802.82131436,0.0,83003327.7973238,0.0,41248106.323298897,0.0,64811567.50802119,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,289131745.36250719,0.0,35233267.594637479,46507913.22492146 - 03/21 01:00:00,73993337.99940215,0.0,93516098.24643243,0.0,50892952.81459056,0.0,76647032.66861674,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,332371362.64159086,0.0,21139960.556782485,23253956.61246073 - 03/21 02:00:00,37911436.284880969,0.0,55920462.267855469,0.0,19686418.619842285,0.0,36245427.277531329,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,168273122.216681,0.0,14093307.03785499,0.0 - 03/21 03:00:00,70631881.95593357,0.0,88615816.42034881,0.0,47006481.299883339,0.0,72006685.3141543,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,296644270.260476,0.0,14093307.03785499,0.0 - 03/21 04:00:00,75911601.9709749,0.0,93098259.90005046,0.0,51265779.42951796,0.0,77068714.06704758,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,315727760.6377469,0.0,14093307.03785499,0.0 - 03/21 05:00:00,79524551.1117722,0.0,96276795.74310617,0.0,54087619.38029126,0.0,80352319.34072967,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,328586231.1455527,0.0,14093307.03785499,0.0 - 03/21 06:00:00,83234230.07655564,0.0,99665053.58645676,0.0,56938704.35732647,0.0,83793813.32500616,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,341929772.4194702,0.0,14093307.03785499,0.0 - 03/21 07:00:00,63620182.15662612,0.0,81187828.41080606,0.0,41748403.68369801,0.0,64711219.44635546,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,324268090.7182595,0.0,14093307.03785499,15502637.741640486 - 03/21 08:00:00,43907404.98699319,0.0,73801665.77257015,0.0,37923307.96086099,0.0,58958425.16475692,0.0,19745.384963341516,19436.26727824248,19461.312892449052,23427.145531323506,510043202.28046479,0.0,56373228.15141996,38756594.35410121 - 03/21 09:00:00,26535431.433714004,0.0,72562555.65710044,0.0,41080106.66261573,0.0,60310325.796347517,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,462288301.5082185,0.0,56373228.15141996,38756594.35410121 - 03/21 10:00:00,2745550.6414098546,0.0,61365346.15317364,0.0,35639580.16611986,0.0,53632127.87115673,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,342342709.2915848,0.0,28186614.07570998,0.0 - 03/21 11:00:00,0.0,2045077.2023487499,55418762.76952811,0.0,33416423.16345536,0.0,50402133.86533348,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,291530053.2454984,2045077.2023487499,28186614.07570998,0.0 - 03/21 12:00:00,0.0,18203805.33442079,53149891.16250777,0.0,33496617.917012987,0.0,49446005.28454012,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,212432911.0389248,18203805.33442079,28186614.07570998,0.0 - 03/21 13:00:00,0.0,24941455.25041862,49274775.248551119,0.0,32026216.852558379,0.0,43343778.453311059,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,200985167.22928448,24941455.25041862,28186614.07570998,0.0 - 03/21 14:00:00,0.0,28774236.102034049,38719925.57965391,0.0,25792155.323309844,0.0,35954058.37221767,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,176889614.78273729,28774236.102034049,28186614.07570998,0.0 - 03/21 15:00:00,0.0,25940719.39817363,30425368.19046901,0.0,17281813.88307114,0.0,27904018.413940643,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,190389565.42530949,25940719.39817363,28186614.07570998,0.0 - 03/21 16:00:00,0.0,13956121.884858802,27693571.40928194,0.0,11409209.118907195,0.0,23419020.253960927,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,253819075.67853124,13956121.884858802,28186614.07570998,0.0 - 03/21 17:00:00,0.0,832538.7966532493,30641723.135899165,0.0,9362652.91899547,0.0,23523715.807570064,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,255015257.2639315,832538.7966532493,35233267.594637479,0.0 - 03/21 18:00:00,21468775.50747942,0.0,49950253.013440538,0.0,22622887.643325055,0.0,39516723.993171099,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.31704590183,401040804.4338615,0.0,14093307.03785499,0.0 - 03/21 19:00:00,32903726.36175468,0.0,58320944.79443079,0.0,23668882.74451253,0.0,41849219.62269656,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,423255057.0559621,0.0,63419881.67034747,0.0 - 03/21 20:00:00,28174582.898856988,0.0,51920189.15105623,0.0,15774757.228580773,0.0,32321042.337795304,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,279823593.8384616,0.0,63419881.67034747,69761869.8373822 - 03/21 21:00:00,37646717.56588003,0.0,60256705.87362814,0.0,21934880.01592103,0.0,40693542.41967347,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,311914927.84093478,0.0,49326574.63249246,69761869.8373822 - 03/21 22:00:00,46433076.58956626,0.0,67754820.1310224,0.0,28112928.238777214,0.0,48524496.30507136,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,266276373.67494086,0.0,35233267.594637479,69761869.8373822 - 03/21 23:00:00,53685249.87488399,0.0,74498592.6463064,0.0,32732808.74203088,0.0,54811050.421152699,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,291178754.0948776,0.0,35233267.594637479,62010550.96656194 - 03/21 24:00:00,59962234.7948471,0.0,79947712.66944714,0.0,37217262.76551961,0.0,60472603.98556007,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,275391835.1073189,0.0,35233267.594637479,46507913.22492146 - 03/22 01:00:00,70224730.17611489,0.0,89034995.60938607,0.0,46100302.59954286,0.0,71096501.26616341,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,314248550.5431522,0.0,21139960.556782485,23253956.61246073 - 03/22 02:00:00,32952319.221333248,0.0,50494736.29398004,0.0,13226948.64536203,0.0,29184769.66698024,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,144657793.7314785,0.0,14093307.03785499,0.0 - 03/22 03:00:00,65720291.31732085,0.0,82102015.03902152,0.0,41527004.30285181,0.0,64776924.33467385,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,272826226.5623281,0.0,14093307.03785499,0.0 - 03/22 04:00:00,71608342.06671264,0.0,87461766.90133029,0.0,46078001.46778327,0.0,70644180.43432914,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,294453261.32642987,0.0,14093307.03785499,0.0 - 03/22 05:00:00,77821463.5291626,0.0,93782704.54764802,0.0,50918627.92189901,0.0,76806182.8867882,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,317873963.2249019,0.0,14093307.03785499,0.0 - 03/22 06:00:00,82474196.21982669,0.0,98524809.36237422,0.0,54323436.07752409,0.0,81231141.06621424,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,335098567.0653433,0.0,14093307.03785499,0.0 - 03/22 07:00:00,59845102.58115104,0.0,74510898.01145125,0.0,34522332.252145778,0.0,56474253.84456569,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,299699884.56896629,0.0,14093307.03785499,15502637.741640486 - 03/22 08:00:00,47804937.66606009,0.0,70863440.11902277,0.0,34785766.417237687,0.0,55635419.326576869,0.0,19995.831983004344,19682.79350309164,19708.15679150134,23724.29136000298,508289428.6242585,0.0,56373228.15141996,38756594.35410121 - 03/22 09:00:00,33433414.881734238,0.0,70762493.70103917,0.0,38964113.795604947,0.0,58658092.95649484,0.0,17679.754964758045,17402.975102629724,17425.400612334204,20976.354387948744,466362261.57848778,0.0,56373228.15141996,38756594.35410121 - 03/22 10:00:00,11662995.881586047,0.0,61771666.7307474,0.0,34833753.52803104,0.0,53534909.233332488,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,351888505.25472459,0.0,28186614.07570998,0.0 - 03/22 11:00:00,398435.6096480623,0.0,57811249.614650327,0.0,34122697.46793715,0.0,52020488.918176379,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,297199822.62552359,0.0,28186614.07570998,0.0 - 03/22 12:00:00,0.0,0.0,52235742.5696934,0.0,32747488.516492309,0.0,47852382.3132955,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,209599411.1793606,0.0,28186614.07570998,0.0 - 03/22 13:00:00,0.0,7836916.958367934,42883225.10165024,0.0,28392896.26047007,0.0,39011256.34911784,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,187189299.1696103,7836916.958367934,28186614.07570998,0.0 - 03/22 14:00:00,0.0,17003893.44586838,30564946.727208646,0.0,20229172.95760338,0.0,29190986.24078923,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,157008982.51758517,17003893.44586838,28186614.07570998,0.0 - 03/22 15:00:00,0.0,15824341.102156833,22181367.691987888,0.0,11623791.293590015,0.0,20698591.238355016,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,170114640.3943865,15824341.102156833,28186614.07570998,0.0 - 03/22 16:00:00,0.0,5254534.581845727,20152561.711809607,0.0,6245452.672193598,0.0,16705314.504897576,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,235788145.83965678,5254534.581845727,28186614.07570998,0.0 - 03/22 17:00:00,0.0,0.0,23567547.819753685,0.0,5057291.6574580729,0.0,17523523.971683854,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,238833180.39965163,0.0,35233267.594637479,0.0 - 03/22 18:00:00,18744550.205344537,0.0,41259543.16193483,0.0,16490398.373307404,0.0,30350388.412005478,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,376202671.381505,0.0,14093307.03785499,0.0 - 03/22 19:00:00,27364723.881437407,0.0,46611670.27999495,0.0,16489545.21992619,0.0,31414428.826179245,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,391037093.3118403,0.0,63419881.67034747,0.0 - 03/22 20:00:00,21129833.72286588,0.0,39116710.70432552,0.0,7994137.915334434,0.0,20987596.985596159,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,242418011.64929543,0.0,63419881.67034747,69761869.8373822 - 03/22 21:00:00,28081759.30057987,0.0,45143431.49179447,0.0,12611283.83529273,0.0,27229089.098276508,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,266428962.4010954,0.0,49326574.63249246,69761869.8373822 - 03/22 22:00:00,34116785.490382257,0.0,50277998.86208558,0.0,16942727.77609982,0.0,32730272.853866415,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,210662651.1430208,0.0,35233267.594637479,69761869.8373822 - 03/22 23:00:00,39749874.65929175,0.0,55371236.11744465,0.0,20882265.9972068,0.0,37823469.48266089,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,230345756.21515657,0.0,35233267.594637479,62010550.96656194 - 03/22 24:00:00,46771811.26723131,0.0,61943456.218488659,0.0,26369668.982797665,0.0,44746740.67064753,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,218043414.89294309,0.0,35233267.594637479,46507913.22492146 - 03/23 01:00:00,57008441.847035918,0.0,71499774.36337403,0.0,35505232.777148369,0.0,55803050.32250789,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,258028237.06384409,0.0,21139960.556782485,23253956.61246073 - 03/23 02:00:00,21585490.9431062,0.0,33313436.56302082,0.0,4167118.780971929,0.0,14826853.665376395,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,92929491.63337302,0.0,14093307.03785499,0.0 - 03/23 03:00:00,49920129.60636597,0.0,62539156.521542917,0.0,29258684.289867585,0.0,47748162.19329472,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,208474650.59917394,0.0,14093307.03785499,0.0 - 03/23 04:00:00,54274524.87533541,0.0,66527513.70254253,0.0,32711527.29288883,0.0,51884946.158891368,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,224382773.36845828,0.0,14093307.03785499,0.0 - 03/23 05:00:00,57678932.92700172,0.0,69716006.7615037,0.0,35650942.63924661,0.0,55290282.8647622,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,237290292.9702857,0.0,14093307.03785499,0.0 - 03/23 06:00:00,59714873.930759269,0.0,71273232.27906779,0.0,37263411.96048523,0.0,57070129.99100532,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,244217658.6072901,0.0,14093307.03785499,0.0 - 03/23 07:00:00,43764616.99104179,0.0,54747574.03754322,0.0,24428371.885019538,0.0,40734067.7421193,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,182537393.75834976,0.0,14093307.03785499,15502637.741640486 - 03/23 08:00:00,36532414.7598022,0.0,53790259.2793059,0.0,26824673.847252575,0.0,43503606.26468115,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,236797320.87463255,0.0,56373228.15141996,38756594.35410121 - 03/23 09:00:00,21709090.16424144,0.0,48687221.42647998,0.0,27657290.45440625,0.0,42022841.7930277,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,331563609.23962226,0.0,56373228.15141996,38756594.35410121 - 03/23 10:00:00,0.0,0.0,34682120.304075229,0.0,19597497.447474295,0.0,31166855.024283548,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,277701276.4217634,0.0,28186614.07570998,0.0 - 03/23 11:00:00,0.0,7353746.224386658,24932744.184522269,0.0,15867368.387501939,0.0,25501530.05250394,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,259125446.63030447,7353746.224386658,28186614.07570998,0.0 - 03/23 12:00:00,0.0,17154093.101404344,21922654.94685755,0.0,15763066.405338619,0.0,23643940.981654109,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,176940552.50430388,17154093.101404344,28186614.07570998,0.0 - 03/23 13:00:00,0.0,25859819.58195058,10892054.963533055,0.0,8842018.000145019,0.0,13019189.087995524,0.0,7757.761542982173,7636.3123388178,7646.152506688564,9204.287938784857,148833513.6298578,25859819.58195058,28186614.07570998,0.0 - 03/23 14:00:00,0.0,35929973.931353259,227462.45606998565,0.0,863807.3391711338,0.0,3717648.8790871698,0.0,7753.814894665889,7632.427476017154,7642.262637845681,9199.605391210414,120830116.1133892,35929973.931353259,28186614.07570998,0.0 - 03/23 15:00:00,0.0,21421708.598701,805463.946969289,0.0,0.0,0.0,3110399.26309702,0.0,7757.761542982173,7636.3123388178,7646.152506688564,9204.287938784857,119996114.78825054,21421708.598701,28186614.07570998,0.0 - 03/23 16:00:00,0.0,8600984.385854565,5200085.774904504,0.0,0.0,0.0,4942912.976279855,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.28050726523,280941537.41247579,8600984.385854565,28186614.07570998,0.0 - 03/23 17:00:00,0.0,0.0,14039119.096026164,0.0,2323385.272411757,0.0,10883434.826662034,0.0,23244.586664804934,22880.688324294053,22910.172426583213,27578.81477736921,375057283.090085,0.0,35233267.594637479,0.0 - 03/23 18:00:00,8353496.581581128,0.0,28314004.43108709,0.0,11823656.228527887,0.0,21372359.348244899,0.0,18062.123443729644,17779.357531732254,17802.268048613187,21430.019992346388,340129085.04855838,0.0,14093307.03785499,0.0 - 03/23 19:00:00,12816798.922328927,0.0,27795758.524250147,0.0,7264553.742891003,0.0,16518350.889778726,0.0,18051.21922645151,17768.62402200979,17791.520707667903,21417.082554785447,334497869.5185416,0.0,63419881.67034747,0.0 - 03/23 20:00:00,5120673.421979861,0.0,18631549.041702589,0.0,0.0,0.0,4690728.726939712,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,259664731.53152938,0.0,63419881.67034747,69761869.8373822 - 03/23 21:00:00,9597150.131961853,0.0,22878425.4922846,0.0,0.0,0.0,8789055.660761852,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,234088435.2907846,0.0,49326574.63249246,69761869.8373822 - 03/23 22:00:00,14145802.164175479,0.0,26845445.50390115,0.0,3299944.7730356336,0.0,12929343.230850116,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,211479578.8765834,0.0,35233267.594637479,69761869.8373822 - 03/23 23:00:00,16986117.00342242,0.0,29234120.131320429,0.0,5603387.25995912,0.0,15695413.568282225,0.0,7731.966829586066,7610.921446471907,7620.7288955862909,9173.683495985118,183213320.36644996,0.0,35233267.594637479,62010550.96656194 - 03/23 24:00:00,22788562.857816608,0.0,34676625.155089687,0.0,10258504.546981944,0.0,21800935.51845959,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,166548504.67033173,0.0,35233267.594637479,46507913.22492146 - 03/24 01:00:00,33049775.431481117,0.0,44561730.16364672,0.0,19215959.89104423,0.0,32952109.770849065,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,168291513.5530131,0.0,21139960.556782485,23253956.61246073 - 03/24 02:00:00,2304229.4648793849,0.0,9725919.997682188,0.0,0.0,0.0,0.0,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,31255629.827154615,0.0,14093307.03785499,0.0 - 03/24 03:00:00,23959397.847519667,0.0,35189243.64349967,0.0,10270415.44698252,0.0,21192417.567748548,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,109818618.46295634,0.0,14093307.03785499,0.0 - 03/24 04:00:00,28447225.77705217,0.0,37849141.101962458,0.0,14891196.112276152,0.0,27211268.950674394,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,127605975.89917109,0.0,14093307.03785499,0.0 - 03/24 05:00:00,31058539.82982342,0.0,40107439.617330659,0.0,17342987.109517736,0.0,29747226.537531105,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,137447142.53917278,0.0,14093307.03785499,0.0 - 03/24 06:00:00,33244469.518711348,0.0,42001975.403993319,0.0,19116721.38178525,0.0,31743432.431189367,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,145277023.57007329,0.0,14093307.03785499,0.0 - 03/24 07:00:00,24667613.28653651,0.0,33379919.727913068,0.0,13449666.492507693,0.0,24041158.65920538,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,114708783.00055665,0.0,14093307.03785499,15502637.741640486 - 03/24 08:00:00,30605603.17154131,0.0,40965597.52072031,0.0,24170950.50162732,0.0,35488920.709928657,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210436,1521.697464544115,150422021.34878747,0.0,56373228.15141996,38756594.35410121 - 03/24 09:00:00,23012596.211921514,0.0,37952756.55130501,0.0,25350462.779952434,0.0,35630022.275232348,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,198905206.7409578,0.0,56373228.15141996,38756594.35410121 - 03/24 10:00:00,1676847.7410816705,0.0,24955270.79469355,0.0,17064937.45807764,0.0,25579070.2996823,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,184811941.18151105,0.0,28186614.07570998,0.0 - 03/24 11:00:00,0.0,0.0,20845099.86486093,0.0,15249739.412227959,0.0,23225902.473172767,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,174931631.92071525,0.0,28186614.07570998,0.0 - 03/24 12:00:00,0.0,0.0,16619605.831737027,0.0,13344101.241937587,0.0,20211355.238601034,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,127304583.91458616,0.0,28186614.07570998,0.0 - 03/24 13:00:00,0.0,284796.21583264667,13572482.425035507,0.0,11198283.756458627,0.0,17299935.52867303,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,119242818.12139365,284796.21583264667,28186614.07570998,0.0 - 03/24 14:00:00,149058.11938763364,0.0,19466854.836013237,0.0,12229225.62026449,0.0,20001083.1279814,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,167674322.4718399,0.0,28186614.07570998,0.0 - 03/24 15:00:00,0.0,0.0,11110981.414772446,0.0,6967381.817653492,0.0,13411134.211578496,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,186010359.5324452,0.0,28186614.07570998,0.0 - 03/24 16:00:00,0.0,0.0,14556302.179354119,0.0,7796349.88674177,0.0,15070845.318774384,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,230574574.99542118,0.0,28186614.07570998,0.0 - 03/24 17:00:00,9364085.304562537,0.0,20652805.89937574,0.0,9868593.52977227,0.0,18150057.42228307,0.0,15481.82009462541,15239.44931291336,15259.086898811309,18368.58856486834,289691743.69237998,0.0,35233267.594637479,0.0 - 03/24 18:00:00,20825284.840093689,0.0,31611206.847089456,0.0,15460440.082751044,0.0,25520595.409812444,0.0,18051.21922645151,17768.62402200979,17791.520707667903,21417.082554785447,363519934.61903938,0.0,14093307.03785499,0.0 - 03/24 19:00:00,16944442.090933756,0.0,28149122.779429966,0.0,8688052.437769056,0.0,17995380.880865996,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,226036041.39361979,0.0,63419881.67034747,0.0 - 03/24 20:00:00,6797906.299690427,0.0,17571302.5676407,0.0,0.0,0.0,4761968.380611951,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,144742067.41839666,0.0,63419881.67034747,69761869.8373822 - 03/24 21:00:00,12513634.915119462,0.0,23356546.565241394,0.0,1016154.6535667699,0.0,10141877.693146822,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,124052090.41905838,0.0,49326574.63249246,69761869.8373822 - 03/24 22:00:00,17811492.259573707,0.0,28495443.207663668,0.0,5330148.235514734,0.0,15289252.565066107,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,143950212.85980214,0.0,35233267.594637479,69761869.8373822 - 03/24 23:00:00,21303041.29211354,0.0,31769531.77587499,0.0,7755312.2147280969,0.0,18567050.67457036,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,156418812.54927094,0.0,35233267.594637479,62010550.96656194 - 03/24 24:00:00,27152081.713695807,0.0,37466321.4801714,0.0,12291780.580598318,0.0,24537264.56909546,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,178406817.2661075,0.0,35233267.594637479,46507913.22492146 - 03/25 01:00:00,36011735.05076375,0.0,45949340.84856411,0.0,20396107.100514708,0.0,34409158.77767983,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,175278280.07351438,0.0,21139960.556782485,23253956.61246073 - 03/25 02:00:00,2892315.2178475635,0.0,9523251.600775417,0.0,0.0,0.0,0.0,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,31655409.049259608,0.0,14093307.03785499,0.0 - 03/25 03:00:00,26092290.699647078,0.0,35852988.799401309,0.0,10648899.015677523,0.0,21843912.045368934,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,113645234.51730076,0.0,14093307.03785499,0.0 - 03/25 04:00:00,31144246.134091729,0.0,39513634.79849269,0.0,15882874.610937426,0.0,28556292.22180704,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,134304191.72253485,0.0,14093307.03785499,0.0 - 03/25 05:00:00,32887188.035552298,0.0,40968883.8490413,0.0,17811005.77258937,0.0,30408233.927931925,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,141282455.54232083,0.0,14093307.03785499,0.0 - 03/25 06:00:00,33601961.87730445,0.0,41346041.40362439,0.0,18538692.32487353,0.0,30979425.16647058,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,143673264.72947888,0.0,14093307.03785499,0.0 - 03/25 07:00:00,27236543.47107286,0.0,35458857.71477833,0.0,12425089.181735758,0.0,23907784.87895149,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,175930196.7049106,0.0,14093307.03785499,15502637.741640486 - 03/25 08:00:00,38247273.19378945,0.0,48151910.905816119,0.0,25697410.566931167,0.0,39844044.16002426,0.0,20590.336757298905,20267.991194239865,20294.10856960449,24429.648581061094,460036145.1944967,0.0,56373228.15141996,38756594.35410121 - 03/25 09:00:00,35517408.60453957,0.0,47964763.524235177,0.0,29544605.88457116,0.0,43677366.6038549,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,426462888.3482592,0.0,56373228.15141996,38756594.35410121 - 03/25 10:00:00,20546827.043260967,0.0,38305052.42492734,0.0,25119216.17156864,0.0,36869684.98834133,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561035,313771071.6561645,0.0,28186614.07570998,0.0 - 03/25 11:00:00,1361163.3223774406,0.0,28749223.63137968,0.0,19702537.871078887,0.0,29341906.480624737,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,233675693.3939015,0.0,28186614.07570998,0.0 - 03/25 12:00:00,0.0,0.0,30696078.36879459,0.0,21977907.77763571,0.0,31476930.18665529,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,161224843.113388,0.0,28186614.07570998,0.0 - 03/25 13:00:00,0.0,0.0,28856911.17199239,0.0,21424944.188597628,0.0,28930041.12113345,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,156384012.89295,0.0,28186614.07570998,0.0 - 03/25 14:00:00,0.0,8851869.907331825,23766141.91428403,0.0,16868359.213613649,0.0,23555396.148201247,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,141362013.68732543,8851869.907331825,28186614.07570998,0.0 - 03/25 15:00:00,0.0,7114248.645949875,18718569.576017936,0.0,10899657.577653433,0.0,18241362.10431914,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,163617763.87483026,7114248.645949875,28186614.07570998,0.0 - 03/25 16:00:00,0.0,1092110.6326834704,16820620.190528796,0.0,5443601.047837007,0.0,14136652.884194196,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,229447708.73621524,1092110.6326834704,28186614.07570998,0.0 - 03/25 17:00:00,0.0,0.0,20523807.194415038,0.0,4379187.126817929,0.0,15275547.60513556,0.0,12886.611382643441,12684.869077453179,12701.21482597715,15289.47249330853,233002345.93214483,0.0,35233267.594637479,0.0 - 03/25 18:00:00,23022631.785024126,0.0,35941936.52104194,0.0,13668963.076802984,0.0,25854031.52702409,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,368246306.6409515,0.0,14093307.03785499,0.0 - 03/25 19:00:00,31930084.30033639,0.0,45448500.71824458,0.0,16744890.9571096,0.0,30890648.712767107,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,394170849.79276016,0.0,63419881.67034747,0.0 - 03/25 20:00:00,24415503.54052835,0.0,37692300.742514748,0.0,7422236.823021974,0.0,19718954.16650833,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,242906146.93022073,0.0,63419881.67034747,69761869.8373822 - 03/25 21:00:00,31309078.860738115,0.0,43921140.12334863,0.0,12414397.221771859,0.0,26396223.145636243,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,267568434.91125364,0.0,49326574.63249246,69761869.8373822 - 03/25 22:00:00,38054971.659856829,0.0,50382347.248391959,0.0,17601373.509616816,0.0,33046219.29085651,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,215766611.04629804,0.0,35233267.594637479,69761869.8373822 - 03/25 23:00:00,43214904.97938955,0.0,55362953.96661172,0.0,21534345.71859351,0.0,38072575.17625677,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,234779646.0014383,0.0,35233267.594637479,62010550.96656194 - 03/25 24:00:00,49520367.51143898,0.0,61524479.77969979,0.0,26785615.186180537,0.0,44644191.78007144,0.0,2556.918377229535,2516.889343041355,2520.132611853418,3033.686051007979,220734109.23666699,0.0,35233267.594637479,46507913.22492146 - 03/26 01:00:00,59827419.60070555,0.0,71490649.36303546,0.0,36256369.25662904,0.0,56120848.76019449,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,261907024.73434244,0.0,21139960.556782485,23253956.61246073 - 03/26 02:00:00,22602729.90509785,0.0,32230617.845333034,0.0,3910057.215079474,0.0,14110453.390813765,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,91938957.52504012,0.0,14093307.03785499,0.0 - 03/26 03:00:00,49271094.420274469,0.0,59700846.195188257,0.0,27579671.873658748,0.0,45154831.49701495,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,200791543.1548524,0.0,14093307.03785499,0.0 - 03/26 04:00:00,53285148.931493248,0.0,63469480.603306557,0.0,31052721.04973723,0.0,49230429.607353087,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,216074371.87278778,0.0,14093307.03785499,0.0 - 03/26 05:00:00,55732856.12783283,0.0,65768029.871434058,0.0,33451154.803721437,0.0,51867189.61580553,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,225855822.09969155,0.0,14093307.03785499,0.0 - 03/26 06:00:00,56396248.168262097,0.0,65988533.69894317,0.0,33867295.25829201,0.0,52183706.366463858,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,227420044.83076126,0.0,14093307.03785499,0.0 - 03/26 07:00:00,34000449.36676882,0.0,42448176.48722598,0.0,15109294.28162757,0.0,28280297.33544168,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,195872289.4234751,0.0,14093307.03785499,15502637.741640486 - 03/26 08:00:00,26779595.82864583,0.0,43403141.51908884,0.0,19319040.555203994,0.0,31381332.27176702,0.0,20379.844481671935,20060.79421445513,20086.644595363152,24179.90753101383,425828997.13572028,0.0,56373228.15141996,38756594.35410121 - 03/26 09:00:00,17127716.647046236,0.0,45549938.10592101,0.0,24555766.886864935,0.0,37775620.66826274,0.0,17898.42864060674,17618.22540128948,17640.928282973924,21235.802357055854,392825227.1630285,0.0,56373228.15141996,38756594.35410121 - 03/26 10:00:00,0.0,0.0,39202916.32803756,0.0,21044248.6602192,0.0,33048936.801699029,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,285000350.1338956,0.0,28186614.07570998,0.0 - 03/26 11:00:00,0.0,5136742.123089025,40856619.183549348,0.0,23598194.52620513,0.0,36025489.52171293,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,254007898.7912262,5136742.123089025,28186614.07570998,0.0 - 03/26 12:00:00,0.0,12064302.071152507,43316614.164538729,0.0,26533731.349298378,0.0,38308154.651582468,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,184922297.94529898,12064302.071152507,28186614.07570998,0.0 - 03/26 13:00:00,0.0,19240765.404084568,36093542.285690497,0.0,23835186.831725837,0.0,31968749.302439959,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,168799399.87822844,19240765.404084568,28186614.07570998,0.0 - 03/26 14:00:00,0.0,26299867.791189236,24428116.084635855,0.0,15813170.68799128,0.0,22983981.771825646,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,140184637.4669993,26299867.791189236,28186614.07570998,0.0 - 03/26 15:00:00,0.0,23986421.16819636,16166731.91250557,0.0,6830659.597653236,0.0,14292038.654084882,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,152825245.05221958,23986421.16819636,28186614.07570998,0.0 - 03/26 16:00:00,0.0,13042496.903366238,13228162.725288462,0.0,729356.5957904474,0.0,9125191.877232833,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,215767528.14906774,13042496.903366238,28186614.07570998,0.0 - 03/26 17:00:00,0.0,1319899.2710440646,15656940.420068302,0.0,0.0,0.0,9625024.434270909,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,217841656.33429904,1319899.2710440646,35233267.594637479,0.0 - 03/26 18:00:00,8856845.425505301,0.0,33323613.851695118,0.0,10605507.793001488,0.0,23872697.63647905,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,346016455.9355937,0.0,14093307.03785499,0.0 - 03/26 19:00:00,21086724.96287775,0.0,39240242.66206193,0.0,12099454.044681255,0.0,24588103.233997287,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,366372316.132531,0.0,63419881.67034747,0.0 - 03/26 20:00:00,13135571.825653969,0.0,29739921.22876597,0.0,2001408.7463863313,0.0,12298509.970498093,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,210979254.68804867,0.0,63419881.67034747,69761869.8373822 - 03/26 21:00:00,19942695.84463376,0.0,35528859.84324964,0.0,6302245.528636794,0.0,18238344.465030835,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,233815988.59829534,0.0,49326574.63249246,69761869.8373822 - 03/26 22:00:00,25610674.996800454,0.0,40106793.06599303,0.0,10160900.333248062,0.0,23407279.042656058,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,176187568.89706976,0.0,35233267.594637479,69761869.8373822 - 03/26 23:00:00,30505970.520389789,0.0,44273766.286600109,0.0,13633873.193323439,0.0,27860492.105991685,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,193102677.9351287,0.0,35233267.594637479,62010550.96656194 - 03/26 24:00:00,37268606.53895168,0.0,50535320.600802708,0.0,18977652.752500915,0.0,34541162.673744957,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,179704641.45593996,0.0,35233267.594637479,46507913.22492146 - 03/27 01:00:00,47456729.763747479,0.0,60141658.7736379,0.0,28075594.81466674,0.0,45585584.82426773,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,219641467.06625957,0.0,21139960.556782485,23253956.61246073 - 03/27 02:00:00,10758302.026146129,0.0,21208840.547138886,0.0,0.0,0.0,4772048.111171346,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,55930140.12942621,0.0,14093307.03785499,0.0 - 03/27 03:00:00,35241280.41099224,0.0,46152020.83235209,0.0,15084534.585583646,0.0,31776748.76284731,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,147445534.03674514,0.0,14093307.03785499,0.0 - 03/27 04:00:00,37356212.72999217,0.0,47258456.20271209,0.0,20347241.06286676,0.0,34825933.8508746,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,158978793.29141546,0.0,14093307.03785499,0.0 - 03/27 05:00:00,39675613.931035038,0.0,49228759.607672449,0.0,22322346.862390754,0.0,36901232.87926774,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,167318902.72533585,0.0,14093307.03785499,0.0 - 03/27 06:00:00,40737628.14363538,0.0,49845938.251702178,0.0,22968862.445674406,0.0,37502976.24221662,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,170225829.91762258,0.0,14093307.03785499,0.0 - 03/27 07:00:00,22671928.29048677,0.0,30816997.971277879,0.0,8602624.963982173,0.0,18881549.04297004,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,157654799.60629279,0.0,14093307.03785499,15502637.741640486 - 03/27 08:00:00,14134255.06304735,0.0,26105666.274742426,0.0,13615097.634336988,0.0,17640139.034266365,0.0,20573.092304073303,20251.01670614646,20277.112208150633,24409.18869557017,379332633.6965792,0.0,56373228.15141996,38756594.35410121 - 03/27 09:00:00,11415559.893846328,0.0,29926935.503929855,0.0,14526104.174151216,0.0,27542823.34827006,0.0,18028.25183050592,17746.016184932298,17768.883738084798,21389.83261621541,353170166.65125587,0.0,56373228.15141996,38756594.35410121 - 03/27 10:00:00,0.0,0.0,21788982.364029237,0.0,14326044.684463194,0.0,22639403.38904911,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,251801265.05119679,0.0,28186614.07570998,0.0 - 03/27 11:00:00,0.0,7932244.5403972719,15506699.185281933,0.0,10737617.17197239,0.0,17767351.3869524,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,198594487.25308899,7932244.5403972719,28186614.07570998,0.0 - 03/27 12:00:00,0.0,32020786.50440686,13018403.382252958,0.0,9604827.85327596,0.0,14479213.340622366,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,114473455.62223456,32020786.50440686,28186614.07570998,0.0 - 03/27 13:00:00,0.0,43443488.33973625,5950971.328692092,0.0,5350522.7190356799,0.0,6568809.345159753,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,95271562.02792114,43443488.33973625,28186614.07570998,0.0 - 03/27 14:00:00,0.0,41498280.54027103,0.0,0.0,0.0,0.0,220535.4587735521,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,77635293.45452465,41498280.54027103,28186614.07570998,0.0 - 03/27 15:00:00,0.0,46306541.39311133,0.0,1157141.4703341146,0.0,0.0,0.0,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,116122583.57621002,47463682.863445449,28186614.07570998,0.0 - 03/27 16:00:00,0.0,39155002.456156168,0.0,6654305.256737959,0.0,10019929.07040876,0.0,4769335.690795263,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,193537639.29368336,60598572.474098149,28186614.07570998,0.0 - 03/27 17:00:00,0.0,25090488.78537961,0.0,4744288.960451289,0.0,13096277.783878768,0.0,7503669.307348387,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,193536894.98937778,50434724.83705806,35233267.594637479,0.0 - 03/27 18:00:00,0.0,3841544.453104233,0.0,0.0,0.0,2918091.374053928,0.0,25301.84364204761,18101.443600291735,17818.0621239082,17841.022515606648,21476.671857164656,270853920.3490964,6784937.670800209,14093307.03785499,0.0 - 03/27 19:00:00,0.0,0.0,8823972.27633189,0.0,0.0,0.0,0.0,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.28050726523,279622510.93762329,0.0,63419881.67034747,0.0 - 03/27 20:00:00,0.0,0.0,5204739.437626893,0.0,0.0,3723179.528118472,0.0,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,159642207.1285511,3723179.528118472,63419881.67034747,69761869.8373822 - 03/27 21:00:00,1882379.1432637312,0.0,17994384.374430054,0.0,0.0,0.0,1177952.9355194623,0.0,10286.546152036652,10125.50835307323,10138.556104075316,12204.594347785085,174973454.2983063,0.0,49326574.63249246,69761869.8373822 - 03/27 22:00:00,14137473.934156329,0.0,28380573.294192908,0.0,0.0,0.0,13254686.425636413,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,132674655.11235781,0.0,35233267.594637479,69761869.8373822 - 03/27 23:00:00,20435936.581708105,0.0,34090784.711010519,0.0,6493457.11474792,0.0,18804084.211532155,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,156726184.07737086,0.0,35233267.594637479,62010550.96656194 - 03/27 24:00:00,28263802.085553849,0.0,41552721.55874705,0.0,12555641.642980522,0.0,26550986.76364669,0.0,2567.2660201184114,2527.074991650455,2530.3313857103787,3045.9631343018188,147337439.96533994,0.0,35233267.594637479,46507913.22492146 - 03/28 01:00:00,39567920.70829256,0.0,52391515.10453369,0.0,22309373.073298955,0.0,38770007.61877225,0.0,2567.2660201184114,2527.074991650455,2530.3313857103787,3045.9631343018188,191453104.4193093,0.0,21139960.556782485,23253956.61246073 - 03/28 02:00:00,6598875.509252986,0.0,15930111.344824627,0.0,0.0,0.0,2962882.0932656938,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,44682818.39231316,0.0,14093307.03785499,0.0 - 03/28 03:00:00,30171193.856079479,0.0,41802096.44112165,0.0,8379755.498187084,0.0,26874888.943394908,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,126435078.69598904,0.0,14093307.03785499,0.0 - 03/28 04:00:00,33628180.23514113,0.0,43876846.9482959,0.0,17329290.951263917,0.0,31717083.634242115,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,145758545.72614897,0.0,14093307.03785499,0.0 - 03/28 05:00:00,40365099.97531639,0.0,51039263.008334498,0.0,21968248.395278738,0.0,37751375.93009728,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,170314936.75399677,0.0,14093307.03785499,0.0 - 03/28 06:00:00,44800682.81322182,0.0,55253607.97756775,0.0,24675139.609678769,0.0,41290988.13489629,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,185227562.49257053,0.0,14093307.03785499,0.0 - 03/28 07:00:00,36608023.29987114,0.0,46365064.60480854,0.0,19732751.368662217,0.0,34103137.859551358,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,213572774.91277267,0.0,14093307.03785499,15502637.741640486 - 03/28 08:00:00,38661071.99818947,0.0,49880561.58698513,0.0,27972885.865286847,0.0,42958492.59857983,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,466787315.3643359,0.0,56373228.15141996,38756594.35410121 - 03/28 09:00:00,27749208.124528689,0.0,45527102.822285499,0.0,27751235.23366262,0.0,41610644.411233868,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,412221758.66365447,0.0,56373228.15141996,38756594.35410121 - 03/28 10:00:00,1985239.5986355555,0.0,30459608.930619774,0.0,18835943.435473317,0.0,28772414.701714346,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,273100041.2800983,0.0,28186614.07570998,0.0 - 03/28 11:00:00,0.0,0.0,29214704.159513728,0.0,18638679.54944736,0.0,28417019.6434054,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,230707871.0432907,0.0,28186614.07570998,0.0 - 03/28 12:00:00,0.0,0.0,25414393.15793526,0.0,17500452.16985415,0.0,25936226.849078783,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,146175122.52036534,0.0,28186614.07570998,0.0 - 03/28 13:00:00,0.0,12556167.045633695,18111787.93752619,0.0,13713541.627279599,0.0,18710758.643240118,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,127907099.25412917,12556167.045633695,28186614.07570998,0.0 - 03/28 14:00:00,0.0,23403958.61819199,8240258.034875965,0.0,6486495.939325634,0.0,10255620.377755506,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,102383632.98699072,23403958.61819199,28186614.07570998,0.0 - 03/28 15:00:00,0.0,24081998.66655186,1825710.6368443643,0.0,611278.0562911211,0.0,2798929.8531537528,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,121358055.53991588,24081998.66655186,28186614.07570998,0.0 - 03/28 16:00:00,0.0,27926755.48483122,0.0,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,193386768.2394872,27926755.48483122,28186614.07570998,0.0 - 03/28 17:00:00,0.0,13434477.780511067,0.0,0.0,0.0,4778764.876573789,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193528733.64187894,18213242.657084858,35233267.594637479,0.0 - 03/28 18:00:00,0.0,0.0,8083649.185730078,0.0,0.0,0.0,1375115.6498720402,0.0,18104.817555852474,17821.383259565224,17844.347930885946,21480.674926645683,280363170.0582197,0.0,14093307.03785499,0.0 - 03/28 19:00:00,0.0,0.0,12714650.621914076,0.0,0.0,0.0,904074.3106427922,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,284571419.9437135,0.0,63419881.67034747,0.0 - 03/28 20:00:00,0.0,0.0,1984263.1743339725,0.0,0.0,3065053.990148611,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,156803207.83133076,3065053.990148611,63419881.67034747,69761869.8373822 - 03/28 21:00:00,0.0,0.0,9882264.323477526,0.0,0.0,688713.79349675,0.0,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,164624286.41564406,688713.79349675,49326574.63249246,69761869.8373822 - 03/28 22:00:00,3316276.441878899,0.0,16492373.640664235,0.0,0.0,0.0,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,97179661.1286264,0.0,35233267.594637479,69761869.8373822 - 03/28 23:00:00,12497543.58603782,0.0,22905176.081721136,0.0,0.0,0.0,9158469.416006396,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,121852598.83820649,0.0,35233267.594637479,62010550.96656194 - 03/28 24:00:00,20912818.491514759,0.0,30652306.65852244,0.0,3746936.0674082639,0.0,17155532.254414996,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,111097808.99397063,0.0,35233267.594637479,46507913.22492146 - 03/29 01:00:00,31041137.48784603,0.0,40134132.07487755,0.0,14934822.958620172,0.0,28204032.667630678,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,152944340.7110846,0.0,21139960.556782485,23253956.61246073 - 03/29 02:00:00,787372.3910913161,0.0,5779070.331443075,0.0,0.0,0.0,0.0,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,25859471.825341017,0.0,14093307.03785499,0.0 - 03/29 03:00:00,21371062.37340907,0.0,30518550.875569107,0.0,490543.5321375843,0.0,14473246.586390825,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,86135783.76808422,0.0,14093307.03785499,0.0 - 03/29 04:00:00,26527594.04891534,0.0,33680823.295337188,0.0,12236723.068520267,0.0,22885055.931825945,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,114612576.74517636,0.0,14093307.03785499,0.0 - 03/29 05:00:00,29525691.179645748,0.0,36454840.27667883,0.0,14358473.140794302,0.0,25926241.968445396,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,125533728.26063986,0.0,14093307.03785499,0.0 - 03/29 06:00:00,32582809.286057064,0.0,39422375.61294976,0.0,17003399.200572049,0.0,28979731.526930844,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,137244284.77450568,0.0,14093307.03785499,0.0 - 03/29 07:00:00,29720841.0813573,0.0,36357766.20770253,0.0,14976824.514935509,0.0,26147805.14542369,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,184227113.54140298,0.0,14093307.03785499,15502637.741640486 - 03/29 08:00:00,43154278.11516839,0.0,50339738.70899152,0.0,27488134.5184056,0.0,41927746.042680937,0.0,20573.092304073303,20251.01670614646,20277.112208150633,24409.18869557017,470747373.0754324,0.0,56373228.15141996,38756594.35410121 - 03/29 09:00:00,37449689.64400301,0.0,45144559.803155709,0.0,27678217.71535728,0.0,39380718.32054371,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,419236753.5550034,0.0,56373228.15141996,38756594.35410121 - 03/29 10:00:00,45094455.40434931,0.0,53144375.53636242,0.0,34517106.36422025,0.0,49001146.29431497,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,374316775.07920679,0.0,28186614.07570998,0.0 - 03/29 11:00:00,43449242.22824073,0.0,51603918.26142675,0.0,33593745.637677568,0.0,48179272.986745569,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,330873932.29805847,0.0,28186614.07570998,0.0 - 03/29 12:00:00,43405984.63857584,0.0,51562077.886139769,0.0,33121455.08767463,0.0,47800525.24344603,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,252913919.4478202,0.0,28186614.07570998,0.0 - 03/29 13:00:00,41246838.04558944,0.0,49655625.07604297,0.0,32056660.49914507,0.0,46351553.215111639,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,246334553.42787303,0.0,28186614.07570998,0.0 - 03/29 14:00:00,42767028.17518561,0.0,50837033.69174069,0.0,32118671.11494088,0.0,46751584.13059035,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,249498193.70444147,0.0,28186614.07570998,0.0 - 03/29 15:00:00,47473350.743643518,0.0,55227288.12230652,0.0,33527185.844810606,0.0,49119700.99610914,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,300883340.59484568,0.0,28186614.07570998,0.0 - 03/29 16:00:00,51537261.41845606,0.0,59296833.63872273,0.0,35016813.49256074,0.0,51475154.89318448,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,389885754.92288389,0.0,28186614.07570998,0.0 - 03/29 17:00:00,55299816.09064353,0.0,63385926.98341417,0.0,36347812.006433609,0.0,53692226.440027657,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,400980585.1664493,0.0,35233267.594637479,0.0 - 03/29 18:00:00,60854859.1764343,0.0,69118441.85522719,0.0,40310916.65342073,0.0,58860482.10746295,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,498301424.89684769,0.0,14093307.03785499,0.0 - 03/29 19:00:00,48874393.40034036,0.0,57533504.12411611,0.0,27319812.074860179,0.0,43479911.50380176,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,446364346.2074208,0.0,63419881.67034747,0.0 - 03/29 20:00:00,34958977.34452394,0.0,43877729.98278703,0.0,13556932.573567411,0.0,26830482.68147369,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,273027965.4990964,0.0,63419881.67034747,69761869.8373822 - 03/29 21:00:00,37796700.513592649,0.0,46718495.19836298,0.0,16111522.684410159,0.0,30036283.273406995,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,284466844.5865171,0.0,49326574.63249246,69761869.8373822 - 03/29 22:00:00,42168364.319833148,0.0,51239117.64942245,0.0,19716991.113950764,0.0,34717300.60377845,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,224670349.51580853,0.0,35233267.594637479,69761869.8373822 - 03/29 23:00:00,45691216.84851868,0.0,54949587.092879887,0.0,22495396.314864384,0.0,38346364.65487115,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,238246362.69101352,0.0,35233267.594637479,62010550.96656194 - 03/29 24:00:00,50687063.544740747,0.0,60078172.89864181,0.0,26889524.6970409,0.0,43880798.0620513,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,219876408.8712627,0.0,35233267.594637479,46507913.22492146 - 03/30 01:00:00,59260472.905749779,0.0,68615564.7985451,0.0,35124234.60220213,0.0,53954718.29218523,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,255295840.26747025,0.0,21139960.556782485,23253956.61246073 - 03/30 02:00:00,20420098.920621545,0.0,27995052.38695714,0.0,2562810.471836253,0.0,11448707.070348962,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110912,1520.0700178164989,81597093.68415788,0.0,14093307.03785499,0.0 - 03/30 03:00:00,45189400.35295523,0.0,53580306.42083244,0.0,22862817.019040128,0.0,39157595.35806276,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,179960543.9852845,0.0,14093307.03785499,0.0 - 03/30 04:00:00,47916054.03192902,0.0,55994634.02257095,0.0,26580020.728907955,0.0,42759605.721446599,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,192399031.04500125,0.0,14093307.03785499,0.0 - 03/30 05:00:00,49621867.51104836,0.0,57643109.99300092,0.0,28399564.470407368,0.0,44707186.595101367,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,199520445.10970474,0.0,14093307.03785499,0.0 - 03/30 06:00:00,50728410.76033618,0.0,58660319.14159746,0.0,29235296.33196061,0.0,45662448.91903491,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,203416202.64256729,0.0,14093307.03785499,0.0 - 03/30 07:00:00,38971361.128726977,0.0,46569889.013921428,0.0,19875159.06934734,0.0,33697551.94768194,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,158243688.64931575,0.0,14093307.03785499,15502637.741640486 - 03/30 08:00:00,44850732.86055196,0.0,55594543.90945019,0.0,29412390.415098065,0.0,44971547.43062711,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,251424080.77631406,0.0,56373228.15141996,38756594.35410121 - 03/30 09:00:00,39952518.18635214,0.0,54555082.85498866,0.0,31185613.37369796,0.0,44028508.225448269,0.0,12825.507142980903,12624.721436061543,12640.98967821044,15216.97464544115,361631217.0901855,0.0,56373228.15141996,38756594.35410121 - 03/30 10:00:00,28587725.80218442,0.0,52214757.38507768,0.0,30230294.475013678,0.0,45457303.59009374,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,348888503.5587357,0.0,28186614.07570998,0.0 - 03/30 11:00:00,4037145.330944576,0.0,45779912.737282719,0.0,27102893.937083357,0.0,40465968.8146216,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,309945612.29989209,0.0,28186614.07570998,0.0 - 03/30 12:00:00,0.0,0.0,46605906.27160559,0.0,28992688.830897526,0.0,41211578.94776687,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,232345988.93824584,0.0,28186614.07570998,0.0 - 03/30 13:00:00,0.0,0.0,42413150.99657164,0.0,27128944.98898915,0.0,36414403.613643649,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,221567389.76965804,0.0,28186614.07570998,0.0 - 03/30 14:00:00,0.0,1388525.0691424304,34301788.27522743,0.0,21100614.424058178,0.0,29906717.10647375,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,200920009.97621296,1388525.0691424304,28186614.07570998,0.0 - 03/30 15:00:00,0.0,287522.29954150968,28741684.328874008,0.0,15332533.316996349,0.0,24521352.577034568,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,184131385.1108808,287522.29954150968,28186614.07570998,0.0 - 03/30 16:00:00,0.0,0.0,28745703.597879959,0.0,11488719.684398963,0.0,22444633.33740808,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,332036847.84859976,0.0,28186614.07570998,0.0 - 03/30 17:00:00,15009553.431851678,0.0,36514729.925305839,0.0,13934983.058890693,0.0,27685082.378664618,0.0,23085.912857365627,22724.49858491078,22753.78142077879,27390.55436179407,438581438.8041702,0.0,35233267.594637479,0.0 - 03/30 18:00:00,40531150.80996099,0.0,55127115.72478975,0.0,25416576.870523205,0.0,42230935.83448421,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,431121964.0946919,0.0,14093307.03785499,0.0 - 03/30 19:00:00,48104303.56194612,0.0,63394559.813044037,0.0,28135822.88999601,0.0,46729498.558590989,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,453846349.1000225,0.0,63419881.67034747,0.0 - 03/30 20:00:00,39248977.89797251,0.0,54207909.1263875,0.0,17602030.277717096,0.0,34385950.71223762,0.0,15305.719589211305,15066.105693763031,15085.519908714887,18159.652037364056,374466058.0389066,0.0,63419881.67034747,69761869.8373822 - 03/30 21:00:00,46959577.80857058,0.0,61447780.31958246,0.0,23364302.90512901,0.0,41770090.51474413,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,363907668.35700306,0.0,49326574.63249246,69761869.8373822 - 03/30 22:00:00,53133232.12526503,0.0,67249994.45218766,0.0,28194647.226703366,0.0,47817241.11589466,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,348687848.3672322,0.0,35233267.594637479,69761869.8373822 - 03/30 23:00:00,57646375.97959911,0.0,71514748.28751903,0.0,31632012.668628027,0.0,52219226.67190109,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,327063471.53626379,0.0,35233267.594637479,62010550.96656194 - 03/30 24:00:00,62972729.652482498,0.0,76603653.89796973,0.0,36163403.04092275,0.0,57811955.98588225,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,309585814.52966836,0.0,35233267.594637479,46507913.22492146 - 03/31 01:00:00,72750014.0828849,0.0,86106335.7949759,0.0,45195990.395786579,0.0,68766046.38525102,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,310786909.3364986,0.0,21139960.556782485,23253956.61246073 - 03/31 02:00:00,33699556.34138562,0.0,46057622.039335567,0.0,11356256.303173442,0.0,26023007.601628536,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,136090570.06329469,0.0,14093307.03785499,0.0 - 03/31 03:00:00,61797025.01097928,0.0,73929005.2735332,0.0,36267532.205815348,0.0,56941412.124427858,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,247889102.39252717,0.0,14093307.03785499,0.0 - 03/31 04:00:00,64053718.2200671,0.0,75803133.97088409,0.0,38395410.289709199,0.0,59613876.68253693,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,256820266.9409688,0.0,14093307.03785499,0.0 - 03/31 05:00:00,66244230.96381262,0.0,77792151.25776226,0.0,40593398.4698341,0.0,61963735.753924708,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,265516401.6910627,0.0,14093307.03785499,0.0 - 03/31 06:00:00,64017279.09936037,0.0,74755132.1720723,0.0,38296244.769515369,0.0,58913271.62224216,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,254904812.9089192,0.0,14093307.03785499,0.0 - 03/31 07:00:00,37943480.97794719,0.0,47302650.48914786,0.0,16225064.508687182,0.0,30833046.372090419,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,151312760.33597539,0.0,14093307.03785499,15502637.741640486 - 03/31 08:00:00,30173147.766712164,0.0,48418195.34815333,0.0,20177922.592965709,0.0,33976631.96019396,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,151851766.54491414,0.0,56373228.15141996,38756594.35410121 - 03/31 09:00:00,21526520.763188997,0.0,52993223.32329987,0.0,26325868.477519268,0.0,41433778.01783234,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,218874256.7424272,0.0,56373228.15141996,38756594.35410121 - 03/31 10:00:00,378756.6036208417,0.0,45882674.04391845,0.0,22582301.010698026,0.0,36281702.80917905,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,220271131.1372355,0.0,28186614.07570998,0.0 - 03/31 11:00:00,0.0,0.0,43463022.74749889,0.0,23106605.70457565,0.0,36370701.412648688,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,218476144.75269915,0.0,28186614.07570998,0.0 - 03/31 12:00:00,0.0,8680903.276971754,43340656.58359136,0.0,24893856.371773498,0.0,36548489.600543078,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,181806879.14789189,8680903.276971754,28186614.07570998,0.0 - 03/31 13:00:00,0.0,17279657.730390558,35311500.21702984,0.0,21448416.56772603,0.0,29177109.472152797,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,163066547.8592192,17279657.730390558,28186614.07570998,0.0 - 03/31 14:00:00,0.0,21338139.61003931,25120600.832011,0.0,15023544.432494019,0.0,21934827.227423327,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,177689862.66238196,21338139.61003931,28186614.07570998,0.0 - 03/31 15:00:00,0.0,18814535.501921126,16842338.16265153,0.0,6846127.601205968,0.0,14119292.22166213,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,192066801.19014067,18814535.501921126,28186614.07570998,0.0 - 03/31 16:00:00,0.0,8871765.940222305,14107429.128447907,0.0,1107875.1418665634,0.0,9673127.237287894,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,217712235.51337869,8871765.940222305,28186614.07570998,0.0 - 03/31 17:00:00,0.0,260206.28071187525,16855991.017486074,0.0,184256.7775784817,0.0,10476603.422890863,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,258738631.5588626,260206.28071187525,35233267.594637479,0.0 - 03/31 18:00:00,14676653.16377708,0.0,33896802.12328531,0.0,11542817.607138137,0.0,23446989.622795687,0.0,18028.25183050592,17746.016184932298,17768.8837380848,21389.83261621541,353322006.24805459,0.0,14093307.03785499,0.0 - 03/31 19:00:00,20126657.92731484,0.0,37661518.15504759,0.0,11061241.885147332,0.0,23126777.47263117,0.0,10296.542430157862,10135.348137595649,10148.40856816442,12216.454550194507,246044508.7101457,0.0,63419881.67034747,0.0 - 03/31 20:00:00,11569634.020242738,0.0,27711865.6741144,0.0,893821.9468237076,0.0,10646132.00446246,0.0,7719.274674838009,7598.42798977415,7608.2193397943979,9158.624738865881,166325821.92142407,0.0,63419881.67034747,69761869.8373822 - 03/31 21:00:00,17493113.35523132,0.0,32670908.475126909,0.0,4966897.8044827389,0.0,16090522.254418124,0.0,5144.014055739574,5063.4835560820979,5070.008371463131,6103.176318046869,148191898.17405314,0.0,49326574.63249246,69761869.8373822 - 03/31 22:00:00,23664782.513199867,0.0,37994038.10710614,0.0,9054211.945053194,0.0,21763782.19895527,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,169436183.686861,0.0,35233267.594637479,69761869.8373822 - 03/31 23:00:00,27868894.58362671,0.0,41701166.61308839,0.0,11964461.621893669,0.0,25555136.638900553,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,184049028.38005585,0.0,35233267.594637479,62010550.96656194 - 03/31 24:00:00,33064860.55299805,0.0,46178113.76788985,0.0,16233880.31424222,0.0,30732167.18034783,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,203168390.73802445,0.0,35233267.594637479,46507913.22492146 - 04/01 01:00:00,47589551.682693857,0.0,61166055.94590866,0.0,27144191.679604494,0.0,45362512.72188893,0.0,2571.26156417546,2531.0079847199228,2534.2694468428487,3050.703694806214,219736385.71605594,0.0,21139960.556782485,23253956.61246073 - 04/01 02:00:00,13767917.681357593,0.0,25379747.053137714,0.0,0.0,0.0,7474990.388803598,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.3518474031073,65859691.96627891,0.0,14093307.03785499,0.0 - 04/01 03:00:00,41848996.187825027,0.0,53155392.40053028,0.0,18305989.557025397,0.0,36447395.90695077,0.0,1285.4410549833106,1265.317235468755,1266.9477258749017,1525.126743436042,168991971.98747833,0.0,14093307.03785499,0.0 - 04/01 04:00:00,45923296.95971015,0.0,56250162.92292619,0.0,23850752.482085796,0.0,40989911.012577857,0.0,1285.249089511789,1265.1282752525013,1266.7585221641226,1524.898983731854,186245448.91167698,0.0,14093307.03785499,0.0 - 04/01 05:00:00,45965427.98752169,0.0,55279338.2466579,0.0,24998000.406610874,0.0,41274577.42990473,0.0,1285.249089511789,1265.1282752525013,1266.7585221641226,1524.898983731854,186748669.6050722,0.0,14093307.03785499,0.0 - 04/01 06:00:00,47669300.41857204,0.0,56860168.271582189,0.0,26500259.017673356,0.0,43008309.51303026,0.0,1285.4410549833106,1265.317235468755,1266.9477258749017,1525.126743436042,193272235.1560047,0.0,14093307.03785499,0.0 - 04/01 07:00:00,42725448.28070704,0.0,51570278.05765662,0.0,23305814.836592579,0.0,38465321.82558659,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,232968784.45891498,0.0,14093307.03785499,15502637.741640486 - 04/01 08:00:00,57565499.77856397,0.0,67405451.40881913,0.0,37309908.332743588,0.0,55340119.64613626,0.0,20527.844467402356,20206.477232799574,20232.51534114629,24355.503864576203,524781406.42759087,0.0,56373228.15141996,38756594.35410121 - 04/01 09:00:00,59126521.26795762,0.0,70256575.11812508,0.0,38630646.14319049,0.0,57617653.11795571,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,494304687.87680688,0.0,56373228.15141996,38756594.35410121 - 04/01 10:00:00,57438385.407612148,0.0,67197387.20075104,0.0,42504710.53432515,0.0,60830942.46351229,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,420531117.0861604,0.0,28186614.07570998,0.0 - 04/01 11:00:00,49632029.90234236,0.0,59278943.82612995,0.0,37867899.48633625,0.0,54403029.60475852,0.0,10300.55634196066,10139.299210860381,10152.364732790329,12221.216903328093,355310276.6997491,0.0,28186614.07570998,0.0 - 04/01 12:00:00,50898952.82141754,0.0,59895446.502855788,0.0,36837472.23760777,0.0,53434744.26560295,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,278196137.4297946,0.0,28186614.07570998,0.0 - 04/01 13:00:00,47698168.6268358,0.0,56492746.363784369,0.0,34359146.03234691,0.0,50188664.30061236,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,265926926.61331488,0.0,28186614.07570998,0.0 - 04/01 14:00:00,44828309.345116678,0.0,54087504.970093239,0.0,32149810.849165035,0.0,47341212.68517977,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,255667268.89377506,0.0,28186614.07570998,0.0 - 04/01 15:00:00,33481140.658878514,0.0,45445436.26057182,0.0,27230178.236612135,0.0,40511161.49783379,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,262577767.9334393,0.0,28186614.07570998,0.0 - 04/01 16:00:00,32850121.33871629,0.0,43161869.676225159,0.0,24895070.690388137,0.0,37836903.46587074,0.0,12917.386859574628,12715.162758551849,12731.547543575927,15325.986421915206,332028266.0722238,0.0,28186614.07570998,0.0 - 04/01 17:00:00,36305982.98337309,0.0,44718151.67265916,0.0,24021156.57755732,0.0,37321387.25995464,0.0,12915.56899978458,12713.373357695935,12729.75583689437,15323.82960066629,335623778.55569246,0.0,35233267.594637479,0.0 - 04/01 18:00:00,43941947.783369939,0.0,51927525.47086619,0.0,28296684.05219349,0.0,42872466.042697679,0.0,18074.871540416,17791.90605458683,17814.832741520266,21445.145122439986,437494943.0013944,0.0,14093307.03785499,0.0 - 04/01 19:00:00,35890842.4618489,0.0,44541081.36614634,0.0,18493350.624418305,0.0,31494507.00747257,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,400632873.6763799,0.0,63419881.67034747,0.0 - 04/01 20:00:00,22409980.750600127,0.0,31257597.241398727,0.0,5074002.619068062,0.0,15256918.532112578,0.0,10325.002147076286,10163.36231233656,10176.45884202883,12250.220917944032,228492658.332968,0.0,63419881.67034747,69761869.8373822 - 04/01 21:00:00,26507848.111159594,0.0,35495298.489277359,0.0,8424691.087091532,0.0,19695018.17817456,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,244483309.8742175,0.0,49326574.63249246,69761869.8373822 - 04/01 22:00:00,29991648.761490257,0.0,38927917.861289028,0.0,11297714.226010945,0.0,23362816.06485711,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,180813277.26446826,0.0,35233267.594637479,69761869.8373822 - 04/01 23:00:00,31766977.165710257,0.0,40503219.60102523,0.0,12987043.05177962,0.0,25337258.475271729,0.0,5159.089991326047,5078.323475084551,5084.8674132158989,6121.063340136378,187790537.48493318,0.0,35233267.594637479,62010550.96656194 - 04/01 24:00:00,35856848.25264187,0.0,44548049.108481887,0.0,16834155.07311584,0.0,30070661.563560547,0.0,2578.7456037787876,2538.3748602871135,2541.645815381129,3059.583222112207,165895772.20341338,0.0,35233267.594637479,46507913.22492146 - 04/02 01:00:00,43916212.847022969,0.0,52404330.04037072,0.0,24685462.45733642,0.0,39538275.566372159,0.0,2578.7456037787876,2538.3748602871135,2541.645815381129,3059.583222112207,199130339.1167155,0.0,21139960.556782485,23253956.61246073 - 04/02 02:00:00,6790857.276125299,0.0,12562949.871922479,0.0,0.0,0.0,659615.8919098409,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,39306452.14276425,0.0,14093307.03785499,0.0 - 04/02 03:00:00,31389099.404967838,0.0,39331565.919404,0.0,12131635.31120957,0.0,24772776.279037328,0.0,1287.5695427450826,1267.4124013575475,1269.0455915987912,1527.6521129160117,126891123.64964149,0.0,14093307.03785499,0.0 - 04/02 04:00:00,34159938.80077647,0.0,41369031.54119269,0.0,17149979.628260703,0.0,29809251.02690053,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,141756682.692206,0.0,14093307.03785499,0.0 - 04/02 05:00:00,34553626.190555308,0.0,41467349.76358693,0.0,18127177.540871353,0.0,30467477.35326065,0.0,1288.0509527375028,1267.8862747867293,1269.5200756622535,1528.2232874954689,143888880.97472925,0.0,14093307.03785499,0.0 - 04/02 06:00:00,33389214.106221804,0.0,40004236.25448366,0.0,17852784.481216585,0.0,29613142.716193774,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,140150344.95523227,0.0,14093307.03785499,0.0 - 04/02 07:00:00,25009430.330560063,0.0,31142960.887172417,0.0,12189935.145616832,0.0,21839417.142126867,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,167435567.33189724,0.0,14093307.03785499,15502637.741640486 - 04/02 08:00:00,34663609.34430496,0.0,40616696.63069657,0.0,23647563.023643104,0.0,34144135.64692486,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,442237643.663334,0.0,56373228.15141996,38756594.35410121 - 04/02 09:00:00,46389164.10633616,0.0,54479447.90612909,0.0,33101473.38815618,0.0,48205978.9841925,0.0,18068.753757383496,17785.884046588973,17808.80297355045,21437.886606402055,452540842.9669438,0.0,56373228.15141996,38756594.35410121 - 04/02 10:00:00,51103486.22479519,0.0,59582867.699976619,0.0,35888816.337839458,0.0,52109772.39592286,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,391675040.6364,0.0,28186614.07570998,0.0 - 04/02 11:00:00,54476929.99234156,0.0,63267618.11460982,0.0,37267971.54879588,0.0,54557371.83102443,0.0,10313.880127971648,10152.414410515816,10165.496832719162,12237.02506682995,363897630.6637034,0.0,28186614.07570998,0.0 - 04/02 12:00:00,55762285.81314607,0.0,64896026.16442339,0.0,38061464.08567015,0.0,55933109.98462646,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,291755220.2559767,0.0,28186614.07570998,0.0 - 04/02 13:00:00,55501388.55886855,0.0,64993372.71581115,0.0,38396607.74156055,0.0,56475921.33745499,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,292421602.25944796,0.0,28186614.07570998,0.0 - 04/02 14:00:00,55392407.87740965,0.0,65078625.52673229,0.0,38269507.30749138,0.0,56504061.45095806,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,292328133.4955226,0.0,28186614.07570998,0.0 - 04/02 15:00:00,57082618.90678943,0.0,66764061.68565917,0.0,38690654.930892888,0.0,57339006.26443979,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,335501638.78717818,0.0,28186614.07570998,0.0 - 04/02 16:00:00,60087169.84719435,0.0,69780753.28399521,0.0,39803726.56671238,0.0,59092122.57668567,0.0,12878.927441182876,12677.305429529617,12693.641431521231,15280.355790079646,421472600.6069158,0.0,28186614.07570998,0.0 - 04/02 17:00:00,62447039.06153184,0.0,72320735.27232047,0.0,39862304.016773719,0.0,59638676.339564878,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,427001255.95474126,0.0,35233267.594637479,0.0 - 04/02 18:00:00,66248131.054934088,0.0,76135289.8751793,0.0,42571602.93124403,0.0,63092467.39508705,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,517905660.9848317,0.0,14093307.03785499,0.0 - 04/02 19:00:00,52339817.186129387,0.0,62457382.8437479,0.0,28448539.911156589,0.0,46132895.01893004,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,459300716.9138341,0.0,63419881.67034747,0.0 - 04/02 20:00:00,36747624.03269586,0.0,46964456.6348654,0.0,13331816.886066996,0.0,27752558.937294194,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,279156910.4994369,0.0,63419881.67034747,69761869.8373822 - 04/02 21:00:00,38237195.51387941,0.0,48274192.53240454,0.0,14978091.563478889,0.0,29663957.932068558,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,285513891.5503459,0.0,49326574.63249246,69761869.8373822 - 04/02 22:00:00,40345092.9413771,0.0,50251405.37852982,0.0,17112729.21642963,0.0,32244083.614498229,0.0,5159.089991326047,5078.323475084551,5084.8674132158989,6121.063340136378,217149350.34198118,0.0,35233267.594637479,69761869.8373822 - 04/02 23:00:00,40689638.34257179,0.0,50429928.18222262,0.0,17715051.871736934,0.0,32850970.18726271,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,218918768.934615,0.0,35233267.594637479,62010550.96656194 - 04/02 24:00:00,43026614.90078385,0.0,52593924.752985227,0.0,20253180.58543054,0.0,35803687.504672389,0.0,2580.7860864440469,2540.3833988155968,2543.656942116513,3062.004176904525,190293997.91928245,0.0,35233267.594637479,46507913.22492146 - 04/03 01:00:00,48717512.18396961,0.0,57539074.54534797,0.0,26844526.547450589,0.0,43063114.80715448,0.0,2580.7860864440469,2540.3833988155968,2543.656942116513,3062.004176904525,214780818.2593331,0.0,21139960.556782485,23253956.61246073 - 04/03 02:00:00,8504767.19460221,0.0,13996601.431828917,0.0,0.0,0.0,1561741.4788993248,0.0,1290.3930432220237,1270.1916994077984,1271.8284710582566,1531.0020884522626,43371405.19303568,0.0,14093307.03785499,0.0 - 04/03 03:00:00,30043244.256425386,0.0,37300728.9015252,0.0,6828776.5229043499,0.0,22809754.653470484,0.0,1290.6252683845358,1270.42028904207,1272.0573552536035,1531.277614743004,116294274.23304899,0.0,14093307.03785499,0.0 - 04/03 04:00:00,28936813.93931085,0.0,35127479.64467192,0.0,12644368.736037646,0.0,23898455.934781955,0.0,1291.9941219283467,1271.7677129282932,1273.406515433033,1532.9017072203838,119939370.46183858,0.0,14093307.03785499,0.0 - 04/03 05:00:00,26228528.678716307,0.0,31908654.4635792,0.0,11605746.657567412,0.0,21486554.346524184,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,110573922.9012575,0.0,14093307.03785499,0.0 - 04/03 06:00:00,25579614.5479637,0.0,30916801.398857397,0.0,11482641.267468304,0.0,20912576.739872654,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,108225091.34857485,0.0,14093307.03785499,0.0 - 04/03 07:00:00,19506108.66743314,0.0,24679234.238136934,0.0,6801023.459461538,0.0,14802024.244615285,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,143073879.13957349,0.0,14093307.03785499,15502637.741640486 - 04/03 08:00:00,36673433.53084644,0.0,42350728.190505448,0.0,24255040.614065399,0.0,34985996.144119549,0.0,20646.288691552374,20323.067190524773,20349.255536932105,24496.033415236205,447197919.88282039,0.0,56373228.15141996,38756594.35410121 - 04/03 09:00:00,44857515.16638494,0.0,52602060.83826035,0.0,32797700.90220274,0.0,46340690.237931009,0.0,18062.123443729644,17779.357531732254,17802.26804861319,21430.019992346388,446863535.6038963,0.0,56373228.15141996,38756594.35410121 - 04/03 10:00:00,25928062.58683514,0.0,40461743.17931809,0.0,26020863.49801898,0.0,37481898.35786633,0.0,12906.252683845356,12704.202890420696,12720.573552536038,15312.776147430042,323010266.6092742,0.0,28186614.07570998,0.0 - 04/03 11:00:00,21710285.492236128,0.0,39170571.8882073,0.0,25672588.247365636,0.0,37122123.604601617,0.0,10320.220514265255,10158.655536879198,10171.74600141088,12244.547693139893,278098180.3169135,0.0,28186614.07570998,0.0 - 04/03 12:00:00,28936393.730742195,0.0,42838036.18183227,0.0,27187834.81931189,0.0,39409470.47871298,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,215618814.8054936,0.0,28186614.07570998,0.0 - 04/03 13:00:00,36223355.25903706,0.0,44758111.72547645,0.0,27291690.153036298,0.0,40063016.56780635,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,225596604.7495765,0.0,28186614.07570998,0.0 - 04/03 14:00:00,35734207.21693775,0.0,43331719.58028507,0.0,26361359.341592045,0.0,38918639.061343949,0.0,5164.663083277148,5083.809319241499,5090.36032644297,6127.675600998361,221625355.18801473,0.0,28186614.07570998,0.0 - 04/03 15:00:00,37882724.966953847,0.0,45131553.414098639,0.0,26892699.5350803,0.0,39823128.50085026,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,265639957.6965261,0.0,28186614.07570998,0.0 - 04/03 16:00:00,39647463.684847418,0.0,46667426.735715139,0.0,27312378.4776613,0.0,40522095.621557798,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,347377888.9058844,0.0,28186614.07570998,0.0 - 04/03 17:00:00,39230520.30356187,0.0,46225493.37191322,0.0,25951599.84546996,0.0,39059598.286967668,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,343695736.1940155,0.0,35233267.594637479,0.0 - 04/03 18:00:00,44654025.262478608,0.0,51546324.97806096,0.0,28793304.914131434,0.0,43038914.94456434,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,438348701.3271085,0.0,14093307.03785499,0.0 - 04/03 19:00:00,38201986.60866617,0.0,46152162.471611518,0.0,20184014.49284385,0.0,33388276.877085769,0.0,18032.713338325033,17750.407847014205,17773.28105927155,21395.126024936562,407751942.2205777,0.0,63419881.67034747,0.0 - 04/03 20:00:00,28899427.6773945,0.0,37451261.43454409,0.0,9765397.529982839,0.0,21254851.73478026,0.0,10283.528439866484,10122.53788375004,10135.581806999213,12201.013947488336,251244521.85787637,0.0,63419881.67034747,69761869.8373822 - 04/03 21:00:00,34000010.081091079,0.0,42644914.13365319,0.0,13929121.186744102,0.0,26597900.431454794,0.0,10277.278251370637,10116.385543121067,10129.421538451381,12193.598337422376,270952007.0462588,0.0,49326574.63249246,69761869.8373822 - 04/03 22:00:00,37736962.09699012,0.0,46390278.899966519,0.0,17101377.737149694,0.0,30642141.479056989,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,208772681.67153547,0.0,35233267.594637479,69761869.8373822 - 04/03 23:00:00,40489031.24770446,0.0,49152241.97356814,0.0,19393816.97639668,0.0,33555486.23490958,0.0,5135.371257428885,5054.976062391274,5061.489914998346,6092.92196776713,219431709.56188715,0.0,35233267.594637479,62010550.96656194 - 04/03 24:00:00,46316320.213905248,0.0,55021305.84935786,0.0,24606914.88249538,0.0,40035289.26630154,0.0,2560.92699520091,2520.8352053505807,2524.0835588089755,3038.44212321266,204299266.58932329,0.0,35233267.594637479,46507913.22492146 - 04/04 01:00:00,58820438.18143166,0.0,67809077.09613543,0.0,35858331.728526677,0.0,54132047.5806596,0.0,2549.8127800786676,2509.894985339432,2513.129241207697,3025.255531225793,254773027.7230191,0.0,21139960.556782485,23253956.61246073 - 04/04 02:00:00,19852215.494261438,0.0,27176022.21890103,0.0,2643802.4627248786,0.0,11162060.451600163,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,79967691.05560047,0.0,14093307.03785499,0.0 - 04/04 03:00:00,43839815.53928845,0.0,51583151.97852369,0.0,23701674.639818979,0.0,38834252.15340355,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,177092484.73914764,0.0,14093307.03785499,0.0 - 04/04 04:00:00,47406357.75773945,0.0,55064479.39295108,0.0,27181179.453213015,0.0,42752862.127183217,0.0,1274.9063900393338,1254.947492669716,1256.5646206038485,1512.6277656128967,191481445.2992196,0.0,14093307.03785499,0.0 - 04/04 05:00:00,51137620.06507361,0.0,58899860.18303649,0.0,30661636.990923868,0.0,46882345.30183266,0.0,1271.6178446421598,1251.7104300642123,1253.3233867127777,1508.7260320306448,206608822.23728589,0.0,14093307.03785499,0.0 - 04/04 06:00:00,47547798.03123617,0.0,54471501.439614627,0.0,27597892.712610939,0.0,42778612.072605308,0.0,1274.9063900393338,1254.947492669716,1256.5646206038485,1512.6277656128967,191472370.82419987,0.0,14093307.03785499,0.0 - 04/04 07:00:00,21499756.5595757,0.0,27298859.882811265,0.0,6648428.311486854,0.0,16207167.535055317,0.0,5119.902066879404,5039.7490449056199,5046.243275946471,6074.568363675475,148263878.19399423,0.0,14093307.03785499,15502637.741640486 - 04/04 08:00:00,14211878.711845492,0.0,24534932.959264239,0.0,13692191.548933568,0.0,17139522.361547688,0.0,20557.735213706783,20235.90003389449,20261.976056523537,24390.96809406647,377186211.4150796,0.0,56373228.15141996,38756594.35410121 - 04/04 09:00:00,11240275.628536934,0.0,31936662.360833106,0.0,12499869.7303188,0.0,26874459.191035928,0.0,18018.949252776256,17736.859240792386,17759.71499428773,21378.795462840382,352170815.1332331,0.0,56373228.15141996,38756594.35410121 - 04/04 10:00:00,0.0,0.0,30563569.719870368,0.0,15798427.580785847,0.0,26020702.48583634,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,265067516.73724855,0.0,28186614.07570998,0.0 - 04/04 11:00:00,0.0,2554440.4944513987,26961205.163486564,0.0,16757313.14721018,0.0,26187353.341538147,0.0,10312.759642661353,10151.31146661208,10164.39246755963,12235.69565378084,224216844.88244493,2554440.4944513987,28186614.07570998,0.0 - 04/04 12:00:00,0.0,8399123.28211979,23516192.62181814,0.0,16477603.20523144,0.0,24270594.9702078,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,141483124.6427195,8399123.28211979,28186614.07570998,0.0 - 04/04 13:00:00,0.0,20929261.01853797,25460426.44498223,0.0,16898569.83397831,0.0,22580590.263451995,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,142212820.72877459,20929261.01853797,28186614.07570998,0.0 - 04/04 14:00:00,0.0,20848696.722050489,16067548.131172605,0.0,10551059.711301974,0.0,16023475.510201952,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473419,119908984.53757128,20848696.722050489,28186614.07570998,0.0 - 04/04 15:00:00,0.0,977624.3060551378,18657845.052642995,0.0,10954570.413027354,0.0,18596093.07071746,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,164118359.81593085,977624.3060551378,28186614.07570998,0.0 - 04/04 16:00:00,5225069.717970514,0.0,24936624.179607408,0.0,13942398.553361364,0.0,22742216.17349951,0.0,12910.622528868573,12708.504324704882,12724.880529657334,15317.960801742849,260029394.0903439,0.0,28186614.07570998,0.0 - 04/04 17:00:00,14985078.72151551,0.0,30147174.693076195,0.0,14497907.632077527,0.0,24580313.977798456,0.0,12907.379493515047,12705.312059674803,12721.684151067939,15314.113064090161,277345034.59052029,0.0,35233267.594637479,0.0 - 04/04 18:00:00,26932030.942706378,0.0,41577488.6365788,0.0,20532537.13838537,0.0,33408481.60606379,0.0,18054.981617347312,17772.327511974247,17795.228969957185,21421.546487964028,392609242.8378083,0.0,14093307.03785499,0.0 - 04/04 19:00:00,21892322.472062489,0.0,36199165.74408035,0.0,11977549.854568024,0.0,23702621.639282157,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,363984751.9264868,0.0,63419881.67034747,0.0 - 04/04 20:00:00,11397524.429901807,0.0,24864515.237441187,0.0,346899.49020119677,0.0,9296668.985378083,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,200343075.83384649,0.0,63419881.67034747,69761869.8373822 - 04/04 21:00:00,22688156.499877003,0.0,36797028.58213279,0.0,6351292.192373417,0.0,18904018.492971355,0.0,10318.179982652095,10156.646950169103,10169.734826431797,12242.126680272757,239132574.14964728,0.0,49326574.63249246,69761869.8373822 - 04/04 22:00:00,33301941.568827154,0.0,46960972.4945318,0.0,12854079.522169017,0.0,28008126.104190317,0.0,5156.940063985824,5076.207205257908,5082.748416359581,6118.512533414975,198288989.27818416,0.0,35233267.594637479,69761869.8373822 - 04/04 23:00:00,41925238.63319855,0.0,54673231.97665739,0.0,19072587.876038307,0.0,35911240.52223493,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,228507601.145637,0.0,35233267.594637479,62010550.96656194 - 04/04 24:00:00,48874482.2775697,0.0,60617489.70683992,0.0,25363358.96084138,0.0,43174881.00755449,0.0,2565.543206263963,2525.3791487682885,2528.633357561567,3043.9190814273636,216418721.21128176,0.0,35233267.594637479,46507913.22492146 - 04/05 01:00:00,56406218.335074838,0.0,67209382.7014008,0.0,33336857.729394244,0.0,52192712.42675291,0.0,2566.841969485217,2526.6575796090298,2529.9134357909335,3045.460014412541,247553113.9900946,0.0,21139960.556782485,23253956.61246073 - 04/05 02:00:00,18343583.88030139,0.0,27197524.29308548,0.0,1640666.7114296316,0.0,10544085.69390543,0.0,1282.7716031319815,1262.6895743841442,1264.3166787807837,1521.9595407136818,76920115.20796006,0.0,14093307.03785499,0.0 - 04/05 03:00:00,45609609.669569287,0.0,55743406.07572394,0.0,21929380.06745699,0.0,39888045.54926108,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,182374412.76074717,0.0,14093307.03785499,0.0 - 04/05 04:00:00,46667134.370980519,0.0,55939590.44906201,0.0,25085598.29961235,0.0,41657855.77442597,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,188560462.17640794,0.0,14093307.03785499,0.0 - 04/05 05:00:00,45580779.7611385,0.0,54099146.819531697,0.0,25517093.303782509,0.0,41133946.438654799,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,185541249.6054346,0.0,14093307.03785499,0.0 - 04/05 06:00:00,46242997.75492388,0.0,54572225.24199024,0.0,26587921.484521673,0.0,42073143.52416153,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,188673814.70943029,0.0,14093307.03785499,0.0 - 04/05 07:00:00,41739061.684907708,0.0,49851409.244767,0.0,23460689.81726399,0.0,37808923.51405193,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,229650191.07632263,0.0,14093307.03785499,15502637.741640486 - 04/05 08:00:00,52671390.762094598,0.0,61156494.37738073,0.0,34910057.266738709,0.0,50950713.02299061,0.0,20524.345650111703,20203.033190146307,20229.066860492538,24351.352651418907,506796729.49701467,0.0,56373228.15141996,38756594.35410121 - 04/05 09:00:00,60365386.12629369,0.0,70698378.53112975,0.0,38179954.258530657,0.0,56836000.226637247,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,494979734.5434742,0.0,56373228.15141996,38756594.35410121 - 04/05 10:00:00,67379845.88738095,0.0,77545899.69488752,0.0,46536837.784948687,0.0,67421837.51656845,0.0,12840.50395623545,12639.483471406937,12655.770735945105,15234.767791904116,451018314.32355538,0.0,28186614.07570998,0.0 - 04/05 11:00:00,58100534.96256058,0.0,67884024.07965362,0.0,42140165.75624955,0.0,60750099.22019567,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,382702181.36451217,0.0,28186614.07570998,0.0 - 04/05 12:00:00,59036809.64527884,0.0,68881855.71419034,0.0,41541558.002932008,0.0,60561838.00790979,0.0,5144.746060404829,5064.204101077763,5070.729844954568,6104.044813639857,307003470.7225882,0.0,28186614.07570998,0.0 - 04/05 13:00:00,54905958.4970482,0.0,64675568.76788862,0.0,39053475.39031144,0.0,57113592.14908163,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,292782751.43933227,0.0,28186614.07570998,0.0 - 04/05 14:00:00,42431695.95491049,0.0,52252593.13284219,0.0,33892908.912949968,0.0,49069694.919437628,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,254670769.51212419,0.0,28186614.07570998,0.0 - 04/05 15:00:00,42534268.7047451,0.0,51957367.553074579,0.0,32931901.56533414,0.0,48132670.21213414,0.0,7722.406822618397,7601.511103196734,7611.306426123314,9162.340912645881,291107442.98779156,0.0,28186614.07570998,0.0 - 04/05 16:00:00,50697075.41686183,0.0,60697523.03742572,0.0,35416176.84131696,0.0,52975211.43598426,0.0,12874.04553092269,12672.499946485272,12688.829756121499,15274.563589909905,392421766.49597057,0.0,28186614.07570998,0.0 - 04/05 17:00:00,57312223.75463742,0.0,66931486.5695859,0.0,37006513.69641842,0.0,55595830.640504818,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,409578555.9256969,0.0,35233267.594637479,0.0 - 04/05 18:00:00,59465308.295561689,0.0,68215141.76201909,0.0,39022899.11689164,0.0,57435685.91493483,0.0,18032.713338325033,17750.407847014205,17773.28105927155,21395.126024936562,493964536.8597776,0.0,14093307.03785499,0.0 - 04/05 19:00:00,47545732.238677199,0.0,56618852.87004381,0.0,25991713.146412929,0.0,41952758.21698171,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,441867800.203174,0.0,63419881.67034747,0.0 - 04/05 20:00:00,33897661.66956184,0.0,43176565.69576697,0.0,12333823.061349329,0.0,25474648.231823166,0.0,10299.23642473815,10137.99995718822,10151.0638048972,12219.650871927923,268991322.4700067,0.0,63419881.67034747,69761869.8373822 - 04/05 21:00:00,36753991.47219501,0.0,45947884.003317978,0.0,14912767.134302885,0.0,28681468.08143217,0.0,10297.898449857848,10136.682928554266,10149.745079137425,12218.063415806084,280384714.2353283,0.0,49326574.63249246,69761869.8373822 - 04/05 22:00:00,39971192.97554442,0.0,49139252.499246079,0.0,17756645.135285617,0.0,32270028.46606818,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,216171275.71114669,0.0,35233267.594637479,69761869.8373822 - 04/05 23:00:00,42094827.8496676,0.0,51249594.018326077,0.0,19691881.377962486,0.0,34670769.24388923,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,224699300.50974495,0.0,35233267.594637479,62010550.96656194 - 04/05 24:00:00,46732252.103481,0.0,55939603.054338339,0.0,23867450.071185288,0.0,39869683.056060578,0.0,2570.1097750302176,2529.874227048615,2533.134228209061,3049.337140951878,204865827.62152837,0.0,35233267.594637479,46507913.22492146 - 04/06 01:00:00,54909857.90221547,0.0,64002119.62283741,0.0,31776788.911327099,0.0,49423561.96753648,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,238580724.2742101,0.0,21139960.556782485,23253956.61246073 - 04/06 02:00:00,16080413.863601987,0.0,23927018.796773863,0.0,429379.4572456798,0.0,8068092.725550175,0.0,1284.6597814213297,1264.5481928901336,1266.1776923064227,1524.199792177797,67727412.49483617,0.0,14093307.03785499,0.0 - 04/06 03:00:00,39876802.7222648,0.0,47898412.51633404,0.0,17608466.87628925,0.0,33792658.476592708,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.351847403107,158413377.4344608,0.0,14093307.03785499,0.0 - 04/06 04:00:00,41134361.67020355,0.0,48638832.02078741,0.0,21481625.36292734,0.0,35852741.2902885,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,166347402.57484345,0.0,14093307.03785499,0.0 - 04/06 05:00:00,43739114.91869024,0.0,51242845.9578059,0.0,24071571.43855626,0.0,38792656.71861476,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,177043715.73750014,0.0,14093307.03785499,0.0 - 04/06 06:00:00,45695691.618497829,0.0,53242100.33467403,0.0,26109692.845431698,0.0,41136442.89546971,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,185368167.56865917,0.0,14093307.03785499,0.0 - 04/06 07:00:00,42619479.770599279,0.0,50713059.55942204,0.0,23559178.427902946,0.0,38338302.02229461,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,174427546.48405183,0.0,14093307.03785499,15502637.741640486 - 04/06 08:00:00,47626388.96525634,0.0,57502140.91089238,0.0,31394639.885791758,0.0,44760607.916770819,0.0,5107.458772814891,5027.500552930982,5033.979000539748,6059.804870257667,257707253.18626715,0.0,56373228.15141996,38756594.35410121 - 04/06 09:00:00,60702462.236780118,0.0,71405746.19392252,0.0,39852425.64153782,0.0,58908482.67127984,0.0,12757.5854085953,12557.863029098533,12574.04511736596,15136.388100324628,421762290.7029042,0.0,56373228.15141996,38756594.35410121 - 04/06 10:00:00,50457844.82521509,0.0,64160532.16295285,0.0,41044557.96803911,0.0,58828275.65453858,0.0,12792.271569508739,12592.006171692175,12608.232256883754,15177.541906196264,405903397.46615698,0.0,28186614.07570998,0.0 - 04/06 11:00:00,54582195.10795043,0.0,65080576.60559491,0.0,40522699.13860209,0.0,58638282.42444953,0.0,12818.747925777896,12618.068035664779,12634.327704228166,15208.955092244967,410632108.8050938,0.0,28186614.07570998,0.0 - 04/06 12:00:00,40135220.20514538,0.0,52378132.3559613,0.0,34847032.375380348,0.0,50361006.10951423,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,292785780.5471929,0.0,28186614.07570998,0.0 - 04/06 13:00:00,37229737.26631948,0.0,49794354.91562158,0.0,33444381.635392477,0.0,48262325.307011548,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,283774367.1220299,0.0,28186614.07570998,0.0 - 04/06 14:00:00,40687400.59457944,0.0,52477589.888633858,0.0,34070313.30070472,0.0,49800994.69341216,0.0,7675.362941705243,7555.203703015304,7564.9393541302529,9106.52514371776,291883610.590577,0.0,28186614.07570998,0.0 - 04/06 15:00:00,54112553.549437,0.0,64279206.97520022,0.0,38590355.88434043,0.0,57013475.0399798,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,328773956.3867861,0.0,28186614.07570998,0.0 - 04/06 16:00:00,57794283.07795227,0.0,67712163.92508945,0.0,39955787.69704628,0.0,59127979.797372389,0.0,17891.108882585515,17611.020235445572,17633.71383253841,21227.117743576004,492296872.9963842,0.0,28186614.07570998,0.0 - 04/06 17:00:00,51440784.864212099,0.0,61184224.9172643,0.0,35684795.87961702,0.0,53821338.42127843,0.0,22983.564477667012,22623.752488189417,22652.90550242886,27269.121916159504,546036783.8663731,0.0,35233267.594637479,0.0 - 04/06 18:00:00,65401763.59301311,0.0,75202499.98554224,0.0,43353359.90082495,0.0,63996693.501363817,0.0,17887.40349242382,17607.372853858094,17630.06175092748,21222.721439592588,515605531.3132313,0.0,14093307.03785499,0.0 - 04/06 19:00:00,57297185.041387129,0.0,67598864.8862168,0.0,33180248.684481324,0.0,52171548.46341431,0.0,17891.108882585515,17611.020235445572,17633.71383253841,21227.117743576004,477954505.5744233,0.0,63419881.67034747,0.0 - 04/06 20:00:00,44620307.611425,0.0,55210648.25130965,0.0,19937441.669990317,0.0,36354392.957470659,0.0,15335.236185073298,15095.16020181049,15114.611856461497,18194.67235163658,385585640.6321303,0.0,63419881.67034747,69761869.8373822 - 04/06 21:00:00,47005212.25308466,0.0,57629975.75611891,0.0,22007625.52302137,0.0,38969237.34781796,0.0,12802.206012981016,12601.785089598625,12618.023775924037,15189.328744155097,357172887.9216145,0.0,49326574.63249246,69761869.8373822 - 04/06 22:00:00,50291128.443467069,0.0,61504082.182134088,0.0,24908768.1746241,0.0,42688908.6250288,0.0,10239.804133758807,10079.498089811239,10092.486551892942,12149.13672735095,332612219.2353842,0.0,35233267.594637479,69761869.8373822 - 04/06 23:00:00,51155932.14306371,0.0,62180199.42687918,0.0,25780255.718119153,0.0,43922811.00705962,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,298184894.9649408,0.0,35233267.594637479,62010550.96656194 - 04/06 24:00:00,53883622.47017597,0.0,64819083.35899177,0.0,28635025.304167034,0.0,47303071.91992564,0.0,5128.409227478876,5048.123024318898,5054.628046086938,6084.661784988465,271377762.55160388,0.0,35233267.594637479,46507913.22492146 - 04/07 01:00:00,62254487.77123088,0.0,73114955.8212071,0.0,36792773.31437759,0.0,57179340.85581144,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,267696354.2630242,0.0,21139960.556782485,23253956.61246073 - 04/07 02:00:00,22975221.691587889,0.0,32010760.07477332,0.0,3325949.645510735,0.0,13647755.752350234,0.0,1281.6450741376962,1261.580681411418,1263.2063568862796,1520.6229570642173,91137085.41442077,0.0,14093307.03785499,0.0 - 04/07 03:00:00,47975902.21104605,0.0,57562680.999804567,0.0,25587774.312840746,0.0,42909316.57144503,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,193209602.09475056,0.0,14093307.03785499,0.0 - 04/07 04:00:00,49311147.270740788,0.0,58586337.68130662,0.0,27285557.969397606,0.0,44455622.07268623,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,198819500.54698093,0.0,14093307.03785499,0.0 - 04/07 05:00:00,52761847.45453378,0.0,62154183.87523543,0.0,30442755.696795957,0.0,48209447.40517825,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,212686178.31263537,0.0,14093307.03785499,0.0 - 04/07 06:00:00,55769527.26422369,0.0,65258854.833649437,0.0,32953420.553104424,0.0,51431319.330875139,0.0,1273.4434303364224,1253.5074358738687,1255.1227081478363,1510.8920197699975,224467798.12071396,0.0,14093307.03785499,0.0 - 04/07 07:00:00,46946813.51678075,0.0,56570631.49123143,0.0,26697955.714300764,0.0,43455172.232096318,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,192688574.63350804,0.0,14093307.03785499,15502637.741640486 - 04/07 08:00:00,44593134.50242018,0.0,57797987.22109354,0.0,31615888.40797607,0.0,45729221.69467936,0.0,1271.6178446421598,1251.7104300642123,1253.3233867127777,1508.7260320306448,198763591.5225884,0.0,56373228.15141996,38756594.35410121 - 04/07 09:00:00,53200886.705137539,0.0,69741268.00885117,0.0,38362988.3170824,0.0,57940930.82410138,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,295355512.64084956,0.0,56373228.15141996,38756594.35410121 - 04/07 10:00:00,50355681.60715959,0.0,72738113.59863486,0.0,44139290.17993501,0.0,64870511.67231083,0.0,7635.2409182466449,7515.709797318706,7525.394556505104,9058.921894435922,346350558.85746327,0.0,28186614.07570998,0.0 - 04/07 11:00:00,33212966.00452651,0.0,62702938.004056628,0.0,39804173.550451669,0.0,58399975.56316927,0.0,7651.155487514214,7531.3752210355319,7541.0801667193259,9077.803923375437,308605146.3973243,0.0,28186614.07570998,0.0 - 04/07 12:00:00,29220085.29451381,0.0,59227086.67290968,0.0,38763420.343367788,0.0,56053750.64712255,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,259671460.16014735,0.0,28186614.07570998,0.0 - 04/07 13:00:00,16788619.864353867,0.0,62792332.714646209,0.0,39766952.451064418,0.0,55423101.22666837,0.0,5112.795412495462,5032.753646521804,5039.238863277833,6066.136589526604,251274334.49929098,0.0,28186614.07570998,0.0 - 04/07 14:00:00,36742.039590058266,0.0,46311612.11194421,0.0,29810203.496001103,0.0,42394789.085991207,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,233617736.2347182,0.0,28186614.07570998,0.0 - 04/07 15:00:00,355066.0769138572,0.0,42636444.61490042,0.0,23543132.508302247,0.0,36861501.99661897,0.0,10258.620918643544,10098.020294418338,10111.0326242512,12171.462124335854,256897034.65867169,0.0,28186614.07570998,0.0 - 04/07 16:00:00,11101930.497142975,0.0,38546272.50295233,0.0,18502009.8444262,0.0,32450426.74307476,0.0,12827.716031319813,12626.89574384144,12643.166787807837,15219.595407136816,292543185.87997749,0.0,28186614.07570998,0.0 - 04/07 17:00:00,24704967.222234414,0.0,43226881.261359769,0.0,17803995.028356956,0.0,33967818.457128588,0.0,15371.312592911409,15130.671826753845,15150.16924175819,18237.47563241535,349706327.4268994,0.0,35233267.594637479,0.0 - 04/07 18:00:00,47651829.7558732,0.0,63411059.35343863,0.0,31218732.714019769,0.0,50559616.07880741,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,460923269.4641926,0.0,14093307.03785499,0.0 - 04/07 19:00:00,49157953.35555304,0.0,65285119.9222569,0.0,29225542.89140817,0.0,48673286.63778044,0.0,10229.73882184678,10069.590352234878,10082.566047185453,12137.194618983907,345410626.23190227,0.0,63419881.67034747,0.0 - 04/07 20:00:00,39816744.44538112,0.0,55391157.69438773,0.0,18451387.381480695,0.0,35697341.18495223,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,263991843.96753554,0.0,63419881.67034747,69761869.8373822 - 04/07 21:00:00,46555511.329544369,0.0,61569750.08784938,0.0,23480593.379467638,0.0,42031541.594072747,0.0,5099.625560157335,5019.789970678864,5026.258482415394,6050.511062451586,249943662.66346554,0.0,49326574.63249246,69761869.8373822 - 04/07 22:00:00,52494083.49259571,0.0,67109175.27101849,0.0,28036267.701766574,0.0,47793537.619477357,0.0,5097.3103940984469,5017.511048976521,5023.976624089833,6047.764206298037,271704688.26932439,0.0,35233267.594637479,69761869.8373822 - 04/07 23:00:00,56554921.70130636,0.0,70892933.09315706,0.0,31071385.38254113,0.0,51667590.87748965,0.0,5093.773721345689,5014.029743495475,5020.490832591345,6043.56807907999,286405535.6099392,0.0,35233267.594637479,62010550.96656194 - 04/07 24:00:00,62670690.07582205,0.0,76794386.9554541,0.0,36102761.74533635,0.0,57962196.367489058,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,309620820.8222197,0.0,35233267.594637479,46507913.22492146 - 04/08 01:00:00,73141097.04395554,0.0,87005646.68958801,0.0,45563187.29330835,0.0,69553695.36837235,0.0,2539.432909515442,2499.677613586237,2502.8987033281325,3012.9402110265448,313261444.37006726,0.0,21139960.556782485,23253956.61246073 - 04/08 02:00:00,33668236.31339079,0.0,46407422.7106342,0.0,11324140.421202394,0.0,26304560.359521018,0.0,1268.4070713236397,1248.5499220009629,1250.1588060123023,1504.9165720509732,136683676.34174479,0.0,14093307.03785499,0.0 - 04/08 03:00:00,62298440.47056572,0.0,74730331.99491248,0.0,36621114.42146266,0.0,57795892.06382316,0.0,1267.0644895209508,1247.2283585668534,1248.8355396088187,1503.3236499915807,250405006.28644154,0.0,14093307.03785499,0.0 - 04/08 04:00:00,65864257.9227155,0.0,78066845.01586449,0.0,39681912.36896761,0.0,61821168.14895161,0.0,1265.3398915471713,1245.5307594960769,1247.1357530083693,1501.2774803276432,264367605.44026456,0.0,14093307.03785499,0.0 - 04/08 05:00:00,68512092.40082714,0.0,80628012.97680423,0.0,42147847.2281585,0.0,64623613.56220799,0.0,1263.9233747347699,1244.1364185186247,1245.73961528025,1499.5968372015,274823792.65264436,0.0,14093307.03785499,0.0 - 04/08 06:00:00,65228861.450838718,0.0,76177946.23785697,0.0,38799638.93523622,0.0,60260414.939667928,0.0,1262.47434789568,1242.7100764650166,1244.311435239322,1497.8776221696747,259357406.09797073,0.0,14093307.03785499,0.0 - 04/08 07:00:00,40194732.47619804,0.0,49846090.171546179,0.0,17319651.304997948,0.0,33104489.906119639,0.0,5062.755661857021,4983.497277514514,4989.919022411584,6006.766335528805,216219541.72918476,0.0,14093307.03785499,15502637.741640486 - 04/08 08:00:00,36379924.872212078,0.0,55721353.24035859,0.0,24824951.51657563,0.0,41549017.21700721,0.0,20278.451778137507,19960.98883260932,19986.710604095908,24059.608958667653,461903983.4707909,0.0,56373228.15141996,38756594.35410121 - 04/08 09:00:00,27202953.90340185,0.0,61172666.56317302,0.0,31863804.774788739,0.0,48502993.935357067,0.0,17811.28758606068,17532.44855620849,17555.040905672984,21132.412822215498,435254702.7092881,0.0,56373228.15141996,38756594.35410121 - 04/08 10:00:00,11527031.127776448,0.0,59642197.14277419,0.0,32047812.97642199,0.0,49678231.02687918,0.0,12734.434303364225,12535.074358738684,12551.227081478362,15108.920197699974,343442033.6624643,0.0,28186614.07570998,0.0 - 04/08 11:00:00,3280382.08537678,0.0,60264631.81747204,0.0,34569347.0601304,0.0,52185397.97606998,0.0,10225.590824990924,10065.507293043607,10078.477726555666,12132.273179053209,303306415.4241655,0.0,28186614.07570998,0.0 - 04/08 12:00:00,0.0,0.0,61007263.78563343,0.0,36876920.17648953,0.0,52917352.9370803,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,227440409.6537298,0.0,28186614.07570998,0.0 - 04/08 13:00:00,0.0,0.0,53614150.68753103,0.0,33457547.310981536,0.0,45350221.463817868,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,209299925.69420875,0.0,28186614.07570998,0.0 - 04/08 14:00:00,0.0,416287.3836611137,41204655.567650418,0.0,24932332.194320356,0.0,35521377.440793197,0.0,5144.014055739574,5063.4835560820979,5070.008371463131,6103.176318046869,178628821.48755796,416287.3836611137,28186614.07570998,0.0 - 04/08 15:00:00,0.0,4665554.014576955,31346349.508470954,0.0,16089097.109074032,0.0,26271009.04379658,0.0,7722.406822618397,7601.511103196734,7611.306426123314,9162.340912645881,189257690.61384515,4665554.014576955,28186614.07570998,0.0 - 04/08 16:00:00,0.0,0.0,29336828.664474776,0.0,10483494.608411346,0.0,21909869.34073756,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,254415009.5643797,0.0,28186614.07570998,0.0 - 04/08 17:00:00,10613123.497413215,0.0,31933679.970294425,0.0,9614764.345189423,0.0,22917786.259712526,0.0,12867.220385646113,12665.781650131234,12682.102802556885,15266.46581557106,267613008.42666865,0.0,35233267.594637479,0.0 - 04/08 18:00:00,32846273.51536578,0.0,48203087.85102162,0.0,20940536.902538506,0.0,36132585.749321859,0.0,17996.174769766345,17714.441296562563,17737.268162248623,21351.774408104586,407401255.1103034,0.0,14093307.03785499,0.0 - 04/08 19:00:00,37333596.57961401,0.0,53126953.49244703,0.0,20600017.717461114,0.0,36871929.1737497,0.0,17952.5866076262,17671.535515232084,17694.307092439598,21300.05871758774,416559053.5216601,0.0,63419881.67034747,0.0 - 04/08 20:00:00,30147557.569952854,0.0,45186547.88232319,0.0,11472521.73840657,0.0,25938604.552407456,0.0,10243.70798080364,10083.340821402322,10096.334235235901,12153.76849285064,266022977.25214309,0.0,63419881.67034747,69761869.8373822 - 04/08 21:00:00,37427050.335227709,0.0,51891351.98369594,0.0,17017239.614725587,0.0,32943869.26915747,0.0,10221.373424242181,10061.355916490344,10074.32100052999,12127.26939405291,292223062.2499422,0.0,49326574.63249246,69761869.8373822 - 04/08 22:00:00,43501273.51761233,0.0,57381376.90834379,0.0,21743339.872665846,0.0,38967243.54859182,0.0,5109.619373943692,5029.627329446052,5036.108517623432,6062.3683410217749,238049038.67053963,0.0,35233267.594637479,69761869.8373822 - 04/08 23:00:00,47110271.87398579,0.0,60502241.64037567,0.0,24498581.139774607,0.0,42323101.592503,0.0,5108.543390733541,5028.56819095378,5035.048014323108,6061.091728015734,250873901.01313324,0.0,35233267.594637479,62010550.96656194 - 04/08 24:00:00,51912795.764667879,0.0,64782694.16109213,0.0,28477425.074564924,0.0,47158473.1616876,0.0,2555.3433560605456,2515.338979122586,2518.5802501324976,3031.8173485132276,230567275.92379643,0.0,35233267.594637479,46507913.22492146 - 04/09 01:00:00,60680462.292621459,0.0,73115548.24751032,0.0,36778184.2968342,0.0,57112665.3809966,0.0,2554.809686971846,2514.813664723026,2518.054258811716,3031.1841705108874,265914762.62962545,0.0,21139960.556782485,23253956.61246073 - 04/09 02:00:00,22265640.11578781,0.0,32341239.998652519,0.0,3662874.8239035776,0.0,13925299.088724744,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,91300922.90395762,0.0,14093307.03785499,0.0 - 04/09 03:00:00,48803502.49003582,0.0,59564669.24678298,0.0,27179495.871454717,0.0,44791998.84033091,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,199424765.6173204,0.0,14093307.03785499,0.0 - 04/09 04:00:00,50150895.5795684,0.0,60367761.98716741,0.0,28631130.141313048,0.0,46098630.22327718,0.0,1277.9363487561082,1257.9300168175412,1259.550988038458,1516.2226959697148,204370322.10982055,0.0,14093307.03785499,0.0 - 04/09 05:00:00,50600465.286187198,0.0,60384978.98504088,0.0,29453630.443442249,0.0,46581444.77031683,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,206146351.54562668,0.0,14093307.03785499,0.0 - 04/09 06:00:00,48395955.08678758,0.0,57483609.91047698,0.0,28357619.34276293,0.0,44678618.53140661,0.0,1279.975516719851,1259.9372612264049,1261.5608189866178,1518.6420909188688,198068219.3477004,0.0,14093307.03785499,0.0 - 04/09 07:00:00,38408537.4255405,0.0,47058891.190937358,0.0,21592543.768152667,0.0,35489543.485249858,0.0,5126.580296550785,5046.322725645672,5052.825427545119,6082.49182825687,219259108.87067474,0.0,14093307.03785499,15502637.741640486 - 04/09 08:00:00,33335464.42476362,0.0,45695928.763247158,0.0,23429906.374157877,0.0,37098057.563121769,0.0,20567.05687973297,20245.07576750008,20271.163613998426,24402.027894976673,447306524.0876398,0.0,56373228.15141996,38756594.35410121 - 04/09 09:00:00,19563540.31751865,0.0,41423919.98933918,0.0,24117194.49418588,0.0,35455803.554196689,0.0,18021.322287251227,17739.195124969963,17762.053888490493,21381.610977660646,390215514.5573808,0.0,56373228.15141996,38756594.35410121 - 04/09 10:00:00,3372519.0672748957,0.0,34718270.31381585,0.0,20769924.6240511,0.0,31788655.22140422,0.0,12888.080150899912,12686.314851868598,12702.662463420469,15291.2151307785,283495150.575629,0.0,28186614.07570998,0.0 - 04/09 11:00:00,0.0,0.0,30948099.650757739,0.0,19902082.59495472,0.0,30254566.12705966,0.0,10319.209373109612,10157.660225326976,10170.749407298134,12243.34801275635,235512229.63933999,0.0,28186614.07570998,0.0 - 04/09 12:00:00,0.0,0.0,26325478.929810488,0.0,18972021.037924064,0.0,27794116.532542178,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,150317641.97191683,0.0,28186614.07570998,0.0 - 04/09 13:00:00,4309712.40006471,0.0,25698561.591419113,0.0,18217045.62619001,0.0,26976161.51391183,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,152434661.48240657,0.0,28186614.07570998,0.0 - 04/09 14:00:00,20349080.478058675,0.0,34548121.558330979,0.0,20682372.584137106,0.0,32118950.80239299,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,184931705.77374066,0.0,28186614.07570998,0.0 - 04/09 15:00:00,27945202.18328809,0.0,41105353.08722709,0.0,23506351.617967305,0.0,36395340.12928282,0.0,7737.049870136405,7615.924911074191,7625.738807663407,9179.714329566512,244722587.52415113,0.0,28186614.07570998,0.0 - 04/09 16:00:00,35811609.76946219,0.0,48333383.07227999,0.0,27387772.2146368,0.0,41844949.312301028,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,346062531.319436,0.0,28186614.07570998,0.0 - 04/09 17:00:00,43468843.39000887,0.0,55891043.842988248,0.0,30856983.79822115,0.0,47006041.21396588,0.0,12854.410549833105,12653.172354687547,12669.477258749017,15251.26743436042,369564891.5966525,0.0,35233267.594637479,0.0 - 04/09 18:00:00,54084835.89729982,0.0,66582204.50120327,0.0,37693470.26321729,0.0,56208709.32501193,0.0,17961.863908977062,17680.66757869962,17703.450923503002,21311.065881504175,483334593.84039428,0.0,14093307.03785499,0.0 - 04/09 19:00:00,46293618.6440849,0.0,59082849.513116,0.0,27344801.32773234,0.0,44457208.26730442,0.0,17943.031037927743,17662.129539759848,17684.888996407917,21288.72139889904,445662053.255018,0.0,63419881.67034747,0.0 - 04/09 20:00:00,35484465.213118318,0.0,48396284.036384899,0.0,15287070.920622744,0.0,30240677.227789798,0.0,10253.16059310157,10092.645451291344,10105.650855090238,12164.98365651374,282827683.39950457,0.0,63419881.67034747,69761869.8373822 - 04/09 21:00:00,40110908.28076202,0.0,52792982.33577513,0.0,18755241.142553636,0.0,34741455.42132069,0.0,10253.16059310157,10092.645451291344,10105.650855090238,12164.98365651374,299819773.1820003,0.0,49326574.63249246,69761869.8373822 - 04/09 22:00:00,44597054.009578477,0.0,57067745.616808068,0.0,22255789.84848121,0.0,39231755.325305279,0.0,5126.580296550785,5046.322725645672,5052.825427545119,6082.49182825687,239861937.80096743,0.0,35233267.594637479,69761869.8373822 - 04/09 23:00:00,47452628.001054588,0.0,59719377.4435638,0.0,24423605.82466268,0.0,41989093.36711517,0.0,5126.580296550785,5046.322725645672,5052.825427545119,6082.49182825687,250294297.63719065,0.0,35233267.594637479,62010550.96656194 - 04/09 24:00:00,51706981.11671325,0.0,63773954.15661739,0.0,28103367.81128615,0.0,46533934.481159139,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,228473034.0661731,0.0,35233267.594637479,46507913.22492146 - 04/10 01:00:00,60253752.08023305,0.0,72050862.62636453,0.0,36154898.73664871,0.0,56297734.26527499,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,263112044.20891846,0.0,21139960.556782485,23253956.61246073 - 04/10 02:00:00,21206404.24652221,0.0,30710846.792049275,0.0,2723686.464272021,0.0,12857843.365012436,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,86679616.42070562,0.0,14093307.03785499,0.0 - 04/10 03:00:00,46197916.818137127,0.0,56292949.12865037,0.0,24761408.667696306,0.0,41853738.44689601,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,188279941.06099395,0.0,14093307.03785499,0.0 - 04/10 04:00:00,48005901.588903468,0.0,57705391.07591074,0.0,26867489.434455545,0.0,43786811.48575356,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,195539521.58463747,0.0,14093307.03785499,0.0 - 04/10 05:00:00,49111597.30155264,0.0,58515801.746851619,0.0,28304480.63808305,0.0,45089128.63423247,0.0,1280.9427160759508,1260.8893188961543,1262.5141034798492,1519.7896360346122,200187897.1088714,0.0,14093307.03785499,0.0 - 04/10 06:00:00,48872285.795999597,0.0,57974022.66083646,0.0,28805256.052378168,0.0,45274448.00478415,0.0,1280.9427160759508,1260.8893188961543,1262.5141034798492,1519.7896360346122,200092901.30215,0.0,14093307.03785499,0.0 - 04/10 07:00:00,41960560.56677519,0.0,50687671.116402078,0.0,24435359.655374536,0.0,39256357.82422146,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,232993228.74203778,0.0,14093307.03785499,15502637.741640486 - 04/10 08:00:00,51143474.72394574,0.0,60531260.55969697,0.0,34883288.714040789,0.0,51155958.5184883,0.0,20513.636909915505,20192.492097275594,20218.512184347754,24338.64713995386,504661820.5095455,0.0,56373228.15141996,38756594.35410121 - 04/10 09:00:00,42234018.84621902,0.0,53318322.42657476,0.0,33256440.34189209,0.0,46296077.58687216,0.0,17973.799401001095,17692.416218369457,17715.21470249421,21325.226887184952,444048825.154137,0.0,56373228.15141996,38756594.35410121 - 04/10 10:00:00,50538625.05744121,0.0,60575356.8151588,0.0,38680204.53808656,0.0,55673894.873962,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,397866503.5910148,0.0,28186614.07570998,0.0 - 04/10 11:00:00,36600015.99562261,0.0,49046362.82497871,0.0,32931697.2574412,0.0,47448493.32410133,0.0,10296.542430157862,10135.348137595649,10148.40856816442,12216.454550194507,320094882.67214867,0.0,28186614.07570998,0.0 - 04/10 12:00:00,28654134.421192945,0.0,46047396.24055889,0.0,30248054.169408595,0.0,43664059.19725392,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,225793871.03267158,0.0,28186614.07570998,0.0 - 04/10 13:00:00,21141808.377429159,0.0,37678106.080199699,0.0,25412204.39633868,0.0,36450581.48673075,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,197955934.52706034,0.0,28186614.07570998,0.0 - 04/10 14:00:00,13318521.29064995,0.0,30263156.594003306,0.0,20223570.651426455,0.0,29804035.4570527,0.0,5167.976487713387,5087.0708517131729,5093.626061732132,6131.606828881535,170938292.82127724,0.0,28186614.07570998,0.0 - 04/10 15:00:00,2356170.930301468,0.0,21519079.84940237,0.0,13136576.010220465,0.0,20963897.870536165,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,174032241.22958539,0.0,28186614.07570998,0.0 - 04/10 16:00:00,0.0,0.0,12462466.939004114,0.0,2840091.37585471,0.0,10066321.186757094,0.0,12930.911584806106,12728.475751686792,12744.877691861353,15342.032992131853,218855552.3753659,0.0,28186614.07570998,0.0 - 04/10 17:00:00,0.0,0.0,10105512.870422729,0.0,0.0,0.0,5660228.5425157579,0.0,12929.120017805477,12726.712232001773,12743.111899701222,15339.907366273923,209225606.86975513,0.0,35233267.594637479,0.0 - 04/10 18:00:00,11217571.22511676,0.0,21781453.03143578,0.0,3139596.448562553,0.0,12932019.677386573,0.0,18094.19976536697,17810.931692570517,17833.8828959804,21468.07732354061,319816170.42135229,0.0,14093307.03785499,0.0 - 04/10 19:00:00,23210909.859213987,0.0,33656742.038785908,0.0,9158166.039357637,0.0,20353258.18773392,0.0,18063.829017566117,17781.036404492144,17803.94908477199,21432.04359059761,356670165.27583178,0.0,63419881.67034747,0.0 - 04/10 20:00:00,18527707.661172559,0.0,29558042.0100198,0.0,2520727.222650853,0.0,12828969.38506398,0.0,10303.1419529463,10141.844343623696,10154.913145216986,12224.284632063716,217602508.94476969,0.0,63419881.67034747,69761869.8373822 - 04/10 21:00:00,26245747.952391026,0.0,37239422.19450198,0.0,8190245.715034975,0.0,20512190.862641194,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,246235359.90853704,0.0,49326574.63249246,69761869.8373822 - 04/10 22:00:00,33260036.338975759,0.0,44195520.756732467,0.0,13683624.499429446,0.0,27597069.99742123,0.0,5141.764219933242,5061.26894187502,5067.790903499606,6100.506973744168,195673043.3331462,0.0,35233267.594637479,69761869.8373822 - 04/10 23:00:00,37979343.04197112,0.0,48849887.37206139,0.0,17344593.02313239,0.0,32259944.080754296,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,213347446.19084553,0.0,35233267.594637479,62010550.96656194 - 04/10 24:00:00,45145416.16436809,0.0,56117009.090483177,0.0,23278495.834461426,0.0,39808562.5416249,0.0,2564.655229660886,2524.5050736045848,2527.7581560628,3042.8655310839637,202724705.99642165,0.0,35233267.594637479,46507913.22492146 - 04/11 01:00:00,57013371.508760709,0.0,68068517.23635069,0.0,33865786.67473699,0.0,52967342.802175458,0.0,2560.4412025962035,2520.357017919725,2523.6047551848075,3037.8657488310198,250227185.6303382,0.0,21139960.556782485,23253956.61246073 - 04/11 02:00:00,20690846.79694423,0.0,29778000.788601065,0.0,2829125.075008155,0.0,12400984.94222019,0.0,1278.9733429949743,1258.9507767181468,1260.5730632923824,1517.4530500496256,84836378.4417721,0.0,14093307.03785499,0.0 - 04/11 03:00:00,48438084.36478578,0.0,58450359.4834438,0.0,26639422.51335232,0.0,44024089.24977556,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,196645459.13173677,0.0,14093307.03785499,0.0 - 04/11 04:00:00,54156101.86244674,0.0,64193406.774423588,0.0,31556869.534293318,0.0,49913743.598436329,0.0,1271.6178446421598,1251.7104300642123,1253.3233867127777,1508.7260320306448,218847481.46601925,0.0,14093307.03785499,0.0 - 04/11 05:00:00,54523938.788872238,0.0,64382997.69317456,0.0,32247851.938604226,0.0,50423799.05563365,0.0,1277.404843485923,1257.406832361513,1259.027129405858,1515.5920852554437,220692538.68211616,0.0,14093307.03785499,0.0 - 04/11 06:00:00,46756991.71520123,0.0,54343978.4161714,0.0,25237260.904187666,0.0,41398739.29077435,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,186862802.3869742,0.0,14093307.03785499,0.0 - 04/11 07:00:00,24074121.658046627,0.0,29506551.666855344,0.0,4956548.3926380029,0.0,15628868.162591115,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,150819369.45939563,0.0,14093307.03785499,15502637.741640486 - 04/11 08:00:00,20476964.97271739,0.0,32441066.3371697,0.0,13695716.40540417,0.0,20295120.95124167,0.0,20524.345650111703,20203.033190146307,20229.066860492538,24351.352651418907,394016942.73434296,0.0,56373228.15141996,38756594.35410121 - 04/11 09:00:00,21781742.05705387,0.0,43097519.44444854,0.0,19102524.274403186,0.0,34191837.29848455,0.0,17988.018311993434,17706.412529657668,17729.229049458096,21342.09708230816,387330348.17869266,0.0,56373228.15141996,38756594.35410121 - 04/11 10:00:00,3315633.8881442726,0.0,37176579.463985729,0.0,19376802.04778795,0.0,31376671.35283483,0.0,12875.695427450826,12674.124013575474,12690.455915987912,15276.521129160117,283906154.1029804,0.0,28186614.07570998,0.0 - 04/11 11:00:00,0.0,0.0,37586063.94552295,0.0,21684926.058114657,0.0,33854969.157893549,0.0,10311.620969935524,10150.190620020192,10163.270176642505,12234.344662057452,247419894.30469156,0.0,28186614.07570998,0.0 - 04/11 12:00:00,0.0,0.0,37561698.7975707,0.0,23297808.00254596,0.0,33877022.163963828,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,171976727.37843264,0.0,28186614.07570998,0.0 - 04/11 13:00:00,0.0,4741483.421981692,31242724.073693079,0.0,20160976.979006925,0.0,27869593.299408564,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,156564704.10654969,4741483.421981692,28186614.07570998,0.0 - 04/11 14:00:00,0.0,11225515.063575086,20560284.70740107,0.0,12576437.078416588,0.0,19082064.15714327,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,129561843.63049942,11225515.063575086,28186614.07570998,0.0 - 04/11 15:00:00,0.0,10812499.801321432,11720992.954018919,0.0,3074253.8500642289,0.0,9449298.30492227,0.0,7757.472010683286,7636.027339201064,7645.867139820733,9203.944419764355,140320464.38309539,10812499.801321432,28186614.07570998,0.0 - 04/11 16:00:00,0.0,4768748.457152575,7009378.969939705,0.0,0.0,0.0,3006562.4565841255,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,203489902.17201785,4768748.457152575,28186614.07570998,0.0 - 04/11 17:00:00,0.0,124109.65291840254,5079711.032147942,0.0,0.0,0.0,15242.32750841766,0.0,12932.012539894626,12729.559471118018,12745.962807775679,15343.339233318344,198598099.94724039,124109.65291840254,35233267.594637479,0.0 - 04/11 18:00:00,2650275.8847754329,0.0,17600115.655485847,0.0,0.0,0.0,7056726.941934196,0.0,18091.20385557733,17807.982684307513,17830.930087619257,21464.5227909361,298007820.3885802,0.0,14093307.03785499,0.0 - 04/11 19:00:00,15824867.429546668,0.0,29709732.80453998,0.0,2526012.328277074,0.0,16395882.324160073,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,334772626.1143969,0.0,63419881.67034747,0.0 - 04/11 20:00:00,11592181.737379685,0.0,24317909.74000546,0.0,0.0,0.0,7920279.508529015,0.0,10312.759642661353,10151.31146661208,10164.39246755963,12235.69565378084,198141344.2161242,0.0,63419881.67034747,69761869.8373822 - 04/11 21:00:00,20314182.460472414,0.0,32694143.962370725,0.0,4356878.650151374,0.0,16302930.575856865,0.0,10293.776308516892,10132.625320104988,10145.682242045506,12213.172652456848,227695059.1320986,0.0,49326574.63249246,69761869.8373822 - 04/11 22:00:00,27626162.266267055,0.0,39610299.111366439,0.0,10270996.946392622,0.0,23461424.286442035,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,177961110.6303677,0.0,35233267.594637479,69761869.8373822 - 04/11 23:00:00,33711374.442920338,0.0,45550327.72689164,0.0,14826320.581027586,0.0,29348586.674593077,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,200302457.87484224,0.0,35233267.594637479,62010550.96656194 - 04/11 24:00:00,43337254.163006898,0.0,55308755.45817364,0.0,22514055.288374906,0.0,39199458.968630287,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,198656956.95847909,0.0,35233267.594637479,46507913.22492146 - 04/12 01:00:00,55674006.36603748,0.0,67558245.85637705,0.0,33383381.400378609,0.0,52632981.922864537,0.0,2557.434705461695,2517.3975880587197,2520.6415117963636,3034.298654745977,247515796.4018836,0.0,21139960.556782485,23253956.61246073 - 04/12 02:00:00,18138423.58343804,0.0,28009615.644434565,0.0,2009868.4734059964,0.0,11140067.432541158,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,78439193.81936088,0.0,14093307.03785499,0.0 - 04/12 03:00:00,44657073.91262143,0.0,55185103.050622347,0.0,22839182.509574526,0.0,40283184.550945747,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,182090376.08440358,0.0,14093307.03785499,0.0 - 04/12 04:00:00,47003816.41463272,0.0,56784914.27070763,0.0,26456297.119209518,0.0,43116102.37752594,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,192509846.7222225,0.0,14093307.03785499,0.0 - 04/12 05:00:00,49420504.380636069,0.0,58877386.608001369,0.0,28741950.03127437,0.0,45520357.29617479,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,201678142.1969785,0.0,14093307.03785499,0.0 - 04/12 06:00:00,43920566.10112509,0.0,51141278.55269532,0.0,23400082.748130956,0.0,38717585.66666516,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,176297456.94950847,0.0,14093307.03785499,0.0 - 04/12 07:00:00,17855972.138223925,0.0,22542464.583254197,0.0,2430365.1170319158,0.0,9612606.730677642,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,129343330.02755985,0.0,14093307.03785499,15502637.741640486 - 04/12 08:00:00,14080305.754797243,0.0,18768155.744999336,0.0,12026325.110743477,0.0,16437829.411331635,0.0,20601.112683921325,20278.598421720762,20304.72946558066,24442.43380665619,369569363.78223589,0.0,56373228.15141996,38756594.35410121 - 04/12 09:00:00,9993401.549109765,0.0,26902484.972769735,0.0,4972936.750422351,0.0,15126407.321606709,0.0,18053.11636365161,17770.491459173114,17793.390551214616,21419.333435655186,327126025.1088088,0.0,56373228.15141996,38756594.35410121 - 04/12 10:00:00,0.0,0.0,25701686.558582069,0.0,10166635.986893563,0.0,20964509.281551724,0.0,12916.489419344149,12714.279367915595,12730.663014600672,15324.921643339141,250103704.22974579,0.0,28186614.07570998,0.0 - 04/12 11:00:00,0.0,627570.6725925296,25422471.314923847,0.0,13497916.066843253,0.0,22368425.725463496,0.0,10338.990510863428,10177.131685679089,10190.245958614321,12266.817577608806,215992281.74518693,627570.6725925296,28186614.07570998,0.0 - 04/12 12:00:00,0.0,9257143.04437574,23276521.499419579,0.0,13939040.55657037,0.0,20958301.893689123,0.0,5172.024808126503,5091.055794915008,5097.616139940017,6136.410006517806,135563448.24787665,9257143.04437574,28186614.07570998,0.0 - 04/12 13:00:00,0.0,28395349.79882784,8573618.194324878,0.0,7186173.439487849,0.0,9764886.56711398,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,102938901.60925935,28395349.79882784,28186614.07570998,0.0 - 04/12 14:00:00,0.0,26841667.566605204,1801743.5187870605,0.0,1039562.8755580809,0.0,2775540.294695104,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,83032377.08565544,26841667.566605204,28186614.07570998,0.0 - 04/12 15:00:00,0.0,24150806.8059552,0.0,0.0,0.0,0.0,0.0,0.0,7760.332727172708,7638.843270640177,7648.686699874923,9207.338550678793,116118724.49411977,24150806.8059552,28186614.07570998,0.0 - 04/12 16:00:00,0.0,17600779.244756324,0.0,0.0,0.0,200838.90284584487,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193528733.64187894,17801618.147602168,28186614.07570998,0.0 - 04/12 17:00:00,0.0,13066758.995258505,0.0,0.0,0.0,13142732.865565863,0.0,1510665.0642023367,12933.534074326944,12731.057185644957,12747.462452260655,15345.14447584175,193525913.47706748,27720156.925026709,35233267.594637479,0.0 - 04/12 18:00:00,0.0,1910040.7940815436,0.0,0.0,0.0,4752548.090463435,0.0,1623049.021739688,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,270953940.2255965,8285637.906284668,14093307.03785499,0.0 - 04/12 19:00:00,0.0,0.0,11163562.73836654,0.0,0.0,0.0,0.0,0.0,18105.683224217697,17822.2353757307,17845.20114509008,21481.70200911642,282080921.05332419,0.0,63419881.67034747,0.0 - 04/12 20:00:00,0.0,0.0,5395608.790601926,0.0,0.0,2586374.047491734,0.0,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,160180000.5797322,2586374.047491734,63419881.67034747,69761869.8373822 - 04/12 21:00:00,104154.75454729458,0.0,11998054.839612056,0.0,0.0,330052.9202436154,0.0,0.0,10340.076490866182,10178.20066446231,10191.316314885813,12268.106051427669,166821927.87207047,330052.9202436154,49326574.63249246,69761869.8373822 - 04/12 22:00:00,8242413.342291696,0.0,17884276.63804955,0.0,0.0,0.0,1154247.4287800608,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,104640796.54807687,0.0,35233267.594637479,69761869.8373822 - 04/12 23:00:00,13365187.2012129,0.0,22867520.883935285,0.0,0.0,0.0,8326943.6343886409,0.0,5167.304524745968,5086.409408451364,5092.963766133168,6130.809570471096,121878605.89082258,0.0,35233267.594637479,62010550.96656194 - 04/12 24:00:00,20158546.738634599,0.0,29514709.48198756,0.0,3077349.7011613456,0.0,15505522.782352165,0.0,2582.9251219455038,2542.4889473172418,2545.7652038323119,3064.542060874999,106904725.50642787,0.0,35233267.594637479,46507913.22492146 - 04/13 01:00:00,30768361.03723808,0.0,39851212.59333027,0.0,14058609.703796348,0.0,27352415.562591305,0.0,2582.1245057737148,2541.7008649409769,2544.976105931467,3063.5921603485696,150667215.99013705,0.0,21139960.556782485,23253956.61246073 - 04/13 02:00:00,1313167.745760921,0.0,6745826.469963592,0.0,0.0,0.0,0.0,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,27347865.86950077,0.0,14093307.03785499,0.0 - 04/13 03:00:00,24444018.8828948,0.0,34165141.920864079,0.0,1918133.2063711629,0.0,17182531.475362019,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163182,96965794.63348803,0.0,14093307.03785499,0.0 - 04/13 04:00:00,30796212.91067686,0.0,38853334.740638319,0.0,14698799.003156392,0.0,27064331.387285875,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,130668647.18975342,0.0,14093307.03785499,0.0 - 04/13 05:00:00,32972435.244333693,0.0,40815015.503671,0.0,16613665.869869546,0.0,29379139.494454259,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,139038795.27107907,0.0,14093307.03785499,0.0 - 04/13 06:00:00,26973676.914470164,0.0,32325021.12223487,0.0,11183405.667161372,0.0,21988416.67475659,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,111734098.35506118,0.0,14093307.03785499,0.0 - 04/13 07:00:00,7132413.258487247,0.0,10678561.538155362,0.0,0.0,0.0,1459636.2828980955,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,38555189.214448999,0.0,14093307.03785499,15502637.741640486 - 04/13 08:00:00,13906804.64027567,0.0,16700039.173335558,0.0,8065157.929825304,0.0,15329791.574388817,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,131234973.66864626,0.0,56373228.15141996,38756594.35410121 - 04/13 09:00:00,10015995.32590926,0.0,25144004.576466636,0.0,6545515.786674849,0.0,16333107.263756209,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.023926177739,251336008.38102133,0.0,56373228.15141996,38756594.35410121 - 04/13 10:00:00,0.0,6310644.874718908,9337767.10981119,0.0,1759381.4969298216,0.0,8385786.800482999,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,212963425.14363686,6310644.874718908,28186614.07570998,0.0 - 04/13 11:00:00,0.0,13559172.216040075,10505876.614574807,0.0,5386912.334983333,0.0,11040945.298799115,0.0,12933.589913508365,12731.112150653576,12747.517488097297,15345.210726898993,220460483.25332693,13559172.216040075,28186614.07570998,0.0 - 04/13 12:00:00,0.0,19808632.24230913,10901504.501959619,0.0,6779890.002478729,0.0,11044815.819363092,0.0,7760.6262988271159,7639.13224637557,7648.976047985046,9207.68686224043,144849327.5633428,19808632.24230913,28186614.07570998,0.0 - 04/13 13:00:00,0.0,25458353.994195656,5986621.019132415,0.0,3761967.141897645,0.0,5588799.997391948,0.0,7759.5292614173599,7638.052383291116,7647.894793386788,9206.385269230244,131444090.30479384,25458353.994195656,28186614.07570998,0.0 - 04/13 14:00:00,0.0,32449906.814725706,0.0,0.0,0.0,0.0,0.0,0.0,7757.96038905313,7636.508071916422,7646.348492009262,9204.523862057627,116083226.93413119,32449906.814725706,28186614.07570998,0.0 - 04/13 15:00:00,0.0,30464885.327784309,0.0,0.0,0.0,0.0,0.0,0.0,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,116025805.1033544,30464885.327784309,28186614.07570998,0.0 - 04/13 16:00:00,0.0,20172817.73964905,0.0,1500591.0201173274,0.0,7807901.786222791,0.0,1998619.655858365,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,270755589.560041,31479930.20184753,28186614.07570998,0.0 - 04/13 17:00:00,0.0,4520057.640882031,0.0,0.0,0.0,2842306.707915895,0.0,137932.0744803467,23273.88116715939,22909.52421574927,22939.045476027786,27613.571586172875,348249680.80239358,7500296.423278274,35233267.594637479,0.0 - 04/13 18:00:00,0.0,0.0,3886570.768928632,0.0,0.0,0.0,0.0,0.0,18106.94770405772,17823.480059902937,17846.447433164914,21483.202266178447,274822849.63682308,0.0,14093307.03785499,0.0 - 04/13 19:00:00,1777635.6356432457,0.0,10766401.037110938,0.0,0.0,0.0,473447.0707698347,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,283969136.72865286,0.0,63419881.67034747,0.0 - 04/13 20:00:00,0.0,0.0,4287464.16727262,0.0,0.0,38557.77780663628,0.0,0.0,15517.093901767326,15274.170902024149,15293.853230233624,18410.439590558224,236471471.61577259,38557.77780663628,63419881.67034747,69761869.8373822 - 04/13 21:00:00,635327.5268464232,0.0,10137341.284601644,0.0,0.0,788983.2125549265,0.0,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,204265178.90962518,788983.2125549265,49326574.63249246,69761869.8373822 - 04/13 22:00:00,7638047.445656495,0.0,15745040.778810524,0.0,0.0,0.0,48649.13143110461,0.0,10342.891490761616,10180.971595009243,10194.090816059579,12271.445941348447,178193576.7913421,0.0,35233267.594637479,69761869.8373822 - 04/13 23:00:00,12424785.543455188,0.0,20264375.359126256,0.0,0.0,0.0,7164660.575040234,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,155910338.04674659,0.0,35233267.594637479,62010550.96656194 - 04/13 24:00:00,18229805.161005357,0.0,25811662.99095552,0.0,1666558.9832366449,0.0,12914724.581905423,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,135982610.8560585,0.0,35233267.594637479,46507913.22492146 - 04/14 01:00:00,29544732.613507235,0.0,36963036.69741891,0.0,12776928.792547714,0.0,25390732.683502135,0.0,2583.2978838688297,2542.8558735831195,2546.132602920134,3064.9843286678285,143329605.26751969,0.0,21139960.556782485,23253956.61246073 - 04/14 02:00:00,0.0,0.0,3191171.619498246,0.0,0.0,0.0,0.0,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,22515470.020644346,0.0,14093307.03785499,0.0 - 04/14 03:00:00,17568639.299172447,0.0,25245695.184878939,0.0,0.0,0.0,9399677.474517718,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,71536864.3971794,0.0,14093307.03785499,0.0 - 04/14 04:00:00,22722758.641551585,0.0,28510047.756059208,0.0,6989741.3653367799,0.0,18004526.507924368,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,95543799.56709562,0.0,14093307.03785499,0.0 - 04/14 05:00:00,25078960.40296608,0.0,30716709.009738365,0.0,10673474.344315662,0.0,20684198.51751748,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,106465112.17326118,0.0,14093307.03785499,0.0 - 04/14 06:00:00,24161157.979613834,0.0,28972917.036844315,0.0,10454714.379997805,0.0,19919214.857680959,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,102816299.34184213,0.0,14093307.03785499,0.0 - 04/14 07:00:00,15988301.563932822,0.0,20549629.30620707,0.0,5410285.05594467,0.0,12759684.882671714,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,74019670.70747985,0.0,14093307.03785499,15502637.741640486 - 04/14 08:00:00,23825454.861284596,0.0,30469035.685990856,0.0,15861906.024558137,0.0,24467408.177319409,0.0,1291.266995454923,1271.0519697554565,1272.6898499520635,1532.0389994157907,113945176.88163463,0.0,56373228.15141996,38756594.35410121 - 04/14 09:00:00,41165779.003825377,0.0,48238577.0660546,0.0,28717113.11295622,0.0,42331286.77380156,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,237713187.0008581,0.0,56373228.15141996,38756594.35410121 - 04/14 10:00:00,44384700.574754867,0.0,52419711.28321847,0.0,30827546.025935674,0.0,45736729.93247995,0.0,7737.049870136405,7615.924911074191,7625.738807663407,9179.714329566512,289139028.32277479,0.0,28186614.07570998,0.0 - 04/14 11:00:00,47667964.86141582,0.0,56171967.91647644,0.0,32569207.746507843,0.0,48519004.316359329,0.0,7734.5697319960149,7613.483599959058,7623.294350669723,9176.771740335631,300661374.76341697,0.0,28186614.07570998,0.0 - 04/14 12:00:00,49313756.096318859,0.0,58081471.14952658,0.0,33168601.337863726,0.0,49641686.49656351,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,267377631.4914992,0.0,28186614.07570998,0.0 - 04/14 13:00:00,50055694.67342931,0.0,58847943.23033784,0.0,33125190.144586415,0.0,49771183.57213723,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,269003752.25377479,0.0,28186614.07570998,0.0 - 04/14 14:00:00,50321517.08515513,0.0,59108220.91167356,0.0,33129312.677639955,0.0,49854578.97494863,0.0,7737.84926457742,7616.711790846105,7626.526701410223,9180.662780556013,308195931.5840204,0.0,28186614.07570998,0.0 - 04/14 15:00:00,49097643.52904838,0.0,57995326.73512006,0.0,32695668.536743568,0.0,49278631.79482357,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,343427724.6042501,0.0,28186614.07570998,0.0 - 04/14 16:00:00,46346416.64882119,0.0,54650539.14124375,0.0,31205088.22659169,0.0,46882401.921372327,0.0,12899.011716387015,12697.075281658717,12713.436759122667,15304.185015945439,372093797.5212388,0.0,28186614.07570998,0.0 - 04/14 17:00:00,50195297.85167567,0.0,58738890.43584093,0.0,31638049.67667931,0.0,48139781.400727707,0.0,15484.716518664281,15242.300392893574,15261.941652699079,18372.025061427154,420411560.4173863,0.0,35233267.594637479,0.0 - 04/14 18:00:00,53139778.451390389,0.0,61505990.199615199,0.0,33851424.50418019,0.0,50729195.54399974,0.0,18062.123443729644,17779.357531732254,17802.26804861319,21430.019992346388,469491957.1583028,0.0,14093307.03785499,0.0 - 04/14 19:00:00,42079846.40798086,0.0,50233988.48358988,0.0,22452845.802351707,0.0,36675809.06618984,0.0,10319.209373109612,10157.660225326976,10170.749407298134,12243.34801275635,305849971.0266802,0.0,63419881.67034747,0.0 - 04/14 20:00:00,28085184.13478858,0.0,36489366.32250278,0.0,8499772.187940132,0.0,19818611.936278229,0.0,7739.4070298322089,7618.245168995229,7628.062055473601,9182.511009567264,208698545.53143559,0.0,63419881.67034747,69761869.8373822 - 04/14 21:00:00,30443876.433935688,0.0,38765695.4397258,0.0,10714134.195028203,0.0,22551968.95216826,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,179679415.65414188,0.0,49326574.63249246,69761869.8373822 - 04/14 22:00:00,33299121.610651576,0.0,41589930.20713921,0.0,13374381.97687132,0.0,25863487.82618352,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,191315122.91058106,0.0,35233267.594637479,69761869.8373822 - 04/14 23:00:00,35058622.14385161,0.0,43332774.82417158,0.0,14992734.450137057,0.0,27881491.99295347,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,198445850.41537095,0.0,35233267.594637479,62010550.96656194 - 04/14 24:00:00,38100582.38846736,0.0,46292760.128331657,0.0,17967698.01920856,0.0,31479987.510942617,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,211029229.3366856,0.0,35233267.594637479,46507913.22492146 - 04/15 01:00:00,46017825.52280279,0.0,54067177.537393707,0.0,25774496.252306776,0.0,40891074.88426243,0.0,2578.189910665338,2537.82786665302,2541.0981168899077,3058.92391344521,205328317.5043182,0.0,21139960.556782485,23253956.61246073 - 04/15 02:00:00,8640909.281069031,0.0,14063161.306296245,0.0,0.0,0.0,1848231.8600450266,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,43845331.55021693,0.0,14093307.03785499,0.0 - 04/15 03:00:00,31234185.669149415,0.0,38546563.627839948,0.0,7970394.835922711,0.0,24097665.02726258,0.0,1289.094955332669,1268.91393332651,1270.5490584449536,1529.461956722605,121137680.8139509,0.0,14093307.03785499,0.0 - 04/15 04:00:00,33853788.1258782,0.0,40484354.94786624,0.0,16407524.417421196,0.0,28934035.140444388,0.0,1288.0509527375028,1267.8862747867293,1269.5200756622535,1528.2232874954689,138952952.75806505,0.0,14093307.03785499,0.0 - 04/15 05:00:00,35520187.49000581,0.0,42061911.73345461,0.0,18567627.768144024,0.0,30941082.36739879,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,146356856.094026,0.0,14093307.03785499,0.0 - 04/15 06:00:00,36014620.22917906,0.0,42455674.50358136,0.0,19660348.471968067,0.0,31935020.941386627,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,149324203.3048657,0.0,14093307.03785499,0.0 - 04/15 07:00:00,29759241.03077675,0.0,35890880.02955423,0.0,15323876.462160329,0.0,26034705.137517789,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,184147015.19964228,0.0,14093307.03785499,15502637.741640486 - 04/15 08:00:00,38361044.1584248,0.0,44488082.263953048,0.0,25349927.776513038,0.0,37887100.4823712,0.0,20651.807189624073,20328.499295479687,20354.6946417087,24502.580902544258,455101449.9869463,0.0,56373228.15141996,38756594.35410121 - 04/15 09:00:00,38618887.18560474,0.0,45147886.80190624,0.0,29509327.591534556,0.0,41709898.9981595,0.0,18085.565836610887,17802.43292957977,17825.37318146609,21457.833496648836,425602340.1767052,0.0,56373228.15141996,38756594.35410121 - 04/15 10:00:00,23343741.96057403,0.0,30401245.40691772,0.0,22204405.230530204,0.0,31427648.07783654,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,300804568.2910667,0.0,28186614.07570998,0.0 - 04/15 11:00:00,7585532.192496325,0.0,17698048.68227008,0.0,15636806.29224528,0.0,22287193.820228265,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,217949603.0794065,0.0,28186614.07570998,0.0 - 04/15 12:00:00,0.0,0.0,14584716.560817704,0.0,13457775.209322114,0.0,18981366.109100015,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,124420861.91851068,0.0,28186614.07570998,0.0 - 04/15 13:00:00,9427846.495613601,0.0,17149067.48049623,0.0,13122948.187891394,0.0,19482223.30817109,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,136576754.62167234,0.0,28186614.07570998,0.0 - 04/15 14:00:00,10883724.04562933,0.0,17468879.14800553,0.0,12037543.098101972,0.0,18557499.86054734,0.0,5173.508727977128,5092.516483723547,5099.078710995175,6138.170620775871,136359434.5087824,0.0,28186614.07570998,0.0 - 04/15 15:00:00,11552911.58093623,0.0,17802631.102467937,0.0,12101692.906789856,0.0,18767115.962051985,0.0,7757.472010683286,7636.027339201064,7645.867139820733,9203.944419764355,176300270.82633598,0.0,28186614.07570998,0.0 - 04/15 16:00:00,24447250.886533347,0.0,32035005.095304327,0.0,17249295.4951894,0.0,27779020.78160521,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,294984533.00412628,0.0,28186614.07570998,0.0 - 04/15 17:00:00,34811272.5770735,0.0,43076059.45446678,0.0,21504035.66281486,0.0,34564782.94952679,0.0,12925.739761424817,12723.38489416534,12739.780274250372,15335.896821110588,327365436.9473059,0.0,35233267.594637479,0.0 - 04/15 18:00:00,45126926.92888869,0.0,53522234.11260809,0.0,28453570.758977638,0.0,43685895.227082807,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,441367848.391363,0.0,14093307.03785499,0.0 - 04/15 19:00:00,37007453.758259687,0.0,45823793.56914603,0.0,18284593.44749345,0.0,31968643.147721076,0.0,18070.33129092107,17787.436883544724,17810.357811495112,21439.758289726222,403472867.31509396,0.0,63419881.67034747,0.0 - 04/15 20:00:00,25268577.086752975,0.0,34402748.03830616,0.0,5799483.42495916,0.0,17113879.10492664,0.0,10329.326166554296,10167.618638482998,10180.72065288594,12255.351201996722,237143547.6306568,0.0,63419881.67034747,69761869.8373822 - 04/15 21:00:00,28428383.458421444,0.0,37463625.40296814,0.0,8452651.549335324,0.0,20462044.76391067,0.0,10330.135963639384,10168.415758043651,10181.518799616508,12256.311995326325,249377682.2344887,0.0,49326574.63249246,69761869.8373822 - 04/15 22:00:00,31692972.407653747,0.0,40633401.54604929,0.0,11353779.665832639,0.0,24077897.774247428,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,185043539.9237097,0.0,35233267.594637479,69761869.8373822 - 04/15 23:00:00,34339542.42953778,0.0,43258980.12344478,0.0,13671739.397924416,0.0,26981376.28498002,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,195498717.83078126,0.0,35233267.594637479,62010550.96656194 - 04/15 24:00:00,39255803.63346328,0.0,48272618.840629417,0.0,17989652.53241626,0.0,32426707.45278227,0.0,2580.0551285663138,2539.6638842197996,2542.93650035272,3061.1369232849735,176550435.23041696,0.0,35233267.594637479,46507913.22492146 - 04/16 01:00:00,48404586.768172677,0.0,57431622.99891919,0.0,26563467.305534975,0.0,42961698.24945919,0.0,2579.2830881924735,2538.9039302820358,2542.1755671367407,3060.220926852004,213955475.96695376,0.0,21139960.556782485,23253956.61246073 - 04/16 02:00:00,10631238.364986178,0.0,18334801.421196727,0.0,0.0,0.0,3416980.8635307278,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,51676049.752520259,0.0,14093307.03785499,0.0 - 04/16 03:00:00,34184385.55028723,0.0,42200509.254530649,0.0,9846757.534309913,0.0,27032488.16416088,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,132557169.60609529,0.0,14093307.03785499,0.0 - 04/16 04:00:00,36118169.61754371,0.0,43579625.63492988,0.0,17364484.439158758,0.0,30945582.963317135,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,147298830.05206595,0.0,14093307.03785499,0.0 - 04/16 05:00:00,37436963.841209027,0.0,44861640.6727777,0.0,19015582.301441056,0.0,32483715.017957923,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,153088869.23050217,0.0,14093307.03785499,0.0 - 04/16 06:00:00,37658870.603048678,0.0,44990945.73476317,0.0,19934507.67046991,0.0,33265850.167744806,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,155134752.31093485,0.0,14093307.03785499,0.0 - 04/16 07:00:00,32374103.872615369,0.0,39514013.20489446,0.0,16441579.650732547,0.0,28520090.036386827,0.0,5155.810484967762,5075.095310010096,5081.635088321253,6117.172331028726,193996754.33620943,0.0,14093307.03785499,15502637.741640486 - 04/16 08:00:00,46146213.85909124,0.0,53996430.96401405,0.0,28846388.1720785,0.0,43892672.1914002,0.0,20629.9648302303,20306.998882296903,20333.166523049033,24476.665776897655,481570170.83149,0.0,56373228.15141996,38756594.35410121 - 04/16 09:00:00,49031447.793115328,0.0,58232287.60783475,0.0,33059598.904509415,0.0,46380276.33978256,0.0,18043.31221125988,17760.840792616033,17783.72744878865,21407.7011830899,456687704.53395816,0.0,56373228.15141996,38756594.35410121 - 04/16 10:00:00,59635002.27036075,0.0,68080299.25291531,0.0,39965540.90046823,0.0,58164844.70640369,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,418796254.6407911,0.0,28186614.07570998,0.0 - 04/16 11:00:00,55432152.62130871,0.0,63994009.54361015,0.0,38023576.60334598,0.0,55359130.90611099,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,367169323.6828903,0.0,28186614.07570998,0.0 - 04/16 12:00:00,42716013.77959439,0.0,52069209.5212277,0.0,32966200.61555985,0.0,47981194.20231089,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,252920819.40842826,0.0,28186614.07570998,0.0 - 04/16 13:00:00,40334841.249927658,0.0,49861010.63743847,0.0,31487052.320035839,0.0,46059410.03967738,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,244961048.09254147,0.0,28186614.07570998,0.0 - 04/16 14:00:00,40483282.54674269,0.0,49781367.18241947,0.0,30582509.84039359,0.0,45261866.515571299,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,243356105.68002133,0.0,28186614.07570998,0.0 - 04/16 15:00:00,42795758.06782522,0.0,51717926.882086697,0.0,30601754.5056158,0.0,45753563.02548788,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,286778853.7605586,0.0,28186614.07570998,0.0 - 04/16 16:00:00,43134164.74434879,0.0,51428056.98406308,0.0,30021728.187557598,0.0,44894267.70657696,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,362706742.00864925,0.0,28186614.07570998,0.0 - 04/16 17:00:00,41673841.871762927,0.0,49121302.1649404,0.0,27727103.647352075,0.0,41700401.015731628,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.02392617774,353520034.12800136,0.0,35233267.594637479,0.0 - 04/16 18:00:00,47126993.801461938,0.0,54432797.30569219,0.0,29830079.92965191,0.0,44633836.18392021,0.0,18081.79659969841,17798.72270077431,17821.658171652118,21453.3614409328,446583647.3077337,0.0,14093307.03785499,0.0 - 04/16 19:00:00,37896270.05253199,0.0,45743483.172037247,0.0,19415460.895010745,0.0,32456602.472752997,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,405724908.8088267,0.0,63419881.67034747,0.0 - 04/16 20:00:00,29721022.32903864,0.0,38416499.858844097,0.0,9935981.043265144,0.0,21663979.90012651,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,253678395.70086245,0.0,63419881.67034747,69761869.8373822 - 04/16 21:00:00,36260486.47062448,0.0,45354056.17534583,0.0,15184342.518180427,0.0,28590455.939893243,0.0,10274.046014931173,10113.203907946036,10126.235803414687,12189.763412269001,279121038.00286319,0.0,49326574.63249246,69761869.8373822 - 04/16 22:00:00,40061082.80128605,0.0,49204050.60135527,0.0,18409992.4858721,0.0,32661153.220874847,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,217238200.56776045,0.0,35233267.594637479,69761869.8373822 - 04/16 23:00:00,43773798.83616439,0.0,52988870.78396879,0.0,21327414.45690051,0.0,36539297.978748548,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,231393179.83566166,0.0,35233267.594637479,62010550.96656194 - 04/16 24:00:00,45169848.91723473,0.0,54184362.02701427,0.0,22975739.42033977,0.0,38433559.634050149,0.0,2574.1356075394658,2533.8370343989124,2537.102142041105,3054.1136375486269,199280588.31614013,0.0,35233267.594637479,46507913.22492146 - 04/17 01:00:00,50218757.48251995,0.0,58786627.19903384,0.0,28565596.114222435,0.0,44884385.65759242,0.0,2576.1019054750056,2535.7725495734587,2539.040151324507,3056.4465749909379,221001866.70627869,0.0,21139960.556782485,23253956.61246073 - 04/17 02:00:00,11054595.75615076,0.0,18411350.829443225,0.0,0.0,0.0,3658846.3125169768,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,52395675.73134377,0.0,14093307.03785499,0.0 - 04/17 03:00:00,36345819.90727839,0.0,44032406.9180494,0.0,12826887.789482652,0.0,29280259.310062253,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,141733430.9298476,0.0,14093307.03785499,0.0 - 04/17 04:00:00,39420397.72233256,0.0,46679712.31407215,0.0,20346577.27351465,0.0,34245132.07239492,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,159931661.61295093,0.0,14093307.03785499,0.0 - 04/17 05:00:00,39978172.758915487,0.0,47036779.34391887,0.0,21464291.794718535,0.0,35050475.69600117,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,162780447.63951753,0.0,14093307.03785499,0.0 - 04/17 06:00:00,38428567.20769856,0.0,44788330.29678739,0.0,19875374.39726219,0.0,33322431.558240236,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,155670672.60798437,0.0,14093307.03785499,0.0 - 04/17 07:00:00,32567688.182350615,0.0,39438376.239602569,0.0,16699485.138370242,0.0,28620817.819231009,0.0,5156.379821330676,5075.65573330604,5082.196233779815,6117.84782689042,194481853.99465943,0.0,14093307.03785499,15502637.741640486 - 04/17 08:00:00,38591913.66836035,0.0,45361657.2367808,0.0,25394856.35557835,0.0,38458022.64134124,0.0,20656.996046189714,20333.60691952781,20359.808847451735,24508.737282788556,456899386.64750888,0.0,56373228.15141996,38756594.35410121 - 04/17 09:00:00,35244969.74700492,0.0,44110016.40647483,0.0,28132704.595792705,0.0,41014485.22238951,0.0,18090.14070797342,17806.936180477685,17829.882235262423,21463.26140688691,419186969.88182356,0.0,56373228.15141996,38756594.35410121 - 04/17 10:00:00,29292812.873968059,0.0,40917665.25644281,0.0,25341392.45484272,0.0,36880086.248213078,0.0,12926.360841179097,12723.996250800205,12740.39241868066,15336.633708530971,325850536.422554,0.0,28186614.07570998,0.0 - 04/17 11:00:00,4657003.596645072,0.0,23844620.175983125,0.0,17334891.419063718,0.0,25444933.431810924,0.0,10343.29601424438,10181.36978560142,10194.489519760979,12271.925893019139,226049340.98895616,0.0,28186614.07570998,0.0 - 04/17 12:00:00,2563988.1448144938,0.0,20234720.196783708,0.0,15445375.652502168,0.0,22240468.855429595,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,137892659.3973357,0.0,28186614.07570998,0.0 - 04/17 13:00:00,3163424.3612906925,0.0,17600865.516642095,0.0,12842663.300035108,0.0,18796053.45734798,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,129817230.04364856,0.0,28186614.07570998,0.0 - 04/17 14:00:00,587598.708019589,0.0,15060758.732332409,0.0,9890323.225631591,0.0,15342772.7710336,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,118296805.94500183,0.0,28186614.07570998,0.0 - 04/17 15:00:00,0.0,0.0,10719356.171495079,0.0,5660442.08277287,0.0,10805801.465181789,0.0,7760.489458833364,7638.997548637448,7648.84117667514,9207.524506811345,143306669.406896,0.0,28186614.07570998,0.0 - 04/17 16:00:00,0.0,0.0,9508264.004575782,0.0,2309056.711930828,0.0,7946683.987329283,0.0,12932.829801949552,12730.363938783015,12746.768312079374,15344.308883549702,213279380.07473786,0.0,28186614.07570998,0.0 - 04/17 17:00:00,314987.05672662469,0.0,7919335.4862074409,0.0,0.0,0.0,3857545.451712393,0.0,12934.393745795815,12731.903398796612,12748.309755844326,15346.164443223886,205630644.83182479,0.0,35233267.594637479,0.0 - 04/17 18:00:00,9618137.182161184,0.0,15373654.695973937,0.0,1975660.4386524936,0.0,8598526.109810647,0.0,18107.808737277846,17824.327613487378,17847.296078908657,21484.223849226466,306515141.0306395,0.0,14093307.03785499,0.0 - 04/17 19:00:00,10046299.792985646,0.0,17796923.514335835,0.0,860747.4065447197,0.0,7141985.7887993319,0.0,18102.086828442756,17818.695282202523,17841.65648979006,21477.43502281232,306709501.5463571,0.0,63419881.67034747,0.0 - 04/17 20:00:00,6274979.59076176,0.0,14961532.198016625,0.0,0.0,0.0,869790.9856789277,0.0,10328.498023094859,10166.803459763907,10179.904423725868,12254.368641394278,176652771.1471814,0.0,63419881.67034747,69761869.8373822 - 04/17 21:00:00,16732552.363697555,0.0,25877410.729807438,0.0,601171.9742503251,0.0,11228608.035026357,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,208587596.6633865,0.0,49326574.63249246,69761869.8373822 - 04/17 22:00:00,22891273.29170802,0.0,32038475.82021148,0.0,7000078.71443367,0.0,17364793.723950987,0.0,5155.810484967762,5075.095310010096,5081.635088321253,6117.172331028726,156441589.12188436,0.0,35233267.594637479,69761869.8373822 - 04/17 23:00:00,29663472.295526286,0.0,39056919.375843349,0.0,11834831.943049413,0.0,24193043.10920316,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,181626272.9555005,0.0,35233267.594637479,62010550.96656194 - 04/17 24:00:00,35604355.9286364,0.0,45067336.96394785,0.0,16785878.615750657,0.0,30455492.49489615,0.0,2572.7345414951867,2532.457902304925,2535.721232794649,3052.4513261690688,166409178.01318086,0.0,35233267.594637479,46507913.22492146 - 04/18 01:00:00,46429530.69100438,0.0,55938373.49002304,0.0,26562304.56031748,0.0,42578690.61917207,0.0,2566.841969485217,2526.6575796090298,2529.9134357909335,3045.460014412541,209916842.1579888,0.0,21139960.556782485,23253956.61246073 - 04/18 02:00:00,12021795.138916083,0.0,20707342.193475069,0.0,0.0,0.0,4875781.663447245,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,56782317.246037,0.0,14093307.03785499,0.0 - 04/18 03:00:00,37561439.28265357,0.0,46548880.342314649,0.0,16464323.541643076,0.0,32419757.077186418,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,152191926.94763068,0.0,14093307.03785499,0.0 - 04/18 04:00:00,39376814.588799159,0.0,47765483.62699914,0.0,20881118.29238345,0.0,35229532.89805791,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,162463232.68856675,0.0,14093307.03785499,0.0 - 04/18 05:00:00,40877029.660134058,0.0,49104070.21283524,0.0,22536488.66273202,0.0,36893403.84191297,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,168621275.65994139,0.0,14093307.03785499,0.0 - 04/18 06:00:00,28146681.21437589,0.0,31375474.939510518,0.0,10325996.03093076,0.0,21236343.510783286,0.0,1284.4588811153456,1264.3504377159175,1265.9796823044806,1523.961431633583,110303997.25357002,0.0,14093307.03785499,0.0 - 04/18 07:00:00,9526215.156616556,0.0,12579476.241443124,0.0,0.0,0.0,2064439.715675605,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,101204287.7487377,0.0,14093307.03785499,15502637.741640486 - 04/18 08:00:00,13842261.400938163,0.0,15290062.644576766,0.0,8995625.161223336,0.0,15383270.687742284,0.0,20629.9648302303,20306.998882296903,20333.166523049033,24476.66577689766,362199685.5393866,0.0,56373228.15141996,38756594.35410121 - 04/18 09:00:00,8237318.946329231,0.0,25685222.478852795,0.0,3081981.2320220109,0.0,11066717.31454156,0.0,18060.385899964196,17777.64718953859,17800.55550246904,21427.958462994808,318310809.36962547,0.0,56373228.15141996,38756594.35410121 - 04/18 10:00:00,0.0,0.0,22086876.629111414,0.0,7415403.372642706,0.0,17814034.721619514,0.0,12907.379493515047,12705.312059674803,12721.684151067939,15314.113064090161,240450874.28942628,0.0,28186614.07570998,0.0 - 04/18 11:00:00,0.0,7756931.758291079,23101697.17146664,0.0,12827105.478802022,0.0,21324454.383907483,0.0,10332.455199827664,10170.69868615675,10183.804669515495,12259.06368053303,211858937.08389474,7756931.758291079,28186614.07570998,0.0 - 04/18 12:00:00,0.0,17607970.437317939,21906627.116713149,0.0,13832773.302290723,0.0,20171757.96180502,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,133285610.49918029,17607970.437317939,28186614.07570998,0.0 - 04/18 13:00:00,0.0,24469283.533352075,15658476.58582282,0.0,10250888.235992652,0.0,13974071.776637715,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,117278105.74795318,24469283.533352075,28186614.07570998,0.0 - 04/18 14:00:00,0.0,30939855.491739386,4206810.953640141,0.0,1832450.4726979328,0.0,3636431.6616688098,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,87091223.48462206,30939855.491739386,28186614.07570998,0.0 - 04/18 15:00:00,0.0,30972096.558472635,0.0,0.0,0.0,0.0,0.0,0.0,7760.120444596167,7638.634311386973,7648.477471356393,9207.08668550505,116115548.0862405,30972096.558472635,28186614.07570998,0.0 - 04/18 16:00:00,0.0,23799700.850528536,0.0,0.0,0.0,7237948.649240579,0.0,0.0,12932.548769028932,12730.087305485195,12746.491322311313,15343.975448717072,193511170.24395303,31037649.499769115,28186614.07570998,0.0 - 04/18 17:00:00,0.0,14334910.091646389,0.0,203952.47119026603,0.0,12524021.034013439,0.0,7129231.268514738,12932.548769028932,12730.087305485195,12746.491322311313,15343.975448717072,193511170.24395303,34192114.86536483,35233267.594637479,0.0 - 04/18 18:00:00,0.0,1814206.0976386856,0.0,0.0,0.0,3833159.23660056,0.0,696757.8782241241,18108.15124411414,17824.664758315255,17847.633658182054,21484.630220513438,270954287.5720496,6344123.21246337,14093307.03785499,0.0 - 04/18 19:00:00,0.0,0.0,9620044.017403659,0.0,0.0,356879.98558566046,0.0,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,280199265.38120946,356879.98558566046,63419881.67034747,0.0 - 04/18 20:00:00,0.0,0.0,9954968.408761789,0.0,0.0,749557.9268375033,0.0,0.0,10333.191535475318,10171.423494332477,10184.530411680536,12259.937314671313,164571666.33093653,749557.9268375033,63419881.67034747,69761869.8373822 - 04/18 21:00:00,5578210.867838791,0.0,18602860.562739567,0.0,0.0,0.0,910964.3118548265,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,179452489.75094766,0.0,49326574.63249246,69761869.8373822 - 04/18 22:00:00,15886407.109716353,0.0,27884124.78883677,0.0,0.0,0.0,12475526.479614877,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,133348392.58627865,0.0,35233267.594637479,69761869.8373822 - 04/18 23:00:00,22940574.303843656,0.0,34760949.1375642,0.0,4958600.293980356,0.0,18922906.07556255,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,158606906.40293468,0.0,35233267.594637479,62010550.96656194 - 04/18 24:00:00,31468713.497390748,0.0,43171030.52489855,0.0,13452746.072989986,0.0,27681437.594292646,0.0,2570.1097750302176,2529.874227048615,2533.134228209061,3049.337140951878,154230767.0260351,0.0,35233267.594637479,46507913.22492146 - 04/19 01:00:00,44892165.39623921,0.0,56435693.3117296,0.0,25205037.64755468,0.0,42243597.70873065,0.0,2563.7495851555797,2523.6136071329567,2526.865540845633,3041.7910184489935,207138165.16995353,0.0,21139960.556782485,23253956.61246073 - 04/19 02:00:00,10284167.190881884,0.0,19871383.473655169,0.0,0.0,0.0,4071928.6671863228,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,53411719.20630924,0.0,14093307.03785499,0.0 - 04/19 03:00:00,35904471.97951714,0.0,46344986.07212568,0.0,12965576.633234222,0.0,31014016.27802039,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,145409886.51574714,0.0,14093307.03785499,0.0 - 04/19 04:00:00,40373100.86842306,0.0,50078609.54177267,0.0,21695665.954723784,0.0,37071900.47297621,0.0,1280.2206012981017,1260.1785089598625,1261.8023775924037,1518.9328744155099,168375360.54205287,0.0,14093307.03785499,0.0 - 04/19 05:00:00,43515562.98631464,0.0,53024674.80085154,0.0,24704377.501585895,0.0,40296733.58307077,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,180690065.41196955,0.0,14093307.03785499,0.0 - 04/19 06:00:00,29091575.601619897,0.0,32804191.91067155,0.0,10963905.238490504,0.0,22543120.306985007,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,114587032.93235283,0.0,14093307.03785499,0.0 - 04/19 07:00:00,10520822.016981092,0.0,14223350.738210738,0.0,0.0,0.0,2864875.359893273,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,104557195.48700512,0.0,14093307.03785499,15502637.741640486 - 04/19 08:00:00,13879005.735883678,0.0,15690196.449026319,0.0,8844752.530369357,0.0,15859843.606811643,0.0,20636.35996530419,20313.293900338205,20339.469652863594,24484.253360545514,363057955.0866765,0.0,56373228.15141996,38756594.35410121 - 04/19 09:00:00,7926305.70903425,0.0,22254872.181984,0.0,2775145.012169197,0.0,8789382.403780409,0.0,18084.34160340448,17801.227861972588,17824.166561006296,21456.380990681286,312343726.56840059,0.0,56373228.15141996,38756594.35410121 - 04/19 10:00:00,0.0,4339905.788525943,15703201.098069027,0.0,2798075.1233064366,0.0,10848350.810623365,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,222830116.76841168,4339905.788525943,28186614.07570998,0.0 - 04/19 11:00:00,0.0,13909784.44997709,17565744.595586227,0.0,8457793.558093353,0.0,16107555.730947108,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,196886603.9235899,13909784.44997709,28186614.07570998,0.0 - 04/19 12:00:00,0.0,13820762.807087867,19225000.700158247,0.0,11681443.473170512,0.0,17856241.707482887,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,126157355.03031165,13820762.807087867,28186614.07570998,0.0 - 04/19 13:00:00,0.0,17058323.839357966,13963878.08993299,0.0,8801335.625952127,0.0,12931065.470352833,0.0,5173.626478327107,5092.632390669831,5099.194767299391,6138.3103270713149,113109829.45436146,17058323.839357966,28186614.07570998,0.0 - 04/19 14:00:00,0.0,18152039.998335445,6286005.266259861,0.0,2410652.9271952027,0.0,6108535.633533925,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,92220249.54446234,18152039.998335445,28186614.07570998,0.0 - 04/19 15:00:00,0.0,15101384.315445787,1721896.005085934,0.0,0.0,0.0,1170876.0020704037,0.0,7760.332727172708,7638.843270640177,7648.686699874923,9207.338550678793,119011496.5012761,15101384.315445787,28186614.07570998,0.0 - 04/19 16:00:00,0.0,13414419.90323648,0.0,0.0,0.0,0.0,0.0,0.0,12933.087698752137,12730.617798163044,12747.022498583125,15344.614868261442,193519234.3095351,13414419.90323648,28186614.07570998,0.0 - 04/19 17:00:00,0.0,9028682.278855334,0.0,0.0,0.0,6147603.963444691,0.0,0.0,12933.887878621179,12731.405451066965,12747.811166458205,15345.564251131318,193531207.4901996,15176286.242300025,35233267.594637479,0.0 - 04/19 18:00:00,0.0,983278.1537409433,0.0,0.0,0.0,4082001.5803335115,0.0,0.0,18108.15124411414,17824.664758315255,17847.633658182054,21484.630220513438,270954287.5720496,5065279.734074455,14093307.03785499,0.0 - 04/19 19:00:00,0.0,0.0,8368442.3793372609,0.0,0.0,1087158.6052083816,0.0,0.0,18104.33615013548,17820.909390344535,17843.873451036405,21480.103757138848,279265644.2744962,1087158.6052083816,63419881.67034747,0.0 - 04/19 20:00:00,0.0,0.0,7089093.845047962,0.0,0.0,2054148.338186446,0.0,0.0,10338.990510863428,10177.131685679089,10190.245958614321,12266.817577608806,161792562.48300428,2054148.338186446,63419881.67034747,69761869.8373822 - 04/19 21:00:00,3645316.441449593,0.0,15544197.292786103,0.0,0.0,0.0,0.0,0.0,10324.082394455938,10162.456958615065,10175.552321666655,12249.129666569106,173669910.56294007,0.0,49326574.63249246,69761869.8373822 - 04/19 22:00:00,11698437.840337946,0.0,22218549.312275534,0.0,0.0,0.0,6496643.7741528269,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,117646811.2775872,0.0,35233267.594637479,69761869.8373822 - 04/19 23:00:00,15517480.765462619,0.0,25529944.564598346,0.0,0.0,0.0,10959788.051306289,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,129247411.79571942,0.0,35233267.594637479,62010550.96656194 - 04/19 24:00:00,23142540.603603834,0.0,32967183.45787715,0.0,7790495.129134373,0.0,18945598.972348699,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,121382781.55311528,0.0,35233267.594637479,46507913.22492146 - 04/20 01:00:00,33267118.910917455,0.0,42822897.593631509,0.0,16748742.580562845,0.0,30254237.262218108,0.0,2577.6160301799825,2537.26297037372,2540.5324926840937,3058.2430261557,161662152.6171465,0.0,21139960.556782485,23253956.61246073 - 04/20 02:00:00,1785803.9304215753,0.0,7892323.545773501,0.0,0.0,0.0,0.0,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,28934096.624191055,0.0,14093307.03785499,0.0 - 04/20 03:00:00,28884124.949459014,0.0,38243376.39657582,0.0,5741473.595999332,0.0,22832497.859726799,0.0,1280.2206012981017,1260.1785089598625,1261.8023775924037,1518.9328744155099,114857556.50591812,0.0,14093307.03785499,0.0 - 04/20 04:00:00,34157105.81131832,0.0,42731032.36349483,0.0,17564841.656826825,0.0,30873514.041106225,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,144503892.12294484,0.0,14093307.03785499,0.0 - 04/20 05:00:00,39072620.401117827,0.0,47644375.85235363,0.0,21800313.32125041,0.0,35991715.64137792,0.0,1276.3159186408196,1256.334954837998,1257.9538706587499,1514.3001174935449,163606682.71797178,0.0,14093307.03785499,0.0 - 04/20 06:00:00,24563852.43925297,0.0,26862058.560156995,0.0,7879986.355816067,0.0,18176353.817643957,0.0,1280.9427160759508,1260.8893188961543,1262.5141034798492,1519.7896360346122,96649139.96102163,0.0,14093307.03785499,0.0 - 04/20 07:00:00,4546525.8242746409,0.0,6362900.991045738,0.0,0.0,0.0,584897.2009702934,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,30745052.062254136,0.0,14093307.03785499,15502637.741640486 - 04/20 08:00:00,13344708.102133237,0.0,13545426.021525626,0.0,4654418.705426597,0.0,11614328.692090804,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473418,120425782.706071,0.0,56373228.15141996,38756594.35410121 - 04/20 09:00:00,2581539.1381320457,7739872.307163519,8036996.19041542,0.0,148767.25532528654,0.0,3949543.0961392538,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,208144373.29522015,7739872.307163519,56373228.15141996,38756594.35410121 - 04/20 10:00:00,0.0,20821896.923972466,0.0,0.0,0.0,0.0,0.0,0.0,12934.06619581777,12731.580976674575,12747.986918248478,15345.775817678286,193533875.6703088,20821896.923972466,28186614.07570998,0.0 - 04/20 11:00:00,0.0,29491144.001571299,2544011.1608824019,0.0,0.0,0.0,0.0,0.0,12934.149098055606,12731.662581062414,12748.068627791898,15345.874178018907,196079127.30662618,29491144.001571299,28186614.07570998,0.0 - 04/20 12:00:00,0.0,35637350.564749,2725769.6713855725,0.0,0.0,0.0,606739.4048758755,0.0,7758.226127742089,7636.769650416631,7646.610407580069,9204.839150868207,119419712.28804663,35637350.564749,28186614.07570998,0.0 - 04/20 13:00:00,0.0,42242040.219757657,45207.30339061701,0.0,0.0,0.0,0.0,0.0,7756.423776271284,7634.995515094329,7644.833986103321,9202.70072964808,116105441.72901188,42242040.219757657,28186614.07570998,0.0 - 04/20 14:00:00,0.0,45704339.16531512,0.0,0.0,0.0,1282538.3288041757,0.0,0.0,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,116025805.1033544,46986877.4941193,28186614.07570998,0.0 - 04/20 15:00:00,0.0,43932770.93668899,0.0,11231952.86652871,0.0,13792811.348214603,0.0,11832652.937846676,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,116025805.1033544,80790188.08927897,28186614.07570998,0.0 - 04/20 16:00:00,0.0,36078306.232381727,0.0,16100360.679000438,0.0,19768589.029793666,0.0,17856800.051696164,18088.728590693165,17805.54617015688,17828.490433771443,21461.585983637713,270663664.2417331,89804055.992872,28186614.07570998,0.0 - 04/20 17:00:00,0.0,25820537.01088657,0.0,15055754.835443909,0.0,23203627.080076927,0.0,20625320.56925513,23256.936759462646,22892.84507591599,22922.344843420426,27593.46769324849,347996139.7393712,84705239.49566253,35233267.594637479,0.0 - 04/20 18:00:00,0.0,13504225.80673321,0.0,5546357.25092649,0.0,17199331.947638748,0.0,15043538.665076646,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,51293453.670375097,14093307.03785499,0.0 - 04/20 19:00:00,0.0,3433376.580357458,0.0,0.0,0.0,7469459.063259792,0.0,5040127.690999627,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,270951652.9851288,15942963.334616876,63419881.67034747,0.0 - 04/20 20:00:00,0.0,799443.7833946106,0.0,0.0,0.0,12217691.218286699,0.0,5003698.338780152,15520.307896210039,15277.33458078429,15297.020985716757,18414.252872278794,232232098.80596359,18020833.34046146,63419881.67034747,69761869.8373822 - 04/20 21:00:00,0.0,0.0,2230849.3911289635,0.0,0.0,5566429.02410204,0.0,358837.13145736537,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,195658377.0063371,5925266.155559406,49326574.63249246,69761869.8373822 - 04/20 22:00:00,0.0,0.0,9954179.455616093,0.0,0.0,271713.563572755,0.0,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,164696201.54778264,271713.563572755,35233267.594637479,69761869.8373822 - 04/20 23:00:00,4037991.4025057565,0.0,13539471.739965197,0.0,0.0,0.0,0.0,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,133644095.67169339,0.0,35233267.594637479,62010550.96656194 - 04/20 24:00:00,12407440.1609931,0.0,20877009.494089355,0.0,0.0,0.0,5722419.583267158,0.0,5166.595767737659,5085.711747166239,5092.265205840268,6129.968657335657,116315218.19943699,0.0,35233267.594637479,46507913.22492146 - 04/21 01:00:00,26299121.373455928,0.0,34858678.48943743,0.0,9530746.339846716,0.0,22363307.790636146,0.0,2579.016623378802,2538.641637024731,2541.912935887802,3059.90477652217,131641967.49550483,0.0,21139960.556782485,23253956.61246073 - 04/21 02:00:00,0.0,0.0,2802807.114875145,0.0,0.0,0.0,0.0,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,22095836.217681767,0.0,14093307.03785499,0.0 - 04/21 03:00:00,15839719.543539595,0.0,25099931.593458296,0.0,0.0,0.0,8635422.073682312,0.0,1288.8080150899912,1268.63148518686,1270.2662463420466,1529.12151307785,68859651.34558849,0.0,14093307.03785499,0.0 - 04/21 04:00:00,24213048.693178327,0.0,31247453.17620629,0.0,8085232.468990213,0.0,19946522.68700149,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,102748226.1733723,0.0,14093307.03785499,0.0 - 04/21 05:00:00,28099647.7128374,0.0,35009869.35361798,0.0,12939688.460032653,0.0,24205650.24346486,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,119502912.77492778,0.0,14093307.03785499,0.0 - 04/21 06:00:00,15038451.162071078,0.0,15898343.810106719,0.0,1796871.7829357745,0.0,8237341.6929363389,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,60219065.4530248,0.0,14093307.03785499,0.0 - 04/21 07:00:00,798220.6952698326,0.0,1020842.4011516183,0.0,0.0,0.0,0.0,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,21137371.64301196,0.0,14093307.03785499,15502637.741640486 - 04/21 08:00:00,10493417.276658101,0.0,11024008.466163727,0.0,1380635.2195860176,0.0,7319005.330635315,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,49563774.88940719,0.0,56373228.15141996,38756594.35410121 - 04/21 09:00:00,0.0,16728353.136790522,0.0,0.0,0.0,9375337.009377767,0.0,4162656.7066317198,5173.697994071408,5092.702786821814,5099.265254164,6138.395177772003,77414620.36618522,30266346.852800006,56373228.15141996,38756594.35410121 - 04/21 10:00:00,0.0,26308678.50595986,0.0,0.0,0.0,1668285.6602960732,0.0,15888.330277934441,7758.716000056018,7637.2518536881,7647.09323221967,9205.420365669108,116094533.22587842,27992852.496533868,28186614.07570998,0.0 - 04/21 11:00:00,0.0,36647186.779700588,0.0,0.0,0.0,490473.2234371271,0.0,0.0,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,115951877.39581964,37137660.003137718,28186614.07570998,0.0 - 04/21 12:00:00,0.0,44879665.95240786,0.0,0.0,0.0,1632353.671477633,0.0,0.0,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,46512019.6238855,28186614.07570998,0.0 - 04/21 13:00:00,0.0,53254693.09916863,0.0,6719022.3598383399,0.0,6095191.47763535,0.0,7641428.597601136,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,73710335.53424345,28186614.07570998,0.0 - 04/21 14:00:00,0.0,58930234.288896318,0.0,18007534.718417244,0.0,14669755.004467722,0.0,17561911.613611498,7721.081365293064,7600.206396153094,7610.000037831479,9160.76830812519,115531401.98665019,109169435.62539277,28186614.07570998,0.0 - 04/21 15:00:00,0.0,62457377.61105156,0.0,31295501.207619225,0.0,26585218.932109149,0.0,30333798.978442216,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,150671896.72922216,28186614.07570998,0.0 - 04/21 16:00:00,0.0,52809008.34477164,0.0,33779047.87034778,0.0,33287332.226375268,0.0,35775696.8943087,12857.652898686623,12656.363943964903,12672.672960714917,15255.114357507055,192390494.9791446,155651085.3358034,28186614.07570998,0.0 - 04/21 17:00:00,0.0,42290312.57479738,0.0,32854661.687885263,0.0,36048149.20924528,0.0,37880158.261425379,15437.944184784563,15196.260288626117,15215.842221058057,18316.531472688617,230999681.40176649,149073281.73335327,35233267.594637479,0.0 - 04/21 18:00:00,0.0,27200331.77885147,0.0,19187451.168221248,0.0,26450524.66632211,0.0,27871517.263236099,18058.108419097323,17775.405363059555,17798.310787167768,21425.256318883054,270205491.19754776,100709824.87663092,14093307.03785499,0.0 - 04/21 19:00:00,0.0,14581406.581317166,0.0,6798922.823794387,0.0,17549800.30525249,0.0,16049774.579378682,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,154692456.46727775,54979904.28974272,63419881.67034747,0.0 - 04/21 20:00:00,0.0,16960875.474035015,0.0,7736620.272956502,0.0,22743185.371036754,0.0,20975780.78922432,7756.074890489255,7634.652091184304,7644.490119656535,9202.286789985494,116055014.00873612,68416461.90725258,63419881.67034747,69761869.8373822 - 04/21 21:00:00,0.0,9193219.222705154,0.0,1722389.5627384247,0.0,16382661.453956612,0.0,13307946.139429676,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,77396355.48391895,40606216.37882987,49326574.63249246,69761869.8373822 - 04/21 22:00:00,0.0,4131143.2431272168,0.0,0.0,0.0,11886190.568531165,0.0,8154577.440958209,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,24171911.25261659,35233267.594637479,69761869.8373822 - 04/21 23:00:00,0.0,616187.5230278148,0.0,0.0,0.0,8353674.069952835,0.0,4203741.086008096,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,77396355.48391895,13173602.678988748,35233267.594637479,62010550.96656194 - 04/21 24:00:00,0.0,0.0,712321.2597555773,0.0,0.0,2302522.8147566288,0.0,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,78126367.7180531,2302522.8147566288,35233267.594637479,46507913.22492146 - 04/22 01:00:00,2977289.0947982415,0.0,12905516.007738427,0.0,0.0,0.0,0.0,0.0,2586.8734619270978,2546.3754752998618,2549.6567400029268,3069.226615545758,54590481.35652898,0.0,21139960.556782485,23253956.61246073 - 04/22 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,19353852.873256897,0.0,14093307.03785499,0.0 - 04/22 03:00:00,0.0,0.0,7165487.5999674969,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223887,26519365.283685328,0.0,14093307.03785499,0.0 - 04/22 04:00:00,11819688.830063254,0.0,18639381.96741165,0.0,0.0,0.0,3431598.539379676,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,53239920.34667229,0.0,14093307.03785499,0.0 - 04/22 05:00:00,17481298.556525038,0.0,24153663.188639638,0.0,193671.89974544454,0.0,12120767.948624909,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,73301769.67565963,0.0,14093307.03785499,0.0 - 04/22 06:00:00,17246897.669094724,0.0,23278164.208703508,0.0,3675946.8107346824,0.0,12673885.210398123,0.0,1293.4066195817769,1273.1580976674578,1274.7986918248478,1534.5775817678287,76228281.46596192,0.0,14093307.03785499,0.0 - 04/22 07:00:00,9475081.768494424,0.0,14417103.140494757,0.0,451042.1281013667,0.0,6659673.898193212,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,108389735.32073993,0.0,14093307.03785499,15502637.741640486 - 04/22 08:00:00,13926749.366816929,0.0,15645156.583654244,0.0,13183880.282212915,0.0,16413860.166662645,0.0,20694.50591330843,20370.529562679323,20396.779069197564,24553.241308285258,368823847.4718408,0.0,56373228.15141996,38756594.35410121 - 04/22 09:00:00,19188323.36264946,0.0,28051525.35729335,0.0,13264903.878252062,0.0,24464678.18866504,0.0,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,355920602.06850817,0.0,56373228.15141996,38756594.35410121 - 04/22 10:00:00,10731050.895051644,0.0,17877366.246439786,0.0,11848857.10506548,0.0,18856660.777208084,0.0,12932.829801949552,12730.363938783015,12746.768312079374,15344.308883549702,252829310.39466695,0.0,28186614.07570998,0.0 - 04/22 11:00:00,1937389.8861157736,0.0,8095712.572805616,0.0,7693771.5157967,0.0,11960691.564213573,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,184434544.77309335,0.0,28186614.07570998,0.0 - 04/22 12:00:00,3526437.018274359,0.0,8702354.718604312,0.0,6848707.48781265,0.0,11068051.665035295,0.0,5170.223721121991,5089.282904263544,5095.840964737995,6134.273085538672,107508185.32211054,0.0,28186614.07570998,0.0 - 04/22 13:00:00,747236.2562714813,0.0,5133753.50717268,0.0,4230404.717408441,0.0,7387063.662008013,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,94805257.69832243,0.0,28186614.07570998,0.0 - 04/22 14:00:00,0.0,0.0,1276203.8283198868,0.0,1247441.1826151077,0.0,3476676.211522823,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,83307120.77791964,0.0,28186614.07570998,0.0 - 04/22 15:00:00,0.0,0.0,4154949.2534072624,0.0,2407948.0436104966,0.0,5476092.317063426,0.0,7753.2451808065729,7631.866681134585,7641.701120321666,9198.92944746365,128051662.3610965,0.0,28186614.07570998,0.0 - 04/22 16:00:00,2211265.8058835987,0.0,8064757.094142308,0.0,4027553.9310715219,0.0,7784177.832608525,0.0,12923.538049279316,12721.217650234206,12737.610237604227,15333.284573694473,215464096.50262998,0.0,28186614.07570998,0.0 - 04/22 17:00:00,5352415.902675843,0.0,9794871.335428287,0.0,3720120.6969948869,0.0,7813191.369143782,0.0,12923.538049279316,12721.217650234206,12737.610237604227,15333.284573694473,220056941.1431668,0.0,35233267.594637479,0.0 - 04/22 18:00:00,10759188.195429823,0.0,15190241.982692387,0.0,6233661.495350081,0.0,11442885.853651144,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,314433191.18690636,0.0,14093307.03785499,0.0 - 04/22 19:00:00,3946517.8566208586,0.0,8978263.223450207,0.0,0.0,0.0,1050955.9057988139,0.0,18103.11533072459,17819.707683089266,17842.67019525868,21478.65530150937,284854671.6239648,0.0,63419881.67034747,0.0 - 04/22 20:00:00,0.0,0.0,0.0,0.0,0.0,1799076.2686925168,0.0,0.0,10345.53384467344,10183.572582377647,10196.695155065685,12274.580993399977,154801377.2718603,1799076.2686925168,63419881.67034747,69761869.8373822 - 04/22 21:00:00,0.0,0.0,3625717.6640649207,0.0,0.0,1652440.2849140377,0.0,0.0,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,158456739.13380755,1652440.2849140377,49326574.63249246,69761869.8373822 - 04/22 22:00:00,6328890.201161622,0.0,13885330.65990182,0.0,0.0,0.0,0.0,0.0,5170.544336471639,5089.598500320083,5096.156967472264,6134.653483412389,97581652.6966984,0.0,35233267.594637479,69761869.8373822 - 04/22 23:00:00,13192401.732103419,0.0,19523093.699424477,0.0,0.0,0.0,5127396.861412897,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,115190357.25231475,0.0,35233267.594637479,62010550.96656194 - 04/22 24:00:00,17641641.882792944,0.0,23906570.998642416,0.0,2323945.834241446,0.0,12137869.922037468,0.0,2584.8856807667104,2544.4188132243605,2547.697556568629,3066.86818907723,94687961.5004072,0.0,35233267.594637479,46507913.22492146 - 04/23 01:00:00,29080370.001306915,0.0,35467704.79330326,0.0,13742062.626282206,0.0,24876793.79247985,0.0,2581.4758987030097,2541.062411934961,2544.3368302135875,3062.822612818032,141793843.12658275,0.0,21139960.556782485,23253956.61246073 - 04/23 02:00:00,0.0,0.0,3159897.4323085017,0.0,0.0,0.0,0.0,0.0,1289.7724978315119,1269.5808687711379,1271.2168533039747,1530.2658350340947,22458907.23009509,0.0,14093307.03785499,0.0 - 04/23 03:00:00,17606576.41032454,0.0,24729747.448737895,0.0,1964964.184963144,0.0,9541945.80962262,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,73151528.94135343,0.0,14093307.03785499,0.0 - 04/23 04:00:00,23405606.034767353,0.0,28949938.949541239,0.0,9356308.224411365,0.0,18949834.831190297,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,99954717.14271689,0.0,14093307.03785499,0.0 - 04/23 05:00:00,23592361.49306135,0.0,28894333.307548584,0.0,10101551.653017566,0.0,19377604.6706797,0.0,1291.266995454923,1271.0519697554565,1272.6898499520635,1532.0389994157907,101287223.25678882,0.0,14093307.03785499,0.0 - 04/23 06:00:00,11370038.148450328,0.0,12068119.920150701,0.0,1262137.6863073642,0.0,5483796.245256237,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,49509802.00637945,0.0,14093307.03785499,0.0 - 04/23 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.544336471639,5089.598500320083,5096.156967472264,6134.653483412389,77367431.83563496,0.0,14093307.03785499,15502637.741640486 - 04/23 08:00:00,8584976.152938359,0.0,8699892.302133464,0.0,0.0,0.0,4475078.202223412,0.0,20695.029993273303,20371.045438074583,20397.29560935092,24553.86310915822,331421989.59678056,0.0,56373228.15141996,38756594.35410121 - 04/23 09:00:00,0.0,17327944.320944609,0.0,0.0,0.0,9654553.481854232,0.0,5344910.353756147,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,270870140.82749876,32327408.15655499,56373228.15141996,38756594.35410121 - 04/23 10:00:00,0.0,24815607.46352166,0.0,0.0,0.0,264239.40851099617,0.0,0.0,12922.075301344286,12719.777801890974,12736.168533869444,15331.549079106082,193354454.57835884,25079846.87203265,28186614.07570998,0.0 - 04/23 11:00:00,0.0,35438299.789527367,0.0,0.0,0.0,0.0,0.0,0.0,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,154579486.6577033,35438299.789527367,28186614.07570998,0.0 - 04/23 12:00:00,0.0,41226803.66075431,0.0,0.0,0.0,0.0,0.0,0.0,5161.909022321121,5081.0983736235079,5087.64588749485,6124.408012803005,77238220.66647294,41226803.66075431,28186614.07570998,0.0 - 04/23 13:00:00,0.0,45827217.49141192,0.0,0.0,0.0,0.0,0.0,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,45827217.49141192,28186614.07570998,0.0 - 04/23 14:00:00,0.0,45388060.33487208,0.0,7828431.915191106,0.0,5371682.68675014,0.0,5513115.2354111089,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,64101290.17222445,28186614.07570998,0.0 - 04/23 15:00:00,0.0,37822067.72655278,0.0,13051165.70969661,0.0,12076995.115340274,0.0,12101683.890919343,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,115690503.11594406,75051912.442509,28186614.07570998,0.0 - 04/23 16:00:00,0.0,25808066.75639166,0.0,10644260.45279596,0.0,12768821.628928053,0.0,11401018.00081707,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,60622166.838932748,28186614.07570998,0.0 - 04/23 17:00:00,0.0,19656923.890292936,0.0,10053297.212532808,0.0,14826525.75321059,0.0,13089643.535786804,12886.190426580759,12684.454711536184,12700.799926107378,15288.973045009036,192817505.19324009,57626390.39182313,35233267.594637479,0.0 - 04/23 18:00:00,0.0,10257428.837172499,0.0,3091964.1738283049,0.0,10725160.598967357,0.0,8913540.667420159,18066.681578123924,17783.844307682273,17806.760606231976,21435.428044810513,270333772.33265528,32988094.277388324,14093307.03785499,0.0 - 04/23 19:00:00,0.0,7386456.180269962,0.0,2941722.183288401,0.0,11280469.549055802,0.0,9060119.698931274,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,270629163.3207264,30668767.611545434,63419881.67034747,0.0 - 04/23 20:00:00,0.0,8944569.274276697,0.0,3626.23797765991,0.0,15612375.847461287,0.0,12607796.063166805,10344.954666741358,10183.002471584135,10196.124309626226,12273.893820892143,154792710.9678379,37168367.422882448,63419881.67034747,69761869.8373822 - 04/23 21:00:00,0.0,937701.2421630439,0.0,0.0,0.0,8359432.398881867,0.0,3852887.345043111,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,154831021.46974264,13150020.986088023,49326574.63249246,69761869.8373822 - 04/23 22:00:00,0.0,0.0,3599475.7311047438,0.0,0.0,1206392.0424337576,0.0,0.0,5172.199343773957,5091.227598174341,5097.788164585387,6136.617086401076,80991671.62566988,1206392.0424337576,35233267.594637479,69761869.8373822 - 04/23 23:00:00,2729683.5433722829,0.0,12743588.601952179,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,92860106.5307806,0.0,35233267.594637479,62010550.96656194 - 04/23 24:00:00,10371634.389681057,0.0,18477011.18253559,0.0,0.0,0.0,4420278.200466584,0.0,2585.147952284963,2544.6769788330686,2547.956054850074,3067.179364222118,71950781.03336804,0.0,35233267.594637479,46507913.22492146 - 04/24 01:00:00,23462419.87430039,0.0,31432784.427858659,0.0,8813612.504885644,0.0,20311320.214728036,0.0,2581.2505367690716,2540.84057808414,2544.1147105072075,3062.555229486008,122643676.81921987,0.0,21139960.556782485,23253956.61246073 - 04/24 02:00:00,0.0,0.0,2458058.2482250879,0.0,0.0,0.0,0.0,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,21776366.7948156,0.0,14093307.03785499,0.0 - 04/24 03:00:00,8874181.308467586,0.0,18566940.965035485,0.0,0.0,0.0,3945073.7181515505,0.0,1290.2735012547228,1270.0740288922962,1271.710648912285,1530.8602564712579,50692702.35956465,0.0,14093307.03785499,0.0 - 04/24 04:00:00,15732385.411215082,0.0,21746351.937345316,0.0,3724563.537433632,0.0,12698200.609419635,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,73213271.39413724,0.0,14093307.03785499,0.0 - 04/24 05:00:00,18806380.60766604,0.0,24682785.318316755,0.0,7733146.236065481,0.0,16043929.613233109,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,86555113.42905763,0.0,14093307.03785499,0.0 - 04/24 06:00:00,9318782.330523778,0.0,10998774.074604297,0.0,881925.0036655023,0.0,5855952.746397483,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,46370541.916246149,0.0,14093307.03785499,0.0 - 04/24 07:00:00,455960.8750749263,0.0,1771191.4158084228,0.0,0.0,0.0,0.0,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,79570209.97842185,0.0,14093307.03785499,15502637.741640486 - 04/24 08:00:00,12275336.755773558,0.0,13451178.414554317,0.0,6948350.365875735,0.0,13319725.593950052,0.0,20692.648546925346,20368.701273713457,20394.94842429475,24551.03761397176,355621000.2222128,0.0,56373228.15141996,38756594.35410121 - 04/24 09:00:00,4991926.211333842,0.0,8704187.815114052,0.0,4268684.053520873,0.0,7795180.751332247,0.0,18107.211568342558,17823.73979334317,17846.707501298195,21483.51533108009,296700205.92993149,0.0,56373228.15141996,38756594.35410121 - 04/24 10:00:00,0.0,18536792.748854717,0.0,0.0,0.0,0.0,0.0,0.0,12930.79666480328,12728.362630778049,12744.764425184772,15341.896643935266,193484953.31292496,18536792.748854717,28186614.07570998,0.0 - 04/24 11:00:00,0.0,13692813.788346906,0.0,0.0,0.0,0.0,0.0,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,154812300.29672153,13692813.788346906,28186614.07570998,0.0 - 04/24 12:00:00,0.0,923380.3923382779,0.0,0.0,0.0,0.0,1336032.8187790176,0.0,5172.626752653717,5091.648315888356,5098.2094244371169,6137.124190721711,78734624.08010227,923380.3923382779,28186614.07570998,0.0 - 04/24 13:00:00,0.0,3325680.8023865835,0.0,0.0,0.0,0.0,431315.60523034716,0.0,5172.318665921312,5091.345052311221,5097.9057700739099,6136.758657574106,77825296.93040033,3325680.8023865835,28186614.07570998,0.0 - 04/24 14:00:00,0.0,3298059.8879896488,0.0,0.0,0.0,0.0,1625128.0229426719,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,79040183.74041602,3298059.8879896488,28186614.07570998,0.0 - 04/24 15:00:00,0.0,0.0,5046143.994321072,0.0,0.0,0.0,6937314.303125068,0.0,7760.418037293462,7638.927245215076,7648.7707826596329,9207.439767880578,128103459.29642165,0.0,28186614.07570998,0.0 - 04/24 16:00:00,5348551.744671831,0.0,20155499.582578239,0.0,8895524.182073266,0.0,16533586.858027187,0.0,12933.887878621179,12731.405451066965,12747.811166458203,15345.564251131318,244464369.85755009,0.0,28186614.07570998,0.0 - 04/24 17:00:00,17279500.895665207,0.0,25126146.74971213,0.0,9877808.668635384,0.0,18837364.033017614,0.0,12933.322456962116,12730.848881189453,12747.253879383597,15344.893399916311,264643567.36985565,0.0,35233267.594637479,0.0 - 04/24 18:00:00,20545564.72927923,0.0,26692505.04242851,0.0,11922829.749177648,0.0,20598778.444857118,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,350699905.064373,0.0,14093307.03785499,0.0 - 04/24 19:00:00,13060838.817191743,0.0,19566840.223050447,0.0,2515100.978290534,0.0,9492161.195341209,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,315587636.22503057,0.0,63419881.67034747,0.0 - 04/24 20:00:00,2152112.447183047,0.0,8812682.943888892,0.0,0.0,0.0,0.0,0.0,10347.46731810134,10185.475786918345,10198.600812079689,12276.874985816963,165795103.44157077,0.0,63419881.67034747,69761869.8373822 - 04/24 21:00:00,7884981.169732252,0.0,14658674.901045209,0.0,0.0,0.0,0.0,0.0,10344.049616253005,10182.111589830016,10195.232279880034,12272.820013035613,177322824.66717265,0.0,49326574.63249246,69761869.8373822 - 04/24 22:00:00,12124047.521126619,0.0,18832789.20672419,0.0,0.0,0.0,6037863.441207322,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,114395958.80409175,0.0,35233267.594637479,69761869.8373822 - 04/24 23:00:00,14685620.010311597,0.0,21296692.19941754,0.0,0.0,0.0,8336793.954607563,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,121713775.31383671,0.0,35233267.594637479,62010550.96656194 - 04/24 24:00:00,18410550.62416813,0.0,24913164.799871297,0.0,3380598.278325103,0.0,12493152.803725057,0.0,2586.3337357336406,2545.8441986206487,2549.124778719486,3068.586251019836,97897066.77682659,0.0,35233267.594637479,46507913.22492146 - 04/25 01:00:00,25708037.675417298,0.0,31946918.01925213,0.0,11215820.583750036,0.0,21234177.207335354,0.0,2586.466654568959,2545.9750365868046,2549.255785283716,3068.743954144118,128806542.63585577,0.0,21139960.556782485,23253956.61246073 - 04/25 02:00:00,0.0,0.0,525944.7982118874,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19878312.880336487,0.0,14093307.03785499,0.0 - 04/25 03:00:00,7502500.818527424,0.0,15319427.485575546,0.0,0.0,0.0,1720657.0885960567,0.0,1293.0062020316255,1272.763948728752,1274.4040349850043,1534.1025016294516,43889981.467248428,0.0,14093307.03785499,0.0 - 04/25 04:00:00,18301370.056112939,0.0,23503925.311738239,0.0,3583067.4130015776,0.0,13396351.927750882,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,78107567.14721394,0.0,14093307.03785499,0.0 - 04/25 05:00:00,22288572.1892231,0.0,27625074.049047106,0.0,8941908.79383942,0.0,18166194.056246506,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,96333518.98707971,0.0,14093307.03785499,0.0 - 04/25 06:00:00,9163891.693554609,0.0,9178524.67475841,0.0,592802.6613179244,0.0,3447407.4407398325,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,41706924.871516879,0.0,14093307.03785499,0.0 - 04/25 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,77399200.541474,0.0,14093307.03785499,15502637.741640486 - 04/25 08:00:00,7910447.2461865949,0.0,8263154.62135525,0.0,0.0,0.0,4465885.318913295,0.0,20694.448099449233,20370.472653906876,20396.722087092352,24553.172714348206,330292823.1837231,0.0,56373228.15141996,38756594.35410121 - 04/25 09:00:00,0.0,18573965.451695276,0.0,1866868.2189077708,0.0,10895744.285821839,0.0,7081811.916853376,18087.591831984333,17804.427207617697,17827.37002933482,21460.237262822433,270646654.79433348,38418389.87327826,56373228.15141996,38756594.35410121 - 04/25 10:00:00,0.0,27295392.496470065,0.0,542068.8679571205,0.0,3032478.040376712,0.0,234326.7977098992,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,31104266.202513797,28186614.07570998,0.0 - 04/25 11:00:00,0.0,44439976.27147853,0.0,7860094.166750452,0.0,5907620.81757242,0.0,5194821.760190771,10291.962789856376,10130.840192417414,10143.894814038704,12211.02098179241,153999787.60117764,63402513.015992168,28186614.07570998,0.0 - 04/25 12:00:00,0.0,35162318.34076012,0.0,12521308.250340304,0.0,7412024.191869551,0.0,7914733.857923383,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,63010384.640893358,28186614.07570998,0.0 - 04/25 13:00:00,0.0,33216471.216505924,0.0,19850416.774510996,0.0,11616224.617709974,0.0,13462518.585582488,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,78145631.19430937,28186614.07570998,0.0 - 04/25 14:00:00,0.0,34792751.4396922,0.0,24170165.765496229,0.0,14793642.07109017,0.0,17324145.3710353,5131.713784538751,5051.375847921537,5057.885061284797,6088.5825157973099,76786405.95435262,91080704.6473139,28186614.07570998,0.0 - 04/25 15:00:00,0.0,34280055.96192939,0.0,25588466.840620728,0.0,16836233.285306153,0.0,19621984.133082145,7685.251509223035,7564.937463163894,7574.685657222298,9118.25755160779,114995275.85238128,96326740.22093842,28186614.07570998,0.0 - 04/25 16:00:00,0.0,28553221.400303388,0.0,21780465.71617002,0.0,16028197.206454777,0.0,18060005.86064478,12815.794811422056,12615.161152865083,12631.417075613283,15205.451334789068,191764167.74888218,84421890.18357297,28186614.07570998,0.0 - 04/25 17:00:00,0.0,19681245.86510226,0.0,14235098.69172615,0.0,13784413.093489729,0.0,14579448.191948506,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,62280205.84226665,35233267.594637479,0.0 - 04/25 18:00:00,0.0,11957248.710469503,0.0,7421357.913627816,0.0,9718410.887102941,0.0,9432148.951748725,17964.03750579884,17682.807147457668,17705.593249313773,21313.64477116192,268797897.62543597,38529166.462948989,14093307.03785499,0.0 - 04/25 19:00:00,0.0,17255890.522930273,0.0,12606427.64496378,0.0,17976292.48623117,0.0,18654211.52276052,17987.23216211223,17705.638687099516,17728.454209724816,21341.164345483296,269144961.8559115,66492822.17688574,63419881.67034747,0.0 - 04/25 20:00:00,0.0,29521624.375799754,0.0,24076011.5734846,0.0,32287428.284640165,0.0,34935642.41531807,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,120820706.6492426,63419881.67034747,69761869.8373822 - 04/25 21:00:00,0.0,24719706.894004458,0.0,19785452.339493947,0.0,28607394.663913713,0.0,30337221.597802655,10291.962789856376,10130.840192417414,10143.894814038704,12211.02098179241,153999787.60117764,103449775.49521476,49326574.63249246,69761869.8373822 - 04/25 22:00:00,0.0,17452358.4734597,0.0,13093632.628350545,0.0,22704513.304814444,0.0,22955989.946064395,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,76206494.35268907,35233267.594637479,69761869.8373822 - 04/25 23:00:00,0.0,12914587.570156709,0.0,8799998.409062649,0.0,19053683.677560007,0.0,18357898.277267297,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,59126167.934046659,35233267.594637479,62010550.96656194 - 04/25 24:00:00,0.0,7254749.104739491,0.0,2316042.6914950378,0.0,13936764.939809565,0.0,12271384.152143464,2577.823628621243,2537.4673188226549,2540.7371044568628,3058.489333781736,38572262.58845699,35778940.88818756,35233267.594637479,46507913.22492146 - 04/26 01:00:00,0.0,0.0,0.0,0.0,0.0,3358355.9221577246,0.0,302964.8268712572,2578.9401735140979,2538.5663839969208,2541.837585888785,3059.8140716759696,38588969.57427278,3661320.7490289818,21139960.556782485,23253956.61246073 - 04/26 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 - 04/26 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 - 04/26 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 04/26 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 - 04/26 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0324579201172,1270.8211039495109,1272.4586866519633,1531.7607295835915,19317862.72117866,0.0,14093307.03785499,0.0 - 04/26 07:00:00,0.0,1246129.6174859326,0.0,1792402.5423647676,0.0,12207092.971809719,0.0,7135674.184929026,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,22381299.316589446,14093307.03785499,15502637.741640486 - 04/26 08:00:00,0.0,44217039.94136936,0.0,39071733.94352313,0.0,39811560.90980709,0.0,43445588.48301547,20566.188872141847,20244.221348729723,20270.308094222277,24400.99803710369,307734178.86791118,166545923.2777151,56373228.15141996,38756594.35410121 - 04/26 09:00:00,0.0,61740233.55649157,0.0,47410242.57867043,0.0,42580814.87020477,0.0,50020858.322863858,17964.03750579884,17682.807147457668,17705.593249313773,21313.64477116192,268797897.62543597,201752149.32823063,56373228.15141996,38756594.35410121 - 04/26 10:00:00,0.0,55995311.27928908,0.0,33383994.95993492,0.0,24642743.910377344,0.0,29248032.12510447,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,143270082.2747058,28186614.07570998,0.0 - 04/26 11:00:00,0.0,61056298.77405704,0.0,34803102.026123698,0.0,23573104.71632147,0.0,28772077.746178304,10203.169913642207,10043.437385244672,10056.3793794279,12105.671623596756,152671169.88688154,148204583.2626805,28186614.07570998,0.0 - 04/26 12:00:00,0.0,39745423.80067201,0.0,27884210.88242949,0.0,19589257.262878576,0.0,23675310.8645292,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,110894202.81050927,28186614.07570998,0.0 - 04/26 13:00:00,0.0,26571901.801335914,0.0,19670459.038849895,0.0,16102381.549054316,0.0,17611987.041421337,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,79956729.43066146,28186614.07570998,0.0 - 04/26 14:00:00,0.0,12265092.298404664,0.0,5575929.971171491,0.0,8136451.744519097,0.0,6235020.075831479,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,32212494.089926728,28186614.07570998,0.0 - 04/26 15:00:00,0.0,10613883.629910343,0.0,3627214.8194329475,0.0,5724116.185773345,0.0,3111045.7347000709,7707.617967390303,7586.953770256096,7596.730334573344,9144.794500443058,115329947.66158608,23076260.36981671,28186614.07570998,0.0 - 04/26 16:00:00,0.0,664709.159887041,0.0,0.0,0.0,440601.2383261533,0.0,0.0,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,1105310.3982131943,28186614.07570998,0.0 - 04/26 17:00:00,0.0,0.0,375862.4184730257,0.0,0.0,0.0,0.0,0.0,12863.162024167677,12661.786823058826,12678.102827742052,15261.650724594077,192848791.0568985,0.0,35233267.594637479,0.0 - 04/26 18:00:00,2668020.980104562,0.0,7983543.26531896,0.0,0.0,0.0,346160.8120836404,0.0,17998.080338354543,17716.31703311903,17739.146315883096,21354.035292494456,280305009.3849712,0.0,14093307.03785499,0.0 - 04/26 19:00:00,0.0,0.0,1189579.501083967,0.0,0.0,0.0,0.0,0.0,18036.440738195713,17754.076893744557,17776.95483394311,21399.54844259952,271070854.7716224,0.0,63419881.67034747,0.0 - 04/26 20:00:00,0.0,0.0,0.0,0.0,0.0,16474843.95717867,0.0,6548110.236126555,10313.563994450264,10152.103226123683,10165.185247334177,12236.649986474386,154323008.83577705,23022954.193305229,63419881.67034747,69761869.8373822 - 04/26 21:00:00,0.0,0.0,0.0,0.0,0.0,12978719.809092239,0.0,6563826.121416551,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,19542545.930508794,49326574.63249246,69761869.8373822 - 04/26 22:00:00,0.0,0.0,0.0,0.0,0.0,8104165.260292865,0.0,609308.7258203969,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,8713473.986113262,35233267.594637479,69761869.8373822 - 04/26 23:00:00,0.0,0.0,2440633.195871709,0.0,0.0,5202926.368847955,0.0,0.0,5161.909022321121,5081.0983736235079,5087.64588749485,6124.408012803005,79678853.86234465,5202926.368847955,35233267.594637479,62010550.96656194 - 04/26 24:00:00,0.0,0.0,6500035.668999957,0.0,0.0,420402.4293039277,0.0,0.0,2581.412408442436,2540.999915626261,2544.2742533720149,3062.7472840474345,45125997.570357289,420402.4293039277,35233267.594637479,46507913.22492146 - 04/27 01:00:00,9557596.369818878,0.0,14139857.750842695,0.0,0.0,0.0,0.0,0.0,2581.412408442436,2540.999915626261,2544.2742533720149,3062.7472840474345,62323416.022018898,0.0,21139960.556782485,23253956.61246073 - 04/27 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 04/27 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 - 04/27 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19328052.497917829,0.0,14093307.03785499,0.0 - 04/27 05:00:00,0.0,0.0,446574.50591163369,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19774627.00382946,0.0,14093307.03785499,0.0 - 04/27 06:00:00,0.0,0.0,167619.64518207828,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19487041.05225249,0.0,14093307.03785499,0.0 - 04/27 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,15502637.741640486 - 04/27 08:00:00,5834159.756469125,0.0,9102564.273695026,0.0,0.0,0.0,984426.0983611927,0.0,5159.459548313522,5078.687246588446,5085.231653476505,6121.501805395159,93122719.04211042,0.0,56373228.15141996,38756594.35410121 - 04/27 09:00:00,3706925.785317924,0.0,5569406.3635125,0.0,0.0,0.0,3197341.0457145196,0.0,12881.628723732729,12679.964422997225,12696.303851373325,15283.560758710752,205222921.11907546,0.0,56373228.15141996,38756594.35410121 - 04/27 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12866.722465640838,12665.291525156525,12681.612046006121,15265.875052491576,192526203.9214622,0.0,28186614.07570998,0.0 - 04/27 11:00:00,0.0,6796009.812812375,0.0,0.0,0.0,0.0,0.0,0.0,12815.794811422056,12615.161152865083,12631.417075613283,15205.451334789068,191764167.74888218,6796009.812812375,28186614.07570998,0.0 - 04/27 12:00:00,0.0,18871391.930972455,0.0,5291175.602059171,0.0,4300613.008104604,0.0,2484559.134026148,7685.251509223035,7564.937463163894,7574.685657222298,9118.25755160779,114995275.85238128,30947739.67516237,28186614.07570998,0.0 - 04/27 13:00:00,0.0,26813280.912197643,0.0,14987743.805703264,0.0,9543531.62476058,0.0,11032961.917207944,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,62377518.25986943,28186614.07570998,0.0 - 04/27 14:00:00,0.0,33985740.39208263,0.0,20671993.19456831,0.0,14421928.76092602,0.0,17271749.681088557,7673.405499563991,7553.276904995933,7563.010073234968,9104.202713337321,114818022.68807598,86351412.02866553,28186614.07570998,0.0 - 04/27 15:00:00,0.0,32726833.475239185,0.0,24290162.02547911,0.0,17166560.369120897,0.0,20192450.275240117,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,94376006.14507932,28186614.07570998,0.0 - 04/27 16:00:00,0.0,25160324.687193358,0.0,19836004.88459007,0.0,15508899.514219489,0.0,17214794.376611186,17942.11273599088,17661.225614011113,17683.983905858593,21287.63186870469,268469834.848435,77720023.4626141,28186614.07570998,0.0 - 04/27 17:00:00,0.0,9131636.421046518,0.0,4998861.695208591,0.0,8704778.185069867,0.0,7282074.37745093,23108.102997067577,22746.341333836128,22775.652316315573,27416.882115500728,345769123.545792,30117350.678775908,35233267.594637479,0.0 - 04/27 18:00:00,0.0,0.0,0.0,0.0,0.0,291054.91445201079,0.0,0.0,18023.00247210993,17740.84900622126,17763.70990093659,21383.604452858894,269680196.995656,291054.91445201079,14093307.03785499,0.0 - 04/27 19:00:00,0.0,0.0,0.0,0.0,0.0,8411996.793931753,0.0,2903393.8739317415,18008.426833834747,17726.501552282356,17749.343958838872,21366.311014431703,269462100.09379568,11315390.667863494,63419881.67034747,0.0 - 04/27 20:00:00,0.0,3477170.3819099755,0.0,0.0,0.0,17049441.772084636,0.0,12526933.953934687,15520.665454345415,15277.686541280355,15297.373399749846,18414.677101357585,232237448.98823954,33053546.107929298,63419881.67034747,69761869.8373822 - 04/27 21:00:00,0.0,0.0,5499180.368658056,0.0,0.0,1197572.626541298,0.0,0.0,12932.333272844795,12729.87518293402,12746.27892641858,15343.719770720589,199007126.1191628,1197572.626541298,49326574.63249246,69761869.8373822 - 04/27 22:00:00,11730334.651048612,0.0,18996606.426857816,0.0,0.0,0.0,1295260.5770007563,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,186806593.44403745,0.0,35233267.594637479,69761869.8373822 - 04/27 23:00:00,17829693.993893614,0.0,25162014.108883807,0.0,0.0,0.0,10451678.61352586,0.0,7757.472010683286,7636.027339201064,7645.867139820733,9203.944419764355,169519305.99039326,0.0,35233267.594637479,62010550.96656194 - 04/27 24:00:00,25063275.859004454,0.0,32706498.911568628,0.0,6109746.643469742,0.0,18080709.546734938,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,159320090.09973333,0.0,35233267.594637479,46507913.22492146 - 04/28 01:00:00,34772358.64475362,0.0,42146404.72962309,0.0,16172948.907194516,0.0,29299668.996367188,0.0,2584.4576936539044,2543.997526329646,2547.2757268027514,3066.360398705158,161062910.12170766,0.0,21139960.556782485,23253956.61246073 - 04/28 02:00:00,729282.9333421191,0.0,4244145.02511311,0.0,0.0,0.0,0.0,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,24308056.09489534,0.0,14093307.03785499,0.0 - 04/28 03:00:00,21612604.138859754,0.0,29167876.21255039,0.0,3130392.6864516369,0.0,12061536.807654214,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915205,85300839.93561834,0.0,14093307.03785499,0.0 - 04/28 04:00:00,25708509.00730874,0.0,31798191.886784145,0.0,9678320.37225997,0.0,20544134.89032933,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,107054866.16289699,0.0,14093307.03785499,0.0 - 04/28 05:00:00,25449820.218944469,0.0,30957531.398368978,0.0,11003537.425558566,0.0,20895501.844569439,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,107632100.89365626,0.0,14093307.03785499,0.0 - 04/28 06:00:00,26379191.233921775,0.0,32144828.26756053,0.0,12263507.896853213,0.0,22420735.62598384,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,112535350.26459119,0.0,14093307.03785499,0.0 - 04/28 07:00:00,20332623.68526112,0.0,25733426.716644415,0.0,7835388.701282141,0.0,16301483.308477804,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,89541888.84301195,0.0,14093307.03785499,15502637.741640486 - 04/28 08:00:00,21367963.9166441,0.0,27891543.355813475,0.0,13662237.890155424,0.0,21184282.972732136,0.0,1292.69588468862,1272.4584894616406,1274.0981821024498,1533.7343219475166,103448780.89686597,0.0,56373228.15141996,38756594.35410121 - 04/28 09:00:00,28635696.344204785,0.0,36444481.43111753,0.0,22818268.207663306,0.0,32546685.431663064,0.0,5172.520676985971,5091.5439008549769,5098.104874854311,6136.9983359910879,197842135.45391954,0.0,56373228.15141996,38756594.35410121 - 04/28 10:00:00,18379837.911610348,0.0,27010657.431852469,0.0,16487402.498882682,0.0,24815310.861120255,0.0,7760.35834873224,7638.868491089416,7648.711952823284,9207.368949681142,202812316.57583965,0.0,28186614.07570998,0.0 - 04/28 11:00:00,13062809.877350368,0.0,22164059.567870119,0.0,13706296.128167578,0.0,20930306.61178671,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,185986500.94715173,0.0,28186614.07570998,0.0 - 04/28 12:00:00,15542314.386215436,0.0,21533003.982231596,0.0,12518653.677542793,0.0,19575961.435026338,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,146582416.47709603,0.0,28186614.07570998,0.0 - 04/28 13:00:00,12368076.532624634,0.0,17692055.905886864,0.0,10190491.448446457,0.0,16413184.551699846,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,134072907.24778793,0.0,28186614.07570998,0.0 - 04/28 14:00:00,8541727.918106813,0.0,14386578.645558365,0.0,7655492.591306547,0.0,13016823.640811313,0.0,7757.96038905313,7636.508071916422,7646.348492009262,9204.523862057627,159683849.72991423,0.0,28186614.07570998,0.0 - 04/28 15:00:00,0.0,0.0,1661074.5621810726,0.0,654452.7851739549,0.0,3080404.2133109245,0.0,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,160113411.30926086,0.0,28186614.07570998,0.0 - 04/28 16:00:00,0.0,0.0,6512837.094204524,0.0,2208435.3300343847,0.0,5971524.633410737,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,208079565.29713685,0.0,28186614.07570998,0.0 - 04/28 17:00:00,4485881.209832898,0.0,9127826.012074683,0.0,2140981.583112318,0.0,6201946.021064313,0.0,15509.890331505097,15267.080104998198,15286.753295991964,18401.892829419274,254032854.44897659,0.0,35233267.594637479,0.0 - 04/28 18:00:00,8375328.94697148,0.0,13040167.72494677,0.0,3851700.214864055,0.0,8630727.715229782,0.0,18099.10389419562,17815.75904634749,17838.716470295436,21473.895885193695,304716835.6677281,0.0,14093307.03785499,0.0 - 04/28 19:00:00,1890213.7921238724,0.0,6661874.957345447,0.0,0.0,0.0,0.0,0.0,10342.773325140062,10180.855279292538,10193.974350458202,12271.305742349134,163312160.0595331,0.0,63419881.67034747,0.0 - 04/28 20:00:00,0.0,0.0,0.0,0.0,0.0,4307834.788624999,0.0,0.0,7759.15038350508,7637.679436783233,7647.521366299263,9205.935745049985,116101032.95389521,4307834.788624999,63419881.67034747,69761869.8373822 - 04/28 21:00:00,0.0,0.0,1239902.6233894723,0.0,0.0,3921057.1652257258,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,78642550.21100445,3921057.1652257258,49326574.63249246,69761869.8373822 - 04/28 22:00:00,928060.8995618505,0.0,9366938.007818897,0.0,0.0,400073.973281244,0.0,0.0,5173.019507611572,5092.034922194079,5098.596528924525,6137.590179486829,87699467.00496197,400073.973281244,35233267.594637479,69761869.8373822 - 04/28 23:00:00,10058193.518314042,0.0,16871162.47121543,0.0,0.0,0.0,20461.109816606036,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,104364040.50767873,0.0,35233267.594637479,62010550.96656194 - 04/28 24:00:00,16851196.566290067,0.0,23729771.616777444,0.0,0.0,0.0,10834983.23103487,0.0,5173.626478327107,5092.632390669831,5099.194767299391,6138.3103270713149,128829501.6822259,0.0,35233267.594637479,46507913.22492146 - 04/29 01:00:00,27008668.642814835,0.0,33788482.31177642,0.0,9791199.930316743,0.0,21860866.996998129,0.0,2586.6313344745228,2546.1371383977254,2549.4180959793659,3068.93934056585,131153271.15580899,0.0,21139960.556782485,23253956.61246073 - 04/29 02:00:00,0.0,0.0,3294864.198645151,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,22645178.857403555,0.0,14093307.03785499,0.0 - 04/29 03:00:00,13131278.94636903,0.0,19847064.342349307,0.0,0.0,0.0,4094974.585987149,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,56420026.47106953,0.0,14093307.03785499,0.0 - 04/29 04:00:00,17849175.744107274,0.0,22793234.470112657,0.0,3083492.0855247506,0.0,12873152.22412508,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,75943493.27874017,0.0,14093307.03785499,0.0 - 04/29 05:00:00,19624764.48540154,0.0,24454358.82794979,0.0,6660529.2320167659,0.0,15040996.599617966,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,85121577.77532846,0.0,14093307.03785499,0.0 - 04/29 06:00:00,8980201.535721116,0.0,9294676.748734814,0.0,371970.81729689377,0.0,3397786.2990537949,0.0,1292.6360841179099,1272.3996250800208,1274.039241868066,1533.6633708530972,41386493.35971536,0.0,14093307.03785499,0.0 - 04/29 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,77377755.01948162,0.0,14093307.03785499,15502637.741640486 - 04/29 08:00:00,8839615.84970997,0.0,9286633.308420308,0.0,0.0,0.0,3592085.0249289695,0.0,20690.669885869123,20366.753588965188,20392.99822975589,24548.690008158686,331315136.3489552,0.0,56373228.15141996,38756594.35410121 - 04/29 09:00:00,7484432.388540089,0.0,14915390.947867154,0.0,2777312.710452837,0.0,8173045.2866607219,0.0,18106.73880912745,17823.27443526177,17846.24154355541,21482.954420317692,304283334.48326519,0.0,56373228.15141996,38756594.35410121 - 04/29 10:00:00,6602675.804959692,0.0,17115487.916787793,0.0,8273556.29921275,0.0,15486460.027439043,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,241015075.03777705,0.0,28186614.07570998,0.0 - 04/29 11:00:00,5968494.206634294,0.0,17743298.69691659,0.0,10006109.096787483,0.0,16511760.476601534,0.0,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,205060683.94668255,0.0,28186614.07570998,0.0 - 04/29 12:00:00,629267.5929263057,0.0,11427792.48583595,0.0,7427888.629802028,0.0,12238144.23321436,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,109123781.57770878,0.0,28186614.07570998,0.0 - 04/29 13:00:00,0.0,0.0,10327270.90331114,0.0,6649810.549450593,0.0,10679200.37654459,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,105058929.41692132,0.0,28186614.07570998,0.0 - 04/29 14:00:00,0.0,0.0,9326862.549551879,0.0,5407873.655198602,0.0,9679331.956197555,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,101823166.97007817,0.0,28186614.07570998,0.0 - 04/29 15:00:00,0.0,0.0,4570279.939732911,0.0,1593291.3734839592,0.0,4536795.415506054,0.0,7757.079993855047,7635.6414594694019,7645.480762843652,9203.479306761852,126770420.21127075,0.0,28186614.07570998,0.0 - 04/29 16:00:00,0.0,5456489.6225604829,0.0,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,193386768.2394872,5456489.6225604829,28186614.07570998,0.0 - 04/29 17:00:00,0.0,797091.369892715,0.0,0.0,0.0,378891.03996804918,0.0,0.0,12931.566881634291,12729.120789720886,12745.523561092792,15342.810476804278,193496478.1533081,1175982.4098607642,35233267.594637479,0.0 - 04/29 18:00:00,0.0,0.0,5812327.793329844,0.0,0.0,0.0,0.0,0.0,18104.193634288007,17820.76910560924,17843.732985529907,21479.934667525984,276707397.20796117,0.0,14093307.03785499,0.0 - 04/29 19:00:00,395883.426587502,0.0,5070674.81292447,0.0,0.0,0.0,0.0,0.0,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,276420498.4651085,0.0,63419881.67034747,0.0 - 04/29 20:00:00,0.0,0.0,3545453.5005856796,0.0,0.0,1674089.9140107947,0.0,0.0,10344.049616253005,10182.111589830016,10195.232279880034,12272.820013035613,158324622.09698088,1674089.9140107947,63419881.67034747,69761869.8373822 - 04/29 21:00:00,1368211.22483295,0.0,8877573.706383922,0.0,0.0,345389.8620213762,0.0,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,165030176.72034718,345389.8620213762,49326574.63249246,69761869.8373822 - 04/29 22:00:00,7094859.2537276479,0.0,13775128.549450215,0.0,0.0,0.0,0.0,0.0,5171.64800712219,5090.68489280071,5097.244759880489,6135.9629465095699,98253933.98590453,0.0,35233267.594637479,69761869.8373822 - 04/29 23:00:00,11390998.373860956,0.0,18028392.389859994,0.0,0.0,0.0,4118802.1075716859,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,110912644.98966405,0.0,35233267.594637479,62010550.96656194 - 04/29 24:00:00,17680259.663141535,0.0,24322470.708280855,0.0,166894.59451155558,0.0,11740432.279916384,0.0,2584.1493316585417,2543.6939917988458,2546.9718011367265,3065.994538968561,92576972.03467596,0.0,35233267.594637479,46507913.22492146 - 04/30 01:00:00,28726252.302047254,0.0,35354896.51372009,0.0,12629960.588251325,0.0,24153510.17277958,0.0,2582.7318516449929,2542.2987026993398,2545.574714064802,3064.312753041024,139510324.4540188,0.0,21139960.556782485,23253956.61246073 - 04/30 02:00:00,0.0,0.0,3098681.2541119179,0.0,0.0,0.0,0.0,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,22403364.715477446,0.0,14093307.03785499,0.0 - 04/30 03:00:00,19014132.74322721,0.0,26447105.304785547,0.0,2086560.3240215574,0.0,10464480.241718932,0.0,1289.094955332669,1268.9139333265098,1270.5490584449536,1529.461956722605,77301150.2675295,0.0,14093307.03785499,0.0 - 04/30 04:00:00,25758578.24431863,0.0,31570190.52810982,0.0,10656864.608288143,0.0,21068732.180014817,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,108322847.25580698,0.0,14093307.03785499,0.0 - 04/30 05:00:00,27941931.573433363,0.0,33677332.12837624,0.0,13123546.09807655,0.0,23782121.48882533,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,117788509.26514967,0.0,14093307.03785499,0.0 - 04/30 06:00:00,10622376.004454472,0.0,9209216.682115052,0.0,918155.398091086,0.0,4139799.394059806,0.0,1288.5119921743095,1268.340096565146,1269.9744822363526,1528.770293188283,44169696.18971113,0.0,14093307.03785499,0.0 - 04/30 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,77273234.18636205,0.0,14093307.03785499,15502637.741640486 - 04/30 08:00:00,8902818.0995396,0.0,8740929.697315608,0.0,0.0,0.0,4312222.507929211,0.0,20680.152981732364,20356.40132892462,20382.632629771626,24536.212102855337,331395406.8606067,0.0,56373228.15141996,38756594.35410121 - 04/30 09:00:00,0.0,15115785.243501896,0.0,0.0,0.0,7316194.375170604,0.0,823153.1469529467,18104.33615013548,17820.909390344535,17843.873451036405,21480.103757138848,270897201.895159,23255132.765625448,56373228.15141996,38756594.35410121 - 04/30 10:00:00,0.0,23924252.706351963,0.0,0.0,0.0,0.0,0.0,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,193538528.73256899,23924252.706351963,28186614.07570998,0.0 - 04/30 11:00:00,0.0,35774587.63707755,0.0,0.0,0.0,0.0,0.0,0.0,10346.039015223145,10184.069844388157,10197.19305784905,12275.180358973657,154808936.19516246,35774587.63707755,28186614.07570998,0.0 - 04/30 12:00:00,0.0,43062619.89597479,0.0,0.0,0.0,0.0,0.0,0.0,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,43062619.89597479,28186614.07570998,0.0 - 04/30 13:00:00,0.0,51600102.00803165,0.0,0.0,0.0,0.0,0.0,0.0,5167.549388277915,5086.650438599038,5093.20510687279,6131.100091704735,77322618.09163612,51600102.00803165,28186614.07570998,0.0 - 04/30 14:00:00,0.0,57363964.24829754,0.0,12292449.252387438,0.0,10459247.515424332,0.0,10536265.3956539,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,90651926.4117632,28186614.07570998,0.0 - 04/30 15:00:00,0.0,56413515.50784221,0.0,22387174.861487338,0.0,20896147.65500115,0.0,22356521.24859524,7744.903474527883,7623.655565823832,7633.479424150745,9189.03233138649,115887854.86520022,122053359.27292595,28186614.07570998,0.0 - 04/30 16:00:00,0.0,48677446.198309209,0.0,27074178.807125886,0.0,28889364.470477377,0.0,29407083.008007979,12898.648870783803,12696.718116471113,12713.079133691264,15303.754513487898,193003922.2839627,134048072.48392044,28186614.07570998,0.0 - 04/30 17:00:00,0.0,40429049.37274935,0.0,28760808.991079064,0.0,33728936.83400964,0.0,33992508.218362528,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,136911303.41620059,35233267.594637479,0.0 - 04/30 18:00:00,0.0,29422822.518979946,0.0,19943058.882321009,0.0,27951553.441180499,0.0,29240382.296747045,18074.45441088164,17791.49545529315,17814.421613127484,21444.65021417028,270450078.0965012,106557817.1392285,14093307.03785499,0.0 - 04/30 19:00:00,0.0,21942984.861344235,0.0,12780805.692974657,0.0,23499519.405713075,0.0,23351204.179232658,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,270755589.560041,81574514.13926463,63419881.67034747,0.0 - 04/30 20:00:00,0.0,21342714.789702566,0.0,10517100.746655314,0.0,25639116.258117707,0.0,24278322.776844458,10343.574380486538,10181.64379396813,10194.763881215431,12272.256163939564,154772057.59059478,81777254.57132004,63419881.67034747,69761869.8373822 - 04/30 21:00:00,0.0,14508144.15022052,0.0,4855588.66914735,0.0,19892454.064561305,0.0,17426435.083812037,10346.039015223145,10184.069844388157,10197.19305784905,12275.180358973657,154808936.19516246,56682621.96774121,49326574.63249246,69761869.8373822 - 04/30 22:00:00,0.0,7190467.466079532,0.0,41096.981549751945,0.0,13807384.978403952,0.0,9968578.946606158,5173.697994071408,5092.702786821814,5099.265254164,6138.395177772003,77414620.36618522,31007528.372639397,35233267.594637479,69761869.8373822 - 04/30 23:00:00,0.0,1207763.8622544674,0.0,0.0,0.0,8684244.38755319,0.0,3655332.6746997844,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,77410699.60198786,13547340.924507443,35233267.594637479,62010550.96656194 - 04/30 24:00:00,0.0,0.0,7612801.039555388,0.0,0.0,780177.1537153372,0.0,0.0,2585.722872690404,2545.242898752311,2548.5227040148949,3067.861485337112,46303260.898416388,780177.1537153372,35233267.594637479,46507913.22492146 - 05/01 01:00:00,19114335.825214376,0.0,30496604.727057648,0.0,1906565.2412776778,0.0,12676060.605887598,0.0,2583.9882438566935,2543.5354258565864,2546.813030866066,3065.8034144407677,102858070.8135097,0.0,21139960.556782485,23253956.61246073 - 05/01 02:00:00,0.0,0.0,2629476.9564703789,0.0,0.0,0.0,0.0,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,21947785.503060894,0.0,14093307.03785499,0.0 - 05/01 03:00:00,15009648.645541843,0.0,25256045.491848075,0.0,0.0,0.0,7302826.796463285,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,66876816.02155842,0.0,14093307.03785499,0.0 - 05/01 04:00:00,22241388.838933566,0.0,29467586.214133506,0.0,3937845.7535358446,0.0,17384511.202504439,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,92336015.47047287,0.0,14093307.03785499,0.0 - 05/01 05:00:00,23612389.89173051,0.0,30172167.17555352,0.0,9042903.34813733,0.0,19587256.984280185,0.0,1290.0275642831569,1269.8319421098998,1271.46825017636,1530.5684616424867,101717543.7852644,0.0,14093307.03785499,0.0 - 05/01 06:00:00,19454623.764977017,0.0,23888695.29944596,0.0,7363931.536478398,0.0,16042546.814817604,0.0,1290.0275642831569,1269.8319421098998,1271.46825017636,1530.5684616424867,86052623.80128184,0.0,14093307.03785499,0.0 - 05/01 07:00:00,4825252.066633416,0.0,7290116.730597597,0.0,188729.12627097395,0.0,2723446.21270778,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,92375009.0955837,0.0,14093307.03785499,15502637.741640486 - 05/01 08:00:00,12635037.82131255,0.0,12949652.979957998,0.0,9381057.624294199,0.0,13800303.85770975,0.0,20691.220063831403,20367.29515378883,20393.540492441087,24549.34277330935,358371086.82340899,0.0,56373228.15141996,38756594.35410121 - 05/01 09:00:00,0.0,4476161.731872403,1592141.116416478,0.0,0.0,369371.9579578638,0.0,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,272544836.12757316,4845533.689830267,56373228.15141996,38756594.35410121 - 05/01 10:00:00,0.0,2955542.9399939917,0.0,0.0,0.0,0.0,0.0,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,193537639.29368336,2955542.9399939917,28186614.07570998,0.0 - 05/01 11:00:00,0.0,8704567.31136912,0.0,0.0,0.0,0.0,2228066.0639568089,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,157011003.67967043,8704567.31136912,28186614.07570998,0.0 - 05/01 12:00:00,0.0,8945069.903334765,1347019.7640931989,0.0,89159.26656363005,0.0,5368666.283946857,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,84216338.77135527,8945069.903334765,28186614.07570998,0.0 - 05/01 13:00:00,0.0,6418272.990812327,945087.047364129,0.0,749829.3082761377,0.0,3163783.388413219,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,82232189.36113432,6418272.990812327,28186614.07570998,0.0 - 05/01 14:00:00,0.0,10565866.53659996,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,10565866.53659996,28186614.07570998,0.0 - 05/01 15:00:00,0.0,9295839.771667857,0.0,0.0,0.0,0.0,0.0,0.0,7758.226127742089,7636.769650416631,7646.610407580069,9204.839150868207,116087203.2117852,9295839.771667857,28186614.07570998,0.0 - 05/01 16:00:00,0.0,4404819.72201605,0.0,0.0,0.0,0.0,0.0,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,193478672.01964198,4404819.72201605,28186614.07570998,0.0 - 05/01 17:00:00,0.0,914893.4349189538,0.0,0.0,0.0,0.0,0.0,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,193478672.01964198,914893.4349189538,35233267.594637479,0.0 - 05/01 18:00:00,0.0,0.0,1689346.6979115329,0.0,0.0,0.0,0.0,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,272559487.5254103,0.0,14093307.03785499,0.0 - 05/01 19:00:00,0.0,0.0,122777.23673275032,0.0,0.0,0.0,0.0,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,271075472.2478894,0.0,63419881.67034747,0.0 - 05/01 20:00:00,0.0,0.0,0.0,0.0,0.0,9202209.6172258,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,154818944.6569968,9202209.6172258,63419881.67034747,69761869.8373822 - 05/01 21:00:00,0.0,0.0,0.0,0.0,0.0,6321364.515205932,0.0,1094981.0599231977,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,154829515.9915022,7416345.575129129,49326574.63249246,69761869.8373822 - 05/01 22:00:00,0.0,0.0,4487981.561464459,0.0,0.0,2647870.329919139,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,81897453.88996285,2647870.329919139,35233267.594637479,69761869.8373822 - 05/01 23:00:00,1508169.0491411458,0.0,10720871.448621396,0.0,0.0,0.0,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,89600051.5438458,0.0,35233267.594637479,62010550.96656194 - 05/01 24:00:00,9077536.551516073,0.0,16440940.387079528,0.0,0.0,0.0,2288958.880995112,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,66492941.342632349,0.0,35233267.594637479,46507913.22492146 - 05/02 01:00:00,19224806.021080309,0.0,26373185.541560577,0.0,4081066.780665494,0.0,15354929.592366148,0.0,2584.6049648886298,2544.142492005719,2547.4208792818938,3066.535130403471,103707720.4153595,0.0,21139960.556782485,23253956.61246073 - 05/02 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.69588468862,1272.4584894616406,1274.09818210245,1533.7343219475166,19342752.761520819,0.0,14093307.03785499,0.0 - 05/02 03:00:00,3053762.1723234679,0.0,12022742.407229238,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,34407517.165426988,0.0,14093307.03785499,0.0 - 05/02 04:00:00,11800506.188141646,0.0,17210965.46264931,0.0,0.0,0.0,5275470.770878839,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,53617955.007544089,0.0,14093307.03785499,0.0 - 05/02 05:00:00,18772310.64515115,0.0,25142825.715972134,0.0,4104571.4519147837,0.0,14649934.528611375,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,81992494.78025973,0.0,14093307.03785499,0.0 - 05/02 06:00:00,20496844.580805165,0.0,26647798.641396718,0.0,7498708.544635138,0.0,17109734.08728056,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,91075938.29272788,0.0,14093307.03785499,0.0 - 05/02 07:00:00,11520194.289354047,0.0,16202857.380860173,0.0,2794969.447361413,0.0,9317255.547593706,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,117159327.00866649,0.0,14093307.03785499,15502637.741640486 - 05/02 08:00:00,14367952.144720085,0.0,17856558.11671341,0.0,13396596.249085593,0.0,16327575.215344472,0.0,20687.364114619122,20363.499570180807,20389.74001783617,24544.767836759613,371496019.26768818,0.0,56373228.15141996,38756594.35410121 - 05/02 09:00:00,22030545.128426207,0.0,28030610.71515729,0.0,15304463.941530146,0.0,26558460.28724217,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.280507265226,362722618.7336472,0.0,56373228.15141996,38756594.35410121 - 05/02 10:00:00,17660045.76791923,0.0,23366451.30238936,0.0,16154343.125545079,0.0,24086266.975523265,0.0,12929.602571636953,12727.187231363,12743.587511147607,15340.47989797476,274734193.1350173,0.0,28186614.07570998,0.0 - 05/02 11:00:00,14027083.18884053,0.0,19413520.438405776,0.0,14063341.404620909,0.0,21202847.322923539,0.0,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,223480461.12570305,0.0,28186614.07570998,0.0 - 05/02 12:00:00,10526741.978542697,0.0,15720831.965446465,0.0,11758795.995194672,0.0,17850647.94225056,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,133266490.20993279,0.0,28186614.07570998,0.0 - 05/02 13:00:00,16452336.601494112,0.0,23014846.159568166,0.0,13303219.427645196,0.0,21611435.511736618,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,151791310.0289425,0.0,28186614.07570998,0.0 - 05/02 14:00:00,24889405.37893139,0.0,32363618.18348038,0.0,16832643.865152554,0.0,27530089.618168,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,179025229.37423069,0.0,28186614.07570998,0.0 - 05/02 15:00:00,22586047.45203506,0.0,29199516.47299484,0.0,16410554.371766888,0.0,26131739.34097868,0.0,7760.03091819748,7638.546186540759,7648.38923295232,9206.98046585044,210442066.13052307,0.0,28186614.07570998,0.0 - 05/02 16:00:00,19863731.845163455,0.0,25395891.435808608,0.0,13841477.903102119,0.0,22475074.26542227,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,275113814.7431798,0.0,28186614.07570998,0.0 - 05/02 17:00:00,11635917.698351331,0.0,15529883.332829033,0.0,3785102.6056300268,0.0,9949975.841073279,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,234438518.771567,0.0,35233267.594637479,0.0 - 05/02 18:00:00,11867498.148916785,0.0,14455931.68612599,0.0,2202722.246818265,0.0,7190663.258422076,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,306669510.3514398,0.0,14093307.03785499,0.0 - 05/02 19:00:00,9435349.501729515,0.0,12728287.749346996,0.0,0.0,0.0,2859316.107163674,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,295974606.343369,0.0,63419881.67034747,0.0 - 05/02 20:00:00,2872571.7636732438,0.0,8754569.570946567,0.0,0.0,0.0,0.0,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,166456657.32612206,0.0,63419881.67034747,69761869.8373822 - 05/02 21:00:00,5433238.492736325,0.0,11171878.137035435,0.0,0.0,0.0,0.0,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,171434632.62127397,0.0,49326574.63249246,69761869.8373822 - 05/02 22:00:00,9517911.859796089,0.0,15346951.353946595,0.0,0.0,0.0,560750.6031645347,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,102835086.1454056,0.0,35233267.594637479,69761869.8373822 - 05/02 23:00:00,12905871.775950149,0.0,18867742.810041775,0.0,0.0,0.0,5953189.069283698,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,115128062.29030922,0.0,35233267.594637479,62010550.96656194 - 05/02 24:00:00,18761298.655176537,0.0,24911286.36199261,0.0,1771004.0163951549,0.0,12380186.464870569,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,96509281.0214765,0.0,35233267.594637479,46507913.22492146 - 05/03 01:00:00,27848751.347212588,0.0,34009710.985560979,0.0,11699663.212990955,0.0,22986029.69799266,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,135229660.7667988,0.0,21139960.556782485,23253956.61246073 - 05/03 02:00:00,0.0,0.0,3314515.919884352,0.0,0.0,0.0,0.0,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,22651382.159727839,0.0,14093307.03785499,0.0 - 05/03 03:00:00,18795177.161503957,0.0,26528396.85257001,0.0,0.0,0.0,9659503.913583372,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,74319944.16750081,0.0,14093307.03785499,0.0 - 05/03 04:00:00,24008277.762086229,0.0,30239393.85693356,0.0,6790133.7651530769,0.0,18587442.049321489,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,98962113.67333783,0.0,14093307.03785499,0.0 - 05/03 05:00:00,27918333.072647185,0.0,34268276.9348436,0.0,11835931.45142614,0.0,23026422.156049454,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,116364071.37602146,0.0,14093307.03785499,0.0 - 05/03 06:00:00,29928801.08837663,0.0,36379528.66956176,0.0,14459404.275917836,0.0,25975300.46058678,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,126047717.95580852,0.0,14093307.03785499,0.0 - 05/03 07:00:00,25191610.62796875,0.0,31624541.257005738,0.0,11379193.852032502,0.0,21757665.670165786,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,167213442.45139314,0.0,14093307.03785499,15502637.741640486 - 05/03 08:00:00,35180662.20762259,0.0,41561395.54889638,0.0,23611933.356861514,0.0,35021583.90049868,0.0,20653.57345802728,20330.23791262154,20356.4354992362,24504.67651258205,444417299.1907606,0.0,56373228.15141996,38756594.35410121 - 05/03 09:00:00,47143165.96322895,0.0,54683326.50258915,0.0,32815748.58126071,0.0,47696719.02255398,0.0,18086.757874954284,17803.606306340524,17826.54807024257,21459.247804640374,452973136.2718727,0.0,56373228.15141996,38756594.35410121 - 05/03 10:00:00,41095308.294290248,0.0,48120130.758232507,0.0,29515238.071061408,0.0,42859140.54556242,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,355017345.28435477,0.0,28186614.07570998,0.0 - 05/03 11:00:00,29043791.197445647,0.0,36122000.372796628,0.0,23508526.512848569,0.0,34208774.864298928,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,277685610.217457,0.0,28186614.07570998,0.0 - 05/03 12:00:00,16229948.64936556,0.0,25051164.97638499,0.0,18691415.38602569,0.0,27002664.33036356,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,164376451.97717343,0.0,28186614.07570998,0.0 - 05/03 13:00:00,26584127.707211805,0.0,33575332.20439015,0.0,20559534.382736718,0.0,30643193.982028169,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,188763446.91140045,0.0,28186614.07570998,0.0 - 05/03 14:00:00,28865863.51308319,0.0,36142123.26009776,0.0,21120760.253902675,0.0,32185752.329458685,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,195701333.74199847,0.0,28186614.07570998,0.0 - 05/03 15:00:00,32003492.86927797,0.0,39262092.12123325,0.0,22670827.869850629,0.0,34420374.90494873,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,244413304.3344355,0.0,28186614.07570998,0.0 - 05/03 16:00:00,36175437.974495727,0.0,43605438.75562063,0.0,24782512.54112997,0.0,37652249.27701646,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,335584300.9466976,0.0,28186614.07570998,0.0 - 05/03 17:00:00,42416321.19881289,0.0,50368977.0641411,0.0,27082100.10640252,0.0,41483632.07465033,0.0,12919.11276782449,12716.861647386091,12733.248621601833,15328.034146171698,354661156.30274966,0.0,35233267.594637479,0.0 - 05/03 18:00:00,50449799.14538517,0.0,58698340.83724255,0.0,32262729.089240675,0.0,48432215.261944647,0.0,18079.122961514946,17796.09091889537,17819.02299845361,21450.189271287163,460363018.474357,0.0,14093307.03785499,0.0 - 05/03 19:00:00,40274119.744864787,0.0,49067915.29321042,0.0,20483061.32708295,0.0,34775552.954658489,0.0,18071.876775773868,17788.958173543844,17811.88106183167,21441.59194850929,415012157.9745878,0.0,63419881.67034747,0.0 - 05/03 20:00:00,28002332.914854364,0.0,37222990.73389323,0.0,7579727.602288713,0.0,19475392.782658794,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,246801306.12213586,0.0,63419881.67034747,69761869.8373822 - 05/03 21:00:00,32141518.498085109,0.0,41462275.325247008,0.0,10968237.40907789,0.0,23905692.235841037,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,262915191.15917529,0.0,49326574.63249246,69761869.8373822 - 05/03 22:00:00,37297069.241991449,0.0,46879680.86171171,0.0,15094801.212017045,0.0,29378566.61455983,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,205822234.34150655,0.0,35233267.594637479,69761869.8373822 - 05/03 23:00:00,40182687.69931506,0.0,49909111.71201156,0.0,17406111.065032979,0.0,32435097.69819093,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,217105124.58577708,0.0,35233267.594637479,62010550.96656194 - 05/03 24:00:00,44594013.00007836,0.0,54383830.6235135,0.0,21363450.27738095,0.0,37399547.642977248,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,196305602.3451053,0.0,35233267.594637479,46507913.22492146 - 05/04 01:00:00,52977339.06637361,0.0,62670670.407018329,0.0,29465862.405890503,0.0,47237991.568481158,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,230916624.24891884,0.0,21139960.556782485,23253956.61246073 - 05/04 02:00:00,13377459.194670629,0.0,21945310.686740739,0.0,0.0,0.0,5332353.770578321,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,59937504.05256732,0.0,14093307.03785499,0.0 - 05/04 03:00:00,37476791.877839509,0.0,45861449.40206386,0.0,14833150.755924184,0.0,30935371.56735372,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,148389144.00375889,0.0,14093307.03785499,0.0 - 05/04 04:00:00,37954024.68273866,0.0,45716033.8150452,0.0,18609972.448930496,0.0,32605100.866161549,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,154178160.91568256,0.0,14093307.03785499,0.0 - 05/04 05:00:00,37754072.81335791,0.0,45225554.697842609,0.0,19236675.24511276,0.0,32785430.382982848,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,154294762.24210275,0.0,14093307.03785499,0.0 - 05/04 06:00:00,35727922.056701708,0.0,42836313.87414043,0.0,18707140.991469519,0.0,31478478.414673948,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,148054538.7983511,0.0,14093307.03785499,0.0 - 05/04 07:00:00,29539419.61441715,0.0,36330054.65354639,0.0,14551337.91718917,0.0,25790224.796488577,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,125515720.44300682,0.0,14093307.03785499,15502637.741640486 - 05/04 08:00:00,42903988.633135799,0.0,50252087.10000271,0.0,27668615.703271569,0.0,42183690.85659426,0.0,5157.491207557575,5076.749720574226,5083.291630762258,6119.166444224414,240180498.70423085,0.0,56373228.15141996,38756594.35410121 - 05/04 09:00:00,50505669.76042419,0.0,58531980.97970075,0.0,35499499.723860267,0.0,50831542.97646277,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,388415528.0541032,0.0,56373228.15141996,38756594.35410121 - 05/04 10:00:00,48714314.2175653,0.0,56635739.62279384,0.0,33845681.97431558,0.0,49292826.87728446,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,381535397.30561438,0.0,28186614.07570998,0.0 - 05/04 11:00:00,46334580.48351784,0.0,54352876.89779563,0.0,31942648.571123095,0.0,47125173.85443383,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,372906357.4174213,0.0,28186614.07570998,0.0 - 05/04 12:00:00,44896044.57960985,0.0,52962709.76995522,0.0,30724794.901875836,0.0,45721839.44581874,0.0,7745.09004676023,7623.839217233076,7633.6633122135749,9189.25369221827,290196035.2635902,0.0,28186614.07570998,0.0 - 05/04 13:00:00,45396452.02018435,0.0,53500600.94671172,0.0,30285976.754973797,0.0,45438775.948128107,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,290558920.3016597,0.0,28186614.07570998,0.0 - 05/04 14:00:00,47496199.792600188,0.0,55677563.1858125,0.0,30669143.835669038,0.0,46282407.02519519,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,296062428.47093859,0.0,28186614.07570998,0.0 - 05/04 15:00:00,42419992.3036578,0.0,50376139.60310219,0.0,28136450.017063168,0.0,42713170.367207508,0.0,7751.467660694694,7630.116988431653,7639.9491729611,9196.82048770302,279631827.8062763,0.0,28186614.07570998,0.0 - 05/04 16:00:00,41178365.647779639,0.0,48954443.863715257,0.0,27181931.552002178,0.0,41472926.07994233,0.0,18086.757874954284,17803.606306340524,17826.548070242567,21459.247804640374,429421843.3456793,0.0,28186614.07570998,0.0 - 05/04 17:00:00,41842773.95273945,0.0,49585372.64029182,0.0,26202772.42459544,0.0,40492881.28711311,0.0,23261.44468399767,22897.282428051465,22926.787913537042,27598.81617363124,506187392.6219225,0.0,35233267.594637479,0.0 - 05/04 18:00:00,47604512.08031313,0.0,55593049.62983711,0.0,29646833.377115236,0.0,45126364.425944607,0.0,18092.234754220408,17808.997444040026,17831.946154973255,21465.745912824295,448686886.8710188,0.0,14093307.03785499,0.0 - 05/04 19:00:00,38256741.474779527,0.0,46657030.0813152,0.0,19047247.447401808,0.0,32696847.08700912,0.0,18086.757874954284,17803.606306340524,17826.548070242567,21459.247804640374,407292042.2927456,0.0,63419881.67034747,0.0 - 05/04 20:00:00,27023207.10956047,0.0,35939524.08833834,0.0,6938864.600502364,0.0,18452875.444606835,0.0,15490.18009352046,15247.678434466152,15267.326624427149,18378.50738443654,320135764.37566909,0.0,63419881.67034747,69761869.8373822 - 05/04 21:00:00,30854214.65635867,0.0,39887962.514646958,0.0,10168930.624488268,0.0,22642859.895735288,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,296705045.30178007,0.0,49326574.63249246,69761869.8373822 - 05/04 22:00:00,34078274.037847418,0.0,43152920.535783518,0.0,12977756.673465524,0.0,26247540.624953748,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,270977353.96049097,0.0,35233267.594637479,69761869.8373822 - 05/04 23:00:00,37036585.663785967,0.0,46272801.30628677,0.0,15357858.184082954,0.0,29402927.686955967,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,243898273.6093048,0.0,35233267.594637479,62010550.96656194 - 05/04 24:00:00,41374459.21890921,0.0,50727342.29981953,0.0,19174582.892368527,0.0,34241394.98772775,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,222736513.24428714,0.0,35233267.594637479,46507913.22492146 - 05/05 01:00:00,47702925.353281248,0.0,56595893.18227809,0.0,26212017.779369274,0.0,42275427.359416607,0.0,2580.303349104235,2539.908218818894,2543.1811498018848,3061.431427478056,211395630.59707628,0.0,21139960.556782485,23253956.61246073 - 05/05 02:00:00,10298169.359478739,0.0,17542583.811018424,0.0,0.0,0.0,3200188.7780009445,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,50345625.40986362,0.0,14093307.03785499,0.0 - 05/05 03:00:00,32436073.41741559,0.0,40268327.854460019,0.0,8518199.100720296,0.0,25176481.369495907,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,125703765.20345733,0.0,14093307.03785499,0.0 - 05/05 04:00:00,31362980.60517945,0.0,38047138.62896786,0.0,14466058.489422623,0.0,26336930.61877851,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,129528216.10340356,0.0,14093307.03785499,0.0 - 05/05 05:00:00,30570558.397194514,0.0,36675042.88482956,0.0,14770855.290896146,0.0,25906516.84734314,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,127238081.18131845,0.0,14093307.03785499,0.0 - 05/05 06:00:00,26500389.1391391,0.0,31030073.514866435,0.0,12226506.034199935,0.0,22080922.725310379,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,111152999.17457095,0.0,14093307.03785499,0.0 - 05/05 07:00:00,17521521.586834194,0.0,21589750.78024003,0.0,5425337.47808041,0.0,12957964.596248487,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,76817426.8800134,0.0,14093307.03785499,15502637.741640486 - 05/05 08:00:00,20599332.933735834,0.0,26985797.760035799,0.0,13473342.30312122,0.0,20855167.00487771,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,101250506.24161405,0.0,56373228.15141996,38756594.35410121 - 05/05 09:00:00,28127175.202789796,0.0,35963901.70889704,0.0,22696245.15687248,0.0,32569322.788062507,0.0,5170.78353875448,5089.833957846562,5096.392728409799,6134.937287790066,196727655.9027051,0.0,56373228.15141996,38756594.35410121 - 05/05 10:00:00,21865312.53547176,0.0,31035745.195561977,0.0,17837420.16401401,0.0,27880163.042048675,0.0,7760.03091819748,7638.546186540759,7648.38923295232,9206.98046585044,214732849.42984403,0.0,28186614.07570998,0.0 - 05/05 11:00:00,11929047.466643814,0.0,23602688.972498284,0.0,14646334.651636739,0.0,23110651.712756445,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,189410859.79716195,0.0,28186614.07570998,0.0 - 05/05 12:00:00,8550565.028627849,0.0,19588155.05972012,0.0,13524435.301352254,0.0,20470119.143512925,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,139548330.2506865,0.0,28186614.07570998,0.0 - 05/05 13:00:00,6262155.117994105,0.0,14571495.675139552,0.0,9569125.456116308,0.0,15153809.988688922,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,122948055.04579568,0.0,28186614.07570998,0.0 - 05/05 14:00:00,6421292.494647139,0.0,12128552.997832716,0.0,6589121.3919162959,0.0,11683304.025425336,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,152854331.85351385,0.0,28186614.07570998,0.0 - 05/05 15:00:00,3687707.4404961017,0.0,8744088.668069313,0.0,4406114.703765272,0.0,8602934.00477327,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,180187824.05126564,0.0,28186614.07570998,0.0 - 05/05 16:00:00,0.0,0.0,1895098.4243090645,0.0,211738.15618343358,0.0,2273813.3312617398,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,197767418.15124146,0.0,28186614.07570998,0.0 - 05/05 17:00:00,3641163.449083693,0.0,9000780.250275955,0.0,0.0,0.0,4306322.984543073,0.0,15509.081827508919,15266.284258282907,15285.956423746948,18400.9335702903,249012388.57128737,0.0,35233267.594637479,0.0 - 05/05 18:00:00,8312098.753926175,0.0,12624756.605839393,0.0,745809.8442506426,0.0,5634027.3400786169,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,298058168.07937696,0.0,14093307.03785499,0.0 - 05/05 19:00:00,303795.72245670718,0.0,2035908.968419261,0.0,0.0,0.0,0.0,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,157086683.92503763,0.0,63419881.67034747,0.0 - 05/05 20:00:00,342209.9813981244,0.0,4087058.8426512198,0.0,0.0,848038.9980469104,0.0,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,120546509.00917669,848038.9980469104,63419881.67034747,69761869.8373822 - 05/05 21:00:00,3340187.2780870387,0.0,9785985.15467567,0.0,0.0,305682.8230308079,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,90540930.42851381,305682.8230308079,49326574.63249246,69761869.8373822 - 05/05 22:00:00,9386907.73577069,0.0,15144004.302765064,0.0,0.0,0.0,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,101940384.36703415,0.0,35233267.594637479,69761869.8373822 - 05/05 23:00:00,15591036.371014558,0.0,21503197.69183637,0.0,0.0,0.0,7564664.580546187,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,121982948.98689425,0.0,35233267.594637479,62010550.96656194 - 05/05 24:00:00,19246726.21860697,0.0,25059449.13806772,0.0,2468925.538970125,0.0,12386624.383455562,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,136548559.6645565,0.0,35233267.594637479,46507913.22492146 - 05/06 01:00:00,28077086.904852414,0.0,33775061.64769691,0.0,12204284.334771499,0.0,22767634.285994173,0.0,2583.822553564898,2543.3723294772187,2546.6497243203668,3065.60682923434,135486092.34506358,0.0,21139960.556782485,23253956.61246073 - 05/06 02:00:00,0.0,0.0,1368076.957790731,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,20699089.543665016,0.0,14093307.03785499,0.0 - 05/06 03:00:00,13916037.822461673,0.0,20624595.03287609,0.0,0.0,0.0,2908385.77481143,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,56771871.06875947,0.0,14093307.03785499,0.0 - 05/06 04:00:00,22519866.593486437,0.0,27510574.08979559,0.0,7273466.020380448,0.0,17414649.789883619,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,94000936.8941237,0.0,14093307.03785499,0.0 - 05/06 05:00:00,24120122.450643906,0.0,27381710.34664648,0.0,10006208.844530583,0.0,19316732.45740071,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,100093255.79429727,0.0,14093307.03785499,0.0 - 05/06 06:00:00,13003773.444253304,0.0,11301112.962552069,0.0,1402456.452239945,0.0,7759699.607069753,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,52760071.56892171,0.0,14093307.03785499,0.0 - 05/06 07:00:00,7197479.807993005,0.0,9201978.444199099,0.0,462309.10671378098,0.0,3916287.9934166886,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,98069465.10676372,0.0,14093307.03785499,15502637.741640486 - 05/06 08:00:00,13443355.646229228,0.0,13321910.184972303,0.0,10981655.172800197,0.0,15125580.37764185,0.0,20683.13415501792,20359.335831386248,20385.570913639196,24539.749151160264,362356545.5659766,0.0,56373228.15141996,38756594.35410121 - 05/06 09:00:00,4374677.948789945,0.0,7084595.318698072,0.0,563610.5976012534,0.0,3823634.358447694,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,286798171.2086658,0.0,56373228.15141996,38756594.35410121 - 05/06 10:00:00,0.0,5693278.46697681,0.0,0.0,0.0,0.0,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193528733.64187894,5693278.46697681,28186614.07570998,0.0 - 05/06 11:00:00,0.0,17932454.29140015,0.0,0.0,0.0,0.0,782630.3411518922,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,155565567.9568655,17932454.29140015,28186614.07570998,0.0 - 05/06 12:00:00,0.0,25106723.901878045,0.0,0.0,0.0,0.0,343772.68851022227,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77671388.34403406,25106723.901878045,28186614.07570998,0.0 - 05/06 13:00:00,0.0,31458574.31378968,0.0,408991.21891182727,0.0,0.0,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,31867565.532701509,28186614.07570998,0.0 - 05/06 14:00:00,0.0,30594429.72212643,0.0,8786391.893327296,0.0,0.0,0.0,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,39380821.61545373,28186614.07570998,0.0 - 05/06 15:00:00,0.0,18217531.844882177,0.0,3840331.9567733604,0.0,4629310.037812361,0.0,1061202.8583893495,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,115951877.39581964,27748376.697857247,28186614.07570998,0.0 - 05/06 16:00:00,0.0,13858183.158005819,0.0,3033480.593742083,0.0,6236129.226768902,0.0,3169685.4979683884,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,26297478.476485194,28186614.07570998,0.0 - 05/06 17:00:00,0.0,12151920.997033349,0.0,3572371.1441535546,0.0,8793716.195005469,0.0,6327445.367364913,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,30845453.703557288,35233267.594637479,0.0 - 05/06 18:00:00,0.0,5366678.161700024,0.0,187938.07519130934,0.0,6161118.323909774,0.0,3520620.937985192,18087.591831984333,17804.427207617697,17827.37002933482,21460.237262822433,270646654.79433348,15236355.4987863,14093307.03785499,0.0 - 05/06 19:00:00,0.0,7070561.475928673,0.0,1465891.4615398532,0.0,11628633.840932198,0.0,9677754.544707507,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,29842841.32310823,63419881.67034747,0.0 - 05/06 20:00:00,0.0,8271199.728109626,0.0,824327.1255489261,0.0,15509732.989013877,0.0,12463995.512688399,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,154822986.91350315,37069255.35536082,63419881.67034747,69761869.8373822 - 05/06 21:00:00,0.0,2086912.8915774399,0.0,0.0,0.0,10178448.685898252,0.0,6059211.334979877,10347.454178083566,10185.462852609999,10198.587861104166,12276.85939568746,154830111.43494673,18324572.91245557,49326574.63249246,69761869.8373822 - 05/06 22:00:00,0.0,0.0,0.0,0.0,0.0,4822163.441038373,0.0,356438.6988666142,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,77409472.3284984,5178602.139904987,35233267.594637479,69761869.8373822 - 05/06 23:00:00,0.0,0.0,4398604.718201199,0.0,0.0,1512332.7972192835,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,81808077.0466996,1512332.7972192835,35233267.594637479,62010550.96656194 - 05/06 24:00:00,2268392.1588766009,0.0,12391762.98480779,0.0,0.0,0.0,0.0,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,53345660.66672602,0.0,35233267.594637479,46507913.22492146 - 05/07 01:00:00,14826425.051686425,0.0,22273735.70805823,0.0,486175.70549278726,0.0,8832710.126938612,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,85112463.78490414,0.0,21139960.556782485,23253956.61246073 - 05/07 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,19336866.239843489,0.0,14093307.03785499,0.0 - 05/07 03:00:00,3060943.270425954,0.0,10084156.678306686,0.0,0.0,0.0,0.0,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,32481966.188576133,0.0,14093307.03785499,0.0 - 05/07 04:00:00,11019865.249853867,0.0,16586896.23542256,0.0,0.0,0.0,6856844.331261285,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,53778713.57759279,0.0,14093307.03785499,0.0 - 05/07 05:00:00,11740741.177770287,0.0,15545040.116839746,0.0,1174729.6289844234,0.0,8501903.136951888,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,56277521.82160143,0.0,14093307.03785499,0.0 - 05/07 06:00:00,2288596.897368698,0.0,1874350.7291298509,0.0,0.0,0.0,520757.2917662939,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,24020571.15810833,0.0,14093307.03785499,0.0 - 05/07 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.783538754478,5089.833957846562,5096.3927284098,6134.937287790066,77371011.04608327,0.0,14093307.03785499,15502637.741640486 - 05/07 08:00:00,0.0,0.0,0.0,0.0,0.0,4156962.296200116,0.0,0.0,20694.82876798237,20370.847363003115,20397.097279039514,24553.624363031773,309659031.9830044,4156962.296200116,56373228.15141996,38756594.35410121 - 05/07 09:00:00,0.0,20950211.843916887,0.0,7378410.703261035,0.0,19447409.970769835,0.0,17874053.96973937,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,65650086.48768712,56373228.15141996,38756594.35410121 - 05/07 10:00:00,0.0,27469806.909341944,0.0,7600945.133249193,0.0,8411775.847120205,0.0,6811527.91499208,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,50294055.804703418,28186614.07570998,0.0 - 05/07 11:00:00,0.0,35976344.97138253,0.0,10796431.060749092,0.0,6913682.413438889,0.0,5678186.890404739,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,59364645.335975248,28186614.07570998,0.0 - 05/07 12:00:00,0.0,40407116.02483596,0.0,12159184.756135676,0.0,5297454.4409563899,0.0,5541587.519895698,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,63405342.74182372,28186614.07570998,0.0 - 05/07 13:00:00,0.0,45021326.02198127,0.0,16494513.658075156,0.0,7990049.744714895,0.0,10254845.454838589,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,79760734.8796099,28186614.07570998,0.0 - 05/07 14:00:00,0.0,48338730.72000543,0.0,23765849.786393219,0.0,15435787.015760243,0.0,18422423.714219046,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,105962791.23637794,28186614.07570998,0.0 - 05/07 15:00:00,0.0,46299094.88352321,0.0,28089511.948851903,0.0,23366186.303682079,0.0,26063525.377018393,7716.808856023122,7596.000773812809,7605.78899611755,9155.69913896811,115467471.95371773,123818318.51307559,28186614.07570998,0.0 - 05/07 16:00:00,0.0,39888327.516100738,0.0,29978653.027934787,0.0,29240579.03054309,0.0,30732175.02513209,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,129839734.5997107,28186614.07570998,0.0 - 05/07 17:00:00,0.0,36229916.962903279,0.0,30725889.594260806,0.0,34541329.09301674,0.0,37947633.425886329,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,139444769.07606716,35233267.594637479,0.0 - 05/07 18:00:00,0.0,29416341.445743134,0.0,25480272.655678635,0.0,29665822.395771605,0.0,33602808.173598717,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,118165244.6707921,14093307.03785499,0.0 - 05/07 19:00:00,0.0,27407158.301990086,0.0,25760413.626511888,0.0,30129270.10005213,0.0,34310339.81314241,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,117607181.84169652,63419881.67034747,0.0 - 05/07 20:00:00,0.0,20929338.19053863,0.0,14516030.699368693,0.0,26663528.061260769,0.0,27106789.10154477,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,89215686.05271286,63419881.67034747,69761869.8373822 - 05/07 21:00:00,0.0,13902886.256250959,0.0,7803723.79432801,0.0,20732623.54396758,0.0,19798117.43846859,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,62237351.03301514,49326574.63249246,69761869.8373822 - 05/07 22:00:00,0.0,10746043.136062615,0.0,5281101.390369313,0.0,17610467.280390074,0.0,16234744.482062653,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,49872356.288884658,35233267.594637479,69761869.8373822 - 05/07 23:00:00,0.0,3333208.854464558,0.0,497447.83286597786,0.0,10999285.45587911,0.0,7909067.649357065,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,77414757.9957511,22739009.79256671,35233267.594637479,62010550.96656194 - 05/07 24:00:00,0.0,0.0,0.0,0.0,0.0,4005403.4802034369,0.0,23075.016527451222,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,38707378.99787555,4028478.4967308875,35233267.594637479,46507913.22492146 - 05/08 01:00:00,1650301.815373239,0.0,7167931.252749211,0.0,0.0,0.0,0.0,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,47518862.38563925,0.0,21139960.556782485,23253956.61246073 - 05/08 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,19322852.438610287,0.0,14093307.03785499,0.0 - 05/08 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,19331012.58587428,0.0,14093307.03785499,0.0 - 05/08 04:00:00,3154651.719278263,0.0,8424218.724974666,0.0,0.0,0.0,0.0,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,30901722.882863214,0.0,14093307.03785499,0.0 - 05/08 05:00:00,5764818.596681649,0.0,8475037.145107557,0.0,0.0,0.0,999035.4884657369,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,34553998.99131003,0.0,14093307.03785499,0.0 - 05/08 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,19331012.58587428,0.0,14093307.03785499,0.0 - 05/08 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,77386834.38545615,0.0,14093307.03785499,15502637.741640486 - 05/08 08:00:00,0.0,2787016.010854777,0.0,1005711.6703291546,0.0,9952125.140386753,0.0,3437556.621810436,20691.59136429894,20367.660641478287,20393.906451098734,24549.783307140675,309610590.35045996,17182409.44338112,56373228.15141996,38756594.35410121 - 05/08 09:00:00,0.0,29286610.879457445,0.0,20197285.727058747,0.0,20646036.542624434,0.0,20704258.687287097,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,90834191.83642772,56373228.15141996,38756594.35410121 - 05/08 10:00:00,0.0,32414951.088327778,0.0,18811477.665617005,0.0,11578037.37708671,0.0,11694335.935061306,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,74498802.06609279,28186614.07570998,0.0 - 05/08 11:00:00,0.0,44752263.80295183,0.0,26310877.530430326,0.0,13798862.606293004,0.0,15269978.680107627,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,100131982.61978278,28186614.07570998,0.0 - 05/08 12:00:00,0.0,54162693.24042262,0.0,35298953.27517271,0.0,16990805.34216975,0.0,21243252.790885949,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,127695704.64865104,28186614.07570998,0.0 - 05/08 13:00:00,0.0,57152654.353939618,0.0,37413339.462035339,0.0,18953582.02601715,0.0,24571994.717460138,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,138091570.55945225,28186614.07570998,0.0 - 05/08 14:00:00,0.0,57493573.68256607,0.0,43022992.37681571,0.0,23902998.929109798,0.0,29911829.900786736,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,154331394.8892783,28186614.07570998,0.0 - 05/08 15:00:00,0.0,53921540.373647067,0.0,44150922.30683128,0.0,26098099.74061808,0.0,31917609.341711549,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,156088171.76280798,28186614.07570998,0.0 - 05/08 16:00:00,0.0,42572274.70527572,0.0,36214504.89598939,0.0,23671848.959219926,0.0,27706289.595358746,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,130164918.15584378,28186614.07570998,0.0 - 05/08 17:00:00,0.0,25413540.21177724,0.0,20840232.61195645,0.0,16880663.36983602,0.0,18556000.248850869,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,81690436.44242057,35233267.594637479,0.0 - 05/08 18:00:00,0.0,12525066.09881883,0.0,8347160.156636753,0.0,9058958.8829719,0.0,8621733.300235978,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,38552918.43866346,14093307.03785499,0.0 - 05/08 19:00:00,0.0,16858367.24091707,0.0,12188939.305873769,0.0,17239519.249198285,0.0,17475540.58118303,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,63762366.37717216,63419881.67034747,0.0 - 05/08 20:00:00,0.0,21971625.193220516,0.0,16621393.825811092,0.0,25540422.165083335,0.0,26320399.58828283,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,90453840.77239777,63419881.67034747,69761869.8373822 - 05/08 21:00:00,0.0,12170497.279958507,0.0,7144688.723581336,0.0,17843842.793649734,0.0,16505595.548938686,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,53664624.346128258,49326574.63249246,69761869.8373822 - 05/08 22:00:00,0.0,1482912.568952841,0.0,333688.8270910538,0.0,9055816.653325085,0.0,4660118.008533586,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,15532536.057902568,35233267.594637479,69761869.8373822 - 05/08 23:00:00,0.0,0.0,2298778.6924141615,0.0,0.0,2795852.9493847216,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,79701426.28002915,2795852.9493847216,35233267.594637479,62010550.96656194 - 05/08 24:00:00,4439031.84452836,0.0,12348378.333564925,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,55488733.971900779,0.0,35233267.594637479,46507913.22492146 - 05/09 01:00:00,15353932.78689003,0.0,21096974.42518592,0.0,0.0,0.0,7621513.089675021,0.0,2586.8635445208917,2546.3657131524998,2549.6469652760417,3069.214848921865,82779948.16048762,0.0,21139960.556782485,23253956.61246073 - 05/09 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609322,19353763.92936834,0.0,14093307.03785499,0.0 - 05/09 03:00:00,0.0,0.0,2122282.851498286,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,21476046.780866624,0.0,14093307.03785499,0.0 - 05/09 04:00:00,4827735.96055067,0.0,10383844.068838288,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,34565269.52832674,0.0,14093307.03785499,0.0 - 05/09 05:00:00,7173465.611751339,0.0,10297200.863534868,0.0,0.0,0.0,1674866.129445203,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,38499222.1036692,0.0,14093307.03785499,0.0 - 05/09 06:00:00,1647682.1164609779,0.0,2126568.491060083,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,23128014.536889398,0.0,14093307.03785499,0.0 - 05/09 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,0.0,14093307.03785499,15502637.741640486 - 05/09 08:00:00,3314997.389894596,0.0,3865493.6967931857,0.0,0.0,0.0,27354.142631578725,0.0,20678.775770011893,20355.045677710543,20381.275231662596,24534.578093720396,316626674.4124989,0.0,56373228.15141996,38756594.35410121 - 05/09 09:00:00,0.0,1264687.621950204,0.0,0.0,0.0,2075804.5600053967,0.0,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,3340492.1819556008,56373228.15141996,38756594.35410121 - 05/09 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,0.0,28186614.07570998,0.0 - 05/09 11:00:00,0.0,8594940.093217332,0.0,0.0,0.0,0.0,0.0,0.0,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,8594940.093217332,28186614.07570998,0.0 - 05/09 12:00:00,0.0,17867907.641721764,0.0,445991.65949646869,0.0,0.0,0.0,0.0,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,18313899.301218235,28186614.07570998,0.0 - 05/09 13:00:00,0.0,24689240.52523343,0.0,6151510.474096164,0.0,0.0,0.0,0.0,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,30840750.999329594,28186614.07570998,0.0 - 05/09 14:00:00,0.0,32851016.085253359,0.0,15621745.087078913,0.0,9332745.62478932,0.0,9170506.705840569,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,66976013.50296216,28186614.07570998,0.0 - 05/09 15:00:00,0.0,36289195.93028005,0.0,22648315.182182123,0.0,17552924.552974296,0.0,19196630.741100007,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,95687066.40653648,28186614.07570998,0.0 - 05/09 16:00:00,0.0,38237480.373724598,0.0,30175012.604687126,0.0,26688891.46551104,0.0,28511365.29624738,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,123612749.74017015,28186614.07570998,0.0 - 05/09 17:00:00,0.0,35606213.05888365,0.0,31315292.430645944,0.0,31907889.191202016,0.0,35423717.88515092,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,134253112.56588254,35233267.594637479,0.0 - 05/09 18:00:00,0.0,26272090.058061378,0.0,23307798.293840954,0.0,26007200.880934657,0.0,29391794.18141295,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,104978883.41424993,14093307.03785499,0.0 - 05/09 19:00:00,0.0,25754635.947359608,0.0,24963310.27735958,0.0,28416361.0595722,0.0,32331953.92943451,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,111466261.2137259,63419881.67034747,0.0 - 05/09 20:00:00,0.0,20074488.675936417,0.0,14459319.134603119,0.0,25815531.56293548,0.0,26096297.931004928,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,86445637.30447994,63419881.67034747,69761869.8373822 - 05/09 21:00:00,0.0,11174318.42844057,0.0,5674977.376041978,0.0,18600551.148799659,0.0,16887132.96323339,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,154782937.6157136,52336979.916515599,49326574.63249246,69761869.8373822 - 05/09 22:00:00,0.0,4647834.164909385,0.0,121015.66644812876,0.0,13276157.19931905,0.0,10048534.236435783,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,28093541.267112353,35233267.594637479,69761869.8373822 - 05/09 23:00:00,0.0,1034523.4915510735,0.0,0.0,0.0,10185347.603488403,0.0,6340441.504659401,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,17560312.59969888,35233267.594637479,62010550.96656194 - 05/09 24:00:00,0.0,0.0,0.0,0.0,0.0,2882755.2557408886,0.0,111884.14636187027,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,38707378.99787555,2994639.402102758,35233267.594637479,46507913.22492146 - 05/10 01:00:00,3859351.983228879,0.0,11365613.069034357,0.0,0.0,0.0,0.0,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,53932344.05013879,0.0,21139960.556782485,23253956.61246073 - 05/10 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,19346708.596364038,0.0,14093307.03785499,0.0 - 05/10 03:00:00,0.0,0.0,3118145.3796359107,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,22460898.14115673,0.0,14093307.03785499,0.0 - 05/10 04:00:00,4762087.271908752,0.0,9286489.229861739,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,33395285.098134526,0.0,14093307.03785499,0.0 - 05/10 05:00:00,5883930.935573896,0.0,7378957.095062932,0.0,0.0,0.0,1446639.9034846985,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,34040540.51999581,0.0,14093307.03785499,0.0 - 05/10 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 - 05/10 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.727089041782,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,0.0,14093307.03785499,15502637.741640486 - 05/10 08:00:00,0.0,9851580.295178215,0.0,11320930.645771042,0.0,24243581.163059433,0.0,17637323.222157856,20678.775770011893,20355.045677710546,20381.275231662596,24534.578093720396,309418829.18317958,63053415.32616654,56373228.15141996,38756594.35410121 - 05/10 09:00:00,0.0,39680420.16845423,0.0,28989122.26499638,0.0,32578353.580468507,0.0,34865795.41074142,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,136113691.42466054,56373228.15141996,38756594.35410121 - 05/10 10:00:00,0.0,39029985.69773854,0.0,20007823.162935854,0.0,17499396.487003317,0.0,18258426.39209416,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,94795631.73977189,28186614.07570998,0.0 - 05/10 11:00:00,0.0,48993895.24711507,0.0,23334470.328867545,0.0,15594973.459588994,0.0,16929806.047141617,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,104853145.08271323,28186614.07570998,0.0 - 05/10 12:00:00,0.0,54035176.22072935,0.0,26246230.752105755,0.0,14856233.203098724,0.0,18220911.183137698,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,113358551.35907153,28186614.07570998,0.0 - 05/10 13:00:00,0.0,60973061.48211333,0.0,33056603.24144522,0.0,19404418.435233624,0.0,25440702.517827788,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,138874785.67661999,28186614.07570998,0.0 - 05/10 14:00:00,0.0,66178360.186380479,0.0,42714169.90727117,0.0,28731353.547267658,0.0,36016033.59936194,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,173639917.24028123,28186614.07570998,0.0 - 05/10 15:00:00,0.0,65921742.59434798,0.0,48730623.70738748,0.0,37794892.73747051,0.0,45237270.10242705,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,197684529.141633,28186614.07570998,0.0 - 05/10 16:00:00,0.0,61995778.368119109,0.0,53371676.570105839,0.0,45842502.62190193,0.0,52590046.848882768,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,213800004.40900965,28186614.07570998,0.0 - 05/10 17:00:00,0.0,58057537.352803099,0.0,53932204.33903235,0.0,50246997.20182542,0.0,58927379.30667272,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,221164118.2003336,35233267.594637479,0.0 - 05/10 18:00:00,0.0,48076416.08908097,0.0,45670964.087481338,0.0,43583751.91908074,0.0,52294021.99929115,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,189625154.09493418,14093307.03785499,0.0 - 05/10 19:00:00,0.0,44547555.62873359,0.0,44747476.249188739,0.0,43291777.66139451,0.0,52027423.582478348,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,184614233.12179519,63419881.67034747,0.0 - 05/10 20:00:00,0.0,36273947.223303709,0.0,30834447.56104613,0.0,38288088.10969147,0.0,42484198.911809418,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,147880681.80585075,63419881.67034747,69761869.8373822 - 05/10 21:00:00,0.0,24327305.770387398,0.0,18766783.715522008,0.0,28612652.24845289,0.0,30128551.05091732,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,101835292.7852796,49326574.63249246,69761869.8373822 - 05/10 22:00:00,0.0,18867413.053166894,0.0,13542865.32026757,0.0,24035722.68923001,0.0,24457589.675368396,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,80903590.73803286,35233267.594637479,69761869.8373822 - 05/10 23:00:00,0.0,13656149.695711222,0.0,8718271.838797823,0.0,19715527.54438569,0.0,19164785.856201874,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,61254734.93509661,35233267.594637479,62010550.96656194 - 05/10 24:00:00,0.0,6066659.513725858,0.0,1472376.4237120934,0.0,13087435.652147312,0.0,10953692.022669968,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,38663807.82776192,31580163.61225523,35233267.594637479,46507913.22492146 - 05/11 01:00:00,0.0,0.0,0.0,0.0,0.0,2368707.777209394,0.0,71268.85249295183,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,2439976.629702346,21139960.556782485,23253956.61246073 - 05/11 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 05/11 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 05/11 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 - 05/11 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 05/11 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,19343372.40427021,0.0,14093307.03785499,0.0 - 05/11 07:00:00,0.0,0.0,0.0,2288429.190591943,0.0,14157900.500673045,0.0,6513590.302773866,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,22959919.994038855,14093307.03785499,15502637.741640486 - 05/11 08:00:00,0.0,28479261.991011755,0.0,29260676.502687389,0.0,36662634.610385868,0.0,38801017.06441974,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,133203590.16850475,56373228.15141996,38756594.35410121 - 05/11 09:00:00,0.0,43635123.654561039,0.0,34359139.22166651,0.0,36949420.393679078,0.0,41066801.14474672,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,156010484.41465334,56373228.15141996,38756594.35410121 - 05/11 10:00:00,0.0,44423670.38291377,0.0,26871260.705210214,0.0,23156354.28997437,0.0,25854650.846949396,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,120305936.22504774,28186614.07570998,0.0 - 05/11 11:00:00,0.0,53949182.01245037,0.0,30145058.185451975,0.0,20686184.647480035,0.0,23999454.71614576,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,128779879.56152815,28186614.07570998,0.0 - 05/11 12:00:00,0.0,60123092.926697228,0.0,34236272.82204137,0.0,20012772.77245631,0.0,25620534.07382377,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,139992672.59501869,28186614.07570998,0.0 - 05/11 13:00:00,0.0,67569727.62541174,0.0,41726494.44622646,0.0,24864974.168248748,0.0,33380389.106113819,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,167541585.34600077,28186614.07570998,0.0 - 05/11 14:00:00,0.0,74634122.27445859,0.0,53160303.31006754,0.0,35358503.2778869,0.0,45508618.26158207,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,208661547.1239951,28186614.07570998,0.0 - 05/11 15:00:00,0.0,73328917.03460744,0.0,58671266.94645261,0.0,44036565.238147649,0.0,54175378.6246203,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,230212127.84382803,28186614.07570998,0.0 - 05/11 16:00:00,0.0,67308274.93789663,0.0,60837363.731610957,0.0,48320216.16012527,0.0,57470209.09833363,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,233936063.92796649,28186614.07570998,0.0 - 05/11 17:00:00,0.0,60424446.74476419,0.0,58255587.09437649,0.0,49097982.83717467,0.0,59337426.5364606,22876.254285564693,22518.12225716316,22547.13915606847,27141.80246951196,342299945.4059098,227115443.21277596,35233267.594637479,0.0 - 05/11 18:00:00,0.0,46073832.70297766,0.0,45176369.6629469,0.0,38877428.536172877,0.0,47744070.610172729,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,177871701.51227016,14093307.03785499,0.0 - 05/11 19:00:00,0.0,39045523.135611709,0.0,38553188.6520396,0.0,36556923.03926709,0.0,43909130.111954618,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,158064764.938873,63419881.67034747,0.0 - 05/11 20:00:00,0.0,36244402.742890898,0.0,32173817.513448914,0.0,37708726.726895097,0.0,42583613.123145658,15444.231480126622,15202.449155186701,15222.03906260489,18323.991108611153,231093758.9035057,148710560.10638056,63419881.67034747,69761869.8373822 - 05/11 21:00:00,0.0,26325740.045654,0.0,22212947.796512166,0.0,29860186.46959807,0.0,32569624.435417527,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,110968498.74718176,49326574.63249246,69761869.8373822 - 05/11 22:00:00,0.0,18566886.131979366,0.0,14598279.885497684,0.0,23413505.264423469,0.0,24484250.86701817,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,81062922.14891869,35233267.594637479,69761869.8373822 - 05/11 23:00:00,0.0,12308106.098992795,0.0,8528537.373983387,0.0,18127266.549274748,0.0,17856091.719251887,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,115897618.43742797,56820001.74150282,35233267.594637479,62010550.96656194 - 05/11 24:00:00,0.0,4837199.133618571,0.0,1386255.0764938589,0.0,11432916.671854856,0.0,9540752.170018238,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,27197123.05198552,35233267.594637479,46507913.22492146 - 05/12 01:00:00,0.0,0.0,0.0,0.0,0.0,1766911.4036781318,0.0,0.0,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,38663807.82776192,1766911.4036781318,21139960.556782485,23253956.61246073 - 05/12 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 05/12 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 05/12 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 05/12 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 05/12 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 05/12 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,15502637.741640486 - 05/12 08:00:00,0.0,11219929.245837883,0.0,9303850.663487219,0.0,11828938.524258748,0.0,10800445.185878979,1288.0062846777015,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,43153163.61946283,56373228.15141996,38756594.35410121 - 05/12 09:00:00,0.0,34135195.955850977,0.0,28421640.12015295,0.0,25470460.608573796,0.0,28751417.669905016,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,116778714.35448274,56373228.15141996,38756594.35410121 - 05/12 10:00:00,0.0,29779641.398505205,0.0,25625135.163119608,0.0,15147949.296221395,0.0,18285972.135590819,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,88838697.99343702,28186614.07570998,0.0 - 05/12 11:00:00,0.0,36420434.01262355,0.0,32058908.862492786,0.0,17912176.698419226,0.0,22195445.929377345,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,108586965.5029129,28186614.07570998,0.0 - 05/12 12:00:00,0.0,26278534.330727318,0.0,20306568.64197552,0.0,13127026.991028492,0.0,14405793.409365302,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,74117923.37309662,28186614.07570998,0.0 - 05/12 13:00:00,0.0,12479430.411872175,0.0,7224902.3616194049,0.0,6304962.059462607,0.0,5001476.445201248,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,31010771.27815543,28186614.07570998,0.0 - 05/12 14:00:00,0.0,13337770.881819997,0.0,9130371.171011446,0.0,5812556.983336121,0.0,5216040.849181559,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,33496739.88534912,28186614.07570998,0.0 - 05/12 15:00:00,0.0,18843468.98710715,0.0,14644575.486004252,0.0,8995844.469577168,0.0,9392074.845755808,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,51875963.78844438,28186614.07570998,0.0 - 05/12 16:00:00,0.0,7044079.818367831,0.0,3604656.733247831,0.0,4415308.103330057,0.0,2711234.366810868,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,17775279.021756587,28186614.07570998,0.0 - 05/12 17:00:00,0.0,3496642.8515938075,0.0,186193.64817862886,0.0,4076267.3035456167,0.0,1611274.5429705482,15465.198763467964,15223.088191795892,15242.704694719334,18348.867989925246,231407494.70367036,9370378.3462886,35233267.594637479,0.0 - 05/12 18:00:00,0.0,1697162.5436309733,0.0,0.0,0.0,3617372.8964096044,0.0,1336414.0132506518,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,6650949.453291229,14093307.03785499,0.0 - 05/12 19:00:00,0.0,3565317.3049567628,0.0,1163376.1471768432,0.0,10064407.578688443,0.0,6890824.496529869,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,21683925.527351917,63419881.67034747,0.0 - 05/12 20:00:00,0.0,10148182.130794704,0.0,1260906.0347516207,0.0,22134008.518418883,0.0,19180981.460838319,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,115897618.43742797,52724078.144803527,63419881.67034747,69761869.8373822 - 05/12 21:00:00,0.0,2411696.7721437897,0.0,0.0,0.0,15515909.911047904,0.0,11442124.372096003,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,29369731.055287694,49326574.63249246,69761869.8373822 - 05/12 22:00:00,0.0,0.0,1134622.4206285496,0.0,0.0,4309262.493870774,0.0,933558.346573209,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,78546115.87738012,5242820.840443984,35233267.594637479,69761869.8373822 - 05/12 23:00:00,8464836.37353729,0.0,17615077.521458664,0.0,0.0,0.0,0.0,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,103481172.53002957,0.0,35233267.594637479,62010550.96656194 - 05/12 24:00:00,22347559.610725337,0.0,30168010.155283158,0.0,1489447.6724470088,0.0,15051815.744434186,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,146427844.22897298,0.0,35233267.594637479,46507913.22492146 - 05/13 01:00:00,34942735.23800019,0.0,42778335.071568448,0.0,15375242.091678456,0.0,28904296.89248944,0.0,2583.822553564898,2543.3723294772187,2546.6497243203668,3065.60682923434,160662634.4654851,0.0,21139960.556782485,23253956.61246073 - 05/13 02:00:00,2279090.749057475,0.0,6645629.422487419,0.0,0.0,0.0,0.0,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,28247572.61015518,0.0,14093307.03785499,0.0 - 05/13 03:00:00,21045947.04329112,0.0,28262065.485211657,0.0,1430046.5644279577,0.0,10145278.11538006,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,80214349.79418507,0.0,14093307.03785499,0.0 - 05/13 04:00:00,24781784.170237774,0.0,30551063.839197287,0.0,9498366.357601894,0.0,19147135.545866118,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,103301202.35151337,0.0,14093307.03785499,0.0 - 05/13 05:00:00,24030139.576775485,0.0,27723899.425813736,0.0,9086714.440315105,0.0,18673227.85751089,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,98836833.73902552,0.0,14093307.03785499,0.0 - 05/13 06:00:00,14536024.755658579,0.0,13754223.912635789,0.0,1501067.1614446503,0.0,8354982.491572997,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,57469150.759922299,0.0,14093307.03785499,0.0 - 05/13 07:00:00,6477010.845625169,0.0,7980827.922824651,0.0,0.0,0.0,1037915.9365642028,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,92819805.04851115,0.0,14093307.03785499,15502637.741640486 - 05/13 08:00:00,14103534.178591792,0.0,17676334.24517876,0.0,9611886.967054289,0.0,16092341.088265686,0.0,20670.580428519184,20346.978635817748,20373.197794562933,24524.85463387472,366780297.8530791,0.0,56373228.15141996,38756594.35410121 - 05/13 09:00:00,26789795.08377186,0.0,31728707.20525337,0.0,17401954.35452877,0.0,29318633.46983014,0.0,18092.234754220408,17808.997444040026,17831.946154973255,21465.745912824295,375955217.47119286,0.0,56373228.15141996,38756594.35410121 - 05/13 10:00:00,21874785.35514114,0.0,26916986.534404033,0.0,18167316.61775549,0.0,27136524.855113634,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,287523140.9776225,0.0,28186614.07570998,0.0 - 05/13 11:00:00,19089085.4948044,0.0,24628543.62548954,0.0,16720611.630608555,0.0,25244108.392715567,0.0,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,240456017.9145304,0.0,28186614.07570998,0.0 - 05/13 12:00:00,21515226.800798209,0.0,29550136.62862773,0.0,18198096.416550854,0.0,27502466.581574367,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,174167185.06258477,0.0,28186614.07570998,0.0 - 05/13 13:00:00,8959315.361115806,0.0,16778700.294212846,0.0,12933321.17789033,0.0,19157113.253397418,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,135237922.4151148,0.0,28186614.07570998,0.0 - 05/13 14:00:00,169736.99247866754,0.0,5591399.134834221,0.0,6840899.88596819,0.0,10988427.931524938,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,101005221.94055712,0.0,28186614.07570998,0.0 - 05/13 15:00:00,0.0,0.0,737201.762269772,0.0,1809753.0688256953,0.0,5615950.183822622,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,124285042.00854475,0.0,28186614.07570998,0.0 - 05/13 16:00:00,0.0,0.0,1746349.1117657803,0.0,0.0,0.0,4334471.688329056,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,199617715.78947259,0.0,28186614.07570998,0.0 - 05/13 17:00:00,0.0,0.0,7216531.096110228,0.0,129600.91428644664,0.0,4984258.807117072,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,205859124.45939268,0.0,35233267.594637479,0.0 - 05/13 18:00:00,6596207.937029193,0.0,9067049.363331408,0.0,659937.7507036028,0.0,5163017.986531468,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,292438908.0487523,0.0,14093307.03785499,0.0 - 05/13 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,270951652.9851288,0.0,63419881.67034747,0.0 - 05/13 20:00:00,0.0,0.0,4387850.075953102,0.0,0.0,1342451.3296745104,0.0,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,159190367.3460203,1342451.3296745104,63419881.67034747,69761869.8373822 - 05/13 21:00:00,5598482.783942942,0.0,11524944.33615663,0.0,0.0,0.0,0.0,0.0,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,171897095.89101187,0.0,49326574.63249246,69761869.8373822 - 05/13 22:00:00,10932097.337500195,0.0,16647287.043710892,0.0,0.0,0.0,1041965.0670214294,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,106008183.83368865,0.0,35233267.594637479,69761869.8373822 - 05/13 23:00:00,13372655.548380558,0.0,19035622.83327284,0.0,0.0,0.0,5723059.3560773399,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,115532596.37276435,0.0,35233267.594637479,62010550.96656194 - 05/13 24:00:00,19061221.95328021,0.0,24820301.98432695,0.0,1420881.755711985,0.0,12048752.755655338,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,96036663.97201613,0.0,35233267.594637479,46507913.22492146 - 05/14 01:00:00,28553742.19827636,0.0,34283290.11142014,0.0,11763987.865571676,0.0,23051213.440942535,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,136337739.13925234,0.0,21139960.556782485,23253956.61246073 - 05/14 02:00:00,0.0,0.0,2874525.8002516145,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,22217278.561772434,0.0,14093307.03785499,0.0 - 05/14 03:00:00,17537189.62120688,0.0,24414738.68451469,0.0,0.0,0.0,7538905.880491056,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,68827700.4260561,0.0,14093307.03785499,0.0 - 05/14 04:00:00,25599180.612414063,0.0,31615734.56419684,0.0,8954516.575808239,0.0,19220760.49707946,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,104705300.0105537,0.0,14093307.03785499,0.0 - 05/14 05:00:00,24431766.19562362,0.0,29301860.691089669,0.0,9711568.014506273,0.0,19461891.00416659,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,102238098.49126043,0.0,14093307.03785499,0.0 - 05/14 06:00:00,23307041.022276343,0.0,27799939.517653247,0.0,8964040.610376634,0.0,18711604.122060457,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,98113637.85824095,0.0,14093307.03785499,0.0 - 05/14 07:00:00,15912149.783145592,0.0,20713168.705930205,0.0,4123235.6740294785,0.0,11830742.245871703,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,129926761.3683509,0.0,14093307.03785499,15502637.741640486 - 05/14 08:00:00,16240975.82572393,0.0,20042860.63827204,0.0,13338568.40726356,0.0,16326473.981648496,0.0,20683.13415501792,20359.335831386248,20385.5709136392,24539.749151160264,375432923.0372411,0.0,56373228.15141996,38756594.35410121 - 05/14 09:00:00,13124215.765652093,0.0,20087861.400046179,0.0,9434840.474799648,0.0,17285655.061419518,0.0,18104.817555852474,17821.38325956522,17844.34793088595,21480.674926645683,330836977.92453506,0.0,56373228.15141996,38756594.35410121 - 05/14 10:00:00,4722747.959629484,0.0,19162314.99726927,0.0,11049914.706375529,0.0,19052113.332187345,0.0,12929.602571636953,12727.187231363,12743.587511147607,15340.47989797476,247454176.95910198,0.0,28186614.07570998,0.0 - 05/14 11:00:00,478989.72142979598,0.0,16594196.885140012,0.0,12116038.891260025,0.0,19000483.33333108,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,203008653.4881577,0.0,28186614.07570998,0.0 - 05/14 12:00:00,1710664.2512972844,0.0,17417517.40702684,0.0,13096265.007548623,0.0,19860128.827637737,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,129485834.12854409,0.0,28186614.07570998,0.0 - 05/14 13:00:00,1020291.4220362462,0.0,14133755.897172915,0.0,10357459.858637222,0.0,15846001.0255649,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,118769001.66016285,0.0,28186614.07570998,0.0 - 05/14 14:00:00,0.0,0.0,8352531.480511166,0.0,5942252.672658021,0.0,10537618.606134905,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,102243896.21605566,0.0,28186614.07570998,0.0 - 05/14 15:00:00,0.0,0.0,6815762.646533053,0.0,2476088.3053759869,0.0,7435891.753519634,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,132850326.28163868,0.0,28186614.07570998,0.0 - 05/14 16:00:00,0.0,0.0,5447734.113422066,0.0,187922.20630688536,0.0,4069372.408272716,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,203233762.3698806,0.0,28186614.07570998,0.0 - 05/14 17:00:00,0.0,0.0,20198.037308949282,0.0,0.0,0.0,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193548931.6791879,0.0,35233267.594637479,0.0 - 05/14 18:00:00,0.0,0.0,2968628.453789025,0.0,0.0,0.0,0.0,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,273921323.4649457,0.0,14093307.03785499,0.0 - 05/14 19:00:00,0.0,0.0,0.0,0.0,0.0,2108086.4478069848,0.0,0.0,18104.817555852474,17821.383259565224,17844.34793088595,21480.674926645683,270904405.2226176,2108086.4478069848,63419881.67034747,0.0 - 05/14 20:00:00,3024053.8535930064,0.0,11650737.00659656,0.0,0.0,222936.87513494225,0.0,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,169195652.9486303,222936.87513494225,63419881.67034747,69761869.8373822 - 05/14 21:00:00,10394838.792391682,0.0,18318339.79038444,0.0,0.0,0.0,1239403.5391090089,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,184535401.6307674,0.0,49326574.63249246,69761869.8373822 - 05/14 22:00:00,15127619.404556495,0.0,22603890.423392968,0.0,0.0,0.0,7847709.685295759,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,122839650.5574656,0.0,35233267.594637479,69761869.8373822 - 05/14 23:00:00,18232292.52744268,0.0,25492493.765201324,0.0,1310506.0379103004,0.0,11460619.976562143,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,133756343.3513368,0.0,35233267.594637479,62010550.96656194 - 05/14 24:00:00,21854062.448224769,0.0,28902444.556144068,0.0,5688084.178743472,0.0,15580411.575436786,0.0,2582.7318516449929,2542.2987026993398,2545.574714064802,3064.312753041024,110670707.63576964,0.0,35233267.594637479,46507913.22492146 - 05/15 01:00:00,34751051.31265251,0.0,42112955.611534599,0.0,17270734.70091214,0.0,30106751.931038694,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,162753431.8521299,0.0,21139960.556782485,23253956.61246073 - 05/15 02:00:00,2686952.7271221077,0.0,7818359.670440666,0.0,0.0,0.0,0.0,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.84518687253,29773794.092638375,0.0,14093307.03785499,0.0 - 05/15 03:00:00,22150609.361811799,0.0,29584203.935669744,0.0,4264762.476872074,0.0,12358494.509088893,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,87640450.68402012,0.0,14093307.03785499,0.0 - 05/15 04:00:00,25079425.46087072,0.0,30999128.119646919,0.0,10024627.191868097,0.0,20288422.400143833,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,105673983.57310719,0.0,14093307.03785499,0.0 - 05/15 05:00:00,25006392.24379827,0.0,27796629.27843004,0.0,10593186.11299984,0.0,20204766.48491407,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,102840816.35077885,0.0,14093307.03785499,0.0 - 05/15 06:00:00,6258364.349446543,0.0,2677681.867824099,0.0,134824.33502844943,0.0,1998890.791172575,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,30374444.80483719,0.0,14093307.03785499,0.0 - 05/15 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,77386834.38545615,0.0,14093307.03785499,15502637.741640486 - 05/15 08:00:00,1791238.6280089617,0.0,0.0,0.0,0.0,5017191.081279079,0.0,0.0,20693.415781859945,20369.45649744203,20395.704621206183,24551.947908934504,311429127.94200256,5017191.081279079,56373228.15141996,38756594.35410121 - 05/15 09:00:00,0.0,13630108.50968781,0.0,5062355.872839086,0.0,16196120.298552674,0.0,14142885.146706041,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,270909266.55665239,49031469.82778561,56373228.15141996,38756594.35410121 - 05/15 10:00:00,0.0,19572031.36223197,0.0,939970.9797817486,0.0,4158062.7471813757,0.0,1193100.5899051089,12919.708451417382,12717.448005441212,12733.835735239158,15328.740902016025,193319039.1388096,25863165.6791002,28186614.07570998,0.0 - 05/15 11:00:00,0.0,30140717.47417588,0.0,5088944.491616118,0.0,3287210.1566596038,0.0,1014656.8221983558,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,39531528.94464995,28186614.07570998,0.0 - 05/15 12:00:00,0.0,37170775.96544545,0.0,9253137.203217909,0.0,3340991.015553709,0.0,3220309.404414588,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,52985213.58863165,28186614.07570998,0.0 - 05/15 13:00:00,0.0,46588311.292787808,0.0,18912431.65049773,0.0,9146718.30683713,0.0,12096246.57086951,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,86743707.82099219,28186614.07570998,0.0 - 05/15 14:00:00,0.0,53170216.11220993,0.0,30378872.813450815,0.0,19360217.185520408,0.0,23905344.971604974,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,126814651.08278613,28186614.07570998,0.0 - 05/15 15:00:00,0.0,54419121.48328853,0.0,39064954.36441569,0.0,29032966.387135324,0.0,34238118.45459392,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,156755160.68943347,28186614.07570998,0.0 - 05/15 16:00:00,0.0,48906975.32097478,0.0,41521694.85075288,0.0,34605535.66658163,0.0,39061398.56870228,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,164095604.40701158,28186614.07570998,0.0 - 05/15 17:00:00,0.0,45291361.76142396,0.0,42280503.07860233,0.0,39309067.493018988,0.0,45470082.886114168,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,172351015.21915949,35233267.594637479,0.0 - 05/15 18:00:00,0.0,35920896.36672901,0.0,34772335.80409883,0.0,33434688.967964535,0.0,39745113.33439918,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,143873034.47319157,14093307.03785499,0.0 - 05/15 19:00:00,0.0,31689360.573407107,0.0,32715401.371510738,0.0,33323790.333177546,0.0,39403134.217555698,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,137131686.4956511,63419881.67034747,0.0 - 05/15 20:00:00,0.0,24022492.196054713,0.0,19640505.61551921,0.0,29219622.791051017,0.0,31016474.67881715,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,103899095.28144209,63419881.67034747,69761869.8373822 - 05/15 21:00:00,0.0,15346317.67712504,0.0,11024858.67268711,0.0,22030643.172709727,0.0,21936245.268433535,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,70338064.79095541,49326574.63249246,69761869.8373822 - 05/15 22:00:00,0.0,7143030.49974584,0.0,3204025.593505671,0.0,14944178.949483533,0.0,13063029.989697578,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,38354265.032432619,35233267.594637479,69761869.8373822 - 05/15 23:00:00,0.0,4784248.138259007,0.0,1132917.3329882289,0.0,12554864.557385538,0.0,10355495.126230458,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,28827525.15486323,35233267.594637479,62010550.96656194 - 05/15 24:00:00,0.0,401546.4295073935,0.0,0.0,0.0,6691960.867452359,0.0,3523164.9814498599,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,10616672.278409612,35233267.594637479,46507913.22492146 - 05/16 01:00:00,0.0,0.0,3703493.4521363389,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,42404817.24594383,0.0,21139960.556782485,23253956.61246073 - 05/16 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 05/16 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 05/16 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 05/16 05:00:00,0.0,0.0,601716.8734689619,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19955480.8028373,0.0,14093307.03785499,0.0 - 05/16 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 05/16 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,0.0,14093307.03785499,15502637.741640486 - 05/16 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,309310462.62209537,0.0,56373228.15141996,38756594.35410121 - 05/16 09:00:00,0.0,6263829.737798128,0.0,3497399.6806787836,0.0,10861257.811972805,0.0,4733362.1724680759,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,25355849.402917796,56373228.15141996,38756594.35410121 - 05/16 10:00:00,0.0,22368285.32000505,0.0,14514928.94996744,0.0,6572466.326444314,0.0,6396419.730962307,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,49852100.327379118,28186614.07570998,0.0 - 05/16 11:00:00,0.0,29227224.62543275,0.0,18014838.862297138,0.0,8258226.343696617,0.0,8903120.793964824,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,64403410.62539132,28186614.07570998,0.0 - 05/16 12:00:00,0.0,44061523.39108278,0.0,29245400.134324116,0.0,12902684.401827611,0.0,16723912.057639342,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,102933519.98487385,28186614.07570998,0.0 - 05/16 13:00:00,0.0,56451808.122244257,0.0,39738189.3659764,0.0,18918604.36940775,0.0,25751527.903231238,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,140860129.76085965,28186614.07570998,0.0 - 05/16 14:00:00,0.0,59360785.939135108,0.0,42551194.519412707,0.0,25336704.817730778,0.0,32517084.782259309,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,159765770.0585379,28186614.07570998,0.0 - 05/16 15:00:00,0.0,57252136.94676725,0.0,44377507.60743253,0.0,33079896.78355555,0.0,39758500.657290447,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,174468041.99504576,28186614.07570998,0.0 - 05/16 16:00:00,0.0,51496386.52655475,0.0,46424402.264658037,0.0,39057237.010321419,0.0,44519880.9269751,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,181497906.7285093,28186614.07570998,0.0 - 05/16 17:00:00,0.0,44596972.9092762,0.0,43070721.01052206,0.0,40894954.55718297,0.0,47437321.9920681,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,175999970.46904934,35233267.594637479,0.0 - 05/16 18:00:00,0.0,34342034.353823129,0.0,33899732.46834746,0.0,33755148.69458588,0.0,39912045.51642845,17957.927986358143,17676.793273683546,17699.571626049474,21306.39605956023,268706480.204345,141908961.03318493,14093307.03785499,0.0 - 05/16 19:00:00,0.0,34875529.53460313,0.0,37074924.07021542,0.0,37205729.24521276,0.0,44202675.042165849,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,153358857.89219717,63419881.67034747,0.0 - 05/16 20:00:00,0.0,29655350.0496839,0.0,25659329.811590237,0.0,35117726.34156498,0.0,38003997.27826651,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,128436403.48110563,63419881.67034747,69761869.8373822 - 05/16 21:00:00,0.0,21639534.3204885,0.0,17719432.285959115,0.0,28433130.73589476,0.0,29685877.90607714,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,97477975.24841951,49326574.63249246,69761869.8373822 - 05/16 22:00:00,0.0,13585115.792105578,0.0,9835111.299636998,0.0,21518478.151504607,0.0,20991284.695078628,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,65929989.9383258,35233267.594637479,69761869.8373822 - 05/16 23:00:00,0.0,8896768.139764527,0.0,5162771.501766548,0.0,17497327.00029176,0.0,15871819.587895029,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,47428686.229717869,35233267.594637479,62010550.96656194 - 05/16 24:00:00,0.0,2557823.994780471,0.0,7613.302340112596,0.0,11591886.00645904,0.0,8722808.680233308,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,38650625.798606548,22880131.98381293,35233267.594637479,46507913.22492146 - 05/17 01:00:00,0.0,0.0,0.0,0.0,0.0,214582.93969562604,0.0,0.0,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,214582.93969562604,21139960.556782485,23253956.61246073 - 05/17 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 05/17 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 05/17 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 05/17 05:00:00,0.0,0.0,1231180.512425044,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,20579047.714389244,0.0,14093307.03785499,0.0 - 05/17 06:00:00,0.0,0.0,836599.0676258574,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,20179971.471896069,0.0,14093307.03785499,0.0 - 05/17 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,0.0,14093307.03785499,15502637.741640486 - 05/17 08:00:00,4991714.94080654,0.0,8088815.275858493,0.0,0.0,0.0,802247.3493132371,0.0,20664.485774700093,20340.979394941154,20367.190823052137,24517.623559765605,323087783.95483067,0.0,56373228.15141996,38756594.35410121 - 05/17 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,0.0,56373228.15141996,38756594.35410121 - 05/17 10:00:00,5814007.291161327,0.0,12340402.65451324,0.0,3990896.070516704,0.0,9553993.380652082,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,225177971.41648535,0.0,28186614.07570998,0.0 - 05/17 11:00:00,10466858.787073823,0.0,15064322.9954257,0.0,7323552.172100771,0.0,14114284.314804415,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,201678432.86099447,0.0,28186614.07570998,0.0 - 05/17 12:00:00,4400884.252177855,0.0,8275601.378016483,0.0,4223527.249892431,0.0,8553446.968227519,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,102639411.97288499,0.0,28186614.07570998,0.0 - 05/17 13:00:00,0.0,0.0,329680.8609427274,0.0,447886.0877864149,0.0,2146238.5944872635,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,80059637.11110653,0.0,28186614.07570998,0.0 - 05/17 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,0.0,28186614.07570998,0.0 - 05/17 15:00:00,0.0,11084275.534507379,0.0,0.0,0.0,0.0,0.0,0.0,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,11084275.534507379,28186614.07570998,0.0 - 05/17 16:00:00,0.0,20233383.06409147,0.0,13817928.189636808,0.0,12398703.89580192,0.0,10740151.123630796,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,57190166.27316099,28186614.07570998,0.0 - 05/17 17:00:00,0.0,26200617.500036368,0.0,25565901.461349317,0.0,27855819.258196076,0.0,30762534.779804775,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,110384872.99938654,35233267.594637479,0.0 - 05/17 18:00:00,0.0,22011745.172083409,0.0,22821844.875622736,0.0,25145198.066068755,0.0,29515540.448270628,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,99494328.56204552,14093307.03785499,0.0 - 05/17 19:00:00,0.0,24130786.3091475,0.0,27272585.4148518,0.0,29752062.89643657,0.0,35065707.33954684,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,116221141.9599827,63419881.67034747,0.0 - 05/17 20:00:00,0.0,19825002.253703577,0.0,15896906.305639744,0.0,28292481.09994076,0.0,29128761.959414726,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,93143151.6186988,63419881.67034747,69761869.8373822 - 05/17 21:00:00,0.0,11594049.076519162,0.0,7554048.612815604,0.0,21352435.429512144,0.0,20279386.01468402,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,60779919.13353092,49326574.63249246,69761869.8373822 - 05/17 22:00:00,0.0,5743896.850411047,0.0,1174856.5716605604,0.0,16211043.789441947,0.0,13727329.92172584,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,36857127.133239399,35233267.594637479,69761869.8373822 - 05/17 23:00:00,0.0,1180585.109838207,0.0,0.0,0.0,12233620.78932917,0.0,8729422.805937557,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,22143628.70510493,35233267.594637479,62010550.96656194 - 05/17 24:00:00,0.0,0.0,0.0,0.0,0.0,6224307.651217697,0.0,1392046.1699545049,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,7616353.821172202,35233267.594637479,46507913.22492146 - 05/18 01:00:00,2174751.109081921,0.0,7042417.632978426,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,47922915.47043613,0.0,21139960.556782485,23253956.61246073 - 05/18 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 05/18 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 05/18 04:00:00,0.0,0.0,1220397.4128823144,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,20574161.342250654,0.0,14093307.03785499,0.0 - 05/18 05:00:00,0.0,0.0,2132893.48983418,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,21483208.148592585,0.0,14093307.03785499,0.0 - 05/18 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 05/18 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,15502637.741640486 - 05/18 08:00:00,0.0,5094672.766820218,0.0,8087184.188899195,0.0,18520589.55920565,0.0,12847739.169815705,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,44550185.68474077,56373228.15141996,38756594.35410121 - 05/18 09:00:00,0.0,29139160.832026677,0.0,23568906.37386311,0.0,23494534.69695069,0.0,24650506.98945652,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,100853108.892297,56373228.15141996,38756594.35410121 - 05/18 10:00:00,0.0,20425213.774229926,0.0,13305861.20661794,0.0,9606368.47203923,0.0,9088376.808787577,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,52425820.26167467,28186614.07570998,0.0 - 05/18 11:00:00,0.0,24935749.59257333,0.0,17080461.664255695,0.0,10926507.724017619,0.0,11278553.985572387,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,64221272.966419029,28186614.07570998,0.0 - 05/18 12:00:00,0.0,36267265.77305353,0.0,25929564.669586556,0.0,15004787.625983308,0.0,17871253.31718588,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,95072871.38580926,28186614.07570998,0.0 - 05/18 13:00:00,0.0,47342074.901346828,0.0,35994031.014400098,0.0,20850143.068263085,0.0,26488466.34914784,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,130674715.33315784,28186614.07570998,0.0 - 05/18 14:00:00,0.0,62308090.70246919,0.0,45458577.28764739,0.0,29145316.975031385,0.0,37016605.38448073,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,173928590.3496287,28186614.07570998,0.0 - 05/18 15:00:00,0.0,65560697.33275842,0.0,53275870.37354115,0.0,39502328.446102719,0.0,48056708.13270114,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,206395604.28510345,28186614.07570998,0.0 - 05/18 16:00:00,0.0,64206185.562812548,0.0,59649141.99496244,0.0,48715093.990853268,0.0,56994539.25340439,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,229564960.80203266,28186614.07570998,0.0 - 05/18 17:00:00,0.0,62190508.60168841,0.0,61697607.45428479,0.0,54854089.63420604,0.0,65564190.24444159,22876.254285564693,22518.12225716316,22547.13915606847,27141.80246951196,342299945.4059098,244306395.93462084,35233267.594637479,0.0 - 05/18 18:00:00,0.0,54607755.74601863,0.0,55675867.07161057,0.0,49494436.92817185,0.0,60730968.92745693,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,220509028.673258,14093307.03785499,0.0 - 05/18 19:00:00,0.0,53214869.2450601,0.0,56719043.51414669,0.0,51301694.95411623,0.0,62885387.72391287,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,224120995.4372359,63419881.67034747,0.0 - 05/18 20:00:00,0.0,47169634.75194303,0.0,43505671.744563687,0.0,48330309.78359024,0.0,55255241.54671922,15392.509702592695,15151.537091728755,15171.061393756692,18262.625193908774,230319840.1751529,194260857.8268162,63419881.67034747,69761869.8373822 - 05/18 21:00:00,0.0,37690732.60552505,0.0,34307666.09397708,0.0,40248779.94687039,0.0,45408115.414207439,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,157655294.06057997,49326574.63249246,69761869.8373822 - 05/18 22:00:00,0.0,30686889.077069124,0.0,27537161.19034169,0.0,34040253.968524318,0.0,37837320.61940341,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,130101624.85533855,35233267.594637479,69761869.8373822 - 05/18 23:00:00,0.0,27505879.64795816,0.0,24571359.232089085,0.0,31131662.776537029,0.0,34388164.8391239,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,117597066.49570817,35233267.594637479,62010550.96656194 - 05/18 24:00:00,0.0,22948224.374958878,0.0,20215997.103918647,0.0,26668542.475602583,0.0,29102625.194167537,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,98935389.14864764,35233267.594637479,46507913.22492146 - 05/19 01:00:00,0.0,9828777.458693527,0.0,7269680.022893196,0.0,14552466.91832671,0.0,14336970.96708657,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,45987895.367000009,21139960.556782485,23253956.61246073 - 05/19 02:00:00,0.0,41086.86234030808,0.0,0.0,0.0,4806722.7170402579,0.0,2573733.3947370348,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,7421542.974117601,14093307.03785499,0.0 - 05/19 03:00:00,0.0,0.0,0.0,0.0,0.0,2782945.7731436246,0.0,414146.5198236763,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,3197092.2929673006,14093307.03785499,0.0 - 05/19 04:00:00,0.0,0.0,0.0,0.0,0.0,177877.09863565397,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,177877.09863565397,14093307.03785499,0.0 - 05/19 05:00:00,0.0,0.0,0.0,0.0,0.0,1986404.3457352343,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,1986404.3457352343,14093307.03785499,0.0 - 05/19 06:00:00,0.0,13420935.621954564,0.0,21157644.498082885,0.0,26751830.343875134,0.0,24371460.906201818,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,85701871.37011439,14093307.03785499,0.0 - 05/19 07:00:00,0.0,41769349.45208715,0.0,47676245.18285846,0.0,46147161.9640311,0.0,54205187.73368588,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,189797944.33266259,14093307.03785499,15502637.741640486 - 05/19 08:00:00,0.0,68783357.4217071,0.0,68692031.49543035,0.0,64880145.50615939,0.0,77883861.82377611,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,280239396.24707296,56373228.15141996,38756594.35410121 - 05/19 09:00:00,0.0,78086794.40269941,0.0,69003811.84868467,0.0,61582759.54609051,0.0,74418926.15589312,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,283092291.9533677,56373228.15141996,38756594.35410121 - 05/19 10:00:00,0.0,74688840.68500711,0.0,57918213.44028492,0.0,43993885.8487775,0.0,54227945.52967749,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,230828885.50374703,28186614.07570998,0.0 - 05/19 11:00:00,0.0,86016435.6651598,0.0,62403749.51384269,0.0,42113404.60572988,0.0,53085371.160457868,7578.600145674574,7459.955746607577,7469.568661008936,8991.71977989037,113399439.59945324,243618960.94519026,28186614.07570998,0.0 - 05/19 12:00:00,0.0,94975841.285317,0.0,68303084.9435208,0.0,42988232.11211263,0.0,57025360.90472183,5028.15217773648,4949.4355173931539,4955.813370235695,5965.710622515978,75236802.0763727,263292519.2456723,28186614.07570998,0.0 - 05/19 13:00:00,0.0,103303244.40751377,0.0,77439395.22402144,0.0,49610865.26979634,0.0,67055795.51028557,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,297409300.41161718,28186614.07570998,0.0 - 05/19 14:00:00,0.0,109250873.5111287,0.0,89569450.90094172,0.0,61685582.768539328,0.0,80364987.34253982,7500.277488620052,7382.8592453603209,7392.372813050746,8898.792937054803,112227488.94270933,340870894.5231495,28186614.07570998,0.0 - 05/19 15:00:00,0.0,107327698.93848962,0.0,94583579.43175298,0.0,70539173.21426547,0.0,88853600.17048016,10020.620929291608,9863.746239298562,9876.456683099546,11889.0842219879,149939669.06523944,361304051.7549882,28186614.07570998,0.0 - 05/19 16:00:00,0.0,98905506.04112497,0.0,94768795.53245434,0.0,74941368.6135706,0.0,91998522.88114535,12474.465270489303,12279.175189570597,12294.998160111716,14800.476863821943,186656815.7423768,360614193.06829527,28186614.07570998,0.0 - 05/19 17:00:00,0.0,96053257.47113934,0.0,95955478.22370069,0.0,78589929.22981265,0.0,97865001.25402898,15030.931393937413,14795.619358947839,14814.685024649321,17833.62633298185,224909503.5978591,368463666.1786816,35233267.594637479,0.0 - 05/19 18:00:00,0.0,82965887.42987702,0.0,84465974.6691013,0.0,69093460.43749854,0.0,87512254.72192317,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,324037577.25839999,14093307.03785499,0.0 - 05/19 19:00:00,0.0,79571132.56509444,0.0,83555793.36880544,0.0,70282229.97325005,0.0,88592219.21759686,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,322001375.1247468,63419881.67034747,0.0 - 05/19 20:00:00,0.0,71055949.05063963,0.0,67747540.03868641,0.0,65978111.23569768,0.0,78978079.63471398,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,283759679.9597377,63419881.67034747,69761869.8373822 - 05/19 21:00:00,0.0,63552309.19765466,0.0,61002618.72044775,0.0,59457592.26622109,0.0,71311913.82755676,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,255324434.01188026,49326574.63249246,69761869.8373822 - 05/19 22:00:00,0.0,57249977.571761909,0.0,55130882.97291025,0.0,53928768.06829485,0.0,64657514.47000334,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,230967143.08297033,35233267.594637479,69761869.8373822 - 05/19 23:00:00,0.0,50081040.249497327,0.0,47836657.69882959,0.0,48058483.302211608,0.0,57137909.05715518,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,203114090.30769373,35233267.594637479,62010550.96656194 - 05/19 24:00:00,0.0,40271866.44029401,0.0,37808212.69805759,0.0,39534938.71815023,0.0,46365748.096224669,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,163980765.9527265,35233267.594637479,46507913.22492146 - 05/20 01:00:00,0.0,26098677.02279606,0.0,23633427.08280865,0.0,26404575.1613966,0.0,30231166.91334905,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,106367846.18035037,21139960.556782485,23253956.61246073 - 05/20 02:00:00,0.0,13641507.34697044,0.0,11153907.262073365,0.0,15010828.532348426,0.0,16129215.696080568,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,55935458.8374728,14093307.03785499,0.0 - 05/20 03:00:00,0.0,11708714.788429223,0.0,9423950.867676497,0.0,13504860.349285469,0.0,14330306.02812655,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,48967832.03351773,14093307.03785499,0.0 - 05/20 04:00:00,0.0,10743753.08232444,0.0,8768514.718978603,0.0,12504309.749377877,0.0,13326284.710771697,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,45342862.261452618,14093307.03785499,0.0 - 05/20 05:00:00,0.0,9727131.652665645,0.0,8896359.098955676,0.0,11725515.499275398,0.0,12273522.09748349,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,42622528.34838021,14093307.03785499,0.0 - 05/20 06:00:00,0.0,18598133.280113765,0.0,21732031.30073835,0.0,19463023.332833876,0.0,21796705.703456988,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,81589893.61714298,14093307.03785499,0.0 - 05/20 07:00:00,0.0,40008235.061225067,0.0,44052550.53608855,0.0,38574459.0075306,0.0,45494854.897156078,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,168130099.5020003,14093307.03785499,15502637.741640486 - 05/20 08:00:00,0.0,75522040.76561633,0.0,75418728.32885121,0.0,66480308.11952266,0.0,80346889.71918026,20458.30894659192,20138.03030353926,20163.98021103139,24273.002623468627,306119959.5046723,297767966.93317046,56373228.15141996,38756594.35410121 - 05/20 09:00:00,0.0,82744972.25049587,0.0,74349395.82667184,0.0,62624015.08969901,0.0,77298948.65014126,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,297017331.81700798,56373228.15141996,38756594.35410121 - 05/20 10:00:00,0.0,60421767.35603306,0.0,51936556.66878582,0.0,36814055.034294258,0.0,45968027.25761716,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,195140406.31673027,28186614.07570998,0.0 - 05/20 11:00:00,0.0,67464471.64151076,0.0,55860073.56060934,0.0,37665507.80255096,0.0,47536669.13162794,10135.743846921228,9977.066886176532,9989.923355197416,12025.673169243513,151662266.12713928,208526722.136299,28186614.07570998,0.0 - 05/20 12:00:00,0.0,84338229.95004177,0.0,62060382.76716444,0.0,37564850.0537232,0.0,50247663.819995198,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,234211126.59092463,28186614.07570998,0.0 - 05/20 13:00:00,0.0,92483797.94616454,0.0,69111021.38666494,0.0,42485550.19559597,0.0,57873449.90400189,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,261953819.43242736,28186614.07570998,0.0 - 05/20 14:00:00,0.0,75389120.57183558,0.0,58010396.188669178,0.0,42671680.71842105,0.0,53379303.64851107,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,229450501.12743689,28186614.07570998,0.0 - 05/20 15:00:00,0.0,31630493.445318846,0.0,24874542.086710629,0.0,23651989.45257462,0.0,26539988.499301878,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,106697013.48390597,28186614.07570998,0.0 - 05/20 16:00:00,0.0,11115360.621642108,0.0,5081751.884731064,0.0,10066873.322462805,0.0,8606899.894742845,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,34870885.72357882,28186614.07570998,0.0 - 05/20 17:00:00,0.0,4030077.583539844,0.0,409956.41429171,0.0,5096849.30660606,0.0,2404132.3180090074,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,11941015.622446623,35233267.594637479,0.0 - 05/20 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,0.0,14093307.03785499,0.0 - 05/20 19:00:00,0.0,0.0,0.0,0.0,0.0,7298224.217844859,0.0,2051746.2112738733,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,9349970.429118732,63419881.67034747,0.0 - 05/20 20:00:00,0.0,8852637.976057612,0.0,0.0,0.0,23578121.483650846,0.0,22242447.261336496,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,54673206.72104494,63419881.67034747,69761869.8373822 - 05/20 21:00:00,0.0,4844944.309030855,0.0,0.0,0.0,17824259.512699844,0.0,14853599.700293245,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,37522803.522023949,49326574.63249246,69761869.8373822 - 05/20 22:00:00,0.0,0.0,0.0,0.0,0.0,13260757.583416233,0.0,8695031.67772161,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,21955789.261137844,35233267.594637479,69761869.8373822 - 05/20 23:00:00,0.0,0.0,0.0,0.0,0.0,10693846.794642978,0.0,4971761.537177446,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,15665608.331820423,35233267.594637479,62010550.96656194 - 05/20 24:00:00,0.0,0.0,0.0,0.0,0.0,5306865.380316303,0.0,0.0,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,5306865.380316303,35233267.594637479,46507913.22492146 - 05/21 01:00:00,979466.8737091267,0.0,6793816.813912859,0.0,0.0,0.0,0.0,0.0,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,46385268.725369628,0.0,21139960.556782485,23253956.61246073 - 05/21 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 05/21 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 - 05/21 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 05/21 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 05/21 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 05/21 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,0.0,14093307.03785499,15502637.741640486 - 05/21 08:00:00,0.0,0.0,0.0,0.0,0.0,2310820.4872694669,0.0,0.0,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,309310462.62209537,2310820.4872694669,56373228.15141996,38756594.35410121 - 05/21 09:00:00,0.0,10135247.127099578,0.0,4560875.35151344,0.0,11645179.086856965,0.0,8588301.104391452,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,34929602.669861439,56373228.15141996,38756594.35410121 - 05/21 10:00:00,0.0,14392938.978369913,0.0,4400863.757008687,0.0,2903885.627979866,0.0,496558.3661201611,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,22194246.729478629,28186614.07570998,0.0 - 05/21 11:00:00,0.0,32515802.88445175,0.0,20589604.952753389,0.0,8807119.198414997,0.0,9210765.481282609,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,71123292.51690275,28186614.07570998,0.0 - 05/21 12:00:00,0.0,41775121.26667475,0.0,31086492.323362166,0.0,11474726.034552377,0.0,14421592.516908348,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,98757932.14149764,28186614.07570998,0.0 - 05/21 13:00:00,0.0,40532996.05329923,0.0,30382334.17681293,0.0,13650040.791542627,0.0,17842549.28746379,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,102407920.30911859,28186614.07570998,0.0 - 05/21 14:00:00,0.0,36266914.762238059,0.0,26815452.708755007,0.0,14876588.20878154,0.0,18187299.99339538,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,96146255.67316997,28186614.07570998,0.0 - 05/21 15:00:00,0.0,22561934.842443967,0.0,16814463.041731504,0.0,10857632.387189748,0.0,11753101.4611627,7732.599381733982,7611.544095897946,7621.352347359667,9174.433994962623,115703747.35183518,61987131.73252791,28186614.07570998,0.0 - 05/21 16:00:00,0.0,14259897.588049582,0.0,10226125.100043418,0.0,7132009.452324053,0.0,6770501.788492167,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,38388533.92890923,28186614.07570998,0.0 - 05/21 17:00:00,0.0,9911532.459301068,0.0,6542535.329114801,0.0,6224199.512143245,0.0,5359910.2978403209,12896.03965596058,12694.149749392695,12710.507457009717,15300.658779699996,192964880.31142677,28038177.59839943,35233267.594637479,0.0 - 05/21 18:00:00,0.0,1328221.1698656986,0.0,50397.96266113991,0.0,1391540.9582012124,0.0,1657.428282819456,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,2771817.5190108709,14093307.03785499,0.0 - 05/21 19:00:00,0.0,9433916.61547854,0.0,6785882.983943701,0.0,12967323.967534392,0.0,12352212.752493224,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,41539336.31944986,63419881.67034747,0.0 - 05/21 20:00:00,0.0,14605091.508952363,0.0,10991562.23103708,0.0,21299499.573178706,0.0,21122124.917935116,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,68018278.23110326,63419881.67034747,69761869.8373822 - 05/21 21:00:00,0.0,7528911.639870315,0.0,3562528.944569774,0.0,15372906.01644067,0.0,13486911.520287887,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,39951258.12116864,49326574.63249246,69761869.8373822 - 05/21 22:00:00,0.0,3063646.008456063,0.0,0.0,0.0,11460877.09338991,0.0,8650657.291492494,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,23175180.393338469,35233267.594637479,69761869.8373822 - 05/21 23:00:00,0.0,0.0,0.0,0.0,0.0,7254102.768011251,0.0,3457662.26519325,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,10711765.033204502,35233267.594637479,62010550.96656194 - 05/21 24:00:00,0.0,0.0,0.0,0.0,0.0,3032194.4525669745,0.0,0.0,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,3032194.4525669745,35233267.594637479,46507913.22492146 - 05/22 01:00:00,1589314.6104436895,0.0,7321769.143011448,0.0,0.0,0.0,0.0,0.0,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,47597828.56199556,0.0,21139960.556782485,23253956.61246073 - 05/22 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,19343372.40427021,0.0,14093307.03785499,0.0 - 05/22 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 05/22 04:00:00,0.0,0.0,809533.7213272111,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,20162407.085515106,0.0,14093307.03785499,0.0 - 05/22 05:00:00,464677.0969224627,0.0,5281472.37804438,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,25099913.40433518,0.0,14093307.03785499,0.0 - 05/22 06:00:00,1218363.674776573,0.0,4053771.8990293678,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,24625825.072743715,0.0,14093307.03785499,0.0 - 05/22 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,0.0,14093307.03785499,15502637.741640486 - 05/22 08:00:00,9052678.55361782,0.0,11119190.365056437,0.0,456892.91266621436,0.0,8018159.708709046,0.0,20694.908356167132,20370.925705219997,20397.175722208332,24553.71879137492,338307144.4099429,0.0,56373228.15141996,38756594.35410121 - 05/22 09:00:00,2932238.9815936565,1924854.6199951259,5413987.066261954,0.0,1354747.7923753148,0.0,4323183.572807907,0.0,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,284933423.96969118,1924854.6199951259,56373228.15141996,38756594.35410121 - 05/22 10:00:00,0.0,1279745.2370246144,0.0,0.0,0.0,0.0,0.0,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,193433724.04270209,1279745.2370246144,28186614.07570998,0.0 - 05/22 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,1303595.5153026209,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,156013010.1068924,0.0,28186614.07570998,0.0 - 05/22 12:00:00,0.0,7236882.2218250869,0.0,0.0,0.0,0.0,810860.5413404759,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,78138476.1968643,7236882.2218250869,28186614.07570998,0.0 - 05/22 13:00:00,0.0,12723785.590658213,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,12723785.590658213,28186614.07570998,0.0 - 05/22 14:00:00,0.0,13147098.066294399,0.0,584533.4255355845,0.0,0.0,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,13731631.491829982,28186614.07570998,0.0 - 05/22 15:00:00,0.0,14245645.490811406,0.0,5073484.585211281,0.0,2337941.7791626129,0.0,0.0,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,21657071.8551853,28186614.07570998,0.0 - 05/22 16:00:00,0.0,17870058.817221304,0.0,12192657.735948358,0.0,11689735.59824007,0.0,10304892.88743835,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,52057345.03884809,28186614.07570998,0.0 - 05/22 17:00:00,0.0,20689386.65599131,0.0,16696722.274753645,0.0,19395104.604449739,0.0,20435136.295247768,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,77216349.83044246,35233267.594637479,0.0 - 05/22 18:00:00,0.0,14587135.660716268,0.0,12777885.52127241,0.0,16491417.963293519,0.0,17970602.92306644,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,61827042.06834863,14093307.03785499,0.0 - 05/22 19:00:00,0.0,17724924.13865665,0.0,19861013.60149307,0.0,22757449.289157306,0.0,25511647.069541307,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,85855034.09884833,63419881.67034747,0.0 - 05/22 20:00:00,0.0,11127639.796456509,0.0,7311256.508328007,0.0,19303579.897837126,0.0,17974706.003790015,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,154782937.6157136,55717182.206411648,63419881.67034747,69761869.8373822 - 05/22 21:00:00,0.0,1200716.2607423636,0.0,0.0,0.0,10273107.804377553,0.0,6348260.298995757,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,154829515.9915022,17822084.364115675,49326574.63249246,69761869.8373822 - 05/22 22:00:00,0.0,0.0,1610252.297689614,0.0,0.0,2159880.919131172,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,78981263.34377289,2159880.919131172,35233267.594637479,69761869.8373822 - 05/22 23:00:00,3796662.9622819346,0.0,11534616.213948088,0.0,0.0,0.0,0.0,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,92678744.13560397,0.0,35233267.594637479,62010550.96656194 - 05/22 24:00:00,9438680.243984059,0.0,15770213.940006178,0.0,0.0,0.0,1881888.3411160587,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,65791411.8426231,0.0,35233267.594637479,46507913.22492146 - 05/23 01:00:00,19612414.66658084,0.0,25871407.103013115,0.0,3768464.7712757925,0.0,14629424.663304132,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,102567216.7272155,0.0,21139960.556782485,23253956.61246073 - 05/23 02:00:00,0.0,0.0,2052194.2179552399,0.0,0.0,0.0,0.0,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,21375046.656565526,0.0,14093307.03785499,0.0 - 05/23 03:00:00,11173994.542356417,0.0,20324029.476831855,0.0,0.0,0.0,4553267.199078909,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,55355974.67963271,0.0,14093307.03785499,0.0 - 05/23 04:00:00,21236736.03138519,0.0,27215017.65866038,0.0,6134220.633732191,0.0,16647112.455902942,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,90526115.88248733,0.0,14093307.03785499,0.0 - 05/23 05:00:00,20045738.39562636,0.0,20186407.91658662,0.0,5950472.500693399,0.0,14958299.205684634,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,80409399.7136666,0.0,14093307.03785499,0.0 - 05/23 06:00:00,6058058.772080598,0.0,834245.6690131832,0.0,0.0,0.0,1053290.224802593,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,27227975.066473999,0.0,14093307.03785499,0.0 - 05/23 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,77172116.4112265,0.0,14093307.03785499,15502637.741640486 - 05/23 08:00:00,9503000.486447972,0.0,6826222.446471518,0.0,0.0,0.0,2617692.8537000345,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,328112554.8043841,0.0,56373228.15141996,38756594.35410121 - 05/23 09:00:00,861287.7092554665,0.0,2802433.7207934895,0.0,0.0,0.0,0.0,0.0,18086.757874954284,17803.606306340524,17826.548070242567,21459.247804640374,274297897.6322888,0.0,56373228.15141996,38756594.35410121 - 05/23 10:00:00,0.0,0.0,5831369.178936972,0.0,0.0,0.0,2411249.1102985686,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,201611280.68767039,0.0,28186614.07570998,0.0 - 05/23 11:00:00,0.0,2484079.3815581935,4746058.916858589,0.0,0.0,0.0,7844089.075549902,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,167392665.2624757,2484079.3815581935,28186614.07570998,0.0 - 05/23 12:00:00,0.0,10098224.983777112,1006817.2670054309,0.0,3319651.3989867086,0.0,7363101.393790713,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,89104328.05553395,10098224.983777112,28186614.07570998,0.0 - 05/23 13:00:00,0.0,16915909.527784897,0.0,0.0,312334.3227325153,0.0,1481364.8761091228,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,79196346.78645662,16915909.527784897,28186614.07570998,0.0 - 05/23 14:00:00,0.0,22028071.087038548,0.0,0.0,0.0,0.0,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,22028071.087038548,28186614.07570998,0.0 - 05/23 15:00:00,0.0,26134698.3335109,0.0,9694997.788915337,0.0,9385893.582361069,0.0,5615167.975843168,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,116032060.94369234,50830757.680630479,28186614.07570998,0.0 - 05/23 16:00:00,0.0,24367882.06076092,0.0,15903991.994235248,0.0,18885336.597849095,0.0,16383739.73035353,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,75540950.38319879,28186614.07570998,0.0 - 05/23 17:00:00,0.0,19980791.02083485,0.0,13382911.681651745,0.0,22315602.40187114,0.0,21915626.51450088,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,77594931.6188586,35233267.594637479,0.0 - 05/23 18:00:00,0.0,16988665.73463371,0.0,13497491.294049984,0.0,20673161.244666775,0.0,21782408.326191136,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,72941726.5995416,14093307.03785499,0.0 - 05/23 19:00:00,0.0,17264630.366661464,0.0,18383878.185686917,0.0,24074540.38461651,0.0,25954268.24713996,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,85677317.18410485,63419881.67034747,0.0 - 05/23 20:00:00,0.0,8772551.489816132,0.0,3998927.4643583216,0.0,18611181.945241777,0.0,15837151.075842925,10347.454178083566,10185.462852609999,10198.587861104166,12276.85939568746,154830111.43494673,47219811.97525915,63419881.67034747,69761869.8373822 - 05/23 21:00:00,0.0,1317748.9298209369,0.0,0.0,0.0,11774933.549099554,0.0,7247439.864441459,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,154822986.91350315,20340122.34336195,49326574.63249246,69761869.8373822 - 05/23 22:00:00,0.0,0.0,0.0,0.0,0.0,4931203.6916151479,0.0,506176.6392218936,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,77401258.63503361,5437380.330837041,35233267.594637479,69761869.8373822 - 05/23 23:00:00,0.0,0.0,8058716.178341117,0.0,0.0,822268.9027822815,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,85468188.50683952,822268.9027822815,35233267.594637479,62010550.96656194 - 05/23 24:00:00,7250504.016314907,0.0,14525006.17052443,0.0,0.0,0.0,0.0,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,60468927.37956741,0.0,35233267.594637479,46507913.22492146 - 05/24 01:00:00,20336450.69488288,0.0,27153431.295116787,0.0,3107007.040691583,0.0,13683307.556240166,0.0,2583.822553564898,2543.3723294772187,2546.6497243203668,3065.60682923434,102942221.75867999,0.0,21139960.556782485,23253956.61246073 - 05/24 02:00:00,0.0,0.0,370369.2374275328,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386095,1273.3248621601834,1532.80341461717,19701381.823301816,0.0,14093307.03785499,0.0 - 05/24 03:00:00,7174868.158698926,0.0,15535493.13812785,0.0,0.0,0.0,1291714.3738010259,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,43317183.431682888,0.0,14093307.03785499,0.0 - 05/24 04:00:00,17982396.197475576,0.0,23485481.302962483,0.0,2938186.4489363508,0.0,13061644.415500768,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,76750088.76545279,0.0,14093307.03785499,0.0 - 05/24 05:00:00,13835995.030182152,0.0,12884317.557565177,0.0,2418433.397117283,0.0,8553204.307488937,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,56996633.75371908,0.0,14093307.03785499,0.0 - 05/24 06:00:00,610242.2222804192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,19941254.808154704,0.0,14093307.03785499,0.0 - 05/24 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,77401258.63503361,0.0,14093307.03785499,15502637.741640486 - 05/24 08:00:00,0.0,166718.4813777683,0.0,3332400.1016259135,0.0,13030629.021596497,0.0,8354669.924755224,20694.908356167132,20370.925705219997,20397.175722208332,24553.718791374915,309660222.86989346,24884417.529355404,56373228.15141996,38756594.35410121 - 05/24 09:00:00,0.0,18275651.175004029,0.0,14474776.561208396,0.0,19672520.75483721,0.0,19019896.015721289,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,270909266.55665239,71442844.50677091,56373228.15141996,38756594.35410121 - 05/24 10:00:00,0.0,11705813.132170558,0.0,4138472.1843662059,0.0,2979593.6639675667,0.0,346701.04886937208,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,193433724.04270209,19170580.0293737,28186614.07570998,0.0 - 05/24 11:00:00,0.0,16922586.64662031,0.0,7267465.938438209,0.0,3495939.7824566166,0.0,1005480.5585817727,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,28691472.926096906,28186614.07570998,0.0 - 05/24 12:00:00,0.0,24562094.311630288,0.0,11909979.512052186,0.0,3785036.602809699,0.0,2621807.7866322586,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,42878918.21312443,28186614.07570998,0.0 - 05/24 13:00:00,0.0,33304156.769109649,0.0,18768303.088682407,0.0,8073828.865248578,0.0,8927158.18255417,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,69073446.9055948,28186614.07570998,0.0 - 05/24 14:00:00,0.0,39425548.89986437,0.0,26441055.903342539,0.0,15481244.852625993,0.0,17514702.162354765,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,98862551.81818767,28186614.07570998,0.0 - 05/24 15:00:00,0.0,32869412.339675815,0.0,24290502.875714303,0.0,16975219.010124387,0.0,18230525.730064908,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,92365659.95557942,28186614.07570998,0.0 - 05/24 16:00:00,0.0,27427980.46400127,0.0,21306520.444139787,0.0,17423716.31480907,0.0,17852327.266149794,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,84010544.4890999,28186614.07570998,0.0 - 05/24 17:00:00,0.0,13480690.21398,0.0,7724004.030326366,0.0,10228540.5332627,0.0,8713326.949098554,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,40146561.72666762,35233267.594637479,0.0 - 05/24 18:00:00,0.0,3367161.0795958426,0.0,117458.73521683968,0.0,3653343.3464484608,0.0,746176.3411686117,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,7884139.5024297549,14093307.03785499,0.0 - 05/24 19:00:00,0.0,10252085.181603335,0.0,3272167.9031840299,0.0,13036374.23431001,0.0,10752137.011807098,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,37312764.33090447,63419881.67034747,0.0 - 05/24 20:00:00,0.0,11545808.488188414,0.0,4430668.69932291,0.0,20534215.13288823,0.0,17272239.771966507,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,53782932.092366058,63419881.67034747,69761869.8373822 - 05/24 21:00:00,0.0,3757337.3385928806,0.0,0.0,0.0,13610048.432830457,0.0,9312858.054618597,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,26680243.826041938,49326574.63249246,69761869.8373822 - 05/24 22:00:00,0.0,375457.8902673471,0.0,0.0,0.0,8926640.779964239,0.0,5119800.446177836,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,14421899.116409423,35233267.594637479,69761869.8373822 - 05/24 23:00:00,0.0,0.0,0.0,0.0,0.0,5538855.798919207,0.0,681497.6306219964,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,6220353.429541204,35233267.594637479,62010550.96656194 - 05/24 24:00:00,0.0,0.0,3155645.114764612,0.0,0.0,2236892.1986396948,0.0,0.0,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,41819452.942526537,2236892.1986396948,35233267.594637479,46507913.22492146 - 05/25 01:00:00,9671728.800388575,0.0,19774322.64204713,0.0,0.0,0.0,2075108.4610790925,0.0,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,70198513.55141224,0.0,21139960.556782485,23253956.61246073 - 05/25 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,19343372.40427021,0.0,14093307.03785499,0.0 - 05/25 03:00:00,0.0,0.0,1025045.118584341,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,20368417.52285455,0.0,14093307.03785499,0.0 - 05/25 04:00:00,3702370.079106264,0.0,10219097.015018626,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,33272128.991028634,0.0,14093307.03785499,0.0 - 05/25 05:00:00,6687177.763028026,0.0,11100078.72526142,0.0,0.0,0.0,368873.10335873047,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,37506791.48855192,0.0,14093307.03785499,0.0 - 05/25 06:00:00,6032035.161451334,0.0,9950322.29218455,0.0,0.0,0.0,2003134.5142544367,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,37333359.16985452,0.0,14093307.03785499,0.0 - 05/25 07:00:00,245469.91524691974,0.0,2566292.179933723,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,22162423.992084385,0.0,14093307.03785499,15502637.741640486 - 05/25 08:00:00,12684113.88420723,0.0,13461123.570012337,0.0,3855627.0668892737,0.0,12966706.69393406,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.44582678517,120370218.80265787,0.0,56373228.15141996,38756594.35410121 - 05/25 09:00:00,13990422.685820802,0.0,20678252.212269986,0.0,7620592.238314235,0.0,15601869.904130802,0.0,12932.244602686838,12729.787900923926,12746.191531936709,15343.614566962919,251397756.00957323,0.0,56373228.15141996,38756594.35410121 - 05/25 10:00:00,5677495.911137907,0.0,9872369.818026226,0.0,6540769.603262664,0.0,11338022.585379215,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,226862381.9605081,0.0,28186614.07570998,0.0 - 05/25 11:00:00,1600231.694179363,0.0,5300076.521949854,0.0,4316751.891598611,0.0,7880906.644454068,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,212531690.794884,0.0,28186614.07570998,0.0 - 05/25 12:00:00,5426377.601554235,0.0,9714505.683773272,0.0,6312494.491304232,0.0,11096681.314984328,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,148667299.2767434,0.0,28186614.07570998,0.0 - 05/25 13:00:00,13351564.46830364,0.0,18627802.80155745,0.0,10025204.252626244,0.0,17033489.5768363,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,175160644.67553366,0.0,28186614.07570998,0.0 - 05/25 14:00:00,9102524.28031983,0.0,13952628.264692264,0.0,8426203.175709878,0.0,14223715.812107675,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,161822311.71795703,0.0,28186614.07570998,0.0 - 05/25 15:00:00,8667048.658468232,0.0,13177783.994152395,0.0,8143063.52285878,0.0,13657104.882363415,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,159767584.6340528,0.0,28186614.07570998,0.0 - 05/25 16:00:00,10669177.686885715,0.0,15239884.964941562,0.0,8310347.9407123909,0.0,14309416.402038355,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,319469054.0932085,0.0,28186614.07570998,0.0 - 05/25 17:00:00,16039113.374691077,0.0,21379337.50270426,0.0,9626726.178518936,0.0,17113300.266063006,0.0,23281.771900688025,22917.291418372493,22946.822687484375,27622.933640296782,412526228.0506073,0.0,35233267.594637479,0.0 - 05/25 18:00:00,24300725.17984681,0.0,29840904.5052649,0.0,14303986.71561458,0.0,23416466.086684985,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,362814777.49856796,0.0,14093307.03785499,0.0 - 05/25 19:00:00,10254729.719614841,0.0,13236452.910497947,0.0,418443.81389744809,0.0,5154055.222457584,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,300003908.7650983,0.0,63419881.67034747,0.0 - 05/25 20:00:00,1871912.9824724585,0.0,6927124.098053135,0.0,0.0,0.0,0.0,0.0,15521.181267125348,15278.194278914994,15297.88179165625,18415.28909353119,241044204.23294563,0.0,63419881.67034747,69761869.8373822 - 05/25 21:00:00,6347891.648895761,0.0,11950831.53112978,0.0,0.0,0.0,0.0,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,211835618.16940329,0.0,49326574.63249246,69761869.8373822 - 05/25 22:00:00,9832593.206673632,0.0,15346796.625549615,0.0,0.0,0.0,1601745.528620761,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,181610651.3523462,0.0,35233267.594637479,69761869.8373822 - 05/25 23:00:00,12974574.719837998,0.0,18609013.57941346,0.0,0.0,0.0,6067790.971672642,0.0,7760.03091819748,7638.546186540759,7648.38923295232,9206.98046585044,153765587.7636717,0.0,35233267.594637479,62010550.96656194 - 05/25 24:00:00,17098074.04958759,0.0,22722716.135615618,0.0,1330436.9498236513,0.0,10711175.190768717,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,129271874.65429399,0.0,35233267.594637479,46507913.22492146 - 05/26 01:00:00,24680960.889202909,0.0,30122291.578903986,0.0,10084379.20553962,0.0,19791507.149998134,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,123383874.98789385,0.0,21139960.556782485,23253956.61246073 - 05/26 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 05/26 03:00:00,0.0,0.0,2238315.28383895,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,21581687.68810916,0.0,14093307.03785499,0.0 - 05/26 04:00:00,2586728.1309415756,0.0,6712949.999612895,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,28643050.53482468,0.0,14093307.03785499,0.0 - 05/26 05:00:00,2241704.831801154,0.0,4384112.772221228,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,25969190.008292594,0.0,14093307.03785499,0.0 - 05/26 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 05/26 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,15502637.741640486 - 05/26 08:00:00,4180366.5775392905,0.0,5034001.595216169,0.0,0.0,0.0,1449109.3559077129,0.0,1292.4234856257434,1272.190354856909,1273.8297019789123,1533.4111308575248,30002154.352611897,0.0,56373228.15141996,38756594.35410121 - 05/26 09:00:00,4236896.875234199,0.0,5597714.838919689,0.0,202369.5862141962,0.0,5287566.517701222,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,92652163.47359313,0.0,56373228.15141996,38756594.35410121 - 05/26 10:00:00,4357770.167849193,0.0,7733742.731813864,0.0,1780057.8366212459,0.0,5675120.869126923,0.0,7751.825070850429,7630.468803264726,7640.301441143494,9197.244541209617,135538115.088697,0.0,28186614.07570998,0.0 - 05/26 11:00:00,6936743.610030291,0.0,9677838.159834948,0.0,4366501.522472722,0.0,8832569.841760755,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,145845714.07779105,0.0,28186614.07570998,0.0 - 05/26 12:00:00,2677420.100807343,0.0,4922977.039495679,0.0,2761707.7642626569,0.0,5856299.671669301,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,93546020.23175882,0.0,28186614.07570998,0.0 - 05/26 13:00:00,392115.5786231683,0.0,2628768.1655409105,0.0,1541544.0798864468,0.0,4136305.5009497397,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,86026348.98052411,0.0,28186614.07570998,0.0 - 05/26 14:00:00,3829058.996264273,0.0,6146216.863978977,0.0,2970023.5520723045,0.0,6250624.984927703,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,135227985.3409356,0.0,28186614.07570998,0.0 - 05/26 15:00:00,7251450.29883611,0.0,10076416.582670115,0.0,4512686.7650212929,0.0,8698466.740130762,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,185285999.62081994,0.0,28186614.07570998,0.0 - 05/26 16:00:00,9904361.279292835,0.0,13472032.271660917,0.0,5334850.142475367,0.0,10741385.601528716,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,232931301.3145998,0.0,28186614.07570998,0.0 - 05/26 17:00:00,17236377.093827677,0.0,21988593.754927994,0.0,8895483.32532958,0.0,16439628.267241575,0.0,15518.693523224205,15275.745481108712,15295.429838324051,18412.33748035551,296768025.2041717,0.0,35233267.594637479,0.0 - 05/26 18:00:00,24251391.871260004,0.0,29451602.226616064,0.0,13927660.073605922,0.0,23121766.214524498,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,361692647.48463699,0.0,14093307.03785499,0.0 - 05/26 19:00:00,18773321.739697309,0.0,24828437.647360956,0.0,5857789.273114951,0.0,14146408.47761371,0.0,10347.454178083566,10185.462852609999,10198.587861104166,12276.85939568746,218436068.5727336,0.0,63419881.67034747,0.0 - 05/26 20:00:00,8409709.434792728,0.0,15102337.674677944,0.0,0.0,0.0,409649.8825560382,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,140044280.5682367,0.0,63419881.67034747,69761869.8373822 - 05/26 21:00:00,11937450.290994544,0.0,18701781.56666649,0.0,0.0,0.0,4159179.674429615,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,112213467.24956398,0.0,49326574.63249246,69761869.8373822 - 05/26 22:00:00,15936823.835933555,0.0,22738781.43144227,0.0,0.0,0.0,8601071.939538956,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,124691435.20266588,0.0,35233267.594637479,69761869.8373822 - 05/26 23:00:00,18413382.313378294,0.0,25264004.87600305,0.0,1529065.6142506605,0.0,11317912.737948776,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,133939123.53733188,0.0,35233267.594637479,62010550.96656194 - 05/26 24:00:00,21872399.23411325,0.0,28668370.881252558,0.0,5622403.13362614,0.0,15328639.904063775,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,148906571.14880685,0.0,35233267.594637479,46507913.22492146 - 05/27 01:00:00,28335196.372000085,0.0,34604065.86397145,0.0,12721946.443334608,0.0,23339645.641723698,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,137708233.31890539,0.0,21139960.556782485,23253956.61246073 - 05/27 02:00:00,0.0,0.0,1009625.2043755839,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,20361993.286500183,0.0,14093307.03785499,0.0 - 05/27 03:00:00,10243183.453899458,0.0,18935051.0280646,0.0,0.0,0.0,3243127.3461454675,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,51773729.91023413,0.0,14093307.03785499,0.0 - 05/27 04:00:00,17489278.533314088,0.0,22601737.436980077,0.0,2801548.4524373349,0.0,12479877.3610461,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,74722756.44253601,0.0,14093307.03785499,0.0 - 05/27 05:00:00,18489217.54788829,0.0,23437415.296512024,0.0,5859545.991522195,0.0,14039472.224413326,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,81175965.71909423,0.0,14093307.03785499,0.0 - 05/27 06:00:00,17926741.792207853,0.0,22676573.836837058,0.0,6192187.969323067,0.0,13889526.992485837,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,80037398.67297842,0.0,14093307.03785499,0.0 - 05/27 07:00:00,13899221.641391108,0.0,18525112.25539685,0.0,3194995.893933651,0.0,9785183.577790153,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,122813985.69701016,0.0,14093307.03785499,15502637.741640486 - 05/27 08:00:00,26389432.363350136,0.0,32647345.632168868,0.0,15528446.535580418,0.0,24060675.93184151,0.0,20691.220063831403,20367.29515378883,20393.540492441087,24549.34277330935,408230935.0030753,0.0,56373228.15141996,38756594.35410121 - 05/27 09:00:00,41814261.17002029,0.0,47781395.10881924,0.0,28688000.46511379,0.0,41823774.9469467,0.0,18104.817555852474,17821.38325956522,17844.34793088595,21480.674926645683,431011836.9135176,0.0,56373228.15141996,38756594.35410121 - 05/27 10:00:00,32002012.69863949,0.0,37380530.97911995,0.0,23665925.612582856,0.0,34075391.02360964,0.0,12933.384863662466,12730.910310901267,12747.315388253866,15344.967443084064,320647541.1351979,0.0,28186614.07570998,0.0 - 05/27 11:00:00,18641519.191920613,0.0,22879074.56200687,0.0,16611669.69143863,0.0,23803103.481577018,0.0,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,236758353.84044627,0.0,28186614.07570998,0.0 - 05/27 12:00:00,12990533.447818164,0.0,16789851.090559327,0.0,12462520.248488944,0.0,18265537.655559079,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,137899911.2502823,0.0,28186614.07570998,0.0 - 05/27 13:00:00,11979210.955804874,0.0,15898754.793907956,0.0,10772464.723881707,0.0,16406023.603131388,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,132447922.88458273,0.0,28186614.07570998,0.0 - 05/27 14:00:00,3708441.572392432,0.0,7361078.359076924,0.0,7017548.365234234,0.0,10785499.731037658,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,106275215.6153562,0.0,28186614.07570998,0.0 - 05/27 15:00:00,1148950.8485823172,0.0,4776233.260013946,0.0,4398287.527003045,0.0,7703479.56899956,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,134059012.14829119,0.0,28186614.07570998,0.0 - 05/27 16:00:00,4680403.904931576,0.0,7921565.136379112,0.0,4806620.079197228,0.0,8640150.09901447,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,219482463.2622245,0.0,28186614.07570998,0.0 - 05/27 17:00:00,3814161.8162433237,0.0,6866286.98183002,0.0,2977575.56032147,0.0,6717427.724181795,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,213854124.10221858,0.0,35233267.594637479,0.0 - 05/27 18:00:00,9020460.680232594,0.0,12062061.454768151,0.0,5703424.967810783,0.0,10021370.349541098,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,307677458.27985146,0.0,14093307.03785499,0.0 - 05/27 19:00:00,1647401.3881363557,0.0,5788262.152895649,0.0,0.0,0.0,0.0,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,278305804.36853078,0.0,63419881.67034747,0.0 - 05/27 20:00:00,0.0,0.0,1137751.9205481625,0.0,0.0,451149.94375918756,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,155956696.57754494,451149.94375918756,63419881.67034747,69761869.8373822 - 05/27 21:00:00,0.0,0.0,6890677.335207082,0.0,0.0,270639.7671387525,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,161709621.99220387,270639.7671387525,49326574.63249246,69761869.8373822 - 05/27 22:00:00,4238847.268933561,0.0,9625996.089604024,0.0,0.0,0.0,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,91279601.35428868,0.0,35233267.594637479,69761869.8373822 - 05/27 23:00:00,6033956.043926518,0.0,11373251.67270527,0.0,0.0,0.0,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,94821965.71238289,0.0,35233267.594637479,62010550.96656194 - 05/27 24:00:00,11617625.689947349,0.0,17037043.216404756,0.0,0.0,0.0,4867650.57774625,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,72222948.80161515,0.0,35233267.594637479,46507913.22492146 - 05/28 01:00:00,20848099.109519118,0.0,26180232.48721444,0.0,5662610.253186658,0.0,16383676.503590644,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,107775247.67102766,0.0,21139960.556782485,23253956.61246073 - 05/28 02:00:00,0.0,0.0,263069.94405225259,0.0,0.0,0.0,0.0,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,19599936.183895738,0.0,14093307.03785499,0.0 - 05/28 03:00:00,6351802.158095273,0.0,13558065.154171495,0.0,0.0,0.0,543904.7891121007,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,39796524.86289968,0.0,14093307.03785499,0.0 - 05/28 04:00:00,14666840.277223286,0.0,19161472.52935497,0.0,645819.6826632602,0.0,9862681.10882648,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,63667826.18394229,0.0,14093307.03785499,0.0 - 05/28 05:00:00,11724698.883453746,0.0,10291101.759266846,0.0,1970259.6342744858,0.0,6575785.324508655,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,49892858.18737801,0.0,14093307.03785499,0.0 - 05/28 06:00:00,621716.150647288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,19968424.747011328,0.0,14093307.03785499,0.0 - 05/28 07:00:00,208324.80323812049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,77595159.18869427,0.0,14093307.03785499,15502637.741640486 - 05/28 08:00:00,13704570.720834077,0.0,11837237.403074865,0.0,1470924.8795407916,0.0,9055713.051710194,0.0,20694.828767982373,20370.84736300312,20397.097279039517,24553.624363031773,345727478.0381643,0.0,56373228.15141996,38756594.35410121 - 05/28 09:00:00,9014606.091212396,0.0,10417791.361547782,0.0,4017177.7416933674,0.0,8038774.728947276,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,302295563.5831837,0.0,56373228.15141996,38756594.35410121 - 05/28 10:00:00,0.0,9303499.455330357,0.0,0.0,0.0,0.0,0.0,0.0,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,9303499.455330357,28186614.07570998,0.0 - 05/28 11:00:00,0.0,20950047.27768692,0.0,2377440.8136419139,0.0,0.0,0.0,0.0,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,23327488.091328835,28186614.07570998,0.0 - 05/28 12:00:00,0.0,23799672.643905187,0.0,6922489.45674067,0.0,0.0,0.0,0.0,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,30722162.100645856,28186614.07570998,0.0 - 05/28 13:00:00,0.0,28736103.814242387,0.0,12176424.3549783,0.0,3925745.6834697995,0.0,3499264.179643441,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,48337538.032333929,28186614.07570998,0.0 - 05/28 14:00:00,0.0,36305567.80276872,0.0,20757752.751607676,0.0,12655411.986041017,0.0,14402906.63881534,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,84121639.17923276,28186614.07570998,0.0 - 05/28 15:00:00,0.0,38218310.04027096,0.0,27032384.504625698,0.0,21375731.496923344,0.0,23544471.4472697,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,110170897.4890897,28186614.07570998,0.0 - 05/28 16:00:00,0.0,37088729.03215869,0.0,31525679.42872569,0.0,27712791.53307978,0.0,29963755.311273833,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,126290955.30523798,28186614.07570998,0.0 - 05/28 17:00:00,0.0,33375674.544975625,0.0,29499870.792158709,0.0,28819040.369050486,0.0,32515949.299151079,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,124210535.0053359,35233267.594637479,0.0 - 05/28 18:00:00,0.0,28644663.122369667,0.0,27545662.0422526,0.0,27057529.60999506,0.0,31778811.08018639,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,115026665.85480371,14093307.03785499,0.0 - 05/28 19:00:00,0.0,29915361.146941857,0.0,32079235.196637744,0.0,31590039.536638045,0.0,37028456.3986549,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,130613092.27887255,63419881.67034747,0.0 - 05/28 20:00:00,0.0,23499251.30655307,0.0,19863620.307386105,0.0,29087740.751425968,0.0,30711750.687498385,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,103162363.05286353,63419881.67034747,69761869.8373822 - 05/28 21:00:00,0.0,10912249.67078325,0.0,6081127.267278677,0.0,19197858.29437168,0.0,17580150.133566407,10345.79568214947,10183.830320739144,10196.953225549367,12274.891653570337,154805295.17522998,53771385.36600001,49326574.63249246,69761869.8373822 - 05/28 22:00:00,0.0,3267763.6899100735,0.0,0.0,0.0,12935862.86541703,0.0,9554523.985380574,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,25758150.540707675,35233267.594637479,69761869.8373822 - 05/28 23:00:00,0.0,664049.1359422135,0.0,0.0,0.0,10427092.450934049,0.0,6642820.722633077,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,17733962.309509338,35233267.594637479,62010550.96656194 - 05/28 24:00:00,0.0,0.0,0.0,0.0,0.0,3889647.927502243,0.0,336572.86225534157,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,38705746.728375788,4226220.789757584,35233267.594637479,46507913.22492146 - 05/29 01:00:00,2810234.373111414,0.0,8297475.821527226,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,49809033.98844613,0.0,21139960.556782485,23253956.61246073 - 05/29 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 05/29 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.426797998898,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 - 05/29 04:00:00,0.0,0.0,3924468.3156714218,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,23278157.814609197,0.0,14093307.03785499,0.0 - 05/29 05:00:00,1217074.4250057177,0.0,1926935.7047334023,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,22494324.788497524,0.0,14093307.03785499,0.0 - 05/29 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 - 05/29 07:00:00,0.0,0.0,0.0,189129.70492746566,0.0,5453184.908072021,0.0,208242.2308062733,5169.693942502973,5088.761419427636,5095.318807915649,6133.644523430099,77354707.29579488,5850556.84380576,14093307.03785499,15502637.741640486 - 05/29 08:00:00,0.0,17510814.058267677,0.0,26153413.22720438,0.0,33867615.216033447,0.0,33624200.10091971,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,111156042.60242522,56373228.15141996,38756594.35410121 - 05/29 09:00:00,0.0,33924296.836683649,0.0,30642824.58717734,0.0,33132329.260488817,0.0,36251678.08631594,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,133951128.77066575,56373228.15141996,38756594.35410121 - 05/29 10:00:00,0.0,32037423.32490179,0.0,20976250.00174322,0.0,17668367.710429096,0.0,18911243.707402383,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,89593284.74447647,28186614.07570998,0.0 - 05/29 11:00:00,0.0,41423841.136130038,0.0,25267035.0339429,0.0,15950511.285267812,0.0,17822522.096253776,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,100463909.55159453,28186614.07570998,0.0 - 05/29 12:00:00,0.0,47152885.61576323,0.0,29841347.088056096,0.0,14861894.400825182,0.0,18523173.756286194,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,110379300.8609307,28186614.07570998,0.0 - 05/29 13:00:00,0.0,53536850.571773547,0.0,36041373.12473081,0.0,19239603.457141766,0.0,25419284.113909224,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,134237111.26755537,28186614.07570998,0.0 - 05/29 14:00:00,0.0,57673634.786726508,0.0,42388034.76788633,0.0,27671779.045976238,0.0,34929323.63642436,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,162662772.23701344,28186614.07570998,0.0 - 05/29 15:00:00,0.0,58834978.7849667,0.0,48928919.41234765,0.0,37531906.11573058,0.0,44997479.512865219,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,190293283.82591016,28186614.07570998,0.0 - 05/29 16:00:00,0.0,56583094.79430954,0.0,53558907.3034116,0.0,45238473.35458496,0.0,52586292.48833431,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,207966767.94064043,28186614.07570998,0.0 - 05/29 17:00:00,0.0,56277095.85242132,0.0,54925476.620774287,0.0,50037036.236982438,0.0,60131688.26883474,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,221371296.9790128,35233267.594637479,0.0 - 05/29 18:00:00,0.0,49536146.02942195,0.0,51189651.90508165,0.0,45535476.03943352,0.0,56485273.41202325,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,202746547.38596038,14093307.03785499,0.0 - 05/29 19:00:00,0.0,48632481.73567254,0.0,54949144.29585686,0.0,47582305.755887668,0.0,58928969.96104909,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,210092901.74846614,63419881.67034747,0.0 - 05/29 20:00:00,0.0,39995685.27621219,0.0,37915467.16514063,0.0,42452271.42549176,0.0,48506021.544427979,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,168869445.41127257,63419881.67034747,69761869.8373822 - 05/29 21:00:00,0.0,33096808.91089611,0.0,29805612.27870941,0.0,36661499.31236513,0.0,41105617.82029261,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,140669538.32226328,49326574.63249246,69761869.8373822 - 05/29 22:00:00,0.0,26834306.857916275,0.0,23733163.5808034,0.0,30998767.782878058,0.0,34228815.86160267,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,115795054.0832004,35233267.594637479,69761869.8373822 - 05/29 23:00:00,0.0,20795019.96897799,0.0,17541514.079269019,0.0,25754770.5122841,0.0,27577838.038341308,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,91669142.59887243,35233267.594637479,62010550.96656194 - 05/29 24:00:00,0.0,13136016.837076219,0.0,9750394.992202454,0.0,18979266.060733208,0.0,19080073.329821834,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,38650625.798606548,60945751.21983371,35233267.594637479,46507913.22492146 - 05/30 01:00:00,0.0,749989.5431897206,0.0,0.0,0.0,6811578.972373484,0.0,3973571.931979251,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,11535140.447542455,21139960.556782485,23253956.61246073 - 05/30 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 05/30 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 05/30 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 05/30 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 05/30 06:00:00,0.0,0.0,0.0,4567085.904593099,0.0,7527499.479822807,0.0,2871017.796375137,1292.4234856257434,1272.190354856909,1273.8297019789123,1533.4111308575248,19338676.82394872,14965603.18079104,14093307.03785499,0.0 - 05/30 07:00:00,0.0,20875489.532594917,0.0,28312074.399828376,0.0,30567733.422069163,0.0,31360488.151272037,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,111115785.50576447,14093307.03785499,15502637.741640486 - 05/30 08:00:00,0.0,44214511.547996629,0.0,46433732.52068472,0.0,48542048.87246832,0.0,55532615.09627508,20620.265017957285,20297.450922394528,20323.606259625776,24465.157319900325,308543326.2715605,194722908.03742475,56373228.15141996,38756594.35410121 - 05/30 09:00:00,0.0,51298025.61664521,0.0,47171408.68029757,0.0,45566378.87574886,0.0,52901381.149446729,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,196937194.32213835,56373228.15141996,38756594.35410121 - 05/30 10:00:00,0.0,48560727.93952875,0.0,37403067.54058987,0.0,29050429.04518346,0.0,34251697.8091053,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,149265922.3344074,28186614.07570998,0.0 - 05/30 11:00:00,0.0,56740404.68318829,0.0,40758416.9901245,0.0,26115929.99649155,0.0,31715043.865291563,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,155329795.5350959,28186614.07570998,0.0 - 05/30 12:00:00,0.0,61343910.4708836,0.0,44213809.990232277,0.0,24005461.53330415,0.0,31168333.0151281,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,160731515.00954814,28186614.07570998,0.0 - 05/30 13:00:00,0.0,67497005.88339478,0.0,50188294.999373998,0.0,28102320.98671098,0.0,37725165.701722,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,183512787.57120178,28186614.07570998,0.0 - 05/30 14:00:00,0.0,69757505.98161009,0.0,55311140.677018519,0.0,35777504.530083779,0.0,46073233.03113144,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,206919384.2198438,28186614.07570998,0.0 - 05/30 15:00:00,0.0,67785681.41029255,0.0,58614414.249751437,0.0,43314101.42530951,0.0,53174770.34367511,7625.418095188231,7506.0407523877179,7515.713052022824,9047.267489837323,114099981.80196993,222888967.4290286,28186614.07570998,0.0 - 05/30 16:00:00,0.0,62708827.45670025,0.0,60027414.98013681,0.0,48714779.20898382,0.0,57984146.98328937,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,229435168.62911026,28186614.07570998,0.0 - 05/30 17:00:00,0.0,61543435.27788602,0.0,60769017.43683087,0.0,52541070.29134683,0.0,64202877.54101142,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,239056400.54707516,35233267.594637479,0.0 - 05/30 18:00:00,0.0,54682435.43474641,0.0,56946446.67976534,0.0,48059636.6644042,0.0,60489700.32141599,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,220178219.10033194,14093307.03785499,0.0 - 05/30 19:00:00,0.0,55838946.086829,0.0,62448700.19596989,0.0,52533768.537423,0.0,65636286.77475026,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,236457701.59497214,63419881.67034747,0.0 - 05/30 20:00:00,0.0,47014413.847277458,0.0,45165962.10066025,0.0,48033662.42046571,0.0,55741584.733677949,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,195955623.10208137,63419881.67034747,69761869.8373822 - 05/30 21:00:00,0.0,34339001.343404199,0.0,30996540.500098666,0.0,37685085.70457133,0.0,42250572.52333355,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,145271200.07140775,49326574.63249246,69761869.8373822 - 05/30 22:00:00,0.0,26224109.90762293,0.0,22897762.198175946,0.0,30911582.630152964,0.0,33730971.507267188,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,113764426.24321902,35233267.594637479,69761869.8373822 - 05/30 23:00:00,0.0,20123214.16647297,0.0,16785443.399402676,0.0,25907670.849924715,0.0,27426289.6814119,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,90242618.09721226,35233267.594637479,62010550.96656194 - 05/30 24:00:00,0.0,11834258.663805409,0.0,8479678.750746109,0.0,18709118.60821846,0.0,18430800.93437857,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,57453856.95714855,35233267.594637479,46507913.22492146 - 05/31 01:00:00,0.0,1016958.8958030117,0.0,0.0,0.0,8221808.416089196,0.0,5808115.822240467,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,15046883.134132673,21139960.556782485,23253956.61246073 - 05/31 02:00:00,0.0,0.0,0.0,0.0,0.0,1912492.136907323,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,1912492.136907323,14093307.03785499,0.0 - 05/31 03:00:00,0.0,0.0,0.0,0.0,0.0,214266.98037359667,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,214266.98037359667,14093307.03785499,0.0 - 05/31 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 05/31 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 05/31 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 - 05/31 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,77401258.63503361,0.0,14093307.03785499,15502637.741640486 - 05/31 08:00:00,0.0,0.0,0.0,0.0,0.0,13380423.939831663,0.0,4958490.5456533,20694.82876798237,20370.847363003115,20397.097279039514,24553.62436303177,309659031.9830044,18338914.48548496,56373228.15141996,38756594.35410121 - 05/31 09:00:00,0.0,15573272.663709393,0.0,6753865.418744324,0.0,17876491.53798022,0.0,15682405.916937596,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,270952695.0111567,55886035.53737152,56373228.15141996,38756594.35410121 - 05/31 10:00:00,0.0,13698375.117478023,0.0,0.0,0.0,3199670.9959726019,0.0,10480.374627438145,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,193478672.01964198,16908526.48807806,28186614.07570998,0.0 - 05/31 11:00:00,0.0,23148346.67032347,0.0,4070295.013128957,0.0,1683576.2451626119,0.0,0.0,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,28902217.928615039,28186614.07570998,0.0 - 05/31 12:00:00,0.0,29753796.682087114,0.0,9148660.219596347,0.0,982157.4308861015,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,39884614.33256956,28186614.07570998,0.0 - 05/31 13:00:00,0.0,37995528.3520471,0.0,16004154.804074772,0.0,5703396.397650523,0.0,7082385.359269468,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,66785464.91304186,28186614.07570998,0.0 - 05/31 14:00:00,0.0,43830332.96942605,0.0,24078185.196529155,0.0,15301337.113671488,0.0,17730707.07646311,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,100940562.3560898,28186614.07570998,0.0 - 05/31 15:00:00,0.0,44476654.76208282,0.0,30267328.270519377,0.0,25113023.748168429,0.0,27593027.674786219,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,127450034.45555684,28186614.07570998,0.0 - 05/31 16:00:00,0.0,40778890.9116452,0.0,33559196.5461035,0.0,31775182.266427444,0.0,33889643.25533482,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,140002912.97951097,28186614.07570998,0.0 - 05/31 17:00:00,0.0,39781681.78197304,0.0,34914278.274031799,0.0,36516578.39112805,0.0,41333481.94122729,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,152546020.38836018,35233267.594637479,0.0 - 05/31 18:00:00,0.0,31791153.97913138,0.0,29869312.26914344,0.0,31315468.245403164,0.0,36626669.237054217,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,129602603.73073219,14093307.03785499,0.0 - 05/31 19:00:00,0.0,30348848.08486045,0.0,32763394.342465074,0.0,33267085.168409926,0.0,38840917.86365762,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,270573798.44411638,135220245.45939309,63419881.67034747,0.0 - 05/31 20:00:00,0.0,23353193.6812154,0.0,18956904.109454678,0.0,29287681.135979266,0.0,30618211.36960234,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154701073.47113923,102215990.29625169,63419881.67034747,69761869.8373822 - 05/31 21:00:00,0.0,15398460.848547616,0.0,9908496.34538224,0.0,22448645.7469095,0.0,21853522.114119058,10342.345082397498,10180.433740769997,10193.552268740248,12270.797648682112,154753663.4661235,69609125.05495842,49326574.63249246,69761869.8373822 - 05/31 22:00:00,0.0,9385072.090692336,0.0,4314018.798953735,0.0,17104733.817429034,0.0,15369621.511757115,5171.787190243269,5090.821896984065,5097.3819406077159,6136.128081969782,77386028.79529739,46173446.21883222,35233267.594637479,69761869.8373822 - 05/31 23:00:00,0.0,5840341.619221523,0.0,1099964.1518007348,0.0,13984003.681284406,0.0,11471833.380763725,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,32396142.833070388,35233267.594637479,62010550.96656194 - 05/31 24:00:00,0.0,2819022.1311750088,0.0,0.0,0.0,10640459.219415965,0.0,7675130.6001288979,2583.603097553539,2543.156309090657,2546.4334255694886,3065.3464530540138,38658741.42696372,21134611.95071987,35233267.594637479,46507913.22492146 - 06/01 01:00:00,0.0,0.0,0.0,0.0,0.0,2573345.244218854,0.0,124984.39664778701,2580.233370648557,2539.839335888994,2543.112178109299,3061.348400711636,38608319.82729055,2698329.640866641,21139960.556782485,23253956.61246073 - 06/01 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 - 06/01 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,0.0,14093307.03785499,0.0 - 06/01 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,0.0,14093307.03785499,0.0 - 06/01 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 - 06/01 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 - 06/01 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,15502637.741640486 - 06/01 08:00:00,0.0,20357561.571970419,0.0,17262726.142251269,0.0,27394242.5841161,0.0,23856629.93692977,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,88871160.23526755,56373228.15141996,38756594.35410121 - 06/01 09:00:00,0.0,29700488.002819044,0.0,26904152.288294227,0.0,28429882.584305657,0.0,31699548.76320438,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,116734071.6386233,56373228.15141996,38756594.35410121 - 06/01 10:00:00,0.0,16545770.308795857,0.0,13855976.755116605,0.0,11056704.301725092,0.0,11768219.974591533,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,53226671.34022908,28186614.07570998,0.0 - 06/01 11:00:00,0.0,41850122.46645125,0.0,36497312.81652995,0.0,22376825.674976879,0.0,27613818.038698283,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,128338078.99665636,28186614.07570998,0.0 - 06/01 12:00:00,0.0,56122990.85740083,0.0,51998508.364848967,0.0,30340131.531465357,0.0,39627829.59238052,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,178089460.34609569,28186614.07570998,0.0 - 06/01 13:00:00,0.0,47939788.239594589,0.0,45520324.08059731,0.0,31320244.524036249,0.0,39748931.88198639,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,164529288.72621454,28186614.07570998,0.0 - 06/01 14:00:00,0.0,55781438.39437823,0.0,49433371.599185857,0.0,35976632.90829561,0.0,45322423.79226726,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,186513866.69412697,28186614.07570998,0.0 - 06/01 15:00:00,0.0,64750157.69759538,0.0,59565025.84312533,0.0,45872483.23101765,0.0,56475743.9327345,7567.563776939034,7449.092154283424,7458.691069837249,8978.625549669745,113234301.18262604,226663410.70447285,28186614.07570998,0.0 - 06/01 16:00:00,0.0,57724096.16365878,0.0,57174387.75542059,0.0,44067563.05268201,0.0,53322521.43744939,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,212288568.40921078,28186614.07570998,0.0 - 06/01 17:00:00,0.0,52453779.05098854,0.0,52659716.43798168,0.0,39376128.90881772,0.0,48985484.314964357,22805.423655572766,22448.400493897192,22477.327549194186,27057.764630797905,341240098.7860634,193475108.7127523,35233267.594637479,0.0 - 06/01 18:00:00,0.0,49746189.13572566,0.0,52636892.86759563,0.0,40678881.45957175,0.0,51798208.35248631,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,194860171.81537936,14093307.03785499,0.0 - 06/01 19:00:00,0.0,53206203.5572561,0.0,56305072.81376686,0.0,47833904.94652817,0.0,59305863.85985507,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,216651045.1774062,63419881.67034747,0.0 - 06/01 20:00:00,0.0,60593401.80868341,0.0,59840444.56168128,0.0,58761855.679176229,0.0,70157946.88390884,15250.836190376462,15012.081504775435,15031.426104045648,18094.534979674645,228199963.60393987,249353648.93344978,63419881.67034747,69761869.8373822 - 06/01 21:00:00,0.0,51658615.61220376,0.0,50394209.060977417,0.0,51259955.03133954,0.0,60596930.08987768,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,213909709.7943984,49326574.63249246,69761869.8373822 - 06/01 22:00:00,0.0,41336452.09625448,0.0,39854211.962032567,0.0,42661968.60639064,0.0,49655601.36427749,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,173508234.0289552,35233267.594637479,69761869.8373822 - 06/01 23:00:00,0.0,34180963.844611089,0.0,32468141.10354405,0.0,36877533.11621267,0.0,42252743.33606727,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,145779381.4004351,35233267.594637479,62010550.96656194 - 06/01 24:00:00,0.0,28003001.34673413,0.0,26341151.96218171,0.0,30985842.837272299,0.0,35110448.81281007,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,120440444.95899822,35233267.594637479,46507913.22492146 - 06/02 01:00:00,0.0,15700087.71402943,0.0,14354969.531658739,0.0,18829673.989206833,0.0,20699719.944707715,2562.6938725460224,2522.574421901245,2525.8250165176834,3040.5384557367817,38345874.360126238,69584451.17960271,21139960.556782485,23253956.61246073 - 06/02 02:00:00,0.0,5651245.192531016,0.0,4414846.415861893,0.0,8884656.711554066,0.0,8834443.12124839,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,27785191.44119536,14093307.03785499,0.0 - 06/02 03:00:00,0.0,3053503.4017023409,0.0,1361999.308596835,0.0,6923994.757559212,0.0,6325146.595174646,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,17664644.063033035,14093307.03785499,0.0 - 06/02 04:00:00,0.0,1387587.3598512593,0.0,0.0,0.0,5862967.150643779,0.0,4905641.913387387,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,12156196.423882425,14093307.03785499,0.0 - 06/02 05:00:00,0.0,1042588.2977782664,0.0,425928.5310276759,0.0,5383980.552090663,0.0,3992690.1241349356,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,10845187.505031541,14093307.03785499,0.0 - 06/02 06:00:00,0.0,12852628.6356299,0.0,16620212.001831126,0.0,14155787.398510185,0.0,15227691.619232245,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,58856319.65520346,14093307.03785499,0.0 - 06/02 07:00:00,0.0,43612588.92174942,0.0,48479836.66042832,0.0,39220985.509281847,0.0,47609906.39851416,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,178923317.48997373,14093307.03785499,15502637.741640486 - 06/02 08:00:00,0.0,78557450.35343233,0.0,80064620.06129697,0.0,70685210.66173336,0.0,86736391.58320067,1272.453719511863,1252.533219156898,1254.1472360531896,1509.7177656562424,19039866.985361495,316043672.6596633,56373228.15141996,38756594.35410121 - 06/02 09:00:00,0.0,91335780.28195876,0.0,88195765.94582314,0.0,73319455.48332274,0.0,90466108.5688792,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,343317110.2799838,56373228.15141996,38756594.35410121 - 06/02 10:00:00,0.0,86516932.39988229,0.0,76200171.15179774,0.0,53333222.145701069,0.0,67757599.14813362,7578.600145674574,7459.955746607577,7469.568661008936,8991.71977989037,113399439.59945324,283807924.8455147,28186614.07570998,0.0 - 06/02 11:00:00,0.0,88473346.7617577,0.0,79148895.94170133,0.0,50479934.890788849,0.0,65207947.68502083,7553.923122536451,7435.665046870175,7445.246660225623,8962.44143391687,113030194.54877684,283310125.2792687,28186614.07570998,0.0 - 06/02 12:00:00,0.0,92030187.12210378,0.0,78975867.48422456,0.0,47338022.2871573,0.0,63646465.293333787,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,281990542.18681946,28186614.07570998,0.0 - 06/02 13:00:00,0.0,92716203.17036896,0.0,80315343.99372372,0.0,50094042.631357397,0.0,68413580.69962901,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,291539170.49507907,28186614.07570998,0.0 - 06/02 14:00:00,0.0,99520324.29213183,0.0,89218222.36347273,0.0,61326231.52010641,0.0,81802793.61331842,7515.465696968707,7397.8096794739199,7407.342512324661,8916.813166490925,112454751.79892956,331867571.78902938,28186614.07570998,0.0 - 06/02 15:00:00,0.0,98312895.41486228,0.0,93417067.36290291,0.0,72064974.6167396,0.0,92189612.51178196,10020.620929291608,9863.746239298562,9876.456683099546,11889.0842219879,149939669.06523944,355984549.9062867,28186614.07570998,0.0 - 06/02 16:00:00,0.0,92263398.01084762,0.0,93205756.44601575,0.0,75331022.58234892,0.0,90784799.76126215,12570.380444341201,12373.58879348288,12389.53342558924,14914.276556289944,188092005.19093175,351584976.80047449,28186614.07570998,0.0 - 06/02 17:00:00,0.0,88010152.45134223,0.0,90322526.7180879,0.0,73771096.26991326,0.0,92084412.90732944,15055.610926944493,14819.91252926173,14839.009499192713,17862.90765681906,225278786.20398478,344188188.3466728,35233267.594637479,0.0 - 06/02 18:00:00,0.0,78961132.4086725,0.0,83761194.89878673,0.0,66415394.81492257,0.0,85317010.35005921,17598.53262207768,17323.024310876033,17345.346795824935,20879.98717880592,263328807.26730443,314454732.47244098,14093307.03785499,0.0 - 06/02 19:00:00,0.0,81056192.14991385,0.0,88760462.72701508,0.0,72532015.04876384,0.0,91938746.81965867,10090.085035918712,9932.1228723779,9944.921426449666,11971.500732892993,150979068.24350138,334287416.74535146,63419881.67034747,0.0 - 06/02 20:00:00,0.0,75452084.84255532,0.0,75489396.1972053,0.0,71339080.58305075,0.0,86386447.23894535,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,308667008.8617567,63419881.67034747,69761869.8373822 - 06/02 21:00:00,0.0,62358188.9828735,0.0,61656770.91876181,0.0,60044271.01866118,0.0,72215798.96974448,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,256275029.89004097,49326574.63249246,69761869.8373822 - 06/02 22:00:00,0.0,57933038.92818481,0.0,57722399.77143152,0.0,55558085.96142414,0.0,66981180.79697426,5075.891774653108,4996.427742014239,5002.866149134601,6022.351831925111,75951134.99181742,238194705.45801474,35233267.594637479,69761869.8373822 - 06/02 23:00:00,0.0,53256541.982470188,0.0,53159620.97527211,0.0,51186098.81168951,0.0,61609731.844029579,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,219211993.61346139,35233267.594637479,62010550.96656194 - 06/02 24:00:00,0.0,43422230.74782392,0.0,43139415.715369317,0.0,42564847.58038895,0.0,50806434.22203786,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,179932928.26562,35233267.594637479,46507913.22492146 - 06/03 01:00:00,0.0,27889255.29202523,0.0,27585227.541314588,0.0,28158441.36519261,0.0,33203061.819404827,2551.357511998267,2511.4155341926609,2514.651749443322,3027.0882966823558,38176247.132339779,116835986.01793726,21139960.556782485,23253956.61246073 - 06/03 02:00:00,0.0,13686660.29009961,0.0,13199601.81791922,0.0,15293362.25687672,0.0,17402661.74923589,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,59582286.11413144,14093307.03785499,0.0 - 06/03 03:00:00,0.0,10587112.44260816,0.0,9826504.009467155,0.0,13239969.573156175,0.0,14549826.95693947,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,48203412.98217097,14093307.03785499,0.0 - 06/03 04:00:00,0.0,5078215.344679478,0.0,3850973.203058822,0.0,8701753.597663176,0.0,8538607.872267796,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,26169550.01766927,14093307.03785499,0.0 - 06/03 05:00:00,0.0,4587.485540252112,0.0,0.0,0.0,1561024.1975302068,0.0,808693.3765651439,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,2374305.059635603,14093307.03785499,0.0 - 06/03 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 06/03 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,0.0,14093307.03785499,15502637.741640486 - 06/03 08:00:00,0.0,1089082.7260755962,0.0,0.0,0.0,10110009.992674293,0.0,4517063.84865085,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,15716156.56740074,56373228.15141996,38756594.35410121 - 06/03 09:00:00,0.0,15921572.19575707,0.0,7707194.8634809129,0.0,16581270.5466137,0.0,14582656.323944524,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,54792693.92979621,56373228.15141996,38756594.35410121 - 06/03 10:00:00,0.0,8172608.70283705,0.0,1121947.459650582,0.0,547206.3013234767,0.0,0.0,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,9841762.463811107,28186614.07570998,0.0 - 06/03 11:00:00,0.0,19877179.425266096,0.0,12198061.04278448,0.0,5315236.885499116,0.0,3296251.9506752497,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,40686729.30422494,28186614.07570998,0.0 - 06/03 12:00:00,0.0,16645466.364659388,0.0,8815370.65488172,0.0,3491305.774380507,0.0,2243661.3151805649,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,31195804.109102183,28186614.07570998,0.0 - 06/03 13:00:00,0.0,11507556.857041359,0.0,5719768.634184584,0.0,2721876.7775695726,0.0,834593.5719208128,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,20783795.84071633,28186614.07570998,0.0 - 06/03 14:00:00,0.0,18531560.343386987,0.0,13038372.792353403,0.0,5922860.59999143,0.0,5314332.384565612,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,42807126.12029743,28186614.07570998,0.0 - 06/03 15:00:00,0.0,11129506.85030764,0.0,6730085.108312897,0.0,5048134.351460729,0.0,3337854.6120199274,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,26245580.922101194,28186614.07570998,0.0 - 06/03 16:00:00,0.0,16417147.704810005,0.0,13169288.195025394,0.0,10325128.861091262,0.0,9811550.036153686,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,49723114.79708035,28186614.07570998,0.0 - 06/03 17:00:00,0.0,10970774.116768972,0.0,7941511.876949982,0.0,9849054.033401601,0.0,9251491.430470651,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,38012831.457591209,35233267.594637479,0.0 - 06/03 18:00:00,0.0,5005522.448444983,0.0,2888606.7116309048,0.0,6182053.796268357,0.0,5155868.281788549,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,19232051.238132795,14093307.03785499,0.0 - 06/03 19:00:00,0.0,13075096.033521198,0.0,12700800.328834463,0.0,17983821.69695107,0.0,19129422.004494125,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,62889140.06380085,63419881.67034747,0.0 - 06/03 20:00:00,0.0,15578266.203432106,0.0,11702252.967985612,0.0,23369014.469111705,0.0,23226914.937672557,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,73876448.57820197,63419881.67034747,69761869.8373822 - 06/03 21:00:00,0.0,5539833.856058046,0.0,1011363.0463552449,0.0,14170577.706199212,0.0,11576796.194922567,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,32298570.80353507,49326574.63249246,69761869.8373822 - 06/03 22:00:00,0.0,0.0,0.0,0.0,0.0,6502862.270031778,0.0,2208720.7593879436,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,8711583.029419722,35233267.594637479,69761869.8373822 - 06/03 23:00:00,0.0,0.0,0.0,0.0,0.0,1276592.7153874976,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,77414757.9957511,1276592.7153874976,35233267.594637479,62010550.96656194 - 06/03 24:00:00,3539620.4576632746,0.0,10867532.138819479,0.0,0.0,0.0,0.0,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,53111888.76073195,0.0,35233267.594637479,46507913.22492146 - 06/04 01:00:00,17047843.884125588,0.0,22804723.016347708,0.0,1444935.1775117915,0.0,9446343.93948956,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,89437263.21020271,0.0,21139960.556782485,23253956.61246073 - 06/04 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,19342752.761520819,0.0,14093307.03785499,0.0 - 06/04 03:00:00,4616073.567753319,0.0,11442926.774640222,0.0,0.0,0.0,0.0,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,35395866.58223703,0.0,14093307.03785499,0.0 - 06/04 04:00:00,10372644.709138086,0.0,15067359.981901385,0.0,0.0,0.0,6148991.172686184,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,50931748.62524647,0.0,14093307.03785499,0.0 - 06/04 05:00:00,6868344.449951969,0.0,5408819.001200934,0.0,0.0,0.0,2704434.214059269,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,34312610.25108646,0.0,14093307.03785499,0.0 - 06/04 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 - 06/04 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,0.0,14093307.03785499,15502637.741640486 - 06/04 08:00:00,0.0,3912306.719681252,0.0,11909788.232628219,0.0,19977194.11368583,0.0,15830651.78725853,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,309310462.62209537,51629940.85325384,56373228.15141996,38756594.35410121 - 06/04 09:00:00,0.0,26460430.572054864,0.0,22451343.374977106,0.0,25299255.478500837,0.0,26703622.348588997,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,100914651.7741218,56373228.15141996,38756594.35410121 - 06/04 10:00:00,0.0,22620434.050930829,0.0,12165082.122218706,0.0,10760252.185860303,0.0,10217085.847799086,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,55762854.206808928,28186614.07570998,0.0 - 06/04 11:00:00,0.0,32306778.270622877,0.0,17067845.547175714,0.0,9932927.080477165,0.0,9997970.931002472,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,69305521.82927823,28186614.07570998,0.0 - 06/04 12:00:00,0.0,38064313.344266939,0.0,20699671.08615323,0.0,8655542.265161129,0.0,10114766.861095522,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,77534293.5566768,28186614.07570998,0.0 - 06/04 13:00:00,0.0,42581388.588265519,0.0,24636574.547868454,0.0,12251374.144753386,0.0,15483912.82360089,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,94953250.10448824,28186614.07570998,0.0 - 06/04 14:00:00,0.0,47073397.65440692,0.0,31514164.91669677,0.0,20110442.806728297,0.0,24171609.45781911,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,122869614.8356511,28186614.07570998,0.0 - 06/04 15:00:00,0.0,41815257.70814259,0.0,32936755.493579374,0.0,23724603.833055829,0.0,27418370.481147637,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,125894987.51592542,28186614.07570998,0.0 - 06/04 16:00:00,0.0,42907581.04174125,0.0,37496686.544716257,0.0,31790712.596925014,0.0,35524269.58994011,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,147719249.77332265,28186614.07570998,0.0 - 06/04 17:00:00,0.0,37615343.555121798,0.0,33800028.33489798,0.0,31940461.823535615,0.0,36574499.49851055,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,139930333.21206595,35233267.594637479,0.0 - 06/04 18:00:00,0.0,21219241.423675743,0.0,17601655.802533438,0.0,18114142.398462237,0.0,19841423.562177369,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,76776463.18684878,14093307.03785499,0.0 - 06/04 19:00:00,0.0,25483284.741255296,0.0,21970468.808528544,0.0,25255375.503905357,0.0,27660258.68872523,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,100369387.74241442,63419881.67034747,0.0 - 06/04 20:00:00,0.0,33032434.02105257,0.0,27654436.957857133,0.0,35690328.86944442,0.0,38778977.14347874,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,135156176.99183286,63419881.67034747,69761869.8373822 - 06/04 21:00:00,0.0,25443834.336291627,0.0,19753907.841884246,0.0,29913088.696791896,0.0,31292105.235277796,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,106402936.11024556,49326574.63249246,69761869.8373822 - 06/04 22:00:00,0.0,16086424.952345098,0.0,10414887.828549598,0.0,22345942.595878576,0.0,21637729.359017783,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,70484984.73579106,35233267.594637479,69761869.8373822 - 06/04 23:00:00,0.0,12823996.524074076,0.0,7469645.192304301,0.0,19722189.508086619,0.0,18423913.087566254,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,58439744.312031257,35233267.594637479,62010550.96656194 - 06/04 24:00:00,0.0,9691159.413022254,0.0,5078281.591411006,0.0,16375202.181757676,0.0,14692023.373003707,2579.207931192116,2538.8299498785397,2542.1014914019435,3060.131755939999,38592976.062285359,45836666.55919464,35233267.594637479,46507913.22492146 - 06/05 01:00:00,0.0,109623.90466660804,0.0,0.0,0.0,5139118.665773999,0.0,1538598.8088308653,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,6787341.379271472,21139960.556782485,23253956.61246073 - 06/05 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 06/05 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 06/05 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/05 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 - 06/05 06:00:00,0.0,0.0,0.0,0.0,0.0,1291607.3134644619,0.0,0.0,1292.4234856257434,1272.190354856909,1273.8297019789123,1533.4111308575248,19338676.82394872,1291607.3134644619,14093307.03785499,0.0 - 06/05 07:00:00,0.0,3076154.3505914376,0.0,12469701.264821634,0.0,20036647.055547827,0.0,14483069.178733504,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,50065571.8496944,14093307.03785499,15502637.741640486 - 06/05 08:00:00,0.0,32522212.866850869,0.0,32826167.664481455,0.0,37681721.86629585,0.0,41116358.83190785,20633.66344953693,20310.639599028316,20336.811931215547,24481.054047519992,308743808.49828287,144146461.229536,56373228.15141996,38756594.35410121 - 06/05 09:00:00,0.0,38316866.24687526,0.0,33678008.03307335,0.0,34706705.2481436,0.0,38659476.91972382,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,145361056.447816,56373228.15141996,38756594.35410121 - 06/05 10:00:00,0.0,34048816.1228721,0.0,23472628.457025507,0.0,18827510.92200611,0.0,20620982.757154269,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,96969938.25905797,28186614.07570998,0.0 - 06/05 11:00:00,0.0,39712691.53492685,0.0,25920827.737517533,0.0,16244855.413831318,0.0,18274317.592976873,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,100152692.27925256,28186614.07570998,0.0 - 06/05 12:00:00,0.0,36321227.08123521,0.0,25923470.00984811,0.0,14196379.637132619,0.0,16750299.185168816,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,93191375.91338474,28186614.07570998,0.0 - 06/05 13:00:00,0.0,35602978.53217611,0.0,27129216.504900576,0.0,15882928.606666467,0.0,19202028.669715886,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,97817152.31345904,28186614.07570998,0.0 - 06/05 14:00:00,0.0,40163819.12127853,0.0,32131663.13920423,0.0,20992770.645908137,0.0,25286344.935895895,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,118574597.84228678,28186614.07570998,0.0 - 06/05 15:00:00,0.0,47209904.09994399,0.0,39931813.73845891,0.0,30401566.789409996,0.0,35676216.659960079,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,153219501.28777299,28186614.07570998,0.0 - 06/05 16:00:00,0.0,29563946.09782779,0.0,25630275.015812626,0.0,25944920.884582379,0.0,26899173.425038067,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,108038315.42326087,28186614.07570998,0.0 - 06/05 17:00:00,0.0,8648576.213031225,0.0,4463094.117992615,0.0,11916407.365405372,0.0,9881452.651910052,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,34909530.34833926,35233267.594637479,0.0 - 06/05 18:00:00,0.0,15382095.952308134,0.0,15962278.585865524,0.0,19514651.057495625,0.0,22089639.671793686,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,72948665.26746297,14093307.03785499,0.0 - 06/05 19:00:00,0.0,25080597.003940647,0.0,30609066.79951787,0.0,31233470.018071563,0.0,36763160.095428708,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,123686293.91695877,63419881.67034747,0.0 - 06/05 20:00:00,0.0,18653362.41022644,0.0,16189408.330240455,0.0,27685474.059909423,0.0,28365566.4379493,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,90893811.23832561,63419881.67034747,69761869.8373822 - 06/05 21:00:00,0.0,5792134.415609931,0.0,1716135.831664346,0.0,16373835.609554612,0.0,13743223.129674728,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,154782937.6157136,37625328.98650361,49326574.63249246,69761869.8373822 - 06/05 22:00:00,0.0,0.0,0.0,0.0,0.0,9792629.38606187,0.0,5776605.549516283,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,15569234.935578153,35233267.594637479,69761869.8373822 - 06/05 23:00:00,0.0,0.0,0.0,0.0,0.0,5541386.660031341,0.0,727009.5360076941,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,6268396.196039035,35233267.594637479,62010550.96656194 - 06/05 24:00:00,0.0,0.0,5040114.965315771,0.0,0.0,92383.59584122584,0.0,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,43747493.963191319,92383.59584122584,35233267.594637479,46507913.22492146 - 06/06 01:00:00,12196639.83732582,0.0,17504867.86982321,0.0,0.0,0.0,3320134.7859512369,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,71726378.65734947,0.0,21139960.556782485,23253956.61246073 - 06/06 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 - 06/06 03:00:00,0.0,0.0,1022494.0776797041,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,20374862.159804305,0.0,14093307.03785499,0.0 - 06/06 04:00:00,3418526.295296894,0.0,8439074.32017309,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,31209968.697594588,0.0,14093307.03785499,0.0 - 06/06 05:00:00,1401384.491408893,0.0,1969143.6572009903,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,22723401.512797778,0.0,14093307.03785499,0.0 - 06/06 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/06 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,0.0,14093307.03785499,15502637.741640486 - 06/06 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20683.796736723423,20359.98804025155,20386.22396294219,24540.535279061547,309493958.46832337,0.0,56373228.15141996,38756594.35410121 - 06/06 09:00:00,0.0,359544.8645598861,0.0,0.0,0.0,3748999.559715119,0.0,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,4108544.4242750054,56373228.15141996,38756594.35410121 - 06/06 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,0.0,28186614.07570998,0.0 - 06/06 11:00:00,0.0,6496856.805002453,0.0,0.0,0.0,0.0,0.0,0.0,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,6496856.805002453,28186614.07570998,0.0 - 06/06 12:00:00,0.0,5515687.767010368,0.0,0.0,0.0,0.0,0.0,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,5515687.767010368,28186614.07570998,0.0 - 06/06 13:00:00,0.0,6258146.740939019,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,6258146.740939019,28186614.07570998,0.0 - 06/06 14:00:00,0.0,1642184.103116992,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,1642184.103116992,28186614.07570998,0.0 - 06/06 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,115951877.39581964,0.0,28186614.07570998,0.0 - 06/06 16:00:00,0.0,0.0,5246007.96961945,0.0,0.0,0.0,2907186.4284386218,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,201315891.79377137,0.0,28186614.07570998,0.0 - 06/06 17:00:00,1979553.0488586317,0.0,6188893.108278991,0.0,0.0,0.0,2926612.0825375488,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,204257755.63538844,0.0,35233267.594637479,0.0 - 06/06 18:00:00,6055790.144812108,0.0,8747409.390968208,0.0,206832.31448912997,0.0,5603440.364525511,0.0,18072.963962696216,17790.028340352106,17812.9526076591,21442.881854292176,291041248.56879356,0.0,14093307.03785499,0.0 - 06/06 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,0.0,63419881.67034747,0.0 - 06/06 20:00:00,0.0,0.0,0.0,0.0,0.0,12964787.988294168,0.0,6284153.581080657,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,19248941.569374827,63419881.67034747,69761869.8373822 - 06/06 21:00:00,0.0,0.0,0.0,0.0,0.0,9174963.977424344,0.0,3392502.196543975,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,12567466.17396832,49326574.63249246,69761869.8373822 - 06/06 22:00:00,0.0,0.0,73956.80023470777,0.0,0.0,5217165.974843868,0.0,0.0,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77428664.0960296,5217165.974843868,35233267.594637479,69761869.8373822 - 06/06 23:00:00,0.0,0.0,4202529.064074008,0.0,0.0,2693355.4153579499,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,81576018.68115485,2693355.4153579499,35233267.594637479,62010550.96656194 - 06/06 24:00:00,3688418.6975599129,0.0,9798159.268610623,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,52187901.759978029,0.0,35233267.594637479,46507913.22492146 - 06/07 01:00:00,13989933.215983347,0.0,18626673.402991728,0.0,0.0,0.0,5019533.876191128,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,76337464.28897369,0.0,21139960.556782485,23253956.61246073 - 06/07 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 06/07 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/07 04:00:00,0.0,0.0,3636306.5576574185,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,22986968.45456116,0.0,14093307.03785499,0.0 - 06/07 05:00:00,1419249.2290831723,0.0,4633898.925950658,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,25403810.051937574,0.0,14093307.03785499,0.0 - 06/07 06:00:00,49866.63089637878,0.0,1065644.7539796585,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,20463378.586840236,0.0,14093307.03785499,0.0 - 06/07 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,0.0,14093307.03785499,15502637.741640486 - 06/07 08:00:00,1803104.7266224402,0.0,2772052.5824703096,0.0,0.0,0.0,0.0,0.0,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,313885619.9311881,0.0,56373228.15141996,38756594.35410121 - 06/07 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18072.963962696216,17790.028340352106,17812.9526076591,21442.881854292176,270427776.35399857,0.0,56373228.15141996,38756594.35410121 - 06/07 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,0.0,28186614.07570998,0.0 - 06/07 11:00:00,0.0,13320313.914727537,0.0,0.0,0.0,0.0,0.0,0.0,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,13320313.914727537,28186614.07570998,0.0 - 06/07 12:00:00,0.0,26604429.131315225,0.0,11468259.063624599,0.0,0.0,0.0,0.0,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,38072688.19493982,28186614.07570998,0.0 - 06/07 13:00:00,0.0,34892348.69322405,0.0,19922343.248969806,0.0,7178751.896515876,0.0,7719772.3063146159,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,69713216.14502435,28186614.07570998,0.0 - 06/07 14:00:00,0.0,41474593.13748219,0.0,28557175.51375678,0.0,17749570.511490603,0.0,21385047.295489134,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,109166386.4582187,28186614.07570998,0.0 - 06/07 15:00:00,0.0,39456563.09982246,0.0,30957060.08897788,0.0,24089395.98022331,0.0,27473164.359672619,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,121976183.52869627,28186614.07570998,0.0 - 06/07 16:00:00,0.0,35373141.45443344,0.0,30818704.067987846,0.0,25660947.048944989,0.0,28640948.049893068,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,120493740.62125933,28186614.07570998,0.0 - 06/07 17:00:00,0.0,28169622.588086156,0.0,24104312.26161436,0.0,20841173.575022997,0.0,23640787.140961093,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,96755895.56568459,35233267.594637479,0.0 - 06/07 18:00:00,0.0,11545626.931862662,0.0,6610831.746277553,0.0,11007402.27882377,0.0,9694428.020629295,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,38858288.97759327,14093307.03785499,0.0 - 06/07 19:00:00,0.0,14989402.421039634,0.0,10111739.633258827,0.0,19335768.664365423,0.0,18827361.45488969,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,63264272.17355357,63419881.67034747,0.0 - 06/07 20:00:00,0.0,25053578.55443941,0.0,20405345.649151267,0.0,31145920.181276815,0.0,32756599.338093245,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,109361443.72296074,63419881.67034747,69761869.8373822 - 06/07 21:00:00,0.0,18756160.963357718,0.0,14106471.923171064,0.0,25826178.365326134,0.0,26082253.221524575,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,84771064.4733795,49326574.63249246,69761869.8373822 - 06/07 22:00:00,0.0,12507022.293992438,0.0,7166898.357745557,0.0,20159525.218326704,0.0,19159765.299289548,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,58993211.16935424,35233267.594637479,69761869.8373822 - 06/07 23:00:00,0.0,7358245.487304616,0.0,1282509.8208913664,0.0,15955463.921234165,0.0,14068176.514770007,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,38664395.744200158,35233267.594637479,62010550.96656194 - 06/07 24:00:00,0.0,629052.3750077932,0.0,0.0,0.0,10514747.47110648,0.0,7410022.72828766,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,18553822.574401935,35233267.594637479,46507913.22492146 - 06/08 01:00:00,0.0,0.0,0.0,0.0,0.0,177715.4624652391,0.0,0.0,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,177715.4624652391,21139960.556782485,23253956.61246073 - 06/08 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 06/08 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/08 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 06/08 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 06/08 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 - 06/08 07:00:00,0.0,0.0,0.0,0.0,0.0,4132041.8272043827,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,4132041.8272043827,14093307.03785499,15502637.741640486 - 06/08 08:00:00,0.0,31339896.12914163,0.0,36124523.986222,0.0,41848281.69872021,0.0,42948987.39047371,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,152261689.20455755,56373228.15141996,38756594.35410121 - 06/08 09:00:00,0.0,54106288.21016824,0.0,48330811.385429169,0.0,45926938.79854347,0.0,53409036.77326189,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,201773075.16740275,56373228.15141996,38756594.35410121 - 06/08 10:00:00,0.0,50414287.47054012,0.0,38606526.46325261,0.0,29612718.880010379,0.0,35097995.14939731,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,153731527.96320046,28186614.07570998,0.0 - 06/08 11:00:00,0.0,60363227.290781769,0.0,43505709.59098975,0.0,28600485.635730257,0.0,34853464.94703674,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,167322887.4645385,28186614.07570998,0.0 - 06/08 12:00:00,0.0,66450124.6086707,0.0,48903819.79794285,0.0,28299750.143578657,0.0,36745779.01711564,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,180399473.56730784,28186614.07570998,0.0 - 06/08 13:00:00,0.0,75195318.32949038,0.0,57087876.77021469,0.0,35104526.34536673,0.0,46769251.677604269,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,214156973.12267608,28186614.07570998,0.0 - 06/08 14:00:00,0.0,80904807.55330989,0.0,66598634.026605177,0.0,47140593.34559688,0.0,60019793.40675941,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,254663828.33227135,28186614.07570998,0.0 - 06/08 15:00:00,0.0,81159495.94338839,0.0,72451971.09892921,0.0,56643481.78811972,0.0,69388701.5395368,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,279643650.3699741,28186614.07570998,0.0 - 06/08 16:00:00,0.0,78271545.30325426,0.0,75887304.69005195,0.0,62405037.85806066,0.0,74830878.3466487,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,291394766.1980156,28186614.07570998,0.0 - 06/08 17:00:00,0.0,78351411.2237261,0.0,77780128.80556381,0.0,67249479.16203818,0.0,82813609.57556261,22774.32844750332,22417.79208711088,22446.679700351593,27020.871353400573,340774817.7181189,306194628.76689067,35233267.594637479,0.0 - 06/08 18:00:00,0.0,71092070.055892,0.0,73616450.7640596,0.0,62032098.05539992,0.0,78295418.09881693,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,285036036.9741684,14093307.03785499,0.0 - 06/08 19:00:00,0.0,72852464.88389334,0.0,80027783.68488729,0.0,66924994.48755972,0.0,83996969.63113716,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,303802212.6874775,63419881.67034747,0.0 - 06/08 20:00:00,0.0,64896925.31116503,0.0,63169825.80844342,0.0,63103035.380469959,0.0,74796735.1603319,15343.731709943939,15103.522727654441,15122.985158273543,18204.75196760147,229589969.62850423,265966521.66041029,63419881.67034747,69761869.8373822 - 06/08 21:00:00,0.0,52517072.703221399,0.0,49527567.74444343,0.0,52576555.91463986,0.0,61409083.626861888,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,216030279.98916657,49326574.63249246,69761869.8373822 - 06/08 22:00:00,0.0,44100398.77444333,0.0,41326414.500416669,0.0,45336836.19647019,0.0,52443553.7061568,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,183207203.17748697,35233267.594637479,69761869.8373822 - 06/08 23:00:00,0.0,37424146.54674511,0.0,34612002.67406247,0.0,39849094.67751515,0.0,45550117.55411179,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,157435361.45243455,35233267.594637479,62010550.96656194 - 06/08 24:00:00,0.0,29865901.880375737,0.0,26976236.34305987,0.0,33149461.178240245,0.0,37275926.312779139,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,127267525.71445498,35233267.594637479,46507913.22492146 - 06/09 01:00:00,0.0,15443519.768091653,0.0,12455832.785152108,0.0,19739882.241408655,0.0,20656219.07648609,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,68295453.8711385,21139960.556782485,23253956.61246073 - 06/09 02:00:00,0.0,2785561.473469383,0.0,598283.8000422093,0.0,7614294.260909032,0.0,5995746.284167295,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,16993885.818587919,14093307.03785499,0.0 - 06/09 03:00:00,0.0,206956.4273214699,0.0,0.0,0.0,5187144.261490386,0.0,3044431.3377600244,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,8438532.026571881,14093307.03785499,0.0 - 06/09 04:00:00,0.0,0.0,0.0,0.0,0.0,3036640.17968978,0.0,615044.8256937084,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,3651685.0053834884,14093307.03785499,0.0 - 06/09 05:00:00,0.0,4921267.086858109,0.0,11711234.139383575,0.0,13073684.989662152,0.0,11750933.688347014,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,41457119.90425085,14093307.03785499,0.0 - 06/09 06:00:00,0.0,28136618.157045757,0.0,43224967.65524317,0.0,31587726.709152704,0.0,35987527.73300285,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,138936840.25444449,14093307.03785499,0.0 - 06/09 07:00:00,0.0,29940287.595522874,0.0,32303381.592964606,0.0,29048636.16077018,0.0,33475474.918008709,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,124767780.26726637,14093307.03785499,15502637.741640486 - 06/09 08:00:00,0.0,49878094.75582323,0.0,50090468.3553336,0.0,46039718.22891401,0.0,53850715.74163866,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,199858997.0817095,56373228.15141996,38756594.35410121 - 06/09 09:00:00,0.0,73064606.38719218,0.0,69284557.25988993,0.0,59803738.04159188,0.0,71560672.00107493,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,273713573.68974897,56373228.15141996,38756594.35410121 - 06/09 10:00:00,0.0,69852314.46598745,0.0,58045280.110931787,0.0,43685081.36836895,0.0,53778698.917941439,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,225361374.86322964,28186614.07570998,0.0 - 06/09 11:00:00,0.0,79204350.9896136,0.0,62700161.82713622,0.0,42377296.371427599,0.0,53823863.83546744,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,238105673.02364487,28186614.07570998,0.0 - 06/09 12:00:00,0.0,83622511.45806028,0.0,66998730.40669672,0.0,39538520.42285398,0.0,53009680.47896683,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,243169442.76657779,28186614.07570998,0.0 - 06/09 13:00:00,0.0,90067239.86781539,0.0,73679134.32484032,0.0,44812344.46639771,0.0,61514115.06179705,5052.400097116383,4973.303831071719,4979.712440672624,5994.479853260247,75599626.39963551,270072833.72085049,28186614.07570998,0.0 - 06/09 14:00:00,0.0,95528549.33331117,0.0,82596445.36879209,0.0,57981369.39355234,0.0,76544752.33352737,7553.923122536451,7435.665046870175,7445.246660225623,8962.44143391687,113030194.54877684,312651116.42918297,28186614.07570998,0.0 - 06/09 15:00:00,0.0,92988877.1263979,0.0,86189606.62857576,0.0,69568886.13515404,0.0,84849479.99811593,10071.897496715268,9914.22006249357,9926.995546967497,11949.92191188916,150706926.06503577,333596849.8882436,28186614.07570998,0.0 - 06/09 16:00:00,0.0,84183472.62671796,0.0,84229632.8624787,0.0,69883675.92490228,0.0,84069805.94822206,12589.871870894085,12392.77507811696,12408.744433709371,14937.402389861449,188383657.58129473,322366587.36232098,28186614.07570998,0.0 - 06/09 17:00:00,0.0,82241205.10465864,0.0,83528604.6206563,0.0,71359076.86154486,0.0,88694603.06991646,15135.127553878068,14898.184308566848,14917.382139674499,17957.25109933949,226468602.36525209,325823489.65677627,35233267.594637479,0.0 - 06/09 18:00:00,0.0,74317263.31786469,0.0,78799595.93550959,0.0,65371621.96150587,0.0,83386173.01414071,17713.366570280356,17436.060512197346,17458.528655829014,21016.23327486711,265047080.44742579,301874654.22902086,14093307.03785499,0.0 - 06/09 19:00:00,0.0,76013631.29715847,0.0,86160194.93852125,0.0,69942074.16539358,0.0,88965494.69466269,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,321081395.09573599,63419881.67034747,0.0 - 06/09 20:00:00,0.0,66911043.25640802,0.0,67030095.76653084,0.0,64666200.7074227,0.0,77698766.90873456,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,276306106.63909617,63419881.67034747,69761869.8373822 - 06/09 21:00:00,0.0,56578249.17954386,0.0,55337023.69330425,0.0,55537166.719559449,0.0,66220768.1119606,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,233673207.70436818,49326574.63249246,69761869.8373822 - 06/09 22:00:00,0.0,49355364.438779909,0.0,48346521.52008194,0.0,49147490.0083783,0.0,58352756.134576108,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,205202132.10181625,35233267.594637479,69761869.8373822 - 06/09 23:00:00,0.0,41834264.00486513,0.0,40647359.04407177,0.0,42943839.2389209,0.0,50414763.73758226,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,175840226.02544008,35233267.594637479,62010550.96656194 - 06/09 24:00:00,0.0,31331107.10345904,0.0,29869802.650773724,0.0,33969182.40691678,0.0,39062625.61168753,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,134232717.77283708,35233267.594637479,46507913.22492146 - 06/10 01:00:00,0.0,15898139.328689382,0.0,14352366.812142898,0.0,19921054.542172597,0.0,21670796.699226928,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,71842357.3822318,21139960.556782485,23253956.61246073 - 06/10 02:00:00,0.0,1862867.1372709796,0.0,986681.1868949859,0.0,6581068.612297595,0.0,5288325.472503182,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,14718942.40896674,14093307.03785499,0.0 - 06/10 03:00:00,0.0,0.0,0.0,0.0,0.0,1478475.6707550134,0.0,212419.53817402398,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,1690895.2089290375,14093307.03785499,0.0 - 06/10 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 06/10 05:00:00,0.0,0.0,0.0,4248992.57338031,0.0,5209909.848115051,0.0,2354918.929200314,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,11813821.350695676,14093307.03785499,0.0 - 06/10 06:00:00,0.0,17203521.66055757,0.0,37799055.673184107,0.0,26795040.494443533,0.0,28705060.16276056,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,110502677.99094576,14093307.03785499,0.0 - 06/10 07:00:00,0.0,29403867.674020165,0.0,37241131.57656796,0.0,31500929.90134919,0.0,35658416.385660249,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,133804345.53759755,14093307.03785499,15502637.741640486 - 06/10 08:00:00,0.0,54594091.698685918,0.0,57884275.071990918,0.0,49312484.86875507,0.0,58339881.94596033,20458.30894659192,20138.03030353926,20163.98021103139,24273.002623468627,306119959.5046723,220130733.58539225,56373228.15141996,38756594.35410121 - 06/10 09:00:00,0.0,75299010.2398001,0.0,73121439.77777888,0.0,60042237.694698218,0.0,72949205.9770966,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,281411893.68937376,56373228.15141996,38756594.35410121 - 06/10 10:00:00,0.0,68373463.4344639,0.0,59036945.3787204,0.0,44259783.70692581,0.0,55898447.09098776,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,227568639.61109788,28186614.07570998,0.0 - 06/10 11:00:00,0.0,75760419.91122282,0.0,63434405.61506902,0.0,42504518.54598114,0.0,54487259.91290239,10104.800194232766,9946.607662143439,9959.424881345249,11988.959706520494,151199252.79927103,236186603.98517538,28186614.07570998,0.0 - 06/10 12:00:00,0.0,81187839.9262118,0.0,68114082.38527933,0.0,41048121.82517715,0.0,54840335.58351472,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,245190379.72018297,28186614.07570998,0.0 - 06/10 13:00:00,0.0,83700446.38554526,0.0,71661170.34081061,0.0,44790116.039134148,0.0,60296612.8145725,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,260448345.5800625,28186614.07570998,0.0 - 06/10 14:00:00,0.0,85947101.45482432,0.0,77529468.42088716,0.0,54004187.652760017,0.0,69613809.05346962,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,287094566.5819411,28186614.07570998,0.0 - 06/10 15:00:00,0.0,86620895.00207943,0.0,82520537.2157477,0.0,61736620.27989103,0.0,77279760.87344048,7527.805463472247,7409.956264630865,7419.504749596356,8931.45382840953,112639393.10199239,308157813.37115868,28186614.07570998,0.0 - 06/10 16:00:00,0.0,84668081.58898697,0.0,85747696.66254145,0.0,67237259.92433465,0.0,83073424.91867128,12500.46248103342,12304.765408933868,12320.621355084577,14831.321561758,187045814.9045155,320726463.09453436,28186614.07570998,0.0 - 06/10 17:00:00,0.0,82928356.18131553,0.0,84932975.53036449,0.0,69404242.36893834,0.0,87439750.0585426,12546.342439120412,12349.927107718111,12365.84124932726,14885.75638068255,187732321.83665399,324705324.13916096,35233267.594637479,0.0 - 06/10 18:00:00,0.0,71655451.92881128,0.0,76571549.36674436,0.0,61217868.015579137,0.0,78974427.03296042,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,288419296.34409525,14093307.03785499,0.0 - 06/10 19:00:00,0.0,80062477.61261149,0.0,90329262.17225962,0.0,71850498.59351059,0.0,91752690.57650906,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,333994928.9548907,63419881.67034747,0.0 - 06/10 20:00:00,0.0,76450499.38198245,0.0,77575902.06059924,0.0,71824116.5649606,0.0,87396900.85225067,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,313247418.85979297,63419881.67034747,69761869.8373822 - 06/10 21:00:00,0.0,63138988.38901116,0.0,62011604.81155432,0.0,60721753.827573698,0.0,72911087.63035976,10193.958236746712,10034.369918869412,10047.30022869672,12094.742320591577,152533334.53765593,258783434.65849895,49326574.63249246,69761869.8373822 - 06/10 22:00:00,0.0,54488113.25134641,0.0,53470480.39972848,0.0,53300010.70162786,0.0,63625314.37820965,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,224883918.7309124,35233267.594637479,69761869.8373822 - 06/10 23:00:00,0.0,48005274.49259736,0.0,46891875.09980713,0.0,47823095.539746347,0.0,56687213.71037762,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,199407458.84252847,35233267.594637479,62010550.96656194 - 06/10 24:00:00,0.0,39186906.85769654,0.0,37999410.67088707,0.0,40040518.6693781,0.0,46978173.932424779,2557.28861832399,2517.2537879424078,2520.497526378924,3034.1253279335785,38264994.938084039,164205010.13038648,35233267.594637479,46507913.22492146 - 06/11 01:00:00,0.0,21880981.648546477,0.0,20642608.366512829,0.0,24272046.32128172,0.0,27471614.786164158,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,94267251.12250519,21139960.556782485,23253956.61246073 - 06/11 02:00:00,0.0,8642763.6037553,0.0,7441676.686657205,0.0,11850257.676394282,0.0,12376103.015130904,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,40310800.98193769,14093307.03785499,0.0 - 06/11 03:00:00,0.0,4082877.8737286117,0.0,2722507.2887993485,0.0,8010159.218909498,0.0,7505292.532851758,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,22320836.914289219,14093307.03785499,0.0 - 06/11 04:00:00,0.0,3359796.3442328327,0.0,1902244.0062379817,0.0,7184950.038045881,0.0,6607690.351600291,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,19054680.740116989,14093307.03785499,0.0 - 06/11 05:00:00,0.0,8202497.529285749,0.0,12643101.06915435,0.0,12132134.365796926,0.0,12461703.493246574,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,45439436.457483608,14093307.03785499,0.0 - 06/11 06:00:00,0.0,24974384.757675806,0.0,37250585.69047173,0.0,26773983.5330741,0.0,30911238.341464275,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,119910192.32268593,14093307.03785499,0.0 - 06/11 07:00:00,0.0,41013429.08625499,0.0,47100959.31965766,0.0,38735623.25939554,0.0,46452986.37204762,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,173302998.0373558,14093307.03785499,15502637.741640486 - 06/11 08:00:00,0.0,65778823.82686801,0.0,69410543.44940345,0.0,58365212.67128415,0.0,70609731.24983831,20437.2595953421,20117.31048381001,20143.233691699592,24248.02837171385,305804995.71323606,264164311.19739393,56373228.15141996,38756594.35410121 - 06/11 09:00:00,0.0,71619800.46589086,0.0,71686675.13190952,0.0,55607868.885087568,0.0,68258749.79593919,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,267173094.27882717,56373228.15141996,38756594.35410121 - 06/11 10:00:00,0.0,58009927.997055489,0.0,54320960.24843052,0.0,35001603.67609562,0.0,44467521.52990052,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,191800013.45148216,28186614.07570998,0.0 - 06/11 11:00:00,0.0,50315459.083654198,0.0,45593039.0184245,0.0,30791271.916811788,0.0,37856739.31440107,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,164556509.33329157,28186614.07570998,0.0 - 06/11 12:00:00,0.0,36348291.6987038,0.0,33683299.453744437,0.0,23662683.824119957,0.0,28477149.104260595,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,122171424.08082879,28186614.07570998,0.0 - 06/11 13:00:00,0.0,44407108.1670502,0.0,39960748.54831111,0.0,24197221.83207531,0.0,30762263.826138319,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,139327342.37357495,28186614.07570998,0.0 - 06/11 14:00:00,0.0,57666603.83409378,0.0,52993139.126522619,0.0,32446671.933452026,0.0,41843491.72386394,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,184949906.61793236,28186614.07570998,0.0 - 06/11 15:00:00,0.0,70059675.9441619,0.0,66114917.07712464,0.0,47049234.96771574,0.0,59145731.81381971,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,242369559.802822,28186614.07570998,0.0 - 06/11 16:00:00,0.0,62339348.803774718,0.0,63221152.24475541,0.0,51200479.24985693,0.0,62812858.26379539,12652.404693057399,12454.32893728382,12470.37761130644,15011.595196333652,189319343.17673273,239573838.56218244,28186614.07570998,0.0 - 06/11 17:00:00,0.0,62855682.23936927,0.0,64592722.068188358,0.0,56961143.3903938,0.0,70351813.95534924,12631.000242790957,12433.259577679297,12449.281101681561,14986.199633150616,188999065.99908877,254761361.65330065,35233267.594637479,0.0 - 06/11 18:00:00,0.0,54391349.51896973,0.0,58306745.69129446,0.0,48455255.588881958,0.0,61607472.988363038,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,222760823.7875092,14093307.03785499,0.0 - 06/11 19:00:00,0.0,57145804.432744149,0.0,64100248.11595608,0.0,54113519.75695154,0.0,67723977.70216517,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,243083550.0078169,63419881.67034747,0.0 - 06/11 20:00:00,0.0,50908421.78049733,0.0,50920512.9405077,0.0,51596425.06080883,0.0,61059059.48626132,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,214484419.2680752,63419881.67034747,69761869.8373822 - 06/11 21:00:00,0.0,35776684.2410687,0.0,33752630.552078668,0.0,38313745.17300441,0.0,44119602.80546853,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,151962662.77162034,49326574.63249246,69761869.8373822 - 06/11 22:00:00,0.0,25458592.31551327,0.0,23337322.000148789,0.0,29262827.33470325,0.0,32803593.316762158,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,110862334.96712747,35233267.594637479,69761869.8373822 - 06/11 23:00:00,0.0,16876264.95462399,0.0,14378886.755676669,0.0,22224567.333738094,0.0,23676025.78290181,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,77155744.82694055,35233267.594637479,62010550.96656194 - 06/11 24:00:00,0.0,5833911.064501866,0.0,3048112.072266957,0.0,12833906.748946893,0.0,11710516.249989102,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,33426446.13570482,35233267.594637479,46507913.22492146 - 06/12 01:00:00,0.0,0.0,0.0,0.0,0.0,506284.7840025435,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,38695734.4039284,506284.7840025435,21139960.556782485,23253956.61246073 - 06/12 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/12 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 06/12 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 06/12 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609322,19353763.92936834,0.0,14093307.03785499,0.0 - 06/12 06:00:00,0.0,0.0,0.0,2357718.8772994086,0.0,1986077.7585871968,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,4343796.635886605,14093307.03785499,0.0 - 06/12 07:00:00,0.0,13002646.95715532,0.0,25841316.067671829,0.0,24780982.602010717,0.0,23427157.630627015,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,87052103.25746487,14093307.03785499,15502637.741640486 - 06/12 08:00:00,0.0,40909795.03296377,0.0,45346446.3640128,0.0,44432369.13361749,0.0,51257288.77381998,20578.15694939499,20256.00206350083,20282.103989646796,24415.197703914957,307913258.5432473,181945899.30441407,56373228.15141996,38756594.35410121 - 06/12 09:00:00,0.0,47030392.95632687,0.0,45895717.489047158,0.0,41637718.4258024,0.0,48695443.71316216,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,183259272.58433859,56373228.15141996,38756594.35410121 - 06/12 10:00:00,0.0,45751713.0317595,0.0,37960559.22452645,0.0,27423523.99327077,0.0,32752996.963336506,12813.469362730111,12612.872109506223,12629.125082588416,15202.692278683908,191729371.80063118,143888793.21289323,28186614.07570998,0.0 - 06/12 11:00:00,0.0,51154842.969813268,0.0,38583602.641935188,0.0,24462119.99699039,0.0,29773896.343377666,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,143974461.95211653,28186614.07570998,0.0 - 06/12 12:00:00,0.0,50788218.84096407,0.0,37730202.063052508,0.0,20962034.481902187,0.0,26505705.29857208,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,135986160.68449084,28186614.07570998,0.0 - 06/12 13:00:00,0.0,54476464.88531589,0.0,41093936.62591381,0.0,23782295.146166229,0.0,30879258.057747127,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,150231954.71514309,28186614.07570998,0.0 - 06/12 14:00:00,0.0,60730593.38311607,0.0,49132696.59522073,0.0,31931401.04309849,0.0,40403108.2831307,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,182197799.30456598,28186614.07570998,0.0 - 06/12 15:00:00,0.0,61679514.43811855,0.0,54087008.3193992,0.0,39468328.89643339,0.0,48033240.27670311,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,203268091.93065424,28186614.07570998,0.0 - 06/12 16:00:00,0.0,59747006.45685599,0.0,57017635.16776025,0.0,46127787.73817299,0.0,54506674.80157778,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,217399104.16436703,28186614.07570998,0.0 - 06/12 17:00:00,0.0,58465637.24164249,0.0,57090668.082854468,0.0,50153935.41082366,0.0,60725772.13459409,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,226436012.8699147,35233267.594637479,0.0 - 06/12 18:00:00,0.0,49183126.72861424,0.0,50535557.0825912,0.0,43698689.42774579,0.0,54389062.441187757,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,197806435.680139,14093307.03785499,0.0 - 06/12 19:00:00,0.0,48038695.45517247,0.0,53560618.035604167,0.0,45656907.49103379,0.0,56330053.35376316,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,203586274.3355736,63419881.67034747,0.0 - 06/12 20:00:00,0.0,38967909.52197313,0.0,37685048.94402889,0.0,40537481.288536619,0.0,46499197.13306884,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,163689636.88760747,63419881.67034747,69761869.8373822 - 06/12 21:00:00,0.0,28631897.97350223,0.0,24856974.446707138,0.0,31949986.891276264,0.0,35099207.838585648,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,120538067.1500713,49326574.63249246,69761869.8373822 - 06/12 22:00:00,0.0,21319695.869706125,0.0,17575397.48559534,0.0,25639818.10699379,0.0,27211134.697639355,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,91746046.15993461,35233267.594637479,69761869.8373822 - 06/12 23:00:00,0.0,12520227.153774688,0.0,8548785.628503802,0.0,18503685.123102335,0.0,18007739.12212407,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,57580437.02750489,35233267.594637479,62010550.96656194 - 06/12 24:00:00,0.0,2547216.087263487,0.0,289330.3469319624,0.0,9888887.05175764,0.0,7106983.725907414,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,38695734.4039284,19832417.2118605,35233267.594637479,46507913.22492146 - 06/13 01:00:00,0.0,0.0,0.0,0.0,0.0,111962.08838024462,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,38695734.4039284,111962.08838024462,21139960.556782485,23253956.61246073 - 06/13 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 06/13 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 - 06/13 04:00:00,0.0,0.0,1753691.4539005899,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,21106059.53602519,0.0,14093307.03785499,0.0 - 06/13 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 - 06/13 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609322,19353763.92936834,0.0,14093307.03785499,0.0 - 06/13 07:00:00,0.0,0.0,0.0,0.0,0.0,3998205.8655984697,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,3998205.8655984697,14093307.03785499,15502637.741640486 - 06/13 08:00:00,0.0,7223997.715901386,0.0,16671719.494007556,0.0,26532615.177886703,0.0,20865864.487598748,20683.796736723423,20359.98804025155,20386.22396294219,24540.535279061543,309493958.46832337,71294196.87539439,56373228.15141996,38756594.35410121 - 06/13 09:00:00,0.0,25500801.272468367,0.0,21454064.76196241,0.0,26245021.16918397,0.0,26768229.955289347,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,99968117.15890408,56373228.15141996,38756594.35410121 - 06/13 10:00:00,0.0,20878775.298055937,0.0,9836610.22019462,0.0,10480261.545364548,0.0,8902696.682030008,12919.708451417382,12717.448005441212,12733.835735239158,15328.740902016025,193319039.1388096,50098343.74564511,28186614.07570998,0.0 - 06/13 11:00:00,0.0,26599337.711605986,0.0,10290042.33771791,0.0,6465700.716616506,0.0,4801816.608334437,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,48156897.374274838,28186614.07570998,0.0 - 06/13 12:00:00,0.0,28441568.646137958,0.0,11143576.276361954,0.0,3631856.8206098277,0.0,2725489.857348078,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,45942491.60045782,28186614.07570998,0.0 - 06/13 13:00:00,0.0,35216353.4208654,0.0,17201749.99059996,0.0,7623279.994251582,0.0,8975247.393149479,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,69016630.79886642,28186614.07570998,0.0 - 06/13 14:00:00,0.0,38963163.48875727,0.0,23009388.43326717,0.0,15342224.8940745,0.0,17604923.669915938,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,94919700.48601486,28186614.07570998,0.0 - 06/13 15:00:00,0.0,40118159.59340048,0.0,28880975.470769034,0.0,24195019.15611828,0.0,26485132.84190887,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,119679287.06219667,28186614.07570998,0.0 - 06/13 16:00:00,0.0,40533545.20523253,0.0,35022294.22416975,0.0,32766852.23797001,0.0,35535131.52079055,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,143857823.18816284,28186614.07570998,0.0 - 06/13 17:00:00,0.0,44501578.00959808,0.0,40600328.27969325,0.0,40137084.78091949,0.0,46410846.37646648,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,171649837.44667734,35233267.594637479,0.0 - 06/13 18:00:00,0.0,37026794.79129438,0.0,36104618.01354912,0.0,35624350.77148994,0.0,42520571.190448608,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,151276334.76678206,14093307.03785499,0.0 - 06/13 19:00:00,0.0,39707697.31446399,0.0,44671020.09647023,0.0,41055136.01543368,0.0,49261010.804857607,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,174694864.2312255,63419881.67034747,0.0 - 06/13 20:00:00,0.0,30928942.03432943,0.0,28564492.158795619,0.0,35612501.20660332,0.0,38969270.48769283,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,134075205.8874212,63419881.67034747,69761869.8373822 - 06/13 21:00:00,0.0,16652816.68200314,0.0,11271804.619965148,0.0,23905072.503972457,0.0,23367412.208604877,10345.79568214947,10183.830320739144,10196.953225549367,12274.891653570337,154805295.17522998,75197106.01454562,49326574.63249246,69761869.8373822 - 06/13 22:00:00,0.0,10124727.14252131,0.0,5105876.219375141,0.0,18211054.45091924,0.0,16366600.035558399,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,49808257.84837408,35233267.594637479,69761869.8373822 - 06/13 23:00:00,0.0,4534882.788282199,0.0,801404.7331224921,0.0,13252771.410426479,0.0,10333139.07932871,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,28922198.011159876,35233267.594637479,62010550.96656194 - 06/13 24:00:00,0.0,0.0,0.0,0.0,0.0,6981481.945080228,0.0,2848463.0056892104,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,38701323.79380749,9829944.95076944,35233267.594637479,46507913.22492146 - 06/14 01:00:00,0.0,0.0,3765136.8274042776,0.0,0.0,0.0,0.0,0.0,2586.8635445208917,2546.3657131524998,2549.6469652760417,3069.214848921865,42472664.686140958,0.0,21139960.556782485,23253956.61246073 - 06/14 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 - 06/14 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,19346708.596364038,0.0,14093307.03785499,0.0 - 06/14 04:00:00,834030.0964849098,0.0,5745272.910153485,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,25922055.76815921,0.0,14093307.03785499,0.0 - 06/14 05:00:00,821912.9382034998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,20172227.5969619,0.0,14093307.03785499,0.0 - 06/14 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 06/14 07:00:00,0.0,0.0,0.0,5458156.775787524,0.0,9349743.092892915,0.0,4045519.771573508,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,18853419.640253948,14093307.03785499,15502637.741640486 - 06/14 08:00:00,0.0,22758591.362687854,0.0,29343234.180903175,0.0,33424271.477381536,0.0,35030726.42229307,20633.66344953693,20310.639599028316,20336.811931215547,24481.054047519992,308743808.49828287,120556823.44326563,56373228.15141996,38756594.35410121 - 06/14 09:00:00,0.0,37050951.4794117,0.0,35372448.668182659,0.0,35822638.54977851,0.0,40066773.516555,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,148312812.21392787,56373228.15141996,38756594.35410121 - 06/14 10:00:00,0.0,35613646.434801939,0.0,27404006.1674093,0.0,22511865.371902273,0.0,25427961.91571305,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,110957479.88982657,28186614.07570998,0.0 - 06/14 11:00:00,0.0,42848872.44145917,0.0,29644399.000249678,0.0,19588368.988572498,0.0,22874703.415031926,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,114956343.84531327,28186614.07570998,0.0 - 06/14 12:00:00,0.0,46942655.1655392,0.0,31645826.560680193,0.0,17303764.59034455,0.0,21871357.240743095,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,117763603.55730704,28186614.07570998,0.0 - 06/14 13:00:00,0.0,52338500.62354767,0.0,36676688.59970733,0.0,20437895.684985818,0.0,27265105.236845357,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,136718190.1450862,28186614.07570998,0.0 - 06/14 14:00:00,0.0,57192854.28855365,0.0,43722415.00093168,0.0,28422321.07864633,0.0,36345644.34243547,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,165683234.71056713,28186614.07570998,0.0 - 06/14 15:00:00,0.0,55716522.69104188,0.0,47683871.9239613,0.0,36063808.21183191,0.0,43521817.15638183,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,182986019.98321695,28186614.07570998,0.0 - 06/14 16:00:00,0.0,52774695.35788581,0.0,50608101.50440462,0.0,42465018.95942563,0.0,49699794.661886099,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,195547610.48360215,28186614.07570998,0.0 - 06/14 17:00:00,0.0,52723124.07198206,0.0,51951056.15511461,0.0,46888697.54153166,0.0,56741843.31540115,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,208304721.08402948,35233267.594637479,0.0 - 06/14 18:00:00,0.0,46640750.92093784,0.0,49213846.041462969,0.0,42878586.8708205,0.0,53796399.42075524,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,192529583.25397656,14093307.03785499,0.0 - 06/14 19:00:00,0.0,48579974.99102768,0.0,56979668.38675313,0.0,47313661.05132102,0.0,59378008.963256727,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,212251313.39235858,63419881.67034747,0.0 - 06/14 20:00:00,0.0,41577313.83502052,0.0,41952395.81874897,0.0,43909959.57946275,0.0,51118369.50729731,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,178558038.74052958,63419881.67034747,69761869.8373822 - 06/14 21:00:00,0.0,31095848.322139104,0.0,28372062.74402725,0.0,35595262.52103825,0.0,39728726.303306858,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,134791899.89051146,49326574.63249246,69761869.8373822 - 06/14 22:00:00,0.0,21107674.345669196,0.0,18145477.354859406,0.0,27277959.694034455,0.0,29093872.131160499,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,95624983.52572355,35233267.594637479,69761869.8373822 - 06/14 23:00:00,0.0,11644417.813148376,0.0,8325081.269464954,0.0,19601423.53319101,0.0,19130275.641575979,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,58701198.257380317,35233267.594637479,62010550.96656194 - 06/14 24:00:00,0.0,3004893.2329213966,0.0,310215.4419256055,0.0,11888507.141071149,0.0,9497093.07108195,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,24700708.887000096,35233267.594637479,46507913.22492146 - 06/15 01:00:00,0.0,0.0,0.0,0.0,0.0,1976468.8352573915,0.0,0.0,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,38663807.82776192,1976468.8352573915,21139960.556782485,23253956.61246073 - 06/15 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 - 06/15 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/15 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/15 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 - 06/15 06:00:00,0.0,0.0,0.0,6620767.526376552,0.0,5967296.33771618,0.0,1256538.0970727127,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,13844601.961165445,14093307.03785499,0.0 - 06/15 07:00:00,0.0,15499777.265085184,0.0,33339449.935200186,0.0,30959182.879534618,0.0,32678046.30288106,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,112476456.38270104,14093307.03785499,15502637.741640486 - 06/15 08:00:00,0.0,51662882.727544147,0.0,56407977.87311123,0.0,54716145.09697758,0.0,63846307.66923993,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,226633313.3668729,56373228.15141996,38756594.35410121 - 06/15 09:00:00,0.0,60422878.93772499,0.0,59466874.894384797,0.0,54822222.24380838,0.0,65029027.564380358,12813.469362730111,12612.872109506223,12629.125082588416,15202.692278683908,191729371.80063118,239741003.64029856,56373228.15141996,38756594.35410121 - 06/15 10:00:00,0.0,56989430.37227741,0.0,49016443.02346833,0.0,38877587.078812967,0.0,46889498.987368229,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,191772959.46192695,28186614.07570998,0.0 - 06/15 11:00:00,0.0,64957033.56030515,0.0,52627258.54407878,0.0,36696346.12602164,0.0,45092361.163958299,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,199372999.39436389,28186614.07570998,0.0 - 06/15 12:00:00,0.0,70443896.93232084,0.0,57918199.541868928,0.0,36868724.8105512,0.0,47131914.935047138,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,212362736.21978808,28186614.07570998,0.0 - 06/15 13:00:00,0.0,74321332.56488228,0.0,62256743.578744817,0.0,40486938.07236023,0.0,52579918.53538462,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,229644932.75137196,28186614.07570998,0.0 - 06/15 14:00:00,0.0,78771719.01106228,0.0,68056753.27883926,0.0,47498560.48264122,0.0,60292608.17846038,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,254619640.95100314,28186614.07570998,0.0 - 06/15 15:00:00,0.0,77915235.20552619,0.0,71837057.1426493,0.0,54280032.34707995,0.0,66832353.48889032,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,270864678.1841458,28186614.07570998,0.0 - 06/15 16:00:00,0.0,77173763.60797806,0.0,75903830.60038254,0.0,60474124.51194818,0.0,73518884.9470638,17657.648812857744,17381.21502666132,17403.612496286914,20950.126282562735,264213369.42612738,287070603.6673726,28186614.07570998,0.0 - 06/15 17:00:00,0.0,74386988.41242838,0.0,74249309.39089592,0.0,62028949.75005931,0.0,76703098.85343279,22805.423655572766,22448.400493897192,22477.327549194186,27057.764630797905,341240098.7860634,287368346.40681639,35233267.594637479,0.0 - 06/15 18:00:00,0.0,66989134.43076975,0.0,69621137.45357287,0.0,57139485.85191277,0.0,72224622.99202937,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,265974380.72828476,14093307.03785499,0.0 - 06/15 19:00:00,0.0,65899693.91107597,0.0,70628631.41889099,0.0,59370194.77688272,0.0,73759596.48645199,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,269658116.59330168,63419881.67034747,0.0 - 06/15 20:00:00,0.0,61646546.592134367,0.0,60620607.83579949,0.0,59744789.028509948,0.0,70761448.88054605,15361.81525250411,15121.32316898235,15140.808537286957,18226.207400557858,229860555.6935926,252773392.33698983,63419881.67034747,69761869.8373822 - 06/15 21:00:00,0.0,47855093.42566377,0.0,45169153.16063708,0.0,48453046.9390295,0.0,56134505.03940721,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,197611798.56473757,49326574.63249246,69761869.8373822 - 06/15 22:00:00,0.0,36360269.672576498,0.0,33566069.54943191,0.0,39014415.43372236,0.0,44195328.480485308,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,153136083.1362161,35233267.594637479,69761869.8373822 - 06/15 23:00:00,0.0,25637106.00787356,0.0,22204558.794525759,0.0,30663993.95082898,0.0,33275709.49210431,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,115778928.18685605,111781368.24533262,35233267.594637479,62010550.96656194 - 06/15 24:00:00,0.0,16554744.996038232,0.0,12875228.817276793,0.0,22968465.206702427,0.0,23613326.338476167,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,76011765.35849363,35233267.594637479,46507913.22492146 - 06/16 01:00:00,0.0,5303545.021477014,0.0,1999662.004735936,0.0,12105254.946234854,0.0,10408822.037279923,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,29817284.009727729,21139960.556782485,23253956.61246073 - 06/16 02:00:00,0.0,0.0,0.0,0.0,0.0,1612474.3041459425,0.0,19671.593368086695,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,1632145.8975140292,14093307.03785499,0.0 - 06/16 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 - 06/16 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 - 06/16 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 - 06/16 06:00:00,0.0,0.0,0.0,0.0,0.0,5696878.49267872,0.0,1132943.5608004619,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,6829822.053479182,14093307.03785499,0.0 - 06/16 07:00:00,0.0,29835383.789809206,0.0,38400890.72753744,0.0,35641724.60351604,0.0,39697134.869264949,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,143575133.99012763,14093307.03785499,15502637.741640486 - 06/16 08:00:00,0.0,50429521.97118428,0.0,52991998.131962399,0.0,52126325.29393086,0.0,59816548.540671888,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,215364393.93774943,56373228.15141996,38756594.35410121 - 06/16 09:00:00,0.0,56068070.657418567,0.0,52551935.87586743,0.0,48518480.950867678,0.0,57008009.27242132,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,214146496.756575,56373228.15141996,38756594.35410121 - 06/16 10:00:00,0.0,48320185.22350135,0.0,42231969.54439946,0.0,31252722.87922231,0.0,37935064.3944537,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,159739942.0415768,28186614.07570998,0.0 - 06/16 11:00:00,0.0,46763240.83849001,0.0,39958087.807066258,0.0,27943674.835557458,0.0,33771615.77258468,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,148436619.2536984,28186614.07570998,0.0 - 06/16 12:00:00,0.0,40097910.98903783,0.0,37340053.00245346,0.0,26437145.40947903,0.0,31988286.918384054,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,135863396.31935437,28186614.07570998,0.0 - 06/16 13:00:00,0.0,43143055.10017931,0.0,39472850.49378847,0.0,27586655.59059233,0.0,33867977.59804055,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,144070538.78260068,28186614.07570998,0.0 - 06/16 14:00:00,0.0,44964839.39805552,0.0,42236594.96850443,0.0,30432821.095902549,0.0,37303996.960799608,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,154938252.42326213,28186614.07570998,0.0 - 06/16 15:00:00,0.0,67774809.9140341,0.0,64677123.482116598,0.0,45064062.87359439,0.0,56063242.592484209,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,233579238.86222933,28186614.07570998,0.0 - 06/16 16:00:00,0.0,65791539.46690728,0.0,66532221.89333588,0.0,51361283.02514799,0.0,62354921.03997207,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,246039965.42536319,28186614.07570998,0.0 - 06/16 17:00:00,0.0,65723157.808127749,0.0,67453722.7738394,0.0,54155955.1702057,0.0,67223096.7854882,15269.444634142357,15030.398629882773,15049.766832638275,18116.61318787491,228478403.82433794,254555932.53766106,35233267.594637479,0.0 - 06/16 18:00:00,0.0,58854884.64590868,0.0,62991377.00550786,0.0,50655052.71538358,0.0,64207925.48533164,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,236709239.85213176,14093307.03785499,0.0 - 06/16 19:00:00,0.0,65195555.021305728,0.0,73711406.81027965,0.0,60989192.70458404,0.0,76236885.99200915,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,276133040.5281786,63419881.67034747,0.0 - 06/16 20:00:00,0.0,59461510.039166349,0.0,59206828.554918687,0.0,59443090.5652111,0.0,70049116.47616118,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,248160545.6354573,63419881.67034747,69761869.8373822 - 06/16 21:00:00,0.0,51098204.06327053,0.0,49531589.92394031,0.0,51940626.44883251,0.0,60723340.204095069,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,213293760.6401384,49326574.63249246,69761869.8373822 - 06/16 22:00:00,0.0,46291056.72556774,0.0,45132277.05059809,0.0,47506435.250652398,0.0,55510149.0907443,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,194439918.11756254,35233267.594637479,69761869.8373822 - 06/16 23:00:00,0.0,37684010.425088647,0.0,36253418.4254572,0.0,40483012.43513556,0.0,46533629.59250401,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,160954070.87818546,35233267.594637479,62010550.96656194 - 06/16 24:00:00,0.0,26050268.590631218,0.0,24150787.926295613,0.0,30620547.434857668,0.0,33981276.66673846,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,114802880.61852297,35233267.594637479,46507913.22492146 - 06/17 01:00:00,0.0,15756640.725540413,0.0,14104562.802712921,0.0,20570763.14466853,0.0,21790329.772841168,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,72222296.44576304,21139960.556782485,23253956.61246073 - 06/17 02:00:00,0.0,4315516.235840365,0.0,2951981.802839719,0.0,9100160.909413318,0.0,8057239.175267149,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,24424898.123360553,14093307.03785499,0.0 - 06/17 03:00:00,0.0,0.0,0.0,0.0,0.0,3767895.773965246,0.0,1422750.3152096754,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,5190646.089174922,14093307.03785499,0.0 - 06/17 04:00:00,0.0,0.0,0.0,0.0,0.0,602142.2910310736,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,602142.2910310736,14093307.03785499,0.0 - 06/17 05:00:00,0.0,0.0,0.0,0.0,0.0,6042434.305054085,0.0,903039.4142811335,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,6945473.719335219,14093307.03785499,0.0 - 06/17 06:00:00,0.0,7932179.256712159,0.0,14009370.433347546,0.0,13448748.9027819,0.0,13581203.881268159,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,48971502.47410976,14093307.03785499,0.0 - 06/17 07:00:00,0.0,24546776.818623086,0.0,26761240.776330957,0.0,23815743.331831494,0.0,27007065.865339947,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,102130826.79212548,14093307.03785499,15502637.741640486 - 06/17 08:00:00,0.0,51770574.97786555,0.0,51374752.059603039,0.0,47013153.9715433,0.0,56172383.532415408,20482.420336672145,20161.764225309802,20187.744716382607,24301.609867410472,306480740.9247901,206330864.5414273,56373228.15141996,38756594.35410121 - 06/17 09:00:00,0.0,75529351.36630711,0.0,73288477.3441902,0.0,61639020.91834495,0.0,74805831.92018642,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,285262681.54902866,56373228.15141996,38756594.35410121 - 06/17 10:00:00,0.0,79096205.65065456,0.0,68756800.83377609,0.0,48361293.58622493,0.0,60914798.374168518,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,257129098.4448241,28186614.07570998,0.0 - 06/17 11:00:00,0.0,82709767.54147694,0.0,70247389.12490374,0.0,46660690.77292373,0.0,60060298.80379081,10121.92375444592,9963.46314982706,9976.302089045152,12009.27615706692,151455474.5413862,259678146.24309523,28186614.07570998,0.0 - 06/17 12:00:00,0.0,84895265.54500135,0.0,73167861.19931573,0.0,45344866.108190428,0.0,59760659.49565761,5052.400097116383,4973.303831071719,4979.712440672624,5994.479853260247,75599626.39963551,263168652.3481651,28186614.07570998,0.0 - 06/17 13:00:00,0.0,86414035.0307222,0.0,75361971.27937491,0.0,47263327.502546619,0.0,62731873.834215689,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,271771207.6468594,28186614.07570998,0.0 - 06/17 14:00:00,0.0,72459213.68457395,0.0,66340557.923361089,0.0,45974158.818072188,0.0,58656682.88052049,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,243430613.3065277,28186614.07570998,0.0 - 06/17 15:00:00,0.0,46774683.25640012,0.0,43053341.77889849,0.0,34346852.69249609,0.0,41483142.221461597,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,165658019.9492563,28186614.07570998,0.0 - 06/17 16:00:00,0.0,42351105.6710235,0.0,39200038.13837771,0.0,29006954.623872125,0.0,35049268.86548479,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,145607367.29875813,28186614.07570998,0.0 - 06/17 17:00:00,0.0,42240454.967626128,0.0,40808676.45602107,0.0,31652558.60328415,0.0,38679450.74254636,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,153381140.76947773,35233267.594637479,0.0 - 06/17 18:00:00,0.0,39046343.83087096,0.0,40132450.37611067,0.0,31194649.79923364,0.0,39288028.9360989,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,149661472.94231419,14093307.03785499,0.0 - 06/17 19:00:00,0.0,53018253.870910007,0.0,58136447.813050437,0.0,49439760.46120594,0.0,61029032.65445137,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,221623494.79961775,63419881.67034747,0.0 - 06/17 20:00:00,0.0,58186928.86722676,0.0,57953737.87925606,0.0,58556611.52340125,0.0,69184895.21364887,10193.958236746712,10034.369918869412,10047.30022869672,12094.742320591577,152533334.53765593,243882173.4835329,63419881.67034747,69761869.8373822 - 06/17 21:00:00,0.0,46666282.92037052,0.0,44116698.587294388,0.0,49609429.77741737,0.0,57303319.07776174,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,197695730.36284403,49326574.63249246,69761869.8373822 - 06/17 22:00:00,0.0,38800182.799823809,0.0,35975397.44516386,0.0,42790875.11227098,0.0,48878423.35732414,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,166444878.71458278,35233267.594637479,69761869.8373822 - 06/17 23:00:00,0.0,36794547.28429301,0.0,34582730.464711029,0.0,40064103.39678416,0.0,45978672.41110363,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,157420053.55689184,35233267.594637479,62010550.96656194 - 06/17 24:00:00,0.0,28203926.135137816,0.0,25588718.09379757,0.0,32921410.42790384,0.0,36449094.19037441,2554.6574494177627,2514.6638104762516,2517.904211462449,3031.0035464642317,38225624.464154507,123163148.84721363,35233267.594637479,46507913.22492146 - 06/18 01:00:00,0.0,15153730.4103625,0.0,12638937.28630229,0.0,19689373.77980271,0.0,20812889.266300188,2557.28861832399,2517.2537879424078,2520.497526378924,3034.1253279335785,38264994.938084039,68294930.74276769,21139960.556782485,23253956.61246073 - 06/18 02:00:00,0.0,3657093.3475871386,0.0,1124425.84743236,0.0,9358485.8496214,0.0,8424761.2218404,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,22564766.266481304,14093307.03785499,0.0 - 06/18 03:00:00,0.0,826436.8553553859,0.0,0.0,0.0,7430699.349013199,0.0,5522131.9426841889,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,13779268.147052773,14093307.03785499,0.0 - 06/18 04:00:00,0.0,0.0,0.0,0.0,0.0,6350388.7085688509,0.0,4168867.96144237,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,10519256.670011219,14093307.03785499,0.0 - 06/18 05:00:00,0.0,537900.7439356917,0.0,0.0,0.0,6536205.663245622,0.0,4614585.062463631,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,11688691.469644946,14093307.03785499,0.0 - 06/18 06:00:00,0.0,6799934.812431029,0.0,3814424.309647834,0.0,9280454.254277502,0.0,8877810.008458214,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,28772623.384814577,14093307.03785499,0.0 - 06/18 07:00:00,0.0,23684719.718046626,0.0,23755144.78755631,0.0,21961086.37302789,0.0,25366024.22167051,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,94766975.10030133,14093307.03785499,15502637.741640486 - 06/18 08:00:00,0.0,54497193.00250689,0.0,53487983.376122999,0.0,46633826.83456056,0.0,56583397.31288621,20410.860095986136,20091.324273541286,20117.213995546575,24216.706373458845,305409977.0587182,211202400.52607665,56373228.15141996,38756594.35410121 - 06/18 09:00:00,0.0,59112169.31854621,0.0,58412243.00789647,0.0,46928366.21105082,0.0,58095345.526992637,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,222548124.06448613,56373228.15141996,38756594.35410121 - 06/18 10:00:00,0.0,47223616.75854279,0.0,45049099.46304213,0.0,30215591.241847114,0.0,38654452.21203603,12669.679808651535,12471.333607720662,12487.40419399677,15032.091461554393,189577832.6589241,161142759.67546807,28186614.07570998,0.0 - 06/18 11:00:00,0.0,48552164.96697266,0.0,45829055.72066413,0.0,30414857.236670786,0.0,38858776.95617442,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,163654854.880482,28186614.07570998,0.0 - 06/18 12:00:00,0.0,53999937.00330614,0.0,53166140.39954834,0.0,33514812.408956715,0.0,43443812.442385789,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,184124702.25419698,28186614.07570998,0.0 - 06/18 13:00:00,0.0,57071813.010514799,0.0,54123868.27110003,0.0,34310737.558853309,0.0,44565520.02466169,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,190071938.8651298,28186614.07570998,0.0 - 06/18 14:00:00,0.0,63028404.8504356,0.0,60519773.36308847,0.0,39567297.016471,0.0,50971227.0776391,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,214086702.30763418,28186614.07570998,0.0 - 06/18 15:00:00,0.0,71902243.94897792,0.0,70480305.74543527,0.0,47044893.38531802,0.0,59888836.88399194,7527.805463472247,7409.956264630865,7419.504749596356,8931.45382840953,112639393.10199239,249316279.96372316,28186614.07570998,0.0 - 06/18 16:00:00,0.0,70229749.54970967,0.0,71965427.31778935,0.0,51791791.28812474,0.0,65100569.4955419,12570.380444341201,12373.58879348288,12389.53342558924,14914.276556289944,188092005.19093175,259087537.65116567,28186614.07570998,0.0 - 06/18 17:00:00,0.0,62417440.39475796,0.0,64396645.635136719,0.0,49381843.25718685,0.0,62493716.26563749,12631.000242790957,12433.259577679297,12449.281101681561,14986.199633150616,188999065.99908877,238689645.552719,35233267.594637479,0.0 - 06/18 18:00:00,0.0,46573531.294035289,0.0,48542678.9892357,0.0,37271472.938163179,0.0,46834130.08770645,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,179221813.30914063,14093307.03785499,0.0 - 06/18 19:00:00,0.0,53880703.26578699,0.0,54301703.98834069,0.0,50240816.13370635,0.0,60622455.901731047,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,219045679.2895651,63419881.67034747,0.0 - 06/18 20:00:00,0.0,68242544.00430058,0.0,67998009.44085391,0.0,68317476.22046879,0.0,81955591.54366307,10135.743846921228,9977.066886176532,9989.923355197416,12025.673169243513,151662266.12713928,286513621.20928636,63419881.67034747,69761869.8373822 - 06/18 21:00:00,0.0,60086255.950486239,0.0,59309241.682889837,0.0,57370714.22781143,0.0,68778425.86979302,10167.224126917641,10008.05433651696,10020.95073603043,12063.023319783095,152133309.06929327,245544637.73098053,49326574.63249246,69761869.8373822 - 06/18 22:00:00,0.0,52188621.76198658,0.0,51327242.10740736,0.0,50484898.10530416,0.0,60240630.02081471,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,214241391.9955128,35233267.594637479,69761869.8373822 - 06/18 23:00:00,0.0,35034702.52195393,0.0,32728226.57922364,0.0,37771075.760926287,0.0,42835781.91852788,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,148369786.78063176,35233267.594637479,62010550.96656194 - 06/18 24:00:00,0.0,21009492.929319264,0.0,18139685.644985118,0.0,26683880.65422809,0.0,28704394.936258258,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,94537454.16479072,35233267.594637479,46507913.22492146 - 06/19 01:00:00,0.0,9699023.132821583,0.0,7252002.044654465,0.0,14809758.414432668,0.0,14737234.037278589,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,46498017.6291873,21139960.556782485,23253956.61246073 - 06/19 02:00:00,0.0,108101.37789856001,0.0,0.0,0.0,4909248.83037439,0.0,2509764.2845558358,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,7527114.4928287849,14093307.03785499,0.0 - 06/19 03:00:00,0.0,0.0,0.0,0.0,0.0,4771043.359762916,0.0,1961043.5840048679,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,6732086.943767783,14093307.03785499,0.0 - 06/19 04:00:00,0.0,0.0,0.0,0.0,0.0,4604825.277520282,0.0,1717205.6719584545,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,6322030.949478736,14093307.03785499,0.0 - 06/19 05:00:00,0.0,0.0,0.0,0.0,0.0,6243464.1302007,0.0,4069592.9040056767,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,10313057.034206376,14093307.03785499,0.0 - 06/19 06:00:00,0.0,6539281.247283617,0.0,8981725.840291234,0.0,11492588.300288367,0.0,11243450.256216579,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,38257045.6440798,14093307.03785499,0.0 - 06/19 07:00:00,0.0,32102799.33608074,0.0,37808989.471704367,0.0,32222253.139642005,0.0,37684360.102855268,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,139818402.05028237,14093307.03785499,15502637.741640486 - 06/19 08:00:00,0.0,43456311.72930983,0.0,41976367.118894,0.0,40522530.67559626,0.0,47904631.24708122,20501.550980368178,20180.59537520996,20206.600132141466,24324.307645894252,306766994.8810099,173859840.7708813,56373228.15141996,38756594.35410121 - 06/19 09:00:00,0.0,40060792.11388913,0.0,37950342.16245511,0.0,34570658.21309109,0.0,40566491.80400555,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,153148284.29344089,56373228.15141996,38756594.35410121 - 06/19 10:00:00,0.0,22015269.769821969,0.0,19339837.385098507,0.0,14313425.706665174,0.0,16219895.610963367,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,71888428.47254902,28186614.07570998,0.0 - 06/19 11:00:00,0.0,19865711.694339973,0.0,16398724.249191482,0.0,11552285.432057996,0.0,12745746.387451539,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,60562467.76304099,28186614.07570998,0.0 - 06/19 12:00:00,0.0,13889353.422494276,0.0,11740404.069065292,0.0,9066169.24970574,0.0,9547653.266492568,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,44243580.00775787,28186614.07570998,0.0 - 06/19 13:00:00,0.0,29617927.086836429,0.0,23488560.66311209,0.0,12803302.81718526,0.0,15849471.348747349,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,81759261.91588113,28186614.07570998,0.0 - 06/19 14:00:00,0.0,53721448.46639706,0.0,43924772.36870338,0.0,25566748.83117349,0.0,33009888.26278188,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,156222857.9290558,28186614.07570998,0.0 - 06/19 15:00:00,0.0,53700726.3434702,0.0,50702656.05252613,0.0,37620452.47465683,0.0,46023840.85790912,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,188047675.7285623,28186614.07570998,0.0 - 06/19 16:00:00,0.0,41756166.038782779,0.0,42004534.69229055,0.0,35902059.11610046,0.0,42177596.744933027,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,161840356.59210683,28186614.07570998,0.0 - 06/19 17:00:00,0.0,37736247.892239797,0.0,38323389.40859859,0.0,34662692.95412904,0.0,41822470.342085387,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,152544800.5970528,35233267.594637479,0.0 - 06/19 18:00:00,0.0,24452293.74665952,0.0,26213826.28077137,0.0,23676468.906936356,0.0,28980672.27962808,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,103323261.21399534,14093307.03785499,0.0 - 06/19 19:00:00,0.0,24106288.262866934,0.0,27179889.306129856,0.0,26793580.60947461,0.0,31613124.093204887,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,109692882.27167627,63419881.67034747,0.0 - 06/19 20:00:00,0.0,21239284.731137419,0.0,19831352.27277986,0.0,27467884.379141604,0.0,29675499.639742607,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,98214021.02280149,63419881.67034747,69761869.8373822 - 06/19 21:00:00,0.0,7802066.504149875,0.0,4525594.091779037,0.0,16381882.716461074,0.0,14942774.751661214,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,43652318.064051199,49326574.63249246,69761869.8373822 - 06/19 22:00:00,0.0,1290234.4071384699,0.0,0.0,0.0,10590742.465546193,0.0,7712067.819451834,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,19593044.692136498,35233267.594637479,69761869.8373822 - 06/19 23:00:00,0.0,0.0,0.0,0.0,0.0,7221697.406042058,0.0,3690549.1116631187,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,10912246.517705176,35233267.594637479,62010550.96656194 - 06/19 24:00:00,0.0,0.0,3944680.795912822,0.0,0.0,692127.3758290521,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,42640415.199841219,692127.3758290521,35233267.594637479,46507913.22492146 - 06/20 01:00:00,15939820.446581543,0.0,22398860.989930035,0.0,0.0,0.0,5858520.069548534,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,82898525.2998676,0.0,21139960.556782485,23253956.61246073 - 06/20 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213004,1534.5368093628636,19352873.364187898,0.0,14093307.03785499,0.0 - 06/20 03:00:00,0.0,0.0,4668018.050936963,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,24020891.41512486,0.0,14093307.03785499,0.0 - 06/20 04:00:00,7960067.548015606,0.0,12658395.126326304,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,39972152.17327969,0.0,14093307.03785499,0.0 - 06/20 05:00:00,8880363.12740551,0.0,11320168.247686534,0.0,0.0,0.0,4137726.058595496,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,43691946.932625319,0.0,14093307.03785499,0.0 - 06/20 06:00:00,5092992.118806384,0.0,5557021.072349399,0.0,0.0,0.0,1667198.419198464,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,31669579.692478844,0.0,14093307.03785499,0.0 - 06/20 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,0.0,14093307.03785499,15502637.741640486 - 06/20 08:00:00,6296451.2255827919,0.0,4692115.085734732,0.0,0.0,0.0,3806614.9190524264,0.0,20694.908356167132,20370.925705219997,20397.175722208332,24553.71879137492,324455404.10026338,0.0,56373228.15141996,38756594.35410121 - 06/20 09:00:00,379228.5546945395,0.0,2223081.84861491,0.0,0.0,0.0,0.0,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,273553963.3884383,0.0,56373228.15141996,38756594.35410121 - 06/20 10:00:00,2247714.40871141,0.0,8210527.298884859,0.0,1915984.0859722838,0.0,7179965.825675019,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,213082925.26112253,0.0,28186614.07570998,0.0 - 06/20 11:00:00,616468.6128152798,0.0,5991173.7676388849,0.0,3514663.729922392,0.0,8257881.047223019,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,173163124.77331317,0.0,28186614.07570998,0.0 - 06/20 12:00:00,0.0,0.0,2725711.792871289,0.0,2929802.0007227079,0.0,6435712.956956494,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,89464716.36763133,0.0,28186614.07570998,0.0 - 06/20 13:00:00,0.0,0.0,752271.3671480189,0.0,1299818.8361910112,0.0,4068584.017351138,0.0,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,83475381.51648507,0.0,28186614.07570998,0.0 - 06/20 14:00:00,0.0,655755.355145797,0.0,0.0,0.0,0.0,288057.8199941403,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77553136.77827944,655755.355145797,28186614.07570998,0.0 - 06/20 15:00:00,0.0,4973967.587149284,0.0,0.0,0.0,0.0,0.0,0.0,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,4973967.587149284,28186614.07570998,0.0 - 06/20 16:00:00,0.0,1595744.0820246409,0.0,0.0,0.0,0.0,0.0,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,1595744.0820246409,28186614.07570998,0.0 - 06/20 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,0.0,35233267.594637479,0.0 - 06/20 18:00:00,0.0,0.0,2003222.347076548,0.0,0.0,0.0,0.0,0.0,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,272557602.9373223,0.0,14093307.03785499,0.0 - 06/20 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,0.0,63419881.67034747,0.0 - 06/20 20:00:00,0.0,3001084.9320579248,0.0,0.0,0.0,11531183.772778999,0.0,8580831.115724437,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,23113099.82056136,63419881.67034747,69761869.8373822 - 06/20 21:00:00,0.0,0.0,0.0,0.0,0.0,8481247.495563049,0.0,5218740.684484748,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,13699988.180047796,49326574.63249246,69761869.8373822 - 06/20 22:00:00,0.0,0.0,0.0,0.0,0.0,6225802.299240571,0.0,1721727.2906816304,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,7947529.589922202,35233267.594637479,69761869.8373822 - 06/20 23:00:00,0.0,0.0,2667509.484869363,0.0,0.0,2005995.5829242639,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,80079002.94162093,2005995.5829242639,35233267.594637479,62010550.96656194 - 06/20 24:00:00,2923012.648258361,0.0,10740533.35161725,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,52369292.7282514,0.0,35233267.594637479,46507913.22492146 - 06/21 01:00:00,15112744.687458225,0.0,20404342.14256578,0.0,0.0,0.0,6836428.13399226,0.0,2586.8635445208917,2546.3657131524998,2549.6469652760417,3069.214848921865,81061042.82275294,0.0,21139960.556782485,23253956.61246073 - 06/21 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.426797998898,1273.1779601876947,1274.8185799399697,1534.6015226894857,19353689.498937776,0.0,14093307.03785499,0.0 - 06/21 03:00:00,1877844.046599843,0.0,6342319.925577393,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,27572532.054301837,0.0,14093307.03785499,0.0 - 06/21 04:00:00,9101336.285494445,0.0,13569117.281237338,0.0,0.0,0.0,2533931.6922935077,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,44554699.91778369,0.0,14093307.03785499,0.0 - 06/21 05:00:00,3333882.9072244765,0.0,1506398.2754426252,0.0,0.0,0.0,211371.92581498828,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,24404021.19060669,0.0,14093307.03785499,0.0 - 06/21 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 06/21 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,77373489.61708084,0.0,14093307.03785499,15502637.741640486 - 06/21 08:00:00,0.0,3601882.559692079,0.0,14698319.771092575,0.0,23344421.86810763,0.0,17654892.98435849,20654.815957367104,20331.460960402415,20357.660123038968,24506.150690619634,309060315.8331412,59299517.183250788,56373228.15141996,38756594.35410121 - 06/21 09:00:00,0.0,31144569.932121699,0.0,28940001.626462584,0.0,31405518.167320949,0.0,33898769.158842649,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,125388858.88474787,56373228.15141996,38756594.35410121 - 06/21 10:00:00,0.0,29050470.418105157,0.0,20122853.54157419,0.0,16321472.849386396,0.0,17385522.55314345,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,82880319.36220919,28186614.07570998,0.0 - 06/21 11:00:00,0.0,38159823.21638231,0.0,25097692.58111321,0.0,15579140.40434719,0.0,17487242.158473206,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,96323898.36031592,28186614.07570998,0.0 - 06/21 12:00:00,0.0,43418767.82043247,0.0,29257385.404427086,0.0,14796787.811993679,0.0,18254117.887079814,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,105727058.92393305,28186614.07570998,0.0 - 06/21 13:00:00,0.0,49770151.84922391,0.0,35521335.12326827,0.0,19274774.07804349,0.0,25208777.99749635,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,129775039.04803202,28186614.07570998,0.0 - 06/21 14:00:00,0.0,56243428.68987502,0.0,43804058.652498,0.0,28725785.939317265,0.0,36066916.82727051,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,164840190.10896079,28186614.07570998,0.0 - 06/21 15:00:00,0.0,52825776.37956275,0.0,45279858.48829957,0.0,34910495.06660864,0.0,41580577.51944051,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,174596707.45391149,28186614.07570998,0.0 - 06/21 16:00:00,0.0,50509934.18494087,0.0,47956303.054241139,0.0,38980831.247426729,0.0,45767019.23727619,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,183214087.7238849,28186614.07570998,0.0 - 06/21 17:00:00,0.0,49694804.829878319,0.0,48474682.98413466,0.0,42224549.66228819,0.0,50969247.14916557,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,191363284.62546674,35233267.594637479,0.0 - 06/21 18:00:00,0.0,41849806.66690354,0.0,43383168.49989754,0.0,37412615.084712598,0.0,46474340.18588169,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,169119930.43739537,14093307.03785499,0.0 - 06/21 19:00:00,0.0,44971576.676208447,0.0,50030859.066967237,0.0,43327533.64738728,0.0,53216248.94805357,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,191546218.33861653,63419881.67034747,0.0 - 06/21 20:00:00,0.0,43862654.0002127,0.0,43313100.710217598,0.0,45761299.0823151,0.0,53046403.929238017,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,185983457.7219834,63419881.67034747,69761869.8373822 - 06/21 21:00:00,0.0,32428372.26949445,0.0,29429933.71388649,0.0,36430487.45814131,0.0,40683396.72077821,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,138972190.16230048,49326574.63249246,69761869.8373822 - 06/21 22:00:00,0.0,21591074.611779594,0.0,18471507.98844551,0.0,27311494.998581426,0.0,29156389.104557545,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,96530466.70336408,35233267.594637479,69761869.8373822 - 06/21 23:00:00,0.0,16473880.410736122,0.0,13322773.83444241,0.0,22950510.852674486,0.0,23685301.443050609,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,76432466.54090363,35233267.594637479,62010550.96656194 - 06/21 24:00:00,0.0,9191506.574326188,0.0,5940440.3599052359,0.0,16609028.6279061,0.0,15632198.461484874,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,47373174.0236224,35233267.594637479,46507913.22492146 - 06/22 01:00:00,0.0,0.0,0.0,0.0,0.0,4980977.802125355,0.0,1456451.4259469808,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,6437429.228072336,21139960.556782485,23253956.61246073 - 06/22 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 06/22 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 - 06/22 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 06/22 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 06/22 06:00:00,0.0,0.0,0.0,0.0,0.0,338228.5328755761,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,338228.5328755761,14093307.03785499,0.0 - 06/22 07:00:00,0.0,5961640.787272519,0.0,13387941.09006762,0.0,17149633.40481583,0.0,11347903.079939498,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,47847118.36209547,14093307.03785499,15502637.741640486 - 06/22 08:00:00,0.0,40632576.55842015,0.0,43672648.82658449,0.0,44106537.5695321,0.0,49306689.896589789,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,177718452.85112653,56373228.15141996,38756594.35410121 - 06/22 09:00:00,0.0,49517929.886120859,0.0,46234873.14828618,0.0,41043625.30069082,0.0,48345555.56707278,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,185141983.90217067,56373228.15141996,38756594.35410121 - 06/22 10:00:00,0.0,46551759.922274868,0.0,39460457.52694369,0.0,28346155.76386044,0.0,34077014.468822438,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,148435387.68190146,28186614.07570998,0.0 - 06/22 11:00:00,0.0,57864077.97263079,0.0,46280202.09173967,0.0,30379106.42646696,0.0,37459530.089708168,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,171982916.5805456,28186614.07570998,0.0 - 06/22 12:00:00,0.0,59327045.82003885,0.0,50462244.65102216,0.0,30757324.248299049,0.0,39303372.72298375,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,179849987.44234378,28186614.07570998,0.0 - 06/22 13:00:00,0.0,60851563.453300569,0.0,50423763.798245918,0.0,31160412.665880439,0.0,40545801.86806944,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,182981541.78549639,28186614.07570998,0.0 - 06/22 14:00:00,0.0,58994667.49500999,0.0,50838557.73939052,0.0,34759556.19170338,0.0,43771971.14708095,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,188364752.57318483,28186614.07570998,0.0 - 06/22 15:00:00,0.0,55017927.40678033,0.0,51350481.715067777,0.0,37564770.30638079,0.0,46160173.619198109,7625.418095188231,7506.0407523877179,7515.713052022824,9047.267489837323,114099981.80196993,190093353.047427,28186614.07570998,0.0 - 06/22 16:00:00,0.0,48977855.47957548,0.0,48224666.03204544,0.0,38047250.540716219,0.0,45829642.10667607,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,181079414.15901319,28186614.07570998,0.0 - 06/22 17:00:00,0.0,52404386.73393032,0.0,53296820.23797222,0.0,45042331.45309158,0.0,55307138.99740215,22904.166951213538,22545.597944824163,22574.650248957412,27174.91978181236,342717605.7365069,206050677.4223963,35233267.594637479,0.0 - 06/22 18:00:00,0.0,48310288.201194349,0.0,52588669.74014951,0.0,44453249.4266522,0.0,56303648.86410396,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,201655856.2321,14093307.03785499,0.0 - 06/22 19:00:00,0.0,49660910.674063388,0.0,58587839.03545363,0.0,48555110.332485299,0.0,60921758.11813842,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,217725618.16014073,63419881.67034747,0.0 - 06/22 20:00:00,0.0,45467558.573114957,0.0,47154208.61833584,0.0,47584136.15293817,0.0,56042883.094244379,15376.163235276133,15135.446531407466,15154.9500991061,18243.230734420693,230075246.16075743,196248786.43863336,63419881.67034747,69761869.8373822 - 06/22 21:00:00,0.0,33509841.219199778,0.0,31846736.11901949,0.0,37503983.08054338,0.0,42598034.34905222,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,145458594.76781488,49326574.63249246,69761869.8373822 - 06/22 22:00:00,0.0,25872430.21755181,0.0,24203211.162761317,0.0,30852756.165645318,0.0,34230763.30441465,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,115159160.85037309,35233267.594637479,69761869.8373822 - 06/22 23:00:00,0.0,18411394.67156244,0.0,16370702.736811532,0.0,24696988.691103426,0.0,26310202.213589409,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,85789288.31306681,35233267.594637479,62010550.96656194 - 06/22 24:00:00,0.0,9530303.037616212,0.0,7195422.630474397,0.0,16837939.754515564,0.0,16381795.06451795,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,49945460.48712412,35233267.594637479,46507913.22492146 - 06/23 01:00:00,0.0,0.0,0.0,0.0,0.0,4793673.699085785,0.0,1869586.3484335126,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,6663260.047519297,21139960.556782485,23253956.61246073 - 06/23 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,0.0,14093307.03785499,0.0 - 06/23 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 06/23 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/23 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 06/23 06:00:00,0.0,0.0,0.0,1787401.850381251,0.0,2870040.2831919819,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.73957133,4657442.133573232,14093307.03785499,0.0 - 06/23 07:00:00,0.0,15942608.299184725,0.0,31967802.891030954,0.0,30457128.654538074,0.0,29361282.15951948,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,107728822.00427324,14093307.03785499,15502637.741640486 - 06/23 08:00:00,0.0,52764180.08241103,0.0,58793867.868007589,0.0,58778557.390953738,0.0,68064566.79964727,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,238401172.14101959,56373228.15141996,38756594.35410121 - 06/23 09:00:00,0.0,63352161.48457848,0.0,59700053.87845715,0.0,55118725.10056651,0.0,66031554.695868168,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,244202495.1594703,56373228.15141996,38756594.35410121 - 06/23 10:00:00,0.0,57314582.93109977,0.0,48667735.086061958,0.0,37592554.959757689,0.0,45468194.36226751,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,189043067.33918695,28186614.07570998,0.0 - 06/23 11:00:00,0.0,61025290.23775111,0.0,49441451.11815233,0.0,34288319.83884701,0.0,42007323.4572303,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,186762384.65198077,28186614.07570998,0.0 - 06/23 12:00:00,0.0,60246066.66938298,0.0,48326708.253040257,0.0,30380446.841650536,0.0,38547024.03846812,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,177500245.8025419,28186614.07570998,0.0 - 06/23 13:00:00,0.0,65214418.007771987,0.0,53519778.59802584,0.0,33524614.452190948,0.0,43781063.90459275,5075.891774653108,4996.427742014239,5002.866149134601,6022.351831925111,75951134.99181742,196039874.96258153,28186614.07570998,0.0 - 06/23 14:00:00,0.0,68088770.93916956,0.0,58255714.39365448,0.0,39114653.97120947,0.0,49965867.31019592,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,215425006.6142294,28186614.07570998,0.0 - 06/23 15:00:00,0.0,65570950.87903519,0.0,59887896.26634666,0.0,44267114.07661639,0.0,54294504.564917068,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,224020465.78691534,28186614.07570998,0.0 - 06/23 16:00:00,0.0,63291372.83881241,0.0,62754337.23525065,0.0,51274252.6235155,0.0,61322114.98368032,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,238642077.6812589,28186614.07570998,0.0 - 06/23 17:00:00,0.0,64203393.11409139,0.0,65076195.375803459,0.0,56568473.85655533,0.0,69518923.04227765,15227.675323959324,14989.283226042713,15008.598447403805,18067.055495775334,227853404.9754522,255366985.3887278,35233267.594637479,0.0 - 06/23 18:00:00,0.0,57503267.64505266,0.0,61522646.71091489,0.0,51972489.99414666,0.0,65711803.34593503,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,236710207.6960492,14093307.03785499,0.0 - 06/23 19:00:00,0.0,59182857.96978777,0.0,68004665.72827129,0.0,56167413.748051229,0.0,70559760.07112631,10193.958236746712,10034.369918869412,10047.30022869672,12094.742320591577,152533334.53765593,253914697.51723663,63419881.67034747,0.0 - 06/23 20:00:00,0.0,54135317.19307342,0.0,55812402.64558704,0.0,54576065.73282767,0.0,64902388.49420463,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,229426174.06569276,63419881.67034747,69761869.8373822 - 06/23 21:00:00,0.0,42484884.78886381,0.0,40790693.80690462,0.0,44859080.94174537,0.0,51901312.72990316,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,180035972.26741696,49326574.63249246,69761869.8373822 - 06/23 22:00:00,0.0,34292948.237370338,0.0,32611059.92505162,0.0,37833677.72103195,0.0,43126291.5352779,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,147863977.4187318,35233267.594637479,69761869.8373822 - 06/23 23:00:00,0.0,27226473.834889868,0.0,25214856.38958721,0.0,32173623.080445999,0.0,35776989.28029394,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,120391942.58521702,35233267.594637479,62010550.96656194 - 06/23 24:00:00,0.0,17690797.417212804,0.0,15442276.941642108,0.0,23944719.155678765,0.0,25393072.532071543,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,82470866.04660522,35233267.594637479,46507913.22492146 - 06/24 01:00:00,0.0,3713498.43483959,0.0,1590304.3226939212,0.0,10875034.326704137,0.0,9447249.390635612,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,25626086.47487326,21139960.556782485,23253956.61246073 - 06/24 02:00:00,0.0,0.0,0.0,0.0,0.0,1439639.5380094434,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,1439639.5380094434,14093307.03785499,0.0 - 06/24 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 06/24 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 06/24 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 06/24 06:00:00,0.0,3152667.9925029065,0.0,20673813.606099748,0.0,18256126.256530879,0.0,12792608.479899403,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,54875216.33503293,14093307.03785499,0.0 - 06/24 07:00:00,0.0,28780765.70616471,0.0,38747565.836610499,0.0,35289012.16926039,0.0,38586750.33343491,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,141404094.04547049,14093307.03785499,15502637.741640486 - 06/24 08:00:00,0.0,60400626.1913034,0.0,61957086.17358877,0.0,56726509.89350058,0.0,68108449.52317317,20437.2595953421,20117.31048381001,20143.233691699592,24248.02837171385,305804995.71323606,247192671.7815659,56373228.15141996,38756594.35410121 - 06/24 09:00:00,0.0,72538410.70546328,0.0,70522909.7596913,0.0,58191334.89735354,0.0,71360541.61850217,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,272613196.9810103,56373228.15141996,38756594.35410121 - 06/24 10:00:00,0.0,66578347.373877767,0.0,61578775.05116586,0.0,41694121.578400868,0.0,52685532.08995585,12669.679808651535,12471.333607720662,12487.40419399677,15032.091461554393,189577832.6589241,222536776.09340034,28186614.07570998,0.0 - 06/24 11:00:00,0.0,75243912.69355391,0.0,67259065.59628745,0.0,41870570.00521119,0.0,53915347.181097257,10090.085035918712,9932.1228723779,9944.921426449666,11971.500732892993,150979068.24350138,238288895.4761498,28186614.07570998,0.0 - 06/24 12:00:00,0.0,74135842.47354788,0.0,65407236.438721869,0.0,38416721.85794155,0.0,50797943.03028315,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,228757743.80049444,28186614.07570998,0.0 - 06/24 13:00:00,0.0,77587159.52803964,0.0,68226071.35581234,0.0,40748153.23394926,0.0,54776194.11486694,5028.15217773648,4949.4355173931539,4955.813370235695,5965.710622515978,75236802.0763727,241337578.23266817,28186614.07570998,0.0 - 06/24 14:00:00,0.0,83160358.0369385,0.0,76239945.92910055,0.0,49318721.80227501,0.0,64679552.875636029,5010.310464645804,4931.873119649281,4938.228341549773,5944.54211099395,74969834.53261972,273398578.6439501,28186614.07570998,0.0 - 06/24 15:00:00,0.0,79927787.80995193,0.0,77086406.76989573,0.0,54764039.67029361,0.0,69242798.6951941,7542.22826660472,7424.153276089729,7433.720055353544,8948.565933773967,112855203.11455906,281021032.9453354,28186614.07570998,0.0 - 06/24 16:00:00,0.0,75520050.4018298,0.0,77742513.6422199,0.0,59025670.67114223,0.0,73038706.56247086,12570.380444341201,12373.58879348288,12389.53342558924,14914.276556289944,188092005.19093175,285326941.27766278,28186614.07570998,0.0 - 06/24 17:00:00,0.0,68324539.16876276,0.0,71027807.65805066,0.0,56075435.975415188,0.0,70839013.62224955,12612.606294898389,12415.153590472375,12431.151783062083,14964.375916116242,188723835.30437673,266266796.4244781,35233267.594637479,0.0 - 06/24 18:00:00,0.0,61746123.732978779,0.0,67215003.30496036,0.0,52284837.340442899,0.0,67639468.95761232,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,248885433.33599437,14093307.03785499,0.0 - 06/24 19:00:00,0.0,64327302.730725187,0.0,71943354.10859092,0.0,58158290.357297729,0.0,73661331.00866819,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,268090278.205282,63419881.67034747,0.0 - 06/24 20:00:00,0.0,63391185.504696007,0.0,64766233.861069,0.0,60981382.689114559,0.0,73725365.28312162,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,262864167.3380012,63419881.67034747,69761869.8373822 - 06/24 21:00:00,0.0,53388770.49766805,0.0,53189642.498560618,0.0,52076658.54537899,0.0,62390612.762150797,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,221045684.30375845,49326574.63249246,69761869.8373822 - 06/24 22:00:00,0.0,38796615.88991371,0.0,37242004.04893589,0.0,41547972.45656089,0.0,47682392.94737542,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,165268985.3427859,35233267.594637479,69761869.8373822 - 06/24 23:00:00,0.0,26293857.14729049,0.0,23417158.352888075,0.0,32570539.685639427,0.0,35120875.29455388,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,117402430.48037188,35233267.594637479,62010550.96656194 - 06/24 24:00:00,0.0,16040546.207196495,0.0,12893668.069642615,0.0,23805704.78783312,0.0,23777946.668706836,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,76517865.73337907,35233267.594637479,46507913.22492146 - 06/25 01:00:00,0.0,5213048.264842235,0.0,1670793.0121787277,0.0,12241501.172421949,0.0,10880585.539003129,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,30005927.988446043,21139960.556782485,23253956.61246073 - 06/25 02:00:00,0.0,0.0,0.0,0.0,0.0,2115478.555281,0.0,354930.48081095158,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,2470409.036091952,14093307.03785499,0.0 - 06/25 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 06/25 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 06/25 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 06/25 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 06/25 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,0.0,14093307.03785499,15502637.741640486 - 06/25 08:00:00,0.0,0.0,0.0,0.0,0.0,4340268.184385708,0.0,0.0,20678.775770011893,20355.045677710543,20381.275231662596,24534.578093720396,309418829.1831795,4340268.184385708,56373228.15141996,38756594.35410121 - 06/25 09:00:00,0.0,5911470.3874198109,0.0,778219.3543682922,0.0,12068760.287653093,0.0,4931168.804625872,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,270870140.82749876,23689618.83406707,56373228.15141996,38756594.35410121 - 06/25 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,193386768.2394872,0.0,28186614.07570998,0.0 - 06/25 11:00:00,0.0,6517018.021967964,0.0,0.0,0.0,0.0,0.0,0.0,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,6517018.021967964,28186614.07570998,0.0 - 06/25 12:00:00,0.0,11246607.127526317,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,11246607.127526317,28186614.07570998,0.0 - 06/25 13:00:00,0.0,16681912.758530166,0.0,4291794.301780972,0.0,0.0,0.0,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,20973707.06031114,28186614.07570998,0.0 - 06/25 14:00:00,0.0,18388827.5848432,0.0,8331337.161401565,0.0,4189253.850365205,0.0,2093647.6331652543,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,33003066.229775225,28186614.07570998,0.0 - 06/25 15:00:00,0.0,19469398.447769505,0.0,11834840.666099994,0.0,9475961.774847735,0.0,8459680.88896108,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,49239881.77767831,28186614.07570998,0.0 - 06/25 16:00:00,0.0,22442787.83657424,0.0,18193566.91698104,0.0,17571273.559687795,0.0,17529204.911162728,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,75736833.22440581,28186614.07570998,0.0 - 06/25 17:00:00,0.0,23774871.52577841,0.0,21118650.918499259,0.0,23182863.658574244,0.0,25492651.485768934,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,93569037.58862086,35233267.594637479,0.0 - 06/25 18:00:00,0.0,18641621.26643257,0.0,18613292.91590895,0.0,20546978.990154886,0.0,23791471.948884217,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,81593365.12138063,14093307.03785499,0.0 - 06/25 19:00:00,0.0,23402504.039379855,0.0,28015304.88776461,0.0,27502469.89016876,0.0,32322354.35221832,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,111242633.16953154,63419881.67034747,0.0 - 06/25 20:00:00,0.0,16638992.300521482,0.0,15775451.659862146,0.0,24162254.546861546,0.0,25070755.436198005,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,81647453.94344317,63419881.67034747,69761869.8373822 - 06/25 21:00:00,0.0,4526876.689155055,0.0,889865.0043850155,0.0,14268680.259511188,0.0,11546244.387163062,10345.79568214947,10183.830320739144,10196.953225549367,12274.891653570337,154805295.17522998,31231666.34021432,49326574.63249246,69761869.8373822 - 06/25 22:00:00,0.0,26535.964386015225,0.0,0.0,0.0,9350162.458753299,0.0,5492974.602358484,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,14869673.025497795,35233267.594637479,69761869.8373822 - 06/25 23:00:00,0.0,0.0,0.0,0.0,0.0,5032347.554647252,0.0,692933.6896192087,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,5725281.244266461,35233267.594637479,62010550.96656194 - 06/25 24:00:00,0.0,0.0,2822418.752162094,0.0,0.0,1069601.3580643153,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,41523742.54596958,1069601.3580643153,35233267.594637479,46507913.22492146 - 06/26 01:00:00,7917599.542358059,0.0,13782745.875370752,0.0,0.0,0.0,147780.08218719046,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,60555504.49779156,0.0,21139960.556782485,23253956.61246073 - 06/26 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 - 06/26 03:00:00,597403.853063792,0.0,3988678.821333711,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,23928835.43591832,0.0,14093307.03785499,0.0 - 06/26 04:00:00,7116134.377632726,0.0,9857033.984439634,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,36315921.123593177,0.0,14093307.03785499,0.0 - 06/26 05:00:00,1758885.019597452,0.0,727131.4566841234,0.0,0.0,0.0,26915.718017698975,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,21859640.79066331,0.0,14093307.03785499,0.0 - 06/26 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 06/26 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,77373489.61708084,0.0,14093307.03785499,15502637.741640486 - 06/26 08:00:00,0.0,12444948.775013123,0.0,20696932.800396839,0.0,19981675.86814099,0.0,16976457.830063017,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,70100015.27361396,56373228.15141996,38756594.35410121 - 06/26 09:00:00,0.0,37724968.7282773,0.0,36200365.844791937,0.0,29967431.34547078,0.0,33742493.29837601,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,137635259.21691603,56373228.15141996,38756594.35410121 - 06/26 10:00:00,0.0,37275667.2435621,0.0,31712498.735628219,0.0,18626354.342947589,0.0,21865681.494537154,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,109480201.81667507,28186614.07570998,0.0 - 06/26 11:00:00,0.0,47973672.437791738,0.0,39021913.09262981,0.0,20925268.76524029,0.0,25502943.13081193,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,133423797.42647377,28186614.07570998,0.0 - 06/26 12:00:00,0.0,54104828.563168998,0.0,41287406.744507137,0.0,20261319.50029809,0.0,26016647.84489413,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,141670202.65286837,28186614.07570998,0.0 - 06/26 13:00:00,0.0,59716087.31417751,0.0,46267890.51684823,0.0,24010191.233520025,0.0,31662682.57840251,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,161656851.64294828,28186614.07570998,0.0 - 06/26 14:00:00,0.0,61732267.743243228,0.0,50269008.527799639,0.0,30430936.22735673,0.0,38585789.81144004,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,181018002.30983965,28186614.07570998,0.0 - 06/26 15:00:00,0.0,61521987.95830345,0.0,54352596.30739333,0.0,38149180.93496119,0.0,46267610.920251909,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,200291376.12090988,28186614.07570998,0.0 - 06/26 16:00:00,0.0,56534687.337103087,0.0,54172800.69476047,0.0,42077150.36900059,0.0,49813160.86907525,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,202597799.26993943,28186614.07570998,0.0 - 06/26 17:00:00,0.0,50225274.42140509,0.0,48680068.484360817,0.0,39817430.77087909,0.0,47962402.77594212,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,186685176.45258714,35233267.594637479,0.0 - 06/26 18:00:00,0.0,36050823.14358999,0.0,35201637.217291187,0.0,29033572.331567039,0.0,34925819.71698818,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,135211852.40943638,14093307.03785499,0.0 - 06/26 19:00:00,0.0,38605982.32250576,0.0,38635372.76882257,0.0,36538646.31260888,0.0,42809417.818456318,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,156589419.2223935,63419881.67034747,0.0 - 06/26 20:00:00,0.0,40992732.99253763,0.0,38482840.154176969,0.0,42931678.73758736,0.0,48590463.64336403,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,170997715.52766598,63419881.67034747,69761869.8373822 - 06/26 21:00:00,0.0,29268391.34561032,0.0,25321982.810078939,0.0,33349493.358554305,0.0,36133014.81346135,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,124072882.3277049,49326574.63249246,69761869.8373822 - 06/26 22:00:00,0.0,22880146.82279355,0.0,19040706.510192824,0.0,27853311.452291028,0.0,29319243.23925131,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,99093408.02452871,35233267.594637479,69761869.8373822 - 06/26 23:00:00,0.0,18873090.399452207,0.0,15121173.795745539,0.0,24393792.60138589,0.0,25040128.945808039,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,83428185.74239168,35233267.594637479,62010550.96656194 - 06/26 24:00:00,0.0,11524793.978507605,0.0,7808360.810336785,0.0,18131309.04507174,0.0,17223587.909078674,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,54688051.7429948,35233267.594637479,46507913.22492146 - 06/27 01:00:00,0.0,304575.71834252736,0.0,0.0,0.0,5174130.253137912,0.0,1260467.6543036437,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,6739173.625784081,21139960.556782485,23253956.61246073 - 06/27 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 - 06/27 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 06/27 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 06/27 05:00:00,0.0,0.0,619421.427820649,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19962793.83209086,0.0,14093307.03785499,0.0 - 06/27 06:00:00,0.0,0.0,3849240.5282599006,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,23197107.7302241,0.0,14093307.03785499,0.0 - 06/27 07:00:00,0.0,0.0,1663489.9012291218,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,79066137.4888441,0.0,14093307.03785499,15502637.741640486 - 06/27 08:00:00,11692521.130609803,0.0,13998079.28599676,0.0,0.0,0.0,7674733.605745628,0.0,20691.59136429894,20367.660641478287,20393.906451098734,24549.78330714068,342975924.37281218,0.0,56373228.15141996,38756594.35410121 - 06/27 09:00:00,20405187.343090018,0.0,26949789.078035226,0.0,8544592.239595654,0.0,18819657.616427054,0.0,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,345628492.83380028,0.0,56373228.15141996,38756594.35410121 - 06/27 10:00:00,19524997.463443106,0.0,24114962.684505445,0.0,12889423.392912174,0.0,21312063.70366258,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,271320119.2641653,0.0,28186614.07570998,0.0 - 06/27 11:00:00,18062250.845788924,0.0,22615033.091557433,0.0,12360774.733039387,0.0,20131932.508213696,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,227916970.41276113,0.0,28186614.07570998,0.0 - 06/27 12:00:00,9657283.084623684,0.0,13719700.958817676,0.0,8482379.287430736,0.0,14160094.893348223,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,123347073.87974414,0.0,28186614.07570998,0.0 - 06/27 13:00:00,6276109.469140336,0.0,10072150.641256798,0.0,6186568.713549962,0.0,10862677.72063288,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,110662585.50286529,0.0,28186614.07570998,0.0 - 06/27 14:00:00,5641915.220351381,0.0,9360415.221207872,0.0,5298393.945203305,0.0,9724237.076098588,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,107290040.42114647,0.0,28186614.07570998,0.0 - 06/27 15:00:00,2675377.6990742047,0.0,4985617.738903556,0.0,2713390.7979684018,0.0,5783371.836019042,0.0,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,131936686.25882125,0.0,28186614.07570998,0.0 - 06/27 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,0.0,28186614.07570998,0.0 - 06/27 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,0.0,35233267.594637479,0.0 - 06/27 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,0.0,14093307.03785499,0.0 - 06/27 19:00:00,0.0,8592930.029797823,0.0,8367261.950357852,0.0,13144077.00878854,0.0,11301908.53127931,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,41406177.52022353,63419881.67034747,0.0 - 06/27 20:00:00,0.0,14643588.056054946,0.0,12358840.823438302,0.0,23469184.484266513,0.0,23546820.068511525,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,74018433.43227127,63419881.67034747,69761869.8373822 - 06/27 21:00:00,0.0,6538798.207765041,0.0,1309096.1551100494,0.0,16665966.836328961,0.0,14784348.939652857,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,39298210.1388569,49326574.63249246,69761869.8373822 - 06/27 22:00:00,0.0,2077552.2718334939,0.0,0.0,0.0,13327152.776801257,0.0,10682203.709171027,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,26086908.75780578,35233267.594637479,69761869.8373822 - 06/27 23:00:00,0.0,0.0,0.0,0.0,0.0,8402871.041183247,0.0,3658523.676772602,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,12061394.71795585,35233267.594637479,62010550.96656194 - 06/27 24:00:00,0.0,0.0,2469268.5018343676,0.0,0.0,533741.1712761622,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,41170592.295641858,533741.1712761622,35233267.594637479,46507913.22492146 - 06/28 01:00:00,11546688.398719438,0.0,17742213.97523143,0.0,0.0,0.0,3413937.2913354926,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,71407575.82953556,0.0,21139960.556782485,23253956.61246073 - 06/28 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 - 06/28 03:00:00,0.0,0.0,2169773.962868366,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,21522142.044992966,0.0,14093307.03785499,0.0 - 06/28 04:00:00,5905642.344743511,0.0,10170548.666972856,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,35426505.67047477,0.0,14093307.03785499,0.0 - 06/28 05:00:00,3111860.1506844505,0.0,1066547.016234972,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,23521159.92844024,0.0,14093307.03785499,0.0 - 06/28 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 06/28 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,77373489.61708084,0.0,14093307.03785499,15502637.741640486 - 06/28 08:00:00,0.0,19285674.639447169,0.0,26881351.755995819,0.0,30442911.228188136,0.0,29237716.11547546,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,105847653.73910658,56373228.15141996,38756594.35410121 - 06/28 09:00:00,0.0,35719633.572327937,0.0,34993378.119875777,0.0,34098002.97478847,0.0,38239739.761200908,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,143050754.4281931,56373228.15141996,38756594.35410121 - 06/28 10:00:00,0.0,32313000.582220809,0.0,24223387.247807545,0.0,19528147.782281318,0.0,21569581.21203273,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,97634116.82434242,28186614.07570998,0.0 - 06/28 11:00:00,0.0,37723225.384466078,0.0,25149745.027943348,0.0,16945630.90065069,0.0,19020093.6346781,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,98838694.9477382,28186614.07570998,0.0 - 06/28 12:00:00,0.0,42737578.038547817,0.0,28526129.80309254,0.0,15705135.450937814,0.0,19128378.97793495,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,106097222.2705131,28186614.07570998,0.0 - 06/28 13:00:00,0.0,46946230.147951569,0.0,32340671.72242218,0.0,18109033.70825735,0.0,23354662.466030655,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,120750598.04466173,28186614.07570998,0.0 - 06/28 14:00:00,0.0,51497332.53701605,0.0,38967224.490382049,0.0,25786829.545092469,0.0,32023717.476844565,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,148275104.04933513,28186614.07570998,0.0 - 06/28 15:00:00,0.0,53058694.930842328,0.0,45417263.532638769,0.0,34819305.8520488,0.0,41300357.93890589,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,174595622.25443579,28186614.07570998,0.0 - 06/28 16:00:00,0.0,50971991.78820061,0.0,48813453.681655678,0.0,41267990.08253149,0.0,47722575.03063126,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,188776010.58301903,28186614.07570998,0.0 - 06/28 17:00:00,0.0,51321637.13966935,0.0,50481087.50283773,0.0,46061043.369121577,0.0,55151827.38384872,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,203015595.39547736,35233267.594637479,0.0 - 06/28 18:00:00,0.0,43894787.34023186,0.0,45837686.219995457,0.0,40897621.24170486,0.0,50648335.03174278,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,181278429.83367498,14093307.03785499,0.0 - 06/28 19:00:00,0.0,45842610.631307628,0.0,53131273.93710257,0.0,45287965.051273617,0.0,56082527.24587208,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,200344376.86555589,63419881.67034747,0.0 - 06/28 20:00:00,0.0,39446224.17763762,0.0,40140542.29449028,0.0,41967058.07904406,0.0,48651326.463270518,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,170205151.01444248,63419881.67034747,69761869.8373822 - 06/28 21:00:00,0.0,30196003.33863964,0.0,27170328.920766429,0.0,34975537.72630735,0.0,38650728.04265459,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,130992598.028368,49326574.63249246,69761869.8373822 - 06/28 22:00:00,0.0,24377168.66972044,0.0,21368112.702367695,0.0,30195354.777315108,0.0,32623868.820311674,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,108564504.9697149,35233267.594637479,69761869.8373822 - 06/28 23:00:00,0.0,18521270.490076014,0.0,15539136.33741504,0.0,24954096.63617777,0.0,26160765.156895587,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,85175268.6205644,35233267.594637479,62010550.96656194 - 06/28 24:00:00,0.0,10820376.13702185,0.0,7992471.517478695,0.0,17900942.656457087,0.0,17495080.106776529,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,54208870.41773416,35233267.594637479,46507913.22492146 - 06/29 01:00:00,0.0,123298.48664097468,0.0,0.0,0.0,5679940.0312310489,0.0,2928733.5686891397,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,8731972.086561162,21139960.556782485,23253956.61246073 - 06/29 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 06/29 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 06/29 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/29 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 06/29 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 06/29 07:00:00,0.0,601804.2495731218,0.0,7946397.5341212539,0.0,9018745.671299186,0.0,5060680.435881608,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142676,22627627.890875173,14093307.03785499,15502637.741640486 - 06/29 08:00:00,0.0,37321992.78976184,0.0,39099643.85633734,0.0,36191007.88221471,0.0,40718934.053606998,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,153331578.5819209,56373228.15141996,38756594.35410121 - 06/29 09:00:00,0.0,54040671.27536187,0.0,51669438.68424281,0.0,42148313.01362818,0.0,50215151.8172386,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,198073574.79047147,56373228.15141996,38756594.35410121 - 06/29 10:00:00,0.0,55574133.1643168,0.0,49850255.610641989,0.0,32801742.044297778,0.0,40520394.95101604,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,178746525.7702726,28186614.07570998,0.0 - 06/29 11:00:00,0.0,42812220.48393816,0.0,35184602.76038438,0.0,24315655.23723986,0.0,27997768.20067439,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,130310246.68223679,28186614.07570998,0.0 - 06/29 12:00:00,0.0,15031233.704352504,0.0,10095587.249655216,0.0,11129237.554830039,0.0,9583635.300038401,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,45839693.80887616,28186614.07570998,0.0 - 06/29 13:00:00,0.0,6726174.4792336919,0.0,1560012.4317597459,0.0,5450872.726622794,0.0,2164034.797657036,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,15901094.435273268,28186614.07570998,0.0 - 06/29 14:00:00,0.0,12921829.256002844,0.0,6988541.56871493,0.0,6357931.208569907,0.0,3795612.626568276,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,30063914.659855956,28186614.07570998,0.0 - 06/29 15:00:00,0.0,1007850.7053536949,0.0,0.0,0.0,857559.6588695855,0.0,0.0,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,1865410.3642232803,28186614.07570998,0.0 - 06/29 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,0.0,28186614.07570998,0.0 - 06/29 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23166.347220189935,22803.673732780055,22833.05859390733,27485.986662916723,346640638.3552586,0.0,35233267.594637479,0.0 - 06/29 18:00:00,0.0,0.0,4583300.148999624,0.0,0.0,0.0,0.0,0.0,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,274399444.69509008,0.0,14093307.03785499,0.0 - 06/29 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,0.0,63419881.67034747,0.0 - 06/29 20:00:00,0.0,783379.4323718004,0.0,0.0,0.0,19850587.39556528,0.0,10633771.886049819,15465.198763467964,15223.088191795892,15242.704694719334,18348.867989925246,231407494.70367036,31267738.713986897,63419881.67034747,69761869.8373822 - 06/29 21:00:00,0.0,5690041.579566231,0.0,0.0,0.0,18612483.01630374,0.0,15697783.665420106,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,40000308.26129007,49326574.63249246,69761869.8373822 - 06/29 22:00:00,0.0,1940579.9891299115,0.0,0.0,0.0,15523249.831900616,0.0,11958089.611662632,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,29421919.432693159,35233267.594637479,69761869.8373822 - 06/29 23:00:00,0.0,0.0,0.0,0.0,0.0,11410491.682453875,0.0,5999270.090646208,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,115778928.18685605,17409761.77310008,35233267.594637479,62010550.96656194 - 06/29 24:00:00,0.0,0.0,0.0,0.0,0.0,6449279.692207788,0.0,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,6449279.692207788,35233267.594637479,46507913.22492146 - 06/30 01:00:00,0.0,0.0,2389558.3212413277,0.0,0.0,0.0,0.0,0.0,2576.0125693554034,2535.6846120274747,2538.9521004620198,3056.3405810951996,40934721.82782567,0.0,21139960.556782485,23253956.61246073 - 06/30 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,0.0,14093307.03785499,0.0 - 06/30 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,0.0,14093307.03785499,0.0 - 06/30 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,0.0,14093307.03785499,0.0 - 06/30 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,0.0,14093307.03785499,0.0 - 06/30 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,0.0 - 06/30 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,15502637.741640486 - 06/30 08:00:00,0.0,19705256.762708568,0.0,16456494.695584663,0.0,20923714.12319095,0.0,21126517.583690108,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.65895295,78211983.16517428,56373228.15141996,38756594.35410121 - 06/30 09:00:00,0.0,13961496.0156077,0.0,10076965.520269229,0.0,16994941.509429568,0.0,16565845.785374405,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,57599248.83068091,56373228.15141996,38756594.35410121 - 06/30 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7716.808856023122,7596.000773812809,7605.78899611755,9155.69913896811,115467471.95371773,0.0,28186614.07570998,0.0 - 06/30 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7716.808856023122,7596.000773812809,7605.78899611755,9155.69913896811,115467471.95371773,0.0,28186614.07570998,0.0 - 06/30 12:00:00,0.0,39012.92899320833,0.0,0.0,0.0,0.0,0.0,0.0,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,39012.92899320833,28186614.07570998,0.0 - 06/30 13:00:00,0.0,7750335.327445118,0.0,1769920.2353090214,0.0,3993232.884370406,0.0,0.0,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,13513488.447124545,28186614.07570998,0.0 - 06/30 14:00:00,0.0,21098735.603530937,0.0,18605912.170199187,0.0,11291577.591048968,0.0,12865491.31687638,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,63861716.68165547,28186614.07570998,0.0 - 06/30 15:00:00,0.0,20052521.95505887,0.0,17579109.81163331,0.0,12707600.797021199,0.0,13959812.324167157,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,64299044.887880537,28186614.07570998,0.0 - 06/30 16:00:00,0.0,19080283.906603,0.0,17284215.87666569,0.0,17093387.892713164,0.0,18668354.380112336,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,72126242.05609419,28186614.07570998,0.0 - 06/30 17:00:00,0.0,43174860.39926344,0.0,44895321.40546089,0.0,40305099.06505007,0.0,48917004.20003713,15308.145071989604,15068.49320515596,15087.910496659935,18162.529780094137,229057482.79403869,177292285.06981156,35233267.594637479,0.0 - 06/30 18:00:00,0.0,34395264.83724631,0.0,37368645.2751768,0.0,33320668.259036516,0.0,41620858.96483447,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,146705437.3362941,14093307.03785499,0.0 - 06/30 19:00:00,0.0,45340858.82682565,0.0,53844252.00650172,0.0,46933107.76108719,0.0,58613359.850956808,10239.244527044078,10078.947243844024,10091.934996104475,12148.472775345426,153210958.3524168,204731578.44537137,63419881.67034747,0.0 - 06/30 20:00:00,0.0,43138964.87042187,0.0,44599217.1512273,0.0,48080217.56033665,0.0,55774388.713872309,7697.570676808126,7577.063771882303,7586.827591927196,9132.873773695965,115179608.93152893,191592788.29585812,63419881.67034747,69761869.8373822 - 06/30 21:00:00,0.0,30362000.103955375,0.0,28171152.750621894,0.0,37399578.887013617,0.0,41409839.45260304,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,137342571.19419394,49326574.63249246,69761869.8373822 - 06/30 22:00:00,0.0,21307909.825316553,0.0,18962310.504576293,0.0,29481027.955644877,0.0,31407326.885014174,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,101158575.17055188,35233267.594637479,69761869.8373822 - 06/30 23:00:00,0.0,15424152.58345616,0.0,12883448.884656767,0.0,24257341.932104544,0.0,24697234.046515749,5155.647257242486,5074.9346376453099,5081.474208913725,6116.978667563472,77144525.17691398,77262177.44673322,35233267.594637479,62010550.96656194 - 06/30 24:00:00,0.0,9717137.710055907,0.0,7267109.576570261,0.0,18403449.23743533,0.0,17633131.811895856,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,53020828.33595735,35233267.594637479,46507913.22492146 - 07/01 01:00:00,0.0,290337.74536040649,0.0,0.0,0.0,8008208.059827688,0.0,5805398.406346275,2575.6948680023635,2535.3718843483836,2538.6389698013947,3055.9636405672238,38540409.705789718,14103944.211534368,21139960.556782485,23253956.61246073 - 07/01 02:00:00,0.0,0.0,0.0,0.0,0.0,611562.1425514526,0.0,0.0,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,611562.1425514526,14093307.03785499,0.0 - 07/01 03:00:00,0.0,0.0,0.0,0.0,0.0,812095.174761248,0.0,0.0,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,812095.174761248,14093307.03785499,0.0 - 07/01 04:00:00,0.0,0.0,0.0,0.0,0.0,546262.4736269279,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,546262.4736269279,14093307.03785499,0.0 - 07/01 05:00:00,0.0,0.0,0.0,0.0,0.0,3980.9992936936826,0.0,0.0,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,3980.9992936936826,14093307.03785499,0.0 - 07/01 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 - 07/01 07:00:00,0.0,0.0,0.0,0.0,0.0,2252312.127996888,0.0,0.0,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,2252312.127996888,14093307.03785499,15502637.741640486 - 07/01 08:00:00,0.0,19960815.72405376,0.0,13362915.43450959,0.0,31697273.93737375,0.0,27651337.85922247,20428.597590636127,20108.784084403607,20134.69630515728,24237.75123377926,305675385.17031458,92672342.95515958,56373228.15141996,38756594.35410121 - 07/01 09:00:00,0.0,22772728.504208358,0.0,20320163.349276443,0.0,24896531.96534643,0.0,26689199.389515245,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,94678623.20834649,56373228.15141996,38756594.35410121 - 07/01 10:00:00,0.0,12422853.984029115,0.0,8172497.840054639,0.0,8723299.796488207,0.0,8310665.517015553,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,37629317.13758751,28186614.07570998,0.0 - 07/01 11:00:00,0.0,53434303.105010639,0.0,39802031.706539209,0.0,23487267.672427164,0.0,29654672.859406376,10169.738930740266,10010.529770616604,10023.429359979575,12066.007038522675,152170938.35949285,146378275.34338338,28186614.07570998,0.0 - 07/01 12:00:00,0.0,52403591.62761019,0.0,41147288.18071182,0.0,22834185.101874155,0.0,30320051.05388531,5073.251640952366,4993.828940099099,5000.263998397941,6019.219414069279,75911630.37666726,146705115.96408148,28186614.07570998,0.0 - 07/01 13:00:00,0.0,61547050.280323367,0.0,48470944.92645693,0.0,27748486.16457073,0.0,37787075.97117518,5070.578323020321,4991.197473457986,4997.629140843472,6016.047624389726,75871629.22216141,175553557.3425262,28186614.07570998,0.0 - 07/01 14:00:00,0.0,65476598.631964799,0.0,55046898.43489833,0.0,33699372.417284097,0.0,43877287.109026048,5063.750523638325,4984.476564549041,4990.899571357408,6007.946701056114,75769464.09816319,198100156.59317328,28186614.07570998,0.0 - 07/01 15:00:00,0.0,69195758.0962526,0.0,65983702.16051334,0.0,45954808.23610318,0.0,58032003.77286562,7593.54044432593,7474.662152096436,7484.29401720232,9009.445873933944,113622992.95521108,239166272.26573477,28186614.07570998,0.0 - 07/01 16:00:00,0.0,57138300.08574937,0.0,58795731.90774882,0.0,52532804.00347701,0.0,62598680.05722016,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,231065516.05419538,28186614.07570998,0.0 - 07/01 17:00:00,0.0,54849599.2575491,0.0,56575155.6838427,0.0,51636562.52668749,0.0,62989566.24959642,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,226050883.71767576,35233267.594637479,0.0 - 07/01 18:00:00,0.0,46976299.19604192,0.0,50877015.23140682,0.0,43820939.548695188,0.0,55439790.84465294,17822.829155621665,17543.80944034491,17566.4164294682,21146.10645393081,266684981.3257161,197114044.82079689,14093307.03785499,0.0 - 07/01 19:00:00,0.0,53907489.40739518,0.0,63179996.149328518,0.0,52515661.94412413,0.0,66620426.57192487,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,236223574.07277269,63419881.67034747,0.0 - 07/01 20:00:00,0.0,49039310.44786385,0.0,50169124.53794239,0.0,50341451.7169752,0.0,59734640.267765808,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,209284526.97054724,63419881.67034747,69761869.8373822 - 07/01 21:00:00,0.0,38953740.95722128,0.0,37656913.53181179,0.0,41551591.94703527,0.0,48276197.569327447,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,166438444.00539578,49326574.63249246,69761869.8373822 - 07/01 22:00:00,0.0,32650043.663030916,0.0,31447326.323786417,0.0,35874298.49263107,0.0,41267846.78869621,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,141239515.2681446,35233267.594637479,69761869.8373822 - 07/01 23:00:00,0.0,28237710.59166738,0.0,26933462.717518905,0.0,31945619.580317119,0.0,36331233.46716475,5124.448769282119,5044.224567834035,5050.724566042987,6079.962852517997,76677698.72043769,123448026.35666815,35233267.594637479,62010550.96656194 - 07/01 24:00:00,0.0,16373038.204402699,0.0,13919351.694270324,0.0,23203360.931663518,0.0,24025537.62407287,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,77521288.45440939,35233267.594637479,46507913.22492146 - 07/02 01:00:00,0.0,2365267.87820275,0.0,0.0,0.0,10282858.440731127,0.0,8453208.070762072,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,21101334.38969595,21139960.556782485,23253956.61246073 - 07/02 02:00:00,0.0,0.0,0.0,0.0,0.0,424586.986959546,0.0,0.0,1285.9511712338049,1265.8193657541859,1267.4505032064568,1525.7319768949192,19241830.86152172,424586.986959546,14093307.03785499,0.0 - 07/02 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,0.0,14093307.03785499,0.0 - 07/02 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 - 07/02 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,0.0,14093307.03785499,0.0 - 07/02 06:00:00,0.0,0.0,0.0,0.0,0.0,2480546.466829297,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,2480546.466829297,14093307.03785499,0.0 - 07/02 07:00:00,0.0,0.0,0.0,13226711.280227879,0.0,18423929.577569274,0.0,14202999.492172499,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692028,45853640.349969658,14093307.03785499,15502637.741640486 - 07/02 08:00:00,0.0,14720917.94882645,0.0,14368915.95814417,0.0,23443027.347150025,0.0,22844051.63498909,20622.589028969946,20299.738550581238,20325.8968356549,24467.91467025389,308578100.7076559,75376912.88910975,56373228.15141996,38756594.35410121 - 07/02 09:00:00,0.0,11150296.415593762,0.0,8547262.583436739,0.0,16477723.5237685,0.0,14972749.378348327,18059.886981053463,17777.156081296485,17800.063761383837,21427.36651475213,270232104.01854929,51148031.90114733,56373228.15141996,38756594.35410121 - 07/02 10:00:00,0.0,4885727.031636212,0.0,947784.7732505685,0.0,1097289.965100077,0.0,0.0,12899.919272181049,12697.968629497489,12714.331258131313,15305.261796251525,193022931.44182096,6930801.769986857,28186614.07570998,0.0 - 07/02 11:00:00,0.0,10377540.92018434,0.0,4919768.408312016,0.0,1883844.130930955,0.0,0.0,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,17181153.459427313,28186614.07570998,0.0 - 07/02 12:00:00,0.0,13742618.795198018,0.0,8055847.145368917,0.0,2548576.745974619,0.0,669569.6986967091,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,25016612.385238265,28186614.07570998,0.0 - 07/02 13:00:00,0.0,14997673.074807648,0.0,9233139.35161975,0.0,3388945.07108948,0.0,2395815.219108465,5154.476170632303,5073.7818846144759,5080.319970442952,6115.589218003614,77127002.07729604,30015572.716625349,28186614.07570998,0.0 - 07/02 14:00:00,0.0,11367160.74492427,0.0,6609923.823692411,0.0,3295737.5927820175,0.0,1741261.2079954404,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,23014083.369394144,28186614.07570998,0.0 - 07/02 15:00:00,0.0,8570397.322046625,0.0,5524808.520980784,0.0,2970648.922627559,0.0,1105570.6794329365,7736.003585349864,7614.895006071167,7624.707575522667,9178.472952606426,115754684.83038046,18171425.445087904,28186614.07570998,0.0 - 07/02 16:00:00,0.0,7723473.548444186,0.0,5286174.508251609,0.0,4721866.581112168,0.0,2854562.322910514,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,20586076.960718477,28186614.07570998,0.0 - 07/02 17:00:00,0.0,8245198.410681291,0.0,6608544.991906593,0.0,9989023.325953907,0.0,8877288.825302033,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,33720055.55384382,35233267.594637479,0.0 - 07/02 18:00:00,0.0,0.0,0.0,0.0,0.0,2011753.5002921164,0.0,0.0,18052.581214598682,17769.96468797844,17792.863101221497,21418.698501731786,270122787.0199095,2011753.5002921164,14093307.03785499,0.0 - 07/02 19:00:00,0.0,19064752.8455943,0.0,23389622.75636727,0.0,25591934.37672196,0.0,29533262.63243014,18050.675032483014,17768.08834749939,17790.984342886222,21416.43688941499,270094264.604221,97579572.61111367,63419881.67034747,0.0 - 07/02 20:00:00,0.0,21186598.69990316,0.0,20437571.700900586,0.0,30286690.708843069,0.0,32147335.19793398,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,104058196.3075808,63419881.67034747,69761869.8373822 - 07/02 21:00:00,0.0,10782531.09994153,0.0,6922050.090146929,0.0,20897683.37965756,0.0,19643845.50566629,10329.908016296402,10168.191379258846,10181.294131696737,12256.04154450516,154567566.25832574,58246110.0754123,49326574.63249246,69761869.8373822 - 07/02 22:00:00,0.0,3721095.3834418707,0.0,229361.56786871804,0.0,15043523.527078938,0.0,12371672.335867435,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,77306799.55546183,31365652.81425696,35233267.594637479,69761869.8373822 - 07/02 23:00:00,0.0,0.0,0.0,0.0,0.0,10331620.026585307,0.0,6348434.9890786739,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,77350536.73556961,16680055.015663978,35233267.594637479,62010550.96656194 - 07/02 24:00:00,0.0,0.0,0.0,0.0,0.0,3311767.1420655145,0.0,0.0,2585.6933312850158,2545.2138198231348,2548.4935876145507,3067.8264355872836,38690017.827515948,3311767.1420655145,35233267.594637479,46507913.22492146 - 07/03 01:00:00,4971936.810526663,0.0,10086480.255929234,0.0,0.0,0.0,0.0,0.0,2586.5659603899105,2546.0727877566034,2549.3536624158748,3068.8617767099406,53761492.14063628,0.0,21139960.556782485,23253956.61246073 - 07/03 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4030062155767,1273.1545408691798,1274.795130443272,1534.5732946467629,19353333.499829249,0.0,14093307.03785499,0.0 - 07/03 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 07/03 04:00:00,0.0,0.0,1010902.2152675144,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,20363775.579455407,0.0,14093307.03785499,0.0 - 07/03 05:00:00,0.0,0.0,977027.5689416943,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,20324894.770905895,0.0,14093307.03785499,0.0 - 07/03 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 - 07/03 07:00:00,0.0,0.0,0.0,7652779.099550198,0.0,11911772.86329656,0.0,6123316.274302518,5161.909022321121,5081.0983736235079,5087.64588749485,6124.408012803004,77238220.66647294,25687868.237149277,14093307.03785499,15502637.741640486 - 07/03 08:00:00,0.0,32093876.403220804,0.0,38691248.790345769,0.0,44364478.25546685,0.0,47864916.35146388,20615.50804533357,20292.768421064648,20318.917724415,24459.513353467093,308472147.1594091,163014519.8004973,56373228.15141996,38756594.35410121 - 07/03 09:00:00,0.0,48855681.862350407,0.0,46121046.931863088,0.0,46548864.984808567,0.0,53699031.104135718,18000.714058161273,17718.909521550864,17741.74214500088,21357.160100509875,269346692.9708024,195224624.88315777,56373228.15141996,38756594.35410121 - 07/03 10:00:00,0.0,44098582.986695777,0.0,33149155.981957009,0.0,27565974.96866651,0.0,32012135.17559318,12811.121923205299,12610.561419585085,12626.811415107468,15199.907131294993,191694246.80109424,136825849.11291249,28186614.07570998,0.0 - 07/03 11:00:00,0.0,54741713.54104906,0.0,39118305.203575249,0.0,26511685.623462518,0.0,31942506.54969074,10207.673024775419,10047.86999933304,10060.81770539195,12111.014393061994,152738550.44122467,152314210.91777758,28186614.07570998,0.0 - 07/03 12:00:00,0.0,57710483.989475447,0.0,41402603.28231677,0.0,23232366.916903426,0.0,29843068.96821265,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,152188523.1569083,28186614.07570998,0.0 - 07/03 13:00:00,0.0,60483395.20196163,0.0,44387381.16509515,0.0,25502375.28656229,0.0,34324127.522187579,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,164697279.17580665,28186614.07570998,0.0 - 07/03 14:00:00,0.0,64829549.23669876,0.0,51648232.78904756,0.0,34757110.999649848,0.0,44495330.40914798,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,195730223.43454416,28186614.07570998,0.0 - 07/03 15:00:00,0.0,67337112.66939543,0.0,59102198.55862243,0.0,44319219.666438829,0.0,54232649.543463218,7625.418095188231,7506.0407523877179,7515.713052022824,9047.267489837323,114099981.80196993,224991180.4379199,28186614.07570998,0.0 - 07/03 16:00:00,0.0,60938920.34983863,0.0,58416396.45288901,0.0,46392684.50706752,0.0,55231161.995651189,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,220979163.30544634,28186614.07570998,0.0 - 07/03 17:00:00,0.0,50069480.97454344,0.0,48360465.06952392,0.0,40515518.70262813,0.0,49023607.18108486,12765.134274640412,12565.29371623747,12581.485379703709,15145.34454172922,191006128.4843189,187969071.9277804,35233267.594637479,0.0 - 07/03 18:00:00,0.0,34664875.28421662,0.0,33195767.85679186,0.0,27346792.557205634,0.0,33087711.81809639,17886.3464200077,17606.332330107853,17629.019886356178,21221.4672635218,267635397.2399767,128295147.51631052,14093307.03785499,0.0 - 07/03 19:00:00,0.0,38963253.81913203,0.0,36433142.413065139,0.0,35891506.42644876,0.0,41930135.125374358,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,153218037.78402028,63419881.67034747,0.0 - 07/03 20:00:00,0.0,47388953.30972079,0.0,43850038.3211917,0.0,47979413.48459137,0.0,55297379.76482659,10250.775490184089,10090.29768760498,10103.300066070733,12162.153822947126,153383497.44050495,194515784.88033045,63419881.67034747,69761869.8373822 - 07/03 21:00:00,0.0,40509265.52752376,0.0,37142723.51095803,0.0,42036205.7738196,0.0,48000858.36149061,10248.897538564239,10088.44913566807,10101.449132085974,12159.925705035994,153355397.44087539,167689053.173792,49326574.63249246,69761869.8373822 - 07/03 22:00:00,0.0,33251668.5430087,0.0,30007605.247213909,0.0,35815823.36624735,0.0,40267161.69557183,5133.441639124436,5053.076652621352,5059.588057645065,6090.63254930696,76812260.03531212,139342258.85204179,35233267.594637479,69761869.8373822 - 07/03 23:00:00,0.0,27058131.931379714,0.0,23665210.275427145,0.0,30852197.358259549,0.0,33852402.213336538,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,115427941.77840294,35233267.594637479,62010550.96656194 - 07/03 24:00:00,0.0,20705024.112939024,0.0,17104637.027167486,0.0,25391921.343868276,0.0,26892603.88788795,2572.2696186743739,2532.0002579376039,2535.2629987058496,3051.8997129893698,38489157.31790591,90094186.37186273,35233267.594637479,46507913.22492146 - 07/04 01:00:00,0.0,8508793.174829837,0.0,5613708.427039669,0.0,13414872.06824166,0.0,12578674.841228318,2573.6937884310216,2533.402132051032,2536.6666792771595,3053.5894360417298,38510467.328883398,40116048.511339489,21139960.556782485,23253956.61246073 - 07/04 02:00:00,0.0,0.0,0.0,0.0,0.0,3635453.385525046,0.0,1289791.5078956036,1286.8468942155108,1266.701066025516,1268.3333396385797,1526.7947180208649,19255233.664441699,4925244.89342065,14093307.03785499,0.0 - 07/04 03:00:00,0.0,0.0,0.0,0.0,0.0,2726469.530142839,0.0,373985.0749455093,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,3100454.605088348,14093307.03785499,0.0 - 07/04 04:00:00,0.0,0.0,0.0,0.0,0.0,1676558.5906979934,0.0,0.0,1286.8468942155108,1266.701066025516,1268.3333396385797,1526.7947180208649,19255233.664441699,1676558.5906979934,14093307.03785499,0.0 - 07/04 05:00:00,0.0,0.0,0.0,0.0,0.0,173873.53901376128,0.0,0.0,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,173873.53901376128,14093307.03785499,0.0 - 07/04 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,0.0,14093307.03785499,0.0 - 07/04 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,0.0,14093307.03785499,15502637.741640486 - 07/04 08:00:00,0.0,9163442.74521758,0.0,5163797.768418111,0.0,17241293.915464935,0.0,11649691.843486052,20615.50804533357,20292.768421064648,20318.917724415,24459.513353467093,308472147.1594091,43218226.27258667,56373228.15141996,38756594.35410121 - 07/04 09:00:00,0.0,21973038.193139718,0.0,18090335.517543809,0.0,19764527.366718513,0.0,20978537.82351431,17998.080338354543,17716.31703311903,17739.146315883096,21354.035292494456,269307284.32746407,80806438.90091636,56373228.15141996,38756594.35410121 - 07/04 10:00:00,0.0,4704544.8093941309,0.0,2271260.228452921,0.0,2826790.068145133,0.0,1224777.7094149283,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,11027372.815407113,28186614.07570998,0.0 - 07/04 11:00:00,0.0,6787402.112200016,0.0,4441454.155655449,0.0,4710034.769009344,0.0,3640141.9771447626,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,19579033.014009578,28186614.07570998,0.0 - 07/04 12:00:00,0.0,14049695.714905847,0.0,11631646.989066743,0.0,8095703.792194216,0.0,8334054.797299381,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,42111101.29346619,28186614.07570998,0.0 - 07/04 13:00:00,0.0,26399357.56790805,0.0,24289746.303331075,0.0,13988490.409634825,0.0,16973006.388654598,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,81650600.66952855,28186614.07570998,0.0 - 07/04 14:00:00,0.0,18902336.799401769,0.0,16533475.013443158,0.0,12569201.222999705,0.0,14325726.318611635,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,62330739.35445627,28186614.07570998,0.0 - 07/04 15:00:00,0.0,26784438.47781711,0.0,23878304.77333477,0.0,17340650.137680528,0.0,20550577.20910458,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,88553970.59793699,28186614.07570998,0.0 - 07/04 16:00:00,0.0,26624942.27369131,0.0,24780761.65093367,0.0,17463768.18594673,0.0,20960124.961174124,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,89829597.07174583,28186614.07570998,0.0 - 07/04 17:00:00,0.0,25983995.556913586,0.0,24400677.61166093,0.0,19657319.723499814,0.0,23360424.322812439,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,93402417.21488677,35233267.594637479,0.0 - 07/04 18:00:00,0.0,25924438.063344998,0.0,26679309.753339974,0.0,23056634.888062359,0.0,28388498.193735545,17867.322939318095,17587.60666555727,17610.270091875533,21198.896629854487,267350746.77577938,104048880.89848288,14093307.03785499,0.0 - 07/04 19:00:00,0.0,47765289.805665228,0.0,56312734.93051256,0.0,48392876.094550538,0.0,60783976.2142746,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,213254877.04500295,63419881.67034747,0.0 - 07/04 20:00:00,0.0,43609181.58777848,0.0,44144094.756433967,0.0,46970798.61803893,0.0,54648499.61157211,10263.427569077501,10102.751695843073,10115.770122569595,12177.165031594619,153572811.90870524,189372574.57382349,63419881.67034747,69761869.8373822 - 07/04 21:00:00,0.0,31054542.004378454,0.0,28344664.962665127,0.0,36743256.92658372,0.0,40859147.26475569,10278.418378349845,10117.507821199726,10130.545262699896,12194.951054561885,153797121.06052087,137001611.15838299,49326574.63249246,69761869.8373822 - 07/04 22:00:00,0.0,23138271.834361085,0.0,20413414.839571485,0.0,29869039.92455867,0.0,32215978.37569473,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,105636704.97418596,35233267.594637479,69761869.8373822 - 07/04 23:00:00,0.0,19561817.63644858,0.0,16858224.699982659,0.0,26105402.765020078,0.0,27801759.04980764,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,90327204.15125896,35233267.594637479,62010550.96656194 - 07/04 24:00:00,0.0,13555912.589118744,0.0,10950349.524632736,0.0,20330659.39296346,0.0,20895235.73365055,2574.7146388728476,2534.407000888752,2537.6728429909419,3054.8006361226996,38525742.427950877,65732157.24036549,35233267.594637479,46507913.22492146 - 07/05 01:00:00,0.0,3076820.13002971,0.0,78386.92385204302,0.0,9866563.542556629,0.0,8536541.035508234,2572.632404833535,2532.3573646117658,2535.6205655484106,3052.330144918815,38494585.727685097,21558311.631946617,21139960.556782485,23253956.61246073 - 07/05 02:00:00,0.0,0.0,0.0,0.0,0.0,3384677.6990676547,0.0,463025.1906150564,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,3847702.889682711,14093307.03785499,0.0 - 07/05 03:00:00,0.0,0.0,0.0,0.0,0.0,1752376.9327467075,0.0,191414.0190018166,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,1943790.951748524,14093307.03785499,0.0 - 07/05 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,0.0,14093307.03785499,0.0 - 07/05 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,0.0,14093307.03785499,0.0 - 07/05 06:00:00,0.0,0.0,0.0,0.0,0.0,6278313.753301026,0.0,678732.6787304507,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,6957046.432031477,14093307.03785499,0.0 - 07/05 07:00:00,0.0,10530909.429073289,0.0,13297292.424561136,0.0,18051688.481374895,0.0,18123213.144206358,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,60003103.479215677,14093307.03785499,15502637.741640486 - 07/05 08:00:00,0.0,47621048.31288608,0.0,46671565.47937687,0.0,44132646.57928221,0.0,51955903.55824115,20486.31661748556,20165.599509120235,20191.584942347687,24306.23265586541,306539041.409348,190381163.9297863,56373228.15141996,38756594.35410121 - 07/05 09:00:00,0.0,47463712.28962128,0.0,45264996.161318618,0.0,38533092.05241985,0.0,46174806.59512694,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,177436607.0984867,56373228.15141996,38756594.35410121 - 07/05 10:00:00,0.0,40081716.79231086,0.0,36022370.949183549,0.0,23094487.844284897,0.0,28252442.025004563,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,127451017.61078385,28186614.07570998,0.0 - 07/05 11:00:00,0.0,58725982.439916949,0.0,50556424.03030494,0.0,30313244.674608776,0.0,38937310.36581376,10174.718069099641,10015.430959636107,10028.336864681381,12071.914596120678,152245441.7623361,178532961.5106444,28186614.07570998,0.0 - 07/05 12:00:00,0.0,63204070.318323168,0.0,49550837.37790495,0.0,27010481.777431005,0.0,36359038.10208037,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,176124427.5757395,28186614.07570998,0.0 - 07/05 13:00:00,0.0,68030912.10076042,0.0,54089497.51272213,0.0,30458942.24931544,0.0,41916174.876775089,5056.717605373321,4977.553747931464,4983.967833984023,5999.602411997681,75664229.75743138,194495526.7395731,28186614.07570998,0.0 - 07/05 14:00:00,0.0,71989979.45124358,0.0,60338572.69370024,0.0,38250150.51983586,0.0,50389018.42760786,5049.481255246245,4970.430684215568,4976.835591473493,5991.016758800372,75555951.44304845,220967721.09238754,28186614.07570998,0.0 - 07/05 15:00:00,0.0,66727817.92087723,0.0,59531757.02615475,0.0,43165562.393769938,0.0,54115389.8262529,7585.076408059981,7466.330621897195,7475.951750976034,8999.403617996522,113496344.63614704,223540527.1670548,28186614.07570998,0.0 - 07/05 16:00:00,0.0,61061867.53002259,0.0,59459017.49054214,0.0,46264185.27972307,0.0,56124299.7876888,12659.376309095811,12461.191411372598,12477.24892839352,15019.866752640284,189423660.24540798,222909370.0879766,28186614.07570998,0.0 - 07/05 17:00:00,0.0,54595671.9878372,0.0,54217851.66248263,0.0,45383694.802096899,0.0,56134083.93707817,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,210331302.3894949,35233267.594637479,0.0 - 07/05 18:00:00,0.0,41990281.616521108,0.0,42526406.71980951,0.0,36073031.19092804,0.0,45322730.13320335,17797.043128795463,17518.427098579054,17541.001379964255,21115.51231741468,266299142.12911243,165912449.66046203,14093307.03785499,0.0 - 07/05 19:00:00,0.0,44552825.26822989,0.0,47297145.63472454,0.0,41085713.08072572,0.0,51055260.88586471,17847.54695350369,17568.140276489998,17590.778618379056,21175.433177581483,267054836.4934352,183990944.86954487,63419881.67034747,0.0 - 07/05 20:00:00,0.0,44284583.73060466,0.0,43561153.750763248,0.0,43758186.12441693,0.0,51780257.90550387,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,183384181.5112887,63419881.67034747,69761869.8373822 - 07/05 21:00:00,0.0,31174553.01970235,0.0,28105934.915275739,0.0,33098617.040893184,0.0,37691646.41397787,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,130070751.38984914,49326574.63249246,69761869.8373822 - 07/05 22:00:00,0.0,22602846.237709207,0.0,19394993.89170275,0.0,26040685.176586585,0.0,28658764.054480427,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,96697289.36047897,35233267.594637479,69761869.8373822 - 07/05 23:00:00,0.0,16241061.593397577,0.0,12892678.143135909,0.0,20885898.469462456,0.0,21989441.7558316,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692029,72009079.96182753,35233267.594637479,62010550.96656194 - 07/05 24:00:00,0.0,10796138.351282433,0.0,7695590.8583823,0.0,15766713.891198494,0.0,15823101.202171352,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,50081544.303034577,35233267.594637479,46507913.22492146 - 07/06 01:00:00,0.0,1162797.7831640726,0.0,14643.448096838349,0.0,6104795.196759639,0.0,4370913.309503037,2579.729774156761,2539.343623294223,2542.6158267382527,3060.7509026975797,38600784.45679253,11653149.737523588,21139960.556782485,23253956.61246073 - 07/06 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 - 07/06 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 - 07/06 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.121765023421,1273.7610237604227,1533.3284573694473,19337634.183892404,0.0,14093307.03785499,0.0 - 07/06 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 - 07/06 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 07/06 07:00:00,0.0,13737968.262849486,0.0,22228851.047492073,0.0,23241363.7638285,0.0,21374451.00678691,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,80582634.08095697,14093307.03785499,15502637.741640486 - 07/06 08:00:00,0.0,43347403.97343115,0.0,46679044.457086879,0.0,44857261.38150541,0.0,51949994.37267685,5154.476170632303,5073.7818846144759,5080.319970442952,6115.589218003614,77127002.07729604,186833704.18470029,56373228.15141996,38756594.35410121 - 07/06 09:00:00,0.0,50947622.7138871,0.0,48559966.544103298,0.0,42183798.35451811,0.0,49821329.37947154,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,191512716.99198006,56373228.15141996,38756594.35410121 - 07/06 10:00:00,0.0,46000267.58997216,0.0,38576726.79077288,0.0,27749369.895310627,0.0,33150206.81129889,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192305042.78522266,145476571.08735455,28186614.07570998,0.0 - 07/06 11:00:00,0.0,54071049.682447757,0.0,42487701.86105752,0.0,26991141.886880369,0.0,32808704.435106677,12841.977000641575,12640.933455028086,12657.222588018147,15236.515502862421,192155934.7675808,156358597.86549235,28186614.07570998,0.0 - 07/06 12:00:00,0.0,58199731.61393921,0.0,44548609.38227679,0.0,24891065.493222458,0.0,31571943.022413,7693.583394255568,7573.138910981932,7582.897673442953,9128.143015151287,115119946.77779427,159211349.51185147,28186614.07570998,0.0 - 07/06 13:00:00,0.0,63062021.53532102,0.0,48290203.83288461,0.0,27418414.236969208,0.0,35770115.55102201,7693.583394255568,7573.138910981932,7582.897673442953,9128.143015151287,115119946.77779427,174540755.15619687,28186614.07570998,0.0 - 07/06 14:00:00,0.0,66330299.14638612,0.0,52335199.17942194,0.0,33709060.98420138,0.0,42658616.470305729,7686.67315392318,7566.33685175105,7576.086849064481,9119.944278776997,115016548.08065655,195033175.78031517,28186614.07570998,0.0 - 07/06 15:00:00,0.0,66450539.329230118,0.0,56669475.17076589,0.0,42265699.599043149,0.0,51080803.610346268,7682.368731557086,7562.099815920086,7571.844353380384,9114.83724594953,114952140.5285055,216466517.70938543,28186614.07570998,0.0 - 07/06 16:00:00,0.0,61751926.0780172,0.0,58394491.62296297,0.0,48342556.619864758,0.0,56428410.618614,17911.70643047574,17631.295324881106,17654.01504849612,21251.555947891018,268014861.90627835,224917384.93945898,28186614.07570998,0.0 - 07/06 17:00:00,0.0,61218121.11882019,0.0,60007305.39289639,0.0,53529190.103993248,0.0,64328335.350528348,23015.597564915908,22655.284091481666,22684.477737410314,27307.127951402203,344384954.4427563,239082951.96623818,35233267.594637479,0.0 - 07/06 18:00:00,0.0,56049154.05228899,0.0,57659660.14479076,0.0,51028531.40352389,0.0,63026394.87321992,17925.527040299865,17644.899570480204,17667.636824554225,21267.95357388223,268221661.2331795,227763740.4738236,14093307.03785499,0.0 - 07/06 19:00:00,0.0,58305054.374134439,0.0,65563331.751115988,0.0,56141101.20042499,0.0,69785028.30785689,17964.03750579884,17682.807147457668,17705.593249313773,21313.64477116192,268797897.62543597,249794515.6335323,63419881.67034747,0.0 - 07/06 20:00:00,0.0,47519527.18791944,0.0,47233466.443978149,0.0,49626970.81243735,0.0,57349659.99746807,15472.007170699728,15229.790012142334,15249.415151045334,18356.94590521285,231509369.6607609,201729624.441803,63419881.67034747,69761869.8373822 - 07/06 21:00:00,0.0,31484375.59246783,0.0,27510384.64522858,0.0,36516218.7836423,0.0,39860486.67310196,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,135371465.6944407,49326574.63249246,69761869.8373822 - 07/06 22:00:00,0.0,22437445.132637558,0.0,18429511.698913274,0.0,28823431.226866455,0.0,30202075.58426502,10331.482961578737,10169.74166847898,10182.846418622767,12257.910156963293,154591132.3403176,99892463.64268232,35233267.594637479,69761869.8373822 - 07/06 23:00:00,0.0,17120101.12001878,0.0,13179541.644822928,0.0,24263687.718620436,0.0,24653388.435633705,7748.0285015536769,7626.731669968563,7636.559492169638,9192.740056662979,115934614.99327748,79216718.91909585,35233267.594637479,62010550.96656194 - 07/06 24:00:00,0.0,14461005.180884283,0.0,10954648.455816312,0.0,21386831.13996778,0.0,21540371.697576435,5155.647257242486,5074.9346376453099,5081.474208913725,6116.978667563472,77144525.17691398,68342856.47424482,35233267.594637479,46507913.22492146 - 07/07 01:00:00,0.0,5118779.722408666,0.0,1905351.2081332459,0.0,12053032.281097735,0.0,10333748.142164113,2578.390998612566,2538.025806530921,2541.296311833544,3059.1624966185966,38580752.20894426,29410911.35380376,21139960.556782485,23253956.61246073 - 07/07 02:00:00,0.0,0.0,0.0,0.0,0.0,2487450.988732992,0.0,56902.84256552084,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,2544353.8312985135,14093307.03785499,0.0 - 07/07 03:00:00,0.0,0.0,0.0,0.0,0.0,98021.46596103588,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,98021.46596103588,14093307.03785499,0.0 - 07/07 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 07/07 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,19347204.489021865,0.0,14093307.03785499,0.0 - 07/07 06:00:00,0.0,0.0,0.0,8225823.213854493,0.0,10480621.422549872,0.0,3516346.0690227148,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,22222790.70542708,14093307.03785499,0.0 - 07/07 07:00:00,0.0,25107403.174112895,0.0,32569134.37978977,0.0,31868785.232020946,0.0,34563727.93701839,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,124109050.722942,14093307.03785499,15502637.741640486 - 07/07 08:00:00,0.0,47214747.06779571,0.0,49114572.41332632,0.0,49123591.04029551,0.0,56954908.405235368,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,202407818.92665289,56373228.15141996,38756594.35410121 - 07/07 09:00:00,0.0,50784021.31333252,0.0,47819050.79591909,0.0,45562954.295166078,0.0,53219851.99416366,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,197385878.3985814,56373228.15141996,38756594.35410121 - 07/07 10:00:00,0.0,44882138.26275365,0.0,35442769.131214488,0.0,29152926.02076779,0.0,34195364.42277086,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,143673197.83750678,28186614.07570998,0.0 - 07/07 11:00:00,0.0,61992642.02803937,0.0,45929591.825950298,0.0,29476754.535306097,0.0,36113630.50422865,7679.433395283059,7559.210432883016,7568.951247078357,9111.354581509071,114908218.76431261,173512618.8935244,28186614.07570998,0.0 - 07/07 12:00:00,0.0,69182287.98906993,0.0,51729874.59731595,0.0,27813954.17615561,0.0,36156328.48957631,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,184882445.2521178,28186614.07570998,0.0 - 07/07 13:00:00,0.0,76200083.3365041,0.0,58127413.56816876,0.0,31696895.67624578,0.0,42575478.95795937,5107.149397659032,5027.196021100902,5033.67407628932,6059.437808444815,76418846.29257864,208599871.538878,28186614.07570998,0.0 - 07/07 14:00:00,0.0,83549585.27708249,0.0,68181358.18280736,0.0,41915100.69033165,0.0,54295899.27369994,7648.948694358726,7529.202975638569,7538.905122162453,9075.185647534923,114452072.78290083,247941943.4239214,28186614.07570998,0.0 - 07/07 15:00:00,0.0,82083569.71093077,0.0,72146767.40689519,0.0,48791449.071188759,0.0,60945748.72670698,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,263967534.91572169,28186614.07570998,0.0 - 07/07 16:00:00,0.0,76057763.4485488,0.0,71457967.82069536,0.0,51660981.00590971,0.0,63039378.202748108,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,262216090.47790195,28186614.07570998,0.0 - 07/07 17:00:00,0.0,68973959.12484701,0.0,66528647.73766182,0.0,52029804.3978957,0.0,64062377.28998551,15318.161129568494,15078.35245948496,15097.782455644452,18174.413450075066,229207354.18118269,251594788.55039007,35233267.594637479,0.0 - 07/07 18:00:00,0.0,57136475.69407394,0.0,56231066.36279174,0.0,45970501.28156634,0.0,57049196.73620112,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,216387240.07463313,14093307.03785499,0.0 - 07/07 19:00:00,0.0,59848364.784619588,0.0,61296241.91430367,0.0,52622091.49356869,0.0,64700480.90744727,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,238467179.09993924,63419881.67034747,0.0 - 07/07 20:00:00,0.0,60705149.52156314,0.0,58683509.71062129,0.0,57022312.55834266,0.0,67538905.29815696,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,243949877.08868406,63419881.67034747,69761869.8373822 - 07/07 21:00:00,0.0,50229829.84470304,0.0,46340040.993957858,0.0,48506900.767503488,0.0,56383788.96068972,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,201460560.56685413,49326574.63249246,69761869.8373822 - 07/07 22:00:00,0.0,41536719.68455181,0.0,37794476.215571809,0.0,41363344.6087845,0.0,47484107.11875177,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,168178647.62765987,35233267.594637479,69761869.8373822 - 07/07 23:00:00,0.0,34911837.55075164,0.0,31210515.97829375,0.0,36044380.23747558,0.0,40794646.66891895,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,142961380.43543995,35233267.594637479,62010550.96656194 - 07/07 24:00:00,0.0,26752170.770759174,0.0,23040200.783576788,0.0,29060164.98471137,0.0,32050932.40638333,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,110903468.94543067,35233267.594637479,46507913.22492146 - 07/08 01:00:00,0.0,13285683.377337005,0.0,9604831.934738977,0.0,16790286.71629703,0.0,16918461.962748808,2576.938505666696,2536.596052633081,2539.864715551875,3057.4391691833868,38559018.39492614,56599263.99112181,21139960.556782485,23253956.61246073 - 07/08 02:00:00,0.0,923384.3039505337,0.0,0.0,0.0,5022441.48389979,0.0,2358746.4449046768,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,8304572.232755,14093307.03785499,0.0 - 07/08 03:00:00,0.0,0.0,0.0,0.0,0.0,796394.5163689829,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,796394.5163689829,14093307.03785499,0.0 - 07/08 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 07/08 05:00:00,0.0,0.0,0.0,0.0,0.0,229349.3515489889,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,229349.3515489889,14093307.03785499,0.0 - 07/08 06:00:00,0.0,11474577.013173154,0.0,22459392.569980645,0.0,23312989.98742362,0.0,17648054.549393096,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,74895014.1199705,14093307.03785499,0.0 - 07/08 07:00:00,0.0,37596520.20652216,0.0,48362716.09889465,0.0,43326621.00693323,0.0,48568557.046707998,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,177854414.35905803,14093307.03785499,15502637.741640486 - 07/08 08:00:00,0.0,65195155.663059908,0.0,67400072.59824845,0.0,62762995.61663115,0.0,74246276.75796293,20508.95719514884,20187.885644316608,20213.899795503956,24333.094837018914,306877814.89915797,269604500.6359024,56373228.15141996,38756594.35410121 - 07/08 09:00:00,0.0,56912980.11991986,0.0,53615123.932455997,0.0,47588530.52754954,0.0,56729686.86977973,17935.570692487418,17654.785987419113,17677.535981150453,21279.869983812987,268371945.52153189,214846321.44970513,56373228.15141996,38756594.35410121 - 07/08 10:00:00,0.0,44026247.66075225,0.0,39925668.969615209,0.0,30066056.61731021,0.0,35688390.88499021,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,149706364.1326679,28186614.07570998,0.0 - 07/08 11:00:00,0.0,55640519.85480404,0.0,46132744.26035412,0.0,31475945.46088881,0.0,38046235.28153441,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,171295444.85758139,28186614.07570998,0.0 - 07/08 12:00:00,0.0,49591476.06733845,0.0,44340875.669417757,0.0,27940183.825847776,0.0,34413040.52436701,5107.149397659032,5027.196021100902,5033.67407628932,6059.437808444815,76418846.29257864,156285576.08697099,28186614.07570998,0.0 - 07/08 13:00:00,0.0,41636330.652593787,0.0,38599729.2235152,0.0,26297124.960727034,0.0,32053196.850291607,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,138586381.68712766,28186614.07570998,0.0 - 07/08 14:00:00,0.0,51344803.23902193,0.0,44160846.08915986,0.0,29298320.166773436,0.0,36346345.844381388,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,161150315.3393366,28186614.07570998,0.0 - 07/08 15:00:00,0.0,52095524.95833918,0.0,48611946.05910581,0.0,32847863.226839305,0.0,40413480.12513164,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,173968814.36941595,28186614.07570998,0.0 - 07/08 16:00:00,0.0,56315501.67645487,0.0,55824860.55714605,0.0,41297875.165957789,0.0,49668585.41654628,12712.173663425332,12513.162213270754,12529.28669997447,15082.508798153343,190213672.94936604,203106822.81610496,28186614.07570998,0.0 - 07/08 17:00:00,0.0,62183737.246527228,0.0,65082161.905746709,0.0,53146845.530157778,0.0,65154661.99619516,12733.58800452011,12534.241308860852,12550.392958130735,15107.916096426645,190534098.12457804,245567406.67862685,35233267.594637479,0.0 - 07/08 18:00:00,0.0,49741903.4949706,0.0,53396789.805140268,0.0,45024645.39347594,0.0,56267222.43426825,17886.3464200077,17606.332330107853,17629.019886356178,21221.4672635218,267635397.2399767,204430561.12785507,14093307.03785499,0.0 - 07/08 19:00:00,0.0,45287557.74901721,0.0,47341421.339462328,0.0,44386293.165245089,0.0,53159811.94973349,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,190175084.2034581,63419881.67034747,0.0 - 07/08 20:00:00,0.0,52010334.60053297,0.0,50610677.095581177,0.0,53983021.216669287,0.0,62477898.340360108,10248.897538564239,10088.44913566807,10101.449132085974,12159.925705035994,153355397.44087539,219081931.2531435,63419881.67034747,69761869.8373822 - 07/08 21:00:00,0.0,41092283.06521707,0.0,38842936.862049628,0.0,44933400.23267846,0.0,50944216.11629025,10268.584520246377,10107.827913979372,10120.852881931081,12183.28355730356,153649975.9444574,175812836.2762354,49326574.63249246,69761869.8373822 - 07/08 22:00:00,0.0,32341878.96362542,0.0,29917862.31986108,0.0,37418249.53696422,0.0,41592989.4678874,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,141270980.28833813,35233267.594637479,69761869.8373822 - 07/08 23:00:00,0.0,30906852.259177016,0.0,28752633.991280725,0.0,35915803.844338539,0.0,40570138.487056728,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,136145428.581853,35233267.594637479,62010550.96656194 - 07/08 24:00:00,0.0,26143939.671813005,0.0,24157680.783096564,0.0,30952155.043419478,0.0,34445840.92231653,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,115699616.42064557,35233267.594637479,46507913.22492146 - 07/09 01:00:00,0.0,10754326.42087743,0.0,8866324.375558095,0.0,16481933.19081653,0.0,16643663.80870736,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,52746247.79595941,21139960.556782485,23253956.61246073 - 07/09 02:00:00,0.0,125077.51143048123,0.0,0.0,0.0,4999863.685680832,0.0,2711017.4756362226,1285.194204145847,1265.074249127202,1266.7044264206464,1524.8338643402672,19230504.278522266,7835958.672747536,14093307.03785499,0.0 - 07/09 03:00:00,0.0,0.0,0.0,0.0,0.0,976950.6845252356,0.0,0.0,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,976950.6845252356,14093307.03785499,0.0 - 07/09 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.9118143106217,1268.7336594113274,1270.3685522284314,1529.244666890868,19286131.294228496,0.0,14093307.03785499,0.0 - 07/09 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 - 07/09 06:00:00,0.0,6121201.7135519119,0.0,29489189.441760094,0.0,26639311.739058056,0.0,22932976.810976134,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.65895295,85182679.70534618,14093307.03785499,0.0 - 07/09 07:00:00,0.0,44466979.16199923,0.0,53212627.1203057,0.0,45319163.23723644,0.0,53242184.63243333,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,196240954.15197469,14093307.03785499,15502637.741640486 - 07/09 08:00:00,0.0,64761208.11212017,0.0,66131701.68520172,0.0,59822871.90665303,0.0,71777996.3246998,20497.795077128478,20176.89827133614,20202.89826417195,24319.851410071988,306710794.88175079,262493778.0286747,56373228.15141996,38756594.35410121 - 07/09 09:00:00,0.0,63135647.54693121,0.0,62455107.126380119,0.0,52615595.30312016,0.0,62557550.26616994,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,240763900.24260143,56373228.15141996,38756594.35410121 - 07/09 10:00:00,0.0,55094405.5236485,0.0,48457849.86667604,0.0,35177701.64695876,0.0,42951709.66262345,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,181681666.69990678,28186614.07570998,0.0 - 07/09 11:00:00,0.0,47618824.824936818,0.0,40456968.07980807,0.0,29284785.357756065,0.0,35585170.18540103,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,152945748.447902,28186614.07570998,0.0 - 07/09 12:00:00,0.0,39612390.15810792,0.0,33541207.66024421,0.0,25272709.66390948,0.0,30511202.1714558,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,128937509.65371743,28186614.07570998,0.0 - 07/09 13:00:00,0.0,54067580.29655041,0.0,42120826.40180154,0.0,27670351.846052167,0.0,34740423.77131242,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,158599182.31571654,28186614.07570998,0.0 - 07/09 14:00:00,0.0,30029455.206092623,0.0,23639548.56479596,0.0,18480983.575878648,0.0,20368727.705423159,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,92518715.0521904,28186614.07570998,0.0 - 07/09 15:00:00,0.0,26128423.44282831,0.0,20545826.691234825,0.0,17537481.803744936,0.0,18109937.72951843,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,82321669.66732648,28186614.07570998,0.0 - 07/09 16:00:00,0.0,35301242.844832468,0.0,34424238.418337028,0.0,33067611.752941107,0.0,35597131.049187008,12796.576754659349,12596.243958366122,12612.47550437837,15182.649844038442,191476605.82119224,138390224.0652976,28186614.07570998,0.0 - 07/09 17:00:00,0.0,32254667.517762096,0.0,32249161.097780266,0.0,33883792.058987807,0.0,39291581.735199358,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,137679202.4097295,35233267.594637479,0.0 - 07/09 18:00:00,0.0,28009349.77883216,0.0,30088848.096111336,0.0,29773954.606858355,0.0,36076955.16779802,17945.337545755236,17664.399938777027,17687.162321065964,21291.45798239155,268518088.0367632,123949107.64959988,14093307.03785499,0.0 - 07/09 19:00:00,0.0,34165609.81325495,0.0,38823757.55148644,0.0,37665147.796560849,0.0,45376091.445490848,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,156030606.60679309,63419881.67034747,0.0 - 07/09 20:00:00,0.0,34438964.33535565,0.0,33117525.99212181,0.0,40366685.90304433,0.0,45268662.03257527,10283.094436070924,10122.110674364862,10135.154047111138,12200.499018551845,153867089.43395559,153191838.26309706,63419881.67034747,69761869.8373822 - 07/09 21:00:00,0.0,24117756.718267915,0.0,21090907.019205639,0.0,30948549.82518283,0.0,33312931.345185535,10297.515458360307,10136.305932860067,10149.367597645794,12217.609011013938,154082872.79956839,109470144.9078419,49326574.63249246,69761869.8373822 - 07/09 22:00:00,0.0,13486312.951633875,0.0,10465658.024830325,0.0,21554666.95497093,0.0,21518976.611275428,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,67025614.54271056,35233267.594637479,69761869.8373822 - 07/09 23:00:00,0.0,4186680.2133028458,0.0,1319412.5875319669,0.0,13738167.41699232,0.0,11404998.299255807,5170.223721121991,5089.282904263544,5095.840964737995,6134.273085538672,77362634.43238393,30649258.517082946,35233267.594637479,62010550.96656194 - 07/09 24:00:00,0.0,0.0,0.0,0.0,0.0,6992481.014980365,0.0,3099885.4866639899,2585.358296829752,2544.8840303947688,2548.1633732188449,3067.4289299951644,38685004.66957871,10092366.501644355,35233267.594637479,46507913.22492146 - 07/10 01:00:00,0.0,0.0,2522634.6903504508,0.0,0.0,0.0,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,41218369.09427885,0.0,21139960.556782485,23253956.61246073 - 07/10 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 - 07/10 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,19353655.091546306,0.0,14093307.03785499,0.0 - 07/10 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,19353882.599153796,0.0,14093307.03785499,0.0 - 07/10 05:00:00,0.0,0.0,370150.8253578358,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,19721267.84975314,0.0,14093307.03785499,0.0 - 07/10 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.1217650234208,1273.7610237604227,1533.3284573694473,19337634.1838924,0.0,14093307.03785499,0.0 - 07/10 07:00:00,0.0,666484.2342456895,0.0,12607900.457244054,0.0,17255584.33858779,0.0,10220490.950630125,5159.967708872418,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,40750459.98070766,14093307.03785499,15502637.741640486 - 07/10 08:00:00,0.0,40847642.93947081,0.0,43439780.4121159,0.0,46346677.403236459,0.0,52589767.49931854,20595.030916720614,20272.611865720133,20298.73519529159,24435.218022027875,308165745.59913679,183223868.25414173,56373228.15141996,38756594.35410121 - 07/10 09:00:00,0.0,45804041.513722229,0.0,43512033.88712153,0.0,42966252.97578709,0.0,49654796.65414746,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,181937125.0307783,56373228.15141996,38756594.35410121 - 07/10 10:00:00,0.0,39774179.42193037,0.0,29990783.476392256,0.0,24683439.452506104,0.0,28594661.865372696,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,123043064.21620143,28186614.07570998,0.0 - 07/10 11:00:00,0.0,48008479.08622165,0.0,32366842.252328949,0.0,21315499.541303986,0.0,25326457.56642405,10268.584520246377,10107.827913979372,10120.852881931081,12183.28355730356,153649975.9444574,127017278.44627863,28186614.07570998,0.0 - 07/10 12:00:00,0.0,53620683.42845746,0.0,36107553.634029198,0.0,19571296.204843996,0.0,24835799.249289469,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,134135332.51662012,28186614.07570998,0.0 - 07/10 13:00:00,0.0,60000720.3137548,0.0,41962355.82415781,0.0,23718907.737837659,0.0,31421005.60646121,5113.542114315616,5033.488658585667,5039.97482247976,6067.0225227328569,76514501.22521004,157102989.48221148,28186614.07570998,0.0 - 07/10 14:00:00,0.0,65602471.934922669,0.0,49504698.54390674,0.0,32593739.33343732,0.0,41471075.76860058,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,189171985.5808673,28186614.07570998,0.0 - 07/10 15:00:00,0.0,66620272.728794019,0.0,55434158.72513844,0.0,42090619.793925199,0.0,50949814.54508891,7662.354696193528,7542.399104013761,7552.118255095957,9091.091356973366,114652668.28419581,215094865.79294659,28186614.07570998,0.0 - 07/10 16:00:00,0.0,63827976.8577247,0.0,59431117.465471778,0.0,49623801.606395918,0.0,58061643.85859369,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,230944539.78818608,28186614.07570998,0.0 - 07/10 17:00:00,0.0,64153098.755292627,0.0,61772373.98786847,0.0,55398765.16418344,0.0,66691024.90020818,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,248015262.80755273,35233267.594637479,0.0 - 07/10 18:00:00,0.0,57541366.55395637,0.0,57850707.10417297,0.0,51238759.79763003,0.0,63291093.17260097,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,229921926.62836034,14093307.03785499,0.0 - 07/10 19:00:00,0.0,60375981.37995905,0.0,66097496.67940859,0.0,56868793.052769009,0.0,70606564.82485575,17945.337545755236,17664.399938777027,17687.162321065964,21291.45798239155,268518088.0367632,253948835.93699239,63419881.67034747,0.0 - 07/10 20:00:00,0.0,52892012.76755458,0.0,51562299.72601935,0.0,53007667.05682275,0.0,61819227.203324209,10276.823956520404,10115.938360341463,10128.973779431126,12193.059333924075,153773263.54878146,219281206.75372089,63419881.67034747,69761869.8373822 - 07/10 21:00:00,0.0,40065719.678363058,0.0,35913591.67669158,0.0,42518978.77291965,0.0,47927650.21942996,10298.85855549139,10137.628003555008,10150.691371963767,12219.202544490798,154102969.7118035,166425940.34740425,49326574.63249246,69761869.8373822 - 07/10 22:00:00,0.0,31571946.845833988,0.0,27386671.4994117,0.0,35582982.00904745,0.0,39131681.957773659,5156.219173316969,5075.4976002669559,5082.03789697017,6117.657224154467,77153082.82095082,133673282.3120668,35233267.594637479,69761869.8373822 - 07/10 23:00:00,0.0,25244302.660503169,0.0,20922663.802219646,0.0,30397922.089423956,0.0,32537740.046446496,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,109102628.59859327,35233267.594637479,62010550.96656194 - 07/10 24:00:00,0.0,20009073.3011932,0.0,15901850.411245853,0.0,25487903.281930008,0.0,26737301.36135071,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,88136128.35571978,35233267.594637479,46507913.22492146 - 07/11 01:00:00,0.0,6261019.330869431,0.0,2488289.3597983296,0.0,12654908.31433807,0.0,11041349.539679584,2582.4770040741007,2542.0478448147116,2545.3235329241845,3064.01038612629,38641891.56458143,32445566.544685414,21139960.556782485,23253956.61246073 - 07/11 02:00:00,0.0,0.0,0.0,0.0,0.0,1567248.1948091174,0.0,0.0,1291.3380835922795,1271.121944994761,1272.7599153616064,1532.1233427771629,19322435.832212915,1567248.1948091174,14093307.03785499,0.0 - 07/11 03:00:00,0.0,0.0,0.0,0.0,0.0,233535.83003380785,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,233535.83003380785,14093307.03785499,0.0 - 07/11 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 07/11 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 - 07/11 06:00:00,0.0,4330558.567650337,0.0,20010917.14257633,0.0,23163084.764613205,0.0,16408168.59562615,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142676,63912729.07046602,14093307.03785499,0.0 - 07/11 07:00:00,0.0,41510969.81692935,0.0,51548815.85439344,0.0,43588601.0235205,0.0,49221308.77386326,5145.26480966707,5064.714729223531,5071.241131096821,6104.66028983763,76989171.45537019,185869695.46870656,14093307.03785499,15502637.741640486 - 07/11 08:00:00,0.0,70059948.85355936,0.0,70622015.23617788,0.0,61163577.97239343,0.0,73765237.7322783,20540.535997393403,20218.970074521007,20245.024281169397,24370.561880445093,307350332.040704,275610779.794409,56373228.15141996,38756594.35410121 - 07/11 09:00:00,0.0,74123332.3101925,0.0,70706134.26346058,0.0,56900505.79970659,0.0,69423552.53001318,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,271153524.9033729,56373228.15141996,38756594.35410121 - 07/11 10:00:00,0.0,70115456.72232344,0.0,60720464.813932079,0.0,43354202.650067228,0.0,53625450.17523169,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,227815574.36155445,28186614.07570998,0.0 - 07/11 11:00:00,0.0,75514357.59708114,0.0,63416298.17768103,0.0,41229321.05057918,0.0,51674619.69115673,10186.870403616089,10027.393047088683,10040.314366504585,12086.332877141316,152427278.4996624,231834596.5164981,28186614.07570998,0.0 - 07/11 12:00:00,0.0,75652318.10144934,0.0,64435834.17550449,0.0,39310635.25233366,0.0,50491024.23828806,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,229889811.76757557,28186614.07570998,0.0 - 07/11 13:00:00,0.0,68275981.93298395,0.0,56849229.7061249,0.0,36721737.670206587,0.0,47307866.670955609,5084.869465370133,5005.264885308302,5011.714679989787,6033.003519261338,76085469.17974642,209154815.98027105,28186614.07570998,0.0 - 07/11 14:00:00,0.0,72159110.3155941,0.0,66137518.47205226,0.0,43246568.28664509,0.0,55161229.8191947,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,236704426.89348618,28186614.07570998,0.0 - 07/11 15:00:00,0.0,76293962.45586799,0.0,71999179.81223078,0.0,47537581.68467976,0.0,60295757.998252678,7627.304198055199,7507.8973279624519,7517.572019984682,9049.505278892007,114128203.76961963,256126481.9510312,28186614.07570998,0.0 - 07/11 16:00:00,0.0,78388130.8475296,0.0,76432803.80587456,0.0,51143063.907168868,0.0,64683411.19552328,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,270647409.7560963,28186614.07570998,0.0 - 07/11 17:00:00,0.0,57770047.69320394,0.0,55807231.8218199,0.0,41617612.84376837,0.0,51684593.432505939,12699.473833650844,12500.661201700535,12516.769579574891,15067.440934908218,190023643.97940416,206879485.79129813,35233267.594637479,0.0 - 07/11 18:00:00,0.0,43876720.24064669,0.0,41544100.49755197,0.0,32877674.881500417,0.0,40138588.190635818,17797.043128795463,17518.427098579054,17541.001379964255,21115.51231741468,266299142.12911243,158437083.8103349,14093307.03785499,0.0 - 07/11 19:00:00,0.0,55775671.02661763,0.0,53209453.6332455,0.0,47730944.401401478,0.0,57449734.54488564,17779.26336711118,17500.92568238075,17523.47741140485,21094.417308871503,266033101.5711658,214165803.60615028,63419881.67034747,0.0 - 07/11 20:00:00,0.0,67518195.16407947,0.0,64531486.73737536,0.0,62203397.692772749,0.0,74149641.17352678,10198.598259144968,10038.937300851429,10051.873496216604,12100.247530046563,152602763.71053443,268402720.76775433,63419881.67034747,69761869.8373822 - 07/11 21:00:00,0.0,60636352.93973492,0.0,57655928.007600959,0.0,56418299.82417035,0.0,66869338.062531109,10207.673024775419,10047.86999933304,10060.81770539195,12111.014393061994,152738550.44122467,241579918.83403734,49326574.63249246,69761869.8373822 - 07/11 22:00:00,0.0,54844888.15669808,0.0,51931788.303236547,0.0,51610911.06798451,0.0,60824551.717800069,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,219212139.2457192,35233267.594637479,69761869.8373822 - 07/11 23:00:00,0.0,50481652.685123,0.0,47426865.56277854,0.0,48066702.43030641,0.0,56143791.04148032,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,202119011.71968828,35233267.594637479,62010550.96656194 - 07/11 24:00:00,0.0,41710969.21805799,0.0,38438094.75331159,0.0,40271433.4475548,0.0,46348813.5863911,2561.2722323928589,2521.1750377898858,2524.423829157064,3038.8517339623947,38324602.19988793,166769311.00531549,35233267.594637479,46507913.22492146 - 07/12 01:00:00,0.0,28331449.86813871,0.0,25482033.52948411,0.0,27519157.445608394,0.0,31115352.01946064,2559.8111317610198,2519.736810961006,2522.983749026119,3037.1181938363567,38302739.5881042,112447992.86269185,21139960.556782485,23253956.61246073 - 07/12 02:00:00,0.0,17113302.134945696,0.0,14754906.14586483,0.0,16810946.28430278,0.0,18440941.625865587,1281.1121923205299,1261.0561419585088,1262.6811415107468,1519.9907131294993,19169424.680109424,67120096.19097889,14093307.03785499,0.0 - 07/12 03:00:00,0.0,14223372.280503698,0.0,11904234.478853409,0.0,14796242.788346289,0.0,15889415.460251393,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,56813265.00795479,14093307.03785499,0.0 - 07/12 04:00:00,0.0,12466943.812214267,0.0,9961446.240627716,0.0,13590196.041400774,0.0,14254688.785139436,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,50273274.87938219,14093307.03785499,0.0 - 07/12 05:00:00,0.0,10846852.649667863,0.0,8325092.283550732,0.0,12151839.590008419,0.0,12449139.718366353,1283.1455361284885,1263.057653389834,1264.685232093841,1522.4031979401373,19199849.830388287,43772924.24159337,14093307.03785499,0.0 - 07/12 06:00:00,0.0,12401761.375747318,0.0,10300191.560352099,0.0,12061208.456711226,0.0,12615771.953636665,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,47378933.346447307,14093307.03785499,0.0 - 07/12 07:00:00,0.0,21331740.557389529,0.0,19751480.791801175,0.0,18210465.853861736,0.0,20525440.989652065,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,79819128.1927045,14093307.03785499,15502637.741640486 - 07/12 08:00:00,0.0,41810154.22023654,0.0,40199237.45818784,0.0,36752405.323024708,0.0,43446361.450514879,20540.535997393403,20218.970074521007,20245.024281169397,24370.561880445093,307350332.040704,162208158.45196397,56373228.15141996,38756594.35410121 - 07/12 09:00:00,0.0,35042741.90270094,0.0,32824670.958010705,0.0,29742293.21599573,0.0,34702853.39171705,17978.767800898204,17697.30683703932,17720.111623225406,21331.121704007386,269018308.6746131,132312559.46842441,56373228.15141996,38756594.35410121 - 07/12 10:00:00,0.0,11958024.474897974,0.0,9085877.625877262,0.0,7347195.332440108,0.0,6816696.041651686,12859.51171233805,12658.193657541857,12674.505032064568,15257.319768949194,192418308.61521719,35207793.47486703,28186614.07570998,0.0 - 07/12 11:00:00,0.0,7249122.024426473,0.0,3666099.240209679,0.0,3739169.1133559846,0.0,1736738.8012734124,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,16391129.17926555,28186614.07570998,0.0 - 07/12 12:00:00,0.0,6411499.9645195179,0.0,2377978.623130522,0.0,2319805.1389452025,0.0,67906.12312463654,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,11177189.84971988,28186614.07570998,0.0 - 07/12 13:00:00,0.0,5287026.413929495,0.0,1237404.2266270235,0.0,2213258.717068124,0.0,0.0,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,8737689.357624643,28186614.07570998,0.0 - 07/12 14:00:00,0.0,1825599.8549491107,0.0,0.0,0.0,1168437.722382293,0.0,0.0,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,2994037.577331404,28186614.07570998,0.0 - 07/12 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,0.0,28186614.07570998,0.0 - 07/12 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12848.022972937308,12646.884776499655,12663.18157837487,15243.688818202356,192246401.32565109,0.0,28186614.07570998,0.0 - 07/12 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12837.834998370876,12636.856296575626,12653.140175730872,15231.601175278183,192093957.52544,0.0,35233267.594637479,0.0 - 07/12 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17954.826756676088,17673.7405943307,17696.515013007698,21302.716568923686,268660076.15857747,0.0,14093307.03785499,0.0 - 07/12 19:00:00,0.0,5516925.405727025,0.0,204683.72534272728,0.0,15422558.576913748,0.0,10733556.664326692,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,31877724.37231019,63419881.67034747,0.0 - 07/12 20:00:00,0.0,36645267.47312517,0.0,34276567.56189356,0.0,43261397.86676358,0.0,48285042.92202253,10258.111192340759,10097.518547975913,10110.530231257271,12170.857353535048,153493262.37039239,162468275.82380484,63419881.67034747,69761869.8373822 - 07/12 21:00:00,0.0,30583616.97881518,0.0,27403558.054201787,0.0,36116919.92004325,0.0,40035065.650446068,10256.303717812914,10095.739369798985,10108.748760427665,12168.712854003305,153466216.92735435,134139160.60350627,49326574.63249246,69761869.8373822 - 07/12 22:00:00,0.0,25468866.3309343,0.0,22159757.04216446,0.0,31081055.71138017,0.0,34075772.891029838,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,112785451.97550878,35233267.594637479,69761869.8373822 - 07/12 23:00:00,0.0,23497038.208234136,0.0,20189885.72475984,0.0,29178620.904682086,0.0,31861223.32987301,5127.23929878721,5046.971411079152,5053.474948875989,6083.273709254729,76719453.72478949,104726768.16754906,35233267.594637479,62010550.96656194 - 07/12 24:00:00,0.0,17847145.748559964,0.0,14301138.021664106,0.0,24354691.03263695,0.0,26051056.181530086,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,82554030.9843911,35233267.594637479,46507913.22492146 - 07/13 01:00:00,0.0,4059758.893261947,0.0,260473.28650635066,0.0,12778448.411511716,0.0,11284330.428213036,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,28383011.019493056,21139960.556782485,23253956.61246073 - 07/13 02:00:00,0.0,0.0,0.0,0.0,0.0,2657235.6215029035,0.0,0.0,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,2657235.6215029035,14093307.03785499,0.0 - 07/13 03:00:00,0.0,0.0,0.0,0.0,0.0,667085.848900184,0.0,0.0,1283.1455361284885,1263.057653389834,1264.685232093841,1522.4031979401373,19199849.830388287,667085.848900184,14093307.03785499,0.0 - 07/13 04:00:00,0.0,0.0,0.0,0.0,0.0,332828.1774068215,0.0,0.0,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,332828.1774068215,14093307.03785499,0.0 - 07/13 05:00:00,0.0,0.0,0.0,0.0,0.0,2037651.308695639,0.0,0.0,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,2037651.308695639,14093307.03785499,0.0 - 07/13 06:00:00,0.0,0.0,0.0,0.0,0.0,6377240.02895094,0.0,1200069.6100377043,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,7577309.638988644,14093307.03785499,0.0 - 07/13 07:00:00,0.0,15694919.822113485,0.0,13427147.148691979,0.0,18672881.343550475,0.0,20579814.06546498,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,68374762.37982092,14093307.03785499,15502637.741640486 - 07/13 08:00:00,0.0,59970855.32256438,0.0,58938200.83919792,0.0,54178011.246568288,0.0,65497973.963893588,5101.584956821103,5021.718692622336,5028.18968971395,6052.835811798378,76335584.94344077,238585041.37222416,56373228.15141996,38756594.35410121 - 07/13 09:00:00,0.0,78549463.23683171,0.0,75457026.6535385,0.0,66480414.12794127,0.0,81839880.59094735,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,302326784.60925886,56373228.15141996,38756594.35410121 - 07/13 10:00:00,0.0,60433747.11089967,0.0,54292510.50552784,0.0,39791039.27645557,0.0,49986185.57668857,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,204503482.46957166,28186614.07570998,0.0 - 07/13 11:00:00,0.0,56914162.168229747,0.0,52459168.26074582,0.0,36796192.52783346,0.0,46178738.29950533,12696.246556981328,12497.484448649331,12513.588732953136,15063.611894332564,189975353.8784989,192348261.25631438,28186614.07570998,0.0 - 07/13 12:00:00,0.0,60990601.94191447,0.0,53690885.89618901,0.0,36946921.77678974,0.0,47256865.296727757,7582.929832576124,7464.21765145298,7473.836057753737,8996.856788124749,113464225.18766733,198885274.91162098,28186614.07570998,0.0 - 07/13 13:00:00,0.0,50921516.86589309,0.0,39369861.49506737,0.0,26712999.180492589,0.0,33980911.831448029,7694.925752861181,7574.460254713157,7584.220719860442,9129.735672395867,115140032.63939032,150985289.37290109,28186614.07570998,0.0 - 07/13 14:00:00,0.0,35052169.80643376,0.0,27845929.629124986,0.0,22700637.4185283,0.0,26575949.77300821,7667.168747474859,7547.137790424222,7556.863047787525,9096.80304505503,114724701.4706699,112174686.62709525,28186614.07570998,0.0 - 07/13 15:00:00,0.0,45606219.891742829,0.0,41790716.74444321,0.0,32130187.415361026,0.0,38749220.19857359,7652.377435231655,7532.578038933501,7542.284534570927,9079.25371769757,114503377.41516115,158276344.25012065,28186614.07570998,0.0 - 07/13 16:00:00,0.0,37808020.15104532,0.0,36592880.73889202,0.0,31595535.44207757,0.0,36938585.308900568,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,142935021.64091549,28186614.07570998,0.0 - 07/13 17:00:00,0.0,45271792.49586128,0.0,45678437.764026109,0.0,41034456.49443432,0.0,49761745.62877624,22853.243802566394,22495.472007568795,22524.459719315644,27114.50140979861,341955636.98129799,181746432.38309796,35233267.594637479,0.0 - 07/13 18:00:00,0.0,47358636.91916041,0.0,50459678.533266078,0.0,43551039.317828509,0.0,54763644.0629442,17770.197779954382,17492.002018682073,17514.542248654678,21083.6613357647,265897452.179001,196132998.83319918,14093307.03785499,0.0 - 07/13 19:00:00,0.0,57292079.59528818,0.0,65139052.67691282,0.0,55415069.032830897,0.0,69304685.05457005,17805.75662092437,17527.004179363183,17549.58951319242,21125.850543211185,266429523.08408819,247150886.35960195,63419881.67034747,0.0 - 07/13 20:00:00,0.0,55652089.44852288,0.0,56551828.72718662,0.0,57148392.92953481,0.0,67368655.4522765,15318.161129568494,15078.35245948496,15097.782455644452,18174.413450075066,229207354.18118269,236720966.5575208,63419881.67034747,69761869.8373822 - 07/13 21:00:00,0.0,44537869.15980788,0.0,42142023.53053535,0.0,47519072.45274615,0.0,55109910.67818366,12796.576754659349,12596.243958366122,12612.47550437837,15182.649844038442,191476605.82119224,189308875.82127304,49326574.63249246,69761869.8373822 - 07/13 22:00:00,0.0,35743889.51799041,0.0,33528113.461647739,0.0,39607290.89177372,0.0,45354718.87667003,10256.303717812914,10095.739369798985,10108.748760427665,12168.712854003305,153466216.92735435,154234012.7480819,35233267.594637479,69761869.8373822 - 07/13 23:00:00,0.0,27147727.730199256,0.0,24960080.81125217,0.0,32255614.398457938,0.0,35983951.417398478,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,120347374.35730784,35233267.594637479,62010550.96656194 - 07/13 24:00:00,0.0,21107789.517007397,0.0,19028231.54510997,0.0,26395422.825223004,0.0,28770556.643275355,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,95302000.53061572,35233267.594637479,46507913.22492146 - 07/14 01:00:00,0.0,9261534.154881712,0.0,7441515.656247645,0.0,14580382.934007869,0.0,14650782.005579625,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,45934214.75071685,21139960.556782485,23253956.61246073 - 07/14 02:00:00,0.0,0.0,0.0,0.0,0.0,1467900.1811154918,0.0,394049.52813268799,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,1861949.7092481796,14093307.03785499,0.0 - 07/14 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 - 07/14 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 - 07/14 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0324579201172,1270.8211039495109,1272.4586866519633,1531.7607295835915,19317862.72117866,0.0,14093307.03785499,0.0 - 07/14 06:00:00,0.0,0.0,0.0,7911574.06976963,0.0,12964623.898476504,0.0,4407104.479868492,1285.9511712338049,1265.8193657541859,1267.4505032064568,1525.7319768949192,19241830.86152172,25283302.448114627,14093307.03785499,0.0 - 07/14 07:00:00,0.0,15678689.413593788,0.0,19841422.042515167,0.0,20767263.917887864,0.0,21838798.19587137,1285.194204145847,1265.074249127202,1266.7044264206464,1524.8338643402672,19230504.278522266,78126173.56986818,14093307.03785499,15502637.741640486 - 07/14 08:00:00,0.0,37233957.35717375,0.0,36406130.41526465,0.0,35496063.73080534,0.0,40868950.33863256,1283.7834998370877,1263.685629657563,1265.3140175730874,1523.1601175278184,19209395.752544,150005101.84187628,56373228.15141996,38756594.35410121 - 07/14 09:00:00,0.0,44951096.2978656,0.0,43418747.95020074,0.0,38385670.656940478,0.0,44482473.51445284,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,171237988.41945965,56373228.15141996,38756594.35410121 - 07/14 10:00:00,0.0,44513392.08128812,0.0,37237934.09287675,0.0,26839281.467599304,0.0,31752811.68941016,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,140343419.3311743,28186614.07570998,0.0 - 07/14 11:00:00,0.0,52155890.67664339,0.0,42088036.24455991,0.0,27052469.962314138,0.0,32779196.120715508,7667.168747474859,7547.137790424222,7556.863047787525,9096.80304505503,114724701.4706699,154075593.00423295,28186614.07570998,0.0 - 07/14 12:00:00,0.0,61873155.55386199,0.0,48267904.72377344,0.0,27146552.650344396,0.0,35179583.258760217,5106.0537098561649,5026.117486494988,5032.594151881483,6058.137816691688,76402451.39372756,172467196.18674005,28186614.07570998,0.0 - 07/14 13:00:00,0.0,71501756.08740089,0.0,56992716.02961773,0.0,33340986.8467906,0.0,45216170.90737066,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,207051629.87117989,28186614.07570998,0.0 - 07/14 14:00:00,0.0,77980290.78542847,0.0,65387868.99783234,0.0,45036363.32821416,0.0,58328744.50729381,7621.60812797722,7502.290430924143,7511.957897887256,9042.747109176848,114042972.83747567,246733267.6187688,28186614.07570998,0.0 - 07/14 15:00:00,0.0,71650973.50729111,0.0,64405053.8453661,0.0,51133798.60005042,0.0,62480588.65956191,10143.838247264666,9985.034567172585,9997.901303363677,12035.276866268747,151783383.54265083,249670414.61226953,28186614.07570998,0.0 - 07/14 16:00:00,0.0,70174489.32506335,0.0,68726749.72689869,0.0,56684181.54035279,0.0,67844583.12620163,12666.265876203297,12467.973121021769,12484.039376967767,15028.04096102237,189526749.60677473,263430003.71851648,28186614.07570998,0.0 - 07/14 17:00:00,0.0,76296451.25915435,0.0,77073032.20017644,0.0,65062057.48968224,0.0,80481458.6544432,15182.885631668878,14945.194724740584,14964.453133567727,18013.914235600383,227183211.81207926,298912999.60345628,35233267.594637479,0.0 - 07/14 18:00:00,0.0,67061179.04270454,0.0,69945115.60229641,0.0,57852766.90213672,0.0,73294881.4376137,17756.38074333328,17478.401290346843,17500.923994392786,21067.267949242476,265690706.31833539,268153942.98475138,14093307.03785499,0.0 - 07/14 19:00:00,0.0,68397220.16988449,0.0,76079117.27767524,0.0,63077427.6334871,0.0,79679589.59161628,10191.61264313458,10032.06104596285,10044.988380571756,12091.959363307597,152498237.15871645,287233354.6726631,63419881.67034747,0.0 - 07/14 20:00:00,0.0,58480975.54049628,0.0,57807969.48172866,0.0,57787900.25843898,0.0,68420031.49290958,7694.925752861181,7574.460254713157,7584.220719860442,9129.735672395867,115140032.63939032,242496876.7735735,63419881.67034747,69761869.8373822 - 07/14 21:00:00,0.0,44104108.960781339,0.0,40963797.86017494,0.0,45788836.7824952,0.0,52740575.49322952,5141.547218035462,5061.055337182431,5067.577023555569,6100.249509275923,76933544.71697779,183597319.096681,49326574.63249246,69761869.8373822 - 07/14 22:00:00,0.0,37353851.55626571,0.0,34436828.75153053,0.0,39887703.39904402,0.0,45502877.60741451,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,157181261.31425477,35233267.594637479,69761869.8373822 - 07/14 23:00:00,0.0,31497382.353685567,0.0,28582488.334549317,0.0,35025282.359129328,0.0,39397838.04556939,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,134502991.0929336,35233267.594637479,62010550.96656194 - 07/14 24:00:00,0.0,24524959.245059946,0.0,21599645.17912493,0.0,28788408.20851493,0.0,31712156.885485904,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,106625169.5181857,35233267.594637479,46507913.22492146 - 07/15 01:00:00,0.0,11918524.990818747,0.0,9029799.872628633,0.0,17022236.75811676,0.0,17196459.40880349,2572.990697464094,2532.7100481043537,2535.973703509676,3052.7552454481026,38499946.90029441,55167021.03036763,21139960.556782485,23253956.61246073 - 07/15 02:00:00,0.0,1180860.8867402694,0.0,0.0,0.0,6377571.355870031,0.0,4502722.540112973,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,12061154.782723273,14093307.03785499,0.0 - 07/15 03:00:00,0.0,0.0,0.0,0.0,0.0,3387705.7735973929,0.0,1050864.8353261522,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,4438570.608923545,14093307.03785499,0.0 - 07/15 04:00:00,0.0,0.0,0.0,0.0,0.0,1616910.8889206094,0.0,0.0,1287.3573194364238,1267.203500444376,1268.8364214954709,1527.4003180613498,19262871.213975438,1616910.8889206094,14093307.03785499,0.0 - 07/15 05:00:00,0.0,0.0,0.0,0.0,0.0,5050987.479509173,0.0,1290175.8591821793,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,6341163.338691353,14093307.03785499,0.0 - 07/15 06:00:00,0.0,22332322.55572641,0.0,45310882.06069022,0.0,32934902.44665104,0.0,36644361.82774769,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,137222468.89081536,14093307.03785499,0.0 - 07/15 07:00:00,0.0,49709351.44253355,0.0,57519352.326898369,0.0,51878708.20354533,0.0,61733774.4163167,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,220841186.38929398,14093307.03785499,15502637.741640486 - 07/15 08:00:00,0.0,78637841.42763995,0.0,83624045.68399795,0.0,75950186.00176485,0.0,91110262.43123217,20428.597590636127,20108.784084403607,20134.69630515728,24237.75123377926,305675385.17031458,329322335.54463496,56373228.15141996,38756594.35410121 - 07/15 09:00:00,0.0,91628277.50567112,0.0,89587700.48050979,0.0,74885806.10587506,0.0,91157076.16094044,17831.187542935295,17552.036975545892,17574.654566688056,21156.023361419175,266810048.8077183,347258860.2529964,56373228.15141996,38756594.35410121 - 07/15 10:00:00,0.0,77170389.44336772,0.0,66225338.850501749,0.0,50866160.52814062,0.0,63434597.528047408,12699.473833650844,12500.661201700535,12516.769579574891,15067.440934908218,190023643.97940416,257696486.35005749,28186614.07570998,0.0 - 07/15 11:00:00,0.0,79662567.77848237,0.0,67039414.025873217,0.0,46709872.21787116,0.0,58896417.68316308,10119.110560146859,9960.69399660955,9973.52936749108,12005.938409417315,151413380.4011933,252308271.7053898,28186614.07570998,0.0 - 07/15 12:00:00,0.0,73592651.00797542,0.0,66620990.9233059,0.0,44467314.6193232,0.0,57303378.35466826,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,241984334.90527279,28186614.07570998,0.0 - 07/15 13:00:00,0.0,85890036.01967919,0.0,75321099.65646547,0.0,46341128.30220017,0.0,62135669.676507119,5043.546869045314,4964.5892019376719,4970.986581849453,5983.975836102415,75467154.56016548,269687933.6548519,28186614.07570998,0.0 - 07/15 14:00:00,0.0,86303810.99148873,0.0,81769105.59581547,0.0,53716485.362307857,0.0,70665802.8921671,5016.907152831924,4938.366535451236,4944.730124780757,5952.368829715711,75068541.51400668,292455204.8417791,28186614.07570998,0.0 - 07/15 15:00:00,0.0,83329956.47908354,0.0,80568830.29727125,0.0,56223055.17022619,0.0,72542625.11760238,7558.517870641984,7440.187863336966,7449.775304803065,8967.892927151768,113098946.27736163,292664467.06418338,28186614.07570998,0.0 - 07/15 16:00:00,0.0,58938362.94973553,0.0,57258884.89799626,0.0,43291495.38048356,0.0,53704033.203632939,12673.073129953884,12474.673805944998,12490.748696407445,15036.117507748591,189628607.30419774,213192776.4318483,28186614.07570998,0.0 - 07/15 17:00:00,0.0,35218312.53778473,0.0,32533035.069110268,0.0,28245397.992614416,0.0,33158842.58731897,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,129155588.18682839,35233267.594637479,0.0 - 07/15 18:00:00,0.0,19690815.553254874,0.0,17864788.358549287,0.0,18986246.882445914,0.0,21156987.759400898,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,77698838.55365098,14093307.03785499,0.0 - 07/15 19:00:00,0.0,32459323.15705195,0.0,31380228.936094807,0.0,35380323.88137715,0.0,40591601.28030891,17918.677922327137,17638.157676727038,17660.88624318283,21259.827356854494,268119177.11672939,139811477.25483284,63419881.67034747,0.0 - 07/15 20:00:00,0.0,46643828.763618569,0.0,43777958.23143441,0.0,51220483.198197659,0.0,58766248.993511479,10245.088929571435,10084.700151159543,10097.695316628256,12155.406935849578,153298408.79955174,200408519.18676213,63419881.67034747,69761869.8373822 - 07/15 21:00:00,0.0,40195296.739029217,0.0,37401996.313050728,0.0,43755624.9986998,0.0,50061978.359769459,10247.00201229738,10086.583284218528,10099.580876296397,12157.676735477053,153327034.4698417,171414896.4105492,49326574.63249246,69761869.8373822 - 07/15 22:00:00,0.0,34349303.322094779,0.0,31650814.954253504,0.0,38275499.609974648,0.0,43335278.09595443,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,147610895.98227737,35233267.594637479,69761869.8373822 - 07/15 23:00:00,0.0,29862263.98742997,0.0,27172362.835080275,0.0,34722086.02074086,0.0,38836628.95408924,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,130593341.79734037,35233267.594637479,62010550.96656194 - 07/15 24:00:00,0.0,22012094.695708544,0.0,19354774.17967802,0.0,27800936.41790166,0.0,30230871.573481379,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,99398676.86676961,35233267.594637479,46507913.22492146 - 07/16 01:00:00,0.0,9494789.812187136,0.0,6681821.482896936,0.0,15310014.682247187,0.0,15312199.944802419,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,46798825.92213367,21139960.556782485,23253956.61246073 - 07/16 02:00:00,0.0,0.0,0.0,0.0,0.0,4524672.248094259,0.0,1971019.809064328,1285.194204145847,1265.074249127202,1266.7044264206464,1524.8338643402672,19230504.278522266,6495692.0571585879,14093307.03785499,0.0 - 07/16 03:00:00,0.0,0.0,0.0,0.0,0.0,5315013.903821782,0.0,2697483.6791324887,1282.9284461346877,1262.8439619803842,1264.4712653211994,1522.1456289493274,19196601.488588156,8012497.58295427,14093307.03785499,0.0 - 07/16 04:00:00,0.0,0.0,0.0,0.0,0.0,6038165.320542576,0.0,3620201.6523708819,1282.9284461346877,1262.8439619803842,1264.4712653211994,1522.1456289493274,19196601.488588156,9658366.972913459,14093307.03785499,0.0 - 07/16 05:00:00,0.0,0.0,0.0,0.0,0.0,5361339.523723561,0.0,2726072.7598922618,1283.360409781109,1263.269163155338,1264.8970144112664,1522.65813732674,19203065.00882803,8087412.283615824,14093307.03785499,0.0 - 07/16 06:00:00,0.0,968605.145765436,0.0,0.0,0.0,6363594.472269939,0.0,4551609.05897685,1283.1455361284885,1263.057653389834,1264.685232093841,1522.4031979401373,19199849.830388287,11883808.677012226,14093307.03785499,0.0 - 07/16 07:00:00,0.0,14719373.031039607,0.0,10466555.174974338,0.0,15259372.367006604,0.0,16844414.989297905,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,57289715.56231846,14093307.03785499,15502637.741640486 - 07/16 08:00:00,0.0,48130723.28371768,0.0,45961393.23034024,0.0,44215280.89520474,0.0,52442588.74903614,20494.00402459476,20173.166568437056,20199.161752592794,24315.353470954105,306654068.9396834,190749986.1582988,56373228.15141996,38756594.35410121 - 07/16 09:00:00,0.0,71645136.00870629,0.0,69334342.45145546,0.0,55428830.94949298,0.0,68992573.7144327,17835.322125485516,17556.106830434983,17578.72966600057,21160.92888578829,266871915.02775369,265400883.12408746,56373228.15141996,38756594.35410121 - 07/16 10:00:00,0.0,60243214.82742892,0.0,52712602.71050059,0.0,36597302.61837767,0.0,46631342.808220248,12699.473833650844,12500.661201700535,12516.769579574891,15067.440934908218,190023643.97940416,196184462.96452744,28186614.07570998,0.0 - 07/16 11:00:00,0.0,81152743.21097219,0.0,64897756.59481597,0.0,42169879.05313618,0.0,54540452.43478737,10119.110560146859,9960.69399660955,9973.52936749108,12005.938409417315,151413380.4011933,242760831.2937117,28186614.07570998,0.0 - 07/16 12:00:00,0.0,89387260.46004446,0.0,70405430.64455933,0.0,41703656.07647913,0.0,55546994.33010062,5043.546869045314,4964.5892019376719,4970.986581849453,5983.975836102415,75467154.56016548,257043341.5111835,28186614.07570998,0.0 - 07/16 13:00:00,0.0,100517681.89033455,0.0,81287209.44693147,0.0,49020182.54445712,0.0,65757774.55229393,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,296582848.43401709,28186614.07570998,0.0 - 07/16 14:00:00,0.0,106950962.54524505,0.0,93599908.8519224,0.0,59801296.210533309,0.0,77382232.69008336,5021.773292475139,4943.156494770559,4949.526256451564,5958.142318650416,75141354.10445166,337734400.2977841,28186614.07570998,0.0 - 07/16 15:00:00,0.0,105071047.5959298,0.0,101960381.98166472,0.0,71909266.23409498,0.0,92027441.50005947,7520.436384879032,7402.702550337728,7412.241688151981,8922.710697953704,112529128.7567608,370968137.3117489,28186614.07570998,0.0 - 07/16 16:00:00,0.0,98491004.21566777,0.0,97476746.63327,0.0,82806762.14216933,0.0,102607987.70924467,12542.26788207981,12345.916338628087,12361.825311951894,14880.92207428928,187671353.78501667,381382500.7003518,28186614.07570998,0.0 - 07/16 17:00:00,0.0,101839671.07416779,0.0,101572360.46004787,0.0,88470640.88553377,0.0,108787285.11404047,12538.173936433974,12341.886484465062,12357.790264910462,14876.064764056007,187610095.6195158,400669957.53378996,35233267.594637479,0.0 - 07/16 18:00:00,0.0,95232538.00978536,0.0,97638728.02569692,0.0,80134553.42776996,0.0,101679086.84984583,17587.42440294914,17312.089992990186,17334.398387954447,20866.807700836696,263162593.7450297,374684906.3130981,14093307.03785499,0.0 - 07/16 19:00:00,0.0,100139683.32161881,0.0,106905117.47983378,0.0,88420976.9665967,0.0,111633637.57414469,17678.306510202372,17401.54932390033,17423.972996343393,20974.635851909352,264522472.85647962,407099415.34219399,63419881.67034747,0.0 - 07/16 20:00:00,0.0,92211434.04716498,0.0,90610595.72520252,0.0,85086863.74512191,0.0,102904920.24667168,10156.997245585064,9997.987558919465,10010.870986362508,12050.889515466051,151980283.10279913,370813813.76416108,63419881.67034747,69761869.8373822 - 07/16 21:00:00,0.0,79111808.89254499,0.0,76237056.25511796,0.0,73068674.98293604,0.0,88129859.45174831,10167.224126917641,10008.05433651696,10020.95073603043,12063.023319783095,152133309.06929327,316547399.58234736,49326574.63249246,69761869.8373822 - 07/16 22:00:00,0.0,71285041.82416524,0.0,68784234.5071296,0.0,65418294.272233728,0.0,78789780.66087124,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,284277351.26439979,35233267.594637479,69761869.8373822 - 07/16 23:00:00,0.0,62980942.63742849,0.0,60473820.407799158,0.0,58483157.14964052,0.0,70046707.33618427,5098.143391432224,5018.331005581644,5024.797637292732,6048.752525837101,76284088.41651732,251984627.53105245,35233267.594637479,62010550.96656194 - 07/16 24:00:00,0.0,52806752.46088721,0.0,50333181.84716117,0.0,49653099.62722921,0.0,59058186.0400774,2551.357511998267,2511.4155341926609,2514.651749443322,3027.0882966823558,38176247.132339779,211851219.97535504,35233267.594637479,46507913.22492146 - 07/17 01:00:00,0.0,37094931.887854579,0.0,34981170.57767701,0.0,35280268.3367241,0.0,41656487.72383038,2554.1182320645095,2514.1330346712545,2517.372751698652,3030.363785657788,38217556.09473193,149012858.52608607,21139960.556782485,23253956.61246073 - 07/17 02:00:00,0.0,25643792.590194428,0.0,24151372.011929197,0.0,25251011.5810181,0.0,29556133.417222274,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,104602309.600364,14093307.03785499,0.0 - 07/17 03:00:00,0.0,24707902.339010657,0.0,23018997.132082754,0.0,24437905.061453724,0.0,28470454.043438555,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,100635258.57598569,14093307.03785499,0.0 - 07/17 04:00:00,0.0,19692864.58883591,0.0,17774346.791897388,0.0,20422785.242546567,0.0,23262305.688695715,1281.1121923205299,1261.0561419585088,1262.6811415107468,1519.9907131294993,19169424.680109424,81152302.31197557,14093307.03785499,0.0 - 07/17 05:00:00,0.0,24574573.99210611,0.0,28446160.499927738,0.0,25197347.396500317,0.0,29072022.86031723,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,107290104.74885139,14093307.03785499,0.0 - 07/17 06:00:00,0.0,43528198.47012579,0.0,56026392.18703474,0.0,42330267.10473451,0.0,50829905.22167824,1274.824782393121,1254.8671626064286,1256.4841870270755,1512.5309412558204,19075345.463816804,192714762.98357333,14093307.03785499,0.0 - 07/17 07:00:00,0.0,58629698.52633492,0.0,64752648.37368929,0.0,56888925.22902952,0.0,69059248.98106955,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,249330521.11012329,14093307.03785499,15502637.741640486 - 07/17 08:00:00,0.0,82729912.3116975,0.0,86360674.02830199,0.0,77155510.57212325,0.0,94164352.60642679,20287.676494529333,19970.06913434517,19995.802606727353,24070.553732537493,303566767.08530166,340410449.51854959,56373228.15141996,38756594.35410121 - 07/17 09:00:00,0.0,84461294.60456845,0.0,84239486.75959897,0.0,69839936.71183649,0.0,85961162.66151163,17761.015517681353,17482.963506437874,17505.492089364914,21072.766932086248,265760056.9640534,324501880.7375155,56373228.15141996,38756594.35410121 - 07/17 10:00:00,0.0,68737823.13738515,0.0,64575700.173345569,0.0,44635145.439869377,0.0,56468103.882978428,12676.445807550801,12477.993683644963,12494.072852108678,15040.119060974315,189679073.05540354,234416772.63357855,28186614.07570998,0.0 - 07/17 11:00:00,0.0,74861131.52893058,0.0,67265123.97830308,0.0,43130918.6122076,0.0,55081585.937247637,10116.281036530501,9957.908769713255,9970.740551545647,12002.581287656063,151371041.92360369,240338760.0566889,28186614.07570998,0.0 - 07/17 12:00:00,0.0,84647411.25686,0.0,74168936.05445114,0.0,45153620.310586649,0.0,58820658.99784951,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,262790626.61974729,28186614.07570998,0.0 - 07/17 13:00:00,0.0,94699644.26676435,0.0,81925251.26012641,0.0,51232587.608345057,0.0,68299944.98474325,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,296157428.1199791,28186614.07570998,0.0 - 07/17 14:00:00,0.0,105802349.24304912,0.0,93127236.16908244,0.0,62179610.07020073,0.0,81027285.46420117,5010.310464645804,4931.873119649281,4938.228341549773,5944.54211099395,74969834.53261972,342136480.94653347,28186614.07570998,0.0 - 07/17 15:00:00,0.0,103848393.09626538,0.0,101513042.08696249,0.0,70941162.81720986,0.0,89413043.55288542,7500.277488620052,7382.8592453603209,7392.372813050746,8898.792937054803,112227488.94270933,365715641.55332317,28186614.07570998,0.0 - 07/17 16:00:00,0.0,94167716.65689427,0.0,96919076.30049137,0.0,69965118.34019564,0.0,88557305.1520698,12578.23625336292,12381.321618348868,12397.276214989337,14923.59717381955,188209552.53787444,349609216.449651,28186614.07570998,0.0 - 07/17 17:00:00,0.0,69463440.95026413,0.0,68587476.91425632,0.0,53080563.73609213,0.0,66778473.138337079,12578.23625336292,12381.321618348868,12397.276214989337,14923.59717381955,188209552.53787444,257909954.73894964,35233267.594637479,0.0 - 07/17 18:00:00,0.0,28683626.003276167,0.0,25694967.88290201,0.0,23566791.11940187,0.0,27218885.165401676,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,105164270.17098174,14093307.03785499,0.0 - 07/17 19:00:00,0.0,27803179.558481557,0.0,23917308.668634628,0.0,31679774.62690437,0.0,34490440.7618012,17928.90562675001,17648.225264529196,17670.96680409945,21271.962137736755,268272215.39921553,117890703.61582175,63419881.67034747,0.0 - 07/17 20:00:00,0.0,40612545.58367975,0.0,36739507.46300944,0.0,48621569.33319917,0.0,54263947.541878137,10252.635849137645,10092.128922292068,10105.133660490625,12164.361067831254,153411334.19910575,180237569.9217665,63419881.67034747,69761869.8373822 - 07/17 21:00:00,0.0,34417559.31896174,0.0,30841619.85575977,0.0,40612721.29933191,0.0,45108060.86460763,10250.775490184089,10090.29768760498,10103.300066070733,12162.153822947126,153383497.44050495,150979961.33866105,49326574.63249246,69761869.8373822 - 07/17 22:00:00,0.0,28437887.76479186,0.0,25287855.896536206,0.0,34654324.39202676,0.0,37733593.922403957,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,126113661.97575878,35233267.594637479,69761869.8373822 - 07/17 23:00:00,0.0,24512722.384042354,0.0,21281093.134519366,0.0,30996660.350576655,0.0,33302960.73728877,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,110093436.60642715,35233267.594637479,62010550.96656194 - 07/17 24:00:00,0.0,17984065.19001226,0.0,14252657.907333937,0.0,24761423.042555095,0.0,26135477.63271393,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,83133623.77261523,35233267.594637479,46507913.22492146 - 07/18 01:00:00,0.0,3992707.393124108,0.0,283630.1716722896,0.0,12659269.829818657,0.0,11466049.469828185,2566.720819562218,2526.538326310676,2529.7940288225329,3045.31627465348,38406130.01765606,28401656.86444324,21139960.556782485,23253956.61246073 - 07/18 02:00:00,0.0,0.0,0.0,0.0,0.0,1526160.793344779,0.0,0.0,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,1526160.793344779,14093307.03785499,0.0 - 07/18 03:00:00,0.0,0.0,0.0,0.0,0.0,235116.0746575957,0.0,0.0,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,235116.0746575957,14093307.03785499,0.0 - 07/18 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,0.0,14093307.03785499,0.0 - 07/18 05:00:00,0.0,0.0,0.0,0.0,0.0,2668880.9811253699,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,2668880.9811253699,14093307.03785499,0.0 - 07/18 06:00:00,0.0,18670305.91714456,0.0,34528617.07654238,0.0,34532029.471411127,0.0,31726301.73230117,1282.4876254768636,1262.410042452193,1264.0367866434067,1521.6226120659779,19190005.439898388,119457254.19739923,14093307.03785499,0.0 - 07/18 07:00:00,0.0,51248742.38644429,0.0,61251252.38880153,0.0,55281152.93575471,0.0,65627642.90620683,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,233408790.61720736,14093307.03785499,15502637.741640486 - 07/18 08:00:00,0.0,70190722.48996692,0.0,69401653.38250193,0.0,67876391.67392183,0.0,81469082.41738262,20437.2595953421,20117.31048381001,20143.233691699592,24248.02837171385,305804995.71323606,288937849.96377328,56373228.15141996,38756594.35410121 - 07/18 09:00:00,0.0,75114193.97643887,0.0,72554561.75352393,0.0,62357079.76447669,0.0,75140357.83161871,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,285166193.32605817,56373228.15141996,38756594.35410121 - 07/18 10:00:00,0.0,73631115.21059235,0.0,62764444.84022,0.0,45124187.87117764,0.0,55822859.26206215,12730.592254015475,12531.292457389221,12547.440306763003,15104.361752807723,190489272.3755115,237342607.18405215,28186614.07570998,0.0 - 07/18 11:00:00,0.0,72776879.63548067,0.0,60650995.75439776,0.0,40190721.86881973,0.0,50471798.82492177,10189.250024534454,10029.735414597655,10042.659752393174,12089.156206525244,152462885.0329819,224090396.08361996,28186614.07570998,0.0 - 07/18 12:00:00,0.0,70487234.4501669,0.0,59550251.762740667,0.0,38119582.26568282,0.0,49105223.98545484,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,217262292.46404524,28186614.07570998,0.0 - 07/18 13:00:00,0.0,78984225.38713378,0.0,66216736.09576605,0.0,42670926.41271271,0.0,56648286.59792987,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,244520174.4935424,28186614.07570998,0.0 - 07/18 14:00:00,0.0,89729838.95880538,0.0,77075786.30965682,0.0,53722601.81384675,0.0,69238285.53332864,5059.5552800734299,4980.346998304775,4986.76468374554,6002.969204708657,75706690.20059665,289766512.6156376,28186614.07570998,0.0 - 07/18 15:00:00,0.0,90420904.09574357,0.0,82829418.67018929,0.0,64490250.03465298,0.0,79127587.60867869,7578.600145674574,7459.955746607577,7469.568661008936,8991.71977989037,113399439.59945324,316868160.40926459,28186614.07570998,0.0 - 07/18 16:00:00,0.0,89048944.70765965,0.0,87732214.24736005,0.0,71827201.46953577,0.0,86592305.92388919,12631.000242790957,12433.259577679297,12449.281101681561,14986.199633150616,188999065.99908877,335200666.3484446,28186614.07570998,0.0 - 07/18 17:00:00,0.0,88362503.21882639,0.0,88623380.42840787,0.0,75360352.76480688,0.0,93270639.08542454,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,345616875.49746569,35233267.594637479,0.0 - 07/18 18:00:00,0.0,76658135.85793318,0.0,78895307.75775367,0.0,64712205.65310033,0.0,81777880.41307858,17732.772226684614,17455.162369430476,17477.65512775487,21039.257345431317,265337449.44948466,302043529.68186578,14093307.03785499,0.0 - 07/18 19:00:00,0.0,78969951.53140979,0.0,85033009.67609144,0.0,71021102.93368869,0.0,89068226.77941358,17810.06912275614,17531.24916817428,17553.839972104877,21130.967162016263,266494051.53018565,324092290.9206035,63419881.67034747,0.0 - 07/18 20:00:00,0.0,73876425.98741593,0.0,72642194.95546007,0.0,70247891.40879217,0.0,83978537.52899902,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,300745049.88066717,63419881.67034747,69761869.8373822 - 07/18 21:00:00,0.0,63538398.66118891,0.0,60805993.11198093,0.0,61486135.521180558,0.0,72754732.63536996,10222.891663299812,10062.850387232298,10075.817397050034,12129.07072674004,152966268.62755988,258585259.92972035,49326574.63249246,69761869.8373822 - 07/18 22:00:00,0.0,56570125.65137167,0.0,54017065.297610569,0.0,55395176.784942109,0.0,65181013.995302449,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,231163381.7292268,35233267.594637479,69761869.8373822 - 07/18 23:00:00,0.0,51709938.8147029,0.0,49066977.819802369,0.0,50976013.17260739,0.0,59584470.881686139,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,211337400.6887988,35233267.594637479,62010550.96656194 - 07/18 24:00:00,0.0,44401081.91810422,0.0,41965516.79742482,0.0,44093677.43058038,0.0,51301698.683305699,2556.771057157808,2516.7443292928335,2519.98741123988,3033.5112613664284,38257250.61260502,181761974.82941509,35233267.594637479,46507913.22492146 - 07/19 01:00:00,0.0,29929806.26245941,0.0,27806747.35958438,0.0,30300059.37445952,0.0,34723439.64380967,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,122760052.64031297,21139960.556782485,23253956.61246073 - 07/19 02:00:00,0.0,20928175.074280029,0.0,19470533.24697937,0.0,21310299.253668176,0.0,24438337.682383866,1276.2373528084357,1256.2576189683767,1257.8764351339667,1514.2069021324635,19096481.912555674,86147345.25731145,14093307.03785499,0.0 - 07/19 03:00:00,0.0,22358625.78775511,0.0,21056273.23376939,0.0,22569851.973006015,0.0,26155759.174620868,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,92140510.16915138,14093307.03785499,0.0 - 07/19 04:00:00,0.0,20956636.461156399,0.0,19598428.212581345,0.0,21394570.522824274,0.0,24644746.05238562,1276.787349414758,1256.7990052752255,1258.41851907233,1514.8594521112039,19104711.57314466,86594381.24894762,14093307.03785499,0.0 - 07/19 05:00:00,0.0,23129965.784201929,0.0,24888312.719538079,0.0,23468020.93639898,0.0,27158943.466833638,1275.9591280969274,1255.98374991663,1257.6022131739938,1513.8767991327493,19092318.805153084,98645242.90697262,14093307.03785499,0.0 - 07/19 06:00:00,0.0,35335765.08558131,0.0,43012153.70007328,0.0,33237339.357203429,0.0,39727035.60188635,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,151312293.74474437,14093307.03785499,0.0 - 07/19 07:00:00,0.0,47163357.5425776,0.0,50100491.097359519,0.0,42309712.927318017,0.0,51407644.70339063,5094.625012267227,5014.867707298828,5021.329876196587,6044.578103262622,76231442.51649095,190981206.27064575,14093307.03785499,15502637.741640486 - 07/19 08:00:00,0.0,79754142.83298165,0.0,81202581.46874716,0.0,72492776.96688169,0.0,88678352.88979337,20282.313292081282,19964.789893831945,19990.516563373887,24064.190497558902,303486516.88864567,322127854.1584039,56373228.15141996,38756594.35410121 - 07/19 09:00:00,0.0,92614537.94418642,0.0,91766294.0381724,0.0,75762827.79893485,0.0,93969263.0840334,17662.855495135715,17386.340197356927,17408.744271288073,20956.303812334267,264291277.59401394,354112922.8653271,56373228.15141996,38756594.35410121 - 07/19 10:00:00,0.0,88288656.70812442,0.0,79174307.87069305,0.0,55492699.7446257,0.0,71114870.14540315,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,294070534.4688463,28186614.07570998,0.0 - 07/19 11:00:00,0.0,91001735.91515546,0.0,76269802.17242971,0.0,49253098.89762299,0.0,63940913.297409478,10046.759510865646,9889.47561650191,9902.219215231564,11920.096651254495,150330783.57787303,280465550.2826176,28186614.07570998,0.0 - 07/19 12:00:00,0.0,99220488.96980417,0.0,82627785.09251192,0.0,49172634.43052921,0.0,64868443.12899795,5010.310464645804,4931.873119649281,4938.228341549773,5944.54211099395,74969834.53261972,295889351.6218432,28186614.07570998,0.0 - 07/19 13:00:00,0.0,97885751.09620986,0.0,84346413.50779122,0.0,52224572.032281767,0.0,70189006.08517799,5006.965904196718,4928.580918917953,4934.931898481774,5940.57391769083,74919789.50143418,304645742.7214608,28186614.07570998,0.0 - 07/19 14:00:00,0.0,105153019.7151986,0.0,96041067.11689726,0.0,64608371.99617292,0.0,84181568.71962975,4971.856850452331,4894.0215039595209,4900.327950189762,5898.918365618088,74394448.81279093,349984027.54789856,28186614.07570998,0.0 - 07/19 15:00:00,0.0,111793757.73269947,0.0,109179907.46006927,0.0,77994950.71785932,0.0,99741609.1836566,7452.273847209521,7335.607109911141,7345.059788402116,8841.838448932851,111509205.10004026,398710225.09428468,28186614.07570998,0.0 - 07/19 16:00:00,0.0,107357885.12850298,0.0,109492657.70179424,0.0,86146136.77932126,0.0,108347753.11184949,12438.754608659126,12244.023584813189,12259.801258923728,14758.107526720203,186122473.1248185,411344432.721468,28186614.07570998,0.0 - 07/19 17:00:00,0.0,104717923.65656403,0.0,107651050.45588298,0.0,90553337.4364277,0.0,115420761.8018376,12500.46248103342,12304.765408933868,12320.621355084577,14831.321561758,187045814.9045155,418343073.3507123,35233267.594637479,0.0 - 07/19 18:00:00,0.0,96389618.75844783,0.0,102293825.4999223,0.0,83547658.42571159,0.0,108955689.03021372,17512.567462617928,17238.40495202441,17260.618396292513,20777.9927985988,262042500.99432115,391186791.7142955,14093307.03785499,0.0 - 07/19 19:00:00,0.0,102574915.75834978,0.0,113650388.02734824,0.0,90677399.484776,0.0,118238193.72273103,17553.44351100756,17278.641078251083,17300.906370874643,20826.490669678406,262654133.8673221,425140896.993205,63419881.67034747,0.0 - 07/19 20:00:00,0.0,93935479.48946305,0.0,95636872.90813026,0.0,84990941.15276994,0.0,105843298.79186607,10078.023827522646,9920.250484449292,9933.03373973742,11957.190569535689,150798595.03648217,380406592.34222939,63419881.67034747,69761869.8373822 - 07/19 21:00:00,0.0,80218252.22155033,0.0,81148897.026668,0.0,73516211.19920668,0.0,90605402.42446728,10090.085035918712,9932.1228723779,9944.921426449666,11971.500732892993,150979068.24350138,325488762.8718923,49326574.63249246,69761869.8373822 - 07/19 22:00:00,0.0,70003605.15575123,0.0,70916315.92524342,0.0,64606255.64957933,0.0,79401786.7890039,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,284927963.51957789,35233267.594637479,69761869.8373822 - 07/19 23:00:00,0.0,59644920.0285474,0.0,60167124.81628978,0.0,56238426.94215019,0.0,68586645.06317389,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,244637116.85016126,35233267.594637479,62010550.96656194 - 07/19 24:00:00,0.0,47866060.170756448,0.0,48063844.70355947,0.0,47345416.150582429,0.0,56157984.722516868,2546.118450803095,2506.2584914778456,2509.4880613526,3020.8723505615446,38097854.475102309,199433305.7474152,35233267.594637479,46507913.22492146 - 07/20 01:00:00,0.0,33098340.08374212,0.0,32818257.33612194,0.0,34226849.46653959,0.0,40473231.83202626,2549.649564786242,2509.734325212857,2512.968374054151,3025.0618825116409,38150690.927633609,140616678.71842993,21139960.556782485,23253956.61246073 - 07/20 02:00:00,0.0,22183132.88623044,0.0,22113793.389248168,0.0,22909956.199681485,0.0,27115414.182580476,1276.2373528084357,1256.2576189683767,1257.8764351339667,1514.2069021324635,19096481.912555674,94322296.65774057,14093307.03785499,0.0 - 07/20 03:00:00,0.0,19794988.99723707,0.0,19621454.326130898,0.0,20978290.01653,0.0,24631930.055298009,1277.0591160322547,1257.0665173356272,1258.686375849326,1515.181892828894,19108778.047365965,85026663.39519596,14093307.03785499,0.0 - 07/20 04:00:00,0.0,17405281.77607287,0.0,17101151.879059677,0.0,19122849.869921417,0.0,22264194.453390849,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,75893477.97844482,14093307.03785499,0.0 - 07/20 05:00:00,0.0,19525036.50078071,0.0,23060693.493518,0.0,22117188.712372833,0.0,25606386.298556024,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,90309305.00522757,14093307.03785499,0.0 - 07/20 06:00:00,0.0,42881857.873155448,0.0,57834773.2000766,0.0,45398110.297958,0.0,54205139.180846948,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,200319880.552037,14093307.03785499,0.0 - 07/20 07:00:00,0.0,63960803.81448345,0.0,70172774.59808281,0.0,61636946.32656144,0.0,75099671.71649416,1272.7575307898933,1252.8322742126948,1254.4466764719496,1510.0782261404357,19044412.947413904,270870196.45562186,14093307.03785499,15502637.741640486 - 07/20 08:00:00,0.0,85593032.32398653,0.0,86195768.3341004,0.0,77573455.9536125,0.0,94826561.14816644,5077.199365701253,4997.714862480594,5004.154928187051,6023.903238789915,75970700.62257174,344188817.7598659,56373228.15141996,38756594.35410121 - 07/20 09:00:00,0.0,99467563.66750863,0.0,95658151.39231804,0.0,79371887.67909433,0.0,98169027.25417279,12652.404693057399,12454.32893728382,12470.37761130644,15011.595196333652,189319343.17673273,372666629.9930937,56373228.15141996,38756594.35410121 - 07/20 10:00:00,0.0,95636986.00244047,0.0,82383823.70669796,0.0,59119177.40175731,0.0,74937230.21750739,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,312077217.3284031,28186614.07570998,0.0 - 07/20 11:00:00,0.0,107506027.69776735,0.0,87957568.31871332,0.0,58463045.00241379,0.0,74632656.14524576,12566.423033413022,12369.693336561038,12385.632948973553,14909.581239287323,188032790.00964577,328559297.1641402,28186614.07570998,0.0 - 07/20 12:00:00,0.0,109479309.98424226,0.0,85298330.87969215,0.0,54813799.32253381,0.0,72342931.19712076,7522.904361860385,7405.131890679036,7414.674158946277,8925.638858433605,112566057.3717095,321934371.383589,28186614.07570998,0.0 - 07/20 13:00:00,0.0,115190318.66946714,0.0,90317366.30431831,0.0,59596152.77755242,0.0,80236542.96339116,7502.837480538101,7385.379160127326,7394.895974985132,8901.830269744669,112265794.38742283,345340380.71472898,28186614.07570998,0.0 - 07/20 14:00:00,0.0,121067229.72562173,0.0,103191972.1493938,0.0,72269759.11722635,0.0,94207469.57079444,7465.969967204082,7349.088814592178,7358.558865635683,8858.088372493356,111714141.67173106,390736430.5630363,28186614.07570998,0.0 - 07/20 15:00:00,0.0,120769058.48151198,0.0,112506443.52852898,0.0,83111828.82739397,0.0,104985026.12849033,7449.501721906172,7332.878382746557,7342.327544994064,8838.549428078957,111467725.4798127,421372356.9659252,28186614.07570998,0.0 - 07/20 16:00:00,0.0,117969515.00568705,0.0,117940768.12745086,0.0,90627079.01835136,0.0,111864155.3242783,17395.081761473917,17122.758511448745,17144.822933474377,20638.600498896354,260284549.33905626,438401517.4757676,28186614.07570998,0.0 - 07/20 17:00:00,0.0,121764191.64485976,0.0,127302089.73220819,0.0,98892966.52084917,0.0,124006422.95198472,22397.909901612245,22047.266443776538,22075.67659690705,26574.265117480063,335142425.0151932,471965670.8499018,35233267.594637479,0.0 - 07/20 18:00:00,0.0,108809727.62588945,0.0,116149786.45895982,0.0,88637479.6237163,0.0,114489489.93854803,17451.908856800645,17178.695967997046,17200.83247114486,20706.023678277925,261134859.50719375,428086483.6471136,14093307.03785499,0.0 - 07/20 19:00:00,0.0,102956274.86337438,0.0,109651663.6170546,0.0,86897469.60172394,0.0,112236806.20619539,17500.647473446785,17226.671572507414,17248.869897118406,20763.8501864612,261864140.8663217,411742214.2883483,63419881.67034747,0.0 - 07/20 20:00:00,0.0,97841429.96171323,0.0,99243006.50466503,0.0,86666320.40230808,0.0,107528336.4832128,15045.80872372077,14810.263781358071,14829.348317892554,17851.27771686721,225132114.743419,391279093.35189917,63419881.67034747,69761869.8373822 - 07/20 21:00:00,0.0,86545765.12509039,0.0,87488547.94507997,0.0,78066680.58178781,0.0,95309294.11899963,12546.342439120412,12349.927107718111,12365.84124932726,14885.75638068255,187732321.83665399,347410287.77095779,49326574.63249246,69761869.8373822 - 07/20 22:00:00,0.0,78480597.03210506,0.0,79732767.84728636,0.0,72496237.24885778,0.0,88434715.72733486,10037.073951296328,9879.94168617449,9892.672999461809,11908.605104546039,150185857.46932323,319144317.855584,35233267.594637479,69761869.8373822 - 07/20 23:00:00,0.0,71517625.82758256,0.0,72827950.95115647,0.0,67566567.51836287,0.0,83082876.06410457,7544.590918151392,7426.478939885685,7436.048716004676,8951.369129646138,112890555.73327641,294995020.3612065,35233267.594637479,62010550.96656194 - 07/20 24:00:00,0.0,62662273.45154922,0.0,63927948.39355734,0.0,59777728.424220319,0.0,73663650.59718299,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,260031600.86650986,35233267.594637479,46507913.22492146 - 07/21 01:00:00,0.0,49815301.8975526,0.0,50134857.7146701,0.0,45931736.41863339,0.0,57027151.516361538,2521.0216045381228,2481.554541022963,2484.752277336077,2991.0959004736725,37722327.564135,202909047.5472176,21139960.556782485,23253956.61246073 - 07/21 02:00:00,0.0,38332757.33162294,0.0,39261424.22689102,0.0,34404709.495960827,0.0,43059676.46718536,1263.8216387626874,1244.0362752421639,1245.639342958956,1499.4761313541247,18910704.19794455,155058567.52166016,14093307.03785499,0.0 - 07/21 03:00:00,0.0,34734506.51865101,0.0,35556825.65698643,0.0,31596551.479687267,0.0,39328221.27093604,1267.6445807550802,1247.7993683644966,1249.407285210868,1504.0119060974315,18967907.305540354,141216104.92626075,14093307.03785499,0.0 - 07/21 04:00:00,0.0,30011442.346492739,0.0,30655040.917058544,0.0,28098975.42387537,0.0,34703489.26040959,1270.9030158647052,1251.00679206462,1252.6188420038039,1507.8779149728869,19016663.633661659,123468947.94783625,14093307.03785499,0.0 - 07/21 05:00:00,0.0,28686303.94701961,0.0,31809216.251885278,0.0,27636303.64117253,0.0,33752223.63956404,1273.9515803918226,1254.0076307453563,1255.6235475714696,1511.4949204134496,19062279.644839556,121884047.47964145,14093307.03785499,0.0 - 07/21 06:00:00,0.0,45280123.17296505,0.0,55341067.074603769,0.0,41809161.856783729,0.0,51520932.7823779,1270.9030158647052,1251.00679206462,1252.6188420038039,1507.8779149728869,19016663.633661659,193951284.88673044,14093307.03785499,0.0 - 07/21 07:00:00,0.0,51018566.32849068,0.0,53680099.80848808,0.0,45245200.47646131,0.0,56017750.0900655,1269.9473833650844,1250.0661201700539,1251.676957957489,1506.7440934908219,19002364.397940417,205961616.70350559,14093307.03785499,15502637.741640486 - 07/21 08:00:00,0.0,74305318.7817471,0.0,74472711.08930326,0.0,64961338.86873338,0.0,80006240.86770636,1266.9679808651536,1247.1333607720665,1248.740419399677,1503.2091461554392,18957783.26589241,293745609.6074901,56373228.15141996,38756594.35410121 - 07/21 09:00:00,0.0,83594865.63318895,0.0,82852074.2975799,0.0,65370772.31909131,0.0,81661919.94308502,5056.717605373321,4977.553747931464,4983.967833984023,5999.602411997681,75664229.75743138,313479632.1929452,56373228.15141996,38756594.35410121 - 07/21 10:00:00,0.0,66212975.566758129,0.0,63207573.26588917,0.0,42924634.13632274,0.0,55031271.064515139,7585.076408059981,7466.330621897195,7475.951750976034,8999.403617996522,113496344.63614704,227376454.03348515,28186614.07570998,0.0 - 07/21 11:00:00,0.0,74727699.2244846,0.0,70964604.63909304,0.0,45326529.09909139,0.0,58452025.86182007,7593.54044432593,7474.662152096436,7484.29401720232,9009.445873933944,113622992.95521108,249470858.82448913,28186614.07570998,0.0 - 07/21 12:00:00,0.0,77066202.96419335,0.0,71965370.86752087,0.0,45466801.45290674,0.0,59174419.93688779,5048.009725295269,4968.9821913404889,4975.385232067499,5989.27084468529,75533932.77619876,253672795.22150875,28186614.07570998,0.0 - 07/21 13:00:00,0.0,94488639.3549889,0.0,84436578.69604843,0.0,49708341.86164817,0.0,66579061.88587407,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,295212621.7985596,28186614.07570998,0.0 - 07/21 14:00:00,0.0,100832474.0330697,0.0,90380067.47237686,0.0,57042740.71518524,0.0,77276473.09400325,7546.941752017752,7428.79297100932,7438.365728993603,8954.158304291732,112925731.52272466,325531755.31463506,28186614.07570998,0.0 - 07/21 15:00:00,0.0,83348209.75421943,0.0,77752857.56209235,0.0,61412145.27196501,0.0,78595905.28068564,10046.759510865646,9889.47561650191,9902.219215231564,11920.096651254495,150330783.57787303,301109117.8689624,28186614.07570998,0.0 - 07/21 16:00:00,0.0,71162905.227623,0.0,69591998.50504223,0.0,57470703.31046564,0.0,69573374.55098373,12597.529784403307,12400.313105561612,12416.292174671777,14946.488211919612,188498243.79560275,267798981.5941146,28186614.07570998,0.0 - 07/21 17:00:00,0.0,65953546.26206052,0.0,66937509.06940773,0.0,56694409.83443036,0.0,69903349.07848437,15148.443765738737,14911.2920526467,14930.506774420479,17973.050276401118,226667854.32914535,259488814.24438299,35233267.594637479,0.0 - 07/21 18:00:00,0.0,63680694.692444268,0.0,66099157.44452699,0.0,55315130.0425078,0.0,70009515.3901762,17703.491813928376,17426.34034699819,17448.79596520488,21004.517253398106,264899323.36630637,255104497.56965528,14093307.03785499,0.0 - 07/21 19:00:00,0.0,64603095.08927119,0.0,69992416.47012919,0.0,58919179.33699906,0.0,74864640.5408645,10169.738930740266,10010.529770616604,10023.429359979575,12066.007038522675,152170938.35949285,268379331.43726395,63419881.67034747,0.0 - 07/21 20:00:00,0.0,57615254.17273481,0.0,56978245.13936049,0.0,55099351.90752572,0.0,66215873.24944349,7657.424116850613,7537.545713810257,7547.258610803801,9085.241412794781,114578891.47533402,235908724.46906448,63419881.67034747,69761869.8373822 - 07/21 21:00:00,0.0,48386937.911978308,0.0,46465792.28925505,0.0,47122361.401151198,0.0,55925998.378880809,5106.0537098561649,5026.117486494988,5032.594151881483,6058.137816691688,76402451.39372756,197901089.98126538,49326574.63249246,69761869.8373822 - 07/21 22:00:00,0.0,38320731.5223393,0.0,36156087.838659558,0.0,38743257.30653113,0.0,45164835.38856515,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,158384912.05609513,35233267.594637479,69761869.8373822 - 07/21 23:00:00,0.0,27717894.732669973,0.0,24936873.38632202,0.0,30421533.355035504,0.0,34225767.03125664,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,117302068.50528413,35233267.594637479,62010550.96656194 - 07/21 24:00:00,0.0,16249503.478714483,0.0,13130459.471000465,0.0,20666691.410369368,0.0,21805116.79869572,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,71851771.15878004,35233267.594637479,46507913.22492146 - 07/22 01:00:00,0.0,594196.8113665291,0.0,0.0,0.0,3793291.0310914928,0.0,2003605.3592558816,2585.1118605609956,2544.641452131772,2547.9204823689976,3067.136542769336,38681317.21619196,6391093.201713903,21139960.556782485,23253956.61246073 - 07/22 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 07/22 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 - 07/22 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 - 07/22 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3534074326945,1273.1057185644959,1274.7462452260655,1534.5144475841749,19352591.34770675,0.0,14093307.03785499,0.0 - 07/22 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 07/22 07:00:00,0.0,0.0,0.0,5933255.784449538,0.0,14533577.511811089,0.0,9501556.094235972,5164.546505948632,5083.694566952808,5090.245426284242,6127.537286448107,77277685.62828164,29968389.390496598,14093307.03785499,15502637.741640486 - 07/22 08:00:00,0.0,31003954.864787,0.0,30830584.855996029,0.0,36748705.35778813,0.0,39937234.88640399,20645.749610713206,20322.53654909671,20348.7242117184,24495.393816398515,308924655.07653656,138520479.96497516,56373228.15141996,38756594.35410121 - 07/22 09:00:00,0.0,35938189.6733059,0.0,29679852.495533926,0.0,31769700.376132918,0.0,35097446.37481078,18065.030909374054,17782.219480459615,17805.1336852536,21433.469589348697,270309073.19196948,132485188.9197835,56373228.15141996,38756594.35410121 - 07/22 10:00:00,0.0,25109204.13207251,0.0,14960462.909827162,0.0,13109776.260725657,0.0,13376338.019643818,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,66555781.32226914,28186614.07570998,0.0 - 07/22 11:00:00,0.0,25669666.60884837,0.0,14625473.903997137,0.0,10096291.774801182,0.0,10111139.689617789,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,60502571.97726448,28186614.07570998,0.0 - 07/22 12:00:00,0.0,25570360.824330816,0.0,13671238.111289194,0.0,7762732.526781092,0.0,7907970.820392521,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,54912302.282793629,28186614.07570998,0.0 - 07/22 13:00:00,0.0,26107453.728228146,0.0,16053560.678273485,0.0,9651595.184345615,0.0,10803829.592985902,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,62616439.18383315,28186614.07570998,0.0 - 07/22 14:00:00,0.0,35931026.84925322,0.0,23327392.19737891,0.0,14610677.521843804,0.0,17377367.816841149,5128.151858906457,5047.869684899492,5054.374380213832,6084.356427001652,76733108.46367717,91246464.38531709,28186614.07570998,0.0 - 07/22 15:00:00,0.0,35106605.166173059,0.0,25583199.955796325,0.0,18786258.03854535,0.0,21597556.90070691,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,101073620.06122163,28186614.07570998,0.0 - 07/22 16:00:00,0.0,33749671.927673097,0.0,27713914.234924124,0.0,23451381.340521277,0.0,25773056.184533158,12831.455361284885,12630.576533898336,12646.852320938411,15224.031979401374,191998498.30388285,110688023.68765165,28186614.07570998,0.0 - 07/22 17:00:00,0.0,26798498.869029475,0.0,23351797.423538109,0.0,22587510.958432307,0.0,25006344.116932516,12835.730650307973,12634.784892474212,12651.066102413852,15229.104446629452,192062469.93057177,97744151.3679324,35233267.594637479,0.0 - 07/22 18:00:00,0.0,24826392.658981295,0.0,23185215.44186274,0.0,24144595.342365818,0.0,27848786.0444129,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,100004989.48762274,14093307.03785499,0.0 - 07/22 19:00:00,0.0,25680075.44105819,0.0,25892848.346817279,0.0,27587433.887127609,0.0,32249855.415364978,18025.321297533203,17743.131529999955,17765.99536598015,21386.3556507086,269714893.8391988,111410213.09036805,63419881.67034747,0.0 - 07/22 20:00:00,0.0,22151412.20862448,0.0,18548291.75503892,0.0,27150150.09963704,0.0,28886287.987615006,10323.818044642241,10162.196747247015,10175.2917749897,12248.81602560601,154476441.33294589,96736142.05091544,63419881.67034747,69761869.8373822 - 07/22 21:00:00,0.0,12457848.359495869,0.0,7814073.409369666,0.0,19786728.39645578,0.0,18970688.087777623,10337.047499538165,10175.219092558591,10188.330900922372,12264.512268840683,154674395.1426953,59029338.25309894,49326574.63249246,69761869.8373822 - 07/22 22:00:00,0.0,4269685.0084223239,0.0,563252.4630709702,0.0,12999301.117359037,0.0,10228625.130889586,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,77388817.95608746,28060863.71974192,35233267.594637479,69761869.8373822 - 07/22 23:00:00,0.0,25916.53939717403,0.0,0.0,0.0,8443673.666859447,0.0,4556265.7728593009,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,77400688.63593015,13025855.97911592,35233267.594637479,62010550.96656194 - 07/22 24:00:00,0.0,0.0,0.0,0.0,0.0,4463870.039986115,0.0,40341.54013356652,2585.6933312850158,2545.2138198231348,2548.4935876145507,3067.8264355872836,38690017.827515948,4504211.580119681,35233267.594637479,46507913.22492146 - 07/23 01:00:00,1531241.0404738768,0.0,7011316.276682725,0.0,0.0,0.0,0.0,0.0,2586.7775757242359,2546.2810902133935,2549.562233291641,3069.1128502262638,47248798.81519652,0.0,21139960.556782485,23253956.61246073 - 07/23 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.489339991631,19352274.702282534,0.0,14093307.03785499,0.0 - 07/23 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 07/23 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1566881634292,1272.912078972089,1274.5523561092792,1534.2810476804278,19349647.81533081,0.0,14093307.03785499,0.0 - 07/23 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1566881634292,1272.912078972089,1274.5523561092792,1534.2810476804278,19349647.81533081,0.0,14093307.03785499,0.0 - 07/23 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3087698752136,1273.0617798163044,1274.7022498583124,1534.4614868261443,19351923.430953508,0.0,14093307.03785499,0.0 - 07/23 07:00:00,0.0,0.0,0.0,4863521.057390995,0.0,10433839.121441152,0.0,5797842.613908396,5164.954008148201,5084.095689629423,5090.647065848369,6128.02077225258,77283783.12916287,21095202.792740544,14093307.03785499,15502637.741640486 - 07/23 08:00:00,0.0,38801834.422375667,0.0,41576801.93876766,0.0,44209713.588121619,0.0,49201826.72822359,20597.71711098278,20275.256007110016,20301.382743927534,24438.405088981595,308205939.423607,173790176.67748855,56373228.15141996,38756594.35410121 - 07/23 09:00:00,0.0,51079997.20903335,0.0,44550325.54275138,0.0,44048772.19368264,0.0,50844067.8102834,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,190523162.75575079,56373228.15141996,38756594.35410121 - 07/23 10:00:00,0.0,47009198.56795971,0.0,33350616.211513584,0.0,27773378.939625019,0.0,32283168.987072544,12791.553484127195,12591.299328071238,12607.524502422664,15176.689925302064,191401442.0637234,140416362.70617087,28186614.07570998,0.0 - 07/23 11:00:00,0.0,55494129.81614928,0.0,38618328.99572554,0.0,25939263.02187894,0.0,31221664.374853326,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,151273386.20860709,28186614.07570998,0.0 - 07/23 12:00:00,0.0,45422278.7003724,0.0,32706903.998812073,0.0,21138764.095697125,0.0,25648333.809125574,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,124916280.60400719,28186614.07570998,0.0 - 07/23 13:00:00,0.0,46945902.875414218,0.0,35664917.79234092,0.0,23550771.30187237,0.0,29432420.431647228,5087.3590345498209,5007.715479818054,5014.168432340691,6035.957298060339,76122720.88116805,135594012.40127475,28186614.07570998,0.0 - 07/23 14:00:00,0.0,52844500.36245176,0.0,41098935.026507269,0.0,27262411.35875266,0.0,34116434.219913329,5107.149397659032,5027.196021100902,5033.67407628932,6059.437808444815,76418846.29257864,155322280.967625,28186614.07570998,0.0 - 07/23 15:00:00,0.0,46136057.93013317,0.0,39689525.91438018,0.0,28276096.060310998,0.0,34459905.49546152,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,148561585.40028588,28186614.07570998,0.0 - 07/23 16:00:00,0.0,40629917.94568898,0.0,36315301.47077792,0.0,27569761.274218747,0.0,32907177.723420264,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,137422158.4141059,28186614.07570998,0.0 - 07/23 17:00:00,0.0,35607490.40225867,0.0,32361798.167263979,0.0,25399569.743227759,0.0,30279145.423077339,12783.85528578904,12583.721646464164,12599.937056199402,15167.55630683214,191286253.06302513,123648003.73582776,35233267.594637479,0.0 - 07/23 18:00:00,0.0,27876467.468979036,0.0,25165916.416132966,0.0,20470592.457235569,0.0,24183180.72592766,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,97696157.06827525,14093307.03785499,0.0 - 07/23 19:00:00,0.0,35912681.63361811,0.0,32593119.434071069,0.0,32981633.848672458,0.0,38144385.433631319,17935.570692487418,17654.785987419113,17677.535981150453,21279.869983812987,268371945.52153189,139631820.34999297,63419881.67034747,0.0 - 07/23 20:00:00,0.0,44545271.17307535,0.0,39267828.97683701,0.0,47437740.10341285,0.0,53088218.4401796,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,184339058.6935048,63419881.67034747,69761869.8373822 - 07/23 21:00:00,0.0,36675183.85821243,0.0,32070251.000114569,0.0,40617812.76305256,0.0,45020625.69517826,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,154383873.31655783,49326574.63249246,69761869.8373822 - 07/23 22:00:00,0.0,30923774.954117817,0.0,27085889.97252966,0.0,35061546.454843398,0.0,38808945.39153877,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,131880156.77302963,35233267.594637479,69761869.8373822 - 07/23 23:00:00,0.0,25105399.990206887,0.0,21400744.293177718,0.0,30731855.479953689,0.0,32865935.66124003,5127.23929878721,5046.971411079152,5053.474948875989,6083.273709254729,76719453.72478949,110103935.42457831,35233267.594637479,62010550.96656194 - 07/23 24:00:00,0.0,18861421.89727205,0.0,15744970.480113958,0.0,24617407.776474719,0.0,25682300.88276822,2564.0759294532288,2523.934842449746,2527.187190106916,3042.178213500826,38366554.231838587,84906101.03662895,35233267.594637479,46507913.22492146 - 07/24 01:00:00,0.0,7807295.098592523,0.0,4535476.8875590269,0.0,13187303.142207502,0.0,12684126.515798269,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,38214201.64415732,21139960.556782485,23253956.61246073 - 07/24 02:00:00,0.0,0.0,0.0,0.0,0.0,2983618.6442466445,0.0,704826.60497034,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,3688445.249216985,14093307.03785499,0.0 - 07/24 03:00:00,0.0,0.0,0.0,0.0,0.0,1074963.9520390027,0.0,0.0,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,1074963.9520390027,14093307.03785499,0.0 - 07/24 04:00:00,0.0,0.0,0.0,0.0,0.0,872660.9084282573,0.0,0.0,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,872660.9084282573,14093307.03785499,0.0 - 07/24 05:00:00,0.0,0.0,0.0,0.0,0.0,3310310.4134629697,0.0,0.0,1283.7834998370877,1263.685629657563,1265.3140175730874,1523.1601175278184,19209395.752544,3310310.4134629697,14093307.03785499,0.0 - 07/24 06:00:00,0.0,12697360.95651784,0.0,20120551.205915844,0.0,19931673.06103141,0.0,20931953.175829144,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,73681538.39929423,14093307.03785499,0.0 - 07/24 07:00:00,0.0,34797502.33152367,0.0,40203692.83762151,0.0,35976271.171161849,0.0,41929555.63300665,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,152907021.97331367,14093307.03785499,15502637.741640486 - 07/24 08:00:00,0.0,57836773.15304138,0.0,59426227.32873306,0.0,51853799.28678136,0.0,61429641.731107909,20497.795077128478,20176.89827133614,20202.89826417195,24319.851410071988,306710794.88175079,230546441.4996637,56373228.15141996,38756594.35410121 - 07/24 09:00:00,0.0,54760010.69817935,0.0,51992473.215570818,0.0,44206555.880526449,0.0,52286419.28752436,17918.677922327137,17638.157676727038,17660.88624318283,21259.827356854494,268119177.11672939,203245459.08180098,56373228.15141996,38756594.35410121 - 07/24 10:00:00,0.0,31501137.02994249,0.0,29829957.74178876,0.0,21200875.563450993,0.0,25232546.362008536,12778.614579124765,12578.56298404037,12594.771746312541,15161.33840842505,191207835.78444983,107764516.69719078,28186614.07570998,0.0 - 07/24 11:00:00,0.0,33705974.93513865,0.0,32779526.401231845,0.0,22464583.88865268,0.0,27301666.281255809,10212.107419712329,10052.234972989976,10065.188303762967,12116.275633383377,152804902.7874551,116251751.50627899,28186614.07570998,0.0 - 07/24 12:00:00,0.0,22812793.64142281,0.0,20527085.838878056,0.0,14846217.703421707,0.0,16517732.621419589,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,74703829.80514215,28186614.07570998,0.0 - 07/24 13:00:00,0.0,9569984.427636667,0.0,6217975.423992686,0.0,6149234.323238712,0.0,4534456.505359583,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,26471650.680227646,28186614.07570998,0.0 - 07/24 14:00:00,0.0,5578871.51344668,0.0,1940459.350860973,0.0,3532377.753775056,0.0,1172819.8409689856,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,12224528.459051695,28186614.07570998,0.0 - 07/24 15:00:00,0.0,4076978.7613868468,0.0,1399722.5341042672,0.0,3486404.7615382128,0.0,1604791.4286925428,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,10567897.48572187,28186614.07570998,0.0 - 07/24 16:00:00,0.0,1130827.72457195,0.0,545853.8118190242,0.0,2112890.327614145,0.0,685629.3294856923,12818.098246968028,12617.428527697877,12633.687372189974,15208.184273136822,191798634.31197373,4475201.193490811,28186614.07570998,0.0 - 07/24 17:00:00,0.0,2893478.6679485228,0.0,0.0,0.0,5627639.419394538,0.0,3084913.875149882,12796.576754659349,12596.243958366122,12612.47550437837,15182.649844038442,191476605.82119224,11606031.962492943,35233267.594637479,0.0 - 07/24 18:00:00,0.0,3743135.249074123,0.0,2170971.5894504536,0.0,5850806.960342566,0.0,4724673.162795069,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,16489586.96166221,14093307.03785499,0.0 - 07/24 19:00:00,0.0,21994650.82688099,0.0,20845584.673087598,0.0,26400708.164063787,0.0,29528759.5337501,17932.253521520415,17651.52074738242,17674.266533518694,21275.934287084838,268322310.32222293,98769703.19778246,63419881.67034747,0.0 - 07/24 20:00:00,0.0,42049812.48578113,0.0,39624826.2526032,0.0,47202688.57007633,0.0,53990330.64679928,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,182867657.95525999,63419881.67034747,69761869.8373822 - 07/24 21:00:00,0.0,30411586.359148716,0.0,28291971.36422484,0.0,35368152.958568368,0.0,39923975.385842997,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,133995686.0677849,49326574.63249246,69761869.8373822 - 07/24 22:00:00,0.0,23129476.526843609,0.0,20947809.126318844,0.0,28911614.775619084,0.0,31253825.08201429,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,104242725.5107958,35233267.594637479,69761869.8373822 - 07/24 23:00:00,0.0,22166509.906291736,0.0,20043050.256093556,0.0,27862141.90846099,0.0,30103334.08764352,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,100175036.1584898,35233267.594637479,62010550.96656194 - 07/24 24:00:00,0.0,19006706.693497756,0.0,16720787.708481679,0.0,24076162.043807225,0.0,25920332.225091697,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,85723988.67087835,35233267.594637479,46507913.22492146 - 07/25 01:00:00,0.0,10087229.720388627,0.0,7949929.232877076,0.0,14672857.557794802,0.0,15243705.093884346,2557.8018331879968,2517.7589683319786,2521.0033577449896,3034.734237779107,38272674.22935866,47953721.604944858,21139960.556782485,23253956.61246073 - 07/25 02:00:00,0.0,2128897.133733551,0.0,190879.16983802399,0.0,6917827.131686514,0.0,5856797.64050382,1278.9009165939984,1258.8794841659893,1260.5016788724948,1517.3671188895535,19136337.11467933,15094401.075761909,14093307.03785499,0.0 - 07/25 03:00:00,0.0,1283442.9902087525,0.0,0.0,0.0,6150836.230644109,0.0,4935994.0298689859,1279.6576754659348,1259.6243958366125,1261.247550437837,1518.2649844038443,19147660.582119224,12370273.250721846,14093307.03785499,0.0 - 07/25 04:00:00,0.0,0.0,0.0,0.0,0.0,3894321.482094752,0.0,1930793.3913968134,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,5825114.873491566,14093307.03785499,0.0 - 07/25 05:00:00,0.0,0.0,0.0,0.0,0.0,3506403.4237753397,0.0,1360875.4403543126,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,4867278.864129652,14093307.03785499,0.0 - 07/25 06:00:00,0.0,4290863.29001838,0.0,5166935.873133176,0.0,8679978.61758092,0.0,8793519.160285073,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,26931296.94101755,14093307.03785499,0.0 - 07/25 07:00:00,0.0,14030713.824375978,0.0,13458103.1212193,0.0,13511943.74785406,0.0,15360719.836273827,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,56361480.52972317,14093307.03785499,15502637.741640486 - 07/25 08:00:00,0.0,29431651.354945605,0.0,26964387.11836795,0.0,28942822.34880894,0.0,32685822.609274128,20478.489054088157,20157.89448768805,20183.86999220895,24296.945550690853,306421916.7048336,118024683.43139662,56373228.15141996,38756594.35410121 - 07/25 09:00:00,0.0,24740909.97895891,0.0,21853308.032261578,0.0,24423235.500622207,0.0,27154433.75268562,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,98171887.26452832,56373228.15141996,38756594.35410121 - 07/25 10:00:00,0.0,22786492.510996745,0.0,17763968.512079278,0.0,13209153.417672717,0.0,15257354.434126076,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,69016968.8748748,28186614.07570998,0.0 - 07/25 11:00:00,0.0,42345714.41902961,0.0,30905869.21514133,0.0,18918463.677053159,0.0,23390858.982110569,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,115560906.29333467,28186614.07570998,0.0 - 07/25 12:00:00,0.0,24066767.44696784,0.0,14297571.515633783,0.0,9264678.037401034,0.0,10030512.352817258,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,57659529.35281992,28186614.07570998,0.0 - 07/25 13:00:00,0.0,37485072.0105599,0.0,21148805.832192273,0.0,12393797.113955088,0.0,15744609.281586674,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,86772284.23829393,28186614.07570998,0.0 - 07/25 14:00:00,0.0,63343134.515255209,0.0,44844951.30341227,0.0,25930117.097700977,0.0,34366239.77578578,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,168484442.69215424,28186614.07570998,0.0 - 07/25 15:00:00,0.0,60453021.323640007,0.0,51582767.15086401,0.0,35312095.98946871,0.0,43881465.29419536,7640.152802712067,7520.544785316511,7530.235774878441,9064.749657855988,114320458.87474683,191229349.7581681,28186614.07570998,0.0 - 07/25 16:00:00,0.0,42420694.79465304,0.0,40908470.39047631,0.0,35164451.39195465,0.0,41057636.95876491,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,159551253.53584893,28186614.07570998,0.0 - 07/25 17:00:00,0.0,40821500.12659415,0.0,40874282.31149974,0.0,38960673.6520529,0.0,45826135.78478616,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,166482591.87493295,35233267.594637479,0.0 - 07/25 18:00:00,0.0,33542832.01573588,0.0,33970415.056774768,0.0,32091254.59158853,0.0,39005504.324881378,17893.744082588822,17613.614180901233,17636.31112055755,21230.244307788165,267746089.29060877,138610005.98898057,14093307.03785499,0.0 - 07/25 19:00:00,0.0,36761787.92321367,0.0,39113052.884953279,0.0,37737066.32668993,0.0,46049316.341728288,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,159661223.47658516,63419881.67034747,0.0 - 07/25 20:00:00,0.0,35484560.13214116,0.0,32918129.12981122,0.0,38847353.136260528,0.0,44099765.52152513,10275.211692084886,10114.35133620645,10127.384710253531,12191.14644371525,153749139.05613644,151349807.919738,63419881.67034747,69761869.8373822 - 07/25 21:00:00,0.0,24664272.98627119,0.0,21101344.717149736,0.0,29678943.561202166,0.0,32325540.973151335,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,107770102.23777443,49326574.63249246,69761869.8373822 - 07/25 22:00:00,0.0,14720784.289437423,0.0,10988517.203707036,0.0,21416239.361144958,0.0,21701894.59910961,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77251923.80271465,68827435.45339903,35233267.594637479,69761869.8373822 - 07/25 23:00:00,0.0,8205644.488599548,0.0,4378012.258093934,0.0,16046603.978573252,0.0,14684221.501174115,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,43314482.22644085,35233267.594637479,62010550.96656194 - 07/25 24:00:00,0.0,2791954.1812937546,0.0,0.0,0.0,10902753.253354608,0.0,8473859.93245383,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,38635725.44235732,22168567.36710219,35233267.594637479,46507913.22492146 - 07/26 01:00:00,0.0,0.0,0.0,0.0,0.0,315923.88523823066,0.0,0.0,2584.4150602688575,2543.9555603781957,2547.2337067738887,3066.309815821216,38670890.915671769,315923.88523823066,21139960.556782485,23253956.61246073 - 07/26 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.079666480328,1272.8362630778052,1274.4764425184774,1534.1896643935266,19348495.331292496,0.0,14093307.03785499,0.0 - 07/26 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 - 07/26 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 07/26 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 07/26 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.490860958758,1272.256675416517,1273.8961079993304,1533.4910691182725,19339684.96857436,0.0,14093307.03785499,0.0 - 07/26 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.172541198749,5090.216870384998,5096.776134370124,6135.398824341056,77376831.73306175,0.0,14093307.03785499,15502637.741640486 - 07/26 08:00:00,0.0,10547423.148658919,0.0,9570793.525222196,0.0,22106184.090731257,0.0,16590331.121722404,20677.660878846906,20353.94824037473,20380.176380166762,24533.255317911156,309402146.9422784,58814731.88633477,56373228.15141996,38756594.35410121 - 07/26 09:00:00,0.0,25011876.249882327,0.0,17805153.23822987,0.0,24223126.94389388,0.0,24828646.307523829,18087.591831984333,17804.427207617697,17827.37002933482,21460.237262822433,270646654.79433348,91868802.7395299,56373228.15141996,38756594.35410121 - 07/26 10:00:00,0.0,21805384.662701005,0.0,6924110.262413395,0.0,8267229.155468819,0.0,6652322.211441316,12913.380835922795,12711.219449947606,12727.599153616064,15321.233427771629,193224358.32212914,43649046.29202454,28186614.07570998,0.0 - 07/26 11:00:00,0.0,29558466.242697915,0.0,9048049.928925822,0.0,5454475.291841367,0.0,3965583.720727245,10317.884528992628,10156.356121891793,10169.443623392568,12241.77613578396,154387657.47621943,48026575.184192348,28186614.07570998,0.0 - 07/26 12:00:00,0.0,32386029.223009189,0.0,9175575.863673613,0.0,2420055.8408759145,0.0,1655462.449633487,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,45637123.3771922,28186614.07570998,0.0 - 07/26 13:00:00,0.0,32795644.725262677,0.0,10445682.284385652,0.0,3384717.342114104,0.0,3904909.935248234,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692029,50530954.28701067,28186614.07570998,0.0 - 07/26 14:00:00,0.0,31961707.366464274,0.0,13582681.628172536,0.0,7731446.301869481,0.0,8317707.190697045,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,61593542.48720334,28186614.07570998,0.0 - 07/26 15:00:00,0.0,23379476.004772068,0.0,11579514.41609793,0.0,9566893.039202765,0.0,9160085.605378494,7730.815517000088,7609.788157899241,7619.594146655626,9172.31750755016,115677055.18477842,53685969.06545125,28186614.07570998,0.0 - 07/26 16:00:00,0.0,22761333.489523226,0.0,14074343.08787281,0.0,13958492.042067543,0.0,13302445.337031963,12878.474340011817,12676.859421741916,12693.194849006974,15279.818202836119,192702048.52894859,64096613.95649553,28186614.07570998,0.0 - 07/26 17:00:00,0.0,16616512.431385309,0.0,10538152.62571732,0.0,13253503.118605424,0.0,12644669.772251977,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,53052837.947960037,35233267.594637479,0.0 - 07/26 18:00:00,0.0,6279291.3825654019,0.0,1701199.0960480434,0.0,5841774.093173773,0.0,3987878.1007618338,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,17810142.67254905,14093307.03785499,0.0 - 07/26 19:00:00,0.0,9754441.20548722,0.0,4258329.79210702,0.0,12450062.09561681,0.0,11223717.503718822,18056.2979257371,17773.623213310635,17796.526340936995,21423.108237621927,270178400.583384,37686550.59692987,63419881.67034747,0.0 - 07/26 20:00:00,0.0,16121327.289356387,0.0,10436251.083197814,0.0,21433991.523232156,0.0,20910945.353951258,10323.818044642241,10162.196747247015,10175.2917749897,12248.81602560601,154476441.33294589,68902515.2497376,63419881.67034747,69761869.8373822 - 07/26 21:00:00,0.0,7756448.908059594,0.0,2243314.627422227,0.0,15022486.609849092,0.0,12535528.241867988,10343.18309248034,10181.258631648661,10194.378222575006,12271.791915656593,154766202.70449818,37557778.3871989,49326574.63249246,69761869.8373822 - 07/26 22:00:00,0.0,263639.3467952786,0.0,0.0,0.0,8030267.405688811,0.0,3731126.9243355656,5173.235079500854,5092.247119265218,5098.8089994332499,6137.845947304577,77407693.72381404,12025033.676819656,35233267.594637479,69761869.8373822 - 07/26 23:00:00,0.0,0.0,0.0,0.0,0.0,4462710.620147731,0.0,6426.763738914341,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,77409098.80913013,4469137.383886646,35233267.594637479,62010550.96656194 - 07/26 24:00:00,0.0,0.0,5208602.461468879,0.0,0.0,91492.52828815337,0.0,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,43915269.46112738,91492.52828815337,35233267.594637479,46507913.22492146 - 07/27 01:00:00,5924078.9864675509,0.0,13751056.213387654,0.0,0.0,0.0,0.0,0.0,2586.38346116836,2545.8931455944118,2549.1737887664214,3068.6452483499945,58375479.517820287,0.0,21139960.556782485,23253956.61246073 - 07/27 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621177,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 - 07/27 03:00:00,0.0,0.0,1255521.549368935,0.0,0.0,0.0,0.0,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,20608706.194764586,0.0,14093307.03785499,0.0 - 07/27 04:00:00,2676044.9123317606,0.0,8249152.92006722,0.0,0.0,0.0,0.0,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,30276848.400652678,0.0,14093307.03785499,0.0 - 07/27 05:00:00,3917429.048734284,0.0,6249992.599342155,0.0,0.0,0.0,0.0,0.0,1293.2333272844795,1272.9875182934023,1274.627892641858,1534.371977072059,29518216.223126916,0.0,14093307.03785499,0.0 - 07/27 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.705474246016,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 - 07/27 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,15502637.741640486 - 07/27 08:00:00,0.0,22545694.95392118,0.0,24810047.571130255,0.0,35152797.98238613,0.0,32798192.04151643,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,115306732.548954,56373228.15141996,38756594.35410121 - 07/27 09:00:00,0.0,42713354.92047172,0.0,35373828.78225535,0.0,38296407.556681808,0.0,42529118.654717508,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,158912709.9141264,56373228.15141996,38756594.35410121 - 07/27 10:00:00,0.0,39994608.4106052,0.0,24558255.816654326,0.0,21866814.421280464,0.0,24069878.34651826,12848.022972937308,12646.884776499655,12663.18157837487,15243.688818202356,192246401.32565109,110489556.99505824,28186614.07570998,0.0 - 07/27 11:00:00,0.0,45873711.43527686,0.0,26406825.1279969,0.0,18251793.937339903,0.0,20584921.612605119,12820.379647266142,12619.67421224873,12635.935950534582,15210.891067504132,191832771.15919293,111117252.11321877,28186614.07570998,0.0 - 07/27 12:00:00,0.0,39549642.41490248,0.0,24561209.019613547,0.0,15935588.402399,0.0,18419115.452222494,7685.251509223035,7564.937463163894,7574.685657222298,9118.25755160779,114995275.85238128,98465555.28913753,28186614.07570998,0.0 - 07/27 13:00:00,0.0,45064140.017893839,0.0,29127872.29998915,0.0,18183948.079768868,0.0,22588816.7658832,7665.5770371461589,7545.570998617651,7555.294237009792,9094.914541509346,114700884.5314186,114964777.16353506,28186614.07570998,0.0 - 07/27 14:00:00,0.0,50695411.88597605,0.0,36155722.362158458,0.0,23909747.680263889,0.0,29614625.689614938,7657.424116850613,7537.545713810257,7547.258610803801,9085.241412794781,114578891.47533402,140375507.61801333,28186614.07570998,0.0 - 07/27 15:00:00,0.0,54448257.04049382,0.0,41885632.0441843,0.0,31108653.91367086,0.0,37402814.35422537,7657.424116850613,7537.545713810257,7547.258610803801,9085.241412794781,114578891.47533402,164845357.35257436,28186614.07570998,0.0 - 07/27 16:00:00,0.0,51699574.309303607,0.0,44903238.57738513,0.0,37014175.79047736,0.0,42825123.6447673,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,176442112.3219334,28186614.07570998,0.0 - 07/27 17:00:00,0.0,45844471.09319566,0.0,42514729.27702721,0.0,38045666.59440659,0.0,44588580.414074409,22987.064088580588,22627.197312041288,22656.35476528787,27273.274070920095,343958004.85258749,170993447.37870384,35233267.594637479,0.0 - 07/27 18:00:00,0.0,42045828.72475211,0.0,40722441.996260669,0.0,37587832.12080593,0.0,45344755.03853018,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,165700857.8803489,14093307.03785499,0.0 - 07/27 19:00:00,0.0,45503609.896920848,0.0,47676768.38246579,0.0,44326766.85791086,0.0,54285138.95179775,17967.045736935524,17685.768284174726,17708.55820175773,21317.213922574356,268842910.1235924,191792284.08909524,63419881.67034747,0.0 - 07/27 20:00:00,0.0,40578952.194075088,0.0,37010437.37887471,0.0,42638000.03455402,0.0,48425953.45072894,15422.330449750163,15180.890989526419,15200.453117047758,18298.006372083208,230766051.3422672,168653343.05823276,63419881.67034747,69761869.8373822 - 07/27 21:00:00,0.0,33221058.323289474,0.0,28768406.376815995,0.0,36502013.02693829,0.0,40532958.92851253,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,139024436.6555563,49326574.63249246,69761869.8373822 - 07/27 22:00:00,0.0,29508226.492498645,0.0,25377412.956905176,0.0,33080926.751192519,0.0,36425152.56955395,10275.211692084886,10114.35133620645,10127.384710253531,12191.14644371525,153749139.05613644,124391718.77015029,35233267.594637479,69761869.8373822 - 07/27 23:00:00,0.0,22023981.09127144,0.0,17997078.352545375,0.0,26875983.489373447,0.0,28618576.889412695,7730.815517000088,7609.788157899241,7619.594146655626,9172.31750755016,115677055.18477842,95515619.82260296,35233267.594637479,62010550.96656194 - 07/27 24:00:00,0.0,12997707.88337579,0.0,9088656.053493446,0.0,19114938.90244575,0.0,18906484.061722194,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,60107786.90103717,35233267.594637479,46507913.22492146 - 07/28 01:00:00,0.0,1063599.1441217352,0.0,0.0,0.0,7572082.337507843,0.0,4920758.916309175,2579.471132248157,2539.0890304729484,2542.360905848142,3060.44403394599,38596914.369054857,13556440.397938755,21139960.556782485,23253956.61246073 - 07/28 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 07/28 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 07/28 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 - 07/28 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.490860958758,1272.256675416517,1273.8961079993304,1533.4910691182725,19339684.96857436,0.0,14093307.03785499,0.0 - 07/28 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 - 07/28 07:00:00,0.0,2571002.13320673,0.0,4446515.799683142,0.0,11522961.65807493,0.0,6840705.314501453,1289.3339308916439,1269.1491676785279,1270.7845959204443,1529.7454921010706,19292447.47173007,25381184.90546626,14093307.03785499,15502637.741640486 - 07/28 08:00:00,0.0,40411021.27796487,0.0,38980661.19988254,0.0,42263638.00893226,0.0,46751299.40426237,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,168406619.89104206,56373228.15141996,38756594.35410121 - 07/28 09:00:00,0.0,58206903.67801627,0.0,51065577.60468851,0.0,45906116.280603978,0.0,54309207.35891868,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,209487804.92222745,56373228.15141996,38756594.35410121 - 07/28 10:00:00,0.0,63018999.32621388,0.0,48775132.74695072,0.0,35041467.694701198,0.0,42738670.03699719,7670.3131714734249,7550.2329878784989,7559.9622337196419,9100.533784099285,114771751.83781508,189574269.804863,28186614.07570998,0.0 - 07/28 11:00:00,0.0,73949946.61885475,0.0,54095305.630439799,0.0,34792320.12283043,0.0,43236872.94961828,7636.54518473936,7516.993645276167,7526.680058831697,9060.469356842616,114266477.68448343,206074445.32174326,28186614.07570998,0.0 - 07/28 12:00:00,0.0,68734488.62118276,0.0,48246098.66249446,0.0,29727258.06247344,0.0,38114331.50903327,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,184822176.8551839,28186614.07570998,0.0 - 07/28 13:00:00,0.0,69411767.63685382,0.0,49550137.68351869,0.0,30998472.344079954,0.0,41247139.817358579,5070.578323020321,4991.197473457986,4997.629140843472,6016.047624389726,75871629.22216141,191207517.48181106,28186614.07570998,0.0 - 07/28 14:00:00,0.0,73827119.07129097,0.0,56406895.13122958,0.0,37437054.35856174,0.0,48492017.818403739,7609.877461428549,7490.743410148646,7500.395997596909,9028.82912110392,113867445.56500089,216163086.37948603,28186614.07570998,0.0 - 07/28 15:00:00,0.0,79373104.86569204,0.0,65971718.241434458,0.0,47331367.91316001,0.0,59208018.74778076,10133.012700962638,9974.378496817417,9987.231501574213,12022.432768817896,151621399.6854198,251884209.76806728,28186614.07570998,0.0 - 07/28 16:00:00,0.0,71330156.56617512,0.0,65175349.46683657,0.0,50315066.73604833,0.0,60961894.86405346,12679.797809080834,12481.293208965728,12497.376629204595,15044.096082835935,189729229.42831353,247782467.6331135,28186614.07570998,0.0 - 07/28 17:00:00,0.0,68344026.21573518,0.0,65795945.14235887,0.0,55836026.49578704,0.0,67782685.96463879,15235.495868377595,14996.981338379195,15016.306479543762,18076.334273199078,227970424.65419866,257758683.8185199,35233267.594637479,0.0 - 07/28 18:00:00,0.0,60775834.29451397,0.0,59534269.30029137,0.0,50714561.11454763,0.0,62792723.95772757,17843.501870012784,17564.158519535747,17586.79173052456,21170.63384042985,266994309.45781059,233817388.66708056,14093307.03785499,0.0 - 07/28 19:00:00,0.0,59769433.53915556,0.0,60348351.78996083,0.0,53362964.03459372,0.0,65853831.943301837,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,239334581.30701197,63419881.67034747,0.0 - 07/28 20:00:00,0.0,56138713.94124922,0.0,52376182.541823539,0.0,53455518.54867374,0.0,62776948.69162965,7677.94605279561,7557.746375019672,7567.485302627022,9109.589906423065,114885963.49271533,224747363.72337616,63419881.67034747,69761869.8373822 - 07/28 21:00:00,0.0,44891952.07025111,0.0,40595798.68450765,0.0,44236373.474961038,0.0,51013246.07014793,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,180737370.2998677,49326574.63249246,69761869.8373822 - 07/28 22:00:00,0.0,35657013.610759798,0.0,31228619.28271815,0.0,36751573.472228918,0.0,41418662.65241334,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,145055869.01812024,35233267.594637479,69761869.8373822 - 07/28 23:00:00,0.0,31986318.031691478,0.0,27529150.701123455,0.0,34021027.17930298,0.0,37864411.06465236,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,131400906.97677028,35233267.594637479,62010550.96656194 - 07/28 24:00:00,0.0,26505054.08995843,0.0,22345986.792223127,0.0,28996753.626867664,0.0,31841435.853184295,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,109689230.36223352,35233267.594637479,46507913.22492146 - 07/29 01:00:00,0.0,15882800.761365898,0.0,12099309.301506173,0.0,18386418.164092468,0.0,19152341.767794759,2571.9023424676099,2531.6387315083718,2534.9010064129136,3051.4639537898385,38483661.72304344,65520869.99475929,21139960.556782485,23253956.61246073 - 07/29 02:00:00,0.0,7917705.269646099,0.0,4536242.0401291069,0.0,10359557.4508337,0.0,9666052.16677704,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,32479556.92738595,14093307.03785499,0.0 - 07/29 03:00:00,0.0,3470119.087474268,0.0,956065.4621715656,0.0,7092729.852881748,0.0,5456948.622021369,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,16975863.024548949,14093307.03785499,0.0 - 07/29 04:00:00,0.0,0.0,0.0,0.0,0.0,2718933.717855373,0.0,516440.33550371279,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,3235374.0533590859,14093307.03785499,0.0 - 07/29 05:00:00,0.0,0.0,0.0,0.0,0.0,1567840.4586182149,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,1567840.4586182149,14093307.03785499,0.0 - 07/29 06:00:00,0.0,0.0,0.0,0.0,0.0,4542460.628436795,0.0,1325619.7668581652,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,5868080.395294961,14093307.03785499,0.0 - 07/29 07:00:00,0.0,6842363.639496639,0.0,4196888.822036446,0.0,10961758.962497594,0.0,9661495.26717076,5147.387576862043,5066.804264102064,5073.333358554319,6107.178872083459,77020934.65776679,31662506.69120144,14093307.03785499,15502637.741640486 - 07/29 08:00:00,0.0,34958214.45249848,0.0,32415908.50211249,0.0,37217331.54989547,0.0,41382329.16212997,20526.855138155002,20205.503391686147,20231.54024513919,24354.330063189238,307145623.81741049,145973783.6666364,56373228.15141996,38756594.35410121 - 07/29 09:00:00,0.0,69475777.72171559,0.0,62443421.91587257,0.0,53970508.765074897,0.0,65833610.32628158,17886.3464200077,17606.332330107853,17629.019886356178,21221.4672635218,267635397.2399767,251723318.7289446,56373228.15141996,38756594.35410121 - 07/29 10:00:00,0.0,55916304.11297316,0.0,45246725.45002553,0.0,31248496.761603785,0.0,38935573.58882187,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,171347099.91342435,28186614.07570998,0.0 - 07/29 11:00:00,0.0,69720276.82386154,0.0,52129121.03636366,0.0,32225599.234854238,0.0,40830022.13945948,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,194905019.2345389,28186614.07570998,0.0 - 07/29 12:00:00,0.0,74556276.40854861,0.0,56352189.61332972,0.0,31698717.357724534,0.0,41941124.46033196,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,204548307.83993484,28186614.07570998,0.0 - 07/29 13:00:00,0.0,72758762.1478518,0.0,59134673.49735102,0.0,35032572.3978309,0.0,46643927.04324536,5082.34626605964,5002.781187153718,5009.2277813366249,6030.009839595878,76047714.2669251,213569935.08627907,28186614.07570998,0.0 - 07/29 14:00:00,0.0,76410347.1106002,0.0,66284942.68633025,0.0,42027266.5249974,0.0,54591750.39416526,5069.229251981554,4989.869522378,4996.299478562977,6014.447003099436,75851442.92167908,239314306.71609313,28186614.07570998,0.0 - 07/29 15:00:00,0.0,78749813.5681485,0.0,70865662.80355197,0.0,48450467.12067306,0.0,61462284.0306766,7599.759525721978,7480.78387261306,7490.42362618066,9016.824576613424,113716049.76406484,259528227.52305014,28186614.07570998,0.0 - 07/29 16:00:00,0.0,66687893.446119409,0.0,63075794.46926649,0.0,45824340.06272457,0.0,56922444.463870387,12676.445807550801,12477.993683644963,12494.072852108678,15040.119060974315,189679073.05540354,232510472.44198085,28186614.07570998,0.0 - 07/29 17:00:00,0.0,51174422.903379369,0.0,48581533.52792835,0.0,37455713.29200436,0.0,46345619.2885591,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,183557289.0118712,35233267.594637479,0.0 - 07/29 18:00:00,0.0,40523420.574674118,0.0,38129030.963980037,0.0,30173102.44424434,0.0,37133836.622128549,17774.745179773858,17496.478228109056,17519.02422613439,21089.05665206559,265965495.4298984,145959390.60502703,14093307.03785499,0.0 - 07/29 19:00:00,0.0,49683084.38707982,0.0,46707353.4598579,0.0,43961451.94176597,0.0,52586521.241486068,17827.023206328155,17547.93783240519,17570.550141383028,21151.082534997302,266747737.3744092,192938411.03018976,63419881.67034747,0.0 - 07/29 20:00:00,0.0,57364030.70184001,0.0,52889250.151509258,0.0,56967146.76371926,0.0,65795670.68418555,10196.286782864448,10036.662011163287,10049.595274585465,12097.505051674201,152568176.83303464,233016098.30125407,63419881.67034747,69761869.8373822 - 07/29 21:00:00,0.0,38565183.203492168,0.0,33518089.35541373,0.0,42053537.06627001,0.0,46371768.284899149,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,160508577.91007508,49326574.63249246,69761869.8373822 - 07/29 22:00:00,0.0,24395937.957424527,0.0,19685923.456838259,0.0,30601459.488728897,0.0,31844079.124367197,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,106527400.02735888,35233267.594637479,69761869.8373822 - 07/29 23:00:00,0.0,16273682.408172617,0.0,12065845.254151117,0.0,23742828.26685936,0.0,23399673.475047128,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,75482029.40423022,35233267.594637479,62010550.96656194 - 07/29 24:00:00,0.0,9223584.167684345,0.0,3750103.2639209146,0.0,17505014.127944087,0.0,16420561.473700609,2571.9023424676099,2531.6387315083718,2534.9010064129136,3051.4639537898385,38483661.72304344,46899263.03324996,35233267.594637479,46507913.22492146 - 07/30 01:00:00,0.0,0.0,0.0,0.0,0.0,7234984.9356831409,0.0,2692874.615592477,2570.773609017731,2530.5276685912156,2533.7885117777848,3050.1247546379615,38466772.358488898,9927859.551275619,21139960.556782485,23253956.61246073 - 07/30 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,0.0 - 07/30 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.1977000641576,1264.093345502809,1265.7222588018147,1523.651550286242,19215593.476758087,0.0,14093307.03785499,0.0 - 07/30 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,0.0,14093307.03785499,0.0 - 07/30 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,0.0,14093307.03785499,0.0 - 07/30 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,0.0,14093307.03785499,0.0 - 07/30 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,0.0,14093307.03785499,15502637.741640486 - 07/30 08:00:00,0.0,11015506.471779274,0.0,2614196.7790672199,0.0,23483493.39006816,0.0,16502675.298516054,20547.16320102652,20225.493528044943,20251.556140829034,24378.42480457987,307449495.62812939,53615871.9394307,56373228.15141996,38756594.35410121 - 07/30 09:00:00,0.0,19517214.920466626,0.0,17287626.118244824,0.0,22426613.121381128,0.0,23239411.279088469,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,82470865.43918105,56373228.15141996,38756594.35410121 - 07/30 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,0.0,28186614.07570998,0.0 - 07/30 11:00:00,0.0,9531131.676961668,0.0,1326549.0350049677,0.0,4358331.29125557,0.0,1131858.6032130456,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,16347870.60643525,28186614.07570998,0.0 - 07/30 12:00:00,0.0,32814753.767014427,0.0,25354587.594710228,0.0,12856918.611235349,0.0,16361877.9429993,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,87388137.9159593,28186614.07570998,0.0 - 07/30 13:00:00,0.0,46967215.19161672,0.0,35301789.658622417,0.0,19137132.1295645,0.0,25861939.67568891,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,127268076.65549258,28186614.07570998,0.0 - 07/30 14:00:00,0.0,54851740.73026997,0.0,42164828.04448822,0.0,27025874.710593899,0.0,35626108.48476161,5084.869465370133,5005.264885308302,5011.714679989787,6033.003519261338,76085469.17974642,159668551.9701137,28186614.07570998,0.0 - 07/30 15:00:00,0.0,49726820.877592477,0.0,40459155.07346567,0.0,30520790.357333319,0.0,37548491.65326701,7632.886766895489,7513.3925006461199,7523.074273759234,9056.128783721259,114211736.37007956,158255257.96165846,28186614.07570998,0.0 - 07/30 16:00:00,0.0,50782366.78482287,0.0,46077521.949143219,0.0,35263400.93139881,0.0,41957313.17971284,12715.296149321439,12516.235816067658,12532.364263422294,15086.213508476461,190260395.0542363,174080602.84507773,28186614.07570998,0.0 - 07/30 17:00:00,0.0,47783034.51005244,0.0,46456851.810847047,0.0,40972061.94677108,0.0,48537053.527809698,12778.614579124765,12578.56298404037,12594.771746312541,15161.33840842505,191207835.78444983,183749001.79548026,35233267.594637479,0.0 - 07/30 18:00:00,0.0,25814647.58380989,0.0,23858425.9300706,0.0,22175916.321158016,0.0,26029882.177789689,17928.90562675001,17648.225264529196,17670.96680409945,21271.962137736755,268272215.39921553,97878872.0128282,14093307.03785499,0.0 - 07/30 19:00:00,0.0,34268028.747530307,0.0,31586509.535150075,0.0,33222090.19025863,0.0,38398225.32818243,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,137474853.80112145,63419881.67034747,0.0 - 07/30 20:00:00,0.0,43921050.9947037,0.0,39490961.592191267,0.0,46190908.97510167,0.0,52326592.01684731,10275.211692084886,10114.35133620645,10127.384710253531,12191.14644371525,153749139.05613644,181929513.57884396,63419881.67034747,69761869.8373822 - 07/30 21:00:00,0.0,33332575.104723187,0.0,28586179.863962935,0.0,37647446.69150447,0.0,41322922.8608836,10294.775153724086,10133.608528204128,10146.666717108637,12214.357744166919,154041869.31553359,140889124.52107419,49326574.63249246,69761869.8373822 - 07/30 22:00:00,0.0,25085458.536507876,0.0,20447838.880444819,0.0,30602106.885685669,0.0,32485618.836122969,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,108621023.13876133,35233267.594637479,69761869.8373822 - 07/30 23:00:00,0.0,18925588.105086037,0.0,14551065.300254472,0.0,25359632.67855564,0.0,25962878.717112084,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,84799164.80100823,35233267.594637479,62010550.96656194 - 07/30 24:00:00,0.0,11504668.341636634,0.0,7570778.590500393,0.0,18312063.272877598,0.0,17450958.826121838,2579.207931192116,2538.8299498785397,2542.1014914019435,3060.131755939999,38592976.062285359,54838469.03113647,35233267.594637479,46507913.22492146 - 07/31 01:00:00,0.0,252232.71179084047,0.0,0.0,0.0,6173101.082764955,0.0,3348133.3987494457,2579.9838544362098,2539.593725899498,2542.8662516262627,3061.052359250305,38604586.28836419,9773467.193305243,21139960.556782485,23253956.61246073 - 07/31 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,0.0,14093307.03785499,0.0 - 07/31 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,0.0,14093307.03785499,0.0 - 07/31 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 - 07/31 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.052042192369,1271.8247264397774,1273.463602412246,1532.970427402694,19333118.87440951,0.0,14093307.03785499,0.0 - 07/31 06:00:00,0.0,0.0,0.0,1106399.973498124,0.0,5589845.131356961,0.0,943888.0621363589,1290.8172457546473,1270.609260970639,1272.2465706917906,1531.5053885644148,19314642.47753337,7640133.166991443,14093307.03785499,0.0 - 07/31 07:00:00,0.0,21701642.79699077,0.0,32398120.901068365,0.0,34594122.08977181,0.0,37854544.613937038,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550074,77071176.45627159,126548430.40176797,14093307.03785499,15502637.741640486 - 07/31 08:00:00,0.0,57440827.980234179,0.0,60716673.64349528,0.0,60839629.52762043,0.0,70208397.34343578,20578.15694939499,20256.00206350083,20282.103989646796,24415.197703914957,307913258.5432473,249205528.49478568,56373228.15141996,38756594.35410121 - 07/31 09:00:00,0.0,69331049.40081208,0.0,61580822.31571548,0.0,55395908.25446096,0.0,65895537.679877068,17984.441923910705,17702.892130597556,17725.704114004468,21337.853834367128,269103211.21036747,252203317.65086559,56373228.15141996,38756594.35410121 - 07/31 10:00:00,0.0,57796393.37999576,0.0,43374427.916088368,0.0,33429085.502414545,0.0,40053983.66224584,12833.60409781109,12632.691631553376,12648.970144112664,15226.5813732674,192030650.0882803,174653890.4607445,28186614.07570998,0.0 - 07/31 11:00:00,0.0,61788640.51193302,0.0,44294599.44286795,0.0,30169221.20393565,0.0,36237376.66751064,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,172489837.82624728,28186614.07570998,0.0 - 07/31 12:00:00,0.0,68415601.13310185,0.0,47246134.20689367,0.0,28317314.44742255,0.0,36081744.83469211,5113.542114315616,5033.488658585667,5039.97482247976,6067.0225227328569,76514501.22521004,180060794.6221102,28186614.07570998,0.0 - 07/31 13:00:00,0.0,74374888.85469452,0.0,51661516.8378552,0.0,30860707.798006,0.0,41499248.427362199,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,198396361.9179179,28186614.07570998,0.0 - 07/31 14:00:00,0.0,75319237.4242438,0.0,56206985.813114289,0.0,38627740.93197815,0.0,49479071.14437931,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,219633035.31371556,28186614.07570998,0.0 - 07/31 15:00:00,0.0,76541546.91741356,0.0,62454284.62319437,0.0,48545714.81080179,0.0,59492408.47952779,7627.304198055199,7507.8973279624519,7517.572019984682,9049.505278892007,114128203.76961963,247033954.83093746,28186614.07570998,0.0 - 07/31 16:00:00,0.0,80220493.31360393,0.0,73503671.72030697,0.0,60304585.74655846,0.0,71752440.97750713,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,285781191.7579765,28186614.07570998,0.0 - 07/31 17:00:00,0.0,78354388.07522193,0.0,75902345.61666626,0.0,66113220.828901018,0.0,79881385.29991463,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,300251339.8207038,35233267.594637479,0.0 - 07/31 18:00:00,0.0,70655103.09350425,0.0,69505587.09596709,0.0,60824421.74510952,0.0,75078704.841323,17801.414609050014,17522.730142494718,17545.30996879121,21120.698911867043,266364553.07593075,276063816.7759039,14093307.03785499,0.0 - 07/31 19:00:00,0.0,75922651.85144736,0.0,78497580.6174469,0.0,69546274.94973788,0.0,86296353.43135613,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,310262860.8499882,63419881.67034747,0.0 - 07/31 20:00:00,0.0,69200194.87238992,0.0,65287356.67041161,0.0,66132025.529013369,0.0,77933336.53168126,10209.898822467485,10050.060951747013,10063.011481071733,12113.655217059708,152771855.30044539,278552913.6034962,63419881.67034747,69761869.8373822 - 07/31 21:00:00,0.0,59632872.26934135,0.0,55390659.03301162,0.0,57893854.55720024,0.0,67758047.54710379,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,240675433.40665699,49326574.63249246,69761869.8373822 - 07/31 22:00:00,0.0,51594283.20553648,0.0,47757831.333047229,0.0,50960837.23446937,0.0,59224881.05395684,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,209537832.82700993,35233267.594637479,69761869.8373822 - 07/31 23:00:00,0.0,44369669.23249292,0.0,40676515.185136597,0.0,45046072.72422345,0.0,51760159.962031308,5126.3179245688229,5046.064461146034,5052.566830245312,6082.180533915627,76705667.09955287,181852417.10388429,35233267.594637479,62010550.96656194 - 07/31 24:00:00,0.0,33802084.221657808,0.0,29817653.43066532,0.0,36128040.662077117,0.0,40362782.28709302,2568.395400128315,2528.186691005618,2531.4445176036294,3047.303100572484,38431186.95351617,140110560.60149325,35233267.594637479,46507913.22492146 - 08/01 01:00:00,0.0,12901502.602852449,0.0,8497666.92324944,0.0,18421756.731004199,0.0,17547176.37340507,2572.990697464094,2532.7100481043537,2535.973703509676,3052.7552454481026,38499946.90029441,57368102.63051116,21139960.556782485,23253956.61246073 - 08/01 02:00:00,0.0,0.0,0.0,0.0,0.0,2820657.591354468,0.0,347102.988268756,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,3167760.579623224,14093307.03785499,0.0 - 08/01 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 - 08/01 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 - 08/01 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 - 08/01 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.8648870783805,1269.6718116471116,1271.3079133691263,1530.3754513487898,19300392.228396268,0.0,14093307.03785499,0.0 - 08/01 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,0.0,14093307.03785499,15502637.741640486 - 08/01 08:00:00,0.0,15724158.1530985,0.0,13604807.639049888,0.0,20713576.497817484,0.0,17623710.189430406,20583.92557971275,20261.680384834828,20287.789628077408,24422.04196358482,307999575.20235529,67666252.47939627,56373228.15141996,38756594.35410121 - 08/01 09:00:00,0.0,41284080.58823095,0.0,35012980.97370995,0.0,32998721.535063749,0.0,37397669.80397675,17970.02291043116,17688.698849463897,17711.49254337939,21320.74622528123,268887457.90280047,146693452.90098144,56373228.15141996,38756594.35410121 - 08/01 10:00:00,0.0,20968987.693885618,0.0,14984311.504151062,0.0,11354819.582520087,0.0,11901173.518729438,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,59209292.299286197,28186614.07570998,0.0 - 08/01 11:00:00,0.0,32930977.91338156,0.0,22964706.823412453,0.0,15691938.251912434,0.0,17867739.266374716,10196.286782864448,10036.662011163287,10049.595274585465,12097.505051674201,152568176.83303464,89455362.25508116,28186614.07570998,0.0 - 08/01 12:00:00,0.0,58059953.80685284,0.0,36356282.4364799,0.0,18939103.445434557,0.0,24589049.74691343,5091.030123159573,5011.329096850779,5017.786705887798,6040.3129045617429,76177651.78965561,137944389.43568073,28186614.07570998,0.0 - 08/01 13:00:00,0.0,57653124.94413121,0.0,40969812.49254511,0.0,22624347.965506115,0.0,30582767.804919516,5077.199365701253,4997.714862480594,5004.154928187051,6023.903238789915,75970700.62257174,151830053.20710195,28186614.07570998,0.0 - 08/01 14:00:00,0.0,58469115.93202084,0.0,48227721.55199673,0.0,30527666.438296617,0.0,39814481.017393257,5073.251640952366,4993.828940099099,5000.263998397941,6019.219414069279,75911630.37666726,177038984.93970747,28186614.07570998,0.0 - 08/01 15:00:00,0.0,55082399.950355637,0.0,48221586.1733908,0.0,37888694.58252921,0.0,47227505.80702189,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,188420186.51329757,28186614.07570998,0.0 - 08/01 16:00:00,0.0,54792849.87588815,0.0,51482536.557274978,0.0,41742253.26847969,0.0,50092233.71371515,12702.680213295367,12503.817384873573,12519.929829812094,15071.245181961409,190071621.39579279,198109873.41535796,28186614.07570998,0.0 - 08/01 17:00:00,0.0,52075347.55177247,0.0,51028159.63577667,0.0,43927368.06657864,0.0,53243275.96126325,12679.797809080834,12481.293208965728,12497.376629204595,15044.096082835935,189729229.42831353,200274151.21539105,35233267.594637479,0.0 - 08/01 18:00:00,0.0,47689175.14176892,0.0,48150866.543671447,0.0,41964828.04066633,0.0,52098822.0928476,17783.75229861351,17505.344338823,17527.90176173693,21099.743254745972,266100269.9541099,189903691.8189543,14093307.03785499,0.0 - 08/01 19:00:00,0.0,59334415.31748104,0.0,63879357.296421308,0.0,56884653.59595693,0.0,71127421.58602628,17855.54734887386,17576.01542417817,17598.663913998826,21184.92534129432,267174547.30204267,251225847.79588557,63419881.67034747,0.0 - 08/01 20:00:00,0.0,53441750.33510635,0.0,50934494.260288167,0.0,54218598.292281109,0.0,63274545.748179439,10250.775490184089,10090.29768760498,10103.300066070733,12162.153822947126,153383497.44050495,221869388.63585506,63419881.67034747,69761869.8373822 - 08/01 21:00:00,0.0,43005069.53658429,0.0,39606127.90839693,0.0,45573426.82640298,0.0,52157126.6487778,10263.427569077501,10102.751695843073,10115.770122569595,12177.165031594619,153572811.90870524,180341750.92016203,49326574.63249246,69761869.8373822 - 08/01 22:00:00,0.0,32783907.147981574,0.0,29327006.499699087,0.0,37247964.786712709,0.0,41434527.66780477,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,140793406.10219813,35233267.594637479,69761869.8373822 - 08/01 23:00:00,0.0,24419543.37939643,0.0,20917333.96453594,0.0,30409722.343991206,0.0,32737211.52253171,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,108483811.2104553,35233267.594637479,62010550.96656194 - 08/01 24:00:00,0.0,15983249.116705265,0.0,12629460.818482964,0.0,22767036.310904746,0.0,23310714.25103327,2576.0125693554034,2535.6846120274747,2538.9521004620198,3056.3405810951996,38545163.50658435,74690460.49712624,35233267.594637479,46507913.22492146 - 08/02 01:00:00,0.0,4865565.487816459,0.0,2065195.4307285818,0.0,11121758.962157332,0.0,9775241.225980305,2574.378864590077,2534.0764832150168,2537.3418994114488,3054.4022527534846,38520718.199892099,27827761.106682674,21139960.556782485,23253956.61246073 - 08/02 02:00:00,0.0,0.0,0.0,0.0,0.0,460287.8482968682,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,460287.8482968682,14093307.03785499,0.0 - 08/02 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,0.0,14093307.03785499,0.0 - 08/02 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 - 08/02 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 - 08/02 06:00:00,0.0,782526.3036204412,0.0,9283281.22446024,0.0,14630479.792314027,0.0,9955108.068420615,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713944,19277233.947895606,34651395.38881532,14093307.03785499,0.0 - 08/02 07:00:00,0.0,36075919.87628914,0.0,41632312.34619742,0.0,41627884.93616299,0.0,46826147.36268858,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,166162264.5213381,14093307.03785499,15502637.741640486 - 08/02 08:00:00,0.0,62579727.72282426,0.0,63733047.83620484,0.0,62337266.320550348,0.0,73248740.98211459,20519.802007629816,20198.56067923509,20224.588586294507,24345.961793055645,307040087.03837427,261898782.86169405,56373228.15141996,38756594.35410121 - 08/02 09:00:00,0.0,78399540.86139775,0.0,71383226.68377033,0.0,65911312.393828008,0.0,78055963.22534785,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,293750043.1643439,56373228.15141996,38756594.35410121 - 08/02 10:00:00,0.0,75576301.63517796,0.0,58239562.251364547,0.0,45841254.00468116,0.0,56406394.446295227,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,236063512.33751888,28186614.07570998,0.0 - 08/02 11:00:00,0.0,83276894.50056705,0.0,62286972.83399692,0.0,42615026.01605849,0.0,53450037.96245231,10141.156646040641,9982.394946915972,9995.258281686944,12032.095248779451,151743258.44432283,241628931.31307478,28186614.07570998,0.0 - 08/02 12:00:00,0.0,86577526.10092259,0.0,64459929.23929562,0.0,40419476.86527631,0.0,52823330.52695963,5049.481255246245,4970.430684215568,4976.835591473493,5991.016758800372,75555951.44304845,244280262.73245413,28186614.07570998,0.0 - 08/02 13:00:00,0.0,83429475.19517219,0.0,64976149.387612,0.0,42913501.06783599,0.0,56734624.39238414,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,248053750.0430043,28186614.07570998,0.0 - 08/02 14:00:00,0.0,88537106.89392814,0.0,72269069.81100741,0.0,50015124.81638342,0.0,64702405.1849418,5032.853830431417,4954.063564838059,4960.447381392109,5971.288953965403,75307153.43025717,275523706.7062608,28186614.07570998,0.0 - 08/02 15:00:00,0.0,88853173.87395698,0.0,78044502.29457218,0.0,57033927.080258388,0.0,71744485.46234122,7549.280745647126,7431.095347257086,7440.671072088163,8956.933430948106,112960730.14538573,295676088.7111287,28186614.07570998,0.0 - 08/02 16:00:00,0.0,75736879.67596285,0.0,70969092.82292623,0.0,55527457.74409518,0.0,67897873.63123621,12620.024313238173,12422.45547835122,12438.463080168747,14973.177111713227,188834831.94049693,270131303.8742205,28186614.07570998,0.0 - 08/02 17:00:00,0.0,65064238.58003007,0.0,63015177.67711036,0.0,51734859.62838451,0.0,63584212.97059326,12641.794013433302,12443.88436982866,12459.919584960058,14999.006029994203,189160574.3935784,243398488.8561182,35233267.594637479,0.0 - 08/02 18:00:00,0.0,50859893.601163599,0.0,49275193.62465796,0.0,40828777.449582498,0.0,50727412.66695144,17703.491813928376,17426.34034699819,17448.79596520488,21004.517253398106,264899323.36630637,191691277.3423555,14093307.03785499,0.0 - 08/02 19:00:00,0.0,69514626.25436984,0.0,72568021.47429319,0.0,63185844.675082769,0.0,79028390.06009366,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,284296882.4638394,63419881.67034747,0.0 - 08/02 20:00:00,0.0,68423046.58513037,0.0,65941672.11433259,0.0,65047322.13435785,0.0,77591593.65130997,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,277003634.4851308,63419881.67034747,69761869.8373822 - 08/02 21:00:00,0.0,58107506.2171272,0.0,55328310.15059757,0.0,56336106.40745377,0.0,66708137.62914079,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,236480060.40431933,49326574.63249246,69761869.8373822 - 08/02 22:00:00,0.0,49359856.4345895,0.0,46660988.268232319,0.0,48844102.12611384,0.0,57249638.55624007,5111.445831649906,5031.425193616149,5037.908698525017,6064.53536337002,76483134.31377994,202114585.38517574,35233267.594637479,69761869.8373822 - 08/02 23:00:00,0.0,41530657.85628331,0.0,38633295.54873541,0.0,42409413.17984218,0.0,48973188.63480356,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,171546555.21966446,35233267.594637479,62010550.96656194 - 08/02 24:00:00,0.0,33796458.94127147,0.0,31130108.339370803,0.0,35507577.13907263,0.0,40573325.870984349,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,141007470.29069925,35233267.594637479,46507913.22492146 - 08/03 01:00:00,0.0,22008042.4798673,0.0,19844546.646359,0.0,23774509.74845956,0.0,26672954.021884867,2558.3106968254389,2518.259865614248,2521.5049004845329,3035.337985060413,38280288.41274467,92300052.89657074,21139960.556782485,23253956.61246073 - 08/03 02:00:00,0.0,11510800.473813596,0.0,9839651.225552908,0.0,13416347.631897703,0.0,14488737.809607929,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,49255537.140872139,14093307.03785499,0.0 - 08/03 03:00:00,0.0,8537640.49405993,0.0,6798790.08711737,0.0,11290778.825945523,0.0,11731678.904661809,1281.5794811422057,1261.5161152865085,1263.141707561328,1520.5451334789069,19176416.774888219,38358888.31178463,14093307.03785499,0.0 - 08/03 04:00:00,0.0,6329883.496835426,0.0,4367883.147186015,0.0,9663096.550261047,0.0,9566936.097646267,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,29927799.291928755,14093307.03785499,0.0 - 08/03 05:00:00,0.0,6812994.036961008,0.0,5202624.971972358,0.0,10023328.474582194,0.0,10102066.781304557,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,32141014.264820119,14093307.03785499,0.0 - 08/03 06:00:00,0.0,14660670.01053477,0.0,15927873.345091632,0.0,16106251.229913068,0.0,17641753.904952185,1279.6576754659348,1259.6243958366125,1261.247550437837,1518.2649844038443,19147660.582119224,64336548.49049166,14093307.03785499,0.0 - 08/03 07:00:00,0.0,26531190.53315932,0.0,26689702.847660137,0.0,25050747.85611225,0.0,29235231.273768017,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,107506872.51069972,14093307.03785499,15502637.741640486 - 08/03 08:00:00,0.0,48103244.52831899,0.0,46941794.380426589,0.0,43737190.709041807,0.0,52388285.36681786,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,191170514.98460523,56373228.15141996,38756594.35410121 - 08/03 09:00:00,0.0,45852101.52095264,0.0,44995884.23381542,0.0,40393035.89563752,0.0,48697177.566730957,12736.562530668069,12537.169268247068,12553.324690491469,15111.445258156555,190578606.29122735,179938199.21713654,56373228.15141996,38756594.35410121 - 08/03 10:00:00,0.0,23640124.403290914,0.0,22338834.83281246,0.0,18086246.958218926,0.0,21176535.540016857,12783.85528578904,12583.721646464164,12599.937056199402,15167.55630683214,191286253.06302513,85241741.73433915,28186614.07570998,0.0 - 08/03 11:00:00,0.0,26701230.261515365,0.0,24405083.438067479,0.0,18293453.71643538,0.0,21335080.852062234,12791.553484127195,12591.299328071238,12607.524502422664,15176.689925302064,191401442.0637234,90734848.26808048,28186614.07570998,0.0 - 08/03 12:00:00,0.0,20864637.97758982,0.0,18813583.82369147,0.0,15424795.325820653,0.0,17461653.580226389,7677.94605279561,7557.746375019672,7567.485302627022,9109.589906423065,114885963.49271533,72564670.70732832,28186614.07570998,0.0 - 08/03 13:00:00,0.0,22447886.50967211,0.0,19845156.812296913,0.0,15789667.956638996,0.0,18258730.655251497,7674.932090476317,7554.779596842741,7564.514701453599,9106.013955181239,114840865.23823402,76341441.93385951,28186614.07570998,0.0 - 08/03 14:00:00,0.0,34521219.40257739,0.0,29711393.985558638,0.0,20809975.494471589,0.0,25340782.13432325,7670.3131714734249,7550.2329878784989,7559.9622337196419,9100.533784099285,114771751.83781508,110383371.01693088,28186614.07570998,0.0 - 08/03 15:00:00,0.0,26438183.8424593,0.0,23990021.965071195,0.0,18861993.716091105,0.0,21815016.8487441,7682.368731557086,7562.099815920086,7571.844353380384,9114.83724594953,114952140.5285055,91105216.3723657,28186614.07570998,0.0 - 08/03 16:00:00,0.0,16690625.455839588,0.0,13883446.629432198,0.0,13683217.116012227,0.0,14270503.841145263,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,58527793.04242927,28186614.07570998,0.0 - 08/03 17:00:00,0.0,11492577.574997366,0.0,8583627.241431544,0.0,12027305.407509994,0.0,11605015.605307084,23068.430660559705,22707.29007515715,22736.550736103905,27369.81240262032,345175501.94798788,43708525.829245988,35233267.594637479,0.0 - 08/03 18:00:00,0.0,2252853.807033352,0.0,645380.282642952,0.0,5201807.062920736,0.0,2912554.031583135,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,11012595.184180176,14093307.03785499,0.0 - 08/03 19:00:00,0.0,17672319.542117765,0.0,12552702.999528105,0.0,23402075.178524876,0.0,24870904.708393914,17945.337545755236,17664.399938777027,17687.162321065964,21291.45798239155,268518088.0367632,78498002.42856466,63419881.67034747,0.0 - 08/03 20:00:00,0.0,37873654.560045409,0.0,35240303.24498229,0.0,44436323.15704687,0.0,50263430.9414413,15397.74643354186,15156.691840678002,15176.222785126094,18268.83837528165,230398197.9646594,167813711.90351589,63419881.67034747,69761869.8373822 - 08/03 21:00:00,0.0,28629329.2533238,0.0,25578061.9623433,0.0,34975139.22297351,0.0,38531124.47069201,12841.977000641575,12640.933455028086,12657.222588018147,15236.515502862421,192155934.7675808,127713654.90933264,49326574.63249246,69761869.8373822 - 08/03 22:00:00,0.0,22972574.651141585,0.0,19576667.604017848,0.0,29195093.71236937,0.0,31575867.408674677,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,103320203.37620348,35233267.594637479,69761869.8373822 - 08/03 23:00:00,0.0,20488450.95231203,0.0,16976163.73964085,0.0,26790686.058351749,0.0,28746219.0945514,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,93001519.84485603,35233267.594637479,62010550.96656194 - 08/03 24:00:00,0.0,18062466.34640402,0.0,14659457.142632142,0.0,24157806.50521369,0.0,25928363.294088995,5126.3179245688229,5046.064461146034,5052.566830245312,6082.180533915627,76705667.09955287,82808093.28833884,35233267.594637479,46507913.22492146 - 08/04 01:00:00,0.0,6889101.075015997,0.0,3220463.2367842264,0.0,14137034.332130705,0.0,13502391.518130653,2564.0759294532288,2523.934842449746,2527.187190106916,3042.178213500826,38366554.231838587,37748990.16206159,21139960.556782485,23253956.61246073 - 08/04 02:00:00,0.0,0.0,0.0,0.0,0.0,3403916.000630994,0.0,225414.3705556942,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,3629330.371186688,14093307.03785499,0.0 - 08/04 03:00:00,0.0,0.0,0.0,0.0,0.0,2195814.717314818,0.0,0.0,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,2195814.717314818,14093307.03785499,0.0 - 08/04 04:00:00,0.0,0.0,0.0,0.0,0.0,192895.24537865865,0.0,0.0,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,192895.24537865865,14093307.03785499,0.0 - 08/04 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 - 08/04 06:00:00,0.0,0.0,0.0,0.0,0.0,7107130.792171145,0.0,1830869.388069988,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,8938000.180241134,14093307.03785499,0.0 - 08/04 07:00:00,0.0,8073876.944396151,0.0,12346715.17565412,0.0,18350410.122001783,0.0,18463222.432133564,1286.8468942155108,1266.701066025516,1268.3333396385797,1526.7947180208649,19255233.664441699,57234224.67418562,14093307.03785499,15502637.741640486 - 08/04 08:00:00,0.0,34652701.706909578,0.0,32660565.521353596,0.0,37010316.548263419,0.0,41913954.01876618,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,146237537.79529277,56373228.15141996,38756594.35410121 - 08/04 09:00:00,0.0,32328688.246543006,0.0,25896466.859565978,0.0,31163479.811782164,0.0,34017622.12153744,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,123406257.03942856,56373228.15141996,38756594.35410121 - 08/04 10:00:00,0.0,48646697.67027451,0.0,31557123.501635806,0.0,25504853.17345316,0.0,29165722.760390678,7701.438390184783,7580.870935484527,7590.639661448311,9137.462667977672,115237481.95834306,134874397.10575415,28186614.07570998,0.0 - 08/04 11:00:00,0.0,55987210.40738235,0.0,37006604.85641239,0.0,22411344.688678199,0.0,27609200.44945746,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,143014360.4019304,28186614.07570998,0.0 - 08/04 12:00:00,0.0,56341383.38741772,0.0,36140031.66519769,0.0,18735967.27604496,0.0,24648007.211937615,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,135865389.54059799,28186614.07570998,0.0 - 08/04 13:00:00,0.0,58994805.214437607,0.0,38315991.667800199,0.0,20763871.386884124,0.0,28761797.889070728,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,146836466.15819267,28186614.07570998,0.0 - 08/04 14:00:00,0.0,60668026.12083055,0.0,42840303.45940112,0.0,27061492.422751935,0.0,35383707.24197535,7652.377435231655,7532.578038933501,7542.284534570927,9079.25371769757,114503377.41516115,165953529.24495895,28186614.07570998,0.0 - 08/04 15:00:00,0.0,59319149.40069736,0.0,45886470.76032772,0.0,34304824.18355304,0.0,42088064.69287511,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,181598509.03745324,28186614.07570998,0.0 - 08/04 16:00:00,0.0,53826308.473345059,0.0,47535006.921825628,0.0,39688807.195436257,0.0,46336166.452807087,12748.24782393121,12548.671626064284,12564.841870270755,15125.309412558205,190753454.638168,187386289.043414,28186614.07570998,0.0 - 08/04 17:00:00,0.0,50173341.44301629,0.0,47963702.76831576,0.0,43606496.62586349,0.0,51646287.70983202,15304.75487046331,15065.156077867003,15084.569069141853,18158.50743539514,229006754.8303223,193389828.54702757,35233267.594637479,0.0 - 08/04 18:00:00,0.0,42295175.74756004,0.0,41487711.13412279,0.0,38781305.730009388,0.0,47115585.360996309,17890.06041077467,17609.988177656516,17632.680444837562,21225.873771795068,267690970.09822975,169679777.9726885,14093307.03785499,0.0 - 08/04 19:00:00,0.0,40231607.43209699,0.0,42084369.836688708,0.0,39981737.38617245,0.0,48842912.14157384,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,171140626.79653199,63419881.67034747,0.0 - 08/04 20:00:00,0.0,36073314.73406653,0.0,33090475.101556269,0.0,38915403.925925318,0.0,44153390.59932363,7708.813783762384,7588.130865899792,7597.908947024922,9146.213290921414,115347840.79539064,152232584.36087174,63419881.67034747,69761869.8373822 - 08/04 21:00:00,0.0,28668438.168706407,0.0,24941467.238916696,0.0,33059114.833669627,0.0,36504245.643980327,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,123173265.88527306,49326574.63249246,69761869.8373822 - 08/04 22:00:00,0.0,23430200.489454427,0.0,19964012.15075492,0.0,28523720.591195417,0.0,30931147.710071207,5141.547218035462,5061.055337182431,5067.577023555569,6100.249509275923,76933544.71697779,102849080.94147596,35233267.594637479,69761869.8373822 - 08/04 23:00:00,0.0,19252202.897234769,0.0,15967544.588092093,0.0,25016032.333992445,0.0,26521898.111970579,5145.26480966707,5064.714729223531,5071.241131096821,6104.66028983763,76989171.45537019,86757677.93128988,35233267.594637479,62010550.96656194 - 08/04 24:00:00,0.0,11885686.786294444,0.0,8821725.405152267,0.0,18522123.13967202,0.0,18411544.99655175,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,77080819.41157943,57641080.32767047,35233267.594637479,46507913.22492146 - 08/05 01:00:00,0.0,139402.17529041755,0.0,0.0,0.0,5203928.603825906,0.0,2318739.31813825,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,7662070.097254574,21139960.556782485,23253956.61246073 - 08/05 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5928738006206,1270.3884016014093,1272.025426722721,1531.239179805766,19311285.174949863,0.0,14093307.03785499,0.0 - 08/05 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 - 08/05 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.61869296661,1272.382506190439,1274.0221009190478,1533.642736915941,19341597.733171338,0.0,14093307.03785499,0.0 - 08/05 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 - 08/05 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.73957133,0.0,14093307.03785499,0.0 - 08/05 07:00:00,0.0,8731248.806489015,0.0,13868600.851411127,0.0,24571952.048371264,0.0,19384125.598673379,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692028,66555927.30494478,14093307.03785499,15502637.741640486 - 08/05 08:00:00,0.0,44787312.55190832,0.0,48187689.2204592,0.0,52979870.72211768,0.0,59470780.76674621,20595.030916720614,20272.611865720133,20298.73519529159,24435.218022027875,308165745.59913679,205425653.26123143,56373228.15141996,38756594.35410121 - 08/05 09:00:00,0.0,59131585.15425469,0.0,51114857.290768567,0.0,50850898.95693785,0.0,59341142.98075305,17998.080338354543,17716.31703311903,17739.146315883096,21354.035292494456,269307284.32746407,220438484.38271413,56373228.15141996,38756594.35410121 - 08/05 10:00:00,0.0,48149932.19709633,0.0,32950390.655908005,0.0,27323835.304856946,0.0,31776199.112425075,12824.876254768635,12624.10042452193,12640.36786643407,15216.226120659778,191900054.3989839,140200357.27028636,28186614.07570998,0.0 - 08/05 11:00:00,0.0,54033128.456353988,0.0,34969922.311335448,0.0,23577250.134163526,0.0,28089086.55123858,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,140669387.45309154,28186614.07570998,0.0 - 08/05 12:00:00,0.0,57202880.63928327,0.0,36364752.94789453,0.0,21198607.1997021,0.0,27080480.280069248,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,141846721.06694914,28186614.07570998,0.0 - 08/05 13:00:00,0.0,61946864.726429339,0.0,41110082.147173989,0.0,23704359.81275459,0.0,32240266.26630928,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,159001572.95266719,28186614.07570998,0.0 - 08/05 14:00:00,0.0,65815405.72752531,0.0,48015167.630481768,0.0,30822620.077500125,0.0,40200797.34334313,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,184853990.77885033,28186614.07570998,0.0 - 08/05 15:00:00,0.0,67986201.38957654,0.0,54924706.75538066,0.0,40704912.05040947,0.0,50372078.719513598,7617.747934188797,7498.490669189598,7508.153239771881,9038.167136599539,113985212.32709933,213987898.91488029,28186614.07570998,0.0 - 08/05 16:00:00,0.0,65812361.77627338,0.0,60405710.65010023,0.0,49551814.78639359,0.0,58683173.25785581,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,234453060.47062303,28186614.07570998,0.0 - 08/05 17:00:00,0.0,62576075.11851566,0.0,61611468.97806409,0.0,54263905.38652922,0.0,65291354.2466388,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,243742803.72974778,35233267.594637479,0.0 - 08/05 18:00:00,0.0,54661985.843608479,0.0,55027629.538148228,0.0,48827124.096391189,0.0,60305401.90215656,17779.26336711118,17500.92568238075,17523.47741140485,21094.417308871503,266033101.5711658,218822141.38030447,14093307.03785499,0.0 - 08/05 19:00:00,0.0,54844832.136940699,0.0,57429024.41604482,0.0,51737876.315143559,0.0,63982372.92464029,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,227994105.79276938,63419881.67034747,0.0 - 08/05 20:00:00,0.0,51865252.744628999,0.0,48503536.07389571,0.0,52042937.1593854,0.0,60571403.93070401,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,212983129.90861417,63419881.67034747,69761869.8373822 - 08/05 21:00:00,0.0,43524146.4454777,0.0,40388191.27362922,0.0,44984533.66237717,0.0,51855113.85633488,10252.635849137645,10092.128922292068,10105.133660490625,12164.361067831254,153411334.19910575,180751985.237819,49326574.63249246,69761869.8373822 - 08/05 22:00:00,0.0,39078412.92342833,0.0,36194356.7219636,0.0,41004560.535001117,0.0,47027203.6391414,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,163304533.81953443,35233267.594637479,69761869.8373822 - 08/05 23:00:00,0.0,33967971.94216931,0.0,31011986.530095407,0.0,37052925.41802443,0.0,41891742.6870404,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,143924626.57732956,35233267.594637479,62010550.96656194 - 08/05 24:00:00,0.0,25582029.853545984,0.0,22295767.833550946,0.0,30180552.614920554,0.0,33026621.02923228,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,111084971.33124976,35233267.594637479,46507913.22492146 - 08/06 01:00:00,0.0,12942361.136142949,0.0,10229364.499776505,0.0,17771434.878682209,0.0,18162568.43558198,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,59105728.950183648,21139960.556782485,23253956.61246073 - 08/06 02:00:00,0.0,1377483.4731057387,0.0,288405.65662957887,0.0,6079160.738124612,0.0,4352177.837344266,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,12097227.705204193,14093307.03785499,0.0 - 08/06 03:00:00,0.0,415699.9306055996,0.0,0.0,0.0,5364752.098155294,0.0,3866822.4784178587,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,9647274.507178752,14093307.03785499,0.0 - 08/06 04:00:00,0.0,163845.80186826824,0.0,0.0,0.0,4676857.165873413,0.0,3044340.1149925508,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,7885043.082734232,14093307.03785499,0.0 - 08/06 05:00:00,0.0,0.0,0.0,0.0,0.0,2400617.1975139577,0.0,133416.5533197469,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,2534033.750833704,14093307.03785499,0.0 - 08/06 06:00:00,0.0,0.0,0.0,0.0,0.0,7743493.269000845,0.0,5491964.090358756,1285.9511712338049,1265.8193657541859,1267.4505032064568,1525.7319768949192,19241830.86152172,13235457.3593596,14093307.03785499,0.0 - 08/06 07:00:00,0.0,17242310.035063697,0.0,18125034.662115925,0.0,21136717.37968333,0.0,22988019.63598323,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,79492081.71284618,14093307.03785499,15502637.741640486 - 08/06 08:00:00,0.0,46014045.61477125,0.0,44538949.94221935,0.0,43733920.20627466,0.0,51520979.748046729,20474.522807454956,20153.9903333858,20179.96080700539,24292.239750461507,306362569.31390759,185807895.51131199,56373228.15141996,38756594.35410121 - 08/06 09:00:00,0.0,74436235.75645732,0.0,66590358.5803458,0.0,57362217.93970306,0.0,69094512.8690226,17890.06041077467,17609.988177656516,17632.680444837562,21225.873771795068,267690970.09822975,267483325.14552877,56373228.15141996,38756594.35410121 - 08/06 10:00:00,0.0,68301847.6200504,0.0,53598092.956237148,0.0,39293125.5358869,0.0,49036145.917893428,12736.562530668069,12537.169268247068,12553.324690491469,15111.445258156555,190578606.29122735,210229212.03006787,28186614.07570998,0.0 - 08/06 11:00:00,0.0,63307135.98975948,0.0,47070898.838645439,0.0,31833997.665333965,0.0,39890170.034198928,10169.738930740266,10010.529770616604,10023.429359979575,12066.007038522675,152170938.35949285,182102202.5279378,28186614.07570998,0.0 - 08/06 12:00:00,0.0,62605878.34166476,0.0,44860409.443709958,0.0,27400065.60727057,0.0,35662723.157817739,5087.3590345498209,5007.715479818054,5014.168432340691,6035.957298060339,76122720.88116805,170529076.55046303,28186614.07570998,0.0 - 08/06 13:00:00,0.0,67977006.26363671,0.0,50553834.59982781,0.0,30582636.175964863,0.0,41259361.81957299,5062.360296217287,4983.108101397625,4989.529344801546,6006.297249289296,75748661.97014073,190372838.85900239,28186614.07570998,0.0 - 08/06 14:00:00,0.0,66839552.93814668,0.0,53012534.09211564,0.0,35187041.11674101,0.0,45837909.035904679,5055.2865550507499,4976.145100968655,4982.557371835824,5997.9045254164989,75642816.7917782,200877037.182908,28186614.07570998,0.0 - 08/06 15:00:00,0.0,71128662.14269649,0.0,60862294.88086334,0.0,42976333.40713028,0.0,54286012.03794406,7576.417075801017,7457.806853100142,7467.416998432884,8989.129650818295,113366774.08134842,229253302.4686342,28186614.07570998,0.0 - 08/06 16:00:00,0.0,65993167.17740391,0.0,61734035.031616147,0.0,46725950.17218081,0.0,57046976.48096003,12648.888200183574,12450.867495761935,12466.911709363852,15007.423011771642,189266725.5014916,231500128.86216093,28186614.07570998,0.0 - 08/06 17:00:00,0.0,60449341.80125529,0.0,59819045.157625038,0.0,46940536.5616868,0.0,58169551.60985168,12648.888200183574,12450.867495761935,12466.911709363852,15007.423011771642,189266725.5014916,225378475.13041879,35233267.594637479,0.0 - 08/06 18:00:00,0.0,51983313.64940037,0.0,52973982.52703332,0.0,44268488.958541158,0.0,55504633.919898148,17742.302381935435,17464.543328322994,17487.04817497042,21050.564510848024,265480050.22587676,204730419.054873,14093307.03785499,0.0 - 08/06 19:00:00,0.0,52094523.15089472,0.0,53785232.670202989,0.0,47276903.94221706,0.0,58650130.21675564,17810.06912275614,17531.24916817428,17553.839972104877,21130.967162016263,266494051.53018565,211806789.9800704,63419881.67034747,0.0 - 08/06 20:00:00,0.0,53594084.442701969,0.0,51113315.47175401,0.0,52554652.136001069,0.0,62028718.61294459,10209.898822467485,10050.060951747013,10063.011481071733,12113.655217059708,152771855.30044539,219290770.66340164,63419881.67034747,69761869.8373822 - 08/06 21:00:00,0.0,46384284.31374362,0.0,44032617.41443982,0.0,46857818.61580077,0.0,54810623.199629429,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,192085343.5436136,49326574.63249246,69761869.8373822 - 08/06 22:00:00,0.0,38221952.59601191,0.0,35921093.62832903,0.0,40118634.485676858,0.0,46345013.27012597,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,160606693.98014377,35233267.594637479,69761869.8373822 - 08/06 23:00:00,0.0,32330661.256328774,0.0,30059908.835505338,0.0,35170878.46369006,0.0,40180129.25412444,5128.151858906457,5047.869684899492,5054.374380213832,6084.356427001652,76733108.46367717,137741577.80964864,35233267.594637479,62010550.96656194 - 08/06 24:00:00,0.0,24216262.329398335,0.0,21704694.12749315,0.0,28427508.875555148,0.0,31615930.772526504,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,105964396.10497315,35233267.594637479,46507913.22492146 - 08/07 01:00:00,0.0,12164374.14992217,0.0,9975020.338384293,0.0,16643023.772422772,0.0,17386032.691005306,2568.395400128315,2528.186691005618,2531.4445176036294,3047.303100572484,38431186.95351617,56168450.95173454,21139960.556782485,23253956.61246073 - 08/07 02:00:00,0.0,4029081.3939149666,0.0,2295800.608733274,0.0,7969317.363635301,0.0,7293619.570761187,1283.360409781109,1263.269163155338,1264.8970144112664,1522.65813732674,19203065.00882803,21587818.93704473,14093307.03785499,0.0 - 08/07 03:00:00,0.0,2034660.8626017925,0.0,469055.25316313948,0.0,6107674.99104874,0.0,5096876.144368161,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,13708267.251181832,14093307.03785499,0.0 - 08/07 04:00:00,0.0,0.0,0.0,0.0,0.0,1479174.1805513814,0.0,509392.97473687145,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,1988567.1552882528,14093307.03785499,0.0 - 08/07 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 - 08/07 06:00:00,0.0,2464886.8786361098,0.0,11250007.1798005,0.0,14063713.527337727,0.0,11145830.050091554,1287.3573194364238,1267.203500444376,1268.8364214954709,1527.4003180613498,19262871.213975438,38924437.6358659,14093307.03785499,0.0 - 08/07 07:00:00,0.0,30428637.920493895,0.0,34099013.31537388,0.0,33427091.287506738,0.0,38156521.68358105,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,136111264.20695556,14093307.03785499,15502637.741640486 - 08/07 08:00:00,0.0,59968888.726992,0.0,60777958.42119262,0.0,57485416.13694738,0.0,67215051.96218279,20540.535997393403,20218.970074521007,20245.024281169397,24370.561880445093,307350332.040704,245447315.2473148,56373228.15141996,38756594.35410121 - 08/07 09:00:00,0.0,75864151.68842167,0.0,68128350.9510783,0.0,58109585.469067599,0.0,70110340.43082159,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,272212428.53938916,56373228.15141996,38756594.35410121 - 08/07 10:00:00,0.0,68443496.75637999,0.0,54033031.9488668,0.0,39322164.847269859,0.0,48864301.411684308,12751.115804261539,12551.49470762752,12567.668589662731,15128.712161742602,190796368.5478598,210662994.96420098,28186614.07570998,0.0 - 08/07 11:00:00,0.0,76047461.28617364,0.0,57221881.28446973,0.0,36796196.04319354,0.0,46365116.00701959,10174.718069099641,10015.430959636107,10028.336864681381,12071.914596120678,152245441.7623361,216430654.6208565,28186614.07570998,0.0 - 08/07 12:00:00,0.0,81120206.28008527,0.0,59546610.131870139,0.0,35458539.904497887,0.0,46561939.669763129,5063.750523638325,4984.476564549041,4990.899571357408,6007.946701056114,75769464.09816319,222687295.9862164,28186614.07570998,0.0 - 08/07 13:00:00,0.0,87913641.15342188,0.0,66879337.073999729,0.0,40945345.45592056,0.0,55108626.85372712,5049.481255246245,4970.430684215568,4976.835591473493,5991.016758800372,75555951.44304845,250846950.53706933,28186614.07570998,0.0 - 08/07 14:00:00,0.0,85588481.90034667,0.0,69272149.06684713,0.0,47548899.762311208,0.0,61552946.01777338,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,263962476.7472784,28186614.07570998,0.0 - 08/07 15:00:00,0.0,79800211.74603877,0.0,68599471.33187711,0.0,52287915.795982617,0.0,65299697.6332861,7551.60787659644,7433.386046537264,7442.96472316817,8959.69448298742,112995551.26544145,265987296.5071846,28186614.07570998,0.0 - 08/07 16:00:00,0.0,79428574.2411696,0.0,73942246.92707652,0.0,57657816.48430166,0.0,70442943.41801764,12593.71076875325,12396.553877313994,12412.528102274864,14941.95709563161,188441099.43830539,281471581.07056549,28186614.07570998,0.0 - 08/07 17:00:00,0.0,72441748.23695684,0.0,70226420.07442406,0.0,57441859.817876238,0.0,70781023.60211642,12620.024313238173,12422.45547835122,12438.463080168747,14973.177111713227,188834831.94049693,270891051.7313736,35233267.594637479,0.0 - 08/07 18:00:00,0.0,54401880.09754612,0.0,51613668.78166395,0.0,43098562.29851389,0.0,53397806.843325007,17718.261036760505,17440.878354891684,17463.35270680541,21022.040372512532,265120316.89549247,202511918.021049,14093307.03785499,0.0 - 08/07 19:00:00,0.0,59784608.63826859,0.0,55887185.346271667,0.0,50510011.23710948,0.0,61141475.033962648,17779.26336711118,17500.92568238075,17523.47741140485,21094.417308871503,266033101.5711658,227323280.25561238,63419881.67034747,0.0 - 08/07 20:00:00,0.0,73402750.89300919,0.0,69249884.12806833,0.0,66528678.150267157,0.0,79843367.15269874,10124.720592434574,9966.21620279525,9979.058689603093,12012.594498578592,151497323.94028146,289024680.3240434,63419881.67034747,69761869.8373822 - 08/07 21:00:00,0.0,66884759.73847323,0.0,63335858.974081758,0.0,60557454.42956082,0.0,72766234.63324511,10143.838247264666,9985.034567172585,9997.901303363677,12035.276866268747,151783383.54265083,263544307.7753609,49326574.63249246,69761869.8373822 - 08/07 22:00:00,0.0,60246011.45050586,0.0,56870355.30089473,0.0,54888762.760324489,0.0,65708212.039318088,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,237713341.55104316,35233267.594637479,69761869.8373822 - 08/07 23:00:00,0.0,55919650.78175952,0.0,52682566.97160733,0.0,51466726.10194525,0.0,61365655.722595948,5087.3590345498209,5007.715479818054,5014.168432340691,6035.957298060339,76122720.88116805,221434599.57790805,35233267.594637479,62010550.96656194 - 08/07 24:00:00,0.0,49267459.78352727,0.0,46162545.26030968,0.0,45737846.0007998,0.0,54250951.374277498,2548.489559186678,2508.592479717353,2511.82505717418,3023.685580147894,38133333.63441398,195418802.41891424,35233267.594637479,46507913.22492146 - 08/08 01:00:00,0.0,37048772.286643419,0.0,33919055.15855224,0.0,33756324.189753439,0.0,39661908.15111153,2550.7924784105518,2510.859346311168,2514.094844856975,3026.417905899189,38167792.47172038,144386059.7860606,21139960.556782485,23253956.61246073 - 08/08 02:00:00,0.0,24121877.042849915,0.0,21282280.191706696,0.0,21643230.251773649,0.0,24981215.563302056,1278.124577327773,1258.1152986358027,1259.7365086112537,1516.4460219848689,19124720.663614915,92028603.04963231,14093307.03785499,0.0 - 08/08 03:00:00,0.0,22463139.073358224,0.0,20116467.642767356,0.0,20895500.802064875,0.0,24183449.105939535,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,87658556.62412998,14093307.03785499,0.0 - 08/08 04:00:00,0.0,16169249.148534026,0.0,12719714.77886127,0.0,17187257.000378007,0.0,18334274.333430467,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,64410495.26120376,14093307.03785499,0.0 - 08/08 05:00:00,0.0,4146860.9460611578,0.0,1483844.9063305285,0.0,8623691.114818747,0.0,6719924.390206224,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,20974321.357416657,14093307.03785499,0.0 - 08/08 06:00:00,0.0,0.0,0.0,0.0,0.0,4705574.979552369,0.0,1800571.142251606,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,6506146.121803975,14093307.03785499,0.0 - 08/08 07:00:00,0.0,7325257.919808913,0.0,1561985.479581642,0.0,10620049.226222657,0.0,9882547.853089234,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,29389840.478702453,14093307.03785499,15502637.741640486 - 08/08 08:00:00,0.0,36525868.18027008,0.0,33982900.87406891,0.0,35128700.83695394,0.0,40354938.260473448,20497.795077128478,20176.89827133614,20202.89826417195,24319.851410071988,306710794.88175079,145992408.15176637,56373228.15141996,38756594.35410121 - 08/08 09:00:00,0.0,44797966.83914093,0.0,42839335.711617577,0.0,36387361.459439698,0.0,43568027.57394989,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,167592691.58414809,56373228.15141996,38756594.35410121 - 08/08 10:00:00,0.0,28305833.34277005,0.0,26364004.557214455,0.0,16763484.990808731,0.0,20328750.9462478,12789.009165939984,12588.79484165989,12605.016788724946,15173.671188895534,191363371.1467933,91762073.83704105,28186614.07570998,0.0 - 08/08 11:00:00,0.0,32762804.920255905,0.0,29956957.82392752,0.0,19704177.359021367,0.0,24033490.171081529,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,106457430.27428633,28186614.07570998,0.0 - 08/08 12:00:00,0.0,24694815.83416213,0.0,19340711.953146176,0.0,16684629.470804576,0.0,18803954.077617784,5100.446321704616,5020.597883051009,5027.067435865092,6051.48486469704,76318547.41914393,79524111.33573066,28186614.07570998,0.0 - 08/08 13:00:00,0.0,22507376.630834417,0.0,18900922.872984645,0.0,14036584.161113752,0.0,15685284.249953773,5133.441639124436,5053.076652621352,5059.588057645065,6090.63254930696,76812260.03531212,71130167.91488658,28186614.07570998,0.0 - 08/08 14:00:00,0.0,11769207.085717377,0.0,6931847.882928077,0.0,8305544.76021417,0.0,7689437.733745513,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,34696037.46260513,28186614.07570998,0.0 - 08/08 15:00:00,0.0,34702556.44685346,0.0,27093954.874846467,0.0,23623484.923991074,0.0,27412267.290791833,7631.038551824731,7511.573219727078,7521.2526485110379,9053.93594709051,114184081.32175207,112832263.53648283,28186614.07570998,0.0 - 08/08 16:00:00,0.0,47143981.82000749,0.0,45517664.675496008,0.0,39796603.521297577,0.0,46086282.08816598,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,178544532.10496707,28186614.07570998,0.0 - 08/08 17:00:00,0.0,36359576.78808516,0.0,36273169.05201032,0.0,37801202.9037785,0.0,43296284.50278885,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,153730233.24666284,35233267.594637479,0.0 - 08/08 18:00:00,0.0,15726486.182627576,0.0,14006646.485369113,0.0,17104332.79642523,0.0,18739097.654413355,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,65576563.11883527,14093307.03785499,0.0 - 08/08 19:00:00,0.0,44039262.219368938,0.0,47990764.56132217,0.0,47367495.77216618,0.0,58030739.04124522,17875.02289180661,17595.18607385315,17617.85926701262,21208.032329556852,267465962.02402524,197428261.5941025,63419881.67034747,0.0 - 08/08 20:00:00,0.0,47193692.76993454,0.0,44056805.76641662,0.0,51411941.24401185,0.0,59071926.06270038,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,201734365.84306339,63419881.67034747,69761869.8373822 - 08/08 21:00:00,0.0,41366136.4949882,0.0,38793862.88957751,0.0,45355019.14343587,0.0,52072209.293258678,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,177587227.82126028,49326574.63249246,69761869.8373822 - 08/08 22:00:00,0.0,35552655.95693268,0.0,33256730.291085043,0.0,39672669.88171621,0.0,45248676.518200557,5111.445831649906,5031.425193616149,5037.908698525017,6064.53536337002,76483134.31377994,153730732.6479345,35233267.594637479,69761869.8373822 - 08/08 23:00:00,0.0,31566462.850877249,0.0,29357888.35909841,0.0,36006504.56379196,0.0,40745181.39372537,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,137676037.167493,35233267.594637479,62010550.96656194 - 08/08 24:00:00,0.0,26189354.186738615,0.0,24197526.237458208,0.0,30620931.330692069,0.0,34324525.54652163,2557.28861832399,2517.2537879424078,2520.497526378924,3034.1253279335785,38264994.938084039,115332337.3014105,35233267.594637479,46507913.22492146 - 08/09 01:00:00,0.0,14387963.631287557,0.0,12396977.924891115,0.0,18668631.705895284,0.0,20168110.912568857,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,65621684.1746428,21139960.556782485,23253956.61246073 - 08/09 02:00:00,0.0,3709875.304353947,0.0,1404403.4917318207,0.0,9338549.54857548,0.0,8786649.412611902,1279.1553484127194,1259.129932807124,1260.7524502422664,1517.6689925302065,19140144.206372337,23239477.757273154,14093307.03785499,0.0 - 08/09 03:00:00,0.0,2670678.780467854,0.0,342877.9252826877,0.0,8812274.450985525,0.0,7866267.564975019,1279.4076021768386,1259.378237491508,1261.00107489258,1517.9682819922157,19143918.707591315,19692098.721711086,14093307.03785499,0.0 - 08/09 04:00:00,0.0,1400845.385838637,0.0,0.0,0.0,7698201.137501152,0.0,6515667.416859997,1279.9055658805099,1259.868405480503,1261.4918745130595,1518.5590969181783,19151369.7940521,15614713.940199789,14093307.03785499,0.0 - 08/09 05:00:00,0.0,240323.896654172,0.0,0.0,0.0,6534363.8276919689,0.0,5142309.3739081979,1280.3947885928477,1260.3499693200147,1261.9740588967305,1519.139540991588,19158690.08808425,11916997.098254338,14093307.03785499,0.0 - 08/09 06:00:00,0.0,26286855.647534208,0.0,34287025.01626672,0.0,31678958.927282536,0.0,36323535.97698672,1279.1553484127194,1259.129932807124,1260.7524502422664,1517.6689925302065,19140144.206372337,128576375.5680702,14093307.03785499,0.0 - 08/09 07:00:00,0.0,40921581.93259949,0.0,44186668.48061879,0.0,44060878.00136784,0.0,51302005.21828402,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,180471133.63287015,14093307.03785499,15502637.741640486 - 08/09 08:00:00,0.0,38436076.555701319,0.0,35450859.251369658,0.0,37564597.26394305,0.0,43144108.466329548,20470.521634829416,20150.051799864126,20176.01719828128,24287.49251187545,306302699.321461,154595641.53734357,56373228.15141996,38756594.35410121 - 08/09 09:00:00,0.0,28453608.623800044,0.0,25621597.349403316,0.0,28531431.47969424,0.0,31858001.55055008,17867.322939318095,17587.60666555727,17610.270091875533,21198.896629854487,267350746.77577938,114464639.00344768,56373228.15141996,38756594.35410121 - 08/09 10:00:00,0.0,13212197.045549103,0.0,11247235.02705955,0.0,10881134.375152853,0.0,11425792.787306708,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,46766359.23506821,28186614.07570998,0.0 - 08/09 11:00:00,0.0,18202641.449107708,0.0,15886976.413513869,0.0,13040476.022129525,0.0,14311022.502007379,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,61441116.38675848,28186614.07570998,0.0 - 08/09 12:00:00,0.0,21277895.649652207,0.0,17026871.133632859,0.0,13789269.537329853,0.0,15308486.039158542,5098.143391432224,5018.331005581644,5024.797637292732,6048.752525837101,76284088.41651732,67402522.35977346,28186614.07570998,0.0 - 08/09 13:00:00,0.0,29961658.080079054,0.0,20658734.128104677,0.0,14466486.841647983,0.0,17633950.415438855,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,82720829.46527057,28186614.07570998,0.0 - 08/09 14:00:00,0.0,48979201.83167345,0.0,36868546.833259198,0.0,23705838.3597253,0.0,30738503.4094639,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,140292090.43412186,28186614.07570998,0.0 - 08/09 15:00:00,0.0,55694312.9137575,0.0,45351753.80211662,0.0,33344366.094265324,0.0,41444499.88587383,7641.937518400841,7522.301560948239,7531.9948142948819,9066.867154893933,114347163.77473642,175834932.69601328,28186614.07570998,0.0 - 08/09 16:00:00,0.0,50539384.37304882,0.0,46766429.553459119,0.0,37642602.37439086,0.0,45002908.37217107,12727.575307898933,12528.322742126946,12544.466764719496,15100.782261404358,190444129.47413904,179951324.67306984,28186614.07570998,0.0 - 08/09 17:00:00,0.0,33168432.19092597,0.0,31350333.2731226,0.0,31072961.684026388,0.0,34669937.58052576,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,130261664.72860073,35233267.594637479,0.0 - 08/09 18:00:00,0.0,20272566.850634979,0.0,19027044.598552899,0.0,23159580.14242603,0.0,25919864.851852813,17855.54734887386,17576.01542417817,17598.663913998826,21184.92534129432,267174547.30204267,88379056.44346673,14093307.03785499,0.0 - 08/09 19:00:00,0.0,34498980.42666768,0.0,34102082.135067928,0.0,39219606.92410803,0.0,45631843.080996,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,153452512.56683965,63419881.67034747,0.0 - 08/09 20:00:00,0.0,37885433.625507798,0.0,33829510.09293742,0.0,44605699.89967935,0.0,49249558.382459688,10239.244527044078,10078.947243844024,10091.934996104475,12148.472775345426,153210958.3524168,165570202.00058425,63419881.67034747,69761869.8373822 - 08/09 21:00:00,0.0,31021332.942316139,0.0,27864424.174439685,0.0,37376018.19268275,0.0,41113809.142261449,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,137375584.4517,49326574.63249246,69761869.8373822 - 08/09 22:00:00,0.0,26870753.72270405,0.0,24164379.07427155,0.0,32669952.773926479,0.0,35935450.63423383,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,119640536.20513593,35233267.594637479,69761869.8373822 - 08/09 23:00:00,0.0,24496403.818792814,0.0,21491850.82693458,0.0,30318586.85798151,0.0,33057559.060021804,5124.448769282119,5044.224567834035,5050.724566042987,6079.962852517997,76677698.72043769,109364400.56373072,35233267.594637479,62010550.96656194 - 08/09 24:00:00,0.0,17400274.708399103,0.0,13886897.325775411,0.0,23860540.073445407,0.0,25312035.46999765,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,80459747.57761756,35233267.594637479,46507913.22492146 - 08/10 01:00:00,0.0,2374685.094546469,0.0,43320.02351544624,0.0,10963613.662013095,0.0,9341438.438390844,2568.8029230212216,2528.5878340516126,2531.8461775633829,3047.7866109288127,38437284.76403411,22723057.218465855,21139960.556782485,23253956.61246073 - 08/10 02:00:00,0.0,0.0,0.0,0.0,0.0,62333.849579798676,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,62333.849579798676,14093307.03785499,0.0 - 08/10 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 - 08/10 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,0.0,14093307.03785499,0.0 - 08/10 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 - 08/10 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 - 08/10 07:00:00,0.0,15412492.854439568,0.0,19820329.875405376,0.0,30534757.537867376,0.0,27865131.27042579,1287.3573194364238,1267.203500444376,1268.8364214954709,1527.4003180613498,19262871.213975435,93632711.5381381,14093307.03785499,15502637.741640486 - 08/10 08:00:00,0.0,53717640.99155974,0.0,51264250.03414206,0.0,54412408.68226945,0.0,61882770.80866486,5146.688986256335,5066.116610062611,5072.644818402448,6106.35002099663,77010481.56858488,221277070.51663608,56373228.15141996,38756594.35410121 - 08/10 09:00:00,0.0,72519609.42115245,0.0,55457258.285533297,0.0,53350738.11561303,0.0,63062492.77468622,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,244390098.59698499,56373228.15141996,38756594.35410121 - 08/10 10:00:00,0.0,64827409.228095229,0.0,38567662.37121075,0.0,31873966.018354708,0.0,37859086.52346502,12818.098246968028,12617.428527697877,12633.687372189974,15208.184273136822,191798634.31197373,173128124.1411257,28186614.07570998,0.0 - 08/10 11:00:00,0.0,73582754.95659316,0.0,37661649.95231125,0.0,27989734.456875814,0.0,33750868.80066301,12799.055658805099,12598.68405480503,12614.918745130595,15185.590969181783,191513697.94052104,172985008.16644324,28186614.07570998,0.0 - 08/10 12:00:00,0.0,76697029.42428203,0.0,35469726.233838688,0.0,23774889.6856026,0.0,30917696.502191016,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,166859341.8459143,28186614.07570998,0.0 - 08/10 13:00:00,0.0,82924512.99641097,0.0,41795141.136666189,0.0,27174136.681509794,0.0,37713590.27685452,7650.669482556924,7530.896824576512,7540.601153797639,9077.227297045561,114477821.1287159,189607381.09144149,28186614.07570998,0.0 - 08/10 14:00:00,0.0,88450200.77368483,0.0,53192704.184637378,0.0,36781535.86062793,0.0,48233275.639501918,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,226657716.45845206,28186614.07570998,0.0 - 08/10 15:00:00,0.0,86867664.23810166,0.0,61244651.26329702,0.0,47019102.15322627,0.0,58295498.38906733,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,253426916.0436923,28186614.07570998,0.0 - 08/10 16:00:00,0.0,77780329.00570175,0.0,63388014.108321469,0.0,53055488.59386034,0.0,63029522.61995107,17810.06912275614,17531.24916817428,17553.839972104877,21130.967162016263,266494051.53018565,257253354.32783468,28186614.07570998,0.0 - 08/10 17:00:00,0.0,66246815.07283023,0.0,60661249.48589308,0.0,54182090.78801756,0.0,63454019.87640607,22909.635554218075,22550.980935828502,22580.04017649509,27181.40807052784,342799433.0534502,244544175.22314696,35233267.594637479,0.0 - 08/10 18:00:00,0.0,58133641.116928528,0.0,54276620.12880924,0.0,50425623.26880954,0.0,60960221.19011529,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,223796105.70466263,14093307.03785499,0.0 - 08/10 19:00:00,0.0,51776709.8974992,0.0,48984695.0455158,0.0,47713299.16444267,0.0,57514827.78990252,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,205989531.8973602,63419881.67034747,0.0 - 08/10 20:00:00,0.0,44336656.521011929,0.0,37656532.84817278,0.0,44401269.032221827,0.0,50143188.39777091,15440.066958769004,15198.349830187828,15217.934455207345,18319.050062989896,231031444.70575468,176537646.79917748,63419881.67034747,69761869.8373822 - 08/10 21:00:00,0.0,35657183.3510873,0.0,29502626.7383064,0.0,37390360.13272439,0.0,41504781.477999258,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,144054951.70011736,49326574.63249246,69761869.8373822 - 08/10 22:00:00,0.0,28376494.98829537,0.0,22557514.31562295,0.0,31310327.152933007,0.0,33971810.41130218,10306.537564683265,10145.186796425467,10158.25990511035,12228.313395771156,154217871.58316488,116216146.86815351,35233267.594637479,69761869.8373822 - 08/10 23:00:00,0.0,26603263.539193456,0.0,21247746.136651543,0.0,29873960.47783839,0.0,32417496.885278785,7713.463002151948,7592.7072999081569,7602.491278235613,9151.729411069056,115417407.56891319,110142467.03896217,35233267.594637479,62010550.96656194 - 08/10 24:00:00,0.0,17634112.928020248,0.0,12286505.838714835,0.0,22315716.403565363,0.0,22815599.289593046,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,75051934.4598935,35233267.594637479,46507913.22492146 - 08/11 01:00:00,0.0,4821239.505769573,0.0,0.0,0.0,10541826.66562153,0.0,8437522.86790549,2578.1095866584848,2537.7488001334779,2541.018948485085,3058.8286120772338,38576541.41047541,23800589.03929659,21139960.556782485,23253956.61246073 - 08/11 02:00:00,0.0,0.0,0.0,0.0,0.0,398666.0548041503,0.0,0.0,1291.435370197342,1271.2177085598726,1272.8558023278459,1532.2387696204117,19323891.5425397,398666.0548041503,14093307.03785499,0.0 - 08/11 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 - 08/11 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 08/11 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 - 08/11 06:00:00,0.0,0.0,0.0,0.0,0.0,2699760.2596838839,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710606,1531.8843216120268,19319421.40707041,2699760.2596838839,14093307.03785499,0.0 - 08/11 07:00:00,0.0,20993236.892790006,0.0,23345783.520788079,0.0,33844901.792358089,0.0,32147090.64267525,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,110331012.84861143,14093307.03785499,15502637.741640486 - 08/11 08:00:00,0.0,64295923.29160015,0.0,60742195.47137785,0.0,63090588.85913835,0.0,72345759.37438564,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,260474466.99650199,56373228.15141996,38756594.35410121 - 08/11 09:00:00,0.0,81692512.87702511,0.0,64537418.75982841,0.0,60079070.7246059,0.0,72095102.99456147,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,278404105.3560209,56373228.15141996,38756594.35410121 - 08/11 10:00:00,0.0,76786351.9837189,0.0,50139542.77530788,0.0,40898208.710625249,0.0,49292925.72928367,7660.724096488548,7540.7940316513499,7550.511114433981,9089.156712667225,114628269.43886797,217117029.19893573,28186614.07570998,0.0 - 08/11 11:00:00,0.0,83785697.66153103,0.0,49633625.53665207,0.0,37335368.73333388,0.0,45686972.116939339,7641.937518400841,7522.301560948239,7531.9948142948819,9066.867154893933,114347163.77473642,216441664.0484563,28186614.07570998,0.0 - 08/11 12:00:00,0.0,85604654.62774314,0.0,47289901.23807531,0.0,33100679.122617496,0.0,42813495.37325737,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,208808730.36169333,28186614.07570998,0.0 - 08/11 13:00:00,0.0,90925961.14138875,0.0,52383229.62369758,0.0,35435424.32707178,0.0,48074399.91057864,5074.5758621946729,4995.132430410824,5001.569168389975,6020.790552024643,75931444.8468724,226819015.00273676,28186614.07570998,0.0 - 08/11 14:00:00,0.0,97891366.37830088,0.0,63830641.455651577,0.0,44750654.006927859,0.0,58415299.805440697,7609.877461428549,7490.743410148646,7500.395997596909,9028.82912110392,113867445.56500089,264887961.646321,28186614.07570998,0.0 - 08/11 15:00:00,0.0,100551063.76977931,0.0,74219668.07465352,0.0,56233908.84229934,0.0,70357005.24020836,10133.012700962638,9974.378496817417,9987.231501574213,12022.432768817896,151621399.6854198,301361645.92694059,28186614.07570998,0.0 - 08/11 16:00:00,0.0,91717623.4876692,0.0,76637854.9859939,0.0,62987195.615920748,0.0,75821573.27247636,12673.073129953884,12474.673805944998,12490.748696407445,15036.117507748591,189628607.30419774,307164247.3620602,28186614.07570998,0.0 - 08/11 17:00:00,0.0,84787037.55826143,0.0,78363082.56403148,0.0,68634559.38820341,0.0,81515429.212266,15215.757370897,14977.551850758871,14996.851955045515,18052.915299403125,227675075.31397624,313300108.72276237,35233267.594637479,0.0 - 08/11 18:00:00,0.0,73762281.23835962,0.0,68502605.38304535,0.0,62045456.95399119,0.0,75663571.04028756,17788.211931208738,17509.734155038008,17532.297234678186,21105.034438585564,266166999.93423779,279973914.6156837,14093307.03785499,0.0 - 08/11 19:00:00,0.0,66905143.64176637,0.0,62958484.95397399,0.0,58610342.61855456,0.0,71420213.79127403,10212.107419712329,10052.234972989976,10065.188303762967,12116.275633383377,152804902.7874551,259894185.00556899,63419881.67034747,0.0 - 08/11 20:00:00,0.0,63854445.89923199,0.0,56702463.367844257,0.0,58539265.494231808,0.0,68617232.78964342,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,247713407.55095149,63419881.67034747,69761869.8373822 - 08/11 21:00:00,0.0,54007971.28237289,0.0,47478603.97893491,0.0,50504253.03747431,0.0,58694091.549001287,5132.582144513954,5052.230613559336,5058.740928375364,6089.612791760549,76799399.32155314,210684919.84778343,49326574.63249246,69761869.8373822 - 08/11 22:00:00,0.0,44158212.835725057,0.0,37622558.8080964,0.0,42576882.18118482,0.0,48628525.17365204,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,172986178.9986583,35233267.594637479,69761869.8373822 - 08/11 23:00:00,0.0,42780700.00037216,0.0,36866889.01448086,0.0,41408054.64346749,0.0,47451114.67671846,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,168506758.33503897,35233267.594637479,62010550.96656194 - 08/11 24:00:00,0.0,39642048.82666443,0.0,34227440.176756057,0.0,38197632.26717068,0.0,43700738.825540099,5128.151858906457,5047.869684899492,5054.374380213832,6084.356427001652,76733108.46367717,155767860.09613128,35233267.594637479,46507913.22492146 - 08/12 01:00:00,0.0,27176308.615758338,0.0,21810396.001152539,0.0,26492616.996393298,0.0,29367490.990841368,2566.720819562218,2526.538326310676,2529.7940288225329,3045.31627465348,38406130.01765606,104846812.60414556,21139960.556782485,23253956.61246073 - 08/12 02:00:00,0.0,11677255.067555389,0.0,6242052.322637079,0.0,12805659.726918638,0.0,12264670.14553185,1287.1894322950385,1267.0382416075084,1268.6709497057244,1527.2011263767423,19260359.099946049,42989637.26264295,14093307.03785499,0.0 - 08/12 03:00:00,0.0,5546088.346180512,0.0,557280.823702425,0.0,8217029.753789766,0.0,6510347.310455805,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,20830746.23412851,14093307.03785499,0.0 - 08/12 04:00:00,0.0,306798.9514144346,0.0,0.0,0.0,1771813.614430326,0.0,555070.5991405329,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,2633683.1649852937,14093307.03785499,0.0 - 08/12 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 - 08/12 06:00:00,0.0,9365131.48862702,0.0,10734677.781433683,0.0,16006017.34753046,0.0,13023791.279235632,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.2220169729949,19298457.184527428,49129617.896826799,14093307.03785499,0.0 - 08/12 07:00:00,0.0,31208257.690014226,0.0,31624964.832111319,0.0,33669893.897210668,0.0,37222023.704502198,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,133725140.1238384,14093307.03785499,15502637.741640486 - 08/12 08:00:00,0.0,53902696.045952688,0.0,49688387.06523897,0.0,48573512.0118061,0.0,55741231.34968561,20566.188872141847,20244.221348729723,20270.308094222277,24400.99803710369,307734178.86791118,207905826.47268335,56373228.15141996,38756594.35410121 - 08/12 09:00:00,0.0,49061017.52644601,0.0,44203466.62568715,0.0,38934054.03668484,0.0,45015532.130230668,17970.02291043116,17688.698849463897,17711.49254337939,21320.74622528123,268887457.90280047,177214070.3190487,56373228.15141996,38756594.35410121 - 08/12 10:00:00,0.0,28320835.4242445,0.0,23608676.435049807,0.0,18714612.51079797,0.0,20388627.605209777,12815.794811422056,12615.161152865083,12631.417075613283,15205.451334789068,191764167.74888218,91032751.97530206,28186614.07570998,0.0 - 08/12 11:00:00,0.0,15033689.497832276,0.0,10527036.365226813,0.0,11594706.633241803,0.0,10744357.906801194,10259.901003814908,10099.280339617546,10112.294293147253,12172.980896527823,153520043.51918713,47899790.403102088,28186614.07570998,0.0 - 08/12 12:00:00,0.0,14060183.762136665,0.0,8446625.140590817,0.0,8948072.90999511,0.0,7965431.362699872,5126.3179245688229,5046.064461146034,5052.566830245312,6082.180533915627,76705667.09955287,39420313.17542246,28186614.07570998,0.0 - 08/12 13:00:00,0.0,26193723.339045604,0.0,16225058.18937714,0.0,12292801.191336107,0.0,14193138.116880853,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,68904720.8366397,28186614.07570998,0.0 - 08/12 14:00:00,0.0,43608750.686117809,0.0,31583127.598900264,0.0,21370004.00541699,0.0,27093541.438340215,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,123655423.72877527,28186614.07570998,0.0 - 08/12 15:00:00,0.0,61075740.427242297,0.0,48139346.247400369,0.0,33950749.06567131,0.0,42545068.643375869,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,185710904.38368986,28186614.07570998,0.0 - 08/12 16:00:00,0.0,63180764.89018517,0.0,54350906.20093696,0.0,43174731.912070367,0.0,51027148.63234038,12712.173663425332,12513.162213270754,12529.28669997447,15082.508798153343,190213672.94936604,211733551.63553287,28186614.07570998,0.0 - 08/12 17:00:00,0.0,57805954.923287909,0.0,56917146.30050687,0.0,49932869.3754959,0.0,57556013.41579234,12739.515803918226,12540.07630745356,12556.235475714695,15114.949204134495,190622796.44839553,222211984.015083,35233267.594637479,0.0 - 08/12 18:00:00,0.0,40526798.499179918,0.0,39933514.76134032,0.0,39047556.443780157,0.0,46042971.0160623,17875.02289180661,17595.18607385315,17617.85926701262,21208.032329556852,267465962.02402524,165550840.7203627,14093307.03785499,0.0 - 08/12 19:00:00,0.0,44906366.41299523,0.0,44844030.856596607,0.0,46201312.60903897,0.0,54755654.007768828,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,190707363.88639964,63419881.67034747,0.0 - 08/12 20:00:00,0.0,44596147.98171802,0.0,40798921.88294614,0.0,48579318.66718331,0.0,54822662.20178984,10256.303717812914,10095.739369798985,10108.748760427665,12168.712854003305,153466216.92735435,188797050.73363734,63419881.67034747,69761869.8373822 - 08/12 21:00:00,0.0,37082754.99184942,0.0,33530543.308209246,0.0,42071286.70587236,0.0,46898718.153158809,10258.111192340759,10097.518547975913,10110.530231257271,12170.857353535048,153493262.37039239,159583303.15908984,49326574.63249246,69761869.8373822 - 08/12 22:00:00,0.0,29634383.78684954,0.0,26810489.479602137,0.0,35307825.47213999,0.0,39145515.41428363,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,130898214.1528753,35233267.594637479,69761869.8373822 - 08/12 23:00:00,0.0,26214737.04934524,0.0,23664889.99255678,0.0,31992514.797642717,0.0,35387316.12947759,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,117259457.96902234,35233267.594637479,62010550.96656194 - 08/12 24:00:00,0.0,18935328.803047219,0.0,16066792.411406022,0.0,25256702.58885675,0.0,26758666.606492059,2572.632404833535,2532.3573646117658,2535.6205655484106,3052.330144918815,38494585.727685097,87017490.40980204,35233267.594637479,46507913.22492146 - 08/13 01:00:00,0.0,7135078.389983861,0.0,4114741.4921223118,0.0,13550759.319932124,0.0,12797008.129710578,2569.604594587461,2529.3769552999317,2532.636315674974,3048.7377636404714,38449280.265130218,37597587.33174887,21139960.556782485,23253956.61246073 - 08/13 02:00:00,0.0,0.0,0.0,0.0,0.0,4159217.2461272247,0.0,1506359.0265367209,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,5665576.272663945,14093307.03785499,0.0 - 08/13 03:00:00,0.0,0.0,0.0,0.0,0.0,2262734.6459719699,0.0,0.0,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,2262734.6459719699,14093307.03785499,0.0 - 08/13 04:00:00,0.0,0.0,0.0,0.0,0.0,256096.72755963516,0.0,0.0,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,256096.72755963516,14093307.03785499,0.0 - 08/13 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 - 08/13 06:00:00,0.0,0.0,0.0,0.0,0.0,6380892.528386904,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,6380892.528386904,14093307.03785499,0.0 - 08/13 07:00:00,0.0,24365338.779673414,0.0,25669911.680488334,0.0,31766815.78179503,0.0,36423778.704572279,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,118225844.94652906,14093307.03785499,15502637.741640486 - 08/13 08:00:00,0.0,51767882.19542296,0.0,48291700.25266938,0.0,49413428.95887263,0.0,57911208.90904917,20486.31661748556,20165.599509120235,20191.584942347687,24306.23265586541,306539041.409348,207384220.31601418,56373228.15141996,38756594.35410121 - 08/13 09:00:00,0.0,70337391.39680153,0.0,58357132.97318509,0.0,54204567.42489637,0.0,65058332.1888535,17871.187984496573,17591.411202732455,17614.07953158519,21203.482358420908,267408579.87804646,247957423.98373652,56373228.15141996,38756594.35410121 - 08/13 10:00:00,0.0,81653242.78382397,0.0,52391846.64919895,0.0,39462650.61982016,0.0,48427855.17492593,12736.562530668069,12537.169268247068,12553.324690491469,15111.445258156555,190578606.29122735,221935595.22776903,28186614.07570998,0.0 - 08/13 11:00:00,0.0,95252009.30503638,0.0,56669710.66236142,0.0,37853968.82551694,0.0,47951699.30970648,10141.156646040641,9982.394946915972,9995.258281686944,12032.095248779451,151743258.44432283,237727388.1026212,28186614.07570998,0.0 - 08/13 12:00:00,0.0,89370404.5825715,0.0,55612762.112570349,0.0,34407265.27964253,0.0,46378092.764677558,5070.578323020321,4991.197473457986,4997.629140843472,6016.047624389726,75871629.22216141,225768524.7394619,28186614.07570998,0.0 - 08/13 13:00:00,0.0,91980735.12368477,0.0,59525334.06876893,0.0,37868034.89821343,0.0,53207470.8593174,5059.5552800734299,4980.346998304775,4986.76468374554,6002.969204708657,75706690.20059665,242581574.94998456,28186614.07570998,0.0 - 08/13 14:00:00,0.0,95043875.0503869,0.0,70815502.04166037,0.0,48675069.713883098,0.0,65223495.09118591,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,279757941.8971163,28186614.07570998,0.0 - 08/13 15:00:00,0.0,97772850.0817269,0.0,79904355.2548807,0.0,61101575.121567498,0.0,77926895.77950682,7537.467601263917,7419.467139852937,7429.0278805519069,8942.917586072872,112783968.74786988,316705676.2376819,28186614.07570998,0.0 - 08/13 16:00:00,0.0,88976112.96590725,0.0,79825296.07197203,0.0,66135356.792731408,0.0,79057812.8508534,12578.23625336292,12381.321618348868,12397.276214989337,14923.59717381955,188209552.53787444,313994578.6814641,28186614.07570998,0.0 - 08/13 17:00:00,0.0,82482512.46374731,0.0,80632022.35251233,0.0,68830146.9034918,0.0,82672754.17927215,12605.108022690612,12407.772705114814,12423.761386680386,14955.479502368362,188611637.82067506,314617435.8990236,35233267.594637479,0.0 - 08/13 18:00:00,0.0,68010390.24636865,0.0,66578773.848409067,0.0,57958645.436434689,0.0,71836741.55431757,17708.443480257,17431.214494066706,17453.676393109392,21010.392216480297,264973415.70208825,264384551.0855299,14093307.03785499,0.0 - 08/13 19:00:00,0.0,66380322.24184148,0.0,64721554.43378317,0.0,58379129.13824069,0.0,71719124.14182061,17742.302381935435,17464.543328322994,17487.04817497042,21050.564510848024,265480050.22587676,261200129.95568598,63419881.67034747,0.0 - 08/13 20:00:00,0.0,71634538.24305317,0.0,67570612.8645208,0.0,67041032.072598177,0.0,79949124.58981458,10154.398731402505,9995.429724961188,10008.309856374102,12047.80647757983,151941401.24514348,286195307.76998677,63419881.67034747,69761869.8373822 - 08/13 21:00:00,0.0,66066927.02853922,0.0,62939003.25774742,0.0,61750009.929683048,0.0,73920658.5145806,10143.838247264666,9985.034567172585,9997.901303363677,12035.276866268747,151783383.54265083,264676598.7305503,49326574.63249246,69761869.8373822 - 08/13 22:00:00,0.0,58246041.056307289,0.0,55530227.55709711,0.0,54987166.43185581,0.0,65635362.34229448,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,234398797.38755466,35233267.594637479,69761869.8373822 - 08/13 23:00:00,0.0,50097009.74516417,0.0,47384145.7383823,0.0,48489432.59342461,0.0,57295497.918044697,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,203266085.99501578,35233267.594637479,62010550.96656194 - 08/13 24:00:00,0.0,39748398.97240563,0.0,36789288.4089298,0.0,39385559.90281062,0.0,45820746.83083986,2555.722915824953,2515.7125968080747,2518.9543492625086,3032.26768168501,38241567.15688997,161743994.11498589,35233267.594637479,46507913.22492146 - 08/14 01:00:00,0.0,25312823.53983663,0.0,22884445.107448948,0.0,25873221.243016147,0.0,29568640.104587944,2555.722915824953,2515.7125968080747,2518.9543492625086,3032.26768168501,38241567.15688997,103639129.99488965,21139960.556782485,23253956.61246073 - 08/14 02:00:00,0.0,12674175.661809832,0.0,10701716.328304844,0.0,14104347.141005109,0.0,15420258.409370939,1280.3947885928477,1260.3499693200147,1261.9740588967305,1519.139540991588,19158690.08808425,52900497.54049072,14093307.03785499,0.0 - 08/14 03:00:00,0.0,8100190.91567922,0.0,6193383.441212815,0.0,10601594.21198011,0.0,11045864.343633313,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,35941032.912505459,14093307.03785499,0.0 - 08/14 04:00:00,0.0,5087753.843042348,0.0,3059087.928815794,0.0,8358336.732943883,0.0,8078688.429475073,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,24583866.934277096,14093307.03785499,0.0 - 08/14 05:00:00,0.0,1229106.1251239649,0.0,129790.35323407444,0.0,5316744.563060082,0.0,4131355.2016512809,1285.7652898686623,1265.6363943964908,1267.2672960714916,1525.5114357507053,19239049.49791446,10806996.243069403,14093307.03785499,0.0 - 08/14 06:00:00,0.0,20377254.952179076,0.0,26610654.654763018,0.0,26378044.11945338,0.0,29074360.521263694,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,102440314.24765916,14093307.03785499,0.0 - 08/14 07:00:00,0.0,46022866.236563798,0.0,50140754.13370757,0.0,48551499.59853934,0.0,57722262.569533977,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,202437382.53834469,14093307.03785499,15502637.741640486 - 08/14 08:00:00,0.0,86634988.93094488,0.0,84287158.4055031,0.0,76277991.17308282,0.0,92407290.91883114,20401.785286818464,20082.391532204038,20108.26974346037,24205.93945878816,305274189.6765757,339607429.4283619,56373228.15141996,38756594.35410121 - 08/14 09:00:00,0.0,105535065.34853173,0.0,89491490.62569927,0.0,76773370.62540251,0.0,93813379.39975074,17770.197779954382,17492.002018682073,17514.542248654678,21083.6613357647,265897452.179001,365613305.99938419,56373228.15141996,38756594.35410121 - 08/14 10:00:00,0.0,98649400.74193213,0.0,74107075.3376667,0.0,56354707.55114069,0.0,70571337.78512842,12655.900740543218,12457.77025349406,12473.823362003866,15015.74312322324,189371654.9253518,299682521.4158679,28186614.07570998,0.0 - 08/14 11:00:00,0.0,104146579.6263788,0.0,72831719.77537388,0.0,52727298.570768747,0.0,67284654.92500861,10096.019450590538,9937.964382680977,9950.770464134997,11978.54168937058,151067865.55239753,296990252.8975301,28186614.07570998,0.0 - 08/14 12:00:00,0.0,99939946.98921868,0.0,70442535.79423186,0.0,49399943.37844069,0.0,65022088.24212833,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,284804514.4040196,28186614.07570998,0.0 - 08/14 13:00:00,0.0,100949442.21737184,0.0,75261019.11688036,0.0,51836863.527262318,0.0,69613709.72932075,5032.853830431417,4954.063564838059,4960.447381392109,5971.288953965403,75307153.43025717,297661034.5908353,28186614.07570998,0.0 - 08/14 14:00:00,0.0,103528401.57757847,0.0,84032713.29826501,0.0,60439229.89296182,0.0,78046328.82532889,4998.47073614475,4920.21874430661,4926.558948354937,5930.49472507767,74792675.35398229,326046673.59413418,28186614.07570998,0.0 - 08/14 15:00:00,0.0,104157650.66829975,0.0,88101207.83847924,0.0,66083683.94911462,0.0,83222217.37414715,7492.529256757327,7375.232313512838,7384.736053123113,8889.599955717873,112111551.28480014,341564759.8300407,28186614.07570998,0.0 - 08/14 16:00:00,0.0,101287683.98354294,0.0,92459626.41009352,0.0,71589313.88304453,0.0,88540490.52420663,12496.176840361875,12300.546860766523,12316.397370887338,14826.236812694176,186981688.3849557,353877114.8008876,28186614.07570998,0.0 - 08/14 17:00:00,0.0,90321266.67465753,0.0,88951278.57632026,0.0,73419574.10664477,0.0,89710872.33450663,12513.205314624603,12317.30875108801,12333.180860615355,14846.44044739008,187236487.345385,342402991.6921292,35233267.594637479,0.0 - 08/14 18:00:00,0.0,78996081.95335296,0.0,78527767.30448637,0.0,65833772.469908509,0.0,82629605.58606653,17570.55659584352,17295.486254551495,17317.77325390407,20846.794691589665,262910198.8651995,305987227.31381437,14093307.03785499,0.0 - 08/14 19:00:00,0.0,79592380.0186676,0.0,79823086.85235222,0.0,69155612.94720786,0.0,86447047.1884966,17688.46583360053,17411.549601195475,17433.98616001654,20986.689501316054,264674487.94606299,315018127.00672426,63419881.67034747,0.0 - 08/14 20:00:00,0.0,76609784.43350382,0.0,72713580.51192069,0.0,70256912.34104634,0.0,84357286.3466798,10172.236919457151,10012.988652854128,10025.891410737835,12068.970806781168,152208316.04338903,303937563.6331507,63419881.67034747,69761869.8373822 - 08/14 21:00:00,0.0,66792338.78336218,0.0,63343066.826068099,0.0,62124061.588639508,0.0,74364065.06407444,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,266623532.2621442,49326574.63249246,69761869.8373822 - 08/14 22:00:00,0.0,59294647.34287618,0.0,56082872.84101615,0.0,55760690.40756891,0.0,66459225.53474748,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,237597436.12620873,35233267.594637479,69761869.8373822 - 08/14 23:00:00,0.0,53207629.26556483,0.0,49616317.14543339,0.0,50297867.838703159,0.0,59402445.07140147,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,212524259.32110287,35233267.594637479,62010550.96656194 - 08/14 24:00:00,0.0,42298241.29028982,0.0,38682406.62993221,0.0,40965260.500698748,0.0,47806597.60793026,2563.619649393605,2523.485705539576,2526.7374744379947,3041.6368546273645,38359726.86239474,169752506.02885104,35233267.594637479,46507913.22492146 - 08/15 01:00:00,0.0,23493416.85882461,0.0,19932586.270782778,0.0,24001228.65256527,0.0,26880927.80378864,2573.3444931281676,2533.0583050313055,2536.322409201224,3053.175010498315,38505240.78429244,94308159.5859613,21139960.556782485,23253956.61246073 - 08/15 02:00:00,0.0,9207850.660469372,0.0,5890121.984309457,0.0,11133566.499551896,0.0,11086479.45713337,1287.1894322950385,1267.0382416075084,1268.6709497057244,1527.2011263767423,19260359.099946049,37318018.60146409,14093307.03785499,0.0 - 08/15 03:00:00,0.0,5623895.731179983,0.0,1978380.802518643,0.0,8624229.151441042,0.0,7712373.662442869,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,23938879.347582539,14093307.03785499,0.0 - 08/15 04:00:00,0.0,1125291.2905920419,0.0,0.0,0.0,5216720.717869791,0.0,3059739.3139181549,1288.9118143106217,1268.7336594113274,1270.3685522284314,1529.244666890868,19286131.294228496,9401751.322379988,14093307.03785499,0.0 - 08/15 05:00:00,0.0,0.0,0.0,0.0,0.0,3172234.1314037756,0.0,388765.3600469191,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,3560999.4914506946,14093307.03785499,0.0 - 08/15 06:00:00,0.0,23566265.52655326,0.0,28155585.0709695,0.0,29706237.05924633,0.0,33181363.637346858,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,114609451.29411593,14093307.03785499,0.0 - 08/15 07:00:00,0.0,55794925.46098628,0.0,60337915.24478397,0.0,55030228.66053367,0.0,66322207.076220829,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,237485276.44252474,14093307.03785499,15502637.741640486 - 08/15 08:00:00,0.0,90536107.179804,0.0,87848118.1209332,0.0,80258395.60060388,0.0,97154393.72259724,20401.785286818464,20082.391532204038,20108.26974346037,24205.93945878816,305274189.6765757,355797014.6239383,56373228.15141996,38756594.35410121 - 08/15 09:00:00,0.0,107497900.65270037,0.0,91751864.45531173,0.0,79039510.62607733,0.0,96344405.72996561,17770.197779954382,17492.002018682073,17514.542248654678,21083.6613357647,265897452.179001,374633681.464055,56373228.15141996,38756594.35410121 - 08/15 10:00:00,0.0,102792795.82110928,0.0,77685191.70400568,0.0,59131361.4473888,0.0,73991776.66278923,12645.351295663126,12447.385962141565,12463.425689432059,15003.226609570078,189213802.40450458,313601125.63529297,28186614.07570998,0.0 - 08/15 11:00:00,0.0,115073286.26871845,0.0,80119176.79774502,0.0,58139299.74377553,0.0,74716698.24340844,10049.956801685223,9892.622853137253,9905.370507402542,11923.890114763828,150378624.99715985,328048461.0536474,28186614.07570998,0.0 - 08/15 12:00:00,0.0,125300534.3715159,0.0,84398990.20931462,0.0,56760838.54222926,0.0,76745457.58915633,5000.184992413368,4921.906163573548,4928.248542033831,5932.528624703201,74818325.96180621,343205820.71221616,28186614.07570998,0.0 - 08/15 13:00:00,0.0,135100420.82349218,0.0,95823316.01837294,0.0,63129111.55543037,0.0,87480183.89843177,4989.786108195722,4911.6700758282399,4917.999264044686,5920.190745528777,74662726.29695073,381533032.29572728,28186614.07570998,0.0 - 08/15 14:00:00,0.0,131778485.73187077,0.0,102182419.64517135,0.0,72751977.01359084,0.0,93873986.1051096,4979.117403943153,4901.168392130989,4907.484047856107,5907.532735182582,74503089.28480619,400586868.49574258,28186614.07570998,0.0 - 08/15 15:00:00,0.0,128699149.21955049,0.0,109263284.53936869,0.0,79561631.98987626,0.0,101264949.66755413,7468.676105914729,7351.752588196481,7361.226071784161,8861.299102773874,111754633.92720929,418789015.41634956,28186614.07570998,0.0 - 08/15 16:00:00,0.0,120566258.44894517,0.0,109483617.91317609,0.0,84472306.71903388,0.0,105016078.6887266,12461.21313855377,12266.130522232696,12281.936683388509,14784.753715145407,186458522.61355338,419538261.7698817,28186614.07570998,0.0 - 08/15 17:00:00,0.0,111231531.96658476,0.0,108019166.65418859,0.0,87674087.3088061,0.0,107943540.69631541,12478.84522808235,12283.486578110444,12299.31510431575,14805.673516312832,186722353.53655697,414868326.62589487,35233267.594637479,0.0 - 08/15 18:00:00,0.0,92886102.34719838,0.0,90725605.96347744,0.0,74987126.79152985,0.0,94372296.36630062,17518.487440474444,17244.23225152321,17266.453204861496,20785.016626346107,262131082.28353895,352971131.4685063,14093307.03785499,0.0 - 08/15 19:00:00,0.0,89298520.31418273,0.0,87670644.61459826,0.0,74910910.02501895,0.0,93649899.94221683,17604.045475686577,17328.45085973326,17350.780337344244,20886.52796917432,263411296.71097825,345529974.8960167,63419881.67034747,0.0 - 08/15 20:00:00,0.0,90375076.26113896,0.0,85953730.38833307,0.0,79722849.86909762,0.0,96823450.3702842,10093.060282934695,9935.051541346817,9947.853869307472,11975.030749905296,151023587.1965794,352875106.88885387,63419881.67034747,69761869.8373822 - 08/15 21:00:00,0.0,82826562.59936038,0.0,79154169.27720143,0.0,73412998.27303222,0.0,89220267.67401469,10121.92375444592,9963.46314982706,9976.302089045152,12009.27615706692,151455474.5413862,324613997.82360878,49326574.63249246,69761869.8373822 - 08/15 22:00:00,0.0,77428170.10387378,0.0,74189212.30349708,0.0,68108285.8262957,0.0,82911974.43278726,5059.5552800734299,4980.346998304775,4986.76468374554,6002.969204708657,75706690.20059665,302637642.6664538,35233267.594637479,69761869.8373822 - 08/15 23:00:00,0.0,70672990.30954834,0.0,67536135.92129162,0.0,61994797.82474987,0.0,75370539.36808466,5065.132546146588,4985.836951237121,4992.261711042587,6009.586418007126,75790143.45516032,275574463.42367449,35233267.594637479,62010550.96656194 - 08/15 24:00:00,0.0,57034089.195900399,0.0,54221366.01991839,0.0,51280936.38159288,0.0,61862766.16371509,2544.295588965163,2504.4641668820406,2507.691424586411,3018.7095945737526,38070578.790026519,224399157.76112677,35233267.594637479,46507913.22492146 - 08/16 01:00:00,0.0,41745859.07812615,0.0,39437157.93664431,0.0,37218581.053288917,0.0,44814026.62341529,2541.8060317294105,2502.01358412924,2505.2376840076078,3015.7558299457739,38033327.267323318,163215624.69147469,21139960.556782485,23253956.61246073 - 08/16 02:00:00,0.0,29577993.80029446,0.0,27931899.10220453,0.0,26369084.032341999,0.0,31720900.514268124,1272.7575307898933,1252.8322742126948,1254.4466764719496,1510.0782261404357,19044412.947413904,115599877.4491091,14093307.03785499,0.0 - 08/16 03:00:00,0.0,25962264.518028,0.0,24616907.204057449,0.0,24452223.555001078,0.0,29118215.072756947,1274.824782393121,1254.8671626064286,1256.4841870270755,1512.5309412558204,19075345.463816804,104149610.34984347,14093307.03785499,0.0 - 08/16 04:00:00,0.0,23853415.644689867,0.0,22526245.1169653,0.0,22722235.35584918,0.0,26970284.082209968,1274.535847858056,1254.582751395411,1256.199409323183,1512.1881314592752,19071022.10412933,96072180.19971432,14093307.03785499,0.0 - 08/16 05:00:00,0.0,20406257.879793317,0.0,19194702.75069068,0.0,19980537.25095177,0.0,23526269.957892389,1276.787349414758,1256.7990052752255,1258.41851907233,1514.8594521112039,19104711.57314466,83107767.83932816,14093307.03785499,0.0 - 08/16 06:00:00,0.0,29547491.020462797,0.0,33114670.717182816,0.0,29493972.350588185,0.0,34851889.711689967,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,127008023.79992375,14093307.03785499,0.0 - 08/16 07:00:00,0.0,43399707.928490418,0.0,44900663.18384009,0.0,41340391.85236696,0.0,49746860.125240508,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,179387623.08993799,14093307.03785499,15502637.741640486 - 08/16 08:00:00,0.0,78729112.31123969,0.0,76164634.42739286,0.0,69292178.30210573,0.0,84387713.07690025,20319.15813384135,20001.057922720862,20026.831327319826,24107.90549585315,304037830.36704668,308573638.1176385,56373228.15141996,38756594.35410121 - 08/16 09:00:00,0.0,104586893.12162349,0.0,92759842.39531976,0.0,74033041.94557508,0.0,92270565.91970255,17693.50294267762,17416.50785339029,17438.950801425384,20992.665838957742,264749858.77122373,363650343.38222089,56373228.15141996,38756594.35410121 - 08/16 10:00:00,0.0,101965051.73432169,0.0,80747599.4742805,0.0,54903843.84495999,0.0,70577388.25018966,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,308193883.3037519,28186614.07570998,0.0 - 08/16 11:00:00,0.0,105459086.32226329,0.0,80700407.43026929,0.0,52508494.12529708,0.0,68576243.6605132,10049.956801685223,9892.622853137253,9905.370507402542,11923.890114763828,150378624.99715985,307244231.53834286,28186614.07570998,0.0 - 08/16 12:00:00,0.0,101785681.49292779,0.0,73152253.64307009,0.0,47684449.79561232,0.0,64406766.514856029,5000.184992413368,4921.906163573548,4928.248542033831,5932.528624703201,74818325.96180621,287029151.4464662,28186614.07570998,0.0 - 08/16 13:00:00,0.0,100599067.18628302,0.0,80401713.3443782,0.0,51773164.52341918,0.0,70896422.08259157,4984.485255421508,4906.452208893079,4912.774673355403,5913.901486058164,74583409.04542136,303670367.136672,28186614.07570998,0.0 - 08/16 14:00:00,0.0,96696230.80400008,0.0,81579065.17988888,0.0,55046442.59817003,0.0,73680929.52665188,4993.282562248834,4915.111792240888,4921.445415460221,5924.339154794939,74715044.12908158,307002668.1087109,28186614.07570998,0.0 - 08/16 15:00:00,0.0,86463221.78962729,0.0,78356298.58017919,0.0,55732932.97466788,0.0,72946041.59580806,7517.9568219845209,7400.261805462892,7409.797798128252,8919.768791230099,112492026.78050074,293498494.9402824,28186614.07570998,0.0 - 08/16 16:00:00,0.0,77311241.25400174,0.0,74612374.55520852,0.0,52882304.53617311,0.0,68730872.8899785,12538.173936433974,12341.886484465062,12357.790264910462,14876.064764056007,187610095.6195158,273536793.2353618,28186614.07570998,0.0 - 08/16 17:00:00,0.0,79088218.29146099,0.0,78941152.31677367,0.0,58429524.95557436,0.0,75054074.00262484,12534.060641465054,12337.837583896215,12353.736146919968,14871.184496589505,187548547.92793469,291512969.56643387,35233267.594637479,0.0 - 08/16 18:00:00,0.0,72149407.56928717,0.0,73679972.17056604,0.0,58733705.20833412,0.0,75672614.603196,17625.820619251717,17349.885109363742,17372.242207193118,20912.363345806025,263737120.61381258,280235699.5513833,14093307.03785499,0.0 - 08/16 19:00:00,0.0,71340554.40454416,0.0,71944463.1332247,0.0,60707826.20081391,0.0,76591886.21055204,17693.50294267762,17416.50785339029,17438.950801425384,20992.665838957742,264749858.77122373,280584729.9491348,63419881.67034747,0.0 - 08/16 20:00:00,0.0,79052251.68745618,0.0,77380754.64686165,0.0,70459625.57960697,0.0,86213836.14726927,10113.435210746642,9955.107495862929,9967.935667968046,11999.204823995362,151328459.51486276,313106468.06119409,63419881.67034747,69761869.8373822 - 08/16 21:00:00,0.0,67334257.56505385,0.0,65203414.638987418,0.0,62816902.81531309,0.0,75029007.43435033,10124.720592434574,9966.21620279525,9979.058689603093,12012.594498578592,151497323.94028146,270383582.4537047,49326574.63249246,69761869.8373822 - 08/16 22:00:00,0.0,46632817.73231961,0.0,43772084.85335781,0.0,49322305.02978982,0.0,55945696.15275572,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,195672903.76822297,35233267.594637479,69761869.8373822 - 08/16 23:00:00,0.0,34856045.74766755,0.0,31962033.0518158,0.0,39792269.323392119,0.0,44784535.17425576,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,151394883.29713125,35233267.594637479,62010550.96656194 - 08/16 24:00:00,0.0,30569801.17376382,0.0,28067220.32461471,0.0,34409697.79466999,0.0,38763759.10362032,2557.8018331879968,2517.7589683319786,2521.0033577449896,3034.734237779107,38272674.22935866,131810478.39666885,35233267.594637479,46507913.22492146 - 08/17 01:00:00,0.0,22344020.06076372,0.0,20512560.85432715,0.0,25082636.684914259,0.0,28119947.079155305,2550.223160852308,2510.2989415255049,2513.533717932546,3025.74243234852,38159273.709571968,96059164.67916042,21139960.556782485,23253956.61246073 - 08/17 02:00:00,0.0,13278071.388234798,0.0,11650868.09500093,0.0,15664101.810486129,0.0,17264129.135868584,1276.5134274640412,1256.529371623747,1258.1485379703709,1514.534454172922,19100612.84843189,57857170.42959044,14093307.03785499,0.0 - 08/17 03:00:00,0.0,11814518.669408128,0.0,9951515.058614482,0.0,14872174.73381106,0.0,16303639.164463422,1276.5134274640412,1256.529371623747,1258.1485379703709,1514.534454172922,19100612.84843189,52941847.626297097,14093307.03785499,0.0 - 08/17 04:00:00,0.0,10514437.913309534,0.0,8625247.96865913,0.0,14079838.34590377,0.0,15131882.190862962,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,48351406.41873539,14093307.03785499,0.0 - 08/17 05:00:00,0.0,10019026.313533377,0.0,8217050.2560772099,0.0,13639850.940175485,0.0,14558112.256708734,1277.0591160322547,1257.0665173356272,1258.686375849326,1515.181892828894,19108778.047365965,46434039.766494799,14093307.03785499,0.0 - 08/17 06:00:00,0.0,20323598.92689238,0.0,23711633.14222096,0.0,23704419.153306813,0.0,26770361.24984606,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,94510012.4722662,14093307.03785499,0.0 - 08/17 07:00:00,0.0,42822850.30479177,0.0,45692571.92967418,0.0,43230730.187221657,0.0,51415537.63981167,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,183161690.06149928,14093307.03785499,15502637.741640486 - 08/17 08:00:00,0.0,66886335.41493926,0.0,64578876.43387588,0.0,59923118.13901917,0.0,72304376.8771749,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,263692706.8650092,56373228.15141996,38756594.35410121 - 08/17 09:00:00,0.0,47550252.680931139,0.0,43628197.50397959,0.0,41839506.322487708,0.0,49736027.23645258,12733.58800452011,12534.241308860852,12550.392958130735,15107.916096426645,190534098.12457804,182753983.743851,56373228.15141996,38756594.35410121 - 08/17 10:00:00,0.0,46926080.45009195,0.0,37777200.02554703,0.0,28810170.59733678,0.0,35325528.8925987,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,148838979.96557445,28186614.07570998,0.0 - 08/17 11:00:00,0.0,67065995.08793916,0.0,47708373.767650488,0.0,31973218.013400336,0.0,40505305.19035126,12692.998414253132,12494.287156201483,12510.387320467627,15059.758096974789,189926751.55642934,187252892.05934123,28186614.07570998,0.0 - 08/17 12:00:00,0.0,52423810.96264613,0.0,38212530.63022656,0.0,26472392.45443771,0.0,33707688.45622335,7617.747934188797,7498.490669189598,7508.153239771881,9038.167136599539,113985212.32709933,150816422.50353376,28186614.07570998,0.0 - 08/17 13:00:00,0.0,49937029.97995868,0.0,40460012.43757,0.0,26782395.444516999,0.0,34661161.04196081,7636.54518473936,7516.993645276167,7526.680058831697,9060.469356842616,114266477.68448343,151840598.90400649,28186614.07570998,0.0 - 08/17 14:00:00,0.0,47602363.397749748,0.0,40968877.212902788,0.0,28646790.064924618,0.0,36531284.49834536,7597.698819219882,7478.755426855679,7488.392566563882,9014.37962701069,113685215.18274048,153749315.17392255,28186614.07570998,0.0 - 08/17 15:00:00,0.0,41437718.58659345,0.0,35631813.761232677,0.0,27255605.488625707,0.0,33114535.582848949,7636.54518473936,7516.993645276167,7526.680058831697,9060.469356842616,114266477.68448343,137439673.41930077,28186614.07570998,0.0 - 08/17 16:00:00,0.0,21674440.671059174,0.0,17172473.590035775,0.0,19362979.999738654,0.0,20816885.668721234,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,79026779.92955484,28186614.07570998,0.0 - 08/17 17:00:00,0.0,19527043.970712048,0.0,16863634.284618677,0.0,20428752.894033426,0.0,21818653.58301473,22962.217607984407,22602.739807733946,22631.865744989904,27243.7946701412,343586224.19105806,78638084.73237887,35233267.594637479,0.0 - 08/17 18:00:00,0.0,12182675.454865508,0.0,10783396.311497953,0.0,14676232.023780674,0.0,15552278.692183428,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,53194582.48232756,14093307.03785499,0.0 - 08/17 19:00:00,0.0,24688468.131823359,0.0,23554463.846759879,0.0,28828070.306292364,0.0,32663349.188661145,17893.744082588822,17613.614180901233,17636.31112055755,21230.244307788165,267746089.29060877,109734351.47353675,63419881.67034747,0.0 - 08/17 20:00:00,0.0,38866622.82641806,0.0,36081936.27567893,0.0,45382864.99363065,0.0,51030237.918724048,15349.864180952634,15109.559193685482,15129.029402907197,18212.027910362478,229681730.47646804,171361662.01445169,63419881.67034747,69761869.8373822 - 08/17 21:00:00,0.0,29640456.151732375,0.0,26563002.861294237,0.0,36191966.02870683,0.0,39601278.10207532,12831.455361284885,12630.576533898336,12646.852320938411,15224.031979401374,191998498.30388285,131996703.14380877,49326574.63249246,69761869.8373822 - 08/17 22:00:00,0.0,24039906.860343923,0.0,20599512.096466364,0.0,30431475.08263367,0.0,32700810.87986392,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,107771704.91930788,35233267.594637479,69761869.8373822 - 08/17 23:00:00,0.0,18341053.968716466,0.0,14433219.585205075,0.0,25248550.769378738,0.0,26511057.04224294,7717.897214500606,7597.072093835295,7606.861696645232,9156.990434756448,115483757.1830553,84533881.36554322,35233267.594637479,62010550.96656194 - 08/17 24:00:00,0.0,4960870.973056799,0.0,1287911.7291455579,0.0,14480373.785810585,0.0,13014358.608698514,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,33743515.09671146,35233267.594637479,46507913.22492146 - 08/18 01:00:00,0.0,0.0,0.0,0.0,0.0,855451.3598429543,0.0,0.0,2579.471132248157,2539.0890304729484,2542.360905848142,3060.44403394599,38596914.369054857,855451.3598429543,21139960.556782485,23253956.61246073 - 08/18 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 08/18 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 - 08/18 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.435370197342,1271.2177085598726,1272.8558023278459,1532.2387696204117,19323891.5425397,0.0,14093307.03785499,0.0 - 08/18 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 - 08/18 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 - 08/18 07:00:00,0.0,0.0,0.0,0.0,0.0,5411861.46072763,0.0,559811.9528857939,1289.3339308916439,1269.1491676785279,1270.7845959204443,1529.7454921010706,19292447.47173007,5971673.413613424,14093307.03785499,15502637.741640486 - 08/18 08:00:00,0.0,35443774.685361068,0.0,32189222.522172098,0.0,45639371.28175491,0.0,48382596.98639754,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,161654965.47568564,56373228.15141996,38756594.35410121 - 08/18 09:00:00,0.0,66690973.73604492,0.0,48437673.02565434,0.0,49369010.60792597,0.0,56471225.39979115,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,220968882.7694164,56373228.15141996,38756594.35410121 - 08/18 10:00:00,0.0,48027433.661406818,0.0,28437583.823415679,0.0,24021271.390207158,0.0,27179145.39738249,7701.438390184783,7580.870935484527,7590.639661448311,9137.462667977672,115237481.95834306,127665434.27241215,28186614.07570998,0.0 - 08/18 11:00:00,0.0,61935421.40572795,0.0,31180475.53239949,0.0,23431204.683521205,0.0,27483826.647757465,7693.583394255568,7573.138910981932,7582.897673442953,9128.143015151287,115119946.77779427,144030928.26940615,28186614.07570998,0.0 - 08/18 12:00:00,0.0,69447721.47802279,0.0,30805139.489097638,0.0,20391405.598058579,0.0,26395839.339429764,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,147040105.9046088,28186614.07570998,0.0 - 08/18 13:00:00,0.0,78125301.35610649,0.0,37471318.060732219,0.0,24181090.31959422,0.0,33896585.161287728,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,173674294.89772064,28186614.07570998,0.0 - 08/18 14:00:00,0.0,84477914.15331139,0.0,50364816.66393856,0.0,35350575.58880591,0.0,46173105.80006585,7648.948694358726,7529.202975638569,7538.905122162453,9075.185647534923,114452072.78290083,216366412.20612169,28186614.07570998,0.0 - 08/18 15:00:00,0.0,83682777.87551967,0.0,58767530.08536943,0.0,45888997.77650574,0.0,56520700.92680297,10182.060246319146,10022.658193701558,10035.573411775596,12080.625809123485,152355303.57931123,244860006.66419784,28186614.07570998,0.0 - 08/18 16:00:00,0.0,78850321.86492959,0.0,64298253.390408579,0.0,54548043.38315816,0.0,64460919.19766407,12715.296149321439,12516.235816067658,12532.364263422294,15086.213508476461,190260395.0542363,262157537.83616043,28186614.07570998,0.0 - 08/18 17:00:00,0.0,72607658.04788591,0.0,67076675.401681158,0.0,60036397.52790162,0.0,70357078.14438683,15247.038798178919,15008.343561461148,15027.683344009874,18090.029518787633,228143142.8007753,270077809.12185558,35233267.594637479,0.0 - 08/18 18:00:00,0.0,60117650.78153719,0.0,55642315.594168428,0.0,51640319.70482708,0.0,62355996.91289735,17831.187542935295,17552.036975545892,17574.654566688056,21156.023361419175,266810048.8077183,229756282.99343003,14093307.03785499,0.0 - 08/18 19:00:00,0.0,53546900.963306348,0.0,49133206.74002459,0.0,48907520.67861326,0.0,58259335.6920411,10248.897538564239,10088.44913566807,10101.449132085974,12159.925705035994,153355397.44087539,209846964.07398529,63419881.67034747,0.0 - 08/18 20:00:00,0.0,50808028.80975173,0.0,43484087.67124278,0.0,50102745.287337329,0.0,56902314.908874239,7707.617967390303,7586.953770256096,7596.730334573344,9144.794500443058,115329947.66158608,201297176.67720608,63419881.67034747,69761869.8373822 - 08/18 21:00:00,0.0,42603234.46847017,0.0,36053054.27722301,0.0,43396162.8276913,0.0,48780980.00027639,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,170833431.57366089,49326574.63249246,69761869.8373822 - 08/18 22:00:00,0.0,33361580.432673515,0.0,26971823.114103848,0.0,35912630.74332779,0.0,39288814.935173969,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,135534849.22527913,35233267.594637479,69761869.8373822 - 08/18 23:00:00,0.0,26477069.37202832,0.0,20039360.529556518,0.0,30407265.941626349,0.0,32317880.95308128,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,109241576.79629246,35233267.594637479,62010550.96656194 - 08/18 24:00:00,0.0,19230957.095554074,0.0,12920076.939150723,0.0,24281720.820998,0.0,24648490.315120654,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,81081245.17082346,35233267.594637479,46507913.22492146 - 08/19 01:00:00,0.0,5753407.756580793,0.0,750428.4803730259,0.0,11472119.146300782,0.0,9158842.206848054,2578.6678617832878,2538.2983353570559,2541.5691918408886,3059.490984202141,38584894.943460147,27134797.59010265,21139960.556782485,23253956.61246073 - 08/19 02:00:00,0.0,0.0,0.0,0.0,0.0,752492.3137882474,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,752492.3137882474,14093307.03785499,0.0 - 08/19 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 - 08/19 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 - 08/19 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 08/19 06:00:00,0.0,0.0,0.0,0.0,0.0,8395844.217819553,0.0,3765309.851237779,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.197463074,12161154.069057333,14093307.03785499,0.0 - 08/19 07:00:00,0.0,25317788.470162639,0.0,25625632.38924504,0.0,36174776.88625989,0.0,38683329.61349983,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,125801527.35916738,14093307.03785499,15502637.741640486 - 08/19 08:00:00,0.0,58590967.957181129,0.0,53939454.2063348,0.0,55280417.69602921,0.0,63486986.33994295,20530.328578055814,20208.922454237345,20234.963713501456,24358.451167042196,307197597.28621259,231297826.1994881,56373228.15141996,38756594.35410121 - 08/19 09:00:00,0.0,82045465.51137533,0.0,64925577.2934773,0.0,61174393.39922659,0.0,71706066.95871066,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,279851503.1627898,56373228.15141996,38756594.35410121 - 08/19 10:00:00,0.0,75540151.1046105,0.0,53315121.73530026,0.0,41283953.26429164,0.0,50720146.28174675,12721.477944825816,12522.3208344102,12538.457122932055,15093.547972868762,190352893.9501326,220859372.38594917,28186614.07570998,0.0 - 08/19 11:00:00,0.0,68134741.21319708,0.0,43390330.14978121,0.0,34041436.43727116,0.0,41466541.41303244,10156.997245585064,9997.987558919465,10010.870986362508,12050.889515466051,151980283.10279913,187033049.2132819,28186614.07570998,0.0 - 08/19 12:00:00,0.0,62554632.02702234,0.0,44280840.60813818,0.0,33190988.419231345,0.0,41332872.54758288,5071.919123632333,4992.517283586292,4998.950651681838,6017.638433134373,75891691.77132541,181359333.6019748,28186614.07570998,0.0 - 08/19 13:00:00,0.0,74134506.50540698,0.0,60633820.543702397,0.0,40092343.19305599,0.0,52144067.79113917,5065.132546146588,4985.836951237121,4992.261711042587,6009.586418007126,75790143.45516032,227004738.03330455,28186614.07570998,0.0 - 08/19 14:00:00,0.0,82923007.89180455,0.0,68491481.27877048,0.0,45621670.325064647,0.0,59146647.70249041,5048.009725295269,4968.9821913404889,4975.385232067499,5989.27084468529,75533932.77619876,256182807.1981301,28186614.07570998,0.0 - 08/19 15:00:00,0.0,72774734.41989127,0.0,63490221.95498534,0.0,46554077.350494939,0.0,58542638.52323548,7553.923122536451,7435.665046870175,7445.246660225623,8962.44143391687,113030194.54877684,241361672.24860705,28186614.07570998,0.0 - 08/19 16:00:00,0.0,61561589.74287735,0.0,55888290.25216511,0.0,44110785.51626976,0.0,54171788.61160414,12623.703138115614,12426.076710538919,12442.088978683732,14977.541897000929,188889878.6076211,215732454.12291635,28186614.07570998,0.0 - 08/19 17:00:00,0.0,59336042.82467806,0.0,56823055.47725354,0.0,46566511.15944896,0.0,56857435.433076608,12605.108022690612,12407.772705114814,12423.761386680386,14955.479502368362,188611637.82067506,219583044.89445717,35233267.594637479,0.0 - 08/19 18:00:00,0.0,52452647.20151134,0.0,51485917.97586368,0.0,43625551.67688213,0.0,54120846.45859611,17652.414041658598,17376.062206781844,17398.453036473085,20943.91542635845,264135040.96057914,201684963.31285329,14093307.03785499,0.0 - 08/19 19:00:00,0.0,52887880.861859459,0.0,50745001.41388939,0.0,46837864.07943773,0.0,56849262.90357429,17742.302381935435,17464.543328322994,17487.04817497042,21050.564510848024,265480050.22587676,207320009.25876088,63419881.67034747,0.0 - 08/19 20:00:00,0.0,63412069.17032707,0.0,60239483.69368203,0.0,59877691.16974832,0.0,71331967.47860076,10167.224126917641,10008.05433651696,10020.95073603043,12063.023319783095,152133309.06929327,254861211.5123582,63419881.67034747,69761869.8373822 - 08/19 21:00:00,0.0,56725256.41444409,0.0,54173332.30837433,0.0,53856626.540273409,0.0,64117135.08137688,10164.69253211928,10005.562374307436,10018.455562673249,12060.019679191755,152095428.5338502,228872350.3444687,49326574.63249246,69761869.8373822 - 08/19 22:00:00,0.0,46475819.641895759,0.0,43198372.868158709,0.0,46912279.775480087,0.0,54215176.90794577,5092.23690160619,5012.516982955691,5018.9761227052,6041.744701123089,76195708.95020461,190801649.1934803,35233267.594637479,69761869.8373822 - 08/19 23:00:00,0.0,35858311.59760249,0.0,32155708.942634264,0.0,38649473.50529393,0.0,43252717.271082598,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,149916211.31661327,35233267.594637479,62010550.96656194 - 08/19 24:00:00,0.0,24479684.728527234,0.0,21380092.354025864,0.0,28855082.85242775,0.0,31312131.690177926,2560.789577185695,2520.6999386400295,2523.948117793461,3038.279081983176,38317380.1761685,106026991.62515877,35233267.594637479,46507913.22492146 - 08/20 01:00:00,0.0,13850588.86847436,0.0,11026589.575768102,0.0,18249149.3332971,0.0,18909397.76464149,2559.8111317610198,2519.736810961006,2522.983749026119,3037.1181938363567,38302739.5881042,62035725.54218105,21139960.556782485,23253956.61246073 - 08/20 02:00:00,0.0,2820328.978950021,0.0,730170.0877528947,0.0,8986840.562690003,0.0,7230598.21673184,1279.6576754659348,1259.6243958366125,1261.247550437837,1518.2649844038443,19147660.582119224,19767937.846124758,14093307.03785499,0.0 - 08/20 03:00:00,0.0,230686.16456424155,0.0,0.0,0.0,7646088.032873392,0.0,4749768.523352389,1280.3947885928477,1260.3499693200147,1261.9740588967305,1519.139540991588,19158690.08808425,12626542.720790023,14093307.03785499,0.0 - 08/20 04:00:00,0.0,0.0,0.0,0.0,0.0,5283590.135762954,0.0,1622767.8808890293,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,6906358.016651983,14093307.03785499,0.0 - 08/20 05:00:00,0.0,0.0,0.0,0.0,0.0,3585234.1476113426,0.0,3050.3235166067026,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,3588284.471127949,14093307.03785499,0.0 - 08/20 06:00:00,0.0,6708183.800611127,0.0,8804063.259533499,0.0,18341306.186778446,0.0,17425534.27482014,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,51279087.52174321,14093307.03785499,0.0 - 08/20 07:00:00,0.0,30119851.4473155,0.0,32216558.84944026,0.0,36863338.31408951,0.0,42141821.83101274,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,141341570.441858,14093307.03785499,15502637.741640486 - 08/20 08:00:00,0.0,64232478.976963158,0.0,59643409.06677719,0.0,57833988.47031783,0.0,69231301.79937354,20523.346270123595,20202.049455638346,20228.081858342255,24350.166925211695,307093120.2335372,250941178.3134317,56373228.15141996,38756594.35410121 - 08/20 09:00:00,0.0,64877642.81006069,0.0,50780848.68491352,0.0,50534038.94064342,0.0,58647506.30128987,17942.11273599088,17661.225614011113,17683.983905858593,21287.63186870469,268469834.848435,224840036.7369075,56373228.15141996,38756594.35410121 - 08/20 10:00:00,0.0,23026818.748029096,0.0,13963372.271324672,0.0,14464215.876747346,0.0,14951950.76338793,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,66406357.65948904,28186614.07570998,0.0 - 08/20 11:00:00,0.0,36811336.089638847,0.0,26041720.26529727,0.0,18497864.806855389,0.0,21335810.63140546,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,102686731.79319696,28186614.07570998,0.0 - 08/20 12:00:00,0.0,44903951.35977577,0.0,27897549.350073548,0.0,17780205.32304948,0.0,22450142.941881908,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,113031848.9747807,28186614.07570998,0.0 - 08/20 13:00:00,0.0,54596414.34417839,0.0,29480608.929935986,0.0,17932979.076903657,0.0,24639719.870007364,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,126649722.22102539,28186614.07570998,0.0 - 08/20 14:00:00,0.0,53758052.50151649,0.0,33743918.04380754,0.0,22992822.000990537,0.0,29668839.471476787,5106.0537098561649,5026.117486494988,5032.594151881483,6058.137816691688,76402451.39372756,140163632.01779134,28186614.07570998,0.0 - 08/20 15:00:00,0.0,53386547.52034217,0.0,39657903.20294259,0.0,29064054.6912352,0.0,35823533.2510543,7652.377435231655,7532.578038933501,7542.284534570927,9079.25371769757,114503377.41516115,157932038.66557426,28186614.07570998,0.0 - 08/20 16:00:00,0.0,50201324.7992976,0.0,41533705.941424299,0.0,33315053.532859766,0.0,39418639.074710588,12753.962392052756,12554.296731555838,12570.474224284877,15132.089529495946,190838962.35860194,164468723.34829224,28186614.07570998,0.0 - 08/20 17:00:00,0.0,44147579.05269335,0.0,40384127.937353368,0.0,35563481.39098048,0.0,41251820.103988829,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,161347008.48501603,35233267.594637479,0.0 - 08/20 18:00:00,0.0,35272172.35614839,0.0,32387762.295137537,0.0,30754777.71297201,0.0,36496187.1944791,17911.70643047574,17631.295324881106,17654.01504849612,21251.555947891018,268014861.90627835,134910899.55873705,14093307.03785499,0.0 - 08/20 19:00:00,0.0,37156704.38509286,0.0,34200554.85859116,0.0,35488550.3149813,0.0,41736001.69815955,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,148581811.25682489,63419881.67034747,0.0 - 08/20 20:00:00,0.0,38648519.81470322,0.0,33174423.323060037,0.0,39683279.55224812,0.0,44598892.9744907,10290.52961933414,10129.429458447063,10142.482262193642,12209.32057967526,153978342.91074039,156105115.66450209,63419881.67034747,69761869.8373822 - 08/20 21:00:00,0.0,29630831.225874068,0.0,24380153.318402824,0.0,32321935.090425474,0.0,35376360.56301628,10301.490574943315,10140.218818251411,10153.285525189345,12222.32533510015,154142352.9125432,121709280.19771862,49326574.63249246,69761869.8373822 - 08/20 22:00:00,0.0,20204943.5732216,0.0,14982547.166286443,0.0,24645957.40865694,0.0,25604973.575902538,5160.466741297114,5079.678671777988,5086.224356218598,6122.696801423272,77216639.6545811,85438421.72406753,35233267.594637479,69761869.8373822 - 08/20 23:00:00,0.0,13801857.029943722,0.0,8642847.84753421,0.0,19621174.327192509,0.0,19112581.44058554,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,77245140.69979945,61178460.64525598,35233267.594637479,62010550.96656194 - 08/20 24:00:00,0.0,3396604.5946327236,0.0,504411.9076039924,0.0,10907200.295370976,0.0,8043547.933835333,2585.795773120085,2545.3146579121655,2548.5945556437516,3067.9479789141485,38691550.67612454,22851764.731443027,35233267.594637479,46507913.22492146 - 08/21 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,0.0,21139960.556782485,23253956.61246073 - 08/21 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 - 08/21 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,19353877.68371783,0.0,14093307.03785499,0.0 - 08/21 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,19347396.0745494,0.0,14093307.03785499,0.0 - 08/21 05:00:00,0.0,0.0,3195577.389256929,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,22548252.28975389,0.0,14093307.03785499,0.0 - 08/21 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.1887077292618,1274.8293413308407,1534.6144770400713,19353852.873256897,0.0,14093307.03785499,0.0 - 08/21 07:00:00,0.0,0.0,0.0,0.0,0.0,2096574.1946685676,0.0,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,77366390.93268533,2096574.1946685676,14093307.03785499,15502637.741640486 - 08/21 08:00:00,0.0,22102902.26463705,0.0,19554118.940110327,0.0,38224442.702368918,0.0,33329861.750444633,20647.636089284482,20324.39349449403,20350.5835499794,24497.63205121202,308952882.66589179,113211325.65756092,56373228.15141996,38756594.35410121 - 08/21 09:00:00,0.0,51999623.867194648,0.0,35820809.38064332,0.0,39359161.94374509,0.0,43810323.705281037,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,170989918.8968641,56373228.15141996,38756594.35410121 - 08/21 10:00:00,0.0,47984556.39349488,0.0,21984822.32991468,0.0,20108820.92139556,0.0,21867371.376941727,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,111945571.02174685,28186614.07570998,0.0 - 08/21 11:00:00,0.0,55888301.7675877,0.0,20250833.469600645,0.0,15391225.264632944,0.0,17055179.366305885,10284.617336202597,10123.609733210878,10136.655037647482,12202.305881425405,153889876.7585509,108585539.86812717,28186614.07570998,0.0 - 08/21 12:00:00,0.0,62300384.56422491,0.0,20258780.822347855,0.0,12893996.164720241,0.0,16180254.011683427,5131.713784538751,5051.375847921537,5057.885061284797,6088.5825157973099,76786405.95435262,111633415.56297642,28186614.07570998,0.0 - 08/21 13:00:00,0.0,70558243.91555539,0.0,27922062.382266899,0.0,17238106.234734186,0.0,24043528.85619134,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,139761941.3887478,28186614.07570998,0.0 - 08/21 14:00:00,0.0,77225343.0848499,0.0,40188348.119927559,0.0,27023129.858586629,0.0,35283538.17728647,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,179720359.24065054,28186614.07570998,0.0 - 08/21 15:00:00,0.0,76891270.51855025,0.0,49105425.00619148,0.0,37578083.37623103,0.0,45968635.13953161,7660.724096488548,7540.7940316513499,7550.511114433981,9089.156712667225,114628269.43886797,209543414.0405044,28186614.07570998,0.0 - 08/21 16:00:00,0.0,70114206.39967187,0.0,53285886.32550908,0.0,45511736.76354552,0.0,52884533.66815624,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,221796363.1568827,28186614.07570998,0.0 - 08/21 17:00:00,0.0,63011533.517805349,0.0,55614174.90573658,0.0,50795332.10226624,0.0,58403271.89368947,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,227824312.41949765,35233267.594637479,0.0 - 08/21 18:00:00,0.0,51540685.56133348,0.0,45213878.7686038,0.0,44105846.85464474,0.0,52154920.76469355,17915.207456523087,17634.741541712567,17657.46570612972,21255.709781653815,268067248.14966909,193015331.94927556,14093307.03785499,0.0 - 08/21 19:00:00,0.0,48240170.120202299,0.0,41863863.781571399,0.0,43780443.23795472,0.0,51150026.55080731,17951.694586596324,17670.65745895784,17693.427904700224,21299.00036868633,268613209.14818659,185034503.69053573,63419881.67034747,0.0 - 08/21 20:00:00,0.0,46526888.313598077,0.0,37793119.36439106,0.0,45578479.54840515,0.0,50926024.84143193,10300.183598590404,10138.93230285712,10151.997351988657,12220.774657547772,154122796.47954227,180824512.0678262,63419881.67034747,69761869.8373822 - 08/21 21:00:00,0.0,38493368.52163093,0.0,30512022.115390779,0.0,39165593.623579639,0.0,43101863.3587033,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,151272847.61930464,49326574.63249246,69761869.8373822 - 08/21 22:00:00,0.0,32258871.46659054,0.0,24597353.680972537,0.0,34173667.80363526,0.0,36830744.68350245,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,127860637.6347008,35233267.594637479,69761869.8373822 - 08/21 23:00:00,0.0,27197883.3427106,0.0,19841983.551219293,0.0,30316548.198968535,0.0,31970719.08804991,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,109327134.18094835,35233267.594637479,62010550.96656194 - 08/21 24:00:00,0.0,20472244.185800479,0.0,13639816.73818971,0.0,24543117.239663744,0.0,24932573.87105678,2576.3257447465459,2535.992884599446,2539.2607702746647,3056.7121517421508,38549849.5849061,83587752.0347107,35233267.594637479,46507913.22492146 - 08/22 01:00:00,0.0,4867139.120406989,0.0,492191.3487339335,0.0,10473860.56623345,0.0,7674432.235895393,2581.185747601241,2540.7768032028186,2544.050853445442,3062.478359611532,38622570.349899727,23507623.27126977,21139960.556782485,23253956.61246073 - 08/22 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,0.0,14093307.03785499,0.0 - 08/22 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.435370197342,1271.2177085598726,1272.8558023278459,1532.2387696204117,19323891.5425397,0.0,14093307.03785499,0.0 - 08/22 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 - 08/22 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 - 08/22 06:00:00,0.0,0.0,0.0,0.0,0.0,2773993.2048135839,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,2773993.2048135839,14093307.03785499,0.0 - 08/22 07:00:00,0.0,15575095.846421084,0.0,14696608.56568733,0.0,31379819.949215779,0.0,29429028.256266364,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,91080552.61759055,14093307.03785499,15502637.741640486 - 08/22 08:00:00,0.0,61660824.97993676,0.0,55843212.0643931,0.0,59522973.317383248,0.0,67336799.58316915,20597.71711098278,20275.256007110016,20301.382743927534,24438.405088981595,308205939.423607,244363809.94488228,56373228.15141996,38756594.35410121 - 08/22 09:00:00,0.0,76970390.52416542,0.0,59414052.338995497,0.0,56093938.657249029,0.0,66430423.000802058,17984.441923910705,17702.892130597556,17725.704114004468,21337.853834367128,269103211.21036747,258908804.521212,56373228.15141996,38756594.35410121 - 08/22 10:00:00,0.0,69447886.05982259,0.0,42224030.24562953,0.0,34998278.61906758,0.0,41405643.347614329,12803.947885928475,12603.499693200145,12619.740588967305,15191.39540991588,191586900.88084249,188075838.272134,28186614.07570998,0.0 - 08/22 11:00:00,0.0,79022840.43918967,0.0,42245296.25509234,0.0,31537370.863935379,0.0,38072602.05373273,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,190878109.6119501,28186614.07570998,0.0 - 08/22 12:00:00,0.0,83995200.76017547,0.0,42903689.28125443,0.0,29297139.958977194,0.0,38043753.94153605,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,194239783.94194315,28186614.07570998,0.0 - 08/22 13:00:00,0.0,89260024.84306401,0.0,49497587.52290569,0.0,32833218.56688991,0.0,45161896.1393981,5075.891774653108,4996.427742014239,5002.866149134601,6022.351831925111,75951134.99181742,216752727.0722577,28186614.07570998,0.0 - 08/22 14:00:00,0.0,91708900.4011173,0.0,58857781.73744011,0.0,40950925.1778433,0.0,53705834.62215771,5069.229251981554,4989.869522378,4996.299478562977,6014.447003099436,75851442.92167908,245223441.93855844,28186614.07570998,0.0 - 08/22 15:00:00,0.0,88114677.73912342,0.0,64695709.72266209,0.0,49117579.44442292,0.0,61285186.162281598,7599.759525721978,7480.78387261306,7490.42362618066,9016.824576613424,113716049.76406484,263213153.06849004,28186614.07570998,0.0 - 08/22 16:00:00,0.0,79933296.91366653,0.0,67299540.9783857,0.0,55246018.50648338,0.0,66199390.943046148,12662.83136536647,12464.5923780928,12480.654277606469,15023.966045017814,189475358.6379008,268678247.34158179,28186614.07570998,0.0 - 08/22 17:00:00,0.0,72045817.01767367,0.0,68169191.65810669,0.0,59451058.29371428,0.0,70322362.48033464,12683.129102380915,12484.572350247745,12500.659995994849,15048.048535173199,189779075.94166813,269988429.4498293,35233267.594637479,0.0 - 08/22 18:00:00,0.0,59618165.3523684,0.0,56707596.15987225,0.0,51828271.100092049,0.0,63079412.77168952,17788.211931208738,17509.734155038008,17532.297234678186,21105.034438585564,266166999.93423779,231233445.3840222,14093307.03785499,0.0 - 08/22 19:00:00,0.0,55343135.34946902,0.0,52224432.87723848,0.0,50639749.63147361,0.0,60910179.7984868,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,219117497.6566679,63419881.67034747,0.0 - 08/22 20:00:00,0.0,57773724.58489992,0.0,52262408.17608385,0.0,56090836.04329758,0.0,65196840.75959748,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,231323809.56387884,63419881.67034747,69761869.8373822 - 08/22 21:00:00,0.0,46676816.63215971,0.0,41633044.86552283,0.0,46909790.72286753,0.0,53816539.61037189,10270.267998696701,10109.485037260503,10122.512140584698,12185.280940222547,153675166.020352,189036191.83092196,49326574.63249246,69761869.8373822 - 08/22 22:00:00,0.0,37223975.048928569,0.0,32408116.2478923,0.0,39017866.09872131,0.0,43968541.418466549,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,152618498.8140087,35233267.594637479,69761869.8373822 - 08/22 23:00:00,0.0,31197083.84578344,0.0,26694726.60272109,0.0,33978588.99443556,0.0,37752788.95398953,5139.209189174922,5058.753910599863,5065.272631349948,6097.4755272809429,76898560.53026043,129623188.39692962,35233267.594637479,62010550.96656194 - 08/22 24:00:00,0.0,20889611.41373915,0.0,16572127.463525396,0.0,25161260.94196219,0.0,26764834.62743978,2575.3726437358288,2535.0547045628529,2538.3213812973365,3055.5813337750375,38535588.2281358,89387834.44666651,35233267.594637479,46507913.22492146 - 08/23 01:00:00,0.0,4211242.842549543,0.0,1004469.3749000303,0.0,10238784.795377277,0.0,8215564.9352481239,2579.9838544362098,2539.593725899498,2542.8662516262627,3061.052359250305,38604586.28836419,23670061.948074975,21139960.556782485,23253956.61246073 - 08/23 02:00:00,0.0,0.0,0.0,0.0,0.0,693349.8202987872,0.0,0.0,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,693349.8202987872,14093307.03785499,0.0 - 08/23 03:00:00,0.0,0.0,0.0,0.0,0.0,51412.45684306235,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,51412.45684306235,14093307.03785499,0.0 - 08/23 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 - 08/23 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.3339308916439,1269.1491676785279,1270.7845959204443,1529.7454921010706,19292447.471730073,0.0,14093307.03785499,0.0 - 08/23 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,0.0,14093307.03785499,0.0 - 08/23 07:00:00,0.0,0.0,0.0,0.0,0.0,8639477.376074974,0.0,3772869.453744567,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,12412346.82981954,14093307.03785499,15502637.741640486 - 08/23 08:00:00,0.0,34085506.39823838,0.0,30211520.25679608,0.0,33328607.965846339,0.0,37178109.27824308,20537.169040492754,20215.655827958744,20241.705763862163,24366.56711460712,307299951.8889148,134803743.89912389,56373228.15141996,38756594.35410121 - 08/23 09:00:00,0.0,42891327.81380131,0.0,36301114.99442139,0.0,34081683.846607919,0.0,39016563.83248702,17925.527040299865,17644.899570480204,17667.636824554225,21267.95357388223,268221661.2331795,152290690.48731763,56373228.15141996,38756594.35410121 - 08/23 10:00:00,0.0,45761081.27247623,0.0,33288729.72193089,0.0,22590775.868011729,0.0,26913181.117164446,12781.245773277731,12581.152986358024,12597.365086112537,15164.460219848688,191247206.6361491,128553767.9795833,28186614.07570998,0.0 - 08/23 11:00:00,0.0,67119272.07670352,0.0,48779698.58005829,0.0,29062750.231590734,0.0,36548563.32915676,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,181510284.21750934,28186614.07570998,0.0 - 08/23 12:00:00,0.0,63076784.82428193,0.0,41588957.582129728,0.0,25998177.76662806,0.0,33821073.72803853,5104.9494112337429,5025.0304758735069,5031.505740535867,6056.827608529854,76385927.65022269,164484993.90107826,28186614.07570998,0.0 - 08/23 13:00:00,0.0,59714211.2934118,0.0,41970155.55277255,0.0,26944419.237506603,0.0,35718680.10715586,5108.236464129019,5028.266069342509,5034.745503397304,6060.727571315576,76435112.18946386,164347466.1908468,28186614.07570998,0.0 - 08/23 14:00:00,0.0,65017464.012999039,0.0,46372065.373201329,0.0,31091205.37030928,0.0,40170397.76270214,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,182651132.51921178,28186614.07570998,0.0 - 08/23 15:00:00,0.0,54947864.29592213,0.0,43517954.495950508,0.0,32049197.5574983,0.0,39527388.97516774,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,170042405.32453866,28186614.07570998,0.0 - 08/23 16:00:00,0.0,40923054.85481748,0.0,34571642.07712483,0.0,26936606.61136015,0.0,32273557.561787838,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,134704861.10509033,28186614.07570998,0.0 - 08/23 17:00:00,0.0,31146591.05808459,0.0,26474728.97130499,0.0,22778940.89130842,0.0,26459133.382645616,12806.361161964294,12605.875188949427,12622.119145785322,15194.25866981197,191623010.99943964,106859394.30334363,35233267.594637479,0.0 - 08/23 18:00:00,0.0,16954925.382359018,0.0,12578305.516526176,0.0,13801135.96322392,0.0,15000726.265397897,17992.718858041855,17711.03948778082,17733.86196988905,21347.67410076374,269227059.89931169,58335093.127507019,14093307.03785499,0.0 - 08/23 19:00:00,0.0,20710281.670523369,0.0,15662200.980645493,0.0,20653288.76079221,0.0,22226830.524450415,18013.41145189717,17731.40813521913,17754.256864408566,21372.225073488204,269536685.49004706,79252601.93641149,63419881.67034747,0.0 - 08/23 20:00:00,0.0,24655307.352132288,0.0,17734068.99079553,0.0,30009521.43043744,0.0,30797626.0493065,10301.490574943315,10140.218818251411,10153.285525189345,12222.32533510015,154142352.9125432,103196523.82267177,63419881.67034747,69761869.8373822 - 08/23 21:00:00,0.0,11499518.598148559,0.0,4601724.329928212,0.0,20167750.469605134,0.0,17881634.97452175,10315.760694056391,10154.265535987683,10167.35034355514,12239.256286703878,154355878.29709114,54150628.372203659,49326574.63249246,69761869.8373822 - 08/23 22:00:00,0.0,1453158.7242852764,0.0,0.0,0.0,12595857.299996002,0.0,8433746.256830849,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,22482762.281112128,35233267.594637479,69761869.8373822 - 08/23 23:00:00,0.0,0.0,0.0,0.0,0.0,8861326.781447726,0.0,2479895.4150283338,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,11341222.196476059,35233267.594637479,62010550.96656194 - 08/23 24:00:00,0.0,0.0,3608458.402315556,0.0,0.0,2774684.6328109495,0.0,0.0,2581.6344915092947,2541.218521941278,2544.4931413835818,3063.0107771288296,42237743.3573823,2774684.6328109495,35233267.594637479,46507913.22492146 - 08/24 01:00:00,8361021.631407979,0.0,16474284.298370077,0.0,0.0,0.0,362791.54400731206,0.0,2582.4770040741007,2542.0478448147116,2545.3235329241845,3064.01038612629,63839989.038366798,0.0,21139960.556782485,23253956.61246073 - 08/24 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0324579201172,1270.8211039495109,1272.4586866519633,1531.7607295835915,19317862.72117866,0.0,14093307.03785499,0.0 - 08/24 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 - 08/24 04:00:00,1156216.8219004407,0.0,7383310.4624983,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,27882899.688668949,0.0,14093307.03785499,0.0 - 08/24 05:00:00,6394386.477879113,0.0,10532776.970776473,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,36276252.319635327,0.0,14093307.03785499,0.0 - 08/24 06:00:00,7575527.106618093,0.0,11476303.012109034,0.0,0.0,0.0,2453604.314623971,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,40856551.4577464,0.0,14093307.03785499,0.0 - 08/24 07:00:00,3225619.3852976106,0.0,6862461.755047783,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,29439198.164740698,0.0,14093307.03785499,15502637.741640486 - 08/24 08:00:00,15253739.440527223,0.0,18880587.547258296,0.0,6046163.426337976,0.0,15796059.838377364,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,133372905.7364198,0.0,56373228.15141996,38756594.35410121 - 08/24 09:00:00,28288020.500066207,0.0,33159216.288291623,0.0,13463089.670905875,0.0,26214572.640939285,0.0,12931.193333426698,12728.753089480168,12745.155387032783,15342.36727611518,294615787.8100004,0.0,56373228.15141996,38756594.35410121 - 08/24 10:00:00,23261331.060042427,0.0,27757672.73251217,0.0,14350250.909000528,0.0,23135951.489495167,0.0,12929.467975608171,12727.054742460157,12743.454851519291,15340.320204924456,281970278.17929378,0.0,28186614.07570998,0.0 - 08/24 11:00:00,21710629.162781314,0.0,26317993.248616298,0.0,13413256.157705144,0.0,21693708.689959136,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,276569311.30176398,0.0,28186614.07570998,0.0 - 08/24 12:00:00,16902783.554143255,0.0,22013270.718812169,0.0,11023901.347891812,0.0,18046220.292142247,0.0,7751.825070850429,7630.468803264726,7640.301441143494,9197.244541209617,183977599.3962752,0.0,28186614.07570998,0.0 - 08/24 13:00:00,6026356.195400689,0.0,13643981.01394771,0.0,7066705.991345531,0.0,11645305.057477918,0.0,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,154279966.69559983,0.0,28186614.07570998,0.0 - 08/24 14:00:00,1139374.309791814,0.0,6431963.670922537,0.0,2421375.4211637519,0.0,5112242.5599989,0.0,7734.328759975453,7613.246400400431,7623.056845455254,9176.485836231703,130834580.19330321,0.0,28186614.07570998,0.0 - 08/24 15:00:00,0.0,1422644.1523602764,0.0,0.0,0.0,0.0,0.0,0.0,7724.143916618543,7603.221002666253,7613.018528972825,9164.4019083681,115577227.28385259,1422644.1523602764,28186614.07570998,0.0 - 08/24 16:00:00,0.0,16359790.833049283,0.0,3121010.4550310026,0.0,6070318.932236763,0.0,2253105.0748799766,18010.934882248657,17728.97033673047,17751.81592456773,21369.28671813671,269499628.30206087,27804225.295197026,28186614.07570998,0.0 - 08/24 17:00:00,0.0,14594203.052453857,0.0,11258863.595652469,0.0,16436597.609421906,0.0,15621653.841758892,23175.41309682841,22812.597681428517,22841.994041974478,27496.74297948249,346776292.07897,57911318.09928712,35233267.594637479,0.0 - 08/24 18:00:00,0.0,6976896.607794478,0.0,4578721.669749502,0.0,12238196.286611949,0.0,11591187.95667305,18038.56953966687,17756.172368431562,17779.053008863124,21402.0741842837,269913128.7644829,35385002.52082898,14093307.03785499,0.0 - 08/24 19:00:00,0.0,4225589.872429493,0.0,2978160.2042070708,0.0,10606405.967080974,0.0,9053341.975554225,18059.886981053463,17777.156081296485,17800.063761383837,21427.36651475213,270232104.01854929,26863498.019271766,63419881.67034747,0.0 - 08/24 20:00:00,0.0,5318272.562318653,0.0,0.0,0.0,15258821.410759235,0.0,12649696.162960366,15520.665454345415,15277.686541280355,15297.373399749846,18414.677101357585,232237448.98823954,33226790.13603825,63419881.67034747,69761869.8373822 - 08/24 21:00:00,0.0,2676910.2497430124,0.0,0.0,0.0,12939776.11295589,0.0,9830691.58615578,12914.353701973421,12712.177085598723,12728.55802327846,15322.387696204118,193238915.425397,25447377.948854686,49326574.63249246,69761869.8373822 - 08/24 22:00:00,0.0,511475.16529276038,0.0,0.0,0.0,10723308.448931238,0.0,7397477.824955409,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,154683563.66268707,18632261.439179407,35233267.594637479,69761869.8373822 - 08/24 23:00:00,0.0,0.0,0.0,0.0,0.0,7490998.69690062,0.0,3052465.564048337,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,116032060.94369234,10543464.260948956,35233267.594637479,62010550.96656194 - 08/24 24:00:00,0.0,0.0,2227630.3976446154,0.0,0.0,1743876.366258315,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,79619099.2055014,1743876.366258315,35233267.594637479,46507913.22492146 - 08/25 01:00:00,7380316.969625886,0.0,14743122.089628332,0.0,0.0,0.0,165518.91018112654,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,60994704.697811137,0.0,21139960.556782485,23253956.61246073 - 08/25 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223887,19353877.68371783,0.0,14093307.03785499,0.0 - 08/25 03:00:00,0.0,0.0,2761232.806510806,0.0,0.0,0.0,0.0,0.0,1293.4066195817769,1273.1580976674578,1274.7986918248478,1534.5775817678287,22114620.373541688,0.0,14093307.03785499,0.0 - 08/25 04:00:00,4355277.586086181,0.0,8567858.554143928,0.0,0.0,0.0,0.0,0.0,1293.377181994282,1273.1291209308868,1274.7696777487939,1534.5426551939677,32276083.229354659,0.0,14093307.03785499,0.0 - 08/25 05:00:00,8091092.305604897,0.0,11887939.223505339,0.0,0.0,0.0,2215297.556958842,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,41544129.22143757,0.0,14093307.03785499,0.0 - 08/25 06:00:00,1294634.1980871657,0.0,1177852.158805888,0.0,0.0,0.0,0.0,0.0,1293.2333272844795,1272.9875182934023,1274.627892641858,1534.371977072059,21823280.93194353,0.0,14093307.03785499,0.0 - 08/25 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3087698752136,1273.0617798163044,1274.7022498583124,1534.4614868261443,19351923.430953508,0.0,14093307.03785499,15502637.741640486 - 08/25 08:00:00,0.0,0.0,0.0,0.0,0.0,12881362.48279427,0.0,3229155.1563288357,1292.3538049279317,1272.1217650234208,1273.7610237604227,1533.3284573694473,19337634.1838924,16110517.639123105,56373228.15141996,38756594.35410121 - 08/25 09:00:00,0.0,29853648.753710435,0.0,11919308.178561762,0.0,25221400.514555243,0.0,23859189.000309566,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,90853546.447137,56373228.15141996,38756594.35410121 - 08/25 10:00:00,0.0,36363735.22954145,0.0,11420203.802077413,0.0,12655250.41259294,0.0,11897386.914006196,7732.599381733982,7611.544095897946,7621.352347359667,9174.433994962623,115703747.35183518,72336576.358218,28186614.07570998,0.0 - 08/25 11:00:00,0.0,47266132.66516027,0.0,14189445.94484385,0.0,11469715.842778165,0.0,11604339.21305437,7715.70702740283,7594.9161945251139,7604.703019238741,9154.391861369517,115450985.16913033,84529633.66583665,28186614.07570998,0.0 - 08/25 12:00:00,0.0,49961004.27889618,0.0,14167253.933489582,0.0,9905280.262453553,0.0,11331988.655236984,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,85365527.13007629,28186614.07570998,0.0 - 08/25 13:00:00,0.0,49538324.723776,0.0,17658323.417463405,0.0,12220672.14860298,0.0,15529657.393193756,5133.441639124436,5053.076652621352,5059.588057645065,6090.63254930696,76812260.03531212,94946977.68303614,28186614.07570998,0.0 - 08/25 14:00:00,0.0,55316012.237436879,0.0,28029042.32322628,0.0,19464548.90222542,0.0,23982340.31930297,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,126791943.78219155,28186614.07570998,0.0 - 08/25 15:00:00,0.0,55654943.39335502,0.0,33374025.18764718,0.0,25731250.07920895,0.0,30268592.32251712,10266.883278248872,10106.153305242704,10119.17611529013,12181.26509861392,153624520.07062424,145028810.98272828,28186614.07570998,0.0 - 08/25 16:00:00,0.0,38742266.21079751,0.0,26793475.4830963,0.0,22424841.57420229,0.0,25145640.337128238,12833.60409781109,12632.691631553376,12648.970144112664,15226.5813732674,192030650.0882803,113106223.60522434,28186614.07570998,0.0 - 08/25 17:00:00,0.0,29005432.651645587,0.0,20621444.92164123,0.0,19778729.95109103,0.0,21419565.87964607,15415.235934780607,15173.907540512191,15193.460669146689,18289.589000886117,230659895.32317216,90825173.40402392,35233267.594637479,0.0 - 08/25 18:00:00,0.0,16880568.212148508,0.0,9395506.354471095,0.0,12647443.235306032,0.0,12455770.918013461,18015.856519017147,17733.81492435722,17756.666754940117,21375.126052292104,269573271.30218377,51379288.7199391,14093307.03785499,0.0 - 08/25 19:00:00,0.0,18973290.480023277,0.0,11458178.53944599,0.0,18703191.037390599,0.0,18780974.259662007,10300.183598590404,10138.93230285712,10151.997351988657,12220.774657547772,154122796.47954227,67915634.31652187,63419881.67034747,0.0 - 08/25 20:00:00,0.0,28735175.01611148,0.0,21077342.9683184,0.0,30737796.873002404,0.0,32585040.775780765,7729.903173512449,7608.890097319098,7618.694928832762,9171.23504682837,115663403.68737364,113135355.63321308,63419881.67034747,69761869.8373822 - 08/25 21:00:00,0.0,21376567.870070153,0.0,14470146.352736902,0.0,25080623.32486112,0.0,25494617.179003858,5158.942264496314,5078.1780609458969,5084.721811696284,6120.88806789198,77193828.73810971,86421954.72667204,49326574.63249246,69761869.8373822 - 08/25 22:00:00,0.0,14561360.694796268,0.0,8441096.436318499,0.0,19785266.420954843,0.0,18857689.42871809,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,61645412.9807877,35233267.594637479,69761869.8373822 - 08/25 23:00:00,0.0,8867794.698539114,0.0,3103242.7584579035,0.0,15358534.65604515,0.0,13388604.601078812,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,40718176.71412098,35233267.594637479,62010550.96656194 - 08/25 24:00:00,0.0,3487353.5070708335,0.0,0.0,0.0,10470394.591545746,0.0,7643100.648509617,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,21600848.747126197,35233267.594637479,46507913.22492146 - 08/26 01:00:00,0.0,0.0,0.0,0.0,0.0,944989.7042210272,0.0,0.0,2582.273252974316,2541.847283476404,2545.1227131421217,3063.7686432240536,38638842.81414082,944989.7042210272,21139960.556782485,23253956.61246073 - 08/26 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19328052.497917829,0.0,14093307.03785499,0.0 - 08/26 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 - 08/26 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 - 08/26 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 08/26 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 08/26 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5167.206195107078,5086.312618181314,5092.866851138977,6130.692906108027,77317482.85392744,0.0,14093307.03785499,15502637.741640486 - 08/26 08:00:00,0.0,7934809.803603854,0.0,0.0,0.0,15319070.09868645,0.0,9700512.632298449,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,308775314.9524388,32954392.534588756,56373228.15141996,38756594.35410121 - 08/26 09:00:00,0.0,29209719.273394944,0.0,18313251.165516605,0.0,23720440.981602298,0.0,23247695.289175426,18036.440738195713,17754.076893744557,17776.95483394311,21399.54844259952,269881275.27053847,94491106.70968926,56373228.15141996,38756594.35410121 - 08/26 10:00:00,0.0,5906445.64949886,0.0,1635142.7694943108,0.0,1163707.2665421463,0.0,662759.3539293157,12897.355661240787,12695.445152364739,12711.804529240711,15302.22016972995,192984571.84527428,9368055.039464634,28186614.07570998,0.0 - 08/26 11:00:00,0.0,3205046.321881781,0.0,0.0,0.0,0.0,0.0,0.0,10293.37797251267,10132.233220125221,10145.289636804897,12212.70004199326,154020963.13716976,3205046.321881781,28186614.07570998,0.0 - 08/26 12:00:00,0.0,12241677.981408604,0.0,0.0,0.0,0.0,0.0,0.0,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,12241677.981408604,28186614.07570998,0.0 - 08/26 13:00:00,0.0,23222019.72452433,0.0,3693975.6525538854,0.0,2641325.9560598118,0.0,0.0,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,29557321.33313803,28186614.07570998,0.0 - 08/26 14:00:00,0.0,23412991.52441254,0.0,12350169.442451863,0.0,8501546.579894873,0.0,8919144.744109508,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,53183852.29086878,28186614.07570998,0.0 - 08/26 15:00:00,0.0,29521249.647533046,0.0,20030387.45610201,0.0,16085547.329703695,0.0,17595661.462235623,7659.080564784247,7539.17622974248,7548.891227822226,9087.206725037533,114603677.09059134,83232845.89557436,28186614.07570998,0.0 - 08/26 16:00:00,0.0,37127491.059518348,0.0,30962263.899509178,0.0,26819088.50137413,0.0,30256912.136186005,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,125165755.59658766,28186614.07570998,0.0 - 08/26 17:00:00,0.0,30647517.362892368,0.0,29113251.773367827,0.0,28302976.586725967,0.0,31439235.414637068,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,119502981.13762322,35233267.594637479,0.0 - 08/26 18:00:00,0.0,15226840.000046736,0.0,12966318.385258297,0.0,15971505.948008767,0.0,17302397.034136565,17960.99824588563,17679.815467725373,17702.59771449679,21310.03880529058,268752420.84023419,61467061.367450367,14093307.03785499,0.0 - 08/26 19:00:00,0.0,12498030.279353677,0.0,9149340.500490308,0.0,16888940.285980449,0.0,17046897.464583834,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,55583208.530408259,63419881.67034747,0.0 - 08/26 20:00:00,0.0,20180770.46353458,0.0,15322723.274968792,0.0,26945353.77129609,0.0,27739074.16592223,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,90187921.67572168,63419881.67034747,69761869.8373822 - 08/26 21:00:00,0.0,11319076.810172463,0.0,6795269.271168893,0.0,18994157.004958627,0.0,17951817.460112037,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,154692456.46727775,55060320.54641201,49326574.63249246,69761869.8373822 - 08/26 22:00:00,0.0,3574208.9913439687,0.0,0.0,0.0,12152383.351747696,0.0,9378447.386548842,5169.963443835032,5089.026701666068,5095.584431997321,6133.96427647309,77358739.87429744,25105039.729640508,35233267.594637479,69761869.8373822 - 08/26 23:00:00,0.0,0.0,0.0,0.0,0.0,5387349.174634144,0.0,1598393.485478795,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,77415154.02524942,6985742.660112939,35233267.594637479,62010550.96656194 - 08/26 24:00:00,0.0,0.0,270396.25428368468,0.0,0.0,672482.0994537225,0.0,0.0,2586.38346116836,2545.8931455944118,2549.1737887664214,3068.6452483499945,38970740.57224876,672482.0994537225,35233267.594637479,46507913.22492146 - 08/27 01:00:00,6043496.012878582,0.0,13222813.396731642,0.0,0.0,0.0,343028.0119328526,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,58316716.41941863,0.0,21139960.556782485,23253956.61246073 - 08/27 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 08/27 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19353838.12699616,0.0,14093307.03785499,0.0 - 08/27 04:00:00,0.0,0.0,4751821.659597381,0.0,0.0,0.0,0.0,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,24103472.22785108,0.0,14093307.03785499,0.0 - 08/27 05:00:00,6348623.031287738,0.0,9479189.47261242,0.0,0.0,0.0,0.0,0.0,1293.0498359434892,1272.8068995435854,1274.4470411463468,1534.154271600269,35175861.47754145,0.0,14093307.03785499,0.0 - 08/27 06:00:00,1186103.440207243,0.0,1183660.5721981349,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,21712516.773926196,0.0,14093307.03785499,0.0 - 08/27 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,0.0,14093307.03785499,15502637.741640486 - 08/27 08:00:00,0.0,4524869.559237074,0.0,2299780.144732328,0.0,13388593.632928519,0.0,7187809.845117671,20676.50911254276,20352.814505186943,20379.04118404546,24531.88879115691,309384912.9345555,27401053.18201559,56373228.15141996,38756594.35410121 - 08/27 09:00:00,0.0,39791256.92399612,0.0,25043154.883664974,0.0,25533234.86370664,0.0,28230715.515813523,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,270573798.44411638,118598362.18718127,56373228.15141996,38756594.35410121 - 08/27 10:00:00,0.0,39677522.39972957,0.0,15734008.62327081,0.0,12178494.311646413,0.0,12243477.295260666,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,193146424.77533374,79833502.62990746,28186614.07570998,0.0 - 08/27 11:00:00,0.0,51809855.25416055,0.0,16997384.769866785,0.0,11038249.655726865,0.0,11513385.390743964,10311.294514484973,10149.869275290619,10162.94841782745,12233.957335126945,154289050.35382796,91358875.07049816,28186614.07570998,0.0 - 08/27 12:00:00,0.0,53415206.397094029,0.0,13629108.992603183,0.0,8175137.332108733,0.0,9684354.664678872,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,84903807.38648482,28186614.07570998,0.0 - 08/27 13:00:00,0.0,60748973.41036388,0.0,20284631.00905304,0.0,12432128.606128492,0.0,17006842.398998675,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,110472575.42454408,28186614.07570998,0.0 - 08/27 14:00:00,0.0,67830875.3309372,0.0,31720479.365433754,0.0,21483905.078554345,0.0,27305362.565031426,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,148340622.33995674,28186614.07570998,0.0 - 08/27 15:00:00,0.0,71349665.30976922,0.0,42701742.66776736,0.0,32072918.50380367,0.0,38486380.162447299,7700.162458686654,7579.614978932025,7589.382086467599,9135.948823960442,115218390.0529682,184610706.64378754,28186614.07570998,0.0 - 08/27 16:00:00,0.0,59699901.44625992,0.0,42003259.49987653,0.0,36017844.78658454,0.0,40776307.14729629,12837.834998370876,12636.856296575626,12653.140175730872,15231.601175278183,192093957.52544,178497312.88001729,28186614.07570998,0.0 - 08/27 17:00:00,0.0,50884100.35179767,0.0,40718878.245296899,0.0,36117058.454556558,0.0,40533583.333312127,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192305042.78522266,168253620.38496325,35233267.594637479,0.0 - 08/27 18:00:00,0.0,32372158.283443236,0.0,23555300.472199177,0.0,24661949.270665789,0.0,27197221.319187639,18040.66659721306,17758.23659615066,17781.119896550328,21404.56226301265,269944507.2705361,107786629.34549584,14093307.03785499,0.0 - 08/27 19:00:00,0.0,27656226.348058136,0.0,18544882.14837365,0.0,24908324.13278974,0.0,26294696.82010179,18036.440738195713,17754.076893744557,17776.95483394311,21399.54844259952,269881275.27053847,97404129.44932331,63419881.67034747,0.0 - 08/27 20:00:00,0.0,30232369.89433655,0.0,20575237.727409886,0.0,30794845.41519452,0.0,32137193.708871306,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,154683563.66268707,113739646.74581225,63419881.67034747,69761869.8373822 - 08/27 21:00:00,0.0,20782354.603093428,0.0,11827636.604697716,0.0,23469322.264667028,0.0,22942405.08457216,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154701073.47113923,79021718.55703035,49326574.63249246,69761869.8373822 - 08/27 22:00:00,0.0,15159235.514528502,0.0,7157892.638304803,0.0,18934564.852575505,0.0,17513869.709982214,5167.549388277915,5086.650438599038,5093.20510687279,6131.100091704735,77322618.09163612,58765562.71539102,35233267.594637479,69761869.8373822 - 08/27 23:00:00,0.0,11416726.112399511,0.0,4347513.448562922,0.0,15982539.343151058,0.0,14055329.77700794,5166.8538043474459,5085.965744164762,5092.519530139849,6130.274807923305,77312209.99167131,45802108.681121427,35233267.594637479,62010550.96656194 - 08/27 24:00:00,0.0,6066932.340256432,0.0,237683.73765980637,0.0,11206733.946086627,0.0,8440655.778440485,2583.7746941389575,2543.325219299519,2546.602553436395,3065.5500458523677,38661309.04581806,25952005.802443349,35233267.594637479,46507913.22492146 - 08/28 01:00:00,0.0,0.0,0.0,0.0,0.0,1815246.5839011095,0.0,0.0,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,38675268.367784809,1815246.5839011095,21139960.556782485,23253956.61246073 - 08/28 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.679148414876,1272.4420151973844,1274.0816866094224,1533.7144649975822,19342502.334789356,0.0,14093307.03785499,0.0 - 08/28 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 - 08/28 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 - 08/28 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 08/28 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 08/28 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,0.0,14093307.03785499,15502637.741640486 - 08/28 08:00:00,0.0,0.0,0.0,0.0,0.0,1951641.242793432,0.0,0.0,20665.968877521078,20342.4392795108,20368.65258883206,24519.383204649188,309227198.2218473,1951641.242793432,56373228.15141996,38756594.35410121 - 08/28 09:00:00,0.0,0.0,4442472.698909739,0.0,0.0,0.0,0.0,0.0,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,275154271.5166457,0.0,56373228.15141996,38756594.35410121 - 08/28 10:00:00,14561280.744120282,0.0,23054076.7752749,0.0,0.0,0.0,11856890.031971446,0.0,12923.538049279316,12721.217650234206,12737.610237604225,15333.284573694473,242848589.39029063,0.0,28186614.07570998,0.0 - 08/28 11:00:00,11125876.273644472,0.0,16041822.816541437,0.0,7242044.859479914,0.0,13524203.359148974,0.0,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,202626403.77609254,0.0,28186614.07570998,0.0 - 08/28 12:00:00,15794672.221846838,0.0,20406513.562643909,0.0,9023325.120353772,0.0,16445307.559796343,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,139016046.69827975,0.0,28186614.07570998,0.0 - 08/28 13:00:00,15769512.194253114,0.0,20028893.560705786,0.0,9018640.037708627,0.0,16016886.943535209,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,138140732.29166455,0.0,28186614.07570998,0.0 - 08/28 14:00:00,12523311.822158808,0.0,16215379.662020632,0.0,6907934.82719565,0.0,12715843.71105996,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,125548422.14700575,0.0,28186614.07570998,0.0 - 08/28 15:00:00,12027502.496307716,0.0,15303991.657645997,0.0,5940009.339554807,0.0,11168820.440309037,0.0,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,160130827.04976163,0.0,28186614.07570998,0.0 - 08/28 16:00:00,9146562.91578682,0.0,11946481.684332418,0.0,4257399.135495637,0.0,8502014.927238809,0.0,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,226505954.26228146,0.0,28186614.07570998,0.0 - 08/28 17:00:00,6537812.018563689,0.0,9080007.780048566,0.0,1747477.260351379,0.0,5139823.6912166,0.0,12859.51171233805,12658.193657541857,12674.505032064568,15257.319768949194,214923429.36539743,0.0,35233267.594637479,0.0 - 08/28 18:00:00,6001564.752919501,0.0,8089642.412843139,0.0,2002547.6510975017,0.0,4952653.1648644269,0.0,17987.23216211223,17705.638687099516,17728.454209724816,21341.164345483296,290191369.83763608,0.0,14093307.03785499,0.0 - 08/28 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,0.0,63419881.67034747,0.0 - 08/28 20:00:00,0.0,18172735.217881297,0.0,11937765.604135253,0.0,27277650.726402847,0.0,28052340.818527759,10276.823956520404,10115.93836034146,10128.973779431126,12193.059333924075,153773263.54878146,85440492.36694715,63419881.67034747,69761869.8373822 - 08/28 21:00:00,0.0,25995242.97979054,0.0,22041633.268155934,0.0,31604277.00152432,0.0,35422624.62574771,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,115063777.87521851,49326574.63249246,69761869.8373822 - 08/28 22:00:00,0.0,26645575.05488217,0.0,23542625.11622855,0.0,31583148.75185847,0.0,35435095.385514188,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,117206444.30848338,35233267.594637479,69761869.8373822 - 08/28 23:00:00,0.0,25615093.387554528,0.0,22484190.126397633,0.0,30746937.72761955,0.0,34260609.47932129,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,113106830.72089301,35233267.594637479,62010550.96656194 - 08/28 24:00:00,0.0,17429103.59278136,0.0,13399800.247327935,0.0,24553970.563701668,0.0,25957612.9598642,2563.619649393605,2523.485705539576,2526.7374744379947,3041.6368546273645,38359726.86239474,81340487.36367515,35233267.594637479,46507913.22492146 - 08/29 01:00:00,0.0,2118703.4117108716,0.0,0.0,0.0,11495547.371822276,0.0,9179260.333976672,2565.8568922693755,2525.6879239607685,2528.9425306423988,3044.2912578986549,38393202.97717631,22793511.11750982,21139960.556782485,23253956.61246073 - 08/29 02:00:00,0.0,0.0,0.0,0.0,0.0,867261.2670668088,0.0,0.0,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,867261.2670668088,14093307.03785499,0.0 - 08/29 03:00:00,0.0,0.0,0.0,0.0,0.0,5156664.240357181,0.0,63441.14456147455,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,5220105.384918656,14093307.03785499,0.0 - 08/29 04:00:00,0.0,0.0,0.0,0.0,0.0,7554512.224703029,0.0,5904118.356944226,1278.124577327773,1258.1152986358027,1259.7365086112537,1516.4460219848689,19124720.663614915,13458630.581647255,14093307.03785499,0.0 - 08/29 05:00:00,0.0,0.0,0.0,0.0,0.0,5820565.53655826,0.0,3158984.3215727207,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,8979549.85813098,14093307.03785499,0.0 - 08/29 06:00:00,0.0,0.0,0.0,0.0,0.0,4224225.682122661,0.0,1140214.693480996,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,5364440.375603656,14093307.03785499,0.0 - 08/29 07:00:00,0.0,8374285.882682094,0.0,4602755.8450348549,0.0,13850412.993915748,0.0,14502817.874287559,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,41330272.59592026,14093307.03785499,15502637.741640486 - 08/29 08:00:00,0.0,36663714.73276932,0.0,33419414.35714025,0.0,33812970.45538777,0.0,39546376.58357523,20533.766556497743,20212.306610485408,20238.35223058026,24362.53019722784,307249040.14124849,143442476.12887258,56373228.15141996,38756594.35410121 - 08/29 09:00:00,0.0,28917607.23928411,0.0,26387528.69097163,0.0,25931248.528165927,0.0,29895341.641732336,17972.968997719225,17691.598815205874,17714.39624602322,21324.241645389455,268931540.535616,111131726.10015399,56373228.15141996,38756594.35410121 - 08/29 10:00:00,0.0,1507783.9959281423,0.0,0.0,0.0,1487034.7570812684,0.0,0.0,12837.834998370876,12636.856296575626,12653.140175730872,15231.601175278183,192093957.52544,2994818.753009411,28186614.07570998,0.0 - 08/29 11:00:00,0.0,20010691.600559147,0.0,5310970.298640471,0.0,4722077.429581739,0.0,4063228.4099906946,10276.823956520404,10115.938360341463,10128.973779431126,12193.059333924075,153773263.54878146,34106967.73877205,28186614.07570998,0.0 - 08/29 12:00:00,0.0,33566864.6987564,0.0,4432534.303687091,0.0,2605153.645524929,0.0,2869895.6677203786,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,43474448.3156888,28186614.07570998,0.0 - 08/29 13:00:00,0.0,22948759.08092778,0.0,5722516.459522314,0.0,3563085.861967901,0.0,3920252.496878598,5139.209189174922,5058.753910599863,5065.272631349948,6097.4755272809429,76898560.53026043,36154613.8992966,28186614.07570998,0.0 - 08/29 14:00:00,0.0,37386635.39361625,0.0,14901823.0408347,0.0,9842495.647963096,0.0,12070221.990491314,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,74201176.07290536,28186614.07570998,0.0 - 08/29 15:00:00,0.0,56492041.94089326,0.0,32826187.424075813,0.0,24095881.50363809,0.0,29421078.425838837,7674.932090476317,7554.779596842741,7564.514701453599,9106.013955181239,114840865.23823402,142835189.294446,28186614.07570998,0.0 - 08/29 16:00:00,0.0,53792158.6855616,0.0,42094996.434373278,0.0,35797774.68140128,0.0,41215808.00013608,12783.85528578904,12583.721646464164,12599.937056199402,15167.55630683214,191286253.06302513,172900737.80147226,28186614.07570998,0.0 - 08/29 17:00:00,0.0,41107034.67309132,0.0,37892706.07007648,0.0,37306964.95242361,0.0,41238869.62635751,12791.553484127195,12591.299328071238,12607.524502422664,15176.689925302064,191401442.0637234,157545575.32194893,35233267.594637479,0.0 - 08/29 18:00:00,0.0,14063527.575651713,0.0,9383193.846232906,0.0,14239699.465147298,0.0,14552685.560691337,17925.527040299865,17644.899570480204,17667.636824554225,21267.95357388223,268221661.2331795,52239106.447723258,14093307.03785499,0.0 - 08/29 19:00:00,0.0,25070941.051861407,0.0,19144401.476367695,0.0,25943511.784995639,0.0,27889938.00569749,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,98048792.31892222,63419881.67034747,0.0 - 08/29 20:00:00,0.0,32727430.956659188,0.0,25260860.904708435,0.0,37354004.43439597,0.0,39555287.06984675,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,134897583.36561034,63419881.67034747,69761869.8373822 - 08/29 21:00:00,0.0,21330469.897981429,0.0,15315047.992724244,0.0,28427427.01262381,0.0,28462417.765755219,10302.779472009453,10141.487537393534,10154.555879205578,12223.854562268894,154161638.82315887,93535362.6690847,49326574.63249246,69761869.8373822 - 08/29 22:00:00,0.0,15051826.995326467,0.0,10090662.935741835,0.0,22755905.860868567,0.0,22065935.945609489,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,69964331.73754636,35233267.594637479,69761869.8373822 - 08/29 23:00:00,0.0,9967593.017953897,0.0,4049184.899248818,0.0,18078126.77798504,0.0,17112216.288964359,5156.219173316969,5075.4976002669559,5082.03789697017,6117.657224154467,77153082.82095082,49207120.98415211,35233267.594637479,62010550.96656194 - 08/29 24:00:00,0.0,872028.6099644703,0.0,0.0,0.0,10393761.542201927,0.0,7373097.796620406,2581.6344915092947,2541.218521941278,2544.4931413835818,3063.0107771288296,38629284.95506674,18638887.948786804,35233267.594637479,46507913.22492146 - 08/30 01:00:00,0.0,0.0,481710.0056498778,0.0,0.0,0.0,0.0,0.0,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,39132335.804256428,0.0,21139960.556782485,23253956.61246073 - 08/30 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 08/30 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.490860958758,1272.256675416517,1273.8961079993304,1533.4910691182725,19339684.96857436,0.0,14093307.03785499,0.0 - 08/30 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.121765023421,1273.7610237604227,1533.3284573694473,19337634.183892404,0.0,14093307.03785499,0.0 - 08/30 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 08/30 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.1309374422706,1271.9023865698239,1273.5413626152966,1533.0640336050854,19334299.392836915,0.0,14093307.03785499,0.0 - 08/30 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,0.0,14093307.03785499,15502637.741640486 - 08/30 08:00:00,0.0,7923132.015740085,0.0,2731027.0532444298,0.0,13836477.350155823,0.0,7411581.823701264,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,308775314.95243886,31902218.2428416,56373228.15141996,38756594.35410121 - 08/30 09:00:00,0.0,28910841.766946306,0.0,19078914.325236747,0.0,20705720.58030013,0.0,21646612.178654486,18027.608506150802,17745.382931939967,17768.249669081353,21389.06933642526,269749117.59695056,90342088.85113766,56373228.15141996,38756594.35410121 - 08/30 10:00:00,0.0,21341757.587693849,0.0,7057264.262514081,0.0,5862261.971426418,0.0,4464254.491743058,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,38725538.3133774,28186614.07570998,0.0 - 08/30 11:00:00,0.0,43477781.512131657,0.0,13512211.817972092,0.0,10105317.026827058,0.0,10272465.182180975,10266.883278248872,10106.153305242704,10119.17611529013,12181.26509861392,153624520.07062424,77367775.53911178,28186614.07570998,0.0 - 08/30 12:00:00,0.0,49078401.8605841,0.0,11722379.300347927,0.0,9670874.585303572,0.0,11492768.379659392,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,81964424.125895,28186614.07570998,0.0 - 08/30 13:00:00,0.0,58487914.24127081,0.0,23164204.74779764,0.0,16117532.220695654,0.0,22234268.364388016,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,120003919.57415211,28186614.07570998,0.0 - 08/30 14:00:00,0.0,79119276.39377052,0.0,46832691.819274,0.0,30916400.106689566,0.0,41761993.969483498,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,198630362.28921757,28186614.07570998,0.0 - 08/30 15:00:00,0.0,75195657.9277311,0.0,50080130.467760767,0.0,38880838.946371939,0.0,48600277.037307899,7619.684300190506,7500.39672102032,7510.061747744935,9040.464560944933,114014186.3876425,212756904.37917174,28186614.07570998,0.0 - 08/30 16:00:00,0.0,63900434.68534433,0.0,48941315.65124976,0.0,40532959.05408212,0.0,48201438.81635763,12721.477944825816,12522.3208344102,12538.457122932055,15093.547972868762,190352893.9501326,201576148.20703385,28186614.07570998,0.0 - 08/30 17:00:00,0.0,48895172.66331423,0.0,42173494.794568788,0.0,37960909.84679099,0.0,43306827.07234934,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,172336404.37702338,35233267.594637479,0.0 - 08/30 18:00:00,0.0,31260861.898600446,0.0,26123128.553045364,0.0,25744662.62574127,0.0,29532294.487097894,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,112660947.56448496,14093307.03785499,0.0 - 08/30 19:00:00,0.0,33066007.959956133,0.0,26979395.807783,0.0,30705906.203209703,0.0,34660086.00811368,17915.207456523087,17634.741541712567,17657.46570612972,21255.709781653815,268067248.14966909,125411395.97906253,63419881.67034747,0.0 - 08/30 20:00:00,0.0,47411334.49881871,0.0,41235628.41998851,0.0,47157194.222057867,0.0,53858388.06637789,10247.00201229738,10086.583284218528,10099.580876296397,12157.676735477053,153327034.4698417,189662545.20724298,63419881.67034747,69761869.8373822 - 08/30 21:00:00,0.0,38602217.42073344,0.0,33122238.84127926,0.0,39614962.923743698,0.0,44661395.29980121,10263.427569077501,10102.751695843073,10115.770122569595,12177.165031594619,153572811.90870524,156000814.4855576,49326574.63249246,69761869.8373822 - 08/30 22:00:00,0.0,27471894.65032009,0.0,22115191.2990876,0.0,30576835.60875041,0.0,33150063.30069619,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,113313984.8588543,35233267.594637479,69761869.8373822 - 08/30 23:00:00,0.0,20100792.014115305,0.0,14643764.360477876,0.0,24844437.637871189,0.0,25765479.35925097,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,85354473.37171534,35233267.594637479,62010550.96656194 - 08/30 24:00:00,0.0,12766365.716331464,0.0,7731365.718909743,0.0,18609712.581413248,0.0,17823848.180280679,2577.823628621243,2537.4673188226549,2540.7371044568628,3058.489333781736,38572262.58845699,56931292.19693513,35233267.594637479,46507913.22492146 - 08/31 01:00:00,0.0,341742.55304387767,0.0,0.0,0.0,5444030.936875976,0.0,2235185.788383329,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,8020959.278303182,21139960.556782485,23253956.61246073 - 08/31 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 - 08/31 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 - 08/31 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 08/31 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 - 08/31 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 08/31 07:00:00,0.0,0.0,0.0,0.0,0.0,2038082.8017360736,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,2038082.8017360736,14093307.03785499,15502637.741640486 - 08/31 08:00:00,0.0,18144006.186346905,0.0,4335908.4693292309,0.0,25436014.868999795,0.0,21081246.76545823,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,68997176.29013416,56373228.15141996,38756594.35410121 - 08/31 09:00:00,0.0,66436419.8281914,0.0,37142436.87000003,0.0,40152833.618632938,0.0,44430905.38830903,12893.33930891644,12691.49167678528,12707.845959204444,15297.454921010707,192924474.71730075,188162595.7051334,56373228.15141996,38756594.35410121 - 08/31 10:00:00,0.0,57157491.939115088,0.0,22581712.23624806,0.0,19715136.551697025,0.0,21859368.021037237,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,121313708.7480974,28186614.07570998,0.0 - 08/31 11:00:00,0.0,37785779.20331415,0.0,16945819.750222774,0.0,12808399.348146003,0.0,13726661.759830358,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,81266660.06151329,28186614.07570998,0.0 - 08/31 12:00:00,0.0,16062797.914844919,0.0,2148584.089681388,0.0,5984798.186424457,0.0,4414996.73870417,7720.033479384502,7599.174915093914,7608.967227603673,9159.525031494948,115515722.35287734,28611176.929654939,28186614.07570998,0.0 - 08/31 13:00:00,0.0,21326726.012145208,0.0,6557804.749585607,0.0,8183386.204257315,0.0,8061267.65905058,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,44129184.62503871,28186614.07570998,0.0 - 08/31 14:00:00,0.0,30635987.940883019,0.0,13077566.481079001,0.0,12174633.041605082,0.0,13490508.662736102,7702.700999022526,7582.113777945375,7591.884105438524,9138.960705166912,115256374.515264,69378696.1263032,28186614.07570998,0.0 - 08/31 15:00:00,0.0,35966614.61660276,0.0,19427617.16860777,0.0,17673865.352283095,0.0,19884669.431114526,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,92952766.56860815,28186614.07570998,0.0 - 08/31 16:00:00,0.0,40491242.75296418,0.0,27964397.521775135,0.0,24625099.692368758,0.0,27648197.62681088,17951.694586596324,17670.65745895784,17693.427904700224,21299.00036868633,268613209.14818659,120728937.59391897,28186614.07570998,0.0 - 08/31 17:00:00,0.0,34444340.56254226,0.0,27839944.95031374,0.0,26231681.559064654,0.0,28616515.43583449,23100.487376059962,22738.844936796082,22768.146259402794,27407.84647188132,345655170.15890458,117132482.50775515,35233267.594637479,0.0 - 08/31 18:00:00,0.0,21584802.778011696,0.0,15904467.94621102,0.0,20104958.27301343,0.0,21165755.747751308,18003.31639727327,17721.4711205586,17744.307044890393,21360.247676528867,269385632.0613041,78759984.74498746,14093307.03785499,0.0 - 08/31 19:00:00,0.0,18914618.274595586,0.0,11666387.238391955,0.0,20158242.60277991,0.0,20123065.27777052,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,70862313.39353797,63419881.67034747,0.0 - 08/31 20:00:00,0.0,30741273.639188179,0.0,22514852.07557212,0.0,34320218.93043314,0.0,36195947.981722269,15482.869922397902,15240.482705436229,15260.121622965919,18369.83414544601,231671910.2264858,123772292.6269157,63419881.67034747,69761869.8373822 - 08/31 21:00:00,0.0,23299248.365106197,0.0,15636981.003033989,0.0,27965366.19784455,0.0,28463353.793508494,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,193146424.77533374,95364949.35949321,49326574.63249246,69761869.8373822 - 08/31 22:00:00,0.0,15876476.348816764,0.0,8456183.180208082,0.0,21788071.126411708,0.0,20766444.579881528,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,154579486.6577033,66887175.23531808,35233267.594637479,69761869.8373822 - 08/31 23:00:00,0.0,11112673.255620748,0.0,4010907.6586096996,0.0,17904207.02472459,0.0,15953075.88042022,7749.738329070404,7628.414729816549,7638.244720812024,9194.768701743447,115960199.33319272,48980863.81937526,35233267.594637479,62010550.96656194 - 08/31 24:00:00,0.0,5009410.434119192,0.0,0.0,0.0,12482827.008390744,0.0,9322166.658128873,5166.8538043474459,5085.965744164762,5092.519530139849,6130.274807923305,77312209.99167131,26814404.100638808,35233267.594637479,46507913.22492146 - 09/01 01:00:00,0.0,0.0,0.0,0.0,0.0,1531417.799078223,0.0,0.0,2583.4269021737229,2542.982872082381,2546.2597650699246,3065.1374039616528,38656104.995835658,1531417.799078223,21139960.556782485,23253956.61246073 - 09/01 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 - 09/01 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.3380835922795,1271.121944994761,1272.7599153616064,1532.1233427771629,19322435.832212915,0.0,14093307.03785499,0.0 - 09/01 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 09/01 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 09/01 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 09/01 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,0.0,14093307.03785499,15502637.741640486 - 09/01 08:00:00,0.0,10536113.217015444,0.0,909037.4958088087,0.0,14975453.493315734,0.0,7669482.973137131,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,34090087.17927712,56373228.15141996,38756594.35410121 - 09/01 09:00:00,0.0,58270928.85045865,0.0,35136669.11963983,0.0,36036912.44819918,0.0,39697003.16985121,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,169141513.58814887,56373228.15141996,38756594.35410121 - 09/01 10:00:00,0.0,71941177.86257759,0.0,35928772.69563157,0.0,28468300.908109234,0.0,33406809.536515487,7682.368731557086,7562.099815920086,7571.844353380384,9114.83724594953,114952140.5285055,169745061.0028339,28186614.07570998,0.0 - 09/01 11:00:00,0.0,88879295.91863963,0.0,38786217.31433757,0.0,29182688.890916435,0.0,35807116.41260206,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,192655318.5364957,28186614.07570998,0.0 - 09/01 12:00:00,0.0,96024123.70803245,0.0,40445418.4390201,0.0,28269437.62021029,0.0,38095977.104820858,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,202834956.8720837,28186614.07570998,0.0 - 09/01 13:00:00,0.0,106159157.2282368,0.0,52212635.516684729,0.0,35286130.05864282,0.0,49777864.488135699,5069.229251981554,4989.869522378,4996.299478562977,6014.447003099436,75851442.92167908,243435787.2917,28186614.07570998,0.0 - 09/01 14:00:00,0.0,111955030.41418812,0.0,66655807.05860886,0.0,47467881.7101049,0.0,62590547.943494219,7593.54044432593,7474.662152096436,7484.29401720232,9009.445873933944,113622992.95521108,288669267.12639608,28186614.07570998,0.0 - 09/01 15:00:00,0.0,109881068.83813524,0.0,76047926.90912408,0.0,58063861.31423116,0.0,72856915.2583064,10116.281036530501,9957.908769713255,9970.740551545647,12002.581287656063,151371041.92360369,316849772.3197968,28186614.07570998,0.0 - 09/01 16:00:00,0.0,102226411.14306073,0.0,81799510.35526677,0.0,66104297.618780408,0.0,80182661.38666094,12620.024313238173,12422.45547835122,12438.463080168747,14973.177111713227,188834831.94049693,330312880.5037688,28186614.07570998,0.0 - 09/01 17:00:00,0.0,87261743.26677431,0.0,79190616.5569638,0.0,67786006.95839782,0.0,80029498.8800331,15178.665840220288,14941.040994914321,14960.294051236622,18008.907614125972,227120070.60178996,314267865.66216906,35233267.594637479,0.0 - 09/01 18:00:00,0.0,66198451.857541259,0.0,60262904.79214913,0.0,54816461.63538428,0.0,66055360.23527118,17788.211931208738,17509.734155038008,17532.297234678186,21105.034438585564,266166999.93423779,247333178.52034585,14093307.03785499,0.0 - 09/01 19:00:00,0.0,53827515.10338702,0.0,45842538.605618018,0.0,46283952.524919439,0.0,54252242.114795837,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,200206248.3487203,63419881.67034747,0.0 - 09/01 20:00:00,0.0,64937272.4751117,0.0,56227850.44393108,0.0,59872262.67488299,0.0,69218934.28560695,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,250256319.87953273,63419881.67034747,69761869.8373822 - 09/01 21:00:00,0.0,55230864.37838522,0.0,46757794.000318918,0.0,51624862.76533371,0.0,59081177.88297866,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,212694699.02701653,49326574.63249246,69761869.8373822 - 09/01 22:00:00,0.0,45645746.81129218,0.0,37783343.662369538,0.0,43810285.83306742,0.0,49456948.29857589,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,176696324.60530503,35233267.594637479,69761869.8373822 - 09/01 23:00:00,0.0,37739162.86847963,0.0,30393133.243345,0.0,37656547.09561146,0.0,41745414.87388483,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,147534258.0813209,35233267.594637479,62010550.96656194 - 09/01 24:00:00,0.0,30384426.419483954,0.0,23692402.725448796,0.0,31207654.370476467,0.0,33973822.269605059,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,119258305.78501426,35233267.594637479,46507913.22492146 - 09/02 01:00:00,0.0,15618388.849960477,0.0,10358454.812003088,0.0,17485845.58910652,0.0,17726361.725006857,2572.2696186743739,2532.0002579376039,2535.2629987058496,3051.8997129893698,38489157.31790591,61189050.97607694,21139960.556782485,23253956.61246073 - 09/02 02:00:00,0.0,3491915.405462077,0.0,0.0,0.0,6452270.422727678,0.0,4436556.570619801,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,14380742.398809556,14093307.03785499,0.0 - 09/02 03:00:00,0.0,868304.235404359,0.0,0.0,0.0,4623796.552243675,0.0,2029199.102419152,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,7521299.890067187,14093307.03785499,0.0 - 09/02 04:00:00,0.0,0.0,0.0,0.0,0.0,3454229.135567487,0.0,509731.34079475878,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,3963960.476362246,14093307.03785499,0.0 - 09/02 05:00:00,0.0,0.0,0.0,0.0,0.0,2261406.5725262037,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,2261406.5725262037,14093307.03785499,0.0 - 09/02 06:00:00,0.0,1322642.532881,0.0,0.0,0.0,9108120.827864383,0.0,5520056.62650963,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,15950819.98725501,14093307.03785499,0.0 - 09/02 07:00:00,0.0,33862713.99748789,0.0,30153655.112097056,0.0,34447944.95790003,0.0,39038583.8002395,5131.713784538751,5051.375847921537,5057.885061284797,6088.5825157973099,76786405.95435262,137502897.86772449,14093307.03785499,15502637.741640486 - 09/02 08:00:00,0.0,81846712.03402406,0.0,70503883.63459017,0.0,65894801.446190688,0.0,79423982.99802232,20470.521634829416,20150.051799864126,20176.01719828128,24287.49251187545,306302699.321461,297669380.1128272,56373228.15141996,38756594.35410121 - 09/02 09:00:00,0.0,91445037.8045852,0.0,64270065.06594696,0.0,58778712.65794252,0.0,69839805.9969788,17875.02289180661,17595.18607385315,17617.85926701262,21208.032329556852,267465962.02402524,284333621.52545347,56373228.15141996,38756594.35410121 - 09/02 10:00:00,0.0,87183284.0690903,0.0,49585180.74449029,0.0,39008754.920451197,0.0,47371480.22259375,12721.477944825816,12522.3208344102,12538.457122932055,15093.547972868762,190352893.9501326,223148699.95662553,28186614.07570998,0.0 - 09/02 11:00:00,0.0,81719201.34055865,0.0,51852710.8460782,0.0,35707305.93468094,0.0,44527524.72834657,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,213806742.84966437,28186614.07570998,0.0 - 09/02 12:00:00,0.0,57859585.67431804,0.0,49095770.14293444,0.0,32954461.16690743,0.0,41423457.5918744,5073.251640952366,4993.828940099099,5000.263998397941,6019.219414069279,75911630.37666726,181333274.5760343,28186614.07570998,0.0 - 09/02 13:00:00,0.0,65189881.14935846,0.0,51014668.022706869,0.0,33440520.495860708,0.0,43247069.42395818,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,192892139.09188424,28186614.07570998,0.0 - 09/02 14:00:00,0.0,62379224.38972688,0.0,50771980.88513101,0.0,33295942.559759685,0.0,42650721.339670199,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,189097869.17428778,28186614.07570998,0.0 - 09/02 15:00:00,0.0,43882336.536990199,0.0,37241342.01726041,0.0,27599298.511717686,0.0,33092505.99060705,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,141815483.05657534,28186614.07570998,0.0 - 09/02 16:00:00,0.0,26766890.076253017,0.0,21330630.758894139,0.0,19546027.968763245,0.0,22010954.02986171,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,89654502.8337721,28186614.07570998,0.0 - 09/02 17:00:00,0.0,15871202.968828833,0.0,12565999.095787287,0.0,15816684.809149348,0.0,16750997.266169232,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,61004884.1399347,35233267.594637479,0.0 - 09/02 18:00:00,0.0,12532998.711062208,0.0,10334639.083099906,0.0,13323624.938670999,0.0,14074048.641649329,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,50265311.37448244,14093307.03785499,0.0 - 09/02 19:00:00,0.0,29788282.908178759,0.0,27356862.94746979,0.0,33238062.513799337,0.0,37650709.931682068,17878.827624451565,17598.931242698774,17621.609261890564,21212.546499604516,267522892.66312353,128033918.30112994,63419881.67034747,0.0 - 09/02 20:00:00,0.0,48745648.0733322,0.0,45413687.40643321,0.0,53696264.746536958,0.0,61546305.99270642,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,209401906.2190088,63419881.67034747,69761869.8373822 - 09/02 21:00:00,0.0,37779131.849451798,0.0,34473211.4047217,0.0,42850346.3701154,0.0,48197950.1098236,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,163300639.7341125,49326574.63249246,69761869.8373822 - 09/02 22:00:00,0.0,31578177.24920345,0.0,28667309.09614609,0.0,36946102.87882435,0.0,40918029.308495718,5110.384691430772,5030.380665745101,5036.862824673194,6063.276361006229,76467256.35427907,138109618.5326696,35233267.594637479,69761869.8373822 - 09/02 23:00:00,0.0,29375805.496969753,0.0,26795203.654123859,0.0,34366953.94365078,0.0,38108334.31346214,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,128646297.40820652,35233267.594637479,62010550.96656194 - 09/02 24:00:00,0.0,24124853.068950356,0.0,21610575.58457289,0.0,28554704.960033448,0.0,31501173.191353363,2561.2722323928589,2521.1750377898858,2524.423829157064,3038.8517339623947,38324602.19988793,105791306.80491007,35233267.594637479,46507913.22492146 - 09/03 01:00:00,0.0,11941619.425009026,0.0,8894535.559592903,0.0,16932773.531100908,0.0,17715961.440952794,2560.302542084018,2520.2205281637254,2523.468089547826,3037.701233426309,38310092.61559876,55484889.95665563,21139960.556782485,23253956.61246073 - 09/03 02:00:00,0.0,1065718.427032278,0.0,0.0,0.0,7535349.3822188009,0.0,5661858.075260088,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,14262925.884511166,14093307.03785499,0.0 - 09/03 03:00:00,0.0,7397.839492558218,0.0,0.0,0.0,6156101.520346639,0.0,3674569.5158155655,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,9838068.875654763,14093307.03785499,0.0 - 09/03 04:00:00,0.0,0.0,0.0,0.0,0.0,3303155.194550878,0.0,484396.07520927456,1282.9284461346877,1262.8439619803842,1264.4712653211994,1522.1456289493274,19196601.488588156,3787551.2697601525,14093307.03785499,0.0 - 09/03 05:00:00,0.0,0.0,0.0,0.0,0.0,2346877.1866740148,0.0,0.0,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,2346877.1866740148,14093307.03785499,0.0 - 09/03 06:00:00,0.0,0.0,0.0,0.0,0.0,7221236.43875977,0.0,4594561.129350916,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,11815797.568110686,14093307.03785499,0.0 - 09/03 07:00:00,0.0,19868763.814510645,0.0,15524943.839428649,0.0,24703440.409109136,0.0,27654816.55884879,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,87751964.62189722,14093307.03785499,15502637.741640486 - 09/03 08:00:00,0.0,42313477.53600455,0.0,39327937.82092344,0.0,40149247.06699957,0.0,47246075.805917147,20470.521634829416,20150.051799864126,20176.01719828128,24287.49251187545,306302699.321461,169036738.2298447,56373228.15141996,38756594.35410121 - 09/03 09:00:00,0.0,47799487.64318911,0.0,41610287.84533936,0.0,38438341.79495053,0.0,45789341.123956728,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,173637458.40743573,56373228.15141996,38756594.35410121 - 09/03 10:00:00,0.0,40408970.826794039,0.0,26689936.577455686,0.0,19943519.896659528,0.0,24197760.24253839,12748.24782393121,12548.671626064284,12564.841870270755,15125.309412558205,190753454.638168,111240187.54344765,28186614.07570998,0.0 - 09/03 11:00:00,0.0,72030338.10565917,0.0,35818518.75162122,0.0,25194106.63446538,0.0,31858112.82234589,10189.250024534454,10029.735414597655,10042.659752393174,12089.156206525244,152462885.0329819,164901076.31409166,28186614.07570998,0.0 - 09/03 12:00:00,0.0,62528643.25681429,0.0,31883699.923850597,0.0,21498603.909674586,0.0,28392347.27824606,5091.030123159573,5011.329096850779,5017.786705887798,6040.3129045617429,76177651.78965561,144303294.36858554,28186614.07570998,0.0 - 09/03 13:00:00,0.0,85271486.48568438,0.0,41007485.83143084,0.0,24753003.524552853,0.0,36046205.68945965,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,187078181.53112773,28186614.07570998,0.0 - 09/03 14:00:00,0.0,89054908.0924657,0.0,52505211.422433849,0.0,32924462.93868417,0.0,45715664.190570939,5093.435201808044,5013.696523544341,5020.157183252292,6043.166438570658,76213639.2498312,220200246.64415468,28186614.07570998,0.0 - 09/03 15:00:00,0.0,83263551.0284237,0.0,57837556.43024814,0.0,41806916.27749055,0.0,53506817.212377469,7659.080564784247,7539.17622974248,7548.891227822226,9087.206725037533,114603677.09059134,236414840.94853986,28186614.07570998,0.0 - 09/03 16:00:00,0.0,71569452.86096072,0.0,54841947.778223838,0.0,49269554.79177755,0.0,57735558.71750225,12781.245773277731,12581.152986358024,12597.365086112537,15164.460219848688,191247206.6361491,233416514.14846436,28186614.07570998,0.0 - 09/03 17:00:00,0.0,55207639.99032646,0.0,48734222.80953963,0.0,47010366.71424886,0.0,51896116.07993458,12818.098246968028,12617.428527697877,12633.687372189974,15208.184273136822,191798634.31197373,202848345.59404955,35233267.594637479,0.0 - 09/03 18:00:00,0.0,33251952.388209028,0.0,27958886.74202292,0.0,30693296.097857868,0.0,34424772.38368181,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,126328907.61177165,14093307.03785499,0.0 - 09/03 19:00:00,0.0,23633504.172552363,0.0,16280661.286067289,0.0,23512824.65368395,0.0,24781879.06118421,18027.608506150802,17745.382931939967,17768.249669081353,21389.06933642526,269749117.59695056,88208869.17348781,63419881.67034747,0.0 - 09/03 20:00:00,0.0,33042182.724981756,0.0,24950325.442301625,0.0,35595018.281597319,0.0,38222811.00198035,10318.919096627043,10157.374493176892,10170.46330695301,12243.003610790318,154403137.82717014,131810337.45086105,63419881.67034747,69761869.8373822 - 09/03 21:00:00,0.0,21329635.2750655,0.0,13633210.586381674,0.0,25991811.640906194,0.0,26106423.827839383,10333.707608694891,10171.931488329525,10185.039060279698,12260.54961584661,154624419.98334263,87061081.33019275,49326574.63249246,69761869.8373822 - 09/03 22:00:00,0.0,12122059.024484529,0.0,4796262.442475478,0.0,18608479.869545096,0.0,16637524.81407349,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,52164326.150578599,35233267.594637479,69761869.8373822 - 09/03 23:00:00,0.0,4391992.731771498,0.0,0.0,0.0,12574619.54209614,0.0,8949903.270189733,5171.59154624017,5090.629315824331,5097.189111287503,6135.895957828297,77383101.35224909,25916515.544057367,35233267.594637479,62010550.96656194 - 09/03 24:00:00,0.0,0.0,0.0,0.0,0.0,4282978.003987314,0.0,217187.90652037468,2586.5659603899105,2546.0727877566034,2549.3536624158748,3068.8617767099406,38703075.07418038,4500165.910507688,35233267.594637479,46507913.22492146 - 09/04 01:00:00,481262.2476893243,0.0,6866903.755617796,0.0,0.0,0.0,0.0,0.0,2586.706814865389,2546.2114371289919,2549.492490452131,3069.0288951683498,46053348.69872062,0.0,21139960.556782485,23253956.61246073 - 09/04 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4030062155769,1273.1545408691798,1274.795130443272,1534.5732946467629,19353333.499829249,0.0,14093307.03785499,0.0 - 09/04 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,19353882.599153796,0.0,14093307.03785499,0.0 - 09/04 04:00:00,0.0,0.0,1240663.4610802695,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,20594516.334337169,0.0,14093307.03785499,0.0 - 09/04 05:00:00,0.0,0.0,3393811.9839681086,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,22747467.075514415,0.0,14093307.03785499,0.0 - 09/04 06:00:00,0.0,0.0,1579737.5975026866,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,20933427.09644046,0.0,14093307.03785499,0.0 - 09/04 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,0.0,14093307.03785499,15502637.741640486 - 09/04 08:00:00,0.0,0.0,707304.503330245,0.0,0.0,892084.0062149671,0.0,0.0,20687.148760973076,20363.287587936255,20389.527762430862,24544.51232787913,310251419.68451979,892084.0062149671,56373228.15141996,38756594.35410121 - 09/04 09:00:00,0.0,23798822.029212595,0.0,1396473.9746046893,0.0,17855424.445279484,0.0,7689191.643655001,18085.221682874773,17802.094163634596,17825.03397898642,21457.425171378094,270611189.988746,50739912.09275177,56373228.15141996,38756594.35410121 - 09/04 10:00:00,0.0,40403628.397204268,0.0,4937758.220369112,0.0,6641734.131159649,0.0,4233770.988431707,12907.062042212181,12704.999578131303,12721.371266860075,15313.736420237172,193129809.50678665,56216891.737164739,28186614.07570998,0.0 - 09/04 11:00:00,0.0,52966551.526215668,0.0,3641772.2107442866,0.0,4958341.156150445,0.0,3471886.686151509,10313.563994450264,10152.103226123683,10165.185247334177,12236.649986474386,154323008.83577705,65038551.579261917,28186614.07570998,0.0 - 09/04 12:00:00,0.0,55574811.3695344,0.0,4425548.901417198,0.0,3543252.3462074429,0.0,4206260.50738401,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,67749873.12454307,28186614.07570998,0.0 - 09/04 13:00:00,0.0,68439129.56632757,0.0,11663027.982698478,0.0,7333511.440205886,0.0,11804236.612004366,5147.387576862043,5066.804264102064,5073.333358554319,6107.178872083459,77020934.65776679,99239905.60123632,28186614.07570998,0.0 - 09/04 14:00:00,0.0,75282212.76819065,0.0,23861817.82888095,0.0,16799942.724042778,0.0,22233494.690269874,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,138177468.01138426,28186614.07570998,0.0 - 09/04 15:00:00,0.0,75755524.27389626,0.0,35310070.49120422,0.0,28125359.678347038,0.0,33913708.83783071,7701.438390184783,7580.870935484527,7590.639661448311,9137.462667977672,115237481.95834306,173104663.28127823,28186614.07570998,0.0 - 09/04 16:00:00,0.0,68551464.39223509,0.0,41570295.82994313,0.0,36817562.759667437,0.0,41814017.83927205,12831.455361284885,12630.576533898336,12646.852320938411,15224.031979401374,191998498.30388285,188753340.8211177,28186614.07570998,0.0 - 09/04 17:00:00,0.0,58553408.38412118,0.0,44232875.397872287,0.0,42476499.08399639,0.0,46424420.46746791,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,191687203.33345778,35233267.594637479,0.0 - 09/04 18:00:00,0.0,40836930.452808108,0.0,29400270.161810109,0.0,32869798.63570156,0.0,36245330.719046037,18003.31639727327,17721.4711205586,17744.307044890393,21360.247676528867,269385632.0613041,139352329.9693658,14093307.03785499,0.0 - 09/04 19:00:00,0.0,32101132.070527477,0.0,19195853.024391328,0.0,27423358.1681999,0.0,28693810.243648,18034.28021322582,17751.950192196116,17774.82539192265,21396.98506219505,269848947.0943427,107414153.5067667,63419881.67034747,0.0 - 09/04 20:00:00,0.0,42005952.31290914,0.0,29219843.750372966,0.0,39715117.7861422,0.0,42843892.59864022,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,153784806.44806455,63419881.67034747,69761869.8373822 - 09/04 21:00:00,0.0,32508074.68805863,0.0,20539303.368666047,0.0,32008997.21542901,0.0,33327057.618422606,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,118383432.8905763,49326574.63249246,69761869.8373822 - 09/04 22:00:00,0.0,26960634.845772908,0.0,15569635.593463893,0.0,27619044.99127807,0.0,27874112.798737516,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,98023428.2292524,35233267.594637479,69761869.8373822 - 09/04 23:00:00,0.0,23492990.903694229,0.0,12675672.01497091,0.0,25176877.662825176,0.0,24790805.85636882,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,77245140.69979945,86136346.43785915,35233267.594637479,62010550.96656194 - 09/04 24:00:00,0.0,16752645.100381216,0.0,6518555.106593435,0.0,19701853.336979018,0.0,18016172.102447109,2581.185747601241,2540.7768032028186,2544.050853445442,3062.478359611532,38622570.349899727,60989225.64640077,35233267.594637479,46507913.22492146 - 09/05 01:00:00,0.0,3932471.966288806,0.0,0.0,0.0,7956666.618549511,0.0,3903263.3035409979,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,38635725.44235732,15792401.888379315,21139960.556782485,23253956.61246073 - 09/05 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.1309374422706,1271.9023865698239,1273.5413626152966,1533.0640336050854,19334299.392836915,0.0,14093307.03785499,0.0 - 09/05 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,19347204.489021865,0.0,14093307.03785499,0.0 - 09/05 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 09/05 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19353838.12699616,0.0,14093307.03785499,0.0 - 09/05 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,19353877.68371783,0.0,14093307.03785499,0.0 - 09/05 07:00:00,0.0,880344.8746016482,0.0,0.0,0.0,9023084.82658021,0.0,1495684.678521892,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,11399114.37970375,14093307.03785499,15502637.741640486 - 09/05 08:00:00,0.0,62613933.16681959,0.0,37964899.86321837,0.0,54069733.412649828,0.0,56360622.9090902,20610.605957972366,20287.943076795567,20314.086162197316,24453.697213937205,308398796.6792488,211009189.35177798,56373228.15141996,38756594.35410121 - 09/05 09:00:00,0.0,84384998.9077568,0.0,51982259.32841642,0.0,52810735.0307781,0.0,60741615.80017378,18013.41145189717,17731.40813521913,17754.256864408566,21372.225073488204,269536685.49004706,249919609.06712515,56373228.15141996,38756594.35410121 - 09/05 10:00:00,0.0,79678883.7584331,0.0,34748698.882189508,0.0,31543609.84464896,0.0,36507348.42947462,12820.379647266142,12619.67421224873,12635.935950534582,15210.891067504132,191832771.15919293,182478540.91474618,28186614.07570998,0.0 - 09/05 11:00:00,0.0,91278123.64273784,0.0,35405110.778422269,0.0,29212299.275256818,0.0,34761054.035527657,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,190656587.7319446,28186614.07570998,0.0 - 09/05 12:00:00,0.0,96400773.459672,0.0,35512728.33130714,0.0,26859578.357280155,0.0,35306957.536576729,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,194080037.68483604,28186614.07570998,0.0 - 09/05 13:00:00,0.0,103722647.86477466,0.0,43801961.56290823,0.0,31003630.1522135,0.0,43429215.48310464,5094.625012267227,5014.867707298828,5021.329876196587,6044.578103262622,76231442.51649095,221957455.063001,28186614.07570998,0.0 - 09/05 14:00:00,0.0,110114973.51809037,0.0,58623165.433143008,0.0,42904328.45723448,0.0,56248543.833191368,5077.199365701253,4997.714862480594,5004.154928187051,6023.903238789915,75970700.62257174,267891011.24165923,28186614.07570998,0.0 - 09/05 15:00:00,0.0,107725833.8699829,0.0,69341953.44243479,0.0,54092474.11289714,0.0,67409058.82779867,7599.759525721978,7480.78387261306,7490.42362618066,9016.824576613424,113716049.76406484,298569320.2531135,28186614.07570998,0.0 - 09/05 16:00:00,0.0,98074102.46939607,0.0,73844249.29895354,0.0,60720693.892046589,0.0,72971809.56829527,12669.679808651535,12471.333607720662,12487.40419399677,15032.091461554393,189577832.6589241,305610855.22869148,28186614.07570998,0.0 - 09/05 17:00:00,0.0,84527005.92383667,0.0,72759604.41297454,0.0,63494933.53853092,0.0,74155610.62862405,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,294937154.5039662,35233267.594637479,0.0 - 09/05 18:00:00,0.0,63737331.31424895,0.0,54432525.63114284,0.0,50844498.495667468,0.0,60511459.32826438,17831.187542935295,17552.036975545892,17574.654566688056,21156.023361419175,266810048.8077183,229525814.76932363,14093307.03785499,0.0 - 09/05 19:00:00,0.0,55072456.121511,0.0,44068819.20525098,0.0,45796218.79755832,0.0,53058552.72241251,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,197996046.84673283,63419881.67034747,0.0 - 09/05 20:00:00,0.0,68406353.99400847,0.0,58047177.92734545,0.0,61623938.72803183,0.0,71620795.54450257,10231.207332751987,10071.035873327914,10084.013430979958,12138.936951116428,153090696.91743464,259698266.1938883,63419881.67034747,69761869.8373822 - 09/05 21:00:00,0.0,60928728.468816477,0.0,51778555.62121639,0.0,55201328.74394517,0.0,64055183.748540978,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,231963796.582519,49326574.63249246,69761869.8373822 - 09/05 22:00:00,0.0,51446608.71613499,0.0,42323042.9982395,0.0,47366941.76179291,0.0,54054029.07608414,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,195190622.55225156,35233267.594637479,69761869.8373822 - 09/05 23:00:00,0.0,45877480.29763206,0.0,36041856.345168787,0.0,42560615.55299434,0.0,47563988.801154438,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,172043940.9969496,35233267.594637479,62010550.96656194 - 09/05 24:00:00,0.0,38517800.58081636,0.0,29612705.88174004,0.0,36094173.561834398,0.0,39892766.35474948,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,144117446.3791403,35233267.594637479,46507913.22492146 - 09/06 01:00:00,0.0,24326172.487733704,0.0,16940868.18662753,0.0,22996493.14551928,0.0,24359565.54312349,2566.291072256977,2526.115306779668,2529.370464187682,3044.8063958802747,38399699.66077657,88623099.363004,21139960.556782485,23253956.61246073 - 09/06 02:00:00,0.0,14569166.803645174,0.0,8916980.469020281,0.0,13916232.05532749,0.0,14184474.003312529,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,51586853.33130547,14093307.03785499,0.0 - 09/06 03:00:00,0.0,14336110.467484713,0.0,8742415.942718763,0.0,13993828.376187733,0.0,14192794.046484687,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,51265148.83287589,14093307.03785499,0.0 - 09/06 04:00:00,0.0,12932561.348487042,0.0,7547511.843819035,0.0,13061255.560813815,0.0,12997517.245703115,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,46538845.99882301,14093307.03785499,0.0 - 09/06 05:00:00,0.0,13780572.092921816,0.0,8817641.340075864,0.0,13939617.341490692,0.0,14277559.706439974,1279.9055658805099,1259.868405480503,1261.4918745130595,1518.5590969181783,19151369.7940521,50815390.48092835,14093307.03785499,0.0 - 09/06 06:00:00,0.0,14775887.549531138,0.0,10179414.722152228,0.0,14564239.345749543,0.0,15276576.664374866,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,54796118.281807769,14093307.03785499,0.0 - 09/06 07:00:00,0.0,21441149.700824135,0.0,16653188.036712047,0.0,20955067.698675589,0.0,22658406.586876774,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,81707812.02308855,14093307.03785499,15502637.741640486 - 09/06 08:00:00,0.0,44195711.17571933,0.0,40053129.962863478,0.0,42063850.773785028,0.0,48392289.56451639,20462.414665503973,20142.071746655827,20168.026861959916,24277.873902232855,306181393.83486929,174704981.47688423,56373228.15141996,38756594.35410121 - 09/06 09:00:00,0.0,38976091.1945593,0.0,35415945.127281878,0.0,35010365.004964787,0.0,40378233.88956831,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,149780635.21637426,56373228.15141996,38756594.35410121 - 09/06 10:00:00,0.0,9631082.695753549,0.0,6062810.639896221,0.0,7624369.810805086,0.0,6849830.303621782,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,30168093.45007664,28186614.07570998,0.0 - 09/06 11:00:00,0.0,14805192.849687087,0.0,9781874.970314499,0.0,8149111.651187796,0.0,7590563.031176356,10258.111192340759,10097.518547975913,10110.530231257271,12170.857353535048,153493262.37039239,40326742.50236574,28186614.07570998,0.0 - 09/06 12:00:00,0.0,14966410.495300144,0.0,9451361.936814042,0.0,7238727.160629857,0.0,6620304.330015112,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,38276803.92275915,28186614.07570998,0.0 - 09/06 13:00:00,0.0,10603521.161002255,0.0,5301619.166308437,0.0,4012992.2972241465,0.0,3004608.782367068,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,22922741.406901905,28186614.07570998,0.0 - 09/06 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5140.776816583388,5060.296996508808,5066.817705682585,6099.335457361069,76922017.11408906,0.0,28186614.07570998,0.0 - 09/06 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7713.463002151948,7592.7072999081569,7602.491278235613,9151.729411069056,115417407.56891319,0.0,28186614.07570998,0.0 - 09/06 16:00:00,0.0,0.0,1208612.4029984635,0.0,0.0,0.0,0.0,0.0,12859.51171233805,12658.193657541857,12674.505032064568,15257.319768949194,193626921.01821567,0.0,28186614.07570998,0.0 - 09/06 17:00:00,0.0,0.0,203694.15031627863,0.0,0.0,0.0,0.0,0.0,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192508736.93553893,0.0,35233267.594637479,0.0 - 09/06 18:00:00,838385.6282614755,0.0,3774556.3058303787,0.0,0.0,0.0,0.0,0.0,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,273799186.81835749,0.0,14093307.03785499,0.0 - 09/06 19:00:00,0.0,0.0,0.0,0.0,0.0,6143314.829331793,0.0,0.0,18003.31639727327,17721.4711205586,17744.307044890393,21360.247676528867,269385632.0613041,6143314.829331793,63419881.67034747,0.0 - 09/06 20:00:00,0.0,19580728.965712169,0.0,13827395.667869937,0.0,33242401.312451535,0.0,32585964.165013169,10294.775153724086,10133.608528204128,10146.666717108637,12214.357744166919,154041869.31553359,99236490.11104682,63419881.67034747,69761869.8373822 - 09/06 21:00:00,0.0,18966666.010756818,0.0,13826706.508164484,0.0,27506383.057376516,0.0,28821070.75464434,10283.094436070924,10122.110674364862,10135.154047111138,12200.499018551845,153867089.43395559,89120826.33094216,49326574.63249246,69761869.8373822 - 09/06 22:00:00,0.0,14342692.759769952,0.0,9014615.418502232,0.0,23703250.174763025,0.0,23805438.29572448,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,70865996.6487597,35233267.594637479,69761869.8373822 - 09/06 23:00:00,0.0,12021374.673681956,0.0,6659306.3152264249,0.0,21663326.73286583,0.0,21294003.134703444,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,61638010.856477659,35233267.594637479,62010550.96656194 - 09/06 24:00:00,0.0,5543037.842795271,0.0,480612.3166211719,0.0,16122890.610417996,0.0,14436296.493848324,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,36582837.26368276,35233267.594637479,46507913.22492146 - 09/07 01:00:00,0.0,0.0,0.0,0.0,0.0,3758912.4902144556,0.0,0.0,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,3758912.4902144556,21139960.556782485,23253956.61246073 - 09/07 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,0.0,14093307.03785499,0.0 - 09/07 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,0.0,14093307.03785499,0.0 - 09/07 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 - 09/07 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 - 09/07 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,19353184.64539565,0.0,14093307.03785499,0.0 - 09/07 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.705474246016,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,15502637.741640486 - 09/07 08:00:00,0.0,17028561.998934509,0.0,1553803.6247576283,0.0,24123843.17435787,0.0,17749670.668504806,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,77346228.23363887,60455879.466554809,56373228.15141996,38756594.35410121 - 09/07 09:00:00,0.0,58122621.14255679,0.0,24381529.03158636,0.0,34403712.989471029,0.0,35867869.09138264,12921.309374422706,12719.023865698236,12735.413626152967,15330.640336050854,193342993.92836917,152775732.25499685,56373228.15141996,38756594.35410121 - 09/07 10:00:00,0.0,53321664.166882317,0.0,10163962.90637788,0.0,13930803.116717272,0.0,13291559.664400019,12904.772555802803,12702.745934058768,12719.114718737126,15311.020032007513,193095551.66618235,90707989.85437748,28186614.07570998,0.0 - 09/07 11:00:00,0.0,62958010.34470584,0.0,8916348.290430833,0.0,9878466.959488295,0.0,9447003.921461843,12899.919272181049,12697.968629497489,12714.331258131313,15305.261796251525,193022931.44182096,91199829.5160868,28186614.07570998,0.0 - 09/07 12:00:00,0.0,68693458.30895593,0.0,8899113.56228481,0.0,7613624.415035069,0.0,9756765.330841354,7728.977234239637,7607.978653798336,7617.7823108239949,9170.136455226453,115649548.75471832,94962961.61711717,28186614.07570998,0.0 - 09/07 13:00:00,0.0,74355616.27306085,0.0,16529780.591760833,0.0,11765553.363185788,0.0,17533091.509258175,7721.081365293064,7600.206396153094,7610.000037831479,9160.76830812519,115531401.98665019,120184041.73726565,28186614.07570998,0.0 - 09/07 14:00:00,0.0,72920145.92726699,0.0,25444493.822218494,0.0,19657858.347983995,0.0,25112191.616783259,7715.70702740283,7594.9161945251139,7604.703019238741,9154.391861369517,115450985.16913033,143134689.7142527,28186614.07570998,0.0 - 09/07 15:00:00,0.0,70314073.62019482,0.0,33236578.086908394,0.0,27690321.428159678,0.0,32715586.443758284,7720.033479384502,7599.174915093914,7608.967227603673,9159.525031494948,115515722.35287734,163956559.57902117,28186614.07570998,0.0 - 09/07 16:00:00,0.0,55850091.80185367,0.0,31384586.244240278,0.0,29778177.708642477,0.0,32752180.030816989,18027.608506150802,17745.382931939967,17768.249669081353,21389.06933642526,269749117.59695056,149765035.78555344,28186614.07570998,0.0 - 09/07 17:00:00,0.0,34775606.46666703,0.0,20444553.316564606,0.0,23583517.713361443,0.0,23796911.494598807,23202.98627992636,22839.7392012013,22869.170536365764,27529.4575086951,347188872.6942787,102600588.9911919,35233267.594637479,0.0 - 09/07 18:00:00,0.0,17731234.54077283,0.0,5987660.7615478769,0.0,13658253.03176744,0.0,12097157.136767948,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,49474305.47085609,14093307.03785499,0.0 - 09/07 19:00:00,0.0,15287221.395075079,0.0,3874929.8807449156,0.0,14920407.054611627,0.0,12827949.02173663,18075.91277082021,17792.930984334824,17815.85899199485,21446.380502568372,270471899.6989857,46910507.35216825,63419881.67034747,0.0 - 09/07 20:00:00,0.0,24536805.382618246,0.0,13012542.940744622,0.0,26772886.367420034,0.0,26309505.07992817,15504.624506308428,15261.896717277323,15281.563228946952,18395.64512883233,231997426.4929141,90631739.77071108,63419881.67034747,69761869.8373822 - 09/07 21:00:00,0.0,17382141.089734325,0.0,7130506.420224667,0.0,21110935.7306374,0.0,19381747.26583158,12921.309374422706,12719.023865698236,12735.413626152967,15330.640336050854,193342993.92836917,65005330.50642797,49326574.63249246,69761869.8373822 - 09/07 22:00:00,0.0,10504743.959159222,0.0,1156784.5579422357,0.0,15544488.723658286,0.0,12471456.290950079,10340.447442243982,10178.565808527088,10191.68192947599,12268.546171077343,154725268.86476786,39677473.53170982,35233267.594637479,69761869.8373822 - 09/07 23:00:00,0.0,5992717.577327041,0.0,0.0,0.0,12015998.029062499,0.0,8241552.793152475,7754.945165752549,7633.540052499099,7643.376647995982,9200.946414709637,116038109.81144618,26250268.399542016,35233267.594637479,62010550.96656194 - 09/07 24:00:00,0.0,176952.7612960675,0.0,0.0,0.0,5875400.284486415,0.0,1044758.8109027476,5171.59154624017,5090.629315824331,5097.189111287503,6135.895957828297,77383101.35224909,7097111.8566852309,35233267.594637479,46507913.22492146 - 09/08 01:00:00,0.0,0.0,7581300.501433032,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,46287047.22980882,0.0,21139960.556782485,23253956.61246073 - 09/08 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223884,19353877.68371783,0.0,14093307.03785499,0.0 - 09/08 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 - 09/08 04:00:00,1435581.3040867716,0.0,10376866.438857384,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,31165122.643441116,0.0,14093307.03785499,0.0 - 09/08 05:00:00,9602183.050541785,0.0,16586374.883101263,0.0,0.0,0.0,4951734.3054296099,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,50487688.31362206,0.0,14093307.03785499,0.0 - 09/08 06:00:00,9228835.296651222,0.0,13852526.743035514,0.0,0.0,0.0,5050042.7656096699,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,47477391.35097806,0.0,14093307.03785499,0.0 - 09/08 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4178662433677,1273.1691682604633,1274.8097766834422,1534.5909255024945,19353555.852083167,0.0,14093307.03785499,15502637.741640486 - 09/08 08:00:00,5748723.963990838,345598.2749073329,8074441.923209621,0.0,0.0,0.0,3591831.034770718,0.0,1293.3087698752136,1273.0617798163049,1274.7022498583124,1534.4614868261443,36766920.35292469,345598.2749073329,56373228.15141996,38756594.35410121 - 09/08 09:00:00,0.0,23138180.691012358,0.0,0.0,0.0,9262736.660584264,0.0,3926266.897705947,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,36327184.249302569,56373228.15141996,38756594.35410121 - 09/08 10:00:00,0.0,25147267.161678547,0.0,0.0,0.0,180456.34655069153,0.0,0.0,7757.079993855047,7635.6414594694019,7645.480762843652,9203.479306761852,116070053.48254782,25327723.508229235,28186614.07570998,0.0 - 09/08 11:00:00,0.0,15175977.143724688,0.0,0.0,0.0,0.0,0.0,0.0,7754.945165752549,7633.540052499099,7643.376647995982,9200.946414709637,116038109.81144618,15175977.143724688,28186614.07570998,0.0 - 09/08 12:00:00,0.0,9083524.1318908,0.0,0.0,0.0,0.0,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,77350536.73556961,9083524.1318908,28186614.07570998,0.0 - 09/08 13:00:00,0.0,9479320.174203545,0.0,0.0,0.0,0.0,0.0,0.0,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,9479320.174203545,28186614.07570998,0.0 - 09/08 14:00:00,0.0,4396365.850054065,0.0,0.0,0.0,0.0,0.0,0.0,7753.2451808065729,7631.866681134585,7641.701120321666,9198.92944746365,116012672.7470153,4396365.850054065,28186614.07570998,0.0 - 09/08 15:00:00,0.0,1627520.8080771992,1116949.6505113403,0.0,0.0,0.0,0.0,0.0,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,155809406.1177891,1627520.8080771992,28186614.07570998,0.0 - 09/08 16:00:00,0.0,0.0,2997643.453901913,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,196384411.69338913,0.0,28186614.07570998,0.0 - 09/08 17:00:00,0.0,0.0,4546601.995903291,0.0,0.0,0.0,817779.2811066697,0.0,15509.081827508919,15266.284258282907,15285.956423746948,18400.9335702903,237428503.16439463,0.0,35233267.594637479,0.0 - 09/08 18:00:00,0.0,0.0,10723963.133244917,0.0,0.0,0.0,5948158.142366458,0.0,18100.570411840596,17817.202605385155,17840.16188950626,21475.635852399035,287512976.0084832,0.0,14093307.03785499,0.0 - 09/08 19:00:00,0.0,0.0,6886856.488813439,0.0,0.0,0.0,0.0,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,161699156.78553499,0.0,63419881.67034747,0.0 - 09/08 20:00:00,0.0,0.0,0.0,0.0,0.0,3566594.3170388808,0.0,0.0,7760.638218499067,7639.143979442833,7648.987796171564,9207.701004476197,116123295.59492278,3566594.3170388808,63419881.67034747,69761869.8373822 - 09/08 21:00:00,0.0,0.0,2996990.7647951187,0.0,0.0,2457695.414270057,0.0,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,80403593.03780991,2457695.414270057,49326574.63249246,69761869.8373822 - 09/08 22:00:00,0.0,0.0,9149304.798844308,0.0,0.0,0.0,0.0,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,86557411.34665005,0.0,35233267.594637479,69761869.8373822 - 09/08 23:00:00,3712526.966724209,0.0,11695345.50549961,0.0,0.0,0.0,0.0,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,92814474.7452386,0.0,35233267.594637479,62010550.96656194 - 09/08 24:00:00,7574089.579701682,0.0,14710970.401727582,0.0,0.0,0.0,2213006.741965469,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,101912290.1317274,0.0,35233267.594637479,46507913.22492146 - 09/09 01:00:00,17932299.563434535,0.0,24904067.19218719,0.0,3546234.5735856399,0.0,15013543.035649732,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,100089561.55758517,0.0,21139960.556782485,23253956.61246073 - 09/09 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.69588468862,1272.4584894616406,1274.09818210245,1533.7343219475166,19342752.761520819,0.0,14093307.03785499,0.0 - 09/09 03:00:00,2151170.803109716,0.0,11360150.54573901,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,32854074.11036954,0.0,14093307.03785499,0.0 - 09/09 04:00:00,9777658.958804844,0.0,15117166.954095565,0.0,0.0,0.0,3983186.5414913536,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,48222451.20926216,0.0,14093307.03785499,0.0 - 09/09 05:00:00,12176659.349644039,0.0,17162115.0379702,0.0,1108481.2287937413,0.0,8900252.993264812,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,58686475.04101926,0.0,14093307.03785499,0.0 - 09/09 06:00:00,11655406.303724532,0.0,15964509.768699013,0.0,2085883.3915150287,0.0,7930170.077263665,0.0,1292.3738138579286,1272.1414607098862,1273.7807448267902,1533.3521972011009,56973903.12094678,0.0,14093307.03785499,0.0 - 09/09 07:00:00,280568.06431634767,0.0,1044309.980947609,0.0,0.0,0.0,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,78724078.58673795,0.0,14093307.03785499,15502637.741640486 - 09/09 08:00:00,9397899.751137587,0.0,11648669.164758306,0.0,2691871.2710118617,0.0,7957685.284670498,0.0,20694.791976285633,20370.811147287255,20397.061016656,24553.580711088012,341354606.9363191,0.0,56373228.15141996,38756594.35410121 - 09/09 09:00:00,0.0,14288601.133735564,5536234.453926751,0.0,712559.7099129692,0.0,3043808.729039666,0.0,18100.570411840596,17817.202605385155,17840.16188950626,21475.635852399035,280133457.62575116,14288601.133735564,56373228.15141996,38756594.35410121 - 09/09 10:00:00,0.0,25436550.09967631,0.0,0.0,0.0,0.0,0.0,0.0,12925.559302804977,12723.207260658859,12739.602411844986,15335.682713846678,193406586.0809598,25436550.09967631,28186614.07570998,0.0 - 09/09 11:00:00,0.0,31374457.04187899,0.0,0.0,0.0,0.0,0.0,0.0,10333.707608694891,10171.931488329525,10185.039060279698,12260.54961584661,154624419.98334263,31374457.04187899,28186614.07570998,0.0 - 09/09 12:00:00,0.0,31314086.508660444,0.0,0.0,0.0,0.0,0.0,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,77295566.1701588,31314086.508660444,28186614.07570998,0.0 - 09/09 13:00:00,0.0,38411015.756986837,0.0,0.0,0.0,0.0,0.0,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,77295566.1701588,38411015.756986837,28186614.07570998,0.0 - 09/09 14:00:00,0.0,39236256.728802237,0.0,3197948.282179868,0.0,928354.1918684869,0.0,0.0,5164.954008148201,5084.095689629423,5090.647065848369,6128.02077225258,77283783.12916287,43362559.202850598,28186614.07570998,0.0 - 09/09 15:00:00,0.0,32363147.939904378,0.0,7330112.324662131,0.0,6988004.44557054,0.0,5824123.098023218,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,52505387.80816026,28186614.07570998,0.0 - 09/09 16:00:00,0.0,22604155.38323736,0.0,5224815.943262559,0.0,8463532.681967389,0.0,6013230.580411879,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,42305734.58887918,28186614.07570998,0.0 - 09/09 17:00:00,0.0,5286393.496212845,0.0,0.0,0.0,2726612.002551747,0.0,352494.23202719187,12916.230548450674,12714.02454969425,12730.40786802004,15324.614502905742,193266998.88865454,8365499.730791784,35233267.594637479,0.0 - 09/09 18:00:00,0.0,0.0,797283.5446032317,0.0,0.0,0.0,0.0,0.0,18088.728590693165,17805.54617015688,17828.490433771443,21461.585983637713,271460947.7863363,0.0,14093307.03785499,0.0 - 09/09 19:00:00,0.0,0.0,5289.3845480284639,0.0,0.0,1312711.9021405285,0.0,0.0,18096.66170153254,17813.355086666143,17836.309412866667,21470.998316823174,270787657.6489467,1312711.9021405285,63419881.67034747,0.0 - 09/09 20:00:00,0.0,6415602.727070281,0.0,0.0,0.0,14039976.66885546,0.0,7689925.130805035,10343.574380486538,10181.64379396813,10194.763881215431,12272.256163939564,154772057.59059478,28145504.526730777,63419881.67034747,69761869.8373822 - 09/09 21:00:00,0.0,4709775.934909463,0.0,0.0,0.0,11283139.078757678,0.0,7502847.451612661,10343.18309248034,10181.258631648661,10194.378222575006,12271.791915656593,154766202.70449818,23495762.4652798,49326574.63249246,69761869.8373822 - 09/09 22:00:00,0.0,383515.19147472406,0.0,0.0,0.0,7191478.3655297909,0.0,2681686.288705564,5173.019507611572,5092.034922194079,5098.596528924525,6137.590179486829,77404468.09758123,10256679.84571008,35233267.594637479,69761869.8373822 - 09/09 23:00:00,0.0,0.0,1039379.0315184214,0.0,0.0,3101110.453523009,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,78454434.74899177,3101110.453523009,35233267.594637479,62010550.96656194 - 09/09 24:00:00,0.0,0.0,7455208.437212396,0.0,0.0,0.0,0.0,0.0,2586.6644913924235,2546.169776237891,2549.4507758767197,3068.9786799832625,46159757.84177746,0.0,35233267.594637479,46507913.22492146 - 09/10 01:00:00,6541962.9308113199,0.0,15872816.496628887,0.0,0.0,0.0,2703385.5437660736,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,63824831.97086478,0.0,21139960.556782485,23253956.61246073 - 09/10 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,19352674.90049696,0.0,14093307.03785499,0.0 - 09/10 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,19353852.873256897,0.0,14093307.03785499,0.0 - 09/10 04:00:00,254349.29770517635,0.0,7922362.9131099539,0.0,0.0,0.0,0.0,0.0,1293.3156672372614,1273.0685691988627,1274.7090479896829,1534.469670282925,27528738.847766568,0.0,14093307.03785499,0.0 - 09/10 05:00:00,2709948.0545890138,0.0,7201089.558529447,0.0,0.0,0.0,0.0,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,29263312.31540099,0.0,14093307.03785499,0.0 - 09/10 06:00:00,1315796.7838613955,0.0,5463852.906464314,0.0,0.0,0.0,0.0,0.0,1293.4030062155769,1273.1545408691798,1274.795130443272,1534.5732946467629,26132983.19015496,0.0,14093307.03785499,0.0 - 09/10 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,77400688.63593015,0.0,14093307.03785499,15502637.741640486 - 09/10 08:00:00,7969160.874671824,0.0,10248976.011786746,0.0,0.0,0.0,7315002.434174752,0.0,20677.660878846906,20353.948240374735,20380.176380166762,24533.255317911156,334935286.26291176,0.0,56373228.15141996,38756594.35410121 - 09/10 09:00:00,0.0,0.0,1556048.1681023599,0.0,0.0,0.0,0.0,0.0,18083.98831521606,17800.880104576663,17823.81835548947,21455.961827731564,272148783.1389519,0.0,56373228.15141996,38756594.35410121 - 09/10 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12904.772555802803,12702.745934058768,12719.114718737126,15311.020032007513,193095551.66618235,0.0,28186614.07570998,0.0 - 09/10 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10298.85855549139,10137.628003555008,10150.691371963767,12219.202544490798,154102969.7118035,0.0,28186614.07570998,0.0 - 09/10 12:00:00,0.0,25282487.93484553,0.0,0.0,0.0,0.0,0.0,0.0,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,25282487.93484553,28186614.07570998,0.0 - 09/10 13:00:00,0.0,19569706.068004148,0.0,4277527.786158654,0.0,0.0,0.0,0.0,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,23847233.854162806,28186614.07570998,0.0 - 09/10 14:00:00,0.0,8813601.035365178,0.0,954579.5563838179,0.0,0.0,0.0,0.0,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,9768180.591748996,28186614.07570998,0.0 - 09/10 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7723.13659377023,7602.229449645048,7612.025698234345,9163.206758260454,115562154.59967628,0.0,28186614.07570998,0.0 - 09/10 16:00:00,0.0,0.0,5713053.296663891,0.0,0.0,0.0,1889811.5121205999,0.0,12890.547933292422,12688.744000667388,12705.094742425425,15294.143060386168,200485571.86116157,0.0,28186614.07570998,0.0 - 09/10 17:00:00,7087191.666260913,0.0,11694945.336353487,0.0,913588.9070187955,0.0,6566918.003024264,0.0,12896.03965596058,12694.149749392695,12710.507457009717,15300.658779699996,219227524.2240842,0.0,35233267.594637479,0.0 - 09/10 18:00:00,16882969.93247075,0.0,21668049.514147689,0.0,8545541.459024866,0.0,15886747.822678741,0.0,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,333738898.2883631,0.0,14093307.03785499,0.0 - 09/10 19:00:00,9933244.977141772,0.0,15171451.505723138,0.0,0.0,0.0,5608658.69004418,0.0,18104.193634288007,17820.76910560924,17843.732985529907,21479.934667525984,301608424.5875404,0.0,63419881.67034747,0.0 - 09/10 20:00:00,648447.2509470622,0.0,5929861.53012768,0.0,0.0,0.0,0.0,0.0,10347.46731810134,10185.475786918345,10198.600812079689,12276.874985816963,161408616.83157359,0.0,63419881.67034747,69761869.8373822 - 09/10 21:00:00,8647548.176491153,0.0,14450461.63357822,0.0,0.0,0.0,0.0,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,177853519.84903259,0.0,49326574.63249246,69761869.8373822 - 09/10 22:00:00,14387329.133018349,0.0,20443077.60663215,0.0,0.0,0.0,7374357.765983584,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,119579216.62400548,0.0,35233267.594637479,69761869.8373822 - 09/10 23:00:00,17116805.20217086,0.0,23177898.16155644,0.0,1252979.8384404772,0.0,10323050.594174523,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,129245185.9147137,0.0,35233267.594637479,62010550.96656194 - 09/10 24:00:00,22101081.70670797,0.0,28264140.74694393,0.0,6471866.539156298,0.0,15805133.13517389,0.0,2584.747627715857,2544.2829214197724,2547.5614896535805,3066.7043944022018,111318089.28747116,0.0,35233267.594637479,46507913.22492146 - 09/11 01:00:00,30836626.225776979,0.0,36938142.52816861,0.0,14860577.771291936,0.0,25866516.377984469,0.0,2585.0191227165457,2544.5501661155778,2547.8290787214534,3067.026512856917,147181792.47269977,0.0,21139960.556782485,23253956.61246073 - 09/11 02:00:00,0.0,0.0,2562123.3978465979,0.0,0.0,0.0,0.0,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,21896751.534286716,0.0,14093307.03785499,0.0 - 09/11 03:00:00,16948556.54781799,0.0,23620202.049458609,0.0,0.0,0.0,8263203.184636866,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915205,68160391.87201582,0.0,14093307.03785499,0.0 - 09/11 04:00:00,21949357.82733484,0.0,26982910.847490465,0.0,6866536.9350284379,0.0,16739250.59639671,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,91865143.44652228,0.0,14093307.03785499,0.0 - 09/11 05:00:00,24519085.17932856,0.0,29530085.12716748,0.0,10611926.340586717,0.0,19801305.94493887,0.0,1290.7379493515048,1270.5312059674805,1272.1684151067937,1531.411306409016,103775858.5486269,0.0,14093307.03785499,0.0 - 09/11 06:00:00,22936407.212408034,0.0,27259480.407762749,0.0,9060237.581045388,0.0,17703241.531486758,0.0,1290.2735012547228,1270.0740288922964,1271.710648912285,1530.8602564712579,96265873.10061294,0.0,14093307.03785499,0.0 - 09/11 07:00:00,1712331.765051477,0.0,2489489.4618641145,0.0,0.0,0.0,0.0,0.0,5171.445745380808,5090.485797504622,5097.0454080297899,6135.722970674224,81582740.94463758,0.0,14093307.03785499,15502637.741640486 - 09/11 08:00:00,9823269.630653097,0.0,11533059.013558353,0.0,2089004.9184592323,0.0,7044665.934532365,0.0,20694.288929952643,20370.31597623845,20396.565207528758,24552.98386581638,340140953.8235335,0.0,56373228.15141996,38756594.35410121 - 09/11 09:00:00,0.0,11631118.196690955,2645961.18090265,0.0,0.0,0.0,0.0,0.0,18106.322778252987,17822.86491742826,17845.83149801637,21482.460815566017,273572889.2142517,11631118.196690955,56373228.15141996,38756594.35410121 - 09/11 10:00:00,0.0,18491922.949487598,1738506.3210337859,0.0,0.0,0.0,0.0,0.0,12927.931352996873,12725.542175962495,12741.94033592531,15338.49706085264,195180585.65368814,18491922.949487598,28186614.07570998,0.0 - 09/11 11:00:00,0.0,22558304.14359689,4946835.916655121,0.0,0.0,0.0,2189149.372858423,0.0,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,161791216.60056124,22558304.14359689,28186614.07570998,0.0 - 09/11 12:00:00,0.0,22120714.53110399,5405640.311728319,0.0,0.0,0.0,3794052.389325082,0.0,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,86500944.2982665,22120714.53110399,28186614.07570998,0.0 - 09/11 13:00:00,0.0,15633084.223761859,1413132.9485977155,0.0,0.0,0.0,665362.3553657468,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,79330419.1066781,15633084.223761859,28186614.07570998,0.0 - 09/11 14:00:00,0.0,11586391.921430912,0.0,0.0,0.0,0.0,0.0,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,11586391.921430912,28186614.07570998,0.0 - 09/11 15:00:00,0.0,21045311.718892464,0.0,0.0,0.0,0.0,0.0,0.0,7739.189322470282,7618.030869882667,7627.847480214758,9182.25270809274,115802353.3703776,21045311.718892464,28186614.07570998,0.0 - 09/11 16:00:00,0.0,3495624.023926853,0.0,0.0,0.0,0.0,0.0,0.0,12901.166853242785,12699.196679444969,12715.560890546494,15306.74200355818,193041599.13645274,3495624.023926853,28186614.07570998,0.0 - 09/11 17:00:00,0.0,584615.3319184171,0.0,0.0,0.0,0.0,0.0,0.0,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,584615.3319184171,35233267.594637479,0.0 - 09/11 18:00:00,0.0,0.0,2319551.3359375649,0.0,0.0,0.0,0.0,0.0,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,272893349.7800539,0.0,14093307.03785499,0.0 - 09/11 19:00:00,0.0,0.0,5214417.229178831,0.0,0.0,0.0,0.0,0.0,18105.568276640504,17822.12222767927,17845.087851235836,21481.565628203898,276130055.57071307,0.0,63419881.67034747,0.0 - 09/11 20:00:00,0.0,269437.071462327,0.0,0.0,0.0,8795902.171620556,0.0,2441251.432843817,10343.574380486538,10181.64379396813,10194.763881215431,12272.256163939564,154772057.59059478,11506590.6759267,63419881.67034747,69761869.8373822 - 09/11 21:00:00,0.0,1748646.6589621367,0.0,0.0,0.0,9523690.944500644,0.0,4900437.603814438,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,16172775.207277216,49326574.63249246,69761869.8373822 - 09/11 22:00:00,0.0,0.0,0.0,0.0,0.0,5326198.465513998,0.0,253067.9162194814,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,5579266.381733479,35233267.594637479,69761869.8373822 - 09/11 23:00:00,0.0,0.0,6982018.310104452,0.0,0.0,484779.1473667551,0.0,0.0,5173.626478327107,5092.632390669831,5099.194767299391,6138.3103270713149,84395568.57822797,484779.1473667551,35233267.594637479,62010550.96656194 - 09/11 24:00:00,4075437.4507968018,0.0,14005981.52941686,0.0,0.0,0.0,0.0,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,56786768.78120759,0.0,35233267.594637479,46507913.22492146 - 09/12 01:00:00,16377053.060898949,0.0,23358635.21707178,0.0,1813007.998496998,0.0,11168852.738742928,0.0,2586.466654568959,2545.9750365868046,2549.255785283716,3068.743954144118,91419138.1653116,0.0,21139960.556782485,23253956.61246073 - 09/12 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.0911584806107,1272.8475751686795,1274.4877691861353,1534.2032992131854,19348667.287374997,0.0,14093307.03785499,0.0 - 09/12 03:00:00,2618010.815839255,0.0,9569949.807438313,0.0,0.0,0.0,0.0,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,31528889.25361997,0.0,14093307.03785499,0.0 - 09/12 04:00:00,9007431.947187517,0.0,14287613.455317716,0.0,0.0,0.0,4452732.426336242,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,47093764.37452313,0.0,14093307.03785499,0.0 - 09/12 05:00:00,11926431.490464103,0.0,16985398.895355286,0.0,1346549.9871471548,0.0,8808279.098105323,0.0,1291.826131186492,1271.602352112841,1273.240941533292,1532.702392617774,58396398.01389329,0.0,14093307.03785499,0.0 - 09/12 06:00:00,10453169.949655772,0.0,14966996.33893832,0.0,1870925.2372971327,0.0,7533544.784532356,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,54172032.38497299,0.0,14093307.03785499,0.0 - 09/12 07:00:00,420074.8007215095,0.0,2885147.311166738,0.0,0.0,0.0,0.0,0.0,5173.508727977128,5092.516483723547,5099.078710995175,6138.170620775871,80717010.46838644,0.0,14093307.03785499,15502637.741640486 - 09/12 08:00:00,12563890.962552552,0.0,13684655.413384039,0.0,7055022.770941376,0.0,12834116.56688176,0.0,20687.894370808346,20364.021525110464,20390.26264535803,24545.396965487,355692957.53810957,0.0,56373228.15141996,38756594.35410121 - 09/12 09:00:00,5985324.697779011,0.0,10236136.75206393,0.0,3887609.713765494,0.0,7006301.911209686,0.0,18085.221682874773,17802.094163634596,17825.033978986423,21457.425171378094,297726563.06356409,0.0,56373228.15141996,38756594.35410121 - 09/12 10:00:00,0.0,1937867.1956670334,528124.2127095291,0.0,0.0,0.0,0.0,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193690821.6084228,1937867.1956670334,28186614.07570998,0.0 - 09/12 11:00:00,0.0,0.0,8121551.286547663,0.0,1398216.8726265806,0.0,5814106.010559914,0.0,10329.908016296402,10168.191379258846,10181.294131696737,12256.04154450516,169901440.42805989,0.0,28186614.07570998,0.0 - 09/12 12:00:00,0.0,0.0,829184.3330608563,0.0,100284.79318997414,0.0,1339904.5062954189,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,79500537.40168041,0.0,28186614.07570998,0.0 - 09/12 13:00:00,0.0,6353521.608004035,0.0,0.0,0.0,0.0,0.0,0.0,5159.459548313522,5078.687246588446,5085.231653476505,6121.501805395159,77201568.91358507,6353521.608004035,28186614.07570998,0.0 - 09/12 14:00:00,0.0,21767289.651219883,0.0,0.0,0.0,0.0,0.0,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,21767289.651219883,28186614.07570998,0.0 - 09/12 15:00:00,0.0,36725285.5691172,0.0,7812218.330559748,0.0,5843992.778448662,0.0,5895822.570940463,7725.137698942803,7604.199227142838,7613.998013991493,9165.580993160831,115592097.35965666,56277319.24906608,28186614.07570998,0.0 - 09/12 16:00:00,0.0,33470531.06741192,0.0,16381752.420719112,0.0,16375253.411239643,0.0,16078067.473214485,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,82305604.37258516,28186614.07570998,0.0 - 09/12 17:00:00,0.0,24284623.41574984,0.0,15908734.005269457,0.0,20232983.847022535,0.0,18948513.40811879,12876.863218679146,12675.273522814263,12691.606906486682,15277.906668875186,192677941.140679,79374854.67616062,35233267.594637479,0.0 - 09/12 18:00:00,0.0,10379894.766096276,0.0,4815885.772094484,0.0,11966550.411918473,0.0,9862363.846088963,18074.45441088164,17791.49545529315,17814.421613127484,21444.65021417028,270450078.0965012,37024694.7961982,14093307.03785499,0.0 - 09/12 19:00:00,0.0,5799290.422928102,0.0,0.0,0.0,9691550.97922054,0.0,6410643.453165993,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,21901484.855314636,63419881.67034747,0.0 - 09/12 20:00:00,0.0,17812696.590875247,0.0,7622921.5270729879,0.0,23698578.101334037,0.0,22284204.76481317,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,71418400.98409543,63419881.67034747,69761869.8373822 - 09/12 21:00:00,0.0,16024176.510779378,0.0,8261469.455162128,0.0,21651281.97732558,0.0,20228541.08949775,10325.649633769744,10163.999662505044,10177.097013488059,12250.989136189737,154503847.6054293,66165469.03276484,49326574.63249246,69761869.8373822 - 09/12 22:00:00,0.0,10095397.162917218,0.0,2677577.017471233,0.0,16799905.087785625,0.0,14040293.778779053,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,43613173.04695313,35233267.594637479,69761869.8373822 - 09/12 23:00:00,0.0,5821965.855373723,0.0,0.0,0.0,13538723.021107624,0.0,9918693.28159406,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,29279382.158075409,35233267.594637479,62010550.96656194 - 09/12 24:00:00,0.0,2073172.5338852455,0.0,0.0,0.0,9768293.325271849,0.0,5831772.024518354,2582.870740394684,2542.435417119745,2545.7116046556918,3064.4775392408234,38647783.0850794,17673237.88367545,35233267.594637479,46507913.22492146 - 09/13 01:00:00,0.0,0.0,740035.8021068327,0.0,0.0,15517.805025974367,0.0,0.0,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,39426780.610647249,15517.805025974367,21139960.556782485,23253956.61246073 - 09/13 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.1309374422706,1271.9023865698239,1273.5413626152966,1533.0640336050854,19334299.392836915,0.0,14093307.03785499,0.0 - 09/13 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 09/13 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 - 09/13 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.7054742460162,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 - 09/13 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 - 09/13 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5169.415219711726,5088.487060093683,5095.0440950416909,6133.313829477789,77350536.7355696,0.0,14093307.03785499,15502637.741640486 - 09/13 08:00:00,0.0,26833467.600657066,0.0,6020215.737088811,0.0,28527133.013526236,0.0,21518833.101362684,20647.636089284482,20324.39349449403,20350.5835499794,24497.632051212015,308952882.66589179,82899649.45263478,56373228.15141996,38756594.35410121 - 09/13 09:00:00,0.0,62360785.98060052,0.0,36164712.45659095,0.0,37846774.335067678,0.0,41236485.150912839,18020.652052130536,17738.53538250511,17761.393295880138,21380.815769274388,269645027.3992446,177608757.923172,56373228.15141996,38756594.35410121 - 09/13 10:00:00,0.0,56764786.6442322,0.0,26593498.81509143,0.0,20995690.964382478,0.0,23500095.19284866,12835.730650307973,12634.784892474212,12651.066102413852,15229.104446629452,192062469.93057177,127854071.61655477,28186614.07570998,0.0 - 09/13 11:00:00,0.0,63546827.13459349,0.0,30362899.89728191,0.0,21076999.39397172,0.0,24614848.407686443,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,139601574.83353357,28186614.07570998,0.0 - 09/13 12:00:00,0.0,67539178.1183525,0.0,33309672.656576776,0.0,21773745.468205856,0.0,27818299.445193776,5113.542114315616,5033.488658585667,5039.97482247976,6067.0225227328569,76514501.22521004,150440895.6883289,28186614.07570998,0.0 - 09/13 13:00:00,0.0,81693639.53364207,0.0,39778341.18199824,0.0,26180062.02774627,0.0,35928178.2536873,5098.143391432224,5018.331005581644,5024.797637292732,6048.752525837101,76284088.41651732,183580220.99707387,28186614.07570998,0.0 - 09/13 14:00:00,0.0,85246912.19741655,0.0,52090930.89767983,0.0,35652925.45797614,0.0,46147615.40303529,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,219138383.9561078,28186614.07570998,0.0 - 09/13 15:00:00,0.0,79620797.77456135,0.0,56073673.78938291,0.0,41301741.29899017,0.0,51052129.48774066,7643.709482350936,7524.045784472135,7533.741285428817,9068.969522480698,114373677.86903732,228048342.3506751,28186614.07570998,0.0 - 09/13 16:00:00,0.0,68297852.81235697,0.0,52548823.7632972,0.0,42830486.092932078,0.0,50701428.03136783,12748.24782393121,12548.671626064284,12564.841870270755,15125.309412558205,190753454.638168,214378590.69995407,28186614.07570998,0.0 - 09/13 17:00:00,0.0,50904452.35833517,0.0,42581088.404995348,0.0,38491039.33854169,0.0,43870921.16261886,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,175847501.26449109,35233267.594637479,0.0 - 09/13 18:00:00,0.0,31493432.978809559,0.0,24471773.217370433,0.0,25796101.12470133,0.0,28812391.647906584,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,110573698.9687879,14093307.03785499,0.0 - 09/13 19:00:00,0.0,33981364.30626144,0.0,26157362.878531275,0.0,31465365.7098659,0.0,34697526.489957619,17957.927986358143,17676.793273683546,17699.571626049474,21306.39605956023,268706480.204345,126301619.38461623,63419881.67034747,0.0 - 09/13 20:00:00,0.0,48532189.44098215,0.0,40385978.97392612,0.0,48016634.87685884,0.0,53775800.48032398,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,190710603.7720911,63419881.67034747,69761869.8373822 - 09/13 21:00:00,0.0,38553008.532228428,0.0,31763434.495458925,0.0,39725636.61535798,0.0,44490972.24798249,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,154533051.8910278,49326574.63249246,69761869.8373822 - 09/13 22:00:00,0.0,29210319.678919864,0.0,22396338.213292619,0.0,32027478.58020659,0.0,34586099.52150225,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,118220235.99392133,35233267.594637479,69761869.8373822 - 09/13 23:00:00,0.0,21284149.083381744,0.0,14514495.008874268,0.0,26080735.599039157,0.0,26400184.786988416,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,88279564.47828359,35233267.594637479,62010550.96656194 - 09/13 24:00:00,0.0,12333872.582106462,0.0,6501824.16588962,0.0,18420038.90009679,0.0,16895473.010254943,2578.9401735140979,2538.5663839969208,2541.837585888785,3059.8140716759696,38588969.57427278,54151208.658347818,35233267.594637479,46507913.22492146 - 09/14 01:00:00,0.0,1549883.8853007556,0.0,0.0,0.0,7336149.175773716,0.0,4363890.854664301,2576.6343911708165,2536.2966991063669,2539.5649762775876,3057.078348942789,38554467.89579122,13249923.915738773,21139960.556782485,23253956.61246073 - 09/14 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 - 09/14 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,0.0,14093307.03785499,0.0 - 09/14 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,0.0,14093307.03785499,0.0 - 09/14 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 - 09/14 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 09/14 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5928738006206,1270.3884016014093,1272.025426722721,1531.239179805766,19311285.174949863,0.0,14093307.03785499,15502637.741640486 - 09/14 08:00:00,0.0,0.0,0.0,0.0,0.0,1951828.9864670849,0.0,0.0,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,1951828.9864670849,56373228.15141996,38756594.35410121 - 09/14 09:00:00,0.0,0.0,0.0,0.0,0.0,3527759.049940601,0.0,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,3527759.049940601,56373228.15141996,38756594.35410121 - 09/14 10:00:00,6122019.786437318,0.0,12601087.305549082,0.0,0.0,0.0,2811361.669496948,0.0,12897.355661240787,12695.445152364739,12711.804529240711,15302.22016972995,214519040.6067576,0.0,28186614.07570998,0.0 - 09/14 11:00:00,7069015.705440868,0.0,10079147.645082806,0.0,0.0,0.0,5281368.703917344,0.0,12890.547933292422,12688.744000667388,12705.094742425425,15294.143060386168,215312239.10681809,0.0,28186614.07570998,0.0 - 09/14 12:00:00,5445868.063592305,0.0,8090162.111224225,0.0,427475.1676172367,0.0,4212804.01789406,0.0,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,133811799.88008088,0.0,28186614.07570998,0.0 - 09/14 13:00:00,6536104.751118376,0.0,9146171.480368313,0.0,1098323.068361613,0.0,4920933.583755451,0.0,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,137392035.9995478,0.0,28186614.07570998,0.0 - 09/14 14:00:00,7921145.3392308,0.0,10613977.971444374,0.0,2336412.326887128,0.0,6362226.782647806,0.0,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,143012690.60706616,0.0,28186614.07570998,0.0 - 09/14 15:00:00,7975675.441710096,0.0,10672627.469143259,0.0,2736673.5807504856,0.0,6702136.397790231,0.0,7736.820520542294,7615.699151990761,7625.512757666354,9179.44221502791,143854021.61221243,0.0,28186614.07570998,0.0 - 09/14 16:00:00,6452484.98873844,0.0,9025576.316335505,0.0,2235839.2244178859,0.0,5775973.7824004809,0.0,18050.675032483014,17768.08834749939,17790.984342886222,21416.43688941499,293584138.9161133,0.0,28186614.07570998,0.0 - 09/14 17:00:00,7609233.996667335,0.0,10356704.807674336,0.0,1973642.6578427058,0.0,5702385.563657637,0.0,23208.010756049593,22844.685018213506,22874.122726568,27535.41885781927,372906021.51698336,0.0,35233267.594637479,0.0 - 09/14 18:00:00,10262888.581304178,0.0,13001761.206397415,0.0,4085259.762027289,0.0,8303508.738615476,0.0,18044.7654003487,17762.27123175858,17785.159731198037,21409.42533647215,305659256.40754327,0.0,14093307.03785499,0.0 - 09/14 19:00:00,0.0,0.0,1419636.1056674736,0.0,0.0,0.0,0.0,0.0,18040.66659721306,17758.23659615066,17781.119896550328,21404.56226301265,271364143.3762036,0.0,63419881.67034747,0.0 - 09/14 20:00:00,0.0,0.0,0.0,0.0,0.0,8666122.322407186,0.0,5275970.082749939,15475.247587152695,15232.979699271233,15252.60894841166,18360.790535639997,231557856.3737121,13942092.405157125,63419881.67034747,69761869.8373822 - 09/14 21:00:00,0.0,47138.380906748105,0.0,0.0,0.0,15187293.966797356,0.0,10904572.643169025,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,26139004.99087313,49326574.63249246,69761869.8373822 - 09/14 22:00:00,0.0,0.0,0.0,0.0,0.0,8098437.027875811,0.0,2697587.873672024,10335.09877655583,10173.300877198077,10186.41021374558,12262.20018340947,154645236.18327225,10796024.901547837,35233267.594637479,69761869.8373822 - 09/14 23:00:00,0.0,0.0,10023.330336977957,0.0,0.0,3211115.850121076,0.0,0.0,7755.335581682986,7633.924356395314,7643.761447106992,9201.409628308009,116053974.97891286,3211115.850121076,35233267.594637479,62010550.96656194 - 09/14 24:00:00,2035105.812110144,0.0,8659236.090781635,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,88095030.53882194,0.0,35233267.594637479,46507913.22492146 - 09/15 01:00:00,12673694.926079933,0.0,17160963.327521758,0.0,0.0,0.0,4079844.0493359507,0.0,2585.9867963510434,2545.502690638808,2548.782830669754,3068.174620685875,72608911.28098136,0.0,21139960.556782485,23253956.61246073 - 09/15 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.705474246016,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 - 09/15 03:00:00,0.0,0.0,1762739.7334295882,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,21115860.482449548,0.0,14093307.03785499,0.0 - 09/15 04:00:00,4893724.916080146,0.0,9301728.41528775,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,33549142.830305678,0.0,14093307.03785499,0.0 - 09/15 05:00:00,7533796.190429397,0.0,10837997.288561009,0.0,0.0,0.0,1579337.6054812424,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,39305008.768189478,0.0,14093307.03785499,0.0 - 09/15 06:00:00,6004825.36081977,0.0,8658416.056181713,0.0,0.0,0.0,2038367.947265596,0.0,1293.377181994282,1273.1291209308868,1274.7696777487939,1534.5426551939677,36054556.45339163,0.0,14093307.03785499,0.0 - 09/15 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2829801949552,1273.0363938783017,1274.676831207937,1534.4308883549703,19351537.53709019,0.0,14093307.03785499,15502637.741640486 - 09/15 08:00:00,0.0,0.0,134872.96926493877,0.0,0.0,3168255.5066704808,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19479080.902530374,3168255.5066704808,56373228.15141996,38756594.35410121 - 09/15 09:00:00,0.0,38765215.043384339,0.0,6724233.593443822,0.0,21930807.270657828,0.0,14668152.545026638,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,82088408.45251262,56373228.15141996,38756594.35410121 - 09/15 10:00:00,0.0,40191795.432833608,0.0,0.0,0.0,6563163.408936441,0.0,3429873.7453831008,7743.557242803722,7622.330409608453,7632.152560336326,9187.435078834598,115867711.04969916,50184832.58715315,28186614.07570998,0.0 - 09/15 11:00:00,0.0,36008374.4113663,0.0,536296.6734325034,0.0,3153858.628999529,0.0,737570.3596440451,7743.557242803722,7622.330409608453,7632.152560336326,9187.435078834598,115867711.04969916,40436100.07344238,28186614.07570998,0.0 - 09/15 12:00:00,0.0,21657921.11661192,0.0,0.0,0.0,631046.656160764,0.0,0.0,5159.459548313522,5078.687246588446,5085.231653476505,6121.501805395159,77201568.91358507,22288967.772772686,28186614.07570998,0.0 - 09/15 13:00:00,0.0,17088208.699050167,0.0,0.0,0.0,147246.91230284296,0.0,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,17235455.611353008,28186614.07570998,0.0 - 09/15 14:00:00,0.0,10879453.688298533,0.0,0.0,0.0,544050.1781829475,0.0,0.0,7742.156104017453,7620.951205911264,7630.771579394401,9185.772681149443,115846745.65370122,11423503.86648148,28186614.07570998,0.0 - 09/15 15:00:00,0.0,5666104.323254944,0.0,0.0,0.0,51243.530860928855,0.0,0.0,10326.537966037178,10164.874087765113,10177.972565534326,12252.043108515318,154517139.82026697,5717347.854115873,28186614.07570998,0.0 - 09/15 16:00:00,0.0,2624865.318103113,0.0,0.0,0.0,96162.11581366089,0.0,0.0,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,193146424.77533374,2721027.433916774,28186614.07570998,0.0 - 09/15 17:00:00,0.0,4649542.39639721,0.0,0.0,0.0,7480769.20862078,0.0,0.0,15489.806949055766,15247.311131647664,15266.95884830149,18378.06466277298,231775709.73040045,12130311.60501799,35233267.594637479,0.0 - 09/15 18:00:00,0.0,0.0,0.0,0.0,0.0,1984260.6283369773,0.0,0.0,18089.833124191788,17806.633411977527,17829.57907661415,21462.896470471194,270680191.49971678,1984260.6283369773,14093307.03785499,0.0 - 09/15 19:00:00,0.0,0.0,13702.266542130385,0.0,0.0,1144703.4624063373,0.0,0.0,10337.047499538165,10175.219092558591,10188.330900922372,12264.512268840683,154688097.40923745,1144703.4624063373,63419881.67034747,0.0 - 09/15 20:00:00,0.0,2290806.487768785,0.0,0.0,0.0,14751617.279337066,0.0,8896745.092091034,7757.96038905313,7636.508071916422,7646.348492009262,9204.523862057627,116083226.93413119,25939168.859196884,63419881.67034747,69761869.8373822 - 09/15 21:00:00,0.0,1444523.5609092983,0.0,0.0,0.0,12101527.257930872,0.0,8118326.219698988,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,77337197.57134766,21664377.038539158,49326574.63249246,69761869.8373822 - 09/15 22:00:00,0.0,0.0,0.0,0.0,0.0,9636994.87880439,0.0,5167945.867868679,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,14804940.74667307,35233267.594637479,69761869.8373822 - 09/15 23:00:00,0.0,0.0,0.0,0.0,0.0,7190813.230242452,0.0,1667207.0507030355,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,77341781.83134353,8858020.280945488,35233267.594637479,62010550.96656194 - 09/15 24:00:00,0.0,0.0,2057891.003730416,0.0,0.0,2520201.8030797478,0.0,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,79404119.23736929,2520201.8030797478,35233267.594637479,46507913.22492146 - 09/16 01:00:00,3876216.1580561038,0.0,11943293.176353082,0.0,0.0,0.0,0.0,0.0,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,54494777.70219399,0.0,21139960.556782485,23253956.61246073 - 09/16 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 - 09/16 03:00:00,0.0,0.0,387179.8993611444,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19741018.026357306,0.0,14093307.03785499,0.0 - 09/16 04:00:00,2903972.808310529,0.0,8591364.824626008,0.0,0.0,0.0,0.0,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,30848522.27833219,0.0,14093307.03785499,0.0 - 09/16 05:00:00,7269159.397407971,0.0,11302389.317026202,0.0,0.0,0.0,1104222.8203301549,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,39028446.435261297,0.0,14093307.03785499,0.0 - 09/16 06:00:00,5200217.159342198,0.0,8305241.733427056,0.0,0.0,0.0,1716142.3903957038,0.0,1293.4334147626676,1273.1844733647932,1274.825101509961,1534.6093732271204,34575389.78947731,0.0,14093307.03785499,0.0 - 09/16 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277615,5097.565661339508,6136.34924137175,77388817.95608746,0.0,14093307.03785499,15502637.741640486 - 09/16 08:00:00,0.0,3350547.106006069,201293.8459400204,0.0,0.0,7557097.105664121,0.0,0.0,20672.832675077905,20349.195623036438,20375.417638595936,24527.526838443104,309531195.8364922,10907644.21167019,56373228.15141996,38756594.35410121 - 09/16 09:00:00,0.0,44980183.70765048,0.0,13870154.201826835,0.0,26171317.55697898,0.0,23501892.883786587,18074.45441088164,17791.49545529315,17814.421613127484,21444.65021417028,270450078.0965012,108523548.35024289,56373228.15141996,38756594.35410121 - 09/16 10:00:00,0.0,38532418.54938313,0.0,154888.31600515423,0.0,5899246.976158907,0.0,3009980.368291517,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,47596534.20983871,28186614.07570998,0.0 - 09/16 11:00:00,0.0,45417014.44693293,0.0,411271.9121519729,0.0,3701701.129787596,0.0,1177620.3104432398,10311.294514484973,10149.869275290619,10162.94841782745,12233.957335126945,154289050.35382796,50707607.799315739,28186614.07570998,0.0 - 09/16 12:00:00,0.0,47934877.768565479,0.0,1257705.6819747582,0.0,2270408.086530663,0.0,1752625.5613854333,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,53215617.09845633,28186614.07570998,0.0 - 09/16 13:00:00,0.0,54332315.35713978,0.0,7905085.362893391,0.0,5465861.369335432,0.0,8256866.39802099,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,75960128.4873896,28186614.07570998,0.0 - 09/16 14:00:00,0.0,55787478.19660768,0.0,16418115.04728575,0.0,12253055.508330267,0.0,15262794.107304935,5141.547218035462,5061.055337182431,5067.577023555569,6100.249509275923,76933544.71697779,99721442.85952863,28186614.07570998,0.0 - 09/16 15:00:00,0.0,54284912.2718225,0.0,23067421.945263465,0.0,19587767.10275969,0.0,22480525.350343005,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,119420626.67018865,28186614.07570998,0.0 - 09/16 16:00:00,0.0,44250818.00266041,0.0,23842760.15903665,0.0,23765011.76428332,0.0,25167474.495253795,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,117026064.42123418,28186614.07570998,0.0 - 09/16 17:00:00,0.0,32210635.31915059,0.0,21617075.908324064,0.0,25501173.844158856,0.0,25102008.889280708,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,104430893.96091423,35233267.594637479,0.0 - 09/16 18:00:00,0.0,11980032.308226003,0.0,5026567.277680241,0.0,12792799.579935192,0.0,10732891.773128512,18066.681578123924,17783.844307682273,17806.760606231976,21435.428044810513,270333772.33265528,40532290.93896995,14093307.03785499,0.0 - 09/16 19:00:00,0.0,5025234.581525351,0.0,0.0,0.0,8910167.32803409,0.0,5218138.20868871,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,270711798.817736,19153540.118248155,63419881.67034747,0.0 - 09/16 20:00:00,0.0,18326886.884228365,0.0,5112264.41204975,0.0,24176897.084237867,0.0,22678607.69352674,10332.984438760539,10171.2196397554,10184.32629441603,12259.691602324594,154613599.11092366,70294656.07404273,63419881.67034747,69761869.8373822 - 09/16 21:00:00,0.0,13071304.263927672,0.0,4188532.5063014195,0.0,19803141.89610879,0.0,17489583.145809067,10336.416337538953,10174.597811518219,10187.708819297968,12263.763419221552,154664950.9952761,54552561.81214695,49326574.63249246,69761869.8373822 - 09/16 22:00:00,0.0,9090989.352934052,0.0,174683.64072527039,0.0,16566258.692275759,0.0,13615096.62022806,5164.129831680469,5083.2844157980439,5089.834746607853,6127.042918334366,77271450.88471464,39447028.30616313,35233267.594637479,69761869.8373822 - 09/16 23:00:00,0.0,6151834.037920625,0.0,0.0,0.0,14309201.051076359,0.0,10984848.247603877,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,31445883.336600856,35233267.594637479,62010550.96656194 - 09/16 24:00:00,0.0,150811.35148694737,0.0,0.0,0.0,8431636.220095728,0.0,3631484.034382688,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,38650625.798606548,12213931.605965361,35233267.594637479,46507913.22492146 - 09/17 01:00:00,0.0,0.0,3638461.643732665,0.0,0.0,0.0,0.0,0.0,2583.603097553539,2543.156309090657,2546.4334255694886,3065.3464530540138,42297203.07069638,0.0,21139960.556782485,23253956.61246073 - 09/17 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19328052.497917829,0.0,14093307.03785499,0.0 - 09/17 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 - 09/17 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.61869296661,1272.382506190439,1274.0221009190478,1533.642736915941,19341597.733171338,0.0,14093307.03785499,0.0 - 09/17 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 - 09/17 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8466656425079,1272.6069099115674,1274.2467938072753,1533.9132177936418,19345008.913757974,0.0,14093307.03785499,0.0 - 09/17 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5165.352334369118,5084.487779979044,5091.039661446424,6128.493371108651,77289743.32885166,0.0,14093307.03785499,15502637.741640486 - 09/17 08:00:00,0.0,24356434.19187708,0.0,5918331.245174117,0.0,32892502.803124697,0.0,24320407.931373087,20620.265017957285,20297.450922394528,20323.606259625776,24465.157319900325,308543326.2715605,87487676.17154898,56373228.15141996,38756594.35410121 - 09/17 09:00:00,0.0,67210527.88237474,0.0,34540963.23855511,0.0,41156671.41895568,0.0,44457507.09436607,18020.652052130536,17738.53538250511,17761.393295880138,21380.815769274388,269645027.3992446,187365669.6342516,56373228.15141996,38756594.35410121 - 09/17 10:00:00,0.0,56621059.43212101,0.0,15931033.32289982,0.0,18831636.97037767,0.0,19416879.701326178,12846.029945650505,12644.922950426826,12661.217224288906,15241.324167405095,192216579.4359768,110800609.42672467,28186614.07570998,0.0 - 09/17 11:00:00,0.0,65461987.68921064,0.0,16269155.57119134,0.0,16037430.32760514,0.0,17043013.80413533,10252.635849137645,10092.128922292068,10105.133660490625,12164.361067831254,153411334.19910575,114811587.39214245,28186614.07570998,0.0 - 09/17 12:00:00,0.0,73123551.44303982,0.0,18606696.952595034,0.0,14352064.54036557,0.0,18536095.14546078,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,124618408.08146119,28186614.07570998,0.0 - 09/17 13:00:00,0.0,81704678.44960465,0.0,28114783.52522554,0.0,18790063.980816138,0.0,27912935.310885248,5104.9494112337429,5025.0304758735069,5031.505740535867,6056.827608529854,76385927.65022269,156522461.2665316,28186614.07570998,0.0 - 09/17 14:00:00,0.0,83917862.59160015,0.0,41905478.91706412,0.0,30176543.299325549,0.0,40291346.12315983,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,196291230.93114967,28186614.07570998,0.0 - 09/17 15:00:00,0.0,77625517.58916725,0.0,47143971.72241637,0.0,38401218.22848542,0.0,46980835.31159355,7650.669482556924,7530.896824576512,7540.601153797639,9077.227297045561,114477821.1287159,210151542.8516626,28186614.07570998,0.0 - 09/17 16:00:00,0.0,64929962.48832917,0.0,46876532.39814481,0.0,41929376.65646987,0.0,48451475.3193609,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,202187346.86230476,28186614.07570998,0.0 - 09/17 17:00:00,0.0,49758774.61820055,0.0,42684831.9988859,0.0,41705531.98191776,0.0,46022559.79891712,12789.009165939984,12588.79484165989,12605.016788724946,15173.671188895534,191363371.1467933,180171698.39792133,35233267.594637479,0.0 - 09/17 18:00:00,0.0,26579363.46629526,0.0,21072744.998223206,0.0,25329998.279591975,0.0,27714478.99742714,17954.826756676088,17673.7405943307,17696.515013007698,21302.716568923686,268660076.15857747,100696585.74153759,14093307.03785499,0.0 - 09/17 19:00:00,0.0,22789529.94434629,0.0,16280203.280019237,0.0,23968663.89383188,0.0,25357441.909279918,17972.968997719225,17691.598815205874,17714.39624602322,21324.241645389455,268931540.535616,88395839.02747733,63419881.67034747,0.0 - 09/17 20:00:00,0.0,35140312.874327529,0.0,28842578.16372991,0.0,38544297.18038425,0.0,42389466.04370159,10286.122318949298,10125.091155171925,10138.138368571932,12204.091486005642,153912395.98331569,144916654.26214329,63419881.67034747,69761869.8373822 - 09/17 21:00:00,0.0,25334842.409417418,0.0,19850962.232882456,0.0,30301119.027113018,0.0,32233137.307393545,10300.183598590404,10138.93230285712,10151.997351988657,12220.774657547772,154122796.47954227,107720060.97680643,49326574.63249246,69761869.8373822 - 09/17 22:00:00,0.0,18143737.244309866,0.0,13300041.84065454,0.0,24311123.614182727,0.0,24741664.41956834,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,80496567.11871547,35233267.594637479,69761869.8373822 - 09/17 23:00:00,0.0,13123431.384412755,0.0,8135113.053718314,0.0,20177141.32175904,0.0,19584720.119616599,5154.476170632303,5073.7818846144759,5080.319970442952,6115.589218003614,77127002.07729604,61020405.87950671,35233267.594637479,62010550.96656194 - 09/17 24:00:00,0.0,6920463.73592424,0.0,1376621.2207485766,0.0,14794040.666197077,0.0,13056620.971874599,2576.938505666696,2536.596052633081,2539.864715551875,3057.4391691833868,38559018.39492614,36147746.594744499,35233267.594637479,46507913.22492146 - 09/18 01:00:00,0.0,0.0,0.0,0.0,0.0,3408974.242569941,0.0,327722.7788504969,2578.390998612566,2538.025806530921,2541.296311833544,3059.1624966185966,38580752.20894426,3736697.021420438,21139960.556782485,23253956.61246073 - 09/18 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,0.0,14093307.03785499,0.0 - 09/18 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 - 09/18 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 - 09/18 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 - 09/18 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,0.0,14093307.03785499,0.0 - 09/18 07:00:00,0.0,1510257.0117006836,0.0,0.0,0.0,7208177.482060265,0.0,2957108.888983243,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885577,77108935.79158244,11675543.382744194,14093307.03785499,15502637.741640486 - 09/18 08:00:00,0.0,63765525.93980415,0.0,37699028.133866179,0.0,46441062.7222264,0.0,50372834.058268938,20572.244637898595,20250.18231034385,20276.276737143864,24408.182972011284,307824791.96663138,198278450.85416565,56373228.15141996,38756594.35410121 - 09/18 09:00:00,0.0,90551260.70944172,0.0,46592878.40875639,0.0,48595615.58889517,0.0,55074718.46106212,17967.045736935524,17685.768284174726,17708.55820175773,21317.213922574356,268842910.1235924,240814473.1681554,56373228.15141996,38756594.35410121 - 09/18 10:00:00,0.0,79882136.92653492,0.0,31403865.63767362,0.0,26784726.141400685,0.0,31331491.95052191,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,169402220.65613113,28186614.07570998,0.0 - 09/18 11:00:00,0.0,86968189.32348572,0.0,28962992.917752178,0.0,22121676.125743018,0.0,26481071.656022178,10222.891663299812,10062.850387232298,10075.817397050034,12129.07072674004,152966268.62755988,164533930.0230031,28186614.07570998,0.0 - 09/18 12:00:00,0.0,82517610.0544206,0.0,20321429.705734549,0.0,14797821.367408198,0.0,19760151.253506975,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,137397012.38107033,28186614.07570998,0.0 - 09/18 13:00:00,0.0,87986781.7290606,0.0,29639460.856989467,0.0,19864182.314002739,0.0,29929915.6376844,5094.625012267227,5014.867707298828,5021.329876196587,6044.578103262622,76231442.51649095,167420340.5377372,28186614.07570998,0.0 - 09/18 14:00:00,0.0,93363095.10841209,0.0,44499420.57417384,0.0,31364626.550353163,0.0,42252227.38545667,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,211479369.61839576,28186614.07570998,0.0 - 09/18 15:00:00,0.0,89026564.1159288,0.0,49624018.38495184,0.0,38554888.86907546,0.0,48243855.27005066,7648.948694358726,7529.202975638569,7538.905122162453,9075.185647534923,114452072.78290083,225449326.64000679,28186614.07570998,0.0 - 09/18 16:00:00,0.0,70586002.71845944,0.0,46306344.86137615,0.0,39972694.08189851,0.0,47165436.52305045,12745.358478580561,12545.827513954106,12561.994093231831,15121.881314592752,190710221.0412933,204030478.18478454,28186614.07570998,0.0 - 09/18 17:00:00,0.0,47210564.36977394,0.0,36483062.50749658,0.0,34501561.16161694,0.0,38586457.59225808,12789.009165939984,12588.79484165989,12605.016788724946,15173.671188895534,191363371.1467933,156781645.63114555,35233267.594637479,0.0 - 09/18 18:00:00,0.0,21910219.408998204,0.0,15556272.965233362,0.0,17686489.1941691,0.0,18855937.54757977,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,74008919.11598043,14093307.03785499,0.0 - 09/18 19:00:00,0.0,19802585.138929499,0.0,12400078.71264999,0.0,21821489.55998733,0.0,21949624.777949595,17932.253521520415,17651.52074738242,17674.266533518694,21275.934287084838,268322310.32222293,75973778.18951641,63419881.67034747,0.0 - 09/18 20:00:00,0.0,24942247.046486685,0.0,17806512.03914275,0.0,31431241.9926546,0.0,31982196.070130964,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,106162197.14841502,63419881.67034747,69761869.8373822 - 09/18 21:00:00,0.0,14499256.575412948,0.0,6973689.148614184,0.0,23299320.018187617,0.0,21498782.44424111,10311.294514484973,10149.869275290619,10162.94841782745,12233.957335126945,154289050.35382796,66271048.18645586,49326574.63249246,69761869.8373822 - 09/18 22:00:00,0.0,6779910.233830217,0.0,100286.33380778149,0.0,17354012.153557619,0.0,14292281.89298092,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,38526490.614176537,35233267.594637479,69761869.8373822 - 09/18 23:00:00,0.0,2185938.305342828,0.0,0.0,0.0,13784000.444193142,0.0,9981099.746566598,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,25951038.49610257,35233267.594637479,62010550.96656194 - 09/18 24:00:00,0.0,0.0,0.0,0.0,0.0,8589511.119003492,0.0,4047650.953111269,2579.729774156761,2539.343623294223,2542.6158267382527,3060.7509026975797,38600784.45679253,12637162.07211476,35233267.594637479,46507913.22492146 - 09/19 01:00:00,0.0,0.0,2900422.497205328,0.0,0.0,0.0,0.0,0.0,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,41536147.93956265,0.0,21139960.556782485,23253956.61246073 - 09/19 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,19347204.489021865,0.0,14093307.03785499,0.0 - 09/19 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 - 09/19 04:00:00,233753.58524697083,0.0,5445607.688472712,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,25032036.174216644,0.0,14093307.03785499,0.0 - 09/19 05:00:00,9837395.571308822,0.0,13957849.984929886,0.0,0.0,0.0,329934.8173317586,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,43474431.38338818,0.0,14093307.03785499,0.0 - 09/19 06:00:00,14933068.55420423,0.0,19833105.58244875,0.0,0.0,0.0,11182328.928701563,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,65285369.30519803,0.0,14093307.03785499,0.0 - 09/19 07:00:00,10849566.99264247,0.0,16034383.54588295,0.0,660379.7269736125,0.0,7406552.786027975,0.0,5166.954743829851,5086.06510342074,5092.61901743037,6130.394568766083,112264603.41193637,0.0,14093307.03785499,15502637.741640486 - 09/19 08:00:00,18541894.14312427,0.0,25479769.794864246,0.0,13461031.06999704,0.0,19930715.959141226,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,386579049.9848913,0.0,56373228.15141996,38756594.35410121 - 09/19 09:00:00,28795215.73493026,0.0,39688813.12371627,0.0,23302600.04839571,0.0,34975331.5412674,0.0,18085.565836610887,17802.43292957977,17825.37318146609,21457.833496648836,397378300.0478097,0.0,56373228.15141996,38756594.35410121 - 09/19 10:00:00,17371455.368106475,0.0,30578891.541809307,0.0,19023066.73187113,0.0,28709497.647594014,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,289110438.90458908,0.0,28186614.07570998,0.0 - 09/19 11:00:00,9840567.081526228,0.0,27664366.43372859,0.0,17880463.85033066,0.0,26905703.607978796,0.0,10339.542723066841,10177.675252897441,10190.790226274516,12267.47275630892,237002832.42433606,0.0,28186614.07570998,0.0 - 09/19 12:00:00,11769838.101673492,0.0,28622971.17633933,0.0,18973992.947959477,0.0,27941224.015564056,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,164632076.58503349,0.0,28186614.07570998,0.0 - 09/19 13:00:00,9833313.621834763,0.0,26182078.903098216,0.0,17583917.158742366,0.0,25500400.36456732,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,156463424.56961227,0.0,28186614.07570998,0.0 - 09/19 14:00:00,5697587.615795026,0.0,21439455.420300899,0.0,13754211.740172577,0.0,20765563.793743846,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,139064925.1178181,0.0,28186614.07570998,0.0 - 09/19 15:00:00,54942.92028447962,0.0,18392504.355280464,0.0,10669618.576492267,0.0,17166706.59798509,0.0,7758.299015660935,7636.84139726151,7646.68224687808,9204.925629601616,162372066.29189004,0.0,28186614.07570998,0.0 - 09/19 16:00:00,4796104.929616494,0.0,18872071.37404597,0.0,8943610.720158913,0.0,16170808.311133199,0.0,12932.90534182834,12730.43829607091,12746.842765184221,15344.39850873235,242299101.01749153,0.0,28186614.07570998,0.0 - 09/19 17:00:00,10252224.263113926,0.0,20701340.65921224,0.0,7499301.212716257,0.0,15857291.969718369,0.0,12928.085613428424,12725.694021418214,12742.092377049397,15338.680084966194,247754545.6534648,0.0,35233267.594637479,0.0 - 09/19 18:00:00,25355141.456960076,0.0,34635943.35152693,0.0,16345438.304467403,0.0,27241624.242142388,0.0,18094.19976536697,17810.931692570517,17833.8828959804,21468.07732354061,374323677.39394739,0.0,14093307.03785499,0.0 - 09/19 19:00:00,22956747.012733137,0.0,32983644.6579468,0.0,10768272.91658409,0.0,21298817.594010079,0.0,18070.33129092107,17787.436883544724,17810.357811495112,21439.758289726222,358395865.57374778,0.0,63419881.67034747,0.0 - 09/19 20:00:00,14076502.211163089,0.0,23973618.151499075,0.0,894691.8447802775,0.0,9165118.948983949,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,202470385.16494087,0.0,63419881.67034747,69761869.8373822 - 09/19 21:00:00,19544700.390188815,0.0,29178596.572370177,0.0,4999679.982820908,0.0,14591766.541545727,0.0,10310.46412071993,10149.05188149488,10162.129970736374,12232.9721046228,222591368.56619195,0.0,49326574.63249246,69761869.8373822 - 09/19 22:00:00,25349727.79327247,0.0,34971244.43131836,0.0,9391450.158945892,0.0,20432045.30931466,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,167227999.02578265,0.0,35233267.594637479,69761869.8373822 - 09/19 23:00:00,30394680.736933449,0.0,40036859.29925886,0.0,13069975.558766289,0.0,25313038.828177856,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,185817466.6069903,0.0,35233267.594637479,62010550.96656194 - 09/19 24:00:00,36493656.99655476,0.0,46116215.75213029,0.0,18167772.336001524,0.0,31759247.030978815,0.0,2570.498179023578,2530.2565505050026,2533.517044328245,3049.797967463708,170999543.18441934,0.0,35233267.594637479,46507913.22492146 - 09/20 01:00:00,45476323.03950972,0.0,54733640.34643795,0.0,26592774.529630048,0.0,41914146.734241638,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,207185280.520113,0.0,21139960.556782485,23253956.61246073 - 09/20 02:00:00,7013829.87250001,0.0,13011278.051943122,0.0,0.0,0.0,1024852.6403223366,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,40320843.39799829,0.0,14093307.03785499,0.0 - 09/20 03:00:00,31996424.735194874,0.0,40296610.59658666,0.0,13190874.976756504,0.0,25970657.071482418,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,130667956.72399745,0.0,14093307.03785499,0.0 - 09/20 04:00:00,32989903.756018294,0.0,40271885.98127898,0.0,16847455.85733375,0.0,28944318.998601218,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,138319611.328255,0.0,14093307.03785499,0.0 - 09/20 05:00:00,30893456.88373045,0.0,37678329.94979902,0.0,15789619.356845372,0.0,26972730.253056509,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,130627165.54623798,0.0,14093307.03785499,0.0 - 09/20 06:00:00,30906338.36265487,0.0,37577939.89732603,0.0,15755990.600883276,0.0,26879383.30067113,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,130370380.20749878,0.0,14093307.03785499,0.0 - 09/20 07:00:00,4506497.952308884,0.0,10115814.547263485,0.0,369838.05846643805,0.0,2173306.176431955,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,94438690.9208328,0.0,14093307.03785499,15502637.741640486 - 09/20 08:00:00,11099254.210445285,0.0,13631791.558233845,0.0,7683317.815976827,0.0,13304965.640811442,0.0,20675.661549231234,20351.980210637168,20378.20581442201,24530.883189641263,355091559.9756214,0.0,56373228.15141996,38756594.35410121 - 09/20 09:00:00,0.0,14264013.961242373,10548441.904788966,0.0,2293459.5717493609,0.0,5778576.101253779,0.0,18107.02587891171,17823.557010915007,17846.524483336216,21483.295017658587,289557926.18474957,14264013.961242373,56373228.15141996,38756594.35410121 - 09/20 10:00:00,0.0,15318396.436807314,10909415.770467818,0.0,620716.0773173586,0.0,5884687.349409698,0.0,12933.589913508365,12731.112150653576,12747.517488097297,15345.210726898993,210941568.20216454,15318396.436807314,28186614.07570998,0.0 - 09/20 11:00:00,0.0,309264.0836243982,15959795.056943685,0.0,9047246.785818518,0.0,14867644.387100619,0.0,10347.46731810134,10185.475786918345,10198.600812079689,12276.874985816963,194704994.28036166,309264.0836243982,28186614.07570998,0.0 - 09/20 12:00:00,0.0,0.0,12859360.607853571,0.0,7530196.994975331,0.0,13043966.59315077,0.0,5173.612024862307,5092.618163476719,5099.180521773088,6138.293178587051,110846858.19529666,0.0,28186614.07570998,0.0 - 09/20 13:00:00,0.0,0.0,10917613.935071463,0.0,6558505.442281795,0.0,11118145.878030535,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,106005758.71213538,0.0,28186614.07570998,0.0 - 09/20 14:00:00,0.0,0.0,15390443.350357594,0.0,7532264.738845869,0.0,13083676.763643522,0.0,5173.131920779821,5092.1455755132069,5098.707324831749,6137.723553419881,113412535.00120774,0.0,28186614.07570998,0.0 - 09/20 15:00:00,5620641.38506058,0.0,17407636.44740738,0.0,8191980.612130791,0.0,14348630.575774702,0.0,7759.852619251282,7638.370678897825,7648.213499149874,9206.768920956867,161680429.6060945,0.0,28186614.07570998,0.0 - 09/20 16:00:00,7291225.473302275,0.0,16581778.36104337,0.0,7422405.939889941,0.0,13433720.629497163,0.0,12933.534074326944,12731.057185644957,12747.462452260655,15345.14447584175,238255043.88080026,0.0,28186614.07570998,0.0 - 09/20 17:00:00,11093546.147789613,0.0,19365318.1943187,0.0,7185074.131192651,0.0,13955696.507459896,0.0,12931.566881634291,12729.120789720886,12745.523561092792,15342.810476804278,245096113.13406898,0.0,35233267.594637479,0.0 - 09/20 18:00:00,16707819.760916332,0.0,23986502.01712869,0.0,10107097.151220868,0.0,17995057.62826627,0.0,18101.25516585144,17817.876639444217,17840.836792127004,21476.448286894236,339647577.341073,0.0,14093307.03785499,0.0 - 09/20 19:00:00,10514986.096257709,0.0,18615543.93833997,0.0,702668.0327816635,0.0,7614817.28690273,0.0,18103.670666797374,17820.254325272235,17843.217541845897,21479.31418656125,308335259.54799839,0.0,63419881.67034747,0.0 - 09/20 20:00:00,592707.6848872308,0.0,7073346.570586357,0.0,0.0,0.0,0.0,0.0,10345.253505307433,10183.296631776711,10196.418848874233,12274.248381443422,162463236.77812005,0.0,63419881.67034747,69761869.8373822 - 09/20 21:00:00,568074.0790459534,0.0,7488919.480032577,0.0,0.0,0.0,0.0,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,162839931.1747921,0.0,49326574.63249246,69761869.8373822 - 09/20 22:00:00,4735416.57916033,0.0,10935577.408562892,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,93071682.62365337,0.0,35233267.594637479,69761869.8373822 - 09/20 23:00:00,6063312.766396465,0.0,11895295.938377906,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,95347426.66086182,0.0,35233267.594637479,62010550.96656194 - 09/20 24:00:00,9042415.627132798,0.0,14603256.874979167,0.0,0.0,0.0,2237605.0868299298,0.0,2586.159332960656,2545.6725261556105,2548.9528850369549,3068.379328787053,64580268.25152688,0.0,35233267.594637479,46507913.22492146 - 09/21 01:00:00,18710742.54544995,0.0,24178173.95652601,0.0,2815271.5128960318,0.0,14231153.781764456,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,98642008.79629496,0.0,21139960.556782485,23253956.61246073 - 09/21 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.156688163429,1272.912078972089,1274.5523561092792,1534.2810476804276,19349647.81533081,0.0,14093307.03785499,0.0 - 09/21 03:00:00,0.0,0.0,2501614.674141835,0.0,0.0,0.0,0.0,0.0,1293.156688163429,1272.912078972089,1274.5523561092792,1534.2810476804278,21851262.489472648,0.0,14093307.03785499,0.0 - 09/21 04:00:00,2573640.495984588,0.0,7072091.97482624,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,28991507.808873103,0.0,14093307.03785499,0.0 - 09/21 05:00:00,5984571.20223286,0.0,9941252.41457991,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,35273028.10583463,0.0,14093307.03785499,0.0 - 09/21 06:00:00,7046799.120063383,0.0,10785001.805822999,0.0,0.0,0.0,2828462.2400875149,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,40012537.868256438,0.0,14093307.03785499,0.0 - 09/21 07:00:00,0.0,0.0,376043.64634295649,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19726705.5432467,0.0,14093307.03785499,15502637.741640486 - 09/21 08:00:00,8700911.827447165,0.0,11287789.009964263,0.0,1966653.2240655798,0.0,9321372.376862605,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,108613924.00968728,0.0,56373228.15141996,38756594.35410121 - 09/21 09:00:00,0.0,34559858.107559207,0.0,2470811.6232232546,0.0,8794699.941442363,0.0,6341547.157825021,12907.06204221218,12704.999578131303,12721.371266860075,15313.736420237172,193129809.50678665,52166916.83004984,56373228.15141996,38756594.35410121 - 09/21 10:00:00,0.0,32515179.860091315,0.0,4298855.545459502,0.0,2889154.145638259,0.0,939031.2710862778,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,40642220.82227535,28186614.07570998,0.0 - 09/21 11:00:00,0.0,48648345.4330013,0.0,1841953.8360814059,0.0,3558913.6057815176,0.0,1762758.4139343226,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192305042.78522266,55811971.288798559,28186614.07570998,0.0 - 09/21 12:00:00,0.0,56951534.346114989,0.0,9359262.30987425,0.0,6244545.37906401,0.0,7157200.134886142,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,79712542.16993939,28186614.07570998,0.0 - 09/21 13:00:00,0.0,49214787.63147946,0.0,20450386.648902894,0.0,12560619.161300434,0.0,16273554.279666197,7694.925752861181,7574.460254713157,7584.220719860442,9129.735672395867,115140032.63939032,98499347.72134897,28186614.07570998,0.0 - 09/21 14:00:00,0.0,70698839.12796295,0.0,30322600.246407816,0.0,20869170.40724128,0.0,27001429.3858694,7690.858948180817,7570.457116618725,7580.212423313984,9124.910563882095,115079180.58718422,148892039.16748146,28186614.07570998,0.0 - 09/21 15:00:00,0.0,52283407.92279555,0.0,28433953.61309672,0.0,22164373.26010371,0.0,26086017.696832189,7702.700999022526,7582.113777945375,7591.884105438524,9138.960705166912,115256374.515264,128967752.49282818,28186614.07570998,0.0 - 09/21 16:00:00,0.0,22455914.4999322,0.0,11978005.933212065,0.0,12412989.23920194,0.0,12591918.144182336,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,59438827.816528547,28186614.07570998,0.0 - 09/21 17:00:00,0.0,13769562.330186643,0.0,5125250.636301348,0.0,9580171.958038498,0.0,8372336.63567297,23133.495674625246,22771.336484289634,22800.679675571635,27447.00955812481,346149077.0134008,36847321.560199458,35233267.594637479,0.0 - 09/21 18:00:00,0.0,1950564.1978576007,0.0,0.0,0.0,1318838.7304811723,0.0,297118.4927551575,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,3566521.42109393,14093307.03785499,0.0 - 09/21 19:00:00,0.0,7656325.3844750919,0.0,0.0,0.0,10718003.933683992,0.0,6781659.827712358,18058.108419097323,17775.405363059555,17798.310787167768,21425.256318883054,270205491.19754776,25155989.145871447,63419881.67034747,0.0 - 09/21 20:00:00,0.0,22242605.742484698,0.0,12625290.125873302,0.0,27188121.727249,0.0,26800980.67587763,15488.474450654618,15245.999493757563,15265.64552023209,18376.48370428461,231755771.40814395,88856998.27148462,63419881.67034747,69761869.8373822 - 09/21 21:00:00,0.0,16769608.11579359,0.0,9376649.215247177,0.0,22799123.807144047,0.0,21544339.85308525,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,70489720.99127005,49326574.63249246,69761869.8373822 - 09/21 22:00:00,0.0,9341942.71409988,0.0,1873973.8668524952,0.0,16502317.908025772,0.0,13907967.74115298,10333.707608694891,10171.931488329525,10185.039060279698,12260.54961584661,154624419.98334263,41626202.23013112,35233267.594637479,69761869.8373822 - 09/21 23:00:00,0.0,4513971.285623761,0.0,0.0,0.0,12269052.249661524,0.0,8957190.115119869,7751.825070850429,7630.468803264726,7640.301441143494,9197.244541209617,115991423.48328577,25740213.650405155,35233267.594637479,62010550.96656194 - 09/21 24:00:00,0.0,0.0,0.0,0.0,0.0,5883902.537518697,0.0,1419893.0734179784,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,7303795.610936676,35233267.594637479,46507913.22492146 - 09/22 01:00:00,0.0,0.0,3762576.4817781208,0.0,0.0,0.0,0.0,0.0,2585.6933312850158,2545.2138198231348,2548.4935876145507,3067.8264355872836,42452594.30929407,0.0,21139960.556782485,23253956.61246073 - 09/22 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.7054742460162,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 - 09/22 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2829801949552,1273.0363938783017,1274.6768312079374,1534.4308883549703,19351537.53709019,0.0,14093307.03785499,0.0 - 09/22 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4149098055607,1273.1662581062417,1274.80686277919,1534.5874178018908,19353511.61457438,0.0,14093307.03785499,0.0 - 09/22 05:00:00,0.0,0.0,2722156.426094153,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,22076034.10981198,0.0,14093307.03785499,0.0 - 09/22 06:00:00,0.0,0.0,4672272.379600911,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,24026125.252857809,0.0,14093307.03785499,0.0 - 09/22 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,19353882.599153796,0.0,14093307.03785499,15502637.741640486 - 09/22 08:00:00,7677115.153760381,0.0,10670126.952308935,0.0,0.0,0.0,5370164.032222748,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,43069680.84057459,0.0,56373228.15141996,38756594.35410121 - 09/22 09:00:00,0.0,30451617.417410088,881765.3189118079,0.0,0.0,4622742.347124255,0.0,577669.5044318845,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,78255254.93599265,35652029.26896623,56373228.15141996,38756594.35410121 - 09/22 10:00:00,0.0,50594424.98174163,0.0,0.0,0.0,2356851.7107980467,0.0,987036.5419467258,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,115976224.28089114,53938313.23448639,28186614.07570998,0.0 - 09/22 11:00:00,0.0,54069700.91996146,0.0,0.0,0.0,260670.89311960108,0.0,0.0,7748.612221184052,7627.306251359233,7637.134813967075,9193.432617722472,115943349.25523819,54330371.81308106,28186614.07570998,0.0 - 09/22 12:00:00,0.0,51015663.18883374,0.0,0.0,0.0,0.0,0.0,0.0,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,51015663.18883374,28186614.07570998,0.0 - 09/22 13:00:00,0.0,42699563.6699663,0.0,0.0,0.0,0.0,0.0,0.0,5164.129831680469,5083.2844157980439,5089.834746607853,6127.042918334366,77271450.88471464,42699563.6699663,28186614.07570998,0.0 - 09/22 14:00:00,0.0,46531295.61030564,0.0,7482153.496525863,0.0,5700330.053071836,0.0,5595352.7099842899,7742.863533481682,7621.647560435259,7631.468831242276,9186.61201920451,115857330.99970941,65309131.86988763,28186614.07570998,0.0 - 09/22 15:00:00,0.0,45661752.443413678,0.0,13715697.54861591,0.0,11625210.395509575,0.0,12158504.184684484,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,83161164.57222365,28186614.07570998,0.0 - 09/22 16:00:00,0.0,39539594.016521748,0.0,13490346.644232773,0.0,15093039.779487789,0.0,14333478.828957182,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,82456459.26919949,28186614.07570998,0.0 - 09/22 17:00:00,0.0,25178569.518361197,0.0,8419406.533467802,0.0,14645228.581161265,0.0,11544466.28275877,15506.490361613145,15263.73336226917,15283.402240643332,18397.8588949273,232025345.4940306,59787670.91574902,35233267.594637479,0.0 - 09/22 18:00:00,0.0,2510987.00585041,804769.2221880714,0.0,0.0,1934397.4531328246,0.0,160782.99100943833,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,271755940.5038363,4606167.449992673,14093307.03785499,0.0 - 09/22 19:00:00,0.0,0.0,3657304.1942688205,0.0,0.0,0.0,0.0,0.0,10347.34292994694,10185.353346083706,10198.478213467537,12276.727404019955,158485751.01093415,0.0,63419881.67034747,0.0 - 09/22 20:00:00,0.0,0.0,0.0,0.0,0.0,4743970.631498864,0.0,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,116066632.52922243,4743970.631498864,63419881.67034747,69761869.8373822 - 09/22 21:00:00,0.0,0.0,4546196.992753885,0.0,0.0,3075646.9581772058,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,81945397.53422788,3075646.9581772058,49326574.63249246,69761869.8373822 - 09/22 22:00:00,0.0,0.0,10003050.159055308,0.0,0.0,0.0,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,87374061.20513858,0.0,35233267.594637479,69761869.8373822 - 09/22 23:00:00,4014630.3784778558,0.0,15394060.315920307,0.0,0.0,0.0,604107.36205836,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,97360263.01583046,0.0,35233267.594637479,62010550.96656194 - 09/22 24:00:00,12433019.813482652,0.0,22495553.44287467,0.0,0.0,0.0,10231141.851329357,0.0,5165.850243891007,5084.977894634483,5091.530407664623,6129.084121749998,122456908.71227108,0.0,35233267.594637479,46507913.22492146 - 09/23 01:00:00,24040440.290107185,0.0,33811769.00203101,0.0,11092937.204440356,0.0,22728095.081896727,0.0,2581.2505367690716,2540.84057808414,2544.1147105072075,3062.555229486008,130296781.37592241,0.0,21139960.556782485,23253956.61246073 - 09/23 02:00:00,0.0,0.0,1701891.0547016019,0.0,0.0,0.0,0.0,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,21006574.51606713,0.0,14093307.03785499,0.0 - 09/23 03:00:00,11906712.773642894,0.0,22585610.64691285,0.0,0.0,0.0,7500311.411179686,0.0,1289.6415440962365,1269.4519651410179,1271.08778356837,1530.110463426002,61289685.15416928,0.0,14093307.03785499,0.0 - 09/23 04:00:00,19925355.01288994,0.0,27624691.49327273,0.0,6503009.859635142,0.0,17383911.40225877,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,90721545.90296486,0.0,14093307.03785499,0.0 - 09/23 05:00:00,23019676.01212156,0.0,30497714.639803459,0.0,10832987.103151726,0.0,20830088.466147685,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,104458349.30878547,0.0,14093307.03785499,0.0 - 09/23 06:00:00,23299093.80011678,0.0,30375942.97652134,0.0,11030750.403219667,0.0,20726502.39272165,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,104703172.40581225,0.0,14093307.03785499,0.0 - 09/23 07:00:00,1671394.7684376878,0.0,5410568.811588895,0.0,0.0,0.0,731244.3610952558,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,85039233.41276193,0.0,14093307.03785499,15502637.741640486 - 09/23 08:00:00,8898476.637870985,0.0,13368395.831110519,0.0,5603412.806434779,0.0,11464951.80163628,0.0,20679.085446133682,20355.350505794882,20381.58045254903,24534.94551261784,348758699.97859618,0.0,56373228.15141996,38756594.35410121 - 09/23 09:00:00,0.0,29727300.95504959,4127257.9605947688,0.0,0.0,0.0,0.0,0.0,18106.06747855967,17822.61361449927,17845.57987125791,21482.157912225288,275050365.91614648,29727300.95504959,56373228.15141996,38756594.35410121 - 09/23 10:00:00,0.0,39845313.0756624,2090048.0777610969,0.0,0.0,0.0,0.0,0.0,12934.244985178519,12731.756967054533,12748.16313541,15345.98794443001,195626598.99322415,39845313.0756624,28186614.07570998,0.0 - 09/23 11:00:00,0.0,51405294.147763419,5466872.558320153,0.0,0.0,0.0,2992839.400867018,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,163272012.2559087,51405294.147763419,28186614.07570998,0.0 - 09/23 12:00:00,0.0,57933398.87981565,6184093.079369981,0.0,562213.0197505582,0.0,4229439.0762402559,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,88372100.65927975,57933398.87981565,28186614.07570998,0.0 - 09/23 13:00:00,0.0,65166851.60820688,1210854.5358497329,0.0,28336.005479696905,0.0,0.0,0.0,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,78609199.88048683,65166851.60820688,28186614.07570998,0.0 - 09/23 14:00:00,0.0,68413952.53911573,0.0,0.0,0.0,0.0,0.0,0.0,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,68413952.53911573,28186614.07570998,0.0 - 09/23 15:00:00,0.0,65689453.40382307,0.0,9136034.023275495,0.0,9063411.703600444,0.0,9228982.925176427,7752.312253154214,7630.948358638661,7640.781614473476,9197.822564416165,115998713.24645706,93117882.05587545,28186614.07570998,0.0 - 09/23 16:00:00,0.0,53086215.02577795,0.0,13972478.071208764,0.0,17402322.008393554,0.0,16358802.160965328,12920.52042192369,12718.24726439777,12734.63602412246,15329.704274026939,193331188.74409513,100819817.26634559,28186614.07570998,0.0 - 09/23 17:00:00,0.0,33513932.871173897,0.0,9310897.326218166,0.0,17675719.610946739,0.0,14000856.863490293,12928.466656425078,12726.069099115672,12742.467938072752,15339.132177936419,193450089.1375797,74501406.67182909,35233267.594637479,0.0 - 09/23 18:00:00,0.0,6062991.763784956,0.0,0.0,0.0,3370695.042035382,0.0,779575.8543043104,18103.11533072459,17819.707683089266,17842.67019525868,21478.65530150937,270878934.6380949,10213262.660124649,14093307.03785499,0.0 - 09/23 19:00:00,0.0,1185890.9260250247,1387583.1670360699,0.0,0.0,151330.09995642649,0.0,0.0,18106.419341321656,17822.95996878407,17845.92667185556,21482.57538396095,272315956.08435609,1337221.0259814512,63419881.67034747,0.0 - 09/23 20:00:00,0.0,6763982.41597035,318662.83864742718,0.0,0.0,10281030.563059114,0.0,829235.2053522976,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,155092331.6095597,17874248.18438176,63419881.67034747,69761869.8373822 - 09/23 21:00:00,0.0,2635933.515450941,364730.86292032667,0.0,0.0,6927007.417937595,0.0,1010488.9592683234,10346.52533789809,10184.548553590901,10197.672383917463,12275.7573622634,155180943.9585318,10573429.892656859,49326574.63249246,69761869.8373822 - 09/23 22:00:00,0.0,0.0,5329541.501965557,0.0,0.0,2805453.2792884039,0.0,0.0,5172.024808126503,5091.055794915008,5097.616139940017,6136.410006517806,82719125.80016317,2805453.2792884039,35233267.594637479,69761869.8373822 - 09/23 23:00:00,0.0,0.0,9467126.589774596,0.0,0.0,23626.366992801188,0.0,0.0,5171.445745380808,5090.485797504622,5097.0454080297899,6135.722970674224,86848046.30749659,23626.366992801188,35233267.594637479,62010550.96656194 - 09/23 24:00:00,0.0,0.0,13212771.216394512,0.0,0.0,0.0,0.0,0.0,2586.182316961221,2545.695150337359,2548.9755383722706,3068.4065984263709,51910105.791144508,0.0,35233267.594637479,46507913.22492146 - 09/24 01:00:00,10593700.017002119,0.0,23011616.089974934,0.0,874442.5139208352,0.0,11167899.177593675,0.0,2584.747627715857,2544.2829214197724,2547.5614896535805,3066.7043944022018,84323524.95798065,0.0,21139960.556782485,23253956.61246073 - 09/24 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.141208321138,19310049.603588046,0.0,14093307.03785499,0.0 - 09/24 03:00:00,3186666.498278482,0.0,17270755.34262306,0.0,0.0,0.0,2394870.962884091,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323995,1526.4374564776468,42103020.849749099,0.0,14093307.03785499,0.0 - 09/24 04:00:00,13293647.782569766,0.0,23659885.26052462,0.0,0.0,0.0,13150380.107542089,0.0,1288.0509527375028,1267.8862747867293,1269.5200756622535,1528.2232874954689,69377163.2770915,0.0,14093307.03785499,0.0 - 09/24 05:00:00,16799704.882468769,0.0,26123970.23691771,0.0,8516496.344423518,0.0,16961923.17199583,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,87647446.97387514,0.0,14093307.03785499,0.0 - 09/24 06:00:00,17367785.218490248,0.0,26083493.26268485,0.0,9017376.849251263,0.0,17114538.768592799,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,88831251.10399404,0.0,14093307.03785499,0.0 - 09/24 07:00:00,438778.6171491287,0.0,2538073.5280238438,0.0,0.0,0.0,0.0,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,80180592.7784569,0.0,14093307.03785499,15502637.741640486 - 09/24 08:00:00,5076972.980617814,0.0,12770915.12317647,0.0,2828505.287888751,0.0,8936630.984455698,0.0,20688.797375095826,20364.910392697366,20391.152658341547,24546.468345604306,339181807.9543992,0.0,56373228.15141996,38756594.35410121 - 09/24 09:00:00,0.0,39256080.708158317,2647714.136931791,0.0,0.0,3607212.17087741,0.0,0.0,18106.65143974696,17823.18843366523,17846.155431137035,21482.850759882833,273579559.9688872,42863292.879035729,56373228.15141996,38756594.35410121 - 09/24 10:00:00,0.0,50821712.856931079,0.0,0.0,0.0,1330175.7887244337,0.0,1037081.6822517607,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,193433724.04270209,53188970.32790728,28186614.07570998,0.0 - 09/24 11:00:00,0.0,61324675.24866756,0.0,0.0,0.0,0.0,0.0,0.0,10334.412390214156,10172.625236362628,10185.733702277954,12261.385812216055,154634965.70785488,61324675.24866756,28186614.07570998,0.0 - 09/24 12:00:00,0.0,68587559.93536684,0.0,0.0,0.0,0.0,0.0,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77251923.80271465,68587559.93536684,28186614.07570998,0.0 - 09/24 13:00:00,0.0,76827628.60592169,0.0,936398.3511808389,0.0,1536967.7521519156,0.0,2289680.106079825,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,81590674.81533426,28186614.07570998,0.0 - 09/24 14:00:00,0.0,82176872.23714295,0.0,17401525.473843945,0.0,12642480.335555152,0.0,16450951.49804976,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,77080819.41157943,128671829.54459182,28186614.07570998,0.0 - 09/24 15:00:00,0.0,76080425.34183322,0.0,25745183.572754917,0.0,21012058.928981369,0.0,24331430.407933587,7727.08460400709,7606.115653045149,7615.9169094041849,9167.890921701672,115621229.11736915,147169098.2515031,28186614.07570998,0.0 - 09/24 16:00:00,0.0,61691026.67916621,0.0,26393781.538869494,0.0,25147619.721809593,0.0,26862856.682778457,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,140095284.62262375,28186614.07570998,0.0 - 09/24 17:00:00,0.0,42281406.16292095,0.0,20734622.514816595,0.0,24383943.048284618,0.0,23783074.780207576,12886.190426580759,12684.454711536184,12700.799926107378,15288.973045009036,192817505.19324009,111183046.50622972,35233267.594637479,0.0 - 09/24 18:00:00,0.0,11931688.455155379,0.0,2373412.8063172546,0.0,6489751.650627138,0.0,4899944.097998015,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,25694797.010097788,14093307.03785499,0.0 - 09/24 19:00:00,0.0,12630355.00913233,0.0,0.0,0.0,9893668.281833647,0.0,5557869.170145173,18077.3390285187,17794.334913702976,17817.26473046929,21448.07270288403,270493240.95207,28081892.461111148,63419881.67034747,0.0 - 09/24 20:00:00,0.0,23128828.01181522,0.0,8407291.155839395,0.0,22685993.7947698,0.0,21515489.231997104,10329.093011897265,10167.389133905615,10180.490852568486,12255.074572896214,154555371.25656329,75737602.19442153,63419881.67034747,69761869.8373822 - 09/24 21:00:00,0.0,12212475.532639314,0.0,1800978.9479394234,0.0,14653169.966134347,0.0,11532110.204344539,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,154822986.91350315,40198734.65105762,49326574.63249246,69761869.8373822 - 09/24 22:00:00,0.0,2769900.2990492174,0.0,0.0,0.0,7650028.339346295,0.0,2979331.738138916,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,77412482.99607985,13399260.376534429,35233267.594637479,69761869.8373822 - 09/24 23:00:00,0.0,0.0,0.0,0.0,0.0,2617507.676567102,0.0,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,77408106.54780574,2617507.676567102,35233267.594637479,62010550.96656194 - 09/24 24:00:00,0.0,0.0,10219004.674137311,0.0,0.0,0.0,0.0,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,48924354.47513123,0.0,35233267.594637479,46507913.22492146 - 09/25 01:00:00,6106195.990144682,0.0,18599949.735096147,0.0,0.0,0.0,4833781.242567351,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,68244663.13205737,0.0,21139960.556782485,23253956.61246073 - 09/25 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2288468269522,1271.998763164823,1273.6378634013755,1533.1801993525788,19335764.421884628,0.0,14093307.03785499,0.0 - 09/25 03:00:00,0.0,0.0,8342664.71984466,0.0,0.0,0.0,0.0,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,27692464.855213159,0.0,14093307.03785499,0.0 - 09/25 04:00:00,6314082.557908328,0.0,12964024.622523712,0.0,0.0,0.0,2486753.5551318756,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,41111569.331927958,0.0,14093307.03785499,0.0 - 09/25 05:00:00,7581507.537733639,0.0,13822520.94578537,0.0,0.0,0.0,5103383.784958501,0.0,1293.2630874441214,1273.0168125521933,1274.6572246492913,1534.4072863654588,45858652.14811734,0.0,14093307.03785499,0.0 - 09/25 06:00:00,7690796.180597027,0.0,13337188.011228303,0.0,0.0,0.0,5330041.7738408199,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,45707276.975483868,0.0,14093307.03785499,0.0 - 09/25 07:00:00,0.0,0.0,1060125.8581579398,0.0,0.0,0.0,0.0,0.0,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,78475279.88340736,0.0,14093307.03785499,15502637.741640486 - 09/25 08:00:00,7460413.805889763,0.0,11947082.662914478,0.0,2983287.4294593238,0.0,8815460.313313317,0.0,20692.527683119282,20368.582302052826,20394.829299326993,24550.894213679523,340830844.8050199,0.0,56373228.15141996,38756594.35410121 - 09/25 09:00:00,532692.4778866173,8106057.767810554,6666763.088358958,0.0,2681910.7050657046,0.0,5196591.862176487,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,285707121.45421418,8106057.767810554,56373228.15141996,38756594.35410121 - 09/25 10:00:00,0.0,34175455.72316434,0.0,0.0,0.0,0.0,0.0,0.0,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,34175455.72316434,28186614.07570998,0.0 - 09/25 11:00:00,0.0,46291922.50448022,0.0,0.0,0.0,0.0,0.0,0.0,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,46291922.50448022,28186614.07570998,0.0 - 09/25 12:00:00,0.0,43716519.787020388,0.0,0.0,0.0,0.0,0.0,0.0,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,43716519.787020388,28186614.07570998,0.0 - 09/25 13:00:00,0.0,38846472.19404719,0.0,6199983.526541594,0.0,3042782.443874593,0.0,2838031.281133573,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,50927269.44559695,28186614.07570998,0.0 - 09/25 14:00:00,0.0,58238521.61786908,0.0,15836601.248254518,0.0,10876391.58500199,0.0,13243493.513884984,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,98195007.96501057,28186614.07570998,0.0 - 09/25 15:00:00,0.0,49028648.0078446,0.0,17434005.293344756,0.0,14652098.247218389,0.0,16282969.683981736,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,97397721.23238947,28186614.07570998,0.0 - 09/25 16:00:00,0.0,25489722.61231851,0.0,10572328.386487976,0.0,10423096.698597745,0.0,10055005.32296919,12846.029945650505,12644.922950426826,12661.217224288906,15241.324167405095,192216579.4359768,56540153.02037342,28186614.07570998,0.0 - 09/25 17:00:00,0.0,18486631.312175398,0.0,6056275.963808973,0.0,10287998.714213549,0.0,8430626.986544658,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,43261532.97674257,35233267.594637479,0.0 - 09/25 18:00:00,0.0,1779792.9883629573,0.0,0.0,0.0,566328.917811098,0.0,0.0,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,2346121.9061740555,14093307.03785499,0.0 - 09/25 19:00:00,0.0,9990612.01728012,0.0,0.0,0.0,10733763.807334343,0.0,6794114.901842382,18046.76710660939,17764.24160093434,17787.132639395593,21411.800284540634,270035789.87332788,27518490.726456848,63419881.67034747,0.0 - 09/25 20:00:00,0.0,25503457.115708855,0.0,15179804.980802356,0.0,28727933.132782334,0.0,29166223.35019309,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,98577418.57948663,63419881.67034747,69761869.8373822 - 09/25 21:00:00,0.0,16708162.68651574,0.0,8003804.423555459,0.0,21757545.679136129,0.0,20551858.236393405,10329.093011897265,10167.389133905615,10180.490852568486,12255.074572896214,154555371.25656329,67021371.02560073,49326574.63249246,69761869.8373822 - 09/25 22:00:00,0.0,12366688.134625815,0.0,3653063.377693342,0.0,18103076.089237274,0.0,16321167.877551847,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,50443995.479108277,35233267.594637479,69761869.8373822 - 09/25 23:00:00,0.0,9197038.851604939,0.0,826018.2282608004,0.0,15295258.866917968,0.0,13233485.0372859,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,38551800.9840696,35233267.594637479,62010550.96656194 - 09/25 24:00:00,0.0,2544138.3427312199,0.0,0.0,0.0,9857406.617681105,0.0,6646618.283700183,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,19048163.244112508,35233267.594637479,46507913.22492146 - 09/26 01:00:00,0.0,0.0,0.0,0.0,0.0,419020.0817632945,0.0,0.0,2579.207931192116,2538.8299498785397,2542.1014914019435,3060.131755939999,38592976.062285359,419020.0817632945,21139960.556782485,23253956.61246073 - 09/26 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 - 09/26 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 - 09/26 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 09/26 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 09/26 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,19351117.024395307,0.0,14093307.03785499,0.0 - 09/26 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277615,5097.565661339508,6136.34924137175,77388817.95608746,0.0,14093307.03785499,15502637.741640486 - 09/26 08:00:00,0.0,20455792.959888814,0.0,0.0,0.0,17556286.82956696,0.0,7265224.156421071,20672.83267507791,20349.195623036438,20375.417638595936,24527.526838443104,309329901.9905522,45277303.94587684,56373228.15141996,38756594.35410121 - 09/26 09:00:00,0.0,58570098.36310265,0.0,18409283.485643094,0.0,26750629.958983825,0.0,26638248.099541874,18077.3390285187,17794.334913702973,17817.26473046929,21448.07270288403,270493240.95207,130368259.90727145,56373228.15141996,38756594.35410121 - 09/26 10:00:00,0.0,48909228.366669047,0.0,2259981.989548902,0.0,6601722.582834213,0.0,4069990.9598299337,12896.03965596058,12694.149749392695,12710.507457009717,15300.658779699996,192964880.31142677,61840923.8988821,28186614.07570998,0.0 - 09/26 11:00:00,0.0,53387368.80025264,0.0,809607.2327124022,0.0,3068594.875451409,0.0,907119.2252199026,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,58172690.133636359,28186614.07570998,0.0 - 09/26 12:00:00,0.0,44161169.880936179,0.0,877755.1628187401,0.0,1945112.8257790693,0.0,541669.8814431498,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,47525707.750977139,28186614.07570998,0.0 - 09/26 13:00:00,0.0,38801658.6521158,0.0,5516269.496531213,0.0,4489288.969079126,0.0,5287511.495988129,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,54094728.61371427,28186614.07570998,0.0 - 09/26 14:00:00,0.0,44403910.05458729,0.0,10673736.819680827,0.0,8200605.620781255,0.0,9515613.702185013,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,72793866.19723438,28186614.07570998,0.0 - 09/26 15:00:00,0.0,48177101.9062028,0.0,15190445.546097717,0.0,13213057.855531112,0.0,14658065.079943248,7717.897214500606,7597.072093835295,7606.861696645232,9156.990434756448,115483757.1830553,91238670.38777489,28186614.07570998,0.0 - 09/26 16:00:00,0.0,42782294.14592072,0.0,17179551.574604356,0.0,17992260.525305917,0.0,18479899.45639598,12868.468942155107,12667.010660255159,12683.333396385799,15267.947180208648,192552336.64441697,96434005.70222697,28186614.07570998,0.0 - 09/26 17:00:00,0.0,27644446.36355305,0.0,13326905.915367013,0.0,18149460.138086387,0.0,16683041.735386445,12878.474340011817,12676.859421741916,12693.194849006974,15279.818202836119,192702048.52894859,75803854.1523929,35233267.594637479,0.0 - 09/26 18:00:00,0.0,2615770.693899733,0.0,0.0,0.0,2301918.657922541,0.0,966583.3416828418,18092.95326899104,17809.704710327886,17832.654332645918,21466.59840317226,270726878.5744936,5884272.693505116,14093307.03785499,0.0 - 09/26 19:00:00,0.0,0.0,0.0,0.0,0.0,615505.2448562727,0.0,0.0,18105.568276640504,17822.12222767927,17845.087851235836,21481.565628203898,270915638.34153428,615505.2448562727,63419881.67034747,0.0 - 09/26 20:00:00,0.0,5021730.145738022,0.0,0.0,0.0,12612150.694153315,0.0,6117392.02594007,10344.637331842623,10182.690104622441,10195.811540147819,12273.517315148212,154787962.65033997,23751272.865831406,63419881.67034747,69761869.8373822 - 09/26 21:00:00,0.0,2197380.393747709,0.0,0.0,0.0,8787672.82628822,0.0,4547596.7573372269,10347.395988142816,10185.405573643628,10198.530508328,12276.790355544006,154829240.73237045,15532649.977373155,49326574.63249246,69761869.8373822 - 09/26 22:00:00,0.0,0.0,1855985.0810880773,0.0,0.0,2409563.0880423469,0.0,0.0,5172.933309137918,5091.950073173609,5098.511570567432,6137.487908288236,79259163.38128998,2409563.0880423469,35233267.594637479,69761869.8373822 - 09/26 23:00:00,0.0,0.0,7317337.149373621,0.0,0.0,0.0,0.0,0.0,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,84728036.75136148,0.0,35233267.594637479,62010550.96656194 - 09/26 24:00:00,1843699.9318443416,0.0,11114266.905164276,0.0,0.0,0.0,0.0,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,51663316.638002548,0.0,35233267.594637479,46507913.22492146 - 09/27 01:00:00,12005055.625792254,0.0,19809119.15541797,0.0,0.0,0.0,7767821.847733498,0.0,2586.581068365668,2546.087659214182,2549.3685530368445,3068.87970174647,78285297.76545112,0.0,21139960.556782485,23253956.61246073 - 09/27 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.0062020316255,1272.763948728752,1274.4040349850043,1534.1025016294516,19347396.0745494,0.0,14093307.03785499,0.0 - 09/27 03:00:00,1924405.6388383983,0.0,8180255.912311219,0.0,0.0,0.0,0.0,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,29427513.9897599,0.0,14093307.03785499,0.0 - 09/27 04:00:00,9600465.087238627,0.0,16635543.528004818,0.0,0.0,0.0,7343581.198575817,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,52903888.214965369,0.0,14093307.03785499,0.0 - 09/27 05:00:00,11959830.552471683,0.0,17889518.55931575,0.0,2304963.4386732738,0.0,9574299.181739083,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,61055698.972471628,0.0,14093307.03785499,0.0 - 09/27 06:00:00,12547708.727593149,0.0,18032488.26808879,0.0,4034070.4619334049,0.0,9956249.554914576,0.0,1290.7379493515048,1270.5312059674805,1272.1684151067937,1531.411306409016,63883972.96913518,0.0,14093307.03785499,0.0 - 09/27 07:00:00,0.0,0.0,643085.7224696141,0.0,0.0,0.0,0.0,0.0,5170.544336471639,5089.598500320083,5096.156967472263,6134.653483412389,78010517.55810458,0.0,14093307.03785499,15502637.741640486 - 09/27 08:00:00,2143480.787000907,5024485.369482862,8157355.994361013,0.0,0.0,0.0,3755563.7103779816,0.0,20690.50701061487,20366.593263553423,20392.837697748466,24548.496762886843,323650765.53703287,5024485.369482862,56373228.15141996,38756594.35410121 - 09/27 09:00:00,0.0,47631967.61951321,0.0,2613488.7872064069,0.0,12234764.405735176,0.0,10217078.513999483,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,270711798.817736,72697299.32645428,56373228.15141996,38756594.35410121 - 09/27 10:00:00,0.0,54208934.71245198,0.0,1629075.6436850937,0.0,4901652.3618354969,0.0,2910868.788006808,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,63650531.505979377,28186614.07570998,0.0 - 09/27 11:00:00,0.0,67002097.268985677,0.0,2693369.0819811418,0.0,4066442.360068267,0.0,2652608.14973879,10301.490574943315,10140.218818251411,10153.285525189345,12222.32533510015,154142352.9125432,76414516.86077386,28186614.07570998,0.0 - 09/27 12:00:00,0.0,73973823.51222314,0.0,3577393.4058141915,0.0,3443999.855690727,0.0,4239929.369811659,5145.26480966707,5064.714729223531,5071.241131096821,6104.66028983763,76989171.45537019,85235146.1435397,28186614.07570998,0.0 - 09/27 13:00:00,0.0,81198616.87006253,0.0,10666140.778389229,0.0,7158319.684127458,0.0,12000463.288119257,5140.776816583388,5060.296996508808,5066.817705682585,6099.335457361069,76922017.11408906,111023540.62069847,28186614.07570998,0.0 - 09/27 14:00:00,0.0,86491318.10237226,0.0,23576134.154191156,0.0,16920902.793827565,0.0,22679085.9332379,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,149667440.98362888,28186614.07570998,0.0 - 09/27 15:00:00,0.0,82919006.21572532,0.0,33150096.79429821,0.0,26713202.935391088,0.0,32431727.533731596,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,175214033.4791462,28186614.07570998,0.0 - 09/27 16:00:00,0.0,72243808.07825026,0.0,37500759.47672087,0.0,34157328.401504609,0.0,38772005.301358278,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,182673901.257834,28186614.07570998,0.0 - 09/27 17:00:00,0.0,51038790.83300076,0.0,31596217.826418979,0.0,32901621.416705178,0.0,35049384.9290933,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,150586015.0052182,35233267.594637479,0.0 - 09/27 18:00:00,0.0,18985635.26770315,0.0,5934237.800688651,0.0,11729545.983192122,0.0,10279388.1937729,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,46928807.24535683,14093307.03785499,0.0 - 09/27 19:00:00,0.0,21017518.06154485,0.0,7152871.465485795,0.0,17692979.705481028,0.0,16588872.316087183,18052.581214598682,17769.96468797844,17792.863101221497,21418.698501731786,270122787.0199095,62452241.548598859,63419881.67034747,0.0 - 09/27 20:00:00,0.0,33324552.31949567,0.0,20014893.643616339,0.0,32661298.479002187,0.0,33990025.68356363,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,119990770.12567781,63419881.67034747,69761869.8373822 - 09/27 21:00:00,0.0,28165510.908666545,0.0,16637027.60432094,0.0,28883377.22577224,0.0,29610770.278819838,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,103296686.01757956,49326574.63249246,69761869.8373822 - 09/27 22:00:00,0.0,21583333.023274959,0.0,11482309.104307838,0.0,23921602.34262757,0.0,23550772.066921869,5156.219173316969,5075.4976002669559,5082.03789697017,6117.657224154467,77153082.82095082,80538016.53713224,35233267.594637479,69761869.8373822 - 09/27 23:00:00,0.0,14197863.04548694,0.0,4506121.817247922,0.0,18544646.250301485,0.0,16687747.413141752,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,53936378.5261781,35233267.594637479,62010550.96656194 - 09/27 24:00:00,0.0,2498721.062102884,0.0,0.0,0.0,8753586.015227605,0.0,4404799.002759995,2585.5862705993747,2545.108435192499,2548.388067185062,3067.699412170528,38688415.86653087,15657106.080090484,35233267.594637479,46507913.22492146 - 09/28 01:00:00,0.0,0.0,1640332.8533403667,0.0,0.0,0.0,0.0,0.0,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,40315601.22112517,0.0,21139960.556782485,23253956.61246073 - 09/28 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.121765023421,1273.7610237604227,1533.3284573694473,19337634.183892404,0.0,14093307.03785499,0.0 - 09/28 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 - 09/28 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 - 09/28 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 09/28 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 - 09/28 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.61869296661,1272.382506190439,1274.0221009190478,1533.642736915941,19341597.733171338,0.0,14093307.03785499,15502637.741640486 - 09/28 08:00:00,0.0,0.0,4220078.815419733,0.0,0.0,0.0,0.0,0.0,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,81552554.31305778,0.0,56373228.15141996,38756594.35410121 - 09/28 09:00:00,0.0,22349199.625391749,0.0,1800481.751156513,0.0,9952210.509685155,0.0,3940535.86327386,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205004,193059925.18873818,38042427.74950728,56373228.15141996,38756594.35410121 - 09/28 10:00:00,0.0,22226968.94242602,0.0,3016095.1857789566,0.0,2625821.259645254,0.0,0.0,12883.17195585408,12681.483495531831,12697.824881387936,15285.391744713947,192772339.47895608,27868885.38785023,28186614.07570998,0.0 - 09/28 11:00:00,0.0,11530994.93200587,0.0,2491206.9031472785,0.0,2720973.4797883348,0.0,377711.4187948838,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,17120886.733736367,28186614.07570998,0.0 - 09/28 12:00:00,0.0,20510476.460884118,0.0,10910048.107709121,0.0,7186636.999841171,0.0,6642332.750995461,7717.897214500606,7597.072093835295,7606.861696645232,9156.990434756448,115483757.1830553,45249494.31942987,28186614.07570998,0.0 - 09/28 13:00:00,0.0,19182439.848731385,0.0,11514209.984138351,0.0,8646006.239681492,0.0,8391957.642992422,7711.165224875082,7590.445494763209,7600.226558523879,9149.003186041604,115383025.6711336,47734613.71554365,28186614.07570998,0.0 - 09/28 14:00:00,0.0,14058750.94011855,0.0,7960715.715005101,0.0,8024988.154958418,0.0,7088483.180164493,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,37132937.990246567,28186614.07570998,0.0 - 09/28 15:00:00,0.0,12457592.538568277,0.0,6601381.199765389,0.0,7497870.839547847,0.0,6335166.790391792,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,32892011.368273308,28186614.07570998,0.0 - 09/28 16:00:00,0.0,4214697.778895257,0.0,610588.0454968762,0.0,3568504.765198017,0.0,1393846.6795863978,18015.856519017147,17733.81492435722,17756.666754940117,21375.126052292104,269573271.30218377,9787637.269176547,28186614.07570998,0.0 - 09/28 17:00:00,0.0,179285.6467403638,0.0,0.0,0.0,1196755.59904951,0.0,0.0,23184.11312419863,22821.16150824727,22850.568904158175,27507.065229856795,346906471.5592592,1376041.2457898737,35233267.594637479,0.0 - 09/28 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18046.76710660939,17764.24160093434,17787.132639395593,21411.800284540634,270035789.87332788,0.0,14093307.03785499,0.0 - 09/28 19:00:00,0.0,0.0,0.0,0.0,0.0,3823997.9056263866,0.0,0.0,18048.736990287958,17766.18064571644,17789.074182834807,21414.137476330172,270065265.46260979,3823997.9056263866,63419881.67034747,0.0 - 09/28 20:00:00,0.0,13465490.091679316,0.0,6428186.149850316,0.0,24092541.93099337,0.0,21776738.225310856,15481.400223891342,15239.036015333962,15258.673068655793,18368.09040426982,231649918.9637433,65762956.397833857,63419881.67034747,69761869.8373822 - 09/28 21:00:00,0.0,11185684.021766942,0.0,5255611.777316838,0.0,19801090.344787845,0.0,18143982.82490437,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,54386368.968776,49326574.63249246,69761869.8373822 - 09/28 22:00:00,0.0,6074839.563566143,0.0,398848.2114492214,0.0,15333248.685767403,0.0,12937506.464447178,10324.742990404964,10163.107212811274,10176.203413781768,12249.913438446129,154490281.3995989,34744442.92522995,35233267.594637479,69761869.8373822 - 09/28 23:00:00,0.0,2890552.1593617845,0.0,0.0,0.0,12766036.263588708,0.0,9751633.3223945,7743.557242803722,7622.330409608453,7632.152560336326,9187.435078834598,115867711.04969916,25408221.74534499,35233267.594637479,62010550.96656194 - 09/28 24:00:00,0.0,0.0,0.0,0.0,0.0,8220223.663111364,0.0,4051685.9872119075,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77251923.80271465,12271909.650323272,35233267.594637479,46507913.22492146 - 09/29 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2581.412408442436,2540.999915626261,2544.2742533720149,3062.7472840474345,38625961.90135732,0.0,21139960.556782485,23253956.61246073 - 09/29 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 - 09/29 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 09/29 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 - 09/29 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.3380835922795,1271.121944994761,1272.7599153616064,1532.1233427771629,19322435.832212915,0.0,14093307.03785499,0.0 - 09/29 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 - 09/29 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,15502637.741640486 - 09/29 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.8648870783805,1269.6718116471116,1271.3079133691263,1530.3754513487898,19300392.228396268,0.0,56373228.15141996,38756594.35410121 - 09/29 09:00:00,0.0,0.0,0.0,0.0,0.0,4733927.84996821,0.0,0.0,5158.942264496314,5078.1780609458969,5084.721811696284,6120.88806789198,77193828.73810971,4733927.84996821,56373228.15141996,38756594.35410121 - 09/29 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7735.172995837697,7614.07741959276,7623.888935500633,9177.48748985579,115742256.62683277,0.0,28186614.07570998,0.0 - 09/29 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,115690503.11594406,0.0,28186614.07570998,0.0 - 09/29 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,0.0,28186614.07570998,0.0 - 09/29 13:00:00,0.0,3148784.425197944,0.0,0.0,0.0,0.0,0.0,0.0,5146.688986256335,5066.116610062611,5072.644818402448,6106.35002099663,77010481.56858488,3148784.425197944,28186614.07570998,0.0 - 09/29 14:00:00,0.0,5097792.542726587,0.0,0.0,0.0,379593.0084309454,0.0,0.0,7720.033479384502,7599.174915093914,7608.967227603673,9159.525031494948,115515722.35287734,5477385.551157532,28186614.07570998,0.0 - 09/29 15:00:00,0.0,5582186.615762241,0.0,0.0,0.0,1965056.7563140346,0.0,0.0,10293.37797251267,10132.233220125221,10145.289636804897,12212.70004199326,154020963.13716976,7547243.372076276,28186614.07570998,0.0 - 09/29 16:00:00,0.0,6554661.186851848,0.0,0.0,0.0,2702969.1861166779,0.0,0.0,12889.118143106216,12687.336594113272,12703.685522284311,15292.446668908682,192861312.94228495,9257630.372968527,28186614.07570998,0.0 - 09/29 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15496.057003107353,15253.463339937127,15273.118984339277,18385.480113325957,231869229.98655496,0.0,35233267.594637479,0.0 - 09/29 18:00:00,4235881.575328771,0.0,8674096.184102973,0.0,0.0,0.0,3087957.0748834956,0.0,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,286709733.65205129,0.0,14093307.03785499,0.0 - 09/29 19:00:00,0.0,0.0,3510686.8599947679,0.0,0.0,0.0,0.0,0.0,10342.345082397498,10180.433740769997,10193.552268740248,12270.797648682112,158264350.32611824,0.0,63419881.67034747,0.0 - 09/29 20:00:00,0.0,0.0,0.0,0.0,0.0,7325724.494617618,0.0,2022267.623881452,7758.477998881968,7637.017578466828,7646.858655110864,9205.13798636116,116090971.98775496,9347992.11849907,63419881.67034747,69761869.8373822 - 09/29 21:00:00,0.0,0.0,0.0,0.0,0.0,8052446.098264031,0.0,2178581.388465902,5172.626752653717,5091.648315888356,5098.2094244371169,6137.124190721711,77398591.26132325,10231027.486729935,49326574.63249246,69761869.8373822 - 09/29 22:00:00,0.0,0.0,1110367.3949837392,0.0,0.0,3834764.4603805968,0.0,0.0,5172.626752653717,5091.648315888356,5098.2094244371169,6137.124190721711,78508958.65630698,3834764.4603805968,35233267.594637479,69761869.8373822 - 09/29 23:00:00,0.0,0.0,6183940.082871876,0.0,0.0,375684.6312708721,0.0,0.0,5173.413629730778,5092.4228742579839,5098.984980904262,6138.057790336699,83594305.47369887,375684.6312708721,35233267.594637479,62010550.96656194 - 09/29 24:00:00,5262304.967455575,0.0,11282589.28153531,0.0,0.0,0.0,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,93956387.70574245,0.0,35233267.594637479,46507913.22492146 - 09/30 01:00:00,14665788.746188585,0.0,19963461.72174599,0.0,0.0,0.0,8089982.82056055,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,81425900.28815364,0.0,21139960.556782485,23253956.61246073 - 09/30 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223884,19353877.68371783,0.0,14093307.03785499,0.0 - 09/30 03:00:00,0.0,0.0,1793435.4708142779,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,21147273.597810437,0.0,14093307.03785499,0.0 - 09/30 04:00:00,3772334.978323825,0.0,9531355.65319386,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,32657543.504774579,0.0,14093307.03785499,0.0 - 09/30 05:00:00,7285645.07411224,0.0,11109291.227224945,0.0,0.0,0.0,2226186.7337845789,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,39974812.53405954,0.0,14093307.03785499,0.0 - 09/30 06:00:00,8373061.501731131,0.0,12076149.983721763,0.0,0.0,0.0,4755668.082038554,0.0,1293.4178662433677,1273.1691682604633,1274.8097766834422,1534.5909255024945,44558435.4195746,0.0,14093307.03785499,0.0 - 09/30 07:00:00,3557297.666920963,0.0,7032935.038330619,0.0,0.0,0.0,571344.3298712868,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,88577107.43173808,0.0,14093307.03785499,15502637.741640486 - 09/30 08:00:00,13804869.962097628,0.0,14711823.82688291,0.0,8901719.154797154,0.0,16094984.177458737,0.0,20694.638556888967,20370.660129699867,20396.90980446704,24553.398684830252,363169582.9544265,0.0,56373228.15141996,38756594.35410121 - 09/30 09:00:00,16503063.830887841,0.0,23153125.242555638,0.0,10214293.874851563,0.0,18028604.23625969,0.0,18104.68422817852,17821.252019160875,17844.216521364942,21480.51673844996,338801497.41031017,0.0,56373228.15141996,38756594.35410121 - 09/30 10:00:00,10302021.311011147,0.0,14725794.857092675,0.0,9655906.756825,0.0,15011283.171856653,0.0,12926.791484148758,12724.42015197384,12740.816866094225,15337.144649975822,243120029.44467897,0.0,28186614.07570998,0.0 - 09/30 11:00:00,10557040.74490492,0.0,14204195.446561506,0.0,8381491.3569867969,0.0,13390088.369950369,0.0,10334.412390214156,10172.625236362628,10185.733702277954,12261.385812216055,201167781.62625844,0.0,28186614.07570998,0.0 - 09/30 12:00:00,4917327.878186052,0.0,11255122.510320312,0.0,6078268.555693544,0.0,9993588.850665182,0.0,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,109502877.70499857,0.0,28186614.07570998,0.0 - 09/30 13:00:00,0.0,4923135.991521965,4955216.9068637699,0.0,2506256.336193324,0.0,3411466.333519283,0.0,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885577,87981875.36815879,4923135.991521965,28186614.07570998,0.0 - 09/30 14:00:00,0.0,57911381.217496957,0.0,0.0,0.0,0.0,0.0,0.0,5141.547218035461,5061.05533718243,5067.577023555569,6100.249509275923,76933544.71697779,57911381.217496957,28186614.07570998,0.0 - 09/30 15:00:00,0.0,59459304.182425979,0.0,17801812.87069696,0.0,10632467.332460676,0.0,14514913.46411334,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,102408497.84969694,28186614.07570998,0.0 - 09/30 16:00:00,0.0,47684186.06811565,0.0,24740602.45308519,0.0,23405150.160192074,0.0,25771475.38020208,12813.469362730111,12612.872109506223,12629.125082588416,15202.692278683908,191729371.80063118,121601414.061595,28186614.07570998,0.0 - 09/30 17:00:00,0.0,32276710.543850345,0.0,19890584.912268334,0.0,23786730.85717094,0.0,23538967.730513503,12848.022972937308,12646.884776499655,12663.18157837487,15243.688818202356,192246401.32565109,99492994.04380311,35233267.594637479,0.0 - 09/30 18:00:00,0.0,3781906.26759124,0.0,391743.3849541331,0.0,2748299.858723578,0.0,1429308.3851562928,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,8351257.8964252439,14093307.03785499,0.0 - 09/30 19:00:00,0.0,11197962.418484349,0.0,0.0,0.0,12669752.991465472,0.0,8708578.800207489,18050.675032483014,17768.08834749939,17790.984342886222,21416.43688941499,270094264.604221,32576294.210157314,63419881.67034747,0.0 - 09/30 20:00:00,0.0,25320225.001861007,0.0,14198977.650953778,0.0,29405156.17718485,0.0,28996043.391713159,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,97920402.22171279,63419881.67034747,69761869.8373822 - 09/30 21:00:00,0.0,19045602.39712325,0.0,10049256.693600228,0.0,24551548.73849853,0.0,23208715.731819266,10318.919096627043,10157.374493176892,10170.46330695301,12243.003610790318,154403137.82717014,76855123.56104127,49326574.63249246,69761869.8373822 - 09/30 22:00:00,0.0,12880004.718258467,0.0,4300905.337310955,0.0,19429489.1193901,0.0,17191889.24202659,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,53802288.416986118,35233267.594637479,69761869.8373822 - 09/30 23:00:00,0.0,9421718.859351017,0.0,1000329.0841386002,0.0,16448135.304059446,0.0,13799420.0004808,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,40669603.24802986,35233267.594637479,62010550.96656194 - 09/30 24:00:00,0.0,3974826.499883662,0.0,0.0,0.0,11464082.380937543,0.0,8091728.537802912,2579.9838544362098,2539.593725899498,2542.8662516262627,3061.052359250305,38604586.28836419,23530637.418624116,35233267.594637479,46507913.22492146 - 10/01 01:00:00,0.0,0.0,0.0,0.0,0.0,1365693.207162154,0.0,0.0,2579.729774156761,2539.343623294223,2542.6158267382527,3060.7509026975797,38600784.45679253,1365693.207162154,21139960.556782485,23253956.61246073 - 10/01 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 - 10/01 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 - 10/01 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 10/01 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,0.0,14093307.03785499,0.0 - 10/01 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 - 10/01 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,0.0,14093307.03785499,15502637.741640486 - 10/01 08:00:00,0.0,989163.5070136078,0.0,0.0,0.0,4384172.754693158,0.0,0.0,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,308775314.95243886,5373336.261706766,56373228.15141996,38756594.35410121 - 10/01 09:00:00,0.0,17291148.886035108,0.0,0.0,0.0,13003507.679791268,0.0,6969325.090078632,18038.56953966687,17756.172368431562,17779.053008863124,21402.0741842837,269913128.7644829,37263981.65590501,56373228.15141996,38756594.35410121 - 10/01 10:00:00,0.0,51271722.2385503,0.0,943076.6313347269,0.0,5927828.696551778,0.0,3309113.0308511659,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,61451740.59728797,28186614.07570998,0.0 - 10/01 11:00:00,0.0,43155526.0752103,0.0,1202004.3173825127,0.0,2915070.822287684,0.0,692246.679866287,10290.52961933414,10129.429458447063,10142.482262193642,12209.32057967526,153978342.91074039,47964847.89474679,28186614.07570998,0.0 - 10/01 12:00:00,0.0,39501301.69447874,0.0,3911714.7671081556,0.0,4037980.8866268929,0.0,3464000.212068919,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,50914997.56028271,28186614.07570998,0.0 - 10/01 13:00:00,0.0,52777927.744148578,0.0,14732341.085982724,0.0,8878800.992031288,0.0,12558847.655048736,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,88947917.47721133,28186614.07570998,0.0 - 10/01 14:00:00,0.0,55576424.50520972,0.0,20904532.4077677,0.0,14359393.10649385,0.0,18517686.01230569,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,109358036.03177695,28186614.07570998,0.0 - 10/01 15:00:00,0.0,56212474.35195105,0.0,26666778.37331978,0.0,21235321.67060877,0.0,25263964.62531982,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,129378539.0211994,28186614.07570998,0.0 - 10/01 16:00:00,0.0,46305474.03083414,0.0,25743943.61492407,0.0,23326795.7864549,0.0,25838636.350402349,12841.977000641575,12640.933455028086,12657.222588018147,15236.515502862421,192155934.7675808,121214849.78261546,28186614.07570998,0.0 - 10/01 17:00:00,0.0,27616106.4926043,0.0,15767362.184650487,0.0,18354595.099228279,0.0,18136382.129685895,12866.722465640838,12665.291525156525,12681.612046006121,15265.875052491576,192526203.9214622,79874445.90616896,35233267.594637479,0.0 - 10/01 18:00:00,0.0,2793690.0661439688,0.0,0.0,0.0,1610423.9363821126,0.0,797127.9428036851,18068.300233208687,17785.437622419722,17808.355974118094,21437.348517280723,270357992.449298,5201241.945329766,14093307.03785499,0.0 - 10/01 19:00:00,0.0,5919000.340879663,0.0,0.0,0.0,7350167.038665805,0.0,3526499.4924421708,18072.963962696216,17790.028340352106,17812.9526076591,21442.881854292176,270427776.35399857,16795666.871987638,63419881.67034747,0.0 - 10/01 20:00:00,0.0,19217737.377338977,0.0,6817622.8861682829,0.0,23484744.694999849,0.0,22353381.179599897,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,154717479.74859489,71873486.138107,63419881.67034747,69761869.8373822 - 10/01 21:00:00,0.0,13105200.488998175,0.0,4527854.428508488,0.0,18420243.07339415,0.0,16420233.910898982,10336.416337538953,10174.597811518219,10187.708819297968,12263.763419221552,154664950.9952761,52473531.9017998,49326574.63249246,69761869.8373822 - 10/01 22:00:00,0.0,5644587.615329395,0.0,0.0,0.0,12238913.23607879,0.0,8781779.791911973,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,26665280.643320159,35233267.594637479,69761869.8373822 - 10/01 23:00:00,0.0,174703.9358116921,0.0,0.0,0.0,7175063.312763466,0.0,2509823.4641921625,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,77409098.80913013,9859590.712767322,35233267.594637479,62010550.96656194 - 10/01 24:00:00,0.0,0.0,0.0,0.0,0.0,5070626.234824874,0.0,467035.2919066814,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,38675268.367784809,5537661.526731556,35233267.594637479,46507913.22492146 - 10/02 01:00:00,0.0,0.0,4852725.3855577199,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,43558472.1139335,0.0,21139960.556782485,23253956.61246073 - 10/02 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 - 10/02 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.079666480328,1272.8362630778052,1274.4764425184774,1534.1896643935266,19348495.331292496,0.0,14093307.03785499,0.0 - 10/02 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 - 10/02 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8466656425079,1272.6069099115674,1274.2467938072753,1533.9132177936418,19345008.913757974,0.0,14093307.03785499,0.0 - 10/02 06:00:00,0.0,0.0,285340.3213506943,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,19636457.345746,0.0,14093307.03785499,0.0 - 10/02 07:00:00,0.0,0.0,786685.2888294496,0.0,0.0,0.0,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,78178154.09668625,0.0,14093307.03785499,15502637.741640486 - 10/02 08:00:00,6787571.30181334,0.0,12194415.25742221,0.0,0.0,0.0,4186024.402107031,0.0,20687.894370808346,20364.021525110464,20390.26264535803,24545.396965487,332723282.7856924,0.0,56373228.15141996,38756594.35410121 - 10/02 09:00:00,9463524.672757082,0.0,17145289.35968236,0.0,2090776.4909460024,0.0,10482041.50895554,0.0,18101.25516585144,17817.876639444217,17840.836792127004,21476.448286894236,310032732.8158818,0.0,56373228.15141996,38756594.35410121 - 10/02 10:00:00,9664922.744573115,0.0,16129004.542941925,0.0,7535130.402362,0.0,14376378.967818223,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,241092204.89718247,0.0,28186614.07570998,0.0 - 10/02 11:00:00,6369642.088900723,0.0,12158782.25085023,0.0,7141984.659315303,0.0,12272109.644325093,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,192651933.23498113,0.0,28186614.07570998,0.0 - 10/02 12:00:00,4238077.408474285,0.0,9045349.208629517,0.0,6234733.486447503,0.0,10230476.686183028,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,107099173.52530395,0.0,28186614.07570998,0.0 - 10/02 13:00:00,8676396.682341272,0.0,13818628.738506198,0.0,7353367.700931264,0.0,12660389.754985685,0.0,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,119850564.70810797,0.0,28186614.07570998,0.0 - 10/02 14:00:00,14965210.971266969,0.0,20136043.1552664,0.0,9487392.523318803,0.0,16355167.282933612,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,138281011.50413347,0.0,28186614.07570998,0.0 - 10/02 15:00:00,19132414.13204512,0.0,24182478.456887388,0.0,11810352.405693213,0.0,19504955.4398009,0.0,7756.758811798124,7635.325305577496,7645.164201555187,9203.098236511585,190695448.03401924,0.0,28186614.07570998,0.0 - 10/02 16:00:00,17948085.480199923,0.0,22744809.03925173,0.0,11520876.87662283,0.0,18653449.961545513,0.0,12926.1869296661,12723.825061904388,12740.221009190478,15336.427369159412,264283198.68933339,0.0,28186614.07570998,0.0 - 10/02 17:00:00,13840186.020063082,0.0,18279596.90224026,0.0,8019441.6891604899,0.0,14064447.405007819,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,247590440.25595889,0.0,35233267.594637479,0.0 - 10/02 18:00:00,24834860.81258848,0.0,29199600.441404858,0.0,14948558.49280272,0.0,23144141.05552777,0.0,18106.651439746962,17823.188433665233,17846.155431137035,21482.850759882833,363059006.63427928,0.0,14093307.03785499,0.0 - 10/02 19:00:00,14205456.969581623,0.0,19080025.20761786,0.0,3414395.6565621106,0.0,9490347.085073818,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,317130452.01746585,0.0,63419881.67034747,0.0 - 10/02 20:00:00,1842540.224419456,0.0,7025764.268056785,0.0,0.0,0.0,0.0,0.0,10347.501731769487,10185.509661834096,10198.634730646727,12276.91581632057,163699127.47853143,0.0,63419881.67034747,69761869.8373822 - 10/02 21:00:00,3946444.3986602688,0.0,9087767.920941459,0.0,0.0,0.0,0.0,0.0,10347.224049724615,10185.236326953438,10198.361043546176,12276.586357174103,167860880.31823574,0.0,49326574.63249246,69761869.8373822 - 10/02 22:00:00,6270155.843228232,0.0,11321233.425269138,0.0,0.0,0.0,0.0,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,95000488.07762751,0.0,35233267.594637479,69761869.8373822 - 10/02 23:00:00,7449061.333680948,0.0,12428518.584524813,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,97278268.5541359,0.0,35233267.594637479,62010550.96656194 - 10/02 24:00:00,14816871.242923508,0.0,20024942.415061717,0.0,0.0,0.0,8441623.59105277,0.0,2585.824003561095,2545.342446400355,2548.6223799402448,3067.9814732547849,81975410.34040132,0.0,35233267.594637479,46507913.22492146 - 10/03 01:00:00,23037980.365168133,0.0,28195920.703949989,0.0,8860132.174784624,0.0,18646644.00399965,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,117446027.04889632,0.0,21139960.556782485,23253956.61246073 - 10/03 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.426797998898,1273.1779601876947,1274.8185799399697,1534.6015226894857,19353689.498937776,0.0,14093307.03785499,0.0 - 10/03 03:00:00,0.0,0.0,3958996.414376702,0.0,0.0,0.0,0.0,0.0,1293.1917305841799,1272.9465727972057,1274.5868943832107,1534.3226241749972,23309168.57335924,0.0,14093307.03785499,0.0 - 10/03 04:00:00,5467781.259829877,0.0,9062915.156973754,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,33884351.50834993,0.0,14093307.03785499,0.0 - 10/03 05:00:00,5888341.295088124,0.0,9103104.548812785,0.0,0.0,0.0,928696.6248598502,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,35270804.365664508,0.0,14093307.03785499,0.0 - 10/03 06:00:00,5076668.071136439,0.0,7995036.347392052,0.0,0.0,0.0,1179207.286113419,0.0,1293.19173058418,1272.9465727972059,1274.5868943832107,1534.3226241749972,33601083.863624449,0.0,14093307.03785499,0.0 - 10/03 07:00:00,1344820.9672902595,0.0,4129192.65441611,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,82876661.20932135,0.0,14093307.03785499,15502637.741640486 - 10/03 08:00:00,13838620.604191438,0.0,14682999.49956035,0.0,6009857.5839659529,0.0,14048718.123348324,0.0,20693.315931139383,20369.358209903126,20395.606207013756,24551.829439866095,358216591.0475866,0.0,56373228.15141996,38756594.35410121 - 10/03 09:00:00,9489546.291935755,0.0,15144241.740407998,0.0,6271290.948888048,0.0,10606876.293499208,0.0,18099.10389419562,17815.75904634749,17838.716470295436,21473.895885193695,312330866.34044709,0.0,56373228.15141996,38756594.35410121 - 10/03 10:00:00,0.0,0.0,4751305.100602575,0.0,1294412.664972525,0.0,4669305.251324978,0.0,12921.309374422706,12719.023865698236,12735.413626152967,15330.640336050854,204058016.94526924,0.0,28186614.07570998,0.0 - 10/03 11:00:00,0.0,6917779.712187229,1978736.6592144853,0.0,1343658.315245897,0.0,3801737.7424449536,0.0,10328.259663360937,10166.568831596087,10179.669493215706,12254.085836668732,161667034.48633457,6917779.712187229,28186614.07570998,0.0 - 10/03 12:00:00,0.0,20863929.716188957,4289480.856553206,0.0,2102990.395357175,0.0,4060207.6044533459,0.0,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,87697819.55616316,20863929.716188957,28186614.07570998,0.0 - 10/03 13:00:00,0.0,10617431.89558401,0.0,0.0,0.0,0.0,76853.58280148939,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77328777.38551614,10617431.89558401,28186614.07570998,0.0 - 10/03 14:00:00,0.0,7541615.183764977,0.0,0.0,0.0,0.0,0.0,0.0,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,7541615.183764977,28186614.07570998,0.0 - 10/03 15:00:00,0.0,2621852.689622031,0.0,0.0,0.0,0.0,0.0,0.0,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,115897618.43742797,2621852.689622031,28186614.07570998,0.0 - 10/03 16:00:00,0.0,0.0,4003447.9395519199,0.0,0.0,0.0,3974613.136064435,0.0,12918.015487767696,12715.781545453281,12732.167127847442,15326.732265270068,201271768.2104349,0.0,28186614.07570998,0.0 - 10/03 17:00:00,5616078.288345984,0.0,14937077.065600444,0.0,4466966.77076227,0.0,9948465.789599136,0.0,12918.873470694787,12716.626096497594,12733.012767181974,15327.75022926184,228275133.14339815,0.0,35233267.594637479,0.0 - 10/03 18:00:00,16838666.31324412,0.0,23431329.91254678,0.0,10000358.746852652,0.0,17417005.866500919,0.0,18096.66170153254,17813.355086666143,17836.309412866667,21470.998316823174,338469729.10354319,0.0,14093307.03785499,0.0 - 10/03 19:00:00,7484664.191173794,0.0,13691081.541918533,0.0,0.0,0.0,4253505.017548302,0.0,18097.50807780826,17814.188212763376,17837.143612531912,21472.002509966147,296224283.43769159,0.0,63419881.67034747,0.0 - 10/03 20:00:00,0.0,0.0,3822317.241246605,0.0,0.0,0.0,0.0,0.0,10344.954666741358,10183.002471584135,10196.124309626226,12273.893820892143,158615028.2090845,0.0,63419881.67034747,69761869.8373822 - 10/03 21:00:00,764268.8143932113,0.0,7588718.109033765,0.0,0.0,0.0,0.0,0.0,10343.947185404173,10182.010762555232,10195.131322679015,12272.6984827435,163130622.83560188,0.0,49326574.63249246,69761869.8373822 - 10/03 22:00:00,4593543.312598031,0.0,10415659.886454966,0.0,0.0,0.0,0.0,0.0,5171.787190243269,5090.821896984065,5097.3819406077159,6136.128081969782,92395231.99435038,0.0,35233267.594637479,69761869.8373822 - 10/03 23:00:00,7035207.408451373,0.0,12593374.602054887,0.0,0.0,0.0,0.0,0.0,5172.318665921312,5091.345052311221,5097.9057700739099,6136.758657574106,97022563.33567624,0.0,35233267.594637479,62010550.96656194 - 10/03 24:00:00,9077251.193182156,0.0,14317816.458467432,0.0,0.0,0.0,2128384.8156553816,0.0,2584.981721917516,2544.513350833034,2547.7922159986608,3066.982138236545,64202822.40445368,0.0,35233267.594637479,46507913.22492146 - 10/04 01:00:00,15495545.260974629,0.0,20322319.876456348,0.0,0.0,0.0,10760508.735917893,0.0,2585.1118605609956,2544.641452131772,2547.9204823689976,3067.136542769336,85259691.08954084,0.0,21139960.556782485,23253956.61246073 - 10/04 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 - 10/04 03:00:00,0.0,0.0,1015592.6238265587,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,20364681.494806298,0.0,14093307.03785499,0.0 - 10/04 04:00:00,2624975.3207171687,0.0,7542908.432106555,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,29518545.649727469,0.0,14093307.03785499,0.0 - 10/04 05:00:00,4417419.651948343,0.0,7476081.842282508,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,31242590.365210587,0.0,14093307.03785499,0.0 - 10/04 06:00:00,4585413.116780801,0.0,7440900.061431248,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,31375402.049191789,0.0,14093307.03785499,0.0 - 10/04 07:00:00,229100.9514403646,0.0,1939116.595516042,0.0,0.0,0.0,0.0,0.0,5171.172541198749,5090.216870384998,5096.776134370124,6135.398824341056,79545049.28001815,0.0,14093307.03785499,15502637.741640486 - 10/04 08:00:00,12752440.274554342,0.0,13414106.965806922,0.0,3564715.7612760679,0.0,11827207.77349311,0.0,20679.85377534013,20356.106806664277,20382.337727989285,24535.857105892355,350993430.2723202,0.0,56373228.15141996,38756594.35410121 - 10/04 09:00:00,10651624.153252848,0.0,16312363.832228188,0.0,4947006.318309554,0.0,10344012.087113459,0.0,18092.95326899104,17809.704710327886,17832.654332645918,21466.59840317226,312981884.96539768,0.0,56373228.15141996,38756594.35410121 - 10/04 10:00:00,1210749.08318175,0.0,9838713.774086453,0.0,5102908.879863331,0.0,9734018.133024469,0.0,12918.015487767696,12715.781545453281,12732.167127847442,15326.732265270068,219180097.00497455,0.0,28186614.07570998,0.0 - 10/04 11:00:00,0.0,0.0,8158989.224021372,0.0,4834974.647050677,0.0,8425792.316472758,0.0,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,175999242.8452481,0.0,28186614.07570998,0.0 - 10/04 12:00:00,0.0,0.0,5951674.506816804,0.0,3488996.835179353,0.0,6197449.9072471749,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,92890045.051958,0.0,28186614.07570998,0.0 - 10/04 13:00:00,0.0,0.0,3954282.518546021,0.0,2180121.460046695,0.0,4107568.6674828117,0.0,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,87487113.34587497,0.0,28186614.07570998,0.0 - 10/04 14:00:00,0.0,0.0,4237707.36578994,0.0,1946295.1054837008,0.0,4245545.948659334,0.0,5165.352334369118,5084.487779979044,5091.039661446425,6128.493371108651,87719291.74878463,0.0,28186614.07570998,0.0 - 10/04 15:00:00,0.0,0.0,6658967.576224517,0.0,3604676.590984594,0.0,6647896.380794774,0.0,7755.71215779966,7634.2950371426309,7644.132605514287,9201.856421495648,132961126.94703189,0.0,28186614.07570998,0.0 - 10/04 16:00:00,10230647.203474049,0.0,19174081.71484746,0.0,9066535.80513526,0.0,15426515.10760648,0.0,12932.548769028932,12730.087305485195,12746.491322311313,15343.975448717072,247408950.07501627,0.0,28186614.07570998,0.0 - 10/04 17:00:00,21115517.07123862,0.0,28248834.484909957,0.0,12719491.97225262,0.0,21369822.354747375,0.0,12933.887878621179,12731.405451066965,12747.811166458205,15345.564251131318,276984873.3733482,0.0,35233267.594637479,0.0 - 10/04 18:00:00,30526216.912178764,0.0,37597027.1129189,0.0,18766206.56360475,0.0,29571916.679317539,0.0,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,387415307.49361649,0.0,14093307.03785499,0.0 - 10/04 19:00:00,20741671.31883535,0.0,27937180.061618225,0.0,7383128.774033806,0.0,16306326.344957818,0.0,18108.067806677343,17824.5826271071,17847.551421139455,21484.531225179686,343321345.5878181,0.0,63419881.67034747,0.0 - 10/04 20:00:00,10622607.637605299,0.0,18150511.572449726,0.0,0.0,0.0,3047873.0160245818,0.0,10346.324273462673,10184.350636856729,10197.474212147377,12275.51880698588,186634196.77210919,0.0,63419881.67034747,69761869.8373822 - 10/04 21:00:00,16451259.542521067,0.0,24162663.115193488,0.0,0.0,0.0,8894791.637009085,0.0,10345.041353971941,10183.087801709953,10196.20974970862,12273.996671982175,204302722.37326534,0.0,49326574.63249246,69761869.8373822 - 10/04 22:00:00,21726906.92700836,0.0,29606553.111711924,0.0,3775563.3076784817,0.0,14330044.500246875,0.0,5172.024808126503,5091.055794915008,5097.616139940017,6136.410006517806,146828652.14484326,0.0,35233267.594637479,69761869.8373822 - 10/04 23:00:00,25229594.9018827,0.0,33267404.114068536,0.0,6950549.533101809,0.0,17881430.531255075,0.0,5171.64800712219,5090.68489280071,5097.244759880489,6135.9629465095699,160712925.2630348,0.0,35233267.594637479,62010550.96656194 - 10/04 24:00:00,28402041.64664231,0.0,36115035.403325829,0.0,10537522.255819159,0.0,21861947.003143334,0.0,2585.147952284963,2544.6769788330686,2547.956054850074,3067.179364222118,135598403.5696154,0.0,35233267.594637479,46507913.22492146 - 10/05 01:00:00,35453754.22066452,0.0,42555580.04605442,0.0,18358258.319099174,0.0,30732646.20677178,0.0,2584.305815424775,2543.8480257825269,2547.1260336089178,3066.1802009838449,165769495.06547017,0.0,21139960.556782485,23253956.61246073 - 10/05 02:00:00,2542796.396538059,0.0,6805573.517959418,0.0,0.0,0.0,0.0,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,28674079.9207123,0.0,14093307.03785499,0.0 - 10/05 03:00:00,23123555.083166847,0.0,30152470.74488458,0.0,4815012.296258108,0.0,12866985.817279119,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.141208321138,90268073.54517669,0.0,14093307.03785499,0.0 - 10/05 04:00:00,25890128.06660779,0.0,31513253.95119623,0.0,10590119.721964298,0.0,20837486.173516796,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,108149296.45987563,0.0,14093307.03785499,0.0 - 10/05 05:00:00,26490057.672015579,0.0,31991510.140306117,0.0,12192617.562862218,0.0,22048293.55536774,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,112037586.69160675,0.0,14093307.03785499,0.0 - 10/05 06:00:00,27677161.408585084,0.0,33107691.631321834,0.0,13616583.912643319,0.0,23477834.711920859,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,117187566.7521763,0.0,14093307.03785499,0.0 - 10/05 07:00:00,20110658.813829159,0.0,25898975.650005185,0.0,8508889.469341608,0.0,16671866.627616503,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,90500440.16438049,0.0,14093307.03785499,15502637.741640486 - 10/05 08:00:00,25022497.003283744,0.0,34417011.89091331,0.0,18395412.263694005,0.0,27721167.60088067,0.0,5163.8257706036279,5082.985114854083,5089.535059984077,6126.682161473418,182822989.94366647,0.0,56373228.15141996,38756594.35410121 - 10/05 09:00:00,16264026.56727615,0.0,34013211.118392188,0.0,20111300.989946378,0.0,29318431.174718758,0.0,12921.529077123876,12719.240128912632,12735.630168044589,15330.901004919224,293053251.2147346,0.0,56373228.15141996,38756594.35410121 - 10/05 10:00:00,2742741.631426909,0.0,28494849.898801663,0.0,16270491.247057278,0.0,25235798.418018979,0.0,12919.941219283466,12717.67712928293,12734.065154330332,15329.017072203838,266066403.2656669,0.0,28186614.07570998,0.0 - 10/05 11:00:00,7167873.496800255,0.0,29030361.492409387,0.0,17413852.08580572,0.0,26721875.90139612,0.0,12923.738138579285,12721.414607098857,12737.807448267902,15333.521972011007,273713298.7738569,0.0,28186614.07570998,0.0 - 10/05 12:00:00,3265496.374118276,0.0,26972610.103788746,0.0,16431147.80194879,0.0,24552592.254747023,0.0,7757.168618071212,7635.72869625693,7645.568112044684,9203.584456011338,187293226.11118583,0.0,28186614.07570998,0.0 - 10/05 13:00:00,0.0,0.0,23574637.21227666,0.0,14376214.858709824,0.0,20608751.12340821,0.0,7759.207523936776,7637.73568267081,7647.577684665408,9206.003539991007,174661491.1469451,0.0,28186614.07570998,0.0 - 10/05 14:00:00,15794180.51369017,0.0,30527949.10111496,0.0,16445431.751512096,0.0,25697591.845446178,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,204521669.78088833,0.0,28186614.07570998,0.0 - 10/05 15:00:00,15712074.134606958,0.0,28562356.107234125,0.0,15367268.032332443,0.0,24376252.35154505,0.0,7755.816504707458,7634.397750480122,7644.235451208397,9201.980225118585,200069098.379171,0.0,28186614.07570998,0.0 - 10/05 16:00:00,22233010.38061396,0.0,33695218.94529789,0.0,17109858.58610262,0.0,27463497.894096964,0.0,18092.234754220408,17808.997444040026,17831.946154973255,21465.745912824295,371217713.16392019,0.0,28186614.07570998,0.0 - 10/05 17:00:00,26850843.861526945,0.0,36835414.04562495,0.0,17521134.124942665,0.0,28860359.865912327,0.0,23244.586664804934,22880.688324294053,22910.172426583213,27578.81477736921,457879095.7929919,0.0,35233267.594637479,0.0 - 10/05 18:00:00,39829428.78537845,0.0,48776084.765458058,0.0,25865491.03890775,0.0,39405746.01182438,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,424192881.8294418,0.0,14093307.03785499,0.0 - 10/05 19:00:00,30770370.21378289,0.0,39518427.80552618,0.0,15977411.436699612,0.0,27462136.199096346,0.0,18060.385899964193,17777.64718953859,17800.55550246904,21427.958462994808,383967915.0529849,0.0,63419881.67034747,0.0 - 10/05 20:00:00,16594013.046000988,0.0,25069776.250337908,0.0,2025324.2033001937,0.0,10225364.11025466,0.0,15490.18009352046,15247.678434466152,15267.326624427149,18378.50738443654,285695770.74255487,0.0,63419881.67034747,69761869.8373822 - 10/05 21:00:00,19638985.174515256,0.0,27936753.314160594,0.0,4683308.255781688,0.0,13583090.473374326,0.0,12900.275642831568,12698.319421098995,12714.682501763602,15305.684616424864,258870401.07346035,0.0,49326574.63249246,69761869.8373822 - 10/05 22:00:00,23370912.347013974,0.0,31713953.993936995,0.0,7842510.1441976749,0.0,17779545.927698245,0.0,10320.220514265255,10158.655536879198,10171.74600141088,12244.547693139893,235129533.4973497,0.0,35233267.594637479,69761869.8373822 - 10/05 23:00:00,24136740.144019858,0.0,32370834.959169873,0.0,8635487.611519818,0.0,18800231.091283695,0.0,7745.738655905442,7624.477672281122,7634.302589976116,9190.02324221013,199843645.58333538,0.0,35233267.594637479,62010550.96656194 - 10/05 24:00:00,26895497.905581997,0.0,34913969.30686642,0.0,11173771.179090117,0.0,21906518.686173656,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,172175245.60763876,0.0,35233267.594637479,46507913.22492146 - 10/06 01:00:00,36751317.30616358,0.0,45206682.83845335,0.0,19253249.501090528,0.0,32552032.24616217,0.0,2583.9882438566935,2543.5354258565864,2546.813030866066,3065.8034144407677,172427786.30594207,0.0,21139960.556782485,23253956.61246073 - 10/06 02:00:00,1391576.9532688629,0.0,6508013.211224469,0.0,0.0,0.0,0.0,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,27244028.91936373,0.0,14093307.03785499,0.0 - 10/06 03:00:00,17485454.37929855,0.0,24911070.785280199,0.0,0.0,0.0,7940515.662907552,0.0,1293.0062020316255,1272.763948728752,1274.4040349850043,1534.1025016294516,69684436.9020357,0.0,14093307.03785499,0.0 - 10/06 04:00:00,21016956.315591627,0.0,26630346.95006697,0.0,7369640.056457166,0.0,15991828.103055805,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,90347737.85651805,0.0,14093307.03785499,0.0 - 10/06 05:00:00,25552274.56582168,0.0,31645377.88909557,0.0,10804119.055727996,0.0,20969788.288264969,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915207,108299989.88901256,0.0,14093307.03785499,0.0 - 10/06 06:00:00,28813742.982893107,0.0,35203071.384544137,0.0,13431093.821637143,0.0,24313003.17763748,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,121083763.80532216,0.0,14093307.03785499,0.0 - 10/06 07:00:00,22963746.49624695,0.0,29650664.32899364,0.0,9151274.483679908,0.0,18578336.81806698,0.0,1291.165770819287,1270.9523298103748,1272.5900816107426,1531.9189002495903,99663879.62395147,0.0,14093307.03785499,15502637.741640486 - 10/06 08:00:00,36089325.77758231,0.0,45233112.608843039,0.0,22781857.158181784,0.0,34676504.2123129,0.0,1291.165770819287,1270.952329810375,1272.5900816107426,1531.9189002495903,158100657.253884,0.0,56373228.15141996,38756594.35410121 - 10/06 09:00:00,41778856.6067008,0.0,54435058.24339227,0.0,30595924.652448086,0.0,45084667.99311295,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,249154938.53987447,0.0,56373228.15141996,38756594.35410121 - 10/06 10:00:00,23446251.458130689,0.0,43452732.547780368,0.0,25159414.362712645,0.0,37453631.011101808,0.0,7749.341399870748,7628.02401461756,7637.853502136622,9194.297760399775,245466289.41701449,0.0,28186614.07570998,0.0 - 10/06 11:00:00,34924256.86854736,0.0,50777849.1748852,0.0,28566007.228161944,0.0,42566995.55817711,0.0,7748.775365836511,7627.466841951723,7637.295611496935,9193.626182625,272780899.2366482,0.0,28186614.07570998,0.0 - 10/06 12:00:00,34082141.2399177,0.0,50401814.938503269,0.0,28860900.80876658,0.0,42713644.7945848,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,233298700.19612456,0.0,28186614.07570998,0.0 - 10/06 13:00:00,33154813.93682836,0.0,49162532.82253723,0.0,28349936.277476666,0.0,41729075.42875752,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,229650182.29202084,0.0,28186614.07570998,0.0 - 10/06 14:00:00,26756349.796667424,0.0,42395759.25386166,0.0,24990037.65234678,0.0,37237167.990076538,0.0,7745.09004676023,7623.839217233076,7633.6633122135749,9189.25369221827,247269961.25928296,0.0,28186614.07570998,0.0 - 10/06 15:00:00,30353828.16153598,0.0,43862709.51925179,0.0,25136953.278277603,0.0,37962534.923525128,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,291753493.5735147,0.0,28186614.07570998,0.0 - 10/06 16:00:00,39041728.28827623,0.0,49683139.31512139,0.0,27874439.100721279,0.0,42177947.30478491,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,351727821.51954689,0.0,28186614.07570998,0.0 - 10/06 17:00:00,42820165.97024958,0.0,53225988.3738008,0.0,28248182.20727016,0.0,43537771.96253303,0.0,15462.143906091713,15220.081158781748,15239.69378683623,18345.243518259398,399193893.0457423,0.0,35233267.594637479,0.0 - 10/06 18:00:00,52237325.72607201,0.0,62228644.210190538,0.0,34327432.04510988,0.0,51337559.429886687,0.0,18030.498417656025,17748.227601341463,17771.098004129723,21392.498106111503,469923321.0765185,0.0,14093307.03785499,0.0 - 10/06 19:00:00,43030733.51725665,0.0,53199756.48308334,0.0,24091511.515290977,0.0,39275393.66330091,0.0,10299.23642473815,10137.99995718822,10151.0638048972,12219.650871927923,313706018.99043729,0.0,63419881.67034747,0.0 - 10/06 20:00:00,30254362.234497046,0.0,40524839.08813825,0.0,10942132.396361296,0.0,23470798.7524984,0.0,7723.423837393386,7602.512196415697,7612.308809353069,9163.547561854564,220758585.1295552,0.0,63419881.67034747,69761869.8373822 - 10/06 21:00:00,33389018.679068299,0.0,43413921.13283784,0.0,13613697.564830877,0.0,26764523.638065638,0.0,5148.949224928924,5068.341464277133,5074.8725395687129,6109.031707903042,194225462.78684277,0.0,49326574.63249246,69761869.8373822 - 10/06 22:00:00,37092731.102028798,0.0,47017814.60207165,0.0,16722372.883264259,0.0,30711816.82084071,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,208568612.00018934,0.0,35233267.594637479,69761869.8373822 - 10/06 23:00:00,38946460.41683224,0.0,48810781.72321501,0.0,18277521.674096798,0.0,32696952.185824209,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,215786027.90572093,0.0,35233267.594637479,62010550.96656194 - 10/06 24:00:00,43622871.39238703,0.0,53504231.99781393,0.0,22402185.03338322,0.0,37886398.12115533,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,234375055.46728603,0.0,35233267.594637479,46507913.22492146 - 10/07 01:00:00,52594360.10293575,0.0,62334197.19384314,0.0,30871273.824131796,0.0,48212366.50344469,0.0,2571.26156417546,2531.0079847199228,2534.2694468428487,3050.703694806214,232486271.31031538,0.0,21139960.556782485,23253956.61246073 - 10/07 02:00:00,12766644.73215465,0.0,21285277.776570549,0.0,0.0,0.0,5317713.366415417,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,58620363.92110408,0.0,14093307.03785499,0.0 - 10/07 03:00:00,36961649.842358078,0.0,45168453.38647997,0.0,16020222.69602846,0.0,31167116.81129174,0.0,1286.7220385646115,1266.5781650131235,1268.2102802556884,1526.646581557106,148570808.1715641,0.0,14093307.03785499,0.0 - 10/07 04:00:00,38476572.235942069,0.0,46080507.27786932,0.0,20189560.416796615,0.0,33842048.38847293,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,157836745.32405589,0.0,14093307.03785499,0.0 - 10/07 05:00:00,39893070.09953484,0.0,47301345.879667658,0.0,21843982.802914129,0.0,35466404.82398781,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,163744645.83674107,0.0,14093307.03785499,0.0 - 10/07 06:00:00,43600939.24086504,0.0,51131943.31256032,0.0,25093493.468896554,0.0,39403216.13745462,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,178406990.40997515,0.0,14093307.03785499,0.0 - 10/07 07:00:00,26025497.82568688,0.0,35456084.61448465,0.0,12547286.147522016,0.0,23511873.598990039,0.0,5133.683938970434,5053.315159218059,5059.826871581867,6090.920028825082,174356627.78162719,0.0,14093307.03785499,15502637.741640486 - 10/07 08:00:00,21136114.884023806,0.0,36207901.575673799,0.0,17467820.704323338,0.0,27211246.099196227,0.0,20616.19187478895,20293.441545042337,20319.591715781644,24460.324691012527,410505462.6390687,0.0,56373228.15141996,38756594.35410121 - 10/07 09:00:00,11440873.374915492,231819.32716198494,34420300.673619758,0.0,15575636.498189824,0.0,27557824.006768049,0.0,18067.144190297884,17784.299677576353,17807.21656291664,21435.976916495933,359335329.00372567,231819.32716198494,56373228.15141996,38756594.35410121 - 10/07 10:00:00,0.0,8609083.031643255,29400513.740156805,0.0,14862275.31801175,0.0,24124495.796417778,0.0,12912.66995454923,12710.51969755456,12726.898499520636,15320.389994157906,261601006.17940275,8609083.031643255,28186614.07570998,0.0 - 10/07 11:00:00,0.0,11369333.5331942,32251935.43025291,0.0,17959101.868379766,0.0,28043744.465978348,0.0,10337.2232616991,10175.392103130107,10188.50413443567,12264.720803935379,232931806.85613198,11369333.5331942,28186614.07570998,0.0 - 10/07 12:00:00,0.0,19299226.963703455,31884725.153460735,0.0,18595216.171384645,0.0,26871097.685908617,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,154728794.0302356,19299226.963703455,28186614.07570998,0.0 - 10/07 13:00:00,0.0,25318685.269498,24582003.972807934,0.0,15049061.01533445,0.0,19779782.925289599,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,136810048.454906,25318685.269498,28186614.07570998,0.0 - 10/07 14:00:00,0.0,27281336.3257737,13454705.796365887,0.0,7513991.138585425,0.0,11338819.088508398,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,109722927.51648729,27281336.3257737,28186614.07570998,0.0 - 10/07 15:00:00,0.0,22941354.016159629,8910397.22738178,0.0,1534764.8662296967,0.0,5945021.49723319,0.0,7760.439717490662,7638.948586004744,7648.792150949086,9207.465490606974,132510508.99302995,22941354.016159629,28186614.07570998,0.0 - 10/07 16:00:00,0.0,2388507.1323124805,13676410.327070067,0.0,2285717.6913395149,0.0,8888047.248308609,0.0,12934.178662433676,12731.69168260463,12748.097766834422,15345.909255024946,218385733.78754983,2388507.1323124805,28186614.07570998,0.0 - 10/07 17:00:00,0.0,0.0,16063051.455902275,0.0,1502132.7361894805,0.0,9021863.89233695,0.0,12933.77181994282,12731.291209308865,12747.69677748794,15345.426551939678,220116518.97567416,0.0,35233267.594637479,0.0 - 10/07 18:00:00,11690921.340084484,0.0,31910218.96554759,0.0,13315895.29823745,0.0,23172572.88770093,0.0,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,351043548.717167,0.0,14093307.03785499,0.0 - 10/07 19:00:00,8597063.225700768,0.0,21817228.53432815,0.0,2625916.0669470059,0.0,10245477.228205076,0.0,18106.73880912745,17823.27443526177,17846.24154355541,21482.954420317692,314218838.20492538,0.0,63419881.67034747,0.0 - 10/07 20:00:00,0.0,0.0,11014233.421438883,0.0,0.0,0.0,0.0,0.0,10345.041353971941,10183.087801709953,10196.20974970862,12273.996671982175,165808241.4999806,0.0,63419881.67034747,69761869.8373822 - 10/07 21:00:00,4491564.822115408,0.0,15444171.564744872,0.0,0.0,0.0,572280.0906936347,0.0,10345.041353971941,10183.087801709953,10196.20974970862,12273.996671982175,175302024.5560956,0.0,49326574.63249246,69761869.8373822 - 10/07 22:00:00,8312969.066034885,0.0,18171816.163662226,0.0,0.0,0.0,4676908.5280415019,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,108571166.086237,0.0,35233267.594637479,69761869.8373822 - 10/07 23:00:00,10713148.356129256,0.0,19739281.199896229,0.0,0.0,0.0,6731703.89261979,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,114592239.99645102,0.0,35233267.594637479,62010550.96656194 - 10/07 24:00:00,16314734.978754759,0.0,24868212.91468334,0.0,2244418.508118612,0.0,12412665.16730206,0.0,2586.0124040632515,2545.527897457504,2548.8080699700087,3068.205003258903,94534823.71795759,0.0,35233267.594637479,46507913.22492146 - 10/08 01:00:00,24550426.663531517,0.0,32525649.204325119,0.0,11094965.73943046,0.0,21609834.72240226,0.0,2586.581068365668,2546.087659214182,2549.3685530368445,3068.87970174647,128484177.46619676,0.0,21139960.556782485,23253956.61246073 - 10/08 02:00:00,0.0,0.0,1782243.4932732369,0.0,0.0,0.0,0.0,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,21132043.62864174,0.0,14093307.03785499,0.0 - 10/08 03:00:00,6250722.738556688,0.0,15347579.066923915,0.0,0.0,0.0,1456108.6349677207,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,42406778.52257292,0.0,14093307.03785499,0.0 - 10/08 04:00:00,12271668.427945562,0.0,18078519.35004398,0.0,0.0,0.0,8952476.314254333,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,58655032.17436847,0.0,14093307.03785499,0.0 - 10/08 05:00:00,10566169.381343466,0.0,15458370.489766188,0.0,611741.0369323567,0.0,6707287.755376176,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,52694685.68781348,0.0,14093307.03785499,0.0 - 10/08 06:00:00,8550912.943469957,0.0,12840807.447177854,0.0,0.0,0.0,4793036.945486366,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,45533846.20711391,0.0,14093307.03785499,0.0 - 10/08 07:00:00,1121027.4628646498,0.0,2129825.4910366118,0.0,0.0,0.0,161849.1624703951,0.0,5172.766922336719,5091.786291188822,5098.3475775328429,6137.290496699989,80813390.75230181,0.0,14093307.03785499,15502637.741640486 - 10/08 08:00:00,2509155.7405508055,1620407.6483721382,8646683.039321382,0.0,2001052.7391765866,0.0,5898349.709720572,0.0,20681.89908746576,20358.120099047024,20384.353614704763,24538.283790655056,328520804.95951077,1620407.6483721382,56373228.15141996,38756594.35410121 - 10/08 09:00:00,0.0,7902746.153547155,0.0,0.0,0.0,0.0,0.0,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,7902746.153547155,56373228.15141996,38756594.35410121 - 10/08 10:00:00,0.0,5387120.431923481,1084981.3610670502,0.0,0.0,0.0,0.0,0.0,12899.919272181049,12697.968629497489,12714.331258131313,15305.261796251525,194107912.802888,5387120.431923481,28186614.07570998,0.0 - 10/08 11:00:00,0.0,9233172.540855648,949096.68440737,0.0,0.0,0.0,1223276.644057888,0.0,10320.933482594228,10159.357343555976,10172.448712437195,12245.393602846543,156605652.63762746,9233172.540855648,28186614.07570998,0.0 - 10/08 12:00:00,0.0,3325131.237028797,2512312.7482532525,0.0,0.0,0.0,2647234.7453464579,0.0,5158.942264496314,5078.1780609458969,5084.721811696284,6120.88806789198,82353376.23170942,3325131.237028797,28186614.07570998,0.0 - 10/08 13:00:00,0.0,3267924.51689005,985015.1004490587,0.0,0.0,0.0,1297731.4916139239,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,79506716.66755826,3267924.51689005,28186614.07570998,0.0 - 10/08 14:00:00,0.0,0.0,10330727.8796912,0.0,3838594.9414390616,0.0,8828542.868998204,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,100371355.3072093,0.0,28186614.07570998,0.0 - 10/08 15:00:00,12594239.640180424,0.0,22264038.33793175,0.0,10344311.192562849,0.0,17896298.96251318,0.0,7759.697881169731,7638.218363269808,7648.060987247623,9206.585330129823,179208113.35572935,0.0,28186614.07570998,0.0 - 10/08 16:00:00,21607293.569979945,0.0,28851541.26554081,0.0,13853402.196980343,0.0,22855686.774419436,0.0,12932.244602686838,12729.787900923928,12746.191531936709,15343.61456696292,280674542.77595797,0.0,28186614.07570998,0.0 - 10/08 17:00:00,23664749.401463324,0.0,30028683.41856095,0.0,13857275.636839373,0.0,22818663.577309718,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,283848044.05381539,0.0,35233267.594637479,0.0 - 10/08 18:00:00,26496986.67862674,0.0,31978003.87639868,0.0,16190797.191702754,0.0,25242588.481140164,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,370778517.0553671,0.0,14093307.03785499,0.0 - 10/08 19:00:00,12862799.17348722,0.0,18211972.0394184,0.0,2555897.0525795689,0.0,8634182.00293342,0.0,18101.907574457302,17818.518834471648,17841.479814688282,21477.222344801125,313125713.1147247,0.0,63419881.67034747,0.0 - 10/08 20:00:00,0.0,0.0,3336783.616276865,0.0,0.0,0.0,0.0,0.0,10341.433187319008,10179.536121579074,10192.653492875379,12269.715719980657,158076802.2945917,0.0,63419881.67034747,69761869.8373822 - 10/08 21:00:00,0.0,0.0,3997036.107255088,0.0,0.0,1259060.9470315264,0.0,0.0,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,158680599.76994214,1259060.9470315264,49326574.63249246,69761869.8373822 - 10/08 22:00:00,345949.79690050249,0.0,5781730.508335713,0.0,0.0,282338.3195584641,0.0,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,83473908.53887508,282338.3195584641,35233267.594637479,69761869.8373822 - 10/08 23:00:00,2579326.226853474,0.0,7297488.202175755,0.0,0.0,0.0,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,87227351.16459884,0.0,35233267.594637479,62010550.96656194 - 10/08 24:00:00,4819721.706458083,0.0,9262760.17924679,0.0,0.0,0.0,0.0,0.0,2583.7746941389575,2543.325219299519,2546.602553436395,3065.5500458523677,52743790.931522939,0.0,35233267.594637479,46507913.22492146 - 10/09 01:00:00,11308471.01608286,0.0,15445736.753031854,0.0,0.0,0.0,3887295.6973950958,0.0,2583.4269021737229,2542.982872082381,2546.2597650699246,3065.1374039616528,69297608.46234545,0.0,21139960.556782485,23253956.61246073 - 10/09 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 - 10/09 03:00:00,0.0,0.0,1355109.7086422812,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,20704198.579622017,0.0,14093307.03785499,0.0 - 10/09 04:00:00,5227118.668112209,0.0,11464302.299091354,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,36045273.840460468,0.0,14093307.03785499,0.0 - 10/09 05:00:00,16218268.952323946,0.0,21091031.702393865,0.0,0.0,0.0,9352211.758155153,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,65998378.65271644,0.0,14093307.03785499,0.0 - 10/09 06:00:00,23429400.216956729,0.0,29022277.09646719,0.0,8667929.24155277,0.0,18747216.26663844,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,99191121.22276125,0.0,14093307.03785499,0.0 - 10/09 07:00:00,20056803.927892586,0.0,26431780.282236339,0.0,7014039.854534017,0.0,16230008.020961198,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,146986455.91204519,0.0,14093307.03785499,15502637.741640486 - 10/09 08:00:00,20818300.072840226,0.0,30775322.27130188,0.0,13820905.224171073,0.0,21791515.846702845,0.0,20684.93698148548,20361.11043426914,20387.347803279037,24541.88813594591,396717063.49294248,0.0,56373228.15141996,38756594.35410121 - 10/09 09:00:00,12943801.466612069,0.0,34112023.60133496,0.0,17290877.605481946,0.0,26851742.04472404,0.0,18094.199765366968,17810.931692570517,17833.8828959804,21468.07732354061,361943974.75700357,0.0,56373228.15141996,38756594.35410121 - 10/09 10:00:00,16129861.208378315,0.0,37036181.84076622,0.0,21716670.649818988,0.0,32810126.156393105,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,301061502.25379148,0.0,28186614.07570998,0.0 - 10/09 11:00:00,20423282.999816996,0.0,37215191.52771184,0.0,22609256.42454662,0.0,33735343.66502728,0.0,10338.990510863428,10177.131685679089,10190.245958614321,12266.817577608806,268686543.25505909,0.0,28186614.07570998,0.0 - 10/09 12:00:00,18878987.167821878,0.0,36069204.27685963,0.0,22164343.36697847,0.0,32829055.251541947,0.0,5169.7713615334209,5088.837626448721,5095.395113137258,6133.73637815446,187297455.7885878,0.0,28186614.07570998,0.0 - 10/09 13:00:00,17842111.344174554,0.0,34906528.20612773,0.0,21608104.93804678,0.0,31467664.72223167,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,183167466.8981192,0.0,28186614.07570998,0.0 - 10/09 14:00:00,18064108.322664989,0.0,34085739.663306917,0.0,21241853.17484333,0.0,31327132.41087327,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,182004322.10161508,0.0,28186614.07570998,0.0 - 10/09 15:00:00,21921993.571386629,0.0,36542557.13199899,0.0,21766656.32886678,0.0,32679411.586200917,0.0,7746.994624915723,7625.713978862246,7635.540489664457,9191.513401497543,228829763.60023723,0.0,28186614.07570998,0.0 - 10/09 16:00:00,27782963.3504717,0.0,40724496.883834477,0.0,22659111.460529198,0.0,34625845.294220227,0.0,12914.625609727518,12712.444736586205,12728.826019161559,15322.710304374998,319035401.0005166,0.0,28186614.07570998,0.0 - 10/09 17:00:00,32360475.756249314,0.0,44234915.258568819,0.0,23095429.109943279,0.0,36165276.005406368,0.0,12899.011716387015,12697.075281658717,12713.436759122667,15304.185015945439,328865447.7133776,0.0,35233267.594637479,0.0 - 10/09 18:00:00,46182627.81918236,0.0,56693933.65983042,0.0,31905652.05582928,0.0,47420841.671382118,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,452125137.16009429,0.0,14093307.03785499,0.0 - 10/09 19:00:00,35468513.28685756,0.0,45995713.78229993,0.0,19946077.06341193,0.0,33303367.524640494,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,404571841.3855971,0.0,63419881.67034747,0.0 - 10/09 20:00:00,25493104.040523318,0.0,36222547.276516977,0.0,8693899.035780844,0.0,20083055.81246792,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,244433518.73487709,0.0,63419881.67034747,69761869.8373822 - 10/09 21:00:00,31605051.13246738,0.0,42355098.749185059,0.0,13266485.657470627,0.0,26126839.661084035,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,267180832.5460598,0.0,49326574.63249246,69761869.8373822 - 10/09 22:00:00,36310606.10613263,0.0,46984065.34310854,0.0,16895307.843176679,0.0,30872767.033302428,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,207988048.4632281,0.0,35233267.594637479,69761869.8373822 - 10/09 23:00:00,39987789.257688898,0.0,50682135.55993371,0.0,19696675.198083726,0.0,34589769.45122893,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,221809926.84284318,0.0,35233267.594637479,62010550.96656194 - 10/09 24:00:00,45862549.77165334,0.0,56533900.64545431,0.0,24703715.865834129,0.0,40909507.836034949,0.0,2564.204613739438,2524.061512159449,2527.314023043469,3042.3308924942327,206378153.86814849,0.0,35233267.594637479,46507913.22492146 - 10/10 01:00:00,54563596.10182795,0.0,64916097.62227771,0.0,32948519.431468063,0.0,50862844.63844104,0.0,2565.543206263963,2525.3791487682885,2528.633357561567,3043.9190814273636,241679567.052491,0.0,21139960.556782485,23253956.61246073 - 10/10 02:00:00,20117500.762028219,0.0,28962013.811926426,0.0,3068146.1836019887,0.0,12483580.500178619,0.0,1275.75854085953,1255.7863029098535,1257.4045117365959,1513.6388100324628,83720558.65367364,0.0,14093307.03785499,0.0 - 10/10 03:00:00,49003078.894178349,0.0,58896838.724260199,0.0,26981424.680802835,0.0,44170454.900241959,0.0,1274.3275985246117,1254.3777622441303,1255.9941560224584,1511.9410515745092,198119703.2455999,0.0,14093307.03785499,0.0 - 10/10 04:00:00,52086263.18271615,0.0,61496907.37591629,0.0,30605058.36163126,0.0,47981006.11923609,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,211228352.9745632,0.0,14093307.03785499,0.0 - 10/10 05:00:00,55051390.28598443,0.0,64450173.27981002,0.0,33321612.630884928,0.0,51156573.04680252,0.0,1271.3061930939646,1251.4036574791426,1253.0162188199204,1508.356269365182,223002445.66301144,0.0,14093307.03785499,0.0 - 10/10 06:00:00,56397564.359454978,0.0,65704747.910413239,0.0,34633950.50736479,0.0,52569134.80099688,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,228346557.8781337,0.0,14093307.03785499,0.0 - 10/10 07:00:00,27984576.43890607,0.0,42884899.70691307,0.0,16765981.510747996,0.0,29583483.058169426,0.0,5114.86941092339,5034.795176117439,5041.283023592727,6068.597309491954,193753302.42718844,0.0,14093307.03785499,15502637.741640486 - 10/10 08:00:00,14118961.973852888,0.0,35219541.94526587,0.0,13975768.49399813,0.0,22903501.015788888,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,393532076.74420037,0.0,56373228.15141996,38756594.35410121 - 10/10 09:00:00,5771510.616818664,5468455.592182042,38013915.908844728,0.0,18120523.40494919,0.0,28820214.38886356,0.0,18039.167890440334,17756.761351912035,17779.64275130893,21402.784104635954,360648246.27334627,5468455.592182042,56373228.15141996,38756594.35410121 - 10/10 10:00:00,0.0,21032091.511687228,34601396.21915073,0.0,18519010.234506057,0.0,29297486.02235034,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,275368459.9866502,21032091.511687228,28186614.07570998,0.0 - 10/10 11:00:00,0.0,31452094.357051437,35656656.0768474,0.0,21021336.713911795,0.0,32093152.79270345,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,243208613.27438683,31452094.357051437,28186614.07570998,0.0 - 10/10 12:00:00,0.0,38058993.69518676,36852226.09963156,0.0,22571687.43028601,0.0,32672463.117696585,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,169315110.4930763,38058993.69518676,28186614.07570998,0.0 - 10/10 13:00:00,0.0,46000316.68965034,29117967.575228163,0.0,19131888.033249115,0.0,23876409.571259619,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,149380089.00615794,46000316.68965034,28186614.07570998,0.0 - 10/10 14:00:00,0.0,53112793.81895671,15635057.955373764,0.0,9741169.679424985,0.0,13313652.39300954,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,116028392.57356875,53112793.81895671,28186614.07570998,0.0 - 10/10 15:00:00,0.0,49942545.35033165,7045151.870681815,0.0,1096374.9388611089,0.0,4229869.49180036,0.0,7753.373080961713,7631.992578988937,7641.827180408253,9199.081196115474,128385982.83265102,49942545.35033165,28186614.07570998,0.0 - 10/10 16:00:00,0.0,35785897.17049494,4996295.001059921,0.0,0.0,0.0,472174.2814128286,0.0,12922.28846826952,12719.987631648228,12736.378634013756,15331.801993525789,198826113.50131903,35785897.17049494,28186614.07570998,0.0 - 10/10 17:00:00,0.0,10536460.680343362,14738767.397201766,0.0,0.0,0.0,7978670.145408449,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,215764272.15626548,10536460.680343362,35233267.594637479,0.0 - 10/10 18:00:00,8174729.640320583,0.0,43877631.279912289,0.0,18652095.094171809,0.0,34303953.544875647,0.0,18004.049195088508,17722.192446287336,17745.029300120957,21361.117113164037,374405006.55605939,0.0,14093307.03785499,0.0 - 10/10 19:00:00,13960172.134120048,0.0,37068308.01083897,0.0,12302139.117637862,0.0,23882201.90363878,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,356410696.5214779,0.0,63419881.67034747,0.0 - 10/10 20:00:00,6459917.886346797,0.0,27538232.818511614,0.0,2075577.0561448066,0.0,11555218.076844871,0.0,10274.046014931173,10113.203907946036,10126.235803414687,12189.763412269001,201360642.73666734,0.0,63419881.67034747,69761869.8373822 - 10/10 21:00:00,12345431.455039617,0.0,32435124.162315638,0.0,5715421.024796635,0.0,16413923.230379932,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,220737257.21838454,0.0,49326574.63249246,69761869.8373822 - 10/10 22:00:00,21573085.46856624,0.0,41018171.945660259,0.0,11718083.40337738,0.0,24881361.403835063,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,175829574.97596545,0.0,35233267.594637479,69761869.8373822 - 10/10 23:00:00,25177396.273654388,0.0,43282985.434985969,0.0,13554211.257292998,0.0,27291701.118372758,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,186231596.22181393,0.0,35233267.594637479,62010550.96656194 - 10/10 24:00:00,31466980.554494509,0.0,48451135.34443572,0.0,18103849.17727046,0.0,32960393.789094006,0.0,2564.655229660886,2524.5050736045848,2527.7581560628,3042.8655310839637,169357581.23077876,0.0,35233267.594637479,46507913.22492146 - 10/11 01:00:00,40351844.06055063,0.0,56230139.65055936,0.0,25719032.50929513,0.0,42123637.91473837,0.0,2572.3730302024148,2532.1020505388817,2535.364922477284,3052.0224068199288,202915358.8112821,0.0,21139960.556782485,23253956.61246073 - 10/11 02:00:00,5341203.707817086,0.0,17104405.70574589,0.0,0.0,0.0,3357406.036267482,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,45016404.79380743,0.0,14093307.03785499,0.0 - 10/11 03:00:00,31464103.23739218,0.0,45483724.00613354,0.0,11464247.142930607,0.0,29889012.59749908,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,137488698.16669745,0.0,14093307.03785499,0.0 - 10/11 04:00:00,35277867.43136865,0.0,47298619.6259409,0.0,20090053.92265056,0.0,34558546.67966181,0.0,1283.2067404418513,1263.1178995382534,1264.7455558755719,1522.4758145216302,156425853.29698024,0.0,14093307.03785499,0.0 - 10/11 05:00:00,37674175.92127697,0.0,49022216.51606831,0.0,22301866.35887766,0.0,36683604.91211136,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,164869474.8910763,0.0,14093307.03785499,0.0 - 10/11 06:00:00,40948609.70421718,0.0,51909704.635150779,0.0,24849860.3760916,0.0,39681279.37635542,0.0,1280.7042032962764,1260.65454007854,1262.279022125765,1519.506649726121,176552773.98663116,0.0,14093307.03785499,0.0 - 10/11 07:00:00,17878649.057986443,0.0,33484099.101172359,0.0,10129081.24473095,0.0,20913740.477778507,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,159259127.25757618,0.0,14093307.03785499,15502637.741640486 - 10/11 08:00:00,13786890.975083862,0.0,26545099.45283692,0.0,13757452.87085497,0.0,16802203.497126495,0.0,20611.310367154736,20288.63645832078,20314.7804372154,24454.53296854313,379300983.6283448,0.0,56373228.15141996,38756594.35410121 - 10/11 09:00:00,835499.7471658975,12507296.979118236,26956968.774529816,0.0,8881582.70519816,0.0,17485788.000204125,0.0,18071.876775773868,17788.95817354384,17811.88106183167,21441.59194850929,324571347.8818692,12507296.979118236,56373228.15141996,38756594.35410121 - 10/11 10:00:00,0.0,26780949.06721219,26363016.17106248,0.0,12274693.594317217,0.0,21549634.02997671,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,253556006.19379125,26780949.06721219,28186614.07570998,0.0 - 10/11 11:00:00,0.0,40702480.128424409,23738137.515204178,0.0,12642254.088546228,0.0,20766935.391016693,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,211976842.9862693,40702480.128424409,28186614.07570998,0.0 - 10/11 12:00:00,0.0,50378879.65814301,19823858.241603003,0.0,10696124.848888256,0.0,16725400.976600534,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,124641739.55101073,50378879.65814301,28186614.07570998,0.0 - 10/11 13:00:00,0.0,58519544.81763574,11148142.30024975,0.0,6793310.2639901819,0.0,7390023.935204054,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,102720294.45553145,58519544.81763574,28186614.07570998,0.0 - 10/11 14:00:00,0.0,63034803.57120344,1183365.181532383,0.0,544641.329308928,0.0,533661.3408333272,0.0,5169.963443835032,5089.026701666068,5095.584431997321,6133.96427647309,79620407.72597209,63034803.57120344,28186614.07570998,0.0 - 10/11 15:00:00,0.0,57942580.947697449,0.0,0.0,0.0,0.0,0.0,0.0,7757.079993855047,7635.6414594694019,7645.480762843652,9203.479306761852,116070053.48254782,57942580.947697449,28186614.07570998,0.0 - 10/11 16:00:00,0.0,39890226.82958751,0.0,0.0,0.0,1887246.6293449864,0.0,0.0,12930.79666480328,12728.362630778049,12744.764425184772,15341.896643935266,193484953.31292496,41777473.458932507,28186614.07570998,0.0 - 10/11 17:00:00,0.0,12764007.856729866,1434094.4737231178,0.0,0.0,1368652.35778593,0.0,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,194972623.2062921,14132660.214515794,35233267.594637479,0.0 - 10/11 18:00:00,4017411.8907126134,0.0,30302395.10957499,0.0,4479247.75908904,0.0,17296624.09545196,0.0,18092.234754220408,17808.997444040026,17831.94615497325,21465.74591282429,326811806.2126373,0.0,14093307.03785499,0.0 - 10/11 19:00:00,6950833.6106344279,0.0,22731276.524918017,0.0,3544429.674582028,0.0,11144034.809508892,0.0,18091.20385557733,17807.982684307517,17830.930087619257,21464.522790936102,315071276.5260281,0.0,63419881.67034747,0.0 - 10/11 20:00:00,0.0,0.0,10000829.765334445,0.0,0.0,0.0,0.0,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,164756339.80429767,0.0,63419881.67034747,69761869.8373822 - 10/11 21:00:00,0.0,0.0,15141874.182189763,0.0,0.0,0.0,0.0,0.0,10335.952975426773,10174.141703426345,10187.252123464265,12263.21365776307,169799891.8384794,0.0,49326574.63249246,69761869.8373822 - 10/11 22:00:00,10887655.545141044,0.0,24452922.21475769,0.0,0.0,0.0,10680997.000070494,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,123201801.76422645,0.0,35233267.594637479,69761869.8373822 - 10/11 23:00:00,17351080.64785313,0.0,30710097.4470807,0.0,5797345.571863946,0.0,16507299.2420121,0.0,5156.379821330676,5075.65573330604,5082.196233779815,6117.84782689042,147521309.52391488,0.0,35233267.594637479,62010550.96656194 - 10/11 24:00:00,22024256.727372189,0.0,34471442.683309469,0.0,9500507.105406514,0.0,20874154.961414946,0.0,2580.0551285663138,2539.6638842197996,2542.93650035272,3061.1369232849735,125476014.2486288,0.0,35233267.594637479,46507913.22492146 - 10/12 01:00:00,29846934.560598349,0.0,41396330.03440002,0.0,16752736.32998376,0.0,29410488.751625118,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,156036705.19871743,0.0,21139960.556782485,23253956.61246073 - 10/12 02:00:00,0.0,0.0,4180466.046925514,0.0,0.0,0.0,0.0,0.0,1290.737949351505,1270.5312059674805,1272.1684151067937,1531.411306409016,23493922.003530779,0.0,14093307.03785499,0.0 - 10/12 03:00:00,15888693.964636263,0.0,27879556.72812281,0.0,3032187.96969825,0.0,11247175.450441879,0.0,1290.2735012547228,1270.0740288922962,1271.710648912285,1530.8602564712579,77354120.48080923,0.0,14093307.03785499,0.0 - 10/12 04:00:00,21302561.253113599,0.0,29985042.90510754,0.0,9118410.928965766,0.0,19305179.19654891,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,99021243.88732386,0.0,14093307.03785499,0.0 - 10/12 05:00:00,22275192.381582098,0.0,30343693.63024661,0.0,10646707.87199616,0.0,20337855.283415304,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,102915219.06596375,0.0,14093307.03785499,0.0 - 10/12 06:00:00,23852246.41790986,0.0,31543490.903849357,0.0,12214188.320501354,0.0,21876079.0376723,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,108790688.14129839,0.0,14093307.03785499,0.0 - 10/12 07:00:00,7371868.991648909,0.0,17518841.78239464,0.0,2712504.0987896157,0.0,8503005.752877258,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,55416270.22929846,0.0,14093307.03785499,15502637.741640486 - 10/12 08:00:00,13291858.413538725,0.0,16687882.998309436,0.0,12811951.375564082,0.0,16456397.857491166,0.0,5169.495255431713,5088.5658428395449,5095.122979307161,6133.408788804403,136599824.96388156,0.0,56373228.15141996,38756594.35410121 - 10/12 09:00:00,3774390.3305676567,0.0,22727274.654756976,0.0,9039232.871578867,0.0,18114905.061797464,0.0,12930.911584806105,12728.47575168679,12744.877691861351,15342.032992131853,247142475.7924509,0.0,56373228.15141996,38756594.35410121 - 10/12 10:00:00,0.0,1270945.5418310534,10936299.059194908,0.0,5704331.275506507,0.0,11325200.93239165,0.0,12934.397030831778,12731.906632404723,12748.312993619273,15346.16834079366,221504657.25863103,1270945.5418310534,28186614.07570998,0.0 - 10/12 11:00:00,0.0,15703269.457505066,3921348.9515160156,0.0,2732404.2893015367,0.0,6254812.89224807,0.0,12929.933981755217,12727.513453194037,12743.914153348771,15340.873103429376,206380611.02328427,15703269.457505066,28186614.07570998,0.0 - 10/12 12:00:00,0.0,22527048.579661345,1312272.143809244,0.0,1299716.1520955852,0.0,3834091.407544663,0.0,7757.680785364903,7636.232845476094,7646.072910911575,9204.192122954677,122525122.89639558,22527048.579661345,28186614.07570998,0.0 - 10/12 13:00:00,0.0,22742162.160741286,0.0,0.0,71022.70896934206,0.0,237511.07695759845,0.0,7755.71215779966,7634.2950371426309,7644.132605514287,9201.856421495648,116358120.18495494,22742162.160741286,28186614.07570998,0.0 - 10/12 14:00:00,0.0,24784879.437759494,0.0,0.0,0.0,0.0,0.0,0.0,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,115976224.28089114,24784879.437759494,28186614.07570998,0.0 - 10/12 15:00:00,0.0,34265330.30632145,0.0,0.0,0.0,0.0,0.0,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,116032060.94369234,34265330.30632145,28186614.07570998,0.0 - 10/12 16:00:00,0.0,6513475.48827367,0.0,0.0,0.0,0.0,0.0,0.0,18100.570411840596,17817.202605385155,17840.16188950626,21475.635852399035,270840854.7328718,6513475.48827367,28186614.07570998,0.0 - 10/12 17:00:00,0.0,0.0,9779400.718986888,0.0,0.0,0.0,2778068.7465691955,0.0,23278.04028483631,22913.61822166307,22943.144757486076,27618.506220533254,360869383.60982349,0.0,35233267.594637479,0.0 - 10/12 18:00:00,7528540.890329276,0.0,21616540.55717272,0.0,5029987.020757211,0.0,14734665.809312942,0.0,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,319860905.5592204,0.0,14093307.03785499,0.0 - 10/12 19:00:00,3309241.5816595626,0.0,13426560.57376285,0.0,0.0,0.0,4265013.36353185,0.0,18108.155843164488,17824.669285366614,17847.63819106698,21484.63567711112,291955171.90710738,0.0,63419881.67034747,0.0 - 10/12 20:00:00,0.0,0.0,347257.39592306796,0.0,0.0,1096324.1725508189,0.0,0.0,15520.240889192333,15277.268622773947,15296.954942712786,18414.1733710101,232578353.56840409,1096324.1725508189,63419881.67034747,69761869.8373822 - 10/12 21:00:00,0.0,0.0,1761823.5971481945,0.0,0.0,3980011.1855814035,0.0,0.0,12933.087698752137,12730.617798163044,12747.022498583125,15344.614868261442,195281057.90668328,3980011.1855814035,49326574.63249246,69761869.8373822 - 10/12 22:00:00,0.0,0.0,6263826.8638259,0.0,0.0,576187.9063578304,0.0,0.0,10347.395988142816,10185.405573643628,10198.530508328,12276.790355544006,161093067.59619633,576187.9063578304,35233267.594637479,69761869.8373822 - 10/12 23:00:00,0.0,0.0,9361625.61605496,0.0,0.0,0.0,0.0,0.0,7760.63624747749,7639.142039277966,7648.985853506596,9207.698665934333,125484891.71836195,0.0,35233267.594637479,62010550.96656194 - 10/12 24:00:00,5991532.135313711,0.0,13858729.764443633,0.0,0.0,0.0,519900.53368558877,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,97785573.92647052,0.0,35233267.594637479,46507913.22492146 - 10/13 01:00:00,14147890.727189232,0.0,21493469.55130311,0.0,671067.3337233052,0.0,11545450.599490103,0.0,2586.8298196111215,2546.3325162124835,2549.61372555838,3069.1748356037817,86564901.44085449,0.0,21139960.556782485,23253956.61246073 - 10/13 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,19353655.091546306,0.0,14093307.03785499,0.0 - 10/13 03:00:00,0.0,0.0,1364895.6716418123,0.0,0.0,0.0,0.0,0.0,1293.3534074326945,1273.1057185644959,1274.7462452260652,1534.5144475841749,20717487.01934856,0.0,14093307.03785499,0.0 - 10/13 04:00:00,578658.4573742669,0.0,7553579.447392547,0.0,0.0,0.0,0.0,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,27484512.607049347,0.0,14093307.03785499,0.0 - 10/13 05:00:00,3129277.206589206,0.0,7749492.9277733699,0.0,0.0,0.0,0.0,0.0,1293.3087698752136,1273.0617798163046,1274.7022498583124,1534.4614868261443,30230693.565316086,0.0,14093307.03785499,0.0 - 10/13 06:00:00,6519801.4028073609,0.0,11341260.369683259,0.0,0.0,0.0,2558437.5350131567,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,39772620.05652373,0.0,14093307.03785499,0.0 - 10/13 07:00:00,5809053.397442496,0.0,10559920.037524272,0.0,0.0,0.0,2271865.5658816394,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,37994716.68456624,0.0,14093307.03785499,15502637.741640486 - 10/13 08:00:00,16903149.512825993,0.0,21302203.779908446,0.0,8496405.587387668,0.0,16356584.273053939,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,82411998.24472234,0.0,56373228.15141996,38756594.35410121 - 10/13 09:00:00,28223620.179899504,0.0,34538701.90370544,0.0,15984820.249360083,0.0,29787568.657153448,0.0,5173.555151448472,5092.562180426787,5099.124466583282,6138.225700452527,185947193.9861983,0.0,56373228.15141996,38756594.35410121 - 10/13 10:00:00,20428200.43426706,0.0,26499855.631268335,0.0,14683105.315505622,0.0,23260523.196692759,0.0,7759.852619251282,7638.370678897825,7648.213499149874,9206.768920956867,200983225.16345484,0.0,28186614.07570998,0.0 - 10/13 11:00:00,17572726.297503786,0.0,23743191.531644606,0.0,13287303.777239066,0.0,21100202.294401479,0.0,7759.3467616121029,7637.872740554356,7647.714919162026,9206.168740177754,191807395.2822114,0.0,28186614.07570998,0.0 - 10/13 12:00:00,14967390.922134174,0.0,20495998.670472064,0.0,11583198.849820655,0.0,18390632.60226258,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,142828689.85254628,0.0,28186614.07570998,0.0 - 10/13 13:00:00,8283376.309665691,0.0,13551105.175233216,0.0,8224369.001393052,0.0,13123567.961674942,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,120548809.38065222,0.0,28186614.07570998,0.0 - 10/13 14:00:00,5515850.180082148,0.0,10170928.056564825,0.0,5594694.600460704,0.0,9657020.143524548,0.0,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,146914717.26152338,0.0,28186614.07570998,0.0 - 10/13 15:00:00,6295144.253733905,0.0,10538181.930439627,0.0,4897686.575553403,0.0,8982339.077606924,0.0,10335.09877655583,10173.300877198077,10186.41021374558,12262.20018340947,185358588.0206061,0.0,28186614.07570998,0.0 - 10/13 16:00:00,8989785.95264012,0.0,13160720.956205378,0.0,5558857.948317772,0.0,10209181.096926094,0.0,12920.52042192369,12718.24726439777,12734.63602412246,15329.704274026939,231249734.6981845,0.0,28186614.07570998,0.0 - 10/13 17:00:00,11006793.112483718,0.0,15167393.551408638,0.0,5247575.687232465,0.0,10282325.845753447,0.0,15502.648164833743,15259.95131579711,15279.61532061837,18393.30027511421,273671942.4717866,0.0,35233267.594637479,0.0 - 10/13 18:00:00,14896499.182508497,0.0,19035753.72291799,0.0,7801664.11280195,0.0,13625409.495287279,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,325988489.8342421,0.0,14093307.03785499,0.0 - 10/13 19:00:00,4665971.8444441859,0.0,8997554.522727143,0.0,0.0,0.0,1029078.7502454886,0.0,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,169410084.86601169,0.0,63419881.67034747,0.0 - 10/13 20:00:00,0.0,0.0,0.0,0.0,0.0,2716776.9617770768,0.0,0.0,7753.2451808065729,7631.866681134585,7641.701120321666,9198.92944746365,116012672.7470153,2716776.9617770768,63419881.67034747,69761869.8373822 - 10/13 21:00:00,0.0,0.0,942842.1827686576,0.0,0.0,5101833.970310516,0.0,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,78280039.75411631,5101833.970310516,49326574.63249246,69761869.8373822 - 10/13 22:00:00,0.0,0.0,3957196.6157512355,0.0,0.0,2495985.064652356,0.0,0.0,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,81298978.44709477,2495985.064652356,35233267.594637479,69761869.8373822 - 10/13 23:00:00,0.0,0.0,4876577.022435775,0.0,0.0,1114846.0557285883,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,82227113.75800538,1114846.0557285883,35233267.594637479,62010550.96656194 - 10/13 24:00:00,3549295.50642634,0.0,8377332.533983993,0.0,0.0,0.0,0.0,0.0,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,89281335.33620522,0.0,35233267.594637479,46507913.22492146 - 10/14 01:00:00,11249553.452970982,0.0,15461332.608994756,0.0,0.0,0.0,2062964.0538971727,0.0,2584.563639067845,2544.101813148368,2547.3801480056829,3066.486098894614,67446964.23268235,0.0,21139960.556782485,23253956.61246073 - 10/14 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 - 10/14 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2818195339226,1272.050906574184,1273.6900740028414,1533.243049447307,19336557.058409718,0.0,14093307.03785499,0.0 - 10/14 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2818195339226,1272.050906574184,1273.6900740028414,1533.243049447307,19336557.058409718,0.0,14093307.03785499,0.0 - 10/14 05:00:00,0.0,0.0,884305.6615861538,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,20219751.119422039,0.0,14093307.03785499,0.0 - 10/14 06:00:00,0.0,0.0,1883149.0519442685,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,21221825.87589299,0.0,14093307.03785499,0.0 - 10/14 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,77346228.23363887,0.0,14093307.03785499,15502637.741640486 - 10/14 08:00:00,9142540.076713315,0.0,11815775.53360483,0.0,0.0,0.0,4295972.355091944,0.0,20653.075932074356,20329.748175530225,20355.945131068653,24504.086217030635,334288567.60594406,0.0,56373228.15141996,38756594.35410121 - 10/14 09:00:00,9056970.122381142,0.0,13601105.926393576,0.0,1246496.4565827307,0.0,5808424.00591006,0.0,18065.030909374054,17782.219480459615,17805.1336852536,21433.469589348697,300022069.703237,0.0,56373228.15141996,38756594.35410121 - 10/14 10:00:00,13510438.430161404,0.0,16569884.682281759,0.0,5412598.845156705,0.0,12937513.504526608,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,241508344.8849618,0.0,28186614.07570998,0.0 - 10/14 11:00:00,12156100.691547275,0.0,15120144.214487823,0.0,6863797.3052851,0.0,12072718.133457743,0.0,10319.935417744839,10158.374903597993,10171.46500650505,12244.20943700122,200631105.4982347,0.0,28186614.07570998,0.0 - 10/14 12:00:00,5357698.523085454,0.0,8176719.687169049,0.0,3828769.8437899069,0.0,7244839.639586259,0.0,5155.647257242486,5074.9346376453099,5081.474208913725,6116.978667563472,101752552.87054464,0.0,28186614.07570998,0.0 - 10/14 13:00:00,272925.7428835465,0.0,2585106.04189267,0.0,1131746.3820128153,0.0,2897688.3467375568,0.0,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,83968285.92510602,0.0,28186614.07570998,0.0 - 10/14 14:00:00,0.0,0.0,1238122.3033072339,0.0,47512.12541310523,0.0,842780.5808916978,0.0,5147.387576862043,5066.804264102064,5073.333358554319,6107.178872083459,79149349.66737882,0.0,28186614.07570998,0.0 - 10/14 15:00:00,0.0,0.0,1849970.1488557244,0.0,0.0,0.0,932779.0183375185,0.0,7723.13659377023,7602.229449645048,7612.025698234345,9163.206758260454,118344903.76686952,0.0,28186614.07570998,0.0 - 10/14 16:00:00,276232.13762695106,0.0,6473187.983782973,0.0,926336.8114987534,0.0,4012079.015089499,0.0,12898.648870783803,12696.718116471113,12713.079133691264,15303.754513487898,204691758.2319609,0.0,28186614.07570998,0.0 - 10/14 17:00:00,9215739.221830098,0.0,13892144.089903128,0.0,3473031.1031367576,0.0,8583666.713337085,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,228242490.55104245,0.0,35233267.594637479,0.0 - 10/14 18:00:00,18378617.701565878,0.0,22788247.282048726,0.0,9867898.527863907,0.0,16661995.109006746,0.0,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,338270557.06460157,0.0,14093307.03785499,0.0 - 10/14 19:00:00,5382918.185715933,0.0,9506931.96125435,0.0,0.0,0.0,1002868.3111827325,0.0,18083.98831521606,17800.880104576663,17823.81835548947,21455.961827731564,286485453.4290025,0.0,63419881.67034747,0.0 - 10/14 20:00:00,0.0,0.0,0.0,0.0,0.0,2484415.058207997,0.0,0.0,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,154717479.74859489,2484415.058207997,63419881.67034747,69761869.8373822 - 10/14 21:00:00,0.0,0.0,3686002.287879609,0.0,0.0,1614058.4945261155,0.0,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,158498302.58460114,1614058.4945261155,49326574.63249246,69761869.8373822 - 10/14 22:00:00,5076512.652719319,0.0,11202978.272062347,0.0,0.0,0.0,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,93694546.64225501,0.0,35233267.594637479,69761869.8373822 - 10/14 23:00:00,9499086.206174184,0.0,14702228.981899096,0.0,0.0,0.0,335103.0159470449,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,101951770.71200495,0.0,35233267.594637479,62010550.96656194 - 10/14 24:00:00,15601529.751291587,0.0,20978709.253208285,0.0,0.0,0.0,8961212.085197898,0.0,2586.581068365668,2546.087659214182,2549.3685530368445,3068.87970174647,84244752.22620517,0.0,35233267.594637479,46507913.22492146 - 10/15 01:00:00,25416537.3189939,0.0,30840430.5315172,0.0,9508132.860742346,0.0,20064895.96152336,0.0,2586.5261748882428,2546.0336251043866,2549.3144492985827,3068.8145727309176,124532476.43205647,0.0,21139960.556782485,23253956.61246073 - 10/15 02:00:00,0.0,0.0,2008256.5516955073,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,21354965.148059545,0.0,14093307.03785499,0.0 - 10/15 03:00:00,12596815.389312884,0.0,19444632.494727725,0.0,0.0,0.0,4383780.628210147,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,55758685.90666357,0.0,14093307.03785499,0.0 - 10/15 04:00:00,20201383.046542456,0.0,24967098.677542874,0.0,5469882.874081941,0.0,14899635.336760907,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,84869012.52080246,0.0,14093307.03785499,0.0 - 10/15 05:00:00,23331884.262065926,0.0,28154981.102841993,0.0,9300889.904964963,0.0,18413606.77089036,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,98519670.58735377,0.0,14093307.03785499,0.0 - 10/15 06:00:00,26275016.799047445,0.0,31232643.266106897,0.0,11984789.565352943,0.0,21546598.393952066,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,110349097.62804739,0.0,14093307.03785499,0.0 - 10/15 07:00:00,11090136.16662295,0.0,19550762.522532986,0.0,3219583.8682901419,0.0,9555279.82897482,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,120688996.57278294,0.0,14093307.03785499,15502637.741640486 - 10/15 08:00:00,13447683.355999118,0.0,20070424.191120194,0.0,12781393.58533727,0.0,16119253.284869053,0.0,20670.580428519184,20346.978635817748,20373.197794562933,24524.85463387472,371714955.7913141,0.0,56373228.15141996,38756594.35410121 - 10/15 09:00:00,18584301.510078115,0.0,38135561.76113867,0.0,18023471.494405129,0.0,30473789.90655261,0.0,18096.905177650733,17813.594751120287,17836.549386152925,21471.287191943356,376003136.09689679,0.0,56373228.15141996,38756594.35410121 - 10/15 10:00:00,19949891.810692043,0.0,33635849.564321469,0.0,20190160.357744926,0.0,30140146.584232447,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,297408558.4151679,0.0,28186614.07570998,0.0 - 10/15 11:00:00,16064806.270464518,0.0,29957630.445506578,0.0,18470697.87792227,0.0,27662036.945720748,0.0,10346.324273462673,10184.350636856729,10197.474212147377,12275.51880698588,246968376.08564369,0.0,28186614.07570998,0.0 - 10/15 12:00:00,12624666.852963433,0.0,28492214.929517729,0.0,17716657.76246163,0.0,26319680.95769088,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,162561327.0504394,0.0,28186614.07570998,0.0 - 10/15 13:00:00,8656019.114413128,0.0,28289902.83130982,0.0,17217679.839656306,0.0,24797097.297902097,0.0,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,156371398.68526919,0.0,28186614.07570998,0.0 - 10/15 14:00:00,8285365.084869694,0.0,24820035.215400019,0.0,14192989.844902199,0.0,21411220.478306299,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,146123657.08177573,0.0,28186614.07570998,0.0 - 10/15 15:00:00,0.0,0.0,13855412.270493044,0.0,6866742.339622461,0.0,11741549.23346488,0.0,7760.6262988271159,7639.13224637557,7648.976047985045,9207.68686224043,148586821.08312179,0.0,28186614.07570998,0.0 - 10/15 16:00:00,2069678.8692695313,0.0,25117942.880457123,0.0,12411028.796737804,0.0,20335133.59002175,0.0,12933.156672372612,12730.685691988623,12747.090479896826,15344.696702829253,253454050.50600059,0.0,28186614.07570998,0.0 - 10/15 17:00:00,23165148.183795506,0.0,33843181.68737415,0.0,16379486.868141786,0.0,26477791.703094566,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,293358118.5405831,0.0,35233267.594637479,0.0 - 10/15 18:00:00,36658211.663571,0.0,46388395.42339675,0.0,25186918.909062126,0.0,37909592.0582457,0.0,18071.876775773868,17788.958173543844,17811.88106183167,21441.59194850929,416554626.70904687,0.0,14093307.03785499,0.0 - 10/15 19:00:00,28476583.67132234,0.0,38142182.806126248,0.0,15239113.226503183,0.0,26335953.52392234,0.0,18054.981617347312,17772.327511974247,17795.228969957185,21421.546487964028,378352537.74194809,0.0,63419881.67034747,0.0 - 10/15 20:00:00,15833498.457435955,0.0,25342137.734170218,0.0,2345213.726240417,0.0,10708885.315771679,0.0,10322.188010037782,10160.592231138371,10173.68519129828,12246.882051770062,208681786.17689843,0.0,63419881.67034747,69761869.8373822 - 10/15 21:00:00,18439366.299592467,0.0,27595408.242960354,0.0,4374091.106025447,0.0,13331981.197625392,0.0,10325.903594812038,10164.249647739844,10177.34732085435,12251.290451272129,218248494.49904574,0.0,49326574.63249246,69761869.8373822 - 10/15 22:00:00,21728541.25016916,0.0,30529890.715458953,0.0,7033497.092867695,0.0,16684283.587747213,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,153230036.4726641,0.0,35233267.594637479,69761869.8373822 - 10/15 23:00:00,24015885.97020866,0.0,32621770.771011458,0.0,8781834.013223282,0.0,18944826.18546404,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,161624747.98412783,0.0,35233267.594637479,62010550.96656194 - 10/15 24:00:00,27870530.902615295,0.0,36281524.74439082,0.0,12189800.215076857,0.0,23151354.99716337,0.0,2581.4758987030097,2541.062411934961,2544.3368302135875,3062.822612818032,138120122.77245686,0.0,35233267.594637479,46507913.22492146 - 10/16 01:00:00,35959271.92409621,0.0,44095108.94357621,0.0,19851774.285562964,0.0,32454666.44832646,0.0,2581.912885301814,2541.4925574270416,2544.7675299920385,3063.3410807367097,170994272.19400919,0.0,21139960.556782485,23253956.61246073 - 10/16 02:00:00,2175602.8588598587,0.0,7346184.677478434,0.0,0.0,0.0,0.0,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.2776147430043,28833557.43506186,0.0,14093307.03785499,0.0 - 10/16 03:00:00,23284780.10239423,0.0,31242100.311477826,0.0,6884279.352842698,0.0,17294747.647667186,0.0,1289.094955332669,1268.91393332651,1270.5490584449536,1529.461956722605,97994779.06815818,0.0,14093307.03785499,0.0 - 10/16 04:00:00,26993957.40717346,0.0,33554571.48938508,0.0,12336491.283119355,0.0,23141719.461681315,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,115319768.74416583,0.0,14093307.03785499,0.0 - 10/16 05:00:00,27440047.06957587,0.0,33832183.87920579,0.0,13551746.428372574,0.0,23862462.397817527,0.0,1289.9011716387016,1269.707528165872,1271.3436759122668,1530.4185015945439,117987374.93329273,0.0,14093307.03785499,0.0 - 10/16 06:00:00,28120065.92171003,0.0,34326620.84978834,0.0,14559213.663334087,0.0,24755005.84827196,0.0,1289.508311689401,1269.3208185123656,1270.956467943901,1529.952388261085,121055963.03416872,0.0,14093307.03785499,0.0 - 10/16 07:00:00,23970758.055717548,0.0,29879834.79252022,0.0,11614808.136159689,0.0,20627572.720521816,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,163281174.99465472,0.0,14093307.03785499,15502637.741640486 - 10/16 08:00:00,34847933.006797287,0.0,40861706.36857721,0.0,24066875.59686845,0.0,34270206.06112816,0.0,20642.42679283388,20319.265750551152,20345.44919841508,24491.451419824447,442921656.41521957,0.0,56373228.15141996,38756594.35410121 - 10/16 09:00:00,40574506.8522077,0.0,48449187.98244928,0.0,30534994.81968131,0.0,43495484.56802163,0.0,18074.871540416003,17791.90605458683,17814.832741520266,21445.145122439986,433510493.874627,0.0,56373228.15141996,38756594.35410121 - 10/16 10:00:00,34584308.55108657,0.0,46975128.45284553,0.0,28927422.086712246,0.0,41369938.59477656,0.0,12917.386859574628,12715.162758551849,12731.547543575927,15325.986421915206,345141098.5864443,0.0,28186614.07570998,0.0 - 10/16 11:00:00,23926828.234376197,0.0,38813701.46343769,0.0,24865026.95154647,0.0,35781089.900800649,0.0,10338.419859554519,10176.569968022875,10189.683517127574,12266.140521613885,278081576.4689089,0.0,28186614.07570998,0.0 - 10/16 12:00:00,17905765.68679696,0.0,35270384.465325798,0.0,23026398.39291423,0.0,33012196.735076548,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,186562210.23948748,0.0,28186614.07570998,0.0 - 10/16 13:00:00,6635934.385872603,0.0,30130050.981034854,0.0,19961510.02604273,0.0,27619124.886294474,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,161733454.6647008,0.0,28186614.07570998,0.0 - 10/16 14:00:00,0.0,0.0,22437160.118931056,0.0,14736737.955802136,0.0,20848487.590107304,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,135419389.70411135,0.0,28186614.07570998,0.0 - 10/16 15:00:00,7392920.779384268,0.0,27844320.216313214,0.0,15781967.957494768,0.0,24118799.011212838,0.0,7758.546950883663,7637.0854510120739,7646.926615116812,9205.219795279112,191230011.68865506,0.0,28186614.07570998,0.0 - 10/16 16:00:00,12785051.829825161,0.0,28939943.56847533,0.0,14393060.179206934,0.0,23219146.416961977,0.0,12932.012539894626,12729.559471118018,12745.962807775679,15343.339233318344,272840348.5820534,0.0,28186614.07570998,0.0 - 10/16 17:00:00,20775822.68025552,0.0,32712408.798988336,0.0,15718496.733167304,0.0,25550082.166068458,0.0,12928.085613428424,12725.694021418214,12742.092377049397,15338.680084966194,288201197.9271836,0.0,35233267.594637479,0.0 - 10/16 18:00:00,32466527.421794695,0.0,42780152.141532149,0.0,23104761.381248956,0.0,34948439.30928956,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,403984674.164027,0.0,14093307.03785499,0.0 - 10/16 19:00:00,21376034.466415164,0.0,31414374.620569379,0.0,11035191.251654122,0.0,20526537.67880814,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,354931359.3812525,0.0,63419881.67034747,0.0 - 10/16 20:00:00,8396381.654396443,0.0,18051310.392289398,0.0,0.0,0.0,4455942.253703781,0.0,10335.290214259592,10173.489317908874,10186.598897281467,12262.42731693736,185551734.9873839,0.0,63419881.67034747,69761869.8373822 - 10/16 21:00:00,10854099.464997644,0.0,20213100.40312832,0.0,0.0,0.0,6922958.00032485,0.0,10338.419859554519,10176.569968022875,10189.683517127574,12266.140521613885,192685087.78719867,0.0,49326574.63249246,69761869.8373822 - 10/16 22:00:00,14349165.8940228,0.0,23445675.595172075,0.0,1723238.4910981898,0.0,10289821.114700294,0.0,5169.495255431714,5088.5658428395449,5095.122979307161,6133.408788804403,127159635.41397152,0.0,35233267.594637479,69761869.8373822 - 10/16 23:00:00,18221816.3007438,0.0,27198163.13314566,0.0,5109633.827846259,0.0,14047168.670170257,0.0,5166.227599913832,5085.349343078375,5091.902334757748,6129.531840266515,141879621.95676524,0.0,35233267.594637479,62010550.96656194 - 10/16 24:00:00,23296286.09886034,0.0,32177879.258623374,0.0,9332788.420158402,0.0,19424298.17872712,0.0,2582.9251219455038,2542.4889473172418,2545.7652038323119,3064.542060874999,122879848.75866144,0.0,35233267.594637479,46507913.22492146 - 10/17 01:00:00,34259425.62484469,0.0,43043626.28565021,0.0,19085373.849703909,0.0,31539765.457672966,0.0,2579.2830881924735,2538.9039302820358,2542.1755671367407,3060.220926852004,166522291.86273948,0.0,21139960.556782485,23253956.61246073 - 10/17 02:00:00,444832.86829039858,0.0,5615639.800863912,0.0,0.0,0.0,0.0,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,25375580.430209407,0.0,14093307.03785499,0.0 - 10/17 03:00:00,18195712.894238939,0.0,27109023.28912677,0.0,2640116.2461209546,0.0,10801379.520884499,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,78062957.24659485,0.0,14093307.03785499,0.0 - 10/17 04:00:00,24154138.93453989,0.0,31190633.763201316,0.0,10749455.284259044,0.0,20571955.500057047,0.0,1289.6415440962367,1269.4519651410179,1271.0877835683703,1530.110463426002,105963233.80449116,0.0,14093307.03785499,0.0 - 10/17 05:00:00,26230678.813909845,0.0,33076720.24153418,0.0,12691585.824872736,0.0,22957843.369979707,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,114261511.71166198,0.0,14093307.03785499,0.0 - 10/17 06:00:00,28401308.60757397,0.0,35169086.712457958,0.0,14651625.622595858,0.0,25184492.715355927,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,122695385.31175998,0.0,14093307.03785499,0.0 - 10/17 07:00:00,17050769.884959159,0.0,26371947.458740228,0.0,7648443.853608139,0.0,16184815.671422696,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,144428093.27995674,0.0,14093307.03785499,15502637.741640486 - 10/17 08:00:00,15734899.824381784,0.0,30486770.149881048,0.0,14120320.05918944,0.0,22568954.350144179,0.0,20642.42679283388,20319.265750551152,20345.44919841508,24491.451419824443,391785879.76544496,0.0,56373228.15141996,38756594.35410121 - 10/17 09:00:00,32706122.664191877,0.0,46569495.28891219,0.0,29076059.914972664,0.0,41665392.33462456,0.0,18070.33129092107,17787.436883544724,17810.357811495112,21439.758289726222,420405453.5951749,0.0,56373228.15141996,38756594.35410121 - 10/17 10:00:00,29978382.175993913,0.0,41607535.21525873,0.0,26437734.694754013,0.0,38374150.412742588,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,329626326.88485208,0.0,28186614.07570998,0.0 - 10/17 11:00:00,11089079.373230968,0.0,31212974.704722193,0.0,20592677.69619079,0.0,30396430.159909477,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,248046671.97301669,0.0,28186614.07570998,0.0 - 10/17 12:00:00,144055.7108013891,0.0,27690031.022486248,0.0,18434183.90666227,0.0,26716410.675907397,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,150383881.8573313,0.0,28186614.07570998,0.0 - 10/17 13:00:00,0.0,5153556.812047113,26905690.738767156,0.0,17436253.465782476,0.0,23006326.894986959,0.0,5173.052349776485,5092.067250208773,5098.628898597165,6137.629145461835,144753230.6180959,5153556.812047113,28186614.07570998,0.0 - 10/17 14:00:00,0.0,13150233.970376933,18675765.155916349,0.0,12166453.695813448,0.0,17136122.696519648,0.0,5173.052349776485,5092.067250208773,5098.628898597165,6137.629145461835,125383301.06680876,13150233.970376933,28186614.07570998,0.0 - 10/17 15:00:00,0.0,2027959.3188102297,18999836.414038928,0.0,10564985.945986143,0.0,16750817.9654386,0.0,7759.399963706876,7637.925109760411,7647.767355851148,9206.231862432354,162420407.7757665,2027959.3188102297,28186614.07570998,0.0 - 10/17 16:00:00,0.0,0.0,24031435.115066798,0.0,11686352.83367409,0.0,19633614.762902269,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,248831892.44805599,0.0,28186614.07570998,0.0 - 10/17 17:00:00,12433958.471024096,0.0,29114387.84842969,0.0,12690483.247005979,0.0,22284833.540001207,0.0,12925.739761424817,12723.38489416534,12739.780274250372,15335.896821110588,269932949.409885,0.0,35233267.594637479,0.0 - 10/17 18:00:00,30909163.3763216,0.0,44562185.14302496,0.0,23360987.70652329,0.0,36070017.712950948,0.0,18087.917706996854,17804.7479809961,17827.691216062463,21460.62390108537,405553884.8373276,0.0,14093307.03785499,0.0 - 10/17 19:00:00,20115574.162036167,0.0,32679729.46037776,0.0,11020780.299705947,0.0,21194014.81517889,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,355694892.64746037,0.0,63419881.67034747,0.0 - 10/17 20:00:00,8765549.605012715,0.0,20433790.428843537,0.0,0.0,0.0,6129080.551528835,0.0,10333.909487659703,10172.13020684148,10185.23803486074,12260.789137532165,189955861.30620379,0.0,63419881.67034747,69761869.8373822 - 10/17 21:00:00,12414821.090581246,0.0,23374525.39080628,0.0,745182.4210485441,0.0,9433289.89135376,0.0,10337.2232616991,10175.392103130107,10188.50413443567,12264.720803935379,200644843.88531078,0.0,49326574.63249246,69761869.8373822 - 10/17 22:00:00,19283750.63330634,0.0,29983405.805745916,0.0,6216635.174717016,0.0,16005346.554928357,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,148715163.64033775,0.0,35233267.594637479,69761869.8373822 - 10/17 23:00:00,27031276.893704758,0.0,37780470.38204685,0.0,11775800.240282704,0.0,23405053.883033664,0.0,5150.27817098033,5069.649605430191,5076.1823663951649,6110.608451664047,177056788.339159,0.0,35233267.594637479,62010550.96656194 - 10/17 24:00:00,33010755.4047004,0.0,43288926.24464295,0.0,16717078.567024172,0.0,29411359.76590579,0.0,2574.474612464462,2534.1707321385667,2537.4362697843564,3054.515853951521,160950270.86829338,0.0,35233267.594637479,46507913.22492146 - 10/18 01:00:00,43586952.33180803,0.0,53622575.22013098,0.0,26162982.908170787,0.0,41074236.13709533,0.0,2570.498179023578,2530.2565505050026,2533.517044328245,3049.797967463708,202909397.66595904,0.0,21139960.556782485,23253956.61246073 - 10/18 02:00:00,9126985.624867741,0.0,16798724.7930554,0.0,0.0,0.0,3570677.9290170788,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,48709777.6909172,0.0,14093307.03785499,0.0 - 10/18 03:00:00,34244472.34848243,0.0,43849906.35923224,0.0,12899649.145185203,0.0,29458234.57149893,0.0,1283.4209847426085,1263.3287898045147,1264.9567178954667,1522.7300072062706,139656233.8231347,0.0,14093307.03785499,0.0 - 10/18 04:00:00,36460378.96474046,0.0,45071823.26531383,0.0,19792336.606478029,0.0,33247879.93225772,0.0,1284.6597814213297,1264.5481928901334,1266.1776923064227,1524.199792177797,153794926.4204545,0.0,14093307.03785499,0.0 - 10/18 05:00:00,39376390.37239321,0.0,47859663.73820969,0.0,22528481.096737565,0.0,36300038.03411052,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,165248813.11603684,0.0,14093307.03785499,0.0 - 10/18 06:00:00,44038820.16086018,0.0,52741870.914486508,0.0,26300369.432100648,0.0,41087841.85751088,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,183302492.7930712,0.0,14093307.03785499,0.0 - 10/18 07:00:00,29210326.341289008,0.0,41843300.132973168,0.0,17163935.25730131,0.0,29563559.76213043,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,194375987.65428064,0.0,14093307.03785499,15502637.741640486 - 10/18 08:00:00,14170532.12916183,0.0,32595341.564120395,0.0,13951512.591264509,0.0,20971149.028369957,0.0,20570.09251340368,20248.06387775938,20274.15557474279,24405.629558449713,389481124.8005967,0.0,56373228.15141996,38756594.35410121 - 10/18 09:00:00,4775150.112072384,5818231.096283213,32659373.149871157,0.0,12555285.99656227,0.0,23661799.956538354,0.0,18049.290223950382,17766.725218402673,17789.61945725853,21414.793866952412,343725152.77467456,5818231.096283213,56373228.15141996,38756594.35410121 - 10/18 10:00:00,0.0,24430911.110032124,29471804.900868574,0.0,15893758.33170353,0.0,25165670.67211529,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,263682311.51523829,24430911.110032124,28186614.07570998,0.0 - 10/18 11:00:00,0.0,34952231.44827104,29710563.75670787,0.0,17485605.296124165,0.0,26989575.363512789,0.0,10334.609049491935,10172.818816902727,10185.927532266336,12261.619140942192,228823652.75891633,34952231.44827104,28186614.07570998,0.0 - 10/18 12:00:00,0.0,37074968.93447824,29730168.805958015,0.0,17726951.4944259,0.0,26330028.844923114,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,151147008.2842626,37074968.93447824,28186614.07570998,0.0 - 10/18 13:00:00,0.0,46763871.70118094,22230233.7711384,0.0,14634029.530147093,0.0,18092773.562202388,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,132316896.00244347,46763871.70118094,28186614.07570998,0.0 - 10/18 14:00:00,0.0,54526813.00086676,11086156.413014178,0.0,6423981.034003641,0.0,8993998.814558523,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,103901140.3008472,54526813.00086676,28186614.07570998,0.0 - 10/18 15:00:00,0.0,48321913.108991067,4392559.452479119,0.0,183283.85771231846,0.0,1497972.1090599253,0.0,7759.743205097005,7638.262977642545,7648.105659110533,9206.639105239412,122183718.82877355,48321913.108991067,28186614.07570998,0.0 - 10/18 16:00:00,0.0,30960054.245381047,4873126.456977124,0.0,0.0,0.0,83978.62870926909,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,198449615.1838635,30960054.245381047,28186614.07570998,0.0 - 10/18 17:00:00,0.0,5384602.404761747,17108909.715326936,0.0,0.0,0.0,10562125.903459143,0.0,12916.489419344149,12714.279367915595,12730.663014600672,15324.921643339141,220941908.0215045,5384602.404761747,35233267.594637479,0.0 - 10/18 18:00:00,9835962.47316892,0.0,40855115.71173316,0.0,17952465.005380718,0.0,31426712.033269407,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,370283347.44004598,0.0,14093307.03785499,0.0 - 10/18 19:00:00,10308531.128431637,0.0,29894963.67404181,0.0,7785851.493234551,0.0,17611059.76788956,0.0,18074.871540416,17791.90605458683,17814.832741520266,21445.145122439986,336056725.71586468,0.0,63419881.67034747,0.0 - 10/18 20:00:00,0.0,0.0,16539862.918238217,0.0,0.0,0.0,1870416.5069817885,0.0,10333.191535475318,10171.423494332477,10184.530411680536,12259.937314671313,173026977.3473947,0.0,63419881.67034747,69761869.8373822 - 10/18 21:00:00,3888436.8604627118,0.0,20262431.955440359,0.0,0.0,0.0,5878422.535902966,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,184612110.86068834,0.0,49326574.63249246,69761869.8373822 - 10/18 22:00:00,12489392.240346361,0.0,28127473.6628282,0.0,2759706.0493676776,0.0,13774862.211686869,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,134289746.70386229,0.0,35233267.594637479,69761869.8373822 - 10/18 23:00:00,19096142.92284315,0.0,34130242.5706205,0.0,8123580.595756901,0.0,19646180.19164881,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,158098480.48898003,0.0,35233267.594637479,62010550.96656194 - 10/18 24:00:00,24436956.08315967,0.0,38537567.0636398,0.0,12155249.602705395,0.0,24500383.648966079,0.0,2577.905242483881,2537.547655005048,2540.8175441606265,3058.586165514363,138203640.18426106,0.0,35233267.594637479,46507913.22492146 - 10/19 01:00:00,33645915.73092307,0.0,46734192.173957448,0.0,20246124.643782155,0.0,34232969.28621074,0.0,2578.189910665338,2537.82786665302,2541.0981168899077,3058.92391344521,173436945.14242596,0.0,21139960.556782485,23253956.61246073 - 10/19 02:00:00,1193667.5734510967,0.0,9270384.744100122,0.0,0.0,0.0,0.0,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,29752923.971327478,0.0,14093307.03785499,0.0 - 10/19 03:00:00,23301868.36447028,0.0,35416111.55264083,0.0,8746266.841502933,0.0,20405103.801197813,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,107132928.53625003,0.0,14093307.03785499,0.0 - 10/19 04:00:00,29061221.425647409,0.0,38871705.787235308,0.0,14772841.775529692,0.0,27213207.06100805,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,129182554.02585864,0.0,14093307.03785499,0.0 - 10/19 05:00:00,31529326.061735106,0.0,40719260.605240877,0.0,17115634.837331326,0.0,29429553.411645473,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,138052314.07470338,0.0,14093307.03785499,0.0 - 10/19 06:00:00,34106565.80308454,0.0,42848337.369028668,0.0,19192963.59386059,0.0,31725180.440104046,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,147121104.21105273,0.0,14093307.03785499,0.0 - 10/19 07:00:00,21387218.362241888,0.0,32773547.94157521,0.0,11050639.955326599,0.0,21258365.731828795,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,105730847.43398255,0.0,14093307.03785499,15502637.741640486 - 10/19 08:00:00,14021482.791875478,0.0,27632040.004798306,0.0,13771869.93385634,0.0,18038397.24607957,0.0,5159.604686554806,5078.830112663488,5085.374703649068,6121.674006378175,150667530.60989363,0.0,56373228.15141996,38756594.35410121 - 10/19 09:00:00,5047429.991994206,3365219.6181259469,30059684.390059424,0.0,10845734.748998916,0.0,22391992.852947706,0.0,12916.48941934415,12714.279367915595,12730.663014600672,15324.921643339141,261615714.38671867,3365219.6181259469,56373228.15141996,38756594.35410121 - 10/19 10:00:00,0.0,25061760.70377059,23172420.358805464,0.0,9898352.927898514,0.0,18270102.70920347,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,244814836.74140144,25061760.70377059,28186614.07570998,0.0 - 10/19 11:00:00,0.0,38184038.1094194,20832541.40534391,0.0,10515744.109955198,0.0,17824568.64130182,0.0,12934.367309635489,12731.877376499306,12748.283700014634,15346.13307772879,242711235.4265625,38184038.1094194,28186614.07570998,0.0 - 10/19 12:00:00,0.0,45430541.08194143,18556976.94003422,0.0,9702300.970485386,0.0,15354744.249342833,0.0,7759.3467616121029,7637.872740554356,7647.714919162026,9206.168740177754,159717993.5412849,45430541.08194143,28186614.07570998,0.0 - 10/19 13:00:00,0.0,50944432.037762258,8757805.060809376,0.0,4687960.761347349,0.0,5072335.174134324,0.0,7753.690917203536,7632.305439445101,7642.140444017049,9199.458296683842,134537443.34674938,50944432.037762258,28186614.07570998,0.0 - 10/19 14:00:00,0.0,49171195.89452191,275665.9503478032,0.0,0.0,0.0,0.0,0.0,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,116227543.34616745,49171195.89452191,28186614.07570998,0.0 - 10/19 15:00:00,0.0,35646716.1602749,0.0,0.0,0.0,0.0,0.0,0.0,7744.903474527883,7623.655565823832,7633.479424150745,9189.03233138649,115887854.86520022,35646716.1602749,28186614.07570998,0.0 - 10/19 16:00:00,0.0,26834279.97131466,0.0,0.0,0.0,0.0,0.0,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,270629163.3207264,26834279.97131466,28186614.07570998,0.0 - 10/19 17:00:00,0.0,6877933.88806075,1831501.1369447369,0.0,0.0,667895.5754457013,0.0,0.0,23276.148000168057,22911.755561064303,22941.27969665901,27616.26109700732,350115100.8145801,7545829.463506452,35233267.594637479,0.0 - 10/19 18:00:00,4084956.7977864767,0.0,26612513.00705642,0.0,1881798.6719937502,0.0,14089750.34809189,0.0,18102.697703208847,17819.29659361019,17842.25857604885,21478.159802403763,317541704.4559065,0.0,14093307.03785499,0.0 - 10/19 19:00:00,10807118.476824787,0.0,23910610.491461804,0.0,4837310.992984669,0.0,12557367.457434744,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,322797201.32886758,0.0,63419881.67034747,0.0 - 10/19 20:00:00,0.0,0.0,9025158.150578147,0.0,0.0,0.0,0.0,0.0,15521.121575986781,15278.135522252336,15297.822959279636,18415.218272273833,241269432.13783146,0.0,63419881.67034747,69761869.8373822 - 10/19 21:00:00,0.0,0.0,10358977.2093885,0.0,0.0,0.0,0.0,0.0,12933.9305812204,12731.447485149029,12747.853254705475,15345.614916135237,203890823.66334505,0.0,49326574.63249246,69761869.8373822 - 10/19 22:00:00,4607771.3435031049,0.0,14932581.538965475,0.0,0.0,0.0,329365.3614518058,0.0,10346.871930806692,10184.88972052286,10198.013990477837,12276.168581519194,174691117.44789607,0.0,35233267.594637479,69761869.8373822 - 10/19 23:00:00,9318618.445457099,0.0,18415483.352584024,0.0,0.0,0.0,5826191.355782057,0.0,7759.399963706876,7637.925109760411,7647.767355851148,9206.231862432354,149665060.604126,0.0,35233267.594637479,62010550.96656194 - 10/19 24:00:00,14838765.761708225,0.0,23381199.242214804,0.0,753259.6071356151,0.0,11225183.311039569,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,127595411.96136905,0.0,35233267.594637479,46507913.22492146 - 10/20 01:00:00,24450112.70368393,0.0,32460704.579375887,0.0,11213677.449080354,0.0,21869108.828984716,0.0,2585.722872690404,2545.242898752311,2548.5227040148949,3067.861485337112,128684063.41998588,0.0,21139960.556782485,23253956.61246073 - 10/20 02:00:00,0.0,0.0,2083226.1503745567,0.0,0.0,0.0,0.0,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,21427664.90524496,0.0,14093307.03785499,0.0 - 10/20 03:00:00,7489414.818696633,0.0,16902151.221610954,0.0,0.0,0.0,2640825.6011892857,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,46376830.39636727,0.0,14093307.03785499,0.0 - 10/20 04:00:00,13682775.971169688,0.0,19483023.11491358,0.0,1667076.1815601465,0.0,10156470.018026863,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,64335331.83135193,0.0,14093307.03785499,0.0 - 10/20 05:00:00,18673610.709884444,0.0,24506918.176769627,0.0,7114494.840952479,0.0,15568233.762296468,0.0,1290.7379493515048,1270.5312059674805,1272.1684151067937,1531.411306409016,85176713.44650828,0.0,14093307.03785499,0.0 - 10/20 06:00:00,22652060.606996344,0.0,28553241.22401938,0.0,10699366.660680559,0.0,19615006.93821404,0.0,1290.2735012547228,1270.0740288922964,1271.710648912285,1530.8602564712579,100826181.79782036,0.0,14093307.03785499,0.0 - 10/20 07:00:00,13191795.438060932,0.0,21385320.446411238,0.0,5155546.7037771199,0.0,12323716.139355135,0.0,1289.7724978315119,1269.5808687711379,1271.2168533039747,1530.2658350340947,71355388.52539101,0.0,14093307.03785499,15502637.741640486 - 10/20 08:00:00,13793067.197864717,0.0,18010359.038354555,0.0,13573281.801364443,0.0,16503717.980225714,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,81204724.41895554,0.0,56373228.15141996,38756594.35410121 - 10/20 09:00:00,3513461.2996216535,2716492.1888935726,15073627.088029458,0.0,8198896.360887444,0.0,13403736.490955135,0.0,5172.520676985971,5091.5439008549769,5098.104874854311,6136.9983359910879,117586725.27876455,2716492.1888935726,56373228.15141996,38756594.35410121 - 10/20 10:00:00,0.0,18526369.272716226,11927731.360079535,0.0,4719114.75987384,0.0,9217370.35157514,0.0,7760.1539481050199,7638.667290392145,7648.510492858379,9207.126436139397,141980265.8745103,18526369.272716226,28186614.07570998,0.0 - 10/20 11:00:00,0.0,38200506.39125261,9759213.402970585,0.0,5335654.090911162,0.0,9993636.319457885,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,141211532.57531659,38200506.39125261,28186614.07570998,0.0 - 10/20 12:00:00,0.0,31045693.023861164,7894517.990101373,0.0,4371039.259750378,0.0,7949002.827643886,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,97610915.56141459,31045693.023861164,28186614.07570998,0.0 - 10/20 13:00:00,0.0,43832360.04406245,2405866.6865361884,0.0,1079691.5167582485,0.0,1101163.9647843757,0.0,5169.963443835032,5089.026701666068,5095.584431997321,6133.96427647309,81945462.04237625,43832360.04406245,28186614.07570998,0.0 - 10/20 14:00:00,0.0,47582861.43706924,0.0,0.0,0.0,0.0,0.0,0.0,7752.785624653624,7631.414319418941,7641.2481756917809,9198.384201630513,116005796.35702148,47582861.43706924,28186614.07570998,0.0 - 10/20 15:00:00,0.0,26354404.598914818,0.0,0.0,0.0,0.0,0.0,0.0,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,26354404.598914818,28186614.07570998,0.0 - 10/20 16:00:00,0.0,13329146.75214324,0.0,0.0,0.0,0.0,0.0,0.0,12923.538049279316,12721.217650234206,12737.610237604227,15333.284573694473,193376341.83892403,13329146.75214324,28186614.07570998,0.0 - 10/20 17:00:00,0.0,2063691.1559965874,6857677.552512751,0.0,0.0,0.0,0.0,0.0,15517.88025796115,15274.944947665063,15294.628273311351,18411.372572165135,239053451.33648248,2063691.1559965874,35233267.594637479,0.0 - 10/20 18:00:00,2800404.1395840838,0.0,22017996.44400377,0.0,2924951.476745091,0.0,14733798.016472742,0.0,18108.15124411414,17824.664758315255,17847.63365818205,21484.630220513438,313431437.64885529,0.0,14093307.03785499,0.0 - 10/20 19:00:00,3201270.8447366955,0.0,14082343.805891145,0.0,0.0,0.0,4283853.460160881,0.0,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,176398489.58053134,0.0,63419881.67034747,0.0 - 10/20 20:00:00,0.0,0.0,3437389.3764706978,0.0,0.0,0.0,0.0,0.0,7760.439717490662,7638.948586004744,7648.792150949086,9207.465490606974,119557714.77865598,0.0,63419881.67034747,69761869.8373822 - 10/20 21:00:00,0.0,0.0,9510476.058128255,0.0,0.0,0.0,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,86909676.59960225,0.0,49326574.63249246,69761869.8373822 - 10/20 22:00:00,2404759.164021484,0.0,13814312.314072844,0.0,0.0,0.0,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,93628543.80659274,0.0,35233267.594637479,69761869.8373822 - 10/20 23:00:00,7188965.082727334,0.0,16518883.95771033,0.0,0.0,0.0,3231808.4267247847,0.0,5173.052349776485,5092.067250208773,5098.628898597165,6137.629145461835,104344616.98572177,0.0,35233267.594637479,62010550.96656194 - 10/20 24:00:00,12607469.412905483,0.0,21443303.65022929,0.0,0.0,0.0,9277654.588661103,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,120727628.19326988,0.0,35233267.594637479,46507913.22492146 - 10/21 01:00:00,22721355.56950195,0.0,31096743.686713805,0.0,9533686.631202912,0.0,20408497.85448787,0.0,2585.617122685685,2545.138804283643,2548.4184754098798,3067.7360169932387,122449161.25164733,0.0,21139960.556782485,23253956.61246073 - 10/21 02:00:00,0.0,0.0,2527333.579520069,0.0,0.0,0.0,0.0,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,21860790.973932886,0.0,14093307.03785499,0.0 - 10/21 03:00:00,8368403.621371871,0.0,18461527.086972573,0.0,0.0,0.0,3617669.835419564,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,49782228.680204119,0.0,14093307.03785499,0.0 - 10/21 04:00:00,11068909.641402703,0.0,17273714.80468023,0.0,441650.81093265317,0.0,7844614.664813057,0.0,1293.377181994282,1273.1291209308868,1274.7696777487939,1534.5426551939677,55981837.01095318,0.0,14093307.03785499,0.0 - 10/21 05:00:00,11730109.124037844,0.0,17354467.776528654,0.0,2294544.253411164,0.0,8960708.278548528,0.0,1293.0911584806107,1272.8475751686795,1274.4877691861353,1534.2032992131854,59688496.71990119,0.0,14093307.03785499,0.0 - 10/21 06:00:00,11239565.799458078,0.0,16408122.767786056,0.0,2393979.1258612854,0.0,8418286.618607156,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,57813836.91086638,0.0,14093307.03785499,0.0 - 10/21 07:00:00,7286310.0348686859,0.0,12567061.18144127,0.0,0.0,0.0,4177756.5011729106,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,101446183.43495623,0.0,14093307.03785499,15502637.741640486 - 10/21 08:00:00,18164361.52435146,0.0,22603593.034617559,0.0,12556952.985335146,0.0,16819984.34125584,0.0,20694.791976285633,20370.811147287255,20397.061016656,24553.580711088012,379803373.3503009,0.0,56373228.15141996,38756594.35410121 - 10/21 09:00:00,33098034.68814661,0.0,38234385.637727778,0.0,20610123.319745117,0.0,32961126.61880378,0.0,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,395854841.5460715,0.0,56373228.15141996,38756594.35410121 - 10/21 10:00:00,30124493.927562156,0.0,35462700.6118827,0.0,21186022.476644689,0.0,30994527.856727665,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,311306273.60538616,0.0,28186614.07570998,0.0 - 10/21 11:00:00,30677818.35384724,0.0,36312710.72860615,0.0,21109158.455176295,0.0,31335215.400209384,0.0,10347.517624665423,10185.525305923782,10198.650394895418,12276.934672634929,274265963.73106947,0.0,28186614.07570998,0.0 - 10/21 12:00:00,28311225.610604377,0.0,33549689.72759408,0.0,19566023.962994115,0.0,29097580.17401109,0.0,5173.697994071408,5092.702786821814,5099.265254164,6138.395177772003,187939139.84138889,0.0,28186614.07570998,0.0 - 10/21 13:00:00,25728741.04936102,0.0,30414200.669067328,0.0,17916752.467863189,0.0,26594105.938994349,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,178066283.12136574,0.0,28186614.07570998,0.0 - 10/21 14:00:00,21351019.44974791,0.0,27479600.552843378,0.0,15675304.755777499,0.0,23591127.17179099,0.0,5172.318665921312,5091.345052311221,5097.9057700739099,6136.758657574106,165491033.25532977,0.0,28186614.07570998,0.0 - 10/21 15:00:00,5640907.226301723,0.0,18747490.177139924,0.0,10120747.460000035,0.0,16026385.181356427,0.0,7758.716000056018,7637.2518536881,7647.09323221967,9205.420365669108,166630063.27067653,0.0,28186614.07570998,0.0 - 10/21 16:00:00,0.0,0.0,11374012.854566519,0.0,3510643.4368782148,0.0,8477628.564997692,0.0,12929.467975608171,12727.054742460157,12743.454851519291,15340.320204924456,216827356.84468589,0.0,28186614.07570998,0.0 - 10/21 17:00:00,8664034.115528718,0.0,20485014.368141999,0.0,7699990.053076332,0.0,14723120.397670817,0.0,12933.887878621179,12731.405451066965,12747.811166458205,15345.564251131318,245103366.42461748,0.0,35233267.594637479,0.0 - 10/21 18:00:00,26099894.98457753,0.0,33160741.01635956,0.0,16592371.146342952,0.0,26037131.08209333,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,372830365.3280038,0.0,14093307.03785499,0.0 - 10/21 19:00:00,13625565.585760683,0.0,20319250.170401567,0.0,3724914.841322086,0.0,10454775.176081617,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,319078239.5515121,0.0,63419881.67034747,0.0 - 10/21 20:00:00,4978836.410501907,0.0,12000370.55390907,0.0,0.0,0.0,0.0,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,171734717.0033742,0.0,63419881.67034747,69761869.8373822 - 10/21 21:00:00,11515023.85972974,0.0,18654786.15771683,0.0,0.0,0.0,5165543.2574083129,0.0,10340.076490866182,10178.20066446231,10191.316314885813,12268.106051427669,190055071.552766,0.0,49326574.63249246,69761869.8373822 - 10/21 22:00:00,17746695.852920005,0.0,25001052.816475154,0.0,2395825.761892737,0.0,11992439.492990528,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,134396444.9684988,0.0,35233267.594637479,69761869.8373822 - 10/21 23:00:00,20407117.087584497,0.0,27510046.297673245,0.0,5875657.048182308,0.0,14909174.33351538,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,145987483.296882,0.0,35233267.594637479,62010550.96656194 - 10/21 24:00:00,23205840.15896706,0.0,30137884.877252044,0.0,8579144.788323572,0.0,18016351.653184154,0.0,2583.652262372984,2543.204704225682,2546.481883066584,3065.404785235548,118598698.56336972,0.0,35233267.594637479,46507913.22492146 - 10/22 01:00:00,31046628.783319054,0.0,37741456.12393635,0.0,16084760.366004682,0.0,27036880.5650452,0.0,2583.4773719149259,2543.03255171037,2546.309508715185,3065.1972843830415,150566586.01850993,0.0,21139960.556782485,23253956.61246073 - 10/22 02:00:00,0.0,0.0,2441930.537259342,0.0,0.0,0.0,0.0,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915207,21770360.62736168,0.0,14093307.03785499,0.0 - 10/22 03:00:00,19251156.42577701,0.0,26989059.205965148,0.0,4740049.414200311,0.0,11611473.575978786,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,81855316.59835944,0.0,14093307.03785499,0.0 - 10/22 04:00:00,25348082.66466985,0.0,31145949.222228387,0.0,11247696.595671762,0.0,21266664.0417794,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,108292970.65925768,0.0,14093307.03785499,0.0 - 10/22 05:00:00,22786543.160100409,0.0,28060645.99738986,0.0,10451750.824108752,0.0,19217684.379933943,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,99833349.65775664,0.0,14093307.03785499,0.0 - 10/22 06:00:00,21606647.084649519,0.0,26565451.177037125,0.0,10205154.56130842,0.0,18385132.71295222,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,96079110.83217097,0.0,14093307.03785499,0.0 - 10/22 07:00:00,17097283.563573377,0.0,22706266.69259623,0.0,7029386.438099339,0.0,14189739.677061754,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,138276500.19775177,0.0,14093307.03785499,15502637.741640486 - 10/22 08:00:00,16395351.711681519,0.0,26239171.883369306,0.0,13627394.821674167,0.0,19034477.012442545,0.0,20670.580428519184,20346.978635817748,20373.197794562933,24524.85463387472,384592596.803156,0.0,56373228.15141996,38756594.35410121 - 10/22 09:00:00,12299528.00970533,0.0,28153846.719953918,0.0,15066929.840841948,0.0,23132718.473612548,0.0,18100.76802492766,17817.397124802483,17840.35665958171,21475.87031278349,349496834.68365696,0.0,56373228.15141996,38756594.35410121 - 10/22 10:00:00,0.0,1370495.8877050088,21955913.098315427,0.0,11803615.425957712,0.0,18603821.8187167,0.0,12933.722548816115,12731.24270953084,12747.648215213,15345.368093628635,245892083.98486877,1370495.8877050088,28186614.07570998,0.0 - 10/22 11:00:00,0.0,37307139.58144846,12986193.72243694,0.0,7600642.7745708939,0.0,12344641.320708557,0.0,10340.447442243982,10178.565808527088,10191.68192947599,12268.546171077343,187656746.68248425,37307139.58144846,28186614.07570998,0.0 - 10/22 12:00:00,0.0,51347676.74595156,10220234.201142747,0.0,6181990.64541703,0.0,9231911.395618439,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,102929702.41233702,51347676.74595156,28186614.07570998,0.0 - 10/22 13:00:00,0.0,58302362.74559082,3045421.395596559,0.0,2286135.0356776707,0.0,1087245.6049919828,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,83670725.83898086,58302362.74559082,28186614.07570998,0.0 - 10/22 14:00:00,0.0,46354895.86100778,0.0,0.0,0.0,0.0,0.0,0.0,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692029,46354895.86100778,28186614.07570998,0.0 - 10/22 15:00:00,0.0,29921791.841135399,0.0,0.0,0.0,0.0,0.0,0.0,7736.820520542294,7615.699151990761,7625.512757666354,9179.44221502791,115766908.72281835,29921791.841135399,28186614.07570998,0.0 - 10/22 16:00:00,0.0,5751237.0007131439,0.0,0.0,0.0,0.0,0.0,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,5751237.0007131439,28186614.07570998,0.0 - 10/22 17:00:00,0.0,0.0,6599462.280784328,0.0,0.0,0.0,783316.2254893858,0.0,12918.873470694787,12716.626096497594,12733.012767181974,15327.75022926184,200689323.73536403,0.0,35233267.594637479,0.0 - 10/22 18:00:00,960062.5982704138,0.0,15387618.448978618,0.0,3478860.698819772,0.0,9990232.595466346,0.0,18085.221682874773,17802.094163634596,17825.03397898642,21457.425171378094,300427964.33028116,0.0,14093307.03785499,0.0 - 10/22 19:00:00,0.0,0.0,2886450.93621774,0.0,0.0,0.0,0.0,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,273515614.2569441,0.0,63419881.67034747,0.0 - 10/22 20:00:00,0.0,2177744.4452348637,0.0,0.0,0.0,4381190.580186591,0.0,716792.3438237027,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154701073.4711392,7275727.369245158,63419881.67034747,69761869.8373822 - 10/22 21:00:00,0.0,4687268.124953016,0.0,0.0,0.0,9284799.180925396,0.0,6400319.823350644,10340.94954373288,10179.060049523512,10192.176807352382,12269.141895327528,154732781.8653707,20372387.129229059,49326574.63249246,69761869.8373822 - 10/22 22:00:00,0.0,0.0,0.0,0.0,0.0,5712934.471872927,0.0,241679.66795798334,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,5954614.139830911,35233267.594637479,69761869.8373822 - 10/22 23:00:00,0.0,0.0,1339901.3796377434,0.0,0.0,3748821.953991557,0.0,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,78706292.3123231,3748821.953991557,35233267.594637479,62010550.96656194 - 10/22 24:00:00,0.0,0.0,3584914.762385847,0.0,0.0,1873049.9363983996,0.0,0.0,2582.4770040741007,2542.0478448147116,2545.3235329241845,3064.01038612629,42226806.32696728,1873049.9363983996,35233267.594637479,46507913.22492146 - 10/23 01:00:00,0.0,0.0,9629798.161945712,0.0,0.0,0.0,0.0,0.0,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,48265523.60430302,0.0,21139960.556782485,23253956.61246073 - 10/23 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5928738006206,1270.3884016014093,1272.025426722721,1531.239179805766,19311285.174949863,0.0,14093307.03785499,0.0 - 10/23 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 - 10/23 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,0.0,14093307.03785499,0.0 - 10/23 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 - 10/23 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 - 10/23 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,77295566.1701588,0.0,14093307.03785499,15502637.741640486 - 10/23 08:00:00,799998.5220298987,0.0,6311986.003318224,0.0,0.0,0.0,0.0,0.0,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,315887299.47778698,0.0,56373228.15141996,38756594.35410121 - 10/23 09:00:00,0.0,20023774.8359424,0.0,0.0,0.0,7611639.072123349,0.0,819655.6153481364,18056.2979257371,17773.623213310635,17796.526340936995,21423.108237621927,270178400.583384,28455069.52341388,56373228.15141996,38756594.35410121 - 10/23 10:00:00,0.0,42395202.512446958,0.0,0.0,0.0,0.0,0.0,337621.85172083068,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,42732824.36416779,28186614.07570998,0.0 - 10/23 11:00:00,0.0,4467993.969216955,3163570.061364239,0.0,0.0,0.0,1399214.7980937444,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,159272199.45104779,4467993.969216955,28186614.07570998,0.0 - 10/23 12:00:00,0.0,9669496.58624621,9869173.347676056,0.0,3703204.1291599778,0.0,9790182.671903478,0.0,5173.131920779821,5092.1455755132069,5098.707324831749,6137.723553419881,100768710.29710029,9669496.58624621,28186614.07570998,0.0 - 10/23 13:00:00,0.0,11763891.006824637,11505460.010661327,0.0,6782527.392728661,0.0,10127679.354390523,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,105829713.21607803,11763891.006824637,28186614.07570998,0.0 - 10/23 14:00:00,0.0,12266.906300777917,13325501.484439597,0.0,7393869.055220794,0.0,12151146.062227965,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,110284563.06018587,12266.906300777917,28186614.07570998,0.0 - 10/23 15:00:00,0.0,0.0,15524694.176575769,0.0,7879782.564010188,0.0,13293645.571091893,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,152821151.07365478,0.0,28186614.07570998,0.0 - 10/23 16:00:00,715817.8326679017,0.0,17643089.543867768,0.0,7838442.279748037,0.0,14129733.452237027,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,233863978.09789849,0.0,28186614.07570998,0.0 - 10/23 17:00:00,13940158.950334752,0.0,25065215.68387989,0.0,10878257.61237546,0.0,18893119.25563924,0.0,12933.9305812204,12731.447485149029,12747.853254705475,15345.614916135237,262308597.95618589,0.0,35233267.594637479,0.0 - 10/23 18:00:00,26045421.054096376,0.0,36242288.389259409,0.0,18657225.82844193,0.0,29068226.987614454,0.0,18099.319858799794,17815.971629985495,17838.929327869155,21474.15211895267,380835304.82759776,0.0,14093307.03785499,0.0 - 10/23 19:00:00,17306249.169877415,0.0,27078574.560608489,0.0,8256273.746844277,0.0,16698265.27527119,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,340024156.66276296,0.0,63419881.67034747,0.0 - 10/23 20:00:00,6130582.115113143,0.0,15537242.460496575,0.0,0.0,0.0,2218669.3415888848,0.0,10337.830774615617,10175.990105318584,10189.102907211005,12265.441594820632,178572609.2922756,0.0,63419881.67034747,69761869.8373822 - 10/23 21:00:00,9594895.4701819,0.0,18471135.006101319,0.0,0.0,0.0,5516899.884131072,0.0,10337.2232616991,10175.392103130107,10188.50413443567,12264.720803935379,188259955.45193524,0.0,49326574.63249246,69761869.8373822 - 10/23 22:00:00,16157946.006624282,0.0,24960603.563680445,0.0,2803427.766574826,0.0,12116858.956145412,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,133264861.76466505,0.0,35233267.594637479,69761869.8373822 - 10/23 23:00:00,22973144.620504574,0.0,32012287.271817857,0.0,8912072.474536483,0.0,18922880.005786849,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,159903915.70557703,0.0,35233267.594637479,62010550.96656194 - 10/23 24:00:00,29553244.25806731,0.0,38531649.703568909,0.0,14398626.565342915,0.0,25825118.92698948,0.0,2573.0915582793365,2532.8093299247177,2536.0731132647995,3052.8749129552936,146810095.54589553,0.0,35233267.594637479,46507913.22492146 - 10/24 01:00:00,37989284.26393527,0.0,46686338.34570698,0.0,22339510.757370719,0.0,35440326.21524881,0.0,2574.8091061845377,2534.499989297055,2537.7659512243,3054.9127179819809,180982615.53513814,0.0,21139960.556782485,23253956.61246073 - 10/24 02:00:00,3944604.260546332,0.0,10807904.478487347,0.0,0.0,0.0,0.0,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,33977989.10362671,0.0,14093307.03785499,0.0 - 10/24 03:00:00,27257472.313465176,0.0,35810063.11481932,0.0,11393317.386743315,0.0,22446889.33905655,0.0,1285.4410549833106,1265.317235468755,1266.9477258749017,1525.126743436042,116141940.08923118,0.0,14093307.03785499,0.0 - 10/24 04:00:00,30127319.47603559,0.0,37470246.88794267,0.0,15963612.648871135,0.0,27370293.269831018,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,130156952.64727344,0.0,14093307.03785499,0.0 - 10/24 05:00:00,31151037.54817262,0.0,38244392.19519158,0.0,17161189.89020754,0.0,28481893.45101043,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,134281127.15578068,0.0,14093307.03785499,0.0 - 10/24 06:00:00,30877296.339374715,0.0,37774201.86500801,0.0,17166869.672668704,0.0,28189850.178525796,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,133274264.79059997,0.0,14093307.03785499,0.0 - 10/24 07:00:00,26164041.557463834,0.0,33742478.65545304,0.0,13609335.016493598,0.0,23695245.925964025,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,174265413.0611272,0.0,14093307.03785499,15502637.741640486 - 10/24 08:00:00,26771745.82214309,0.0,40492469.84491106,0.0,21586831.36121486,0.0,32158747.925323439,0.0,20620.92824143986,20298.103762989762,20324.25994147275,24465.9442092456,429563045.1121251,0.0,56373228.15141996,38756594.35410121 - 10/24 09:00:00,18259885.77439928,0.0,42975379.40195892,0.0,25863089.056131126,0.0,37365970.25527342,0.0,18065.502605108322,17782.68379170917,17805.598594815587,21434.02923833167,394780455.71563586,0.0,56373228.15141996,38756594.35410121 - 10/24 10:00:00,18570179.361938877,0.0,42749382.94575351,0.0,26400312.08153768,0.0,38559886.97045556,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,319269859.3375515,0.0,28186614.07570998,0.0 - 10/24 11:00:00,10384789.056362523,0.0,39994509.858022477,0.0,25429136.94286799,0.0,37122929.459932807,0.0,10325.002147076286,10163.36231233656,10176.45884202883,12250.220917944032,267425524.50697435,0.0,28186614.07570998,0.0 - 10/24 12:00:00,2695907.4960205799,0.0,36139166.06821395,0.0,23222904.039979254,0.0,33370259.52235524,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,172766749.6723295,0.0,28186614.07570998,0.0 - 10/24 13:00:00,0.0,7207989.629173377,28389149.034101778,0.0,19559844.590072264,0.0,25315813.69579995,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,150603319.86573447,7207989.629173377,28186614.07570998,0.0 - 10/24 14:00:00,0.0,18700303.07253959,20198828.45053273,0.0,13596114.366509932,0.0,18678441.268986148,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,129837098.60739842,18700303.07253959,28186614.07570998,0.0 - 10/24 15:00:00,0.0,27345070.948123896,12450967.69367471,0.0,5676222.109189556,0.0,10486443.9744096,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,144670150.34639878,27345070.948123896,28186614.07570998,0.0 - 10/24 16:00:00,0.0,14541118.568028339,12794275.383984713,0.0,2349267.5643725,0.0,8936060.58026572,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,217448265.92705778,14541118.568028339,28186614.07570998,0.0 - 10/24 17:00:00,897485.8267186617,0.0,28222033.04954979,0.0,11393693.877468132,0.0,21075685.466716663,0.0,12899.011716387015,12697.075281658717,12713.436759122667,15304.185015945439,254598249.80366308,0.0,35233267.594637479,0.0 - 10/24 18:00:00,27601180.982718149,0.0,48197504.29554446,0.0,24796076.781887678,0.0,38623681.91203113,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,409140525.92605158,0.0,14093307.03785499,0.0 - 10/24 19:00:00,20852601.98412279,0.0,37973159.78691672,0.0,13712061.385020907,0.0,25365008.89520462,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,367761001.77965226,0.0,63419881.67034747,0.0 - 10/24 20:00:00,13682745.671323743,0.0,29660471.23932433,0.0,4415276.824713458,0.0,14036087.89244121,0.0,10275.671048922764,10114.80350172734,10127.837458435844,12191.691453068664,215550594.09155933,0.0,63419881.67034747,69761869.8373822 - 10/24 21:00:00,21381330.11301854,0.0,36825927.21909908,0.0,9486430.116388293,0.0,21124354.818081079,0.0,10270.74251485777,10109.952124782549,10122.979829996691,12185.84393553426,242500308.52520354,0.0,49326574.63249246,69761869.8373822 - 10/24 22:00:00,26539684.028896046,0.0,41005846.37732697,0.0,13145053.297016858,0.0,25747178.012179264,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,183266337.5442428,0.0,35233267.594637479,69761869.8373822 - 10/24 23:00:00,29686445.001691287,0.0,43327603.08672851,0.0,15432714.573407874,0.0,28473992.506428586,0.0,5133.683938970434,5053.315159218059,5059.826871581867,6090.920028825082,193736640.76319988,0.0,35233267.594637479,62010550.96656194 - 10/24 24:00:00,36250358.81342623,0.0,49643586.69687173,0.0,20468491.412907166,0.0,34996214.414867948,0.0,2562.8263075072566,2522.7047835684554,2525.9555461692077,3040.695584762933,179706507.3373013,0.0,35233267.594637479,46507913.22492146 - 10/25 01:00:00,45967755.494070697,0.0,58856867.59710724,0.0,29247047.376439997,0.0,45692739.4660984,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,218105259.60250429,0.0,21139960.556782485,23253956.61246073 - 10/25 02:00:00,8210815.923707021,0.0,18006260.50676731,0.0,0.0,0.0,3674451.0302570678,0.0,1283.2067404418513,1263.1178995382534,1264.7455558755719,1522.4758145216302,49092293.0980897,0.0,14093307.03785499,0.0 - 10/25 03:00:00,31705008.830745955,0.0,43082223.59680271,0.0,12833283.065474814,0.0,28941360.001025738,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,135749486.67679126,0.0,14093307.03785499,0.0 - 10/25 04:00:00,38011924.5037291,0.0,48549026.73916623,0.0,22489530.21101538,0.0,36787236.68784836,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,164931221.66213838,0.0,14093307.03785499,0.0 - 10/25 05:00:00,42289731.37715929,0.0,52701678.38628033,0.0,26279327.059203689,0.0,41201889.43679754,0.0,1274.6180615412266,1254.6636780080342,1256.2804402180069,1512.2856748560676,181544878.53608487,0.0,14093307.03785499,0.0 - 10/25 06:00:00,43586072.288244049,0.0,53853571.61642044,0.0,27209744.21635928,0.0,42269341.61855086,0.0,1277.1358476833853,1257.142047738445,1258.762003580777,1515.2729320039335,186028655.93119816,0.0,14093307.03785499,0.0 - 10/25 07:00:00,32257017.134323539,0.0,44495858.748849648,0.0,19248357.93781811,0.0,32275607.4201991,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,204915713.9957169,0.0,14093307.03785499,15502637.741640486 - 10/25 08:00:00,14146915.074952545,0.0,31203861.91603995,0.0,13846094.007661153,0.0,20347069.657969636,0.0,20593.084860315725,20270.696275191294,20296.81713632884,24432.909100389013,387680567.1966328,0.0,56373228.15141996,38756594.35410121 - 10/25 09:00:00,4800978.129874407,8602207.610384888,30036259.84262467,0.0,10926273.712913996,0.0,21161791.751528115,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,337241434.6648143,8602207.610384888,56373228.15141996,38756594.35410121 - 10/25 10:00:00,0.0,21585275.527741508,29739402.93250776,0.0,14663030.973650009,0.0,24744527.72767795,0.0,12916.489419344149,12714.279367915595,12730.663014600672,15324.921643339141,262417834.03655414,21585275.527741508,28186614.07570998,0.0 - 10/25 11:00:00,0.0,34369523.970358017,27229238.376990025,0.0,14894502.504430099,0.0,23894901.0349832,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,220837586.5734001,34369523.970358017,28186614.07570998,0.0 - 10/25 12:00:00,0.0,42399057.47646028,25077607.32534586,0.0,14132036.62405915,0.0,21415304.11802283,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,138040478.46404303,42399057.47646028,28186614.07570998,0.0 - 10/25 13:00:00,0.0,49737144.085698749,16892465.15427174,0.0,10323018.517893952,0.0,12318425.321532913,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,116943007.80282875,49737144.085698749,28186614.07570998,0.0 - 10/25 14:00:00,0.0,51769562.335363548,6801732.88739257,0.0,3202019.135795624,0.0,4698833.339051338,0.0,5173.131920779821,5092.1455755132069,5098.707324831749,6137.723553419881,92108735.5106003,51769562.335363548,28186614.07570998,0.0 - 10/25 15:00:00,0.0,42574766.820371057,1717852.4551974494,0.0,0.0,0.0,150430.88210774878,0.0,7759.5292614173599,7638.052383291116,7647.894793386788,9206.385269230244,117974985.48367702,42574766.820371057,28186614.07570998,0.0 - 10/25 16:00:00,0.0,22472146.72189351,4915498.918840304,0.0,0.0,0.0,279645.851569806,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,198732784.06409348,22472146.72189351,28186614.07570998,0.0 - 10/25 17:00:00,0.0,1145007.2483369937,18499283.819967323,0.0,1977357.112973911,0.0,12001825.532432234,0.0,12933.589913508364,12731.112150653576,12747.517488097295,15345.210726898993,226005215.47034309,1145007.2483369937,35233267.594637479,0.0 - 10/25 18:00:00,16329328.157627309,0.0,34819075.335890557,0.0,15138044.940334864,0.0,26169523.348625367,0.0,18102.086828442756,17818.695282202523,17841.65648979006,21477.43502281232,363319516.82616969,0.0,14093307.03785499,0.0 - 10/25 19:00:00,11571342.118721795,0.0,27163160.084415728,0.0,6566570.3533971239,0.0,15484055.754464915,0.0,18081.79659969841,17798.72270077431,17821.658171652118,21453.3614409328,331345068.39800706,0.0,63419881.67034747,0.0 - 10/25 20:00:00,4056834.4688057817,0.0,18300203.36461334,0.0,0.0,0.0,3712398.8567081869,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,180590298.77856804,0.0,63419881.67034747,69761869.8373822 - 10/25 21:00:00,10154760.758687638,0.0,23739568.797851515,0.0,96622.76986071957,0.0,9274401.753774114,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,197702821.7710982,0.0,49326574.63249246,69761869.8373822 - 10/25 22:00:00,14982793.76366786,0.0,27795697.9601954,0.0,4506634.152404079,0.0,13605666.167704028,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,138137871.63886563,0.0,35233267.594637479,69761869.8373822 - 10/25 23:00:00,18482642.925493204,0.0,30653665.075324686,0.0,6623459.161518643,0.0,16602981.930149895,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,149588774.5641265,0.0,35233267.594637479,62010550.96656194 - 10/25 24:00:00,25481635.97782132,0.0,37315718.25023124,0.0,12064784.086645972,0.0,23578799.048430943,0.0,2577.023984348619,2536.680193130292,2539.948964472705,3057.540586376566,137001234.78511093,0.0,35233267.594637479,46507913.22492146 - 10/26 01:00:00,35900759.36412732,0.0,47292941.29794123,0.0,21255319.933073138,0.0,34894708.59788948,0.0,2576.7211565019408,2536.382106110046,2539.650493336908,3057.1812926961317,177899495.36815328,0.0,21139960.556782485,23253956.61246073 - 10/26 02:00:00,1892040.1274722415,0.0,9064440.90020836,0.0,0.0,0.0,0.0,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,30245352.68145686,0.0,14093307.03785499,0.0 - 10/26 03:00:00,21611979.478951135,0.0,32129319.846721963,0.0,7139466.934046557,0.0,17857730.41921595,0.0,1288.9526212419406,1268.773827502524,1270.4087720803132,1529.2930827571816,98025238.57183066,0.0,14093307.03785499,0.0 - 10/26 04:00:00,25449980.45924161,0.0,34091203.92139679,0.0,12308049.98114183,0.0,23304579.982032803,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,114436194.74439067,0.0,14093307.03785499,0.0 - 10/26 05:00:00,27549451.576107507,0.0,35734065.77942932,0.0,14727193.476270862,0.0,25508874.337230915,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,122785631.90406138,0.0,14093307.03785499,0.0 - 10/26 06:00:00,29473440.031425168,0.0,37408945.91187017,0.0,16516615.171122499,0.0,27442161.190723167,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,130102237.74815104,0.0,14093307.03785499,0.0 - 10/26 07:00:00,22407983.224753385,0.0,32337996.950746359,0.0,11912055.445736254,0.0,21781189.570332197,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,107689953.23753166,0.0,14093307.03785499,15502637.741640486 - 10/26 08:00:00,13925854.728068304,0.0,26523907.03362116,0.0,13657861.199541307,0.0,18205953.998922338,0.0,5157.491207557575,5076.749720574226,5083.291630762258,6119.166444224415,149485693.3713796,0.0,56373228.15141996,38756594.35410121 - 10/26 09:00:00,6631207.009124857,0.0,33857311.317092347,0.0,17826005.071261985,0.0,30190686.235117027,0.0,12917.386859574628,12715.162758551849,12731.547543575927,15325.986421915206,281789510.53361967,0.0,56373228.15141996,38756594.35410121 - 10/26 10:00:00,0.0,0.0,26946709.451207837,0.0,15313937.756599743,0.0,24115259.294404977,0.0,12919.11276782449,12716.861647386091,12733.248621601833,15328.034146171698,259686032.3609554,0.0,28186614.07570998,0.0 - 10/26 11:00:00,0.0,0.0,24142561.79116984,0.0,14388280.257571759,0.0,22804021.29728181,0.0,12928.61436345202,12726.21449376155,12742.613520074474,15339.30742668556,254787162.6403284,0.0,28186614.07570998,0.0 - 10/26 12:00:00,0.0,6208594.180355512,19638639.842462019,0.0,11854545.010964349,0.0,18636785.319698708,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,166252107.16675175,6208594.180355512,28186614.07570998,0.0 - 10/26 13:00:00,0.0,7297945.579520664,15795234.923143534,0.0,9300247.448803576,0.0,13824859.124772802,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,155043370.25869686,7297945.579520664,28186614.07570998,0.0 - 10/26 14:00:00,0.0,4644680.4208015999,11644988.899668316,0.0,6036296.235795124,0.0,10457970.270712559,0.0,7759.852619251282,7638.370678897825,7648.213499149874,9206.768920956867,144250795.99189706,4644680.4208015999,28186614.07570998,0.0 - 10/26 15:00:00,0.0,12768011.826526132,7921247.087566549,0.0,2186333.365144708,0.0,6251500.185794457,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,132476320.82363309,12768011.826526132,28186614.07570998,0.0 - 10/26 16:00:00,0.0,0.0,18020172.561207847,0.0,6748869.64079754,0.0,13187421.614900195,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,308908116.8020344,0.0,28186614.07570998,0.0 - 10/26 17:00:00,7380855.638529125,0.0,24710329.153763135,0.0,9181681.358704206,0.0,17460187.24447093,0.0,23278.199891120632,22913.775329281238,22943.302067553443,27618.695587297058,407047355.74637588,0.0,35233267.594637479,0.0 - 10/26 18:00:00,22550012.87168569,0.0,35894953.075999449,0.0,17049415.246913185,0.0,27692292.777793927,0.0,18102.086828442756,17818.695282202523,17841.65648979006,21477.43502281232,374050219.01608386,0.0,14093307.03785499,0.0 - 10/26 19:00:00,15202842.83861902,0.0,27458135.86496815,0.0,7688507.822985875,0.0,16585299.30117264,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.28050726523,337733324.4890371,0.0,63419881.67034747,0.0 - 10/26 20:00:00,5478227.693620234,0.0,17035045.11947396,0.0,0.0,0.0,3157620.886011361,0.0,15505.834892548652,15263.088154695157,15282.756201653507,18397.081205903072,257686431.33638696,0.0,63419881.67034747,69761869.8373822 - 10/26 21:00:00,16085584.758906415,0.0,28147811.909146735,0.0,1729861.4090618734,0.0,12583767.357053502,0.0,12912.66995454923,12710.51969755456,12726.898499520636,15320.389994157906,251760746.75898493,0.0,49326574.63249246,69761869.8373822 - 10/26 22:00:00,26192260.974670836,0.0,37968025.68403056,0.0,8698645.260364546,0.0,21393832.60966032,0.0,10325.903594812038,10164.249647739844,10177.34732085435,12251.290451272129,248760412.18156836,0.0,35233267.594637479,69761869.8373822 - 10/26 23:00:00,33619092.62886076,0.0,44813147.48912208,0.0,13788701.515698558,0.0,27878432.434144144,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,235857548.68466527,0.0,35233267.594637479,62010550.96656194 - 10/26 24:00:00,40189113.10965825,0.0,50884331.62494182,0.0,18875476.014060249,0.0,34287424.059813518,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,221408461.21970038,0.0,35233267.594637479,46507913.22492146 - 10/27 01:00:00,49784843.77966684,0.0,59977662.53143166,0.0,27620315.960807526,0.0,44896691.3619677,0.0,2577.905242483881,2537.547655005048,2540.8175441606265,3058.586165514363,220852997.41966383,0.0,21139960.556782485,23253956.61246073 - 10/27 02:00:00,11853362.794858743,0.0,20562917.16985351,0.0,0.0,0.0,4164997.702609584,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,55863658.06789946,0.0,14093307.03785499,0.0 - 10/27 03:00:00,36399240.454299,0.0,45047029.36388205,0.0,12169565.811527335,0.0,29485427.041427494,0.0,1288.8080150899912,1268.63148518686,1270.2662463420466,1529.12151307785,142385840.80604417,0.0,14093307.03785499,0.0 - 10/27 04:00:00,37658551.182540077,0.0,45574599.08503639,0.0,18468024.148054698,0.0,32573352.39704333,0.0,1288.9526212419406,1268.773827502524,1270.4087720803132,1529.2930827571816,153561268.70556955,0.0,14093307.03785499,0.0 - 10/27 05:00:00,37374123.18509028,0.0,44895465.15606439,0.0,19064949.51493584,0.0,32568464.8522986,0.0,1289.6415440962367,1269.4519651410179,1271.0877835683703,1530.110463426002,153200053.03082297,0.0,14093307.03785499,0.0 - 10/27 06:00:00,35917800.18814619,0.0,43015964.583444479,0.0,18577542.32406055,0.0,31334577.46438024,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,148155934.16361953,0.0,14093307.03785499,0.0 - 10/27 07:00:00,30354236.44242616,0.0,37044450.65640913,0.0,14254608.012691124,0.0,25437975.849206933,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,126414123.39934364,0.0,14093307.03785499,15502637.741640486 - 10/27 08:00:00,40255178.09373929,0.0,46687112.5315114,0.0,25110743.97784745,0.0,38074948.31185755,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,169466949.34630219,0.0,56373228.15141996,38756594.35410121 - 10/27 09:00:00,42800585.16323347,0.0,48839952.53015788,0.0,29870309.839849667,0.0,42425105.46786789,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,241313708.0205905,0.0,56373228.15141996,38756594.35410121 - 10/27 10:00:00,40250927.117089729,0.0,46725161.76134649,0.0,27532224.964077169,0.0,40051911.79579137,0.0,7758.0372121897539,7636.583692372509,7646.424209910027,9204.615009776711,270644602.08560118,0.0,28186614.07570998,0.0 - 10/27 11:00:00,38088443.27581183,0.0,44770731.22779387,0.0,25551265.540694909,0.0,37910812.94684321,0.0,7759.00120720092,7637.532595861943,7647.374336158459,9205.758753059508,262420053.8033548,0.0,28186614.07570998,0.0 - 10/27 12:00:00,31508048.143366293,0.0,37467840.42028899,0.0,21560502.79019411,0.0,32083932.620673215,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,200034547.38285525,0.0,28186614.07570998,0.0 - 10/27 13:00:00,30420601.19453644,0.0,36565382.4495077,0.0,20590771.497605716,0.0,31049852.28413775,0.0,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,196037307.02777548,0.0,28186614.07570998,0.0 - 10/27 14:00:00,33442047.477229485,0.0,39644476.743118409,0.0,21194155.285258425,0.0,32466938.941613195,0.0,7760.507197460206,7639.015009562778,7648.858660100654,9207.545553014968,242868953.5597185,0.0,28186614.07570998,0.0 - 10/27 15:00:00,33155891.23152947,0.0,39305498.554213929,0.0,20759605.283260697,0.0,31932597.795624108,0.0,10347.34292994694,10185.353346083706,10198.478213467537,12276.727404019955,279982039.68129357,0.0,28186614.07570998,0.0 - 10/27 16:00:00,37430321.01182088,0.0,43795846.58935426,0.0,23022482.90325281,0.0,35194642.81546709,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,332923783.0563079,0.0,28186614.07570998,0.0 - 10/27 17:00:00,39255796.01415152,0.0,45928631.090181309,0.0,23431207.496642017,0.0,36124914.24224758,0.0,15515.523085964345,15272.6246776356,15292.305013377128,18408.575877569714,376901051.9995909,0.0,35233267.594637479,0.0 - 10/27 18:00:00,40926895.42901762,0.0,47273108.39221796,0.0,25369050.456762338,0.0,38147396.21919911,0.0,18100.768024927664,17817.397124802483,17840.35665958171,21475.87031278349,422560262.13674029,0.0,14093307.03785499,0.0 - 10/27 19:00:00,27543995.177083114,0.0,33577689.40649352,0.0,12981829.96654674,0.0,22658681.3152719,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,251517705.9043585,0.0,63419881.67034747,0.0 - 10/27 20:00:00,13017572.767646339,0.0,19210925.289542706,0.0,0.0,0.0,5545075.735242284,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,153840206.32165376,0.0,63419881.67034747,69761869.8373822 - 10/27 21:00:00,15184337.501311595,0.0,21369480.469582298,0.0,502558.56673816448,0.0,8132754.757877392,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,122566886.31499106,0.0,49326574.63249246,69761869.8373822 - 10/27 22:00:00,18342183.16484016,0.0,24603821.38164766,0.0,3560262.8037872517,0.0,11571812.763621349,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,135455835.13337804,0.0,35233267.594637479,69761869.8373822 - 10/27 23:00:00,22601695.01620684,0.0,29597078.904544955,0.0,6227973.956860047,0.0,15733108.80979833,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,151537611.70689179,0.0,35233267.594637479,62010550.96656194 - 10/27 24:00:00,26717878.119690226,0.0,33960688.898156139,0.0,9651124.443613483,0.0,20257165.73238426,0.0,5171.64800712219,5090.68489280071,5097.244759880489,6135.9629465095699,167970803.37657077,0.0,35233267.594637479,46507913.22492146 - 10/28 01:00:00,34637594.00087362,0.0,41748811.173922117,0.0,17376153.32383622,0.0,29620015.860659824,0.0,2585.617122685685,2545.138804283643,2548.4184754098798,3067.7360169932387,162071451.86903257,0.0,21139960.556782485,23253956.61246073 - 10/28 02:00:00,508130.5773653175,0.0,4067236.671587485,0.0,0.0,0.0,0.0,0.0,1292.7533772808147,1272.5150819965798,1274.1548475626462,1533.8025347135286,23918980.27854565,0.0,14093307.03785499,0.0 - 10/28 03:00:00,17056884.51696795,0.0,23914278.713204117,0.0,0.0,0.0,8308480.209586874,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,68624082.19462934,0.0,14093307.03785499,0.0 - 10/28 04:00:00,18924070.448773385,0.0,23787479.324115956,0.0,4184159.87614833,0.0,14271145.816597455,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,80511294.22050554,0.0,14093307.03785499,0.0 - 10/28 05:00:00,21093494.598567457,0.0,26190843.269700264,0.0,8053841.328874097,0.0,16689841.837996586,0.0,1292.7533772808147,1272.5150819965796,1274.1548475626462,1533.8025347135286,91371634.06473126,0.0,14093307.03785499,0.0 - 10/28 06:00:00,21056628.356825919,0.0,25922973.14551157,0.0,8671061.91117417,0.0,16906886.99120447,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,91901989.15958655,0.0,14093307.03785499,0.0 - 10/28 07:00:00,16837260.576902048,0.0,21331755.437073567,0.0,5651462.378371174,0.0,12538094.911482184,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,133733025.42220037,0.0,14093307.03785499,15502637.741640486 - 10/28 08:00:00,29420872.305099749,0.0,34431042.078925509,0.0,19039096.805660804,0.0,28043020.66967662,0.0,20684.054036493035,20360.24131194527,20386.477561002335,24540.840555416456,420431840.33284828,0.0,56373228.15141996,38756594.35410121 - 10/28 09:00:00,35128931.48595658,0.0,41266623.20669545,0.0,26689979.76273509,0.0,37260089.56388599,0.0,18103.276218728544,17819.866052361507,17842.82876860589,21478.846188984593,411226966.042523,0.0,56373228.15141996,38756594.35410121 - 10/28 10:00:00,21120735.237890863,0.0,32749987.677926687,0.0,21069292.340451585,0.0,29993460.589723164,0.0,12933.589913508365,12731.112150653576,12747.517488097297,15345.210726898993,298460224.850962,0.0,28186614.07570998,0.0 - 10/28 11:00:00,11899768.433412299,0.0,25951608.309816459,0.0,17042649.31353594,0.0,24676084.18892013,0.0,10347.319278444485,10185.330064849933,10198.45490223352,12276.699342415126,234398203.16227988,0.0,28186614.07570998,0.0 - 10/28 12:00:00,12514403.903356895,0.0,25909791.146192377,0.0,16412043.268306213,0.0,24064931.407624727,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,156316581.21850778,0.0,28186614.07570998,0.0 - 10/28 13:00:00,15688959.38850831,0.0,24054592.957200797,0.0,15024153.831467005,0.0,22325482.872686928,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,154508541.55784769,0.0,28186614.07570998,0.0 - 10/28 14:00:00,18593918.94293462,0.0,26305701.495391117,0.0,14903909.263044367,0.0,22774495.364311447,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,159989518.52243314,0.0,28186614.07570998,0.0 - 10/28 15:00:00,16729553.017350287,0.0,26929730.352372707,0.0,14914982.099570049,0.0,22953908.19661519,0.0,7760.439717490662,7638.948586004744,7648.792150949086,9207.465490606974,197648499.06809355,0.0,28186614.07570998,0.0 - 10/28 16:00:00,25723196.3440224,0.0,33005428.477778999,0.0,18059658.656748948,0.0,27574236.909763345,0.0,12933.384863662466,12730.910310901267,12747.315388253866,15344.967443084064,297886201.2095597,0.0,28186614.07570998,0.0 - 10/28 17:00:00,29384686.099048258,0.0,36156395.37771198,0.0,18860701.514454064,0.0,29023500.657644396,0.0,12932.630874441214,12730.16812552193,12746.572246492913,15344.072863654588,306937682.445257,0.0,35233267.594637479,0.0 - 10/28 18:00:00,33683377.17757091,0.0,40220795.42163321,0.0,21994501.659012736,0.0,33021373.41881237,0.0,18105.26658198271,17821.825256107626,17844.79049698601,21481.20767900882,399831171.7277358,0.0,14093307.03785499,0.0 - 10/28 19:00:00,20719340.858754055,0.0,27278236.711335806,0.0,8619880.901179487,0.0,16983050.758790677,0.0,18105.683224217697,17822.2353757307,17845.20114509008,21481.70200911642,344517867.5450177,0.0,63419881.67034747,0.0 - 10/28 20:00:00,7216656.08207239,0.0,13780552.133831902,0.0,0.0,0.0,722233.6211732122,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,176521959.1071447,0.0,63419881.67034747,69761869.8373822 - 10/28 21:00:00,12151317.795014464,0.0,18759892.417379537,0.0,0.0,0.0,5661051.655723465,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,191314283.960284,0.0,49326574.63249246,69761869.8373822 - 10/28 22:00:00,17438142.67835215,0.0,24224953.797250175,0.0,1718411.660364561,0.0,10992300.697307829,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,131733667.97223029,0.0,35233267.594637479,69761869.8373822 - 10/28 23:00:00,19814152.4231983,0.0,26588223.07968712,0.0,4719241.913145045,0.0,13471633.17388628,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,141953109.7288723,0.0,35233267.594637479,62010550.96656194 - 10/28 24:00:00,23391484.206778237,0.0,30084054.30746106,0.0,8048075.020804414,0.0,17455341.79708615,0.0,2585.147952284963,2544.6769788330686,2547.956054850074,3067.179364222118,117660812.59281466,0.0,35233267.594637479,46507913.22492146 - 10/29 01:00:00,32146829.046696716,0.0,38738999.30093914,0.0,16300447.628566273,0.0,27509869.428972357,0.0,2584.4576936539044,2543.997526329646,2547.2757268027514,3066.360398705158,153367674.24894376,0.0,21139960.556782485,23253956.61246073 - 10/29 02:00:00,0.0,0.0,1808961.9711868116,0.0,0.0,0.0,0.0,0.0,1292.861436345202,1272.6214493761555,1274.2613520074474,1533.930742668556,21154191.90061731,0.0,14093307.03785499,0.0 - 10/29 03:00:00,12245852.28302303,0.0,20412627.439566416,0.0,0.0,0.0,4817429.713022131,0.0,1292.6360841179099,1272.3996250800208,1274.0392418680659,1533.6633708530972,56817767.39452031,0.0,14093307.03785499,0.0 - 10/29 04:00:00,16829794.42219851,0.0,21694475.411939745,0.0,4158341.9885788757,0.0,12239539.435954914,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,74271402.26848975,0.0,14093307.03785499,0.0 - 10/29 05:00:00,16071718.403402782,0.0,20560531.135650696,0.0,4871020.91908651,0.0,11955929.656055782,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,72809514.77295417,0.0,14093307.03785499,0.0 - 10/29 06:00:00,16065305.426397706,0.0,20349893.64856001,0.0,5348070.6724273529,0.0,12099995.596101918,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,73214915.91174069,0.0,14093307.03785499,0.0 - 10/29 07:00:00,11292012.379572699,0.0,16314596.08457926,0.0,2200642.4043191277,0.0,7770495.062166558,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,114979004.56567125,0.0,14093307.03785499,15502637.741640486 - 10/29 08:00:00,13768214.74617936,0.0,17512835.636195937,0.0,13264066.089952864,0.0,16306456.340500175,0.0,20693.743861613384,20369.77944104572,20396.027980955674,24552.337163038388,370494371.2207797,0.0,56373228.15141996,38756594.35410121 - 10/29 09:00:00,3706206.9889787149,27793670.35147928,13081287.196078746,0.0,6531087.825916808,0.0,11114177.663328017,0.0,18103.670666797374,17820.254325272235,17843.217541845894,21479.31418656125,305320003.86801859,27793670.35147928,56373228.15141996,38756594.35410121 - 10/29 10:00:00,0.0,47402162.32788588,4047805.4342532234,0.0,0.0,0.0,628677.130126924,0.0,12918.873470694787,12716.626096497594,12733.012767181974,15327.75022926184,197983027.79347048,47402162.32788588,28186614.07570998,0.0 - 10/29 11:00:00,0.0,33937847.233361449,6176889.639754305,0.0,1298861.5854238072,0.0,6166877.1133899469,0.0,10328.259663360937,10166.568831596087,10179.669493215706,12254.085836668732,168185530.1079973,33937847.233361449,28186614.07570998,0.0 - 10/29 12:00:00,0.0,42416417.169639978,2777983.58874569,0.0,583553.5763671476,0.0,2623200.5804541197,0.0,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,83084436.91537917,42416417.169639978,28186614.07570998,0.0 - 10/29 13:00:00,0.0,61398179.01959043,0.0,0.0,0.0,0.0,0.0,0.0,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,77080819.41157943,61398179.01959043,28186614.07570998,0.0 - 10/29 14:00:00,0.0,48189524.90098277,0.0,0.0,0.0,0.0,0.0,0.0,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,48189524.90098277,28186614.07570998,0.0 - 10/29 15:00:00,0.0,17392509.463127808,0.0,0.0,0.0,0.0,0.0,0.0,7729.903173512449,7608.890097319098,7618.694928832762,9171.23504682837,115663403.68737364,17392509.463127808,28186614.07570998,0.0 - 10/29 16:00:00,0.0,865340.3500566135,5943769.950087102,0.0,0.0,0.0,1918381.6423834693,0.0,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,201008576.3678043,865340.3500566135,28186614.07570998,0.0 - 10/29 17:00:00,7058816.697012905,0.0,19646619.844915093,0.0,5341158.021362577,0.0,12279510.167054046,0.0,12924.908609587581,12722.566754165167,12738.961079993303,15334.910691182726,237722954.41608823,0.0,35233267.594637479,0.0 - 10/29 18:00:00,18143858.32762056,0.0,27145677.615296008,0.0,11846527.559663212,0.0,20040385.13851285,0.0,18099.10389419562,17815.75904634749,17838.716470295436,21473.895885193695,347995359.7068087,0.0,14093307.03785499,0.0 - 10/29 19:00:00,8037340.71575026,0.0,15635936.894902936,0.0,0.0,0.0,5668672.600664713,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,300149163.87110087,0.0,63419881.67034747,0.0 - 10/29 20:00:00,0.0,0.0,3382161.612068572,0.0,0.0,0.0,0.0,0.0,10343.18309248034,10181.258631648661,10194.378222575006,12271.791915656593,158148364.31656675,0.0,63419881.67034747,69761869.8373822 - 10/29 21:00:00,0.0,0.0,7045200.145126917,0.0,0.0,0.0,0.0,0.0,10343.947185404173,10182.010762555232,10195.131322679015,12272.6984827435,161822836.05730183,0.0,49326574.63249246,69761869.8373822 - 10/29 22:00:00,4424204.757303296,0.0,10552786.627511323,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,92365809.34090209,0.0,35233267.594637479,69761869.8373822 - 10/29 23:00:00,6807467.340456774,0.0,12560826.866253842,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,96757112.16279808,0.0,35233267.594637479,62010550.96656194 - 10/29 24:00:00,12605541.683981512,0.0,18265993.910047007,0.0,0.0,0.0,5740595.444100737,0.0,2586.875432942372,2546.377415458524,2549.6586826616819,3069.2289540801427,75319836.78464306,0.0,35233267.594637479,46507913.22492146 - 10/30 01:00:00,21509846.78138902,0.0,26909016.626463728,0.0,6584618.879429883,0.0,17065886.878474878,0.0,2586.866829525335,2546.3689467295864,2549.650203019922,3069.2187464542409,110776946.17838222,0.0,21139960.556782485,23253956.61246073 - 10/30 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2333272844795,1272.9875182934023,1274.6278926418582,1534.371977072059,19350794.575050475,0.0,14093307.03785499,0.0 - 10/30 03:00:00,7587032.464875449,0.0,14991601.9685443,0.0,0.0,0.0,2060494.4773121745,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,43981881.672252748,0.0,14093307.03785499,0.0 - 10/30 04:00:00,17754985.026793377,0.0,22729267.36239105,0.0,3253679.0402033396,0.0,12955863.533838058,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915207,76022225.05332817,0.0,14093307.03785499,0.0 - 10/30 05:00:00,21556136.9356623,0.0,26717024.261911677,0.0,8351766.753930337,0.0,17510207.267172994,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,93451860.51490098,0.0,14093307.03785499,0.0 - 10/30 06:00:00,25611328.32272365,0.0,31017667.178105199,0.0,12062328.699715175,0.0,21786733.88513566,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,109771087.18848631,0.0,14093307.03785499,0.0 - 10/30 07:00:00,25384476.48246488,0.0,31478438.65371982,0.0,11808106.233281356,0.0,21535114.812140004,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,167308470.3897167,0.0,14093307.03785499,15502637.741640486 - 10/30 08:00:00,36941828.17826429,0.0,46283577.19473247,0.0,25433066.358955116,0.0,37553332.224197458,0.0,20613.769252015525,20291.05684888037,20317.203946695263,24457.450341569052,454657933.35712608,0.0,56373228.15141996,38756594.35410121 - 10/30 09:00:00,41903557.27279759,0.0,54994892.66610302,0.0,33703243.60704657,0.0,48211354.66218946,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,448571791.939195,0.0,56373228.15141996,38756594.35410121 - 10/30 10:00:00,27797806.627119334,0.0,48637809.562689829,0.0,30756271.735440568,0.0,44232207.06650485,0.0,12890.94955332669,12689.139333265099,12705.490584449537,15294.61956722605,344312811.5295172,0.0,28186614.07570998,0.0 - 10/30 11:00:00,1123357.7205309789,0.0,42103594.18242645,0.0,27298154.90607553,0.0,39562153.858004529,0.0,10319.209373109612,10157.660225326976,10170.749407298134,12243.34801275635,264494741.93360535,0.0,28186614.07570998,0.0 - 10/30 12:00:00,0.0,0.0,41919866.94864409,0.0,26929873.05721069,0.0,38573735.40083429,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,184708963.93661566,0.0,28186614.07570998,0.0 - 10/30 13:00:00,8025340.300420138,0.0,40938004.62714082,0.0,26379323.834233494,0.0,36552608.87630266,0.0,5159.089991326047,5078.323475084551,5084.8674132158989,6121.063340136378,189091316.82924346,0.0,28186614.07570998,0.0 - 10/30 14:00:00,18859165.713814148,0.0,42168357.64180354,0.0,25995911.18275413,0.0,37739472.63092561,0.0,5160.110257132627,5079.327768439599,5085.87300070544,6122.273846569947,201974212.71154884,0.0,28186614.07570998,0.0 - 10/30 15:00:00,14245538.441233479,0.0,41389736.220373738,0.0,24084228.018009668,0.0,35914479.3908446,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,231392156.68730123,0.0,28186614.07570998,0.0 - 10/30 16:00:00,17578651.09548518,0.0,43009868.42871854,0.0,23457183.59452888,0.0,36271709.487670417,0.0,12882.068979471711,12680.397786450487,12696.737773259625,15284.08310533946,313073248.12667968,0.0,28186614.07570998,0.0 - 10/30 17:00:00,36977845.8629825,0.0,54227249.91798902,0.0,28959524.66715402,0.0,44376389.085520047,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,357273510.79819598,0.0,35233267.594637479,0.0 - 10/30 18:00:00,50440855.4769672,0.0,64746895.72018554,0.0,36623543.24746843,0.0,54160535.77855361,0.0,17998.83094922822,17717.055893039455,17739.88612789994,21354.925863643497,475290346.02489486,0.0,14093307.03785499,0.0 - 10/30 19:00:00,42843381.18332159,0.0,56823843.672234509,0.0,26830360.598785648,0.0,42881793.07770625,0.0,17939.784152550794,17658.933484979185,17681.688823184453,21284.869093340527,437814370.5266459,0.0,63419881.67034747,0.0 - 10/30 20:00:00,36367914.28674601,0.0,50304093.99852309,0.0,18104583.18281403,0.0,32937703.11951351,0.0,10194.620788196893,10035.022097953042,10047.953248179667,12095.528412596073,290257542.9565291,0.0,63419881.67034747,69761869.8373822 - 10/30 21:00:00,43594530.0494932,0.0,57225367.390958148,0.0,23477892.159510808,0.0,39913912.910452339,0.0,10185.155658565136,10025.705146691389,10038.62429107535,12084.298397594204,316613323.0885484,0.0,49326574.63249246,69761869.8373822 - 10/30 22:00:00,46985295.13013418,0.0,60100306.987024,0.0,26088157.57829183,0.0,43152253.85036929,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,252666410.22068323,0.0,35233267.594637479,69761869.8373822 - 10/30 23:00:00,48946991.171444389,0.0,61717494.363113928,0.0,27392246.49775341,0.0,44843450.23326519,0.0,5105.263674563278,5025.339819351992,5031.815482634999,6057.200469974179,259290812.2730649,0.0,35233267.594637479,62010550.96656194 - 10/30 24:00:00,52868418.21503367,0.0,65282565.727089349,0.0,30759018.725352106,0.0,48949083.45025791,0.0,2552.631837281639,2512.669909675996,2515.9077413174998,3028.6002349870898,236054401.1214771,0.0,35233267.594637479,46507913.22492146 - 10/31 01:00:00,64178161.082873638,0.0,76487684.87472987,0.0,40839521.92813595,0.0,61481756.066793639,0.0,2542.612386187929,2502.807314958285,2506.0324376398409,3016.712538730364,281032516.79159227,0.0,21139960.556782485,23253956.61246073 - 10/31 02:00:00,31987466.836025545,0.0,42141591.01985007,0.0,10419285.653892175,0.0,26705412.16445008,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,130257484.80275321,0.0,14093307.03785499,0.0 - 10/31 03:00:00,52846021.490530807,0.0,63762384.44749421,0.0,31449871.350885758,0.0,49079607.29086857,0.0,1272.843363925855,1252.916763614901,1254.531274747374,1510.1800638798023,216183581.85798393,0.0,14093307.03785499,0.0 - 10/31 04:00:00,54785476.42096524,0.0,65313302.69485535,0.0,33150926.807454967,0.0,51448918.2958756,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,223716625.8982499,0.0,14093307.03785499,0.0 - 10/31 05:00:00,56625914.624527398,0.0,66752086.08445868,0.0,35175581.14945802,0.0,53452437.79295775,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,231004928.6388233,0.0,14093307.03785499,0.0 - 10/31 06:00:00,58678627.85745286,0.0,68730518.8765491,0.0,36956405.384209368,0.0,55533309.70245081,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,238883123.15946228,0.0,14093307.03785499,0.0 - 10/31 07:00:00,51538324.85847521,0.0,63801450.74803341,0.0,32295293.711642468,0.0,49887557.86039713,0.0,5078.865819030884,4999.355227172474,5005.797406656265,6025.880422053089,273518263.1282339,0.0,14093307.03785499,15502637.741640486 - 10/31 08:00:00,23843835.683143937,0.0,55417167.041560318,0.0,28233202.135971555,0.0,43815522.170847717,0.0,20425.462122379406,20105.697702487363,20131.605946122916,24234.031120380845,456938195.84045746,0.0,56373228.15141996,38756594.35410121 - 10/31 09:00:00,12247311.87688809,0.0,56730042.35536151,0.0,32738568.076354796,0.0,48120002.16276751,0.0,17936.50647111266,17655.70711625542,17678.45829695528,21280.98024943098,418221872.1528876,0.0,56373228.15141996,38756594.35410121 - 10/31 10:00:00,0.0,6515040.517461572,51169541.509602379,0.0,30151618.8487268,0.0,45004094.95041386,0.0,12825.507142980903,12624.721436061543,12640.989678210439,15216.97464544115,318234749.75844159,6515040.517461572,28186614.07570998,0.0 - 10/31 11:00:00,0.0,20940768.95318433,51546531.39037707,0.0,31925242.328560879,0.0,46936333.56414054,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,284211950.1998228,20940768.95318433,28186614.07570998,0.0 - 10/31 12:00:00,0.0,30384184.499174999,50778551.872809,0.0,31872280.74129956,0.0,45294203.85569252,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,204937264.48970066,30384184.499174999,28186614.07570998,0.0 - 10/31 13:00:00,0.0,38634831.0172805,41803868.046706419,0.0,27206752.27158211,0.0,34635831.8144691,0.0,5153.442313003881,5072.764212220092,5079.300986673816,6114.362585392263,180757984.48300184,38634831.0172805,28186614.07570998,0.0 - 10/31 14:00:00,0.0,40938674.822665799,30758734.092394137,0.0,19375565.54686,0.0,26344938.23119884,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,153651354.28167949,40938674.822665799,28186614.07570998,0.0 - 10/31 15:00:00,0.0,32746267.193952037,25160133.323076589,0.0,13114665.836583119,0.0,20704162.311447227,0.0,7738.634986989071,7617.485212626825,7627.301119823849,9181.59501020457,174773020.25782649,32746267.193952037,28186614.07570998,0.0 - 10/31 16:00:00,0.0,11274469.420240732,28542368.263794774,0.0,12347916.637654866,0.0,22046784.147305743,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561035,255867360.07682164,11274469.420240732,28186614.07570998,0.0 - 10/31 17:00:00,10220263.023701176,0.0,47404515.670632887,0.0,22746948.388837227,0.0,36646449.10568858,0.0,12882.068979471711,12680.397786450485,12696.737773259625,15284.083105339458,309774011.7091365,0.0,35233267.594637479,0.0 - 10/31 18:00:00,33292284.810766587,0.0,57983805.92615343,0.0,30316263.5014128,0.0,46508542.019543018,0.0,18030.498417656025,17748.227601341463,17771.098004129723,21392.498106111503,437893255.9231352,0.0,14093307.03785499,0.0 - 10/31 19:00:00,23998058.806682886,0.0,46022073.5678585,0.0,18001481.556105883,0.0,31675703.95822749,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,389555487.61726197,0.0,63419881.67034747,0.0 - 10/31 20:00:00,13991250.463190526,0.0,33550404.802891829,0.0,5387233.746610079,0.0,16300028.56397681,0.0,10308.095937394475,10146.720772521168,10159.79585789082,12230.162345506264,223470107.26459507,0.0,63419881.67034747,69761869.8373822 - 10/31 21:00:00,19432327.967516789,0.0,37033581.06322837,0.0,8453044.043315858,0.0,20198018.860608415,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,239376015.13929046,0.0,49326574.63249246,69761869.8373822 - 10/31 22:00:00,25103660.945921638,0.0,41057629.07946895,0.0,11908624.524975393,0.0,24604821.743046576,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,179804257.8957231,0.0,35233267.594637479,69761869.8373822 - 10/31 23:00:00,29239909.759424509,0.0,43816875.7547663,0.0,14287523.80578463,0.0,27586750.298917839,0.0,5154.047968697238,5073.360386260584,5079.89792894541,6115.081172753132,192051654.46285618,0.0,35233267.594637479,62010550.96656194 - 10/31 24:00:00,34543227.60293797,0.0,47922061.41125381,0.0,18230519.277497628,0.0,32376382.31132883,0.0,2576.413795894342,2536.0795572900976,2539.347554651925,3056.8166210678916,171623357.7070735,0.0,35233267.594637479,46507913.22492146 - 11/01 01:00:00,44175136.47137576,0.0,56637640.227829027,0.0,26733279.391556864,0.0,42682983.4279671,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,208766002.90887995,0.0,21139960.556782485,23253956.61246073 - 11/01 02:00:00,8276826.752486987,0.0,17453010.489660559,0.0,0.0,0.0,3371999.725040747,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,48362912.410198319,0.0,14093307.03785499,0.0 - 11/01 03:00:00,32193565.820239746,0.0,43128474.06802329,0.0,10843736.78836992,0.0,28134301.18781709,0.0,1286.7220385646115,1266.5781650131235,1268.2102802556884,1526.646581557106,133553443.29985595,0.0,14093307.03785499,0.0 - 11/01 04:00:00,35008524.645540568,0.0,44623896.706523139,0.0,18871518.20126702,0.0,32456418.359475946,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,150208414.9177816,0.0,14093307.03785499,0.0 - 11/01 05:00:00,37164579.51194717,0.0,46391762.23826994,0.0,20937072.149754906,0.0,34497963.29272267,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,158233991.2638932,0.0,14093307.03785499,0.0 - 11/01 06:00:00,38602805.91131746,0.0,47497604.46731827,0.0,22298881.746355796,0.0,35880656.7215048,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.351847403107,163516985.6894763,0.0,14093307.03785499,0.0 - 11/01 07:00:00,31808421.622753174,0.0,41657805.1041466,0.0,17691313.828713009,0.0,29840347.20503361,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,198011349.50226999,0.0,14093307.03785499,15502637.741640486 - 11/01 08:00:00,21464317.93457767,0.0,42342540.40885893,0.0,21298820.27885385,0.0,32643649.13365705,0.0,20620.92824143986,20298.103762989762,20324.25994147275,24465.9442092456,426302577.9144801,0.0,56373228.15141996,38756594.35410121 - 11/01 09:00:00,37541347.08696859,0.0,53769259.800657737,0.0,31783756.37217867,0.0,46313391.36608581,0.0,18076.320791470018,17793.33261734524,17816.261142550396,21446.86460349426,439885759.58338657,0.0,56373228.15141996,38756594.35410121 - 11/01 10:00:00,26449299.029538365,0.0,42926126.419008,0.0,25898929.73636198,0.0,37907122.35937926,0.0,12933.384863662466,12730.910310901267,12747.315388253866,15344.967443084064,326705158.3655336,0.0,28186614.07570998,0.0 - 11/01 11:00:00,11533795.22918218,0.0,33011878.09264987,0.0,19646569.032076826,0.0,29385411.74793909,0.0,10345.53384467344,10183.572582377647,10196.695155065685,12274.580993399977,248379031.37370829,0.0,28186614.07570998,0.0 - 11/01 12:00:00,0.0,15375541.836981606,23015700.53152199,0.0,14652206.087463642,0.0,21007950.339709227,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,136042247.8913802,15375541.836981606,28186614.07570998,0.0 - 11/01 13:00:00,0.0,30316098.713441254,14748025.384465084,0.0,10350983.05923595,0.0,12118669.71682021,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,114568214.89609087,30316098.713441254,28186614.07570998,0.0 - 11/01 14:00:00,0.0,30791039.126598039,5005854.408071827,0.0,4193864.1191650789,0.0,5406503.015899833,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,91943419.1144844,30791039.126598039,28186614.07570998,0.0 - 11/01 15:00:00,0.0,13539897.836310424,6265804.8340699509,0.0,2763955.9213653265,0.0,5518860.213069929,0.0,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,130574426.0718596,13539897.836310424,28186614.07570998,0.0 - 11/01 16:00:00,0.0,0.0,15197357.887724478,0.0,6173835.615162071,0.0,11286152.615962925,0.0,12924.908609587581,12722.566754165167,12738.961079993303,15334.910691182726,226054195.8045931,0.0,28186614.07570998,0.0 - 11/01 17:00:00,8617522.360707589,0.0,22159819.685020478,0.0,8980258.660720505,0.0,15705828.030475526,0.0,12925.559302804977,12723.207260658859,12739.602411844986,15335.682713846678,248870014.8178839,0.0,35233267.594637479,0.0 - 11/01 18:00:00,16160894.584102001,0.0,25996257.256992885,0.0,12172895.40235755,0.0,19708068.650560917,0.0,18095.783023926968,17812.4901649224,17835.44337658298,21469.95579938535,344807336.4073571,0.0,14093307.03785499,0.0 - 11/01 19:00:00,4368669.695531892,0.0,12874245.993496225,0.0,0.0,0.0,3724622.809761445,0.0,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,291723128.05883058,0.0,63419881.67034747,0.0 - 11/01 20:00:00,0.0,0.0,89383.16840177578,0.0,0.0,896060.0681388662,0.0,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154798797.75999157,896060.0681388662,63419881.67034747,69761869.8373822 - 11/01 21:00:00,0.0,0.0,5188603.69350885,0.0,0.0,2343962.601585183,0.0,0.0,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,159872167.35619594,2343962.601585183,49326574.63249246,69761869.8373822 - 11/01 22:00:00,0.0,0.0,7362037.542700103,0.0,0.0,876738.7630294209,0.0,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,84668837.09816192,876738.7630294209,35233267.594637479,69761869.8373822 - 11/01 23:00:00,1576182.785045507,0.0,8687391.809801685,0.0,0.0,278799.0352466371,0.0,0.0,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,87508715.29464662,278799.0352466371,35233267.594637479,62010550.96656194 - 11/01 24:00:00,4092940.573479328,0.0,10027057.495193597,0.0,0.0,0.0,0.0,0.0,2581.185747601241,2540.7768032028186,2544.050853445442,3062.478359611532,52742568.41857265,0.0,35233267.594637479,46507913.22492146 - 11/02 01:00:00,13874988.713632942,0.0,19373642.813156375,0.0,0.0,0.0,5611979.078398852,0.0,2584.104084384738,2543.6494528795549,2546.927204824492,3065.940854805388,77526848.35400719,0.0,21139960.556782485,23253956.61246073 - 11/02 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411904,1273.1298825349623,1532.568701980826,19328052.497917825,0.0,14093307.03785499,0.0 - 11/02 03:00:00,2302720.6261440615,0.0,6451728.924691927,0.0,0.0,0.0,0.0,0.0,1293.3156672372614,1273.0685691988627,1274.7090479896829,1534.469670282925,28106476.18778742,0.0,14093307.03785499,0.0 - 11/02 04:00:00,15024586.499845913,0.0,20674750.786565804,0.0,0.0,0.0,8005058.804153973,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,63050382.63624735,0.0,14093307.03785499,0.0 - 11/02 05:00:00,20185717.06327074,0.0,25556722.97886475,0.0,5370386.026876375,0.0,15322134.161832639,0.0,1292.2288468269522,1271.998763164823,1273.6378634013757,1533.180199352579,85770724.65272914,0.0,14093307.03785499,0.0 - 11/02 06:00:00,25945298.669790955,0.0,31410686.02810952,0.0,11079173.256028582,0.0,21363611.743440197,0.0,1289.6415440962367,1269.4519651410179,1271.0877835683703,1530.110463426002,109095820.0198031,0.0,14093307.03785499,0.0 - 11/02 07:00:00,24934213.905198859,0.0,32186670.51142791,0.0,10933760.914353494,0.0,21196944.58594978,0.0,1288.206897947171,1268.0397786450488,1269.6737773259625,1528.4083105339458,108527173.46895767,0.0,14093307.03785499,15502637.741640486 - 11/02 08:00:00,14037918.25629906,0.0,33360787.25455141,0.0,13547146.836313159,0.0,22790830.156260149,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,160820213.83635504,0.0,56373228.15141996,38756594.35410121 - 11/02 09:00:00,11054970.401559417,0.0,44036643.86237505,0.0,23659821.45935694,0.0,35388909.94193575,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561033,307070636.6932934,0.0,56373228.15141996,38756594.35410121 - 11/02 10:00:00,0.0,0.0,39394608.33656475,0.0,21256546.179873755,0.0,33146631.297659529,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,286748353.3247411,0.0,28186614.07570998,0.0 - 11/02 11:00:00,0.0,14942251.441462,39872014.64976396,0.0,23075461.886206278,0.0,35063547.0366148,0.0,12900.275642831568,12698.319421098995,12714.682501763602,15305.684616424864,291039287.42821356,14942251.441462,28186614.07570998,0.0 - 11/02 12:00:00,0.0,15168184.436960435,43842287.56833381,0.0,26060254.534044528,0.0,37893834.535892378,0.0,7734.5697319960149,7613.483599959058,7623.294350669723,9176.771740335631,223529606.56092827,15168184.436960435,28186614.07570998,0.0 - 11/02 13:00:00,0.0,12261091.622602642,41018864.288856048,0.0,25231485.809785099,0.0,33856514.9375252,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,215865039.65300609,12261091.622602642,28186614.07570998,0.0 - 11/02 14:00:00,0.0,9091360.934113555,35924668.649727437,0.0,21283253.119809085,0.0,30572248.368023304,0.0,7737.049870136405,7615.924911074191,7625.738807663407,9179.714329566512,203550510.64394567,9091360.934113555,28186614.07570998,0.0 - 11/02 15:00:00,0.0,9536493.63581285,33500441.877473877,0.0,17806931.296851428,0.0,27560998.98821542,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,194479262.3329943,9536493.63581285,28186614.07570998,0.0 - 11/02 16:00:00,1568328.477866482,0.0,42602178.66760874,0.0,20626380.15695598,0.0,33508154.478693993,0.0,18018.949252776256,17736.859240792382,17759.714994287733,21378.795462840386,367924590.0036335,0.0,28186614.07570998,0.0 - 11/02 17:00:00,36854711.92363407,0.0,58140618.566700328,0.0,29615824.690731974,0.0,46142864.24091259,0.0,23148.063250828087,22785.676002369437,22815.037671584087,27464.293431210906,517121072.703552,0.0,35233267.594637479,0.0 - 11/02 18:00:00,48622513.107117209,0.0,67511623.28171806,0.0,36708365.414153609,0.0,55100433.18685918,0.0,17985.236939898612,17703.674700461863,17726.48769228992,21338.797090489155,477058042.11315038,0.0,14093307.03785499,0.0 - 11/02 19:00:00,41494010.114245157,0.0,58899553.12727457,0.0,27112832.473761985,0.0,43618710.36408811,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,440025121.4802526,0.0,63419881.67034747,0.0 - 11/02 20:00:00,31611612.750317538,0.0,47843214.38066068,0.0,15244187.757535587,0.0,29626563.694941038,0.0,15385.227682436629,15144.369072956692,15163.884138260817,18253.9853549654,354536457.0784852,0.0,63419881.67034747,69761869.8373822 - 11/02 21:00:00,37419772.721682999,0.0,52855736.31696737,0.0,19165703.49025028,0.0,34719744.28188991,0.0,12816.45074137696,12615.80681411418,12632.063568862799,15206.229570642176,335934939.31277659,0.0,49326574.63249246,69761869.8373822 - 11/02 22:00:00,44637752.21247805,0.0,59149680.855839807,0.0,24281227.533695304,0.0,41240769.46834182,0.0,10223.490790048865,10063.44013454033,10076.407904307664,12129.781567757718,322284663.4983114,0.0,35233267.594637479,69761869.8373822 - 11/02 23:00:00,51177577.147042769,0.0,65295424.16621943,0.0,28873226.262471737,0.0,47302268.750629838,0.0,7647.708369247359,7527.9820680482039,7537.682641308041,9073.714049136406,307082009.9862278,0.0,35233267.594637479,62010550.96656194 - 11/02 24:00:00,57057298.6890776,0.0,70711114.0295184,0.0,33534484.889192977,0.0,53172595.42352667,0.0,5097.3103940984469,5017.511048976521,5023.976624089833,6047.764206298037,290747117.21578189,0.0,35233267.594637479,46507913.22492146 - 11/03 01:00:00,65070843.9045427,0.0,78222861.19196417,0.0,41064772.397468868,0.0,62255365.196994978,0.0,2552.0766076463407,2512.1233722642166,2515.3604996364808,3027.941476219226,284800849.7317292,0.0,21139960.556782485,23253956.61246073 - 11/03 02:00:00,30897886.78899917,0.0,42080659.539290759,0.0,11295270.205367767,0.0,24550429.83794388,0.0,1273.4434303364224,1253.5074358738687,1255.1227081478363,1510.8920197699973,127878922.51046282,0.0,14093307.03785499,0.0 - 11/03 03:00:00,54396673.59397432,0.0,65844538.7587505,0.0,31965828.1241839,0.0,50570205.732199687,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,221813837.8900061,0.0,14093307.03785499,0.0 - 11/03 04:00:00,54077613.1751495,0.0,64769897.97332749,0.0,32333275.297836875,0.0,50474977.66274008,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,220749267.62943328,0.0,14093307.03785499,0.0 - 11/03 05:00:00,56357306.200789708,0.0,66871466.25401547,0.0,34380377.83066736,0.0,52805554.0067033,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,229455864.5920797,0.0,14093307.03785499,0.0 - 11/03 06:00:00,61408220.47781193,0.0,72089061.47499249,0.0,38447573.92295399,0.0,57979121.06642465,0.0,1266.3808134439633,1246.5553855663907,1248.161699413956,1502.5124944237553,248872974.35643608,0.0,14093307.03785499,0.0 - 11/03 07:00:00,55333682.81084092,0.0,67683169.94391883,0.0,34678945.21867417,0.0,53220424.56742491,0.0,1267.7399174552944,1247.8932125508839,1249.5012503250678,1504.1250194530099,229885556.38008217,0.0,14093307.03785499,15502637.741640486 - 11/03 08:00:00,27381987.417804365,0.0,58573222.49805918,0.0,29911312.664425576,0.0,45520195.52430666,0.0,1277.1358476833853,1257.142047738445,1258.762003580777,1515.2729320039333,180496644.29621936,0.0,56373228.15141996,38756594.35410121 - 11/03 09:00:00,13374001.956591456,0.0,58084133.741121519,0.0,31874248.336034366,0.0,48207997.04502635,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,228368956.90759737,0.0,56373228.15141996,38756594.35410121 - 11/03 10:00:00,0.0,7697308.890862135,48746361.86677218,0.0,27353793.82982936,0.0,41610394.75643719,0.0,7710.329325090653,7589.622681145843,7599.4026846271849,9148.011422855636,233081068.46242828,7697308.890862135,28186614.07570998,0.0 - 11/03 11:00:00,0.0,24455606.18106718,47753771.80446516,0.0,28453013.483005048,0.0,42551221.92030004,0.0,7723.423837393386,7602.512196415697,7612.308809353069,9163.547561854564,234324459.86583043,24455606.18106718,28186614.07570998,0.0 - 11/03 12:00:00,0.0,32348286.441003838,48238362.79422778,0.0,29033581.342612119,0.0,41862654.63173112,0.0,5150.27817098033,5069.649605430191,5076.1823663951649,6110.608451664047,196198785.70866204,32348286.441003838,28186614.07570998,0.0 - 11/03 13:00:00,0.0,39698199.41836757,39808497.923776987,0.0,24889663.499412016,0.0,31833995.859077123,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,173670469.8218993,39698199.41836757,28186614.07570998,0.0 - 11/03 14:00:00,0.0,37526593.15358129,30488266.530328674,0.0,17953343.49490563,0.0,24963487.2136743,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,189163271.85574837,37526593.15358129,28186614.07570998,0.0 - 11/03 15:00:00,0.0,38721580.96032513,21077433.235653588,0.0,9840250.80977696,0.0,16457746.222810602,0.0,10323.144345776187,10161.533595262386,10174.627768466053,12248.0167076181,201841790.96988295,38721580.96032513,28186614.07570998,0.0 - 11/03 16:00:00,0.0,16469639.046463697,24344653.92163906,0.0,9295397.63305026,0.0,17860368.31141615,0.0,12890.94955332669,12689.139333265099,12705.490584449537,15294.61956722605,244389136.40386803,16469639.046463697,28186614.07570998,0.0 - 11/03 17:00:00,3724174.021292652,0.0,44416109.85987193,0.0,20252828.223993668,0.0,33266027.454274015,0.0,15462.143906091713,15220.081158781748,15239.69378683623,18345.243518259398,333020924.091321,0.0,35233267.594637479,0.0 - 11/03 18:00:00,26402692.602410735,0.0,53931487.73160447,0.0,27057357.43725702,0.0,42322892.97484752,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,419072221.97503259,0.0,14093307.03785499,0.0 - 11/03 19:00:00,21191615.369759166,0.0,46293692.92415884,0.0,18545850.320000866,0.0,32266967.569814184,0.0,10275.671048922764,10114.80350172734,10127.837458435844,12191.691453068664,272054138.64748969,0.0,63419881.67034747,0.0 - 11/03 20:00:00,10772293.950559224,0.0,33489393.02054691,0.0,5831661.034413124,0.0,16613952.967622426,0.0,7717.119090607243,7596.306151616642,7606.094767431852,9156.067220459789,182179415.00155757,0.0,63419881.67034747,69761869.8373822 - 11/03 21:00:00,15435344.795475405,0.0,36752856.879405889,0.0,8526687.90450386,0.0,20179105.822192003,0.0,5144.014055739574,5063.4835560820979,5070.008371463131,6103.176318046869,157864451.68637116,0.0,49326574.63249246,69761869.8373822 - 11/03 22:00:00,21350450.57415358,0.0,41477092.10349029,0.0,12313599.512897959,0.0,25140516.08010154,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,177229805.6425634,0.0,35233267.594637479,69761869.8373822 - 11/03 23:00:00,26002064.868849528,0.0,44974157.19559492,0.0,15051114.741985735,0.0,28709455.348038548,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,191662094.29197658,0.0,35233267.594637479,62010550.96656194 - 11/03 24:00:00,33873858.85886177,0.0,51897798.54992063,0.0,20934709.397627936,0.0,36162327.739781569,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,219564406.54464848,0.0,35233267.594637479,46507913.22492146 - 11/04 01:00:00,43688846.34142425,0.0,60672909.854228738,0.0,29282904.03374615,0.0,46351284.82640542,0.0,2567.6856287144426,2527.488031195637,2530.744957499173,3046.460983883565,218416511.6204587,0.0,21139960.556782485,23253956.61246073 - 11/04 02:00:00,9118183.182763156,0.0,22386448.32909088,0.0,0.0,0.0,6045283.876057117,0.0,1280.942716075951,1260.8893188961543,1262.5141034798492,1519.7896360346122,56716804.17606279,0.0,14093307.03785499,0.0 - 11/04 03:00:00,34566205.39706862,0.0,49298275.498126018,0.0,18822289.909412784,0.0,34684073.51561279,0.0,1280.2206012981017,1260.1785089598625,1261.8023775924037,1518.9328744155099,156526928.02437736,0.0,14093307.03785499,0.0 - 11/04 04:00:00,38762723.352046538,0.0,52199455.39625013,0.0,24011304.07428487,0.0,39245707.7520737,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,173345022.63529475,0.0,14093307.03785499,0.0 - 11/04 05:00:00,38766956.20598169,0.0,51424893.333351697,0.0,24163001.325955135,0.0,38919046.56296788,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,172464846.87322627,0.0,14093307.03785499,0.0 - 11/04 06:00:00,38201219.84922054,0.0,49987629.48913628,0.0,23926877.56017109,0.0,38004702.318465929,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,169311378.66196365,0.0,14093307.03785499,0.0 - 11/04 07:00:00,31285595.250287728,0.0,44503076.09995148,0.0,19233458.91286462,0.0,32072185.490984158,0.0,5132.826961767405,5052.4715981530139,5058.9822235022879,6089.9032580865209,203897378.30352123,0.0,14093307.03785499,15502637.741640486 - 11/04 08:00:00,13996489.762614076,0.0,33836299.06600031,0.0,13809134.165605195,0.0,22005495.441096918,0.0,20620.92824143986,20298.103762989762,20324.25994147275,24465.9442092456,392200668.5938492,0.0,56373228.15141996,38756594.35410121 - 11/04 09:00:00,3844358.960696905,11006343.182964109,33173980.293309977,0.0,12022142.110011135,0.0,23176449.183673584,0.0,18077.73793636892,17794.727576576384,17817.65789932889,21448.54599182107,342716140.40243449,11006343.182964109,56373228.15141996,38756594.35410121 - 11/04 10:00:00,0.0,26931268.583136679,30049591.283977137,0.0,15442413.730114999,0.0,24804666.61378243,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,263770632.37336857,26931268.583136679,28186614.07570998,0.0 - 11/04 11:00:00,0.0,39456091.367607537,28191026.75837352,0.0,15681862.784503108,0.0,24835977.662158695,0.0,10347.144464976322,10185.157988119225,10198.282603764379,12276.49193290819,223534344.36820055,39456091.367607537,28186614.07570998,0.0 - 11/04 12:00:00,0.0,43240832.64089796,27690531.120495194,0.0,15771159.838628097,0.0,23592993.624974174,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,144469740.3015708,43240832.64089796,28186614.07570998,0.0 - 11/04 13:00:00,0.0,35463516.502179387,22760039.496317228,0.0,13229234.973736978,0.0,17003144.905430754,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,130404902.3715648,35463516.502179387,28186614.07570998,0.0 - 11/04 14:00:00,0.0,24520193.574353514,16886305.202124195,0.0,9685258.996195399,0.0,14039668.871596681,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,118026644.56294385,24520193.574353514,28186614.07570998,0.0 - 11/04 15:00:00,0.0,1652845.6779892378,21042280.847361585,0.0,10583889.822931832,0.0,17108628.816194714,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,164857828.2484651,1652845.6779892378,28186614.07570998,0.0 - 11/04 16:00:00,3381129.9073013237,0.0,28798939.68187263,0.0,13756625.082705385,0.0,22424093.022347727,0.0,12934.334147626676,12731.844733647928,12748.25101509961,15346.093732271205,261898672.75735057,0.0,28186614.07570998,0.0 - 11/04 17:00:00,17977460.302601194,0.0,33131906.346844526,0.0,15464083.821961163,0.0,25045794.547325184,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,285157773.75130107,0.0,35233267.594637479,0.0 - 11/04 18:00:00,22335285.797054009,0.0,35964897.27518803,0.0,18106478.551150446,0.0,28217390.753418566,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,375576747.3879677,0.0,14093307.03785499,0.0 - 11/04 19:00:00,16834262.116663889,0.0,30483775.956960508,0.0,7505444.861310016,0.0,17273709.72051815,0.0,18108.15124411414,17824.664758315255,17847.633658182054,21484.630220513438,343051480.2275022,0.0,63419881.67034747,0.0 - 11/04 20:00:00,10427077.121698775,0.0,23082530.987973319,0.0,0.0,0.0,5834674.181959068,0.0,10346.52533789809,10184.548553590901,10197.672383917463,12275.7573622634,194160495.38724263,0.0,63419881.67034747,69761869.8373822 - 11/04 21:00:00,17756096.42779778,0.0,28945874.049960898,0.0,1195035.1912552664,0.0,12108886.453617897,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,214790283.9117621,0.0,49326574.63249246,69761869.8373822 - 11/04 22:00:00,23628534.493695488,0.0,33722961.725685928,0.0,6372500.063571004,0.0,17621863.900259314,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,158709574.70458133,0.0,35233267.594637479,69761869.8373822 - 11/04 23:00:00,27063356.628486579,0.0,36378934.91340017,0.0,9237334.819962116,0.0,20866345.978413289,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,170889030.02780069,0.0,35233267.594637479,62010550.96656194 - 11/04 24:00:00,30687465.518854388,0.0,39414637.63407723,0.0,12518981.068324335,0.0,24722821.11212591,0.0,2584.747627715857,2544.2829214197724,2547.5614896535805,3066.7043944022018,146019772.49287094,0.0,35233267.594637479,46507913.22492146 - 11/05 01:00:00,37605634.71699086,0.0,45730601.65697966,0.0,19459662.03544509,0.0,32862433.76927883,0.0,2585.2721682358198,2544.7992501600417,2548.078483736132,3067.3267417061945,174342048.0965119,0.0,21139960.556782485,23253956.61246073 - 11/05 02:00:00,1486411.1344724806,0.0,6020420.512598373,0.0,0.0,0.0,0.0,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,26851270.401941256,0.0,14093307.03785499,0.0 - 11/05 03:00:00,18745991.04301037,0.0,26027852.72559571,0.0,903592.9921117261,0.0,8998046.758620348,0.0,1292.861436345202,1272.6214493761555,1274.2613520074474,1533.930742668556,74020713.44876865,0.0,14093307.03785499,0.0 - 11/05 04:00:00,21126080.56483004,0.0,26737991.25356698,0.0,7543511.438983576,0.0,16138493.014766457,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,90892062.81782872,0.0,14093307.03785499,0.0 - 11/05 05:00:00,21007969.41325259,0.0,26274523.466057727,0.0,7929083.804220735,0.0,16653021.394238014,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,91211994.15231848,0.0,14093307.03785499,0.0 - 11/05 06:00:00,20610559.38676146,0.0,25612879.17479264,0.0,8222570.916306935,0.0,16496622.251579535,0.0,1293.0911584806107,1272.8475751686795,1274.4877691861353,1534.2032992131854,90291299.01681558,0.0,14093307.03785499,0.0 - 11/05 07:00:00,16834292.417591305,0.0,21687595.11780128,0.0,5183349.047495301,0.0,12392762.202400094,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,133497199.32676199,0.0,14093307.03785499,15502637.741640486 - 11/05 08:00:00,30613845.578151596,0.0,35955609.93849408,0.0,18889737.218428933,0.0,28431299.306649027,0.0,20691.220063831403,20367.29515378883,20393.540492441087,24549.34277330935,423495526.5818581,0.0,56373228.15141996,38756594.35410121 - 11/05 09:00:00,40154322.146183628,0.0,45987602.90057369,0.0,27849122.601145295,0.0,40300916.00625138,0.0,18106.419341321656,17822.95996878407,17845.92667185556,21482.57538396095,425220336.5714741,0.0,56373228.15141996,38756594.35410121 - 11/05 10:00:00,32697175.450002195,0.0,38876852.38732334,0.0,23764170.117715207,0.0,34325549.15421389,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,323200642.0986324,0.0,28186614.07570998,0.0 - 11/05 11:00:00,28988577.27341684,0.0,35527479.88369815,0.0,21595820.12015017,0.0,31620197.292733294,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,272561590.56150069,0.0,28186614.07570998,0.0 - 11/05 12:00:00,26696085.155143463,0.0,33554132.24338354,0.0,20252947.03638001,0.0,29913851.627610595,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,187832427.5555452,0.0,28186614.07570998,0.0 - 11/05 13:00:00,27612453.821729848,0.0,34045243.51849455,0.0,19990657.44347059,0.0,29721244.82586766,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,188785011.1025902,0.0,28186614.07570998,0.0 - 11/05 14:00:00,27425763.497146507,0.0,33661542.25802968,0.0,19218844.309192789,0.0,28905470.934772269,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,186625667.45743875,0.0,28186614.07570998,0.0 - 11/05 15:00:00,29810989.14069798,0.0,35572813.87996751,0.0,19622492.295302016,0.0,29705877.04766471,0.0,7760.546991107112,7639.054180232718,7648.897881246001,9207.592766658006,230834102.91291,0.0,28186614.07570998,0.0 - 11/05 16:00:00,32988222.55670271,0.0,38545974.02213759,0.0,20703158.256112908,0.0,31382808.657420786,0.0,12934.244985178519,12731.756967054533,12748.16313541,15345.98794443001,317156714.40783706,0.0,28186614.07570998,0.0 - 11/05 17:00:00,32422710.20506363,0.0,37828294.93431957,0.0,19622679.004577869,0.0,29972773.64480447,0.0,12934.367309635489,12731.877376499306,12748.283700014634,15346.13307772879,313384839.05872717,0.0,35233267.594637479,0.0 - 11/05 18:00:00,33788522.14067446,0.0,38785345.719040099,0.0,21340387.58986345,0.0,31707406.86313138,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,396575396.09065559,0.0,14093307.03785499,0.0 - 11/05 19:00:00,19329032.77371798,0.0,24519568.962207289,0.0,7197637.631974063,0.0,14589205.50140292,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,336589178.64724847,0.0,63419881.67034747,0.0 - 11/05 20:00:00,7838713.511728644,0.0,13824531.408367917,0.0,0.0,0.0,366264.89928416858,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,176859025.81088297,0.0,63419881.67034747,69761869.8373822 - 11/05 21:00:00,11137694.641475179,0.0,17186765.141860766,0.0,0.0,0.0,3820721.29555846,0.0,10347.144464976322,10185.157988119225,10198.282603764379,12276.49193290819,186970658.2420596,0.0,49326574.63249246,69761869.8373822 - 11/05 22:00:00,13899509.727697503,0.0,19703729.304383495,0.0,0.0,0.0,7114914.118599967,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,118124755.42369575,0.0,35233267.594637479,69761869.8373822 - 11/05 23:00:00,18286400.327939709,0.0,24359038.44984114,0.0,2600463.422735407,0.0,11570324.875627609,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,134190679.19451526,0.0,35233267.594637479,62010550.96656194 - 11/05 24:00:00,22955619.556870294,0.0,29325632.230479096,0.0,7527848.583211886,0.0,16887897.804217984,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,115382503.69782089,0.0,35233267.594637479,46507913.22492146 - 11/06 01:00:00,31270333.824961239,0.0,37514618.56708833,0.0,15575298.151619532,0.0,26625288.43993426,0.0,2585.0191227165457,2544.5501661155778,2547.8290787214534,3067.026512856917,149665468.5530811,0.0,21139960.556782485,23253956.61246073 - 11/06 02:00:00,0.0,0.0,2945863.4199737568,0.0,0.0,0.0,0.0,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,22279320.814386574,0.0,14093307.03785499,0.0 - 11/06 03:00:00,18365642.61427269,0.0,25188406.191559517,0.0,2024860.640219026,0.0,9621828.183082352,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,74523590.06774387,0.0,14093307.03785499,0.0 - 11/06 04:00:00,26667303.728787915,0.0,32337315.475823989,0.0,11595620.582387479,0.0,21693466.757507668,0.0,1288.5119921743095,1268.340096565146,1269.9744822363526,1528.770293188283,111573855.25549776,0.0,14093307.03785499,0.0 - 11/06 05:00:00,31611521.770066658,0.0,37558729.95842537,0.0,15870941.516492458,0.0,27062583.261346707,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,131359745.65432719,0.0,14093307.03785499,0.0 - 11/06 06:00:00,33537337.025278324,0.0,39562546.836856838,0.0,17869558.87552676,0.0,29321500.759880835,0.0,1286.7220385646115,1266.5781650131235,1268.2102802556884,1526.646581557106,139544308.93294866,0.0,14093307.03785499,0.0 - 11/06 07:00:00,28071288.085386166,0.0,34445015.04706766,0.0,13847036.820113736,0.0,24010970.86316157,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,177512623.3553623,0.0,14093307.03785499,15502637.741640486 - 11/06 08:00:00,32379507.432033849,0.0,42950108.28619529,0.0,23524198.962355839,0.0,34349108.043731559,0.0,20634.264705539783,20311.231442256285,20337.404537093924,24481.767414816033,441955727.8832582,0.0,56373228.15141996,38756594.35410121 - 11/06 09:00:00,40828589.79374816,0.0,53245890.693843189,0.0,32058547.491598678,0.0,46154788.91433565,0.0,18056.814969641164,17774.132162795926,17797.035946255644,21423.721690477323,442473954.0625379,0.0,56373228.15141996,38756594.35410121 - 11/06 10:00:00,33972236.33261366,0.0,48972853.48531756,0.0,30372903.709481829,0.0,43471038.93711638,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,349956285.4267663,0.0,28186614.07570998,0.0 - 11/06 11:00:00,14552121.233048849,0.0,41106766.18712092,0.0,26016579.264075526,0.0,37639461.874157357,0.0,10336.597326634166,10174.775967195383,10187.887204546905,12263.978155874243,273982587.7137051,0.0,28186614.07570998,0.0 - 11/06 12:00:00,0.0,0.0,36333621.1022445,0.0,23713046.328508986,0.0,33500520.26435243,0.0,5169.7713615334209,5088.837626448721,5095.395113137258,6133.73637815446,170903053.4204918,0.0,28186614.07570998,0.0 - 11/06 13:00:00,0.0,0.0,32367214.936750294,0.0,21304115.49293951,0.0,28538396.08497693,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,159573441.03603638,0.0,28186614.07570998,0.0 - 11/06 14:00:00,3365712.0319870647,0.0,33118811.598340494,0.0,20213174.37728434,0.0,29123918.62739673,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,163160129.1807691,0.0,28186614.07570998,0.0 - 11/06 15:00:00,11183778.173063316,0.0,36057642.071155387,0.0,20182629.57267903,0.0,30338985.449245916,0.0,7751.96473157008,7630.606277569757,7640.439092598199,9197.410243322305,213756548.50836087,0.0,28186614.07570998,0.0 - 11/06 16:00:00,27197487.74597274,0.0,44195358.84658436,0.0,24307075.37844378,0.0,36698168.08928389,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,325565343.0225216,0.0,28186614.07570998,0.0 - 11/06 17:00:00,37247861.20192221,0.0,51017309.507955458,0.0,27735830.814936144,0.0,41668150.742540199,0.0,12896.415440962366,12694.519651410177,12710.877835683705,15301.10463426002,350639655.49169257,0.0,35233267.594637479,0.0 - 11/06 18:00:00,44533316.49773772,0.0,57418947.571381229,0.0,32551715.619059504,0.0,47951507.6056214,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,452377569.24767008,0.0,14093307.03785499,0.0 - 11/06 19:00:00,34157728.5050626,0.0,46622798.43071197,0.0,20604674.571784978,0.0,33893857.692921977,0.0,18025.973598431156,17743.77361900566,17766.638282383075,21387.129580824163,405003713.4908001,0.0,63419881.67034747,0.0 - 11/06 20:00:00,24745721.882665934,0.0,37081649.95788472,0.0,9556928.420719598,0.0,20973043.456486416,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,246161186.63450099,0.0,63419881.67034747,69761869.8373822 - 11/06 21:00:00,32793636.528716297,0.0,45202681.268232148,0.0,15263364.144557815,0.0,28720455.70055761,0.0,10256.818454957753,10096.246048637797,10109.256092173877,12169.32356997693,275454056.63875076,0.0,49326574.63249246,69761869.8373822 - 11/06 22:00:00,41055213.27863261,0.0,53577711.596835408,0.0,21299654.709333376,0.0,36836116.34711737,0.0,5114.86941092339,5034.795176117439,5041.283023592727,6068.597309491954,229303057.6443706,0.0,35233267.594637479,69761869.8373822 - 11/06 23:00:00,47130384.7631888,0.0,59732725.91793445,0.0,25689277.553751887,0.0,42773454.19672112,0.0,5105.263674563278,5025.339819351992,5031.815482634999,6057.200469974179,251716472.43908427,0.0,35233267.594637479,62010550.96656194 - 11/06 24:00:00,53296050.773921679,0.0,65862756.26592198,0.0,30593997.304977679,0.0,49115510.14912211,0.0,2551.51708171906,2511.572605819707,2514.8090234731919,3027.2776200649257,237046949.28582023,0.0,35233267.594637479,46507913.22492146 - 11/07 01:00:00,63807528.03936699,0.0,76095122.830056,0.0,40001409.400315169,0.0,60677186.47507811,0.0,2546.8868606728449,2507.0148717477375,2510.2454162956726,3021.784039539995,278690599.0225387,0.0,21139960.556782485,23253956.61246073 - 11/07 02:00:00,30745339.184189049,0.0,41267062.80195394,0.0,11180239.3847416,0.0,24248546.891697356,0.0,1271.9273904594755,1252.0151298840124,1253.6284791693955,1509.0932963267997,126473179.72760478,0.0,14093307.03785499,0.0 - 11/07 03:00:00,54525046.691484067,0.0,65538912.281335208,0.0,31969901.81980169,0.0,50540832.32352987,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,221578422.24468617,0.0,14093307.03785499,0.0 - 11/07 04:00:00,57187160.95696682,0.0,67876951.95326747,0.0,34474283.45640619,0.0,53480153.08903557,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,232017458.4430975,0.0,14093307.03785499,0.0 - 11/07 05:00:00,59123779.5916065,0.0,69562830.3462289,0.0,36402876.59715509,0.0,55516986.09123818,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,239590733.96502877,0.0,14093307.03785499,0.0 - 11/07 06:00:00,62955813.6424274,0.0,73430216.03969626,0.0,39620182.23494284,0.0,59462864.92685224,0.0,1263.2029112816309,1243.4272340552466,1245.029516960306,1498.7420348161314,254370522.95352669,0.0,14093307.03785499,0.0 - 11/07 07:00:00,57303952.42995575,0.0,69615120.66723463,0.0,36273110.51596848,0.0,55210716.47036959,0.0,5049.89739158272,4970.840305860066,4977.245740957288,5991.5104886786989,293965078.221012,0.0,14093307.03785499,15502637.741640486 - 11/07 08:00:00,27559405.836814237,0.0,60811274.36851794,0.0,31193619.851725043,0.0,47569143.311112377,0.0,20365.49382281368,20046.668217838414,20072.500395957984,24162.881022076836,471864599.8194425,0.0,56373228.15141996,38756594.35410121 - 11/07 09:00:00,13736628.626770718,0.0,63931205.60502346,0.0,34607330.71432927,0.0,52597361.10264986,0.0,17856.67285407985,17577.123309390197,17599.773226834033,21186.26071025806,432063914.41079708,0.0,56373228.15141996,38756594.35410121 - 11/07 10:00:00,0.0,0.0,60399426.221269119,0.0,35487155.62736608,0.0,52679782.17739426,0.0,12789.733429949742,12589.507767181463,12605.730632923822,15174.530500496256,339940572.4160141,0.0,28186614.07570998,0.0 - 11/07 11:00:00,0.0,8302639.812325007,60482395.36725795,0.0,37113937.98250448,0.0,54406727.25453947,0.0,10251.305230029026,10090.819134273821,10103.82218467683,12162.782339051731,305394484.601215,8302639.812325007,28186614.07570998,0.0 - 11/07 12:00:00,0.0,18201206.67440918,60343585.83323098,0.0,37096241.14764004,0.0,53006213.64731461,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,227324046.86006395,18201206.67440918,28186614.07570998,0.0 - 11/07 13:00:00,0.0,24039354.52985062,53152071.49964198,0.0,33511712.02905052,0.0,43940954.49130551,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,207530040.15750585,24039354.52985062,28186614.07570998,0.0 - 11/07 14:00:00,0.0,23763415.937106983,43301337.92917764,0.0,26581565.762309839,0.0,36874219.33564444,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,183749351.04703147,23763415.937106983,28186614.07570998,0.0 - 11/07 15:00:00,0.0,14487255.921041483,38831795.97858082,0.0,21338985.74218906,0.0,32212061.22106546,0.0,7716.021083609361,7595.225334123144,7605.012557194697,9154.764477070305,207838527.36902637,14487255.921041483,28186614.07570998,0.0 - 11/07 16:00:00,0.0,654593.7412884927,44891373.734189327,0.0,22562335.96956339,0.0,36191187.33870187,0.0,12842.557518663965,12641.504884932543,12657.79475426836,15237.204265336253,295809518.16597869,654593.7412884927,28186614.07570998,0.0 - 11/07 17:00:00,37330927.29117338,0.0,67761237.85641763,0.0,36259387.22481595,0.0,54954103.31149608,0.0,12787.173527308476,12586.987940293597,12603.207558981816,15171.493273729886,387641559.9650326,0.0,35233267.594637479,0.0 - 11/07 18:00:00,54500544.13332111,0.0,78279368.78800074,0.0,44170106.053511258,0.0,65218455.24368514,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,509418917.7616557,0.0,14093307.03785499,0.0 - 11/07 19:00:00,46377616.31629021,0.0,68135916.93414803,0.0,32950600.27128415,0.0,51959530.43738754,0.0,17840.58637934456,17561.28867141782,17583.918184314414,21167.174722043124,466374348.60474166,0.0,63419881.67034747,0.0 - 11/07 20:00:00,34634242.88737103,0.0,54603477.84940599,0.0,19398315.611137779,0.0,35498891.42316043,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,296981878.7861869,0.0,63419881.67034747,69761869.8373822 - 11/07 21:00:00,40562563.933946888,0.0,59264974.17229898,0.0,23279732.37532226,0.0,40469354.364767108,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,316049568.3268425,0.0,49326574.63249246,69761869.8373822 - 11/07 22:00:00,45759090.80987361,0.0,63434740.7329778,0.0,26783343.18828988,0.0,44941988.71537686,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,257259560.12138213,0.0,35233267.594637479,69761869.8373822 - 11/07 23:00:00,46955342.611372198,0.0,63499294.57749004,0.0,27414755.727911187,0.0,45485035.736483808,0.0,5110.686712121091,5030.677958245172,5037.160500264995,6063.634697026455,259826204.17682497,0.0,35233267.594637479,62010550.96656194 - 11/07 24:00:00,49091454.736222658,0.0,64606208.82259919,0.0,29400259.942934615,0.0,47542791.09255314,0.0,2558.957584326311,2518.896625970617,2522.142481371614,3036.1054923869839,228930682.45690949,0.0,35233267.594637479,46507913.22492146 - 11/08 01:00:00,58542317.90276046,0.0,73543991.773588,0.0,37881916.40279717,0.0,57928889.553829889,0.0,2554.809686971846,2514.813664723026,2518.054258811716,3031.1841705108874,266125018.0446384,0.0,21139960.556782485,23253956.61246073 - 11/08 02:00:00,20845425.079851346,0.0,33118153.930131757,0.0,4288275.8022634959,0.0,14566729.412719399,0.0,1276.5913826487129,1256.6061064054603,1258.2253716326823,1514.6269450238029,91920363.52552435,0.0,14093307.03785499,0.0 - 11/08 03:00:00,47271078.51117079,0.0,60282368.30737646,0.0,28181461.05251406,0.0,45671094.152245309,0.0,1275.75854085953,1255.7863029098535,1257.4045117365959,1513.6388100324628,200495319.419245,0.0,14093307.03785499,0.0 - 11/08 04:00:00,53580837.96986834,0.0,66139643.648053128,0.0,33537637.757349336,0.0,52051732.077180627,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642634,224253687.74680025,0.0,14093307.03785499,0.0 - 11/08 05:00:00,57123572.02075015,0.0,69401994.95812202,0.0,36759853.94924367,0.0,55742814.23503566,0.0,1266.3808134439633,1246.5553855663907,1248.161699413956,1502.5124944237553,237977232.5774045,0.0,14093307.03785499,0.0 - 11/08 06:00:00,55303366.732706729,0.0,66977039.89877805,0.0,35543923.642106968,0.0,53710126.4767918,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,230575617.0502874,0.0,14093307.03785499,0.0 - 11/08 07:00:00,47644991.33371626,0.0,60854432.191040698,0.0,30362372.497902574,0.0,47125357.61191718,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,262059160.35097165,0.0,14093307.03785499,15502637.741640486 - 11/08 08:00:00,25448601.29252016,0.0,57006015.50319224,0.0,29856830.969070347,0.0,45361307.79305061,0.0,20365.49382281368,20046.668217838414,20072.500395957984,24162.881022076836,462403912.0091063,0.0,56373228.15141996,38756594.35410121 - 11/08 09:00:00,12464936.41492822,0.0,52613808.67881707,0.0,30748811.78983185,0.0,45034576.55350603,0.0,17988.018311993434,17706.412529657668,17729.229049458096,21342.09708230816,410018858.5413857,0.0,56373228.15141996,38756594.35410121 - 11/08 10:00:00,0.0,10677075.659823042,43897009.37451698,0.0,25636847.681108077,0.0,38753290.726381469,0.0,12865.45779139668,12664.046649623586,12680.365566323997,15264.374564776468,300794428.24164119,10677075.659823042,28186614.07570998,0.0 - 11/08 11:00:00,0.0,21291091.248934449,45647572.37476862,0.0,27546919.867884526,0.0,41253539.423844117,0.0,10304.407621900022,10143.090198293834,10156.160605298028,12225.786299963751,268634032.67813757,21291091.248934449,28186614.07570998,0.0 - 11/08 12:00:00,0.0,26914025.290821464,42681806.17286809,0.0,26498082.246299648,0.0,38479628.11514856,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,184839743.53857354,26914025.290821464,28186614.07570998,0.0 - 11/08 13:00:00,0.0,28976029.16532161,36392803.31323027,0.0,23422268.12813343,0.0,30832686.039386047,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,167835958.77048517,28976029.16532161,28186614.07570998,0.0 - 11/08 14:00:00,0.0,10626239.126402468,33893991.050822068,0.0,20542095.367271048,0.0,29657000.710668986,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,161265203.53998865,10626239.126402468,28186614.07570998,0.0 - 11/08 15:00:00,0.0,0.0,37783644.30741054,0.0,21070028.21204447,0.0,32210835.34848399,0.0,7733.715727451642,7612.642965015142,7622.45263248188,9175.75849654309,206784959.2253093,0.0,28186614.07570998,0.0 - 11/08 16:00:00,10542032.444489126,0.0,43323493.84603073,0.0,22500402.752262609,0.0,35341160.07060446,0.0,12888.080150899912,12686.314851868598,12702.662463420469,15291.2151307785,304552870.4624698,0.0,28186614.07570998,0.0 - 11/08 17:00:00,30114904.413132136,0.0,53806707.88159308,0.0,27896056.853415185,0.0,43030401.25090824,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,347532887.34980466,0.0,35233267.594637479,0.0 - 11/08 18:00:00,39203373.45689908,0.0,60652086.38667165,0.0,33275174.610284926,0.0,49885519.80170711,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,452373945.4844755,0.0,14093307.03785499,0.0 - 11/08 19:00:00,27976597.324081985,0.0,47482018.917832378,0.0,20007212.59892504,0.0,33793937.32366379,0.0,18025.973598431156,17743.77361900566,17766.638282383075,21387.129580824163,398984420.45482179,0.0,63419881.67034747,0.0 - 11/08 20:00:00,17093237.59109938,0.0,35291404.69502831,0.0,7369650.364383883,0.0,18583419.30951216,0.0,10289.492120809658,10128.408202155526,10141.459689909136,12208.089627279714,232300530.6645783,0.0,63419881.67034747,69761869.8373822 - 11/08 21:00:00,23221629.46370487,0.0,40523389.027665387,0.0,11353548.331036702,0.0,23877011.05734582,0.0,10285.04625670184,10124.03193887969,10137.077787371394,12202.814779224856,252871872.62359277,0.0,49326574.63249246,69761869.8373822 - 11/08 22:00:00,28784830.13492989,0.0,45012172.58208166,0.0,15133076.961079654,0.0,28668555.121434194,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,194512313.47245176,0.0,35233267.594637479,69761869.8373822 - 11/08 23:00:00,32239568.277237357,0.0,47593969.86522059,0.0,17475314.809239065,0.0,31580035.732200814,0.0,5138.6391256853189,5058.192771560533,5064.7107692256909,6096.799168711188,205778919.29055567,0.0,35233267.594637479,62010550.96656194 - 11/08 24:00:00,36890901.72929908,0.0,51534555.054395187,0.0,20948944.086777159,0.0,35983313.9204517,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,183826110.6612168,0.0,35233267.594637479,46507913.22492146 - 11/09 01:00:00,44688927.69737517,0.0,58409301.21564727,0.0,28161423.195855738,0.0,44605840.81707099,0.0,2572.3730302024148,2532.1020505388817,2535.364922477284,3052.0224068199288,214356197.6020878,0.0,21139960.556782485,23253956.61246073 - 11/09 02:00:00,6243498.22692151,0.0,16175828.59489439,0.0,0.0,0.0,2803913.2057669165,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,44494122.86081563,0.0,14093307.03785499,0.0 - 11/09 03:00:00,28389927.74853059,0.0,40063794.62987231,0.0,8730582.844596789,0.0,25394276.408619666,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,121856464.7191804,0.0,14093307.03785499,0.0 - 11/09 04:00:00,30328747.596010828,0.0,40356342.013599257,0.0,15894208.819766246,0.0,28512154.504800179,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,134376031.0690848,0.0,14093307.03785499,0.0 - 11/09 05:00:00,30629984.653078464,0.0,39906574.594696078,0.0,16750707.024491873,0.0,28730841.405866118,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,135309075.07524897,0.0,14093307.03785499,0.0 - 11/09 06:00:00,31220310.930330568,0.0,39935537.039776939,0.0,17426025.910457016,0.0,29157099.971488775,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,137029941.24916975,0.0,14093307.03785499,0.0 - 11/09 07:00:00,28001084.712532958,0.0,36570777.44886969,0.0,14575808.71499983,0.0,25410323.65048325,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,123851023.62969235,0.0,14093307.03785499,15502637.741640486 - 11/09 08:00:00,37976493.55745818,0.0,48456718.52678211,0.0,26428025.725600486,0.0,39586799.4525395,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,229651777.89566422,0.0,56373228.15141996,38756594.35410121 - 11/09 09:00:00,46121502.57063203,0.0,56613197.47163673,0.0,34707486.63349519,0.0,48987164.629455309,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,379379918.8158623,0.0,56373228.15141996,38756594.35410121 - 11/09 10:00:00,32210586.495605045,0.0,47696247.10918565,0.0,29062420.723068406,0.0,41965512.910910937,0.0,12912.66995454923,12710.51969755456,12726.898499520636,15320.389994157906,344148488.5635864,0.0,28186614.07570998,0.0 - 11/09 11:00:00,25003700.98209223,0.0,41389252.94981561,0.0,25365618.859776405,0.0,37097524.51505889,0.0,12919.941219283466,12717.67712928293,12734.065154330332,15329.017072203838,322178619.3771052,0.0,28186614.07570998,0.0 - 11/09 12:00:00,26848212.876791955,0.0,37884989.015982497,0.0,22928205.687301414,0.0,33900964.21696729,0.0,7755.057368149637,7633.65049834673,7643.48723616436,9201.079538570753,237602160.5054765,0.0,28186614.07570998,0.0 - 11/09 13:00:00,25104248.25627183,0.0,35323323.5222,0.0,20970505.778201425,0.0,31259037.01367327,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,228713631.13947145,0.0,28186614.07570998,0.0 - 11/09 14:00:00,25633620.95879172,0.0,35274862.7038353,0.0,20236423.66873089,0.0,30605736.23876542,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,227807160.13924826,0.0,28186614.07570998,0.0 - 11/09 15:00:00,27692835.403970209,0.0,36651276.89760049,0.0,20217181.436250207,0.0,30874065.686132507,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,231501991.9531758,0.0,28186614.07570998,0.0 - 11/09 16:00:00,38138954.7793304,0.0,47775710.709627788,0.0,24858688.78224622,0.0,38511529.10414544,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,419864104.73915556,0.0,28186614.07570998,0.0 - 11/09 17:00:00,44109475.785255569,0.0,53484961.05514462,0.0,27618766.247278818,0.0,42485536.32712671,0.0,23227.074777996422,22863.450589340366,22892.91247904862,27558.037592140725,515248050.9934999,0.0,35233267.594637479,0.0 - 11/09 18:00:00,47313650.62916223,0.0,55812704.87765602,0.0,30690563.921653633,0.0,45797950.976248268,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,449931001.6325933,0.0,14093307.03785499,0.0 - 11/09 19:00:00,40188225.92850308,0.0,49640421.025104578,0.0,21133227.085297347,0.0,35507919.95188534,0.0,18062.123443729644,17779.357531732254,17802.26804861319,21430.019992346388,416735362.44990769,0.0,63419881.67034747,0.0 - 11/09 20:00:00,29697110.092790516,0.0,39676619.314719539,0.0,9223507.670065,0.0,21776881.872418994,0.0,15472.473622672722,15230.249161722677,15249.874892286774,18357.499332673244,331890468.1836735,0.0,63419881.67034747,69761869.8373822 - 11/09 21:00:00,32364889.071756893,0.0,42030427.03682138,0.0,11497394.270305509,0.0,24582404.796887123,0.0,12905.10299306992,12703.071198268826,12719.440402083319,15311.412083211382,303575611.21165129,0.0,49326574.63249246,69761869.8373822 - 11/09 22:00:00,32830324.71836008,0.0,41718748.26074987,0.0,12865660.19010261,0.0,25600092.46376771,0.0,10323.144345776187,10161.533595262386,10174.627768466053,12248.0167076181,267481186.33462207,0.0,35233267.594637479,69761869.8373822 - 11/09 23:00:00,31010459.34066974,0.0,38970577.20308268,0.0,12534054.78824818,0.0,24280823.514602595,0.0,7746.994624915723,7625.713978862246,7635.540489664457,9191.513401497543,222715059.82838709,0.0,35233267.594637479,62010550.96656194 - 11/09 24:00:00,31154771.54907268,0.0,38786044.920154679,0.0,13225996.988727583,0.0,24840748.99808456,0.0,5170.544336471639,5089.598500320083,5096.156967472264,6134.653483412389,185374994.29167445,0.0,35233267.594637479,46507913.22492146 - 11/10 01:00:00,39999866.191049139,0.0,48061149.93389574,0.0,20766740.455109303,0.0,34673438.1586014,0.0,2585.2721682358198,2544.7992501600417,2548.078483736132,3067.3267417061945,182184910.65647305,0.0,21139960.556782485,23253956.61246073 - 11/10 02:00:00,3318524.800631928,0.0,9258525.916311048,0.0,0.0,0.0,0.0,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,31917979.347285376,0.0,14093307.03785499,0.0 - 11/10 03:00:00,24065957.079475546,0.0,31503527.142780298,0.0,4750634.055240911,0.0,14069941.828611417,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,93724688.24254829,0.0,14093307.03785499,0.0 - 11/10 04:00:00,25702544.24562327,0.0,31844956.92724514,0.0,9856601.682786797,0.0,20674018.5588817,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,107417087.84588339,0.0,14093307.03785499,0.0 - 11/10 05:00:00,25090626.63259647,0.0,30849155.99059272,0.0,10670862.737362523,0.0,20545801.320682389,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,106497375.31157649,0.0,14093307.03785499,0.0 - 11/10 06:00:00,24071959.348568694,0.0,29485736.928434254,0.0,10586889.062050853,0.0,19826767.34590199,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,103315791.43982619,0.0,14093307.03785499,0.0 - 11/10 07:00:00,19956623.878349335,0.0,25192536.912845285,0.0,7234426.101923993,0.0,15325034.815606526,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,87055330.30508915,0.0,14093307.03785499,15502637.741640486 - 11/10 08:00:00,32773514.02268254,0.0,37813781.985207069,0.0,19942051.26156483,0.0,29764141.308976979,0.0,1293.0911584806107,1272.8475751686793,1274.4877691861353,1534.2032992131854,139642155.8658064,0.0,56373228.15141996,38756594.35410121 - 11/10 09:00:00,40795749.85382963,0.0,46710296.339170318,0.0,28206424.100267255,0.0,40489599.93657436,0.0,5172.933309137918,5091.950073173608,5098.511570567432,6137.487908288236,233605248.53004346,0.0,56373228.15141996,38756594.35410121 - 11/10 10:00:00,34266530.408230859,0.0,40736714.79293058,0.0,23872703.34515123,0.0,34964403.04959048,0.0,7759.743205097005,7638.262977642545,7648.105659110533,9206.639105239412,249950255.00542534,0.0,28186614.07570998,0.0 - 11/10 11:00:00,27202321.39615466,0.0,34001683.165165279,0.0,20149500.112466478,0.0,29829805.974483923,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,227305447.641897,0.0,28186614.07570998,0.0 - 11/10 12:00:00,21527637.407658537,0.0,28060304.3052388,0.0,16894825.020440978,0.0,25132620.78796787,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,169030443.2387795,0.0,28186614.07570998,0.0 - 11/10 13:00:00,22295053.119355576,0.0,29283581.678588768,0.0,16376484.63591772,0.0,25055194.462045339,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,170424360.3542049,0.0,28186614.07570998,0.0 - 11/10 14:00:00,24907005.177241908,0.0,31716031.202826099,0.0,16989545.95303849,0.0,26366698.139609286,0.0,7760.63624747749,7639.142039277966,7648.985853506596,9207.698665934333,216102546.5750228,0.0,28186614.07570998,0.0 - 11/10 15:00:00,29362172.31083879,0.0,35559779.92538885,0.0,18641347.03559165,0.0,28871000.88073014,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,267263816.14405168,0.0,28186614.07570998,0.0 - 11/10 16:00:00,32754026.69370891,0.0,38857238.84818377,0.0,20078798.87819707,0.0,31022717.565574297,0.0,12934.06619581777,12731.580976674575,12747.986918248478,15345.775817678286,316246657.65597286,0.0,28186614.07570998,0.0 - 11/10 17:00:00,33943719.12290959,0.0,40078458.880367819,0.0,19775980.945898687,0.0,30971012.84458581,0.0,15520.879434981323,15277.897172009489,15297.584301898172,18414.930981213947,357009822.5981325,0.0,35233267.594637479,0.0 - 11/10 18:00:00,36128139.437953878,0.0,42142695.099179718,0.0,21780743.173132004,0.0,33388326.050877669,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,404391556.7462721,0.0,14093307.03785499,0.0 - 11/10 19:00:00,24165032.50464237,0.0,30348484.99422603,0.0,9897806.416903234,0.0,19087813.292466888,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,238328653.19974075,0.0,63419881.67034747,0.0 - 11/10 20:00:00,9543799.61047703,0.0,15903586.302832239,0.0,0.0,0.0,1785443.8008450056,0.0,7760.63624747749,7639.142039277966,7648.985853506596,9207.698665934333,143356095.81646127,0.0,63419881.67034747,69761869.8373822 - 11/10 21:00:00,10469758.897181958,0.0,16615277.927240979,0.0,0.0,0.0,3091009.725376818,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,107588529.5458796,0.0,49326574.63249246,69761869.8373822 - 11/10 22:00:00,13184700.159921099,0.0,19278952.699136747,0.0,0.0,0.0,6260345.9010989409,0.0,5173.757498318326,5092.761359518646,5099.32390233773,6138.465777289554,116139509.4950281,0.0,35233267.594637479,69761869.8373822 - 11/10 23:00:00,15632003.925879963,0.0,21819725.022633774,0.0,5974.579700664614,0.0,8942542.29558363,0.0,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,123815399.84904742,0.0,35233267.594637479,62010550.96656194 - 11/10 24:00:00,17882352.770418727,0.0,23769186.234052544,0.0,3840749.7691713718,0.0,11860060.872118704,0.0,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,134767503.67101077,0.0,35233267.594637479,46507913.22492146 - 11/11 01:00:00,24087534.075046399,0.0,29460244.4034376,0.0,10499256.26709403,0.0,19555286.330280819,0.0,2586.8794061663559,2546.3813264809457,2549.6625987238546,3069.233668158732,122310086.27416645,0.0,21139960.556782485,23253956.61246073 - 11/11 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.1779601876947,1274.8185799399697,1534.6015226894857,19353689.498937776,0.0,14093307.03785499,0.0 - 11/11 03:00:00,5444671.813821981,0.0,11511122.280503665,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,36309676.69347944,0.0,14093307.03785499,0.0 - 11/11 04:00:00,9700747.620851277,0.0,13593672.970325564,0.0,0.0,0.0,3520848.822365267,0.0,1293.4149098055607,1273.1662581062417,1274.80686277919,1534.5874178018908,46168781.02811649,0.0,14093307.03785499,0.0 - 11/11 05:00:00,11135782.379734889,0.0,15165283.938019483,0.0,0.0,0.0,6648090.146168102,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,52302277.21294244,0.0,14093307.03785499,0.0 - 11/11 06:00:00,12580571.804822458,0.0,16732907.884071622,0.0,1566994.3068329739,0.0,8254174.027632158,0.0,1293.4149098055607,1273.1662581062417,1274.80686277919,1534.5874178018908,58488159.63793358,0.0,14093307.03785499,0.0 - 11/11 07:00:00,10901129.66301994,0.0,15125476.287502718,0.0,450774.94506611846,0.0,6260999.351494972,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,110153791.74011132,0.0,14093307.03785499,15502637.741640486 - 11/11 08:00:00,22295215.0391498,0.0,27796680.525607628,0.0,13421311.388926244,0.0,20173171.694494346,0.0,20695.029993273303,20371.04543807458,20397.29560935092,24553.86310915822,393348421.58766326,0.0,56373228.15141996,38756594.35410121 - 11/11 09:00:00,37008844.76101394,0.0,41952815.856600519,0.0,24188661.63163912,0.0,35599752.90151924,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,409703808.928719,0.0,56373228.15141996,38756594.35410121 - 11/11 10:00:00,33867081.02933077,0.0,38938412.83837323,0.0,22691305.175053844,0.0,33204707.94871365,0.0,12934.244985178519,12731.756967054533,12748.16313541,15345.98794443001,322238057.9069345,0.0,28186614.07570998,0.0 - 11/11 11:00:00,32544868.244456516,0.0,37671913.994694899,0.0,21505217.49018717,0.0,31856183.48923452,0.0,10347.224049724615,10185.236326953438,10198.361043546176,12276.586357174103,278404851.2172071,0.0,28186614.07570998,0.0 - 11/11 12:00:00,32750958.2732523,0.0,37959341.87375594,0.0,21401778.920327147,0.0,31861698.741480434,0.0,5173.757498318326,5092.761359518646,5099.32390233773,6138.465777289554,201389288.5436871,0.0,28186614.07570998,0.0 - 11/11 13:00:00,35733359.6822298,0.0,41312615.81913837,0.0,23081304.553442643,0.0,34386513.11525465,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,211920395.44308023,0.0,28186614.07570998,0.0 - 11/11 14:00:00,38714055.26171055,0.0,44749061.51272916,0.0,25197154.997068325,0.0,37474836.5518166,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,223509560.44169603,0.0,28186614.07570998,0.0 - 11/11 15:00:00,42541031.15511301,0.0,49068067.24127356,0.0,27329923.369361547,0.0,40692178.7065471,0.0,7755.443856854889,7634.030936499203,7643.868164550223,9201.538092666355,275676772.2543496,0.0,28186614.07570998,0.0 - 11/11 16:00:00,45036674.16815732,0.0,51893339.07614778,0.0,28591808.42751269,0.0,42661807.69336246,0.0,12925.09561358273,12722.750830577885,12739.145393607267,15335.132564284586,361583277.2125692,0.0,28186614.07570998,0.0 - 11/11 17:00:00,45420568.575636129,0.0,52407382.65841327,0.0,28460532.75384536,0.0,42601342.07027401,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.02392617774,362187211.4863831,0.0,35233267.594637479,0.0 - 11/11 18:00:00,47789554.905677,0.0,54618208.262042749,0.0,31050774.951303465,0.0,45546356.69923136,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,449584116.18206039,0.0,14093307.03785499,0.0 - 11/11 19:00:00,33429924.069500224,0.0,40545632.917162019,0.0,16833612.543797714,0.0,28446418.274365128,0.0,18087.917706996854,17804.7479809961,17827.691216062463,21460.62390108537,389907118.70333197,0.0,63419881.67034747,0.0 - 11/11 20:00:00,21433611.421173444,0.0,29274947.73583492,0.0,3832658.934376281,0.0,13404779.127664913,0.0,10334.609049491935,10172.818816902727,10185.927532266336,12261.619140942192,222583905.56162108,0.0,63419881.67034747,69761869.8373822 - 11/11 21:00:00,25547887.54365035,0.0,33704640.976893197,0.0,6926865.521433111,0.0,17686501.32731855,0.0,10333.909487659703,10172.13020684148,10185.23803486074,12260.789137532165,238493336.09011395,0.0,49326574.63249246,69761869.8373822 - 11/11 22:00:00,29521347.719054905,0.0,37821393.36259905,0.0,10255800.04709106,0.0,22044564.28735348,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,176934515.17053963,0.0,35233267.594637479,69761869.8373822 - 11/11 23:00:00,30752685.261829698,0.0,38905710.22507245,0.0,11800028.830544303,0.0,23726333.164017098,0.0,5164.663083277148,5083.809319241499,5090.36032644297,6127.675600998361,182464187.46931947,0.0,35233267.594637479,62010550.96656194 - 11/11 24:00:00,32987196.00435689,0.0,40818758.035498987,0.0,14643441.620307528,0.0,26807891.969034073,0.0,2581.912885301814,2541.4925574270416,2544.7675299920385,3063.3410807367097,153890738.22164483,0.0,35233267.594637479,46507913.22492146 - 11/12 01:00:00,43352333.36753674,0.0,51558506.58556071,0.0,23476552.45829504,0.0,38215239.26791388,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,195232847.20141656,0.0,21139960.556782485,23253956.61246073 - 11/12 02:00:00,7764120.733636364,0.0,13211037.500083216,0.0,0.0,0.0,917422.9239150183,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,41202630.761222649,0.0,14093307.03785499,0.0 - 11/12 03:00:00,30410549.95121318,0.0,38048795.82757696,0.0,10654107.27044106,0.0,23136022.21347756,0.0,1290.2735012547228,1270.0740288922962,1271.710648912285,1530.8602564712579,121555981.6306188,0.0,14093307.03785499,0.0 - 11/12 04:00:00,32506768.01209058,0.0,39453403.83214935,0.0,15099421.606077418,0.0,27480778.88912676,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,133845055.80080962,0.0,14093307.03785499,0.0 - 11/12 05:00:00,33695481.34735294,0.0,40522608.3660904,0.0,16678362.275433638,0.0,28995995.44299657,0.0,1289.9011716387016,1269.707528165872,1271.3436759122668,1530.4185015945439,139193382.59019456,0.0,14093307.03785499,0.0 - 11/12 06:00:00,33207859.948380095,0.0,39651449.302041169,0.0,17136951.628126578,0.0,28859147.208383569,0.0,1289.9011716387016,1269.707528165872,1271.3436759122668,1530.4185015945439,138156343.2452524,0.0,14093307.03785499,0.0 - 11/12 07:00:00,28123980.95770869,0.0,33999627.49683873,0.0,13525133.63111252,0.0,23587238.583095824,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,176454714.51421789,0.0,14093307.03785499,15502637.741640486 - 11/12 08:00:00,44142402.69342252,0.0,51126316.594447519,0.0,27776240.549886038,0.0,41803159.702989149,0.0,20648.164788911876,20324.91391723013,20351.10464333331,24498.259333138212,473808913.1981539,0.0,56373228.15141996,38756594.35410121 - 11/12 09:00:00,41085734.77289278,0.0,50007828.71353978,0.0,28221520.96625951,0.0,40484189.806438039,0.0,18067.144190297888,17784.299677576353,17807.216562916645,21435.976916495933,430139968.7093626,0.0,56373228.15141996,38756594.35410121 - 11/12 10:00:00,53722881.56455567,0.0,61335966.918088387,0.0,36257863.74576207,0.0,52249466.41335405,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,396733431.603997,0.0,28186614.07570998,0.0 - 11/12 11:00:00,52806561.25114383,0.0,60508443.94366455,0.0,35449855.59506427,0.0,51584712.575307,0.0,10327.651541207257,10165.970229708166,10179.070119968153,12253.364322946838,354883375.73496916,0.0,28186614.07570998,0.0 - 11/12 12:00:00,50284061.27371151,0.0,58104881.689291167,0.0,34035953.71967606,0.0,49810218.24939223,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473419,269502016.1169657,0.0,28186614.07570998,0.0 - 11/12 13:00:00,51936030.49593247,0.0,59820099.5853681,0.0,34330797.327124249,0.0,50556257.9950981,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473419,273910086.58841767,0.0,28186614.07570998,0.0 - 11/12 14:00:00,54342249.563294839,0.0,62493172.56016034,0.0,35323575.03822306,0.0,52181849.19198963,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,281581044.76802006,0.0,28186614.07570998,0.0 - 11/12 15:00:00,55997031.85623525,0.0,64322475.67755732,0.0,36233693.00656395,0.0,53554582.91886383,0.0,7740.165385698941,7618.991652659396,7628.809501058161,9183.41076985492,325924741.77259746,0.0,28186614.07570998,0.0 - 11/12 16:00:00,57741112.865003529,0.0,66251466.541231278,0.0,37147450.054720539,0.0,54942218.20045832,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,409072345.6392796,0.0,28186614.07570998,0.0 - 11/12 17:00:00,57489628.50921035,0.0,66142758.40769936,0.0,36296248.66327652,0.0,54112835.58126805,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,407031569.13932016,0.0,35233267.594637479,0.0 - 11/12 18:00:00,61542322.05628418,0.0,70362237.33188465,0.0,39707164.134084168,0.0,58503655.11719081,0.0,18037.048095513583,17754.674742770316,17777.553453358356,21400.269048872917,500005741.8652984,0.0,14093307.03785499,0.0 - 11/12 19:00:00,50067307.145016279,0.0,59559754.42214936,0.0,27384522.89820279,0.0,44176360.461078558,0.0,18023.66374329176,17741.499925079377,17764.3616585701,21384.389025873865,450878036.59658136,0.0,63419881.67034747,0.0 - 11/12 20:00:00,38419432.08735566,0.0,48595852.329166468,0.0,14930946.772614867,0.0,29662075.50945364,0.0,10290.938165980746,10129.8316092197,10142.884931178596,12209.805304676274,285592762.73838976,0.0,63419881.67034747,69761869.8373822 - 11/12 21:00:00,43647421.36739938,0.0,54199007.66931697,0.0,19021873.992584807,0.0,35176287.34926508,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,305871947.72441896,0.0,49326574.63249246,69761869.8373822 - 11/12 22:00:00,46644156.2316631,0.0,57059194.662909317,0.0,22230477.439803438,0.0,38914843.19733271,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,241702228.90761645,0.0,35233267.594637479,69761869.8373822 - 11/12 23:00:00,47645326.21594794,0.0,57769731.8773581,0.0,23925118.065076639,0.0,40603270.02524405,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,246733552.99895875,0.0,35233267.594637479,62010550.96656194 - 11/12 24:00:00,52076394.320029888,0.0,62219000.79870046,0.0,28004083.525522878,0.0,45629555.84522047,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,226283830.98987089,0.0,35233267.594637479,46507913.22492146 - 11/13 01:00:00,59727001.70420353,0.0,69519674.86976177,0.0,35695271.28068443,0.0,54736002.61656146,0.0,2563.7495851555797,2523.6136071329567,2526.865540845633,3041.7910184489935,258039621.57691057,0.0,21139960.556782485,23253956.61246073 - 11/13 02:00:00,20819698.686882959,0.0,28825195.956133367,0.0,2756061.632154134,0.0,11938011.705258046,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642173,83516366.2306271,0.0,14093307.03785499,0.0 - 11/13 03:00:00,45510012.125373158,0.0,54249163.02266965,0.0,24280238.42174811,0.0,40436991.89217557,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,183653803.71216507,0.0,14093307.03785499,0.0 - 11/13 04:00:00,47101379.43206702,0.0,55489831.200833369,0.0,26209663.56397919,0.0,42257238.07862729,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,190228537.10990084,0.0,14093307.03785499,0.0 - 11/13 05:00:00,48450911.076353657,0.0,56747514.235614728,0.0,27857808.71943137,0.0,43931820.295611519,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,196147772.51564289,0.0,14093307.03785499,0.0 - 11/13 06:00:00,49186360.55965376,0.0,57393251.99380962,0.0,28858441.32137323,0.0,44877952.614746239,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,199475724.6782145,0.0,14093307.03785499,0.0 - 11/13 07:00:00,45598918.82016182,0.0,53493729.919433,0.0,26064465.28208297,0.0,40983856.52662018,0.0,5119.902066879404,5039.7490449056199,5046.243275946471,6074.568363675475,242750636.45336307,0.0,14093307.03785499,15502637.741640486 - 11/13 08:00:00,47477130.41981324,0.0,56749640.38769869,0.0,31628034.100036265,0.0,44644689.410490799,0.0,20475.65193947734,20155.101788635726,20181.073694478855,24293.579422504437,486878958.96038588,0.0,56373228.15141996,38756594.35410121 - 11/13 09:00:00,60267361.37961987,0.0,70476791.23837313,0.0,39840503.108627367,0.0,58077596.9588663,0.0,17912.703090284176,17632.276381794316,17654.997369601297,21252.738446708885,496692027.7236859,0.0,56373228.15141996,38756594.35410121 - 11/13 10:00:00,63858997.80740414,0.0,74185299.55199069,0.0,46876633.410306889,0.0,66424296.5640285,0.0,12804.634976004549,12604.1760267529,12620.417794044875,15192.210616063301,442942409.2200465,0.0,28186614.07570998,0.0 - 11/13 11:00:00,63698105.60845432,0.0,73865454.27462235,0.0,46088343.35014875,0.0,65702621.680714149,0.0,10239.804133758807,10079.498089811239,10092.486551892942,12149.13672735095,402573856.7240697,0.0,28186614.07570998,0.0 - 11/13 12:00:00,59723984.850213278,0.0,70573698.18669582,0.0,44181096.53568857,0.0,63207827.68033041,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,314325480.00745466,0.0,28186614.07570998,0.0 - 11/13 13:00:00,58138707.04554034,0.0,69257040.7378435,0.0,43112798.165862377,0.0,61842973.24708803,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,308990391.95086076,0.0,28186614.07570998,0.0 - 11/13 14:00:00,56296203.75428781,0.0,67805532.02397275,0.0,41799889.55063079,0.0,60297415.68584003,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,302894753.01318797,0.0,28186614.07570998,0.0 - 11/13 15:00:00,57731158.807538937,0.0,68783454.29360737,0.0,41624886.73024611,0.0,60318837.483618099,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,343501905.3126954,0.0,28186614.07570998,0.0 - 11/13 16:00:00,61760611.40110497,0.0,72218912.62651229,0.0,42711394.85420607,0.0,62116405.48320733,0.0,12814.131537536283,12613.523917842276,12629.777730846037,15203.477923814664,430546604.361172,0.0,28186614.07570998,0.0 - 11/13 17:00:00,63843764.41454109,0.0,73756726.9361579,0.0,42542296.954586017,0.0,62150212.20871743,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,433997248.8579421,0.0,35233267.594637479,0.0 - 11/13 18:00:00,66351277.182098899,0.0,76004121.05431223,0.0,44914186.410700697,0.0,64927440.13328945,0.0,17929.85884614787,17649.163561099558,17671.90630976071,21273.093096165692,520483503.307827,0.0,14093307.03785499,0.0 - 11/13 19:00:00,52424244.19511994,0.0,62279418.07017835,0.0,31056441.541847797,0.0,48237700.734835889,0.0,17926.488966406367,17645.84643745406,17668.584911662827,21269.09486248862,462233859.1828247,0.0,63419881.67034747,0.0 - 11/13 20:00:00,39270633.25310347,0.0,49751528.42559773,0.0,17230603.957392225,0.0,32015800.983928965,0.0,10253.16059310157,10092.645451291344,10105.650855090238,12164.98365651374,291687752.6216112,0.0,63419881.67034747,69761869.8373822 - 11/13 21:00:00,43388376.10468628,0.0,54328182.763164978,0.0,20380337.00926235,0.0,36409247.12498997,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,307812702.1606326,0.0,49326574.63249246,69761869.8373822 - 11/13 22:00:00,47829395.9154055,0.0,58952793.01189084,0.0,24006582.2293018,0.0,41176138.06245309,0.0,5120.882405192407,5040.71403583945,5047.209510369615,6075.731497662039,248589244.03567986,0.0,35233267.594637479,69761869.8373822 - 11/13 23:00:00,51273420.48261087,0.0,62386896.59626734,0.0,26883386.350087968,0.0,44817324.879939857,0.0,5111.745395024433,5031.720067270165,5038.203952153832,6064.890783878859,261848645.02288426,0.0,35233267.594637479,62010550.96656194 - 11/13 24:00:00,54808626.49551622,0.0,65835811.15782441,0.0,30164569.630107088,0.0,48825567.5953381,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,237932007.95907919,0.0,35233267.594637479,46507913.22492146 - 11/14 01:00:00,63017316.24300921,0.0,74058175.04446213,0.0,37956190.82709304,0.0,58394849.99088176,0.0,2558.957584326311,2518.896625970617,2522.142481371614,3036.1054923869839,271716499.96804609,0.0,21139960.556782485,23253956.61246073 - 11/14 02:00:00,28967489.46362998,0.0,38522022.25865904,0.0,7412164.038808556,0.0,21179079.85084862,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,115221974.29748732,0.0,14093307.03785499,0.0 - 11/14 03:00:00,49700945.06136207,0.0,59534739.300427887,0.0,27307804.11262676,0.0,44759940.127654839,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,200444647.28761266,0.0,14093307.03785499,0.0 - 11/14 04:00:00,51092632.89190891,0.0,60389810.720273848,0.0,29169169.608576593,0.0,46493809.49302706,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,206271254.77442596,0.0,14093307.03785499,0.0 - 11/14 05:00:00,51828171.74089876,0.0,60595167.463526289,0.0,30559287.35792246,0.0,47520401.09606621,0.0,1277.404843485923,1257.406832361513,1259.027129405858,1515.5920852554437,209616978.86424519,0.0,14093307.03785499,0.0 - 11/14 06:00:00,54039520.3076841,0.0,62839330.91363095,0.0,32635865.45172272,0.0,49951643.40842305,0.0,1274.9063900393338,1254.947492669716,1256.5646206038485,1512.6277656128967,218542926.64959369,0.0,14093307.03785499,0.0 - 11/14 07:00:00,52799707.44133845,0.0,63007214.9645218,0.0,31716875.26896162,0.0,49118927.514672119,0.0,5080.1543588076979,5000.6235946187039,5007.067408523409,6027.40922531169,272657641.70363536,0.0,14093307.03785499,15502637.741640486 - 11/14 08:00:00,41405156.981647718,0.0,67293136.69803927,0.0,35485097.2171238,0.0,53788306.19985667,0.0,20340.899089503433,20022.45851966628,20048.259501118726,24133.700309842912,502334839.8091403,0.0,56373228.15141996,38756594.35410121 - 11/14 09:00:00,20942342.466533629,0.0,69807058.80132038,0.0,40021417.83997545,0.0,59311141.9221417,0.0,17836.490052871486,17557.25647369985,17579.880790698124,21162.314587049215,456971351.8855184,0.0,56373228.15141996,38756594.35410121 - 11/14 10:00:00,0.0,0.0,64888402.81119907,0.0,37989220.494681257,0.0,56388130.37547734,0.0,12774.04843485923,12574.068323615127,12590.271294058579,15155.920852554436,350405265.7396722,0.0,28186614.07570998,0.0 - 11/14 11:00:00,0.0,0.0,64655150.76145259,0.0,39539261.75622099,0.0,57906713.50647466,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,315407685.18267729,0.0,28186614.07570998,0.0 - 11/14 12:00:00,0.0,9122579.774251156,64477379.87441553,0.0,39875325.404648948,0.0,56806701.58978311,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,237936425.3858001,9122579.774251156,28186614.07570998,0.0 - 11/14 13:00:00,0.0,16742853.717103553,56162312.23277789,0.0,35747868.1513329,0.0,46793321.16261236,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,215617180.21964953,16742853.717103553,28186614.07570998,0.0 - 11/14 14:00:00,0.0,18913736.07198028,45450454.70546159,0.0,27992661.63813846,0.0,38753650.13956219,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,189199678.6670161,18913736.07198028,28186614.07570998,0.0 - 11/14 15:00:00,0.0,9237689.774613668,41013217.981780428,0.0,22350024.799530429,0.0,33797897.57474893,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,212696955.24403567,9237689.774613668,28186614.07570998,0.0 - 11/14 16:00:00,0.0,0.0,46304037.69936675,0.0,23249113.166786683,0.0,37359256.24712985,0.0,12861.865151012073,12660.510252694405,12676.82461238642,15260.112034099644,299365930.4939764,0.0,28186614.07570998,0.0 - 11/14 17:00:00,39024634.76961185,0.0,66571886.561043139,0.0,35385814.95223015,0.0,53826101.32579561,0.0,12827.716031319813,12626.89574384144,12643.166787807837,15219.595407136816,386750983.901062,0.0,35233267.594637479,0.0 - 11/14 18:00:00,52966942.31609511,0.0,75040386.3169891,0.0,42000782.68847671,0.0,62265626.0370056,0.0,17929.85884614787,17649.163561099558,17671.90630976071,21273.093096165692,500560215.8859922,0.0,14093307.03785499,0.0 - 11/14 19:00:00,45810862.07183634,0.0,66099390.62320612,0.0,31809741.348424719,0.0,50282670.421228099,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,461253108.00783279,0.0,63419881.67034747,0.0 - 11/14 20:00:00,36427046.200790438,0.0,55604147.27506063,0.0,20098107.65434352,0.0,36516014.34734248,0.0,10208.306430585362,10048.493489056866,10061.441998545923,12111.765904876904,301393343.64057126,0.0,63419881.67034747,69761869.8373822 - 11/14 21:00:00,42700329.850815799,0.0,60737960.44683327,0.0,24370893.525551689,0.0,41953152.882987197,0.0,10182.74691140684,10023.334108919207,10036.250197978992,12081.440511038418,322127914.9318244,0.0,49326574.63249246,69761869.8373822 - 11/14 22:00:00,50033387.79226471,0.0,67235885.20000783,0.0,29607186.097312657,0.0,48684007.60150446,0.0,5078.865819030884,4999.355227172474,5005.797406656265,6025.880422053089,271556102.6407754,0.0,35233267.594637479,69761869.8373822 - 11/14 23:00:00,55623408.15629451,0.0,72319684.86678903,0.0,33280838.854731006,0.0,53600543.29714858,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,290721837.92652067,0.0,35233267.594637479,62010550.96656194 - 11/14 24:00:00,58819590.48032855,0.0,74664800.45913857,0.0,35837598.58064986,0.0,56587273.34465551,0.0,2544.4696551515264,2504.635508029784,2507.862986524712,3018.9161174593575,263982446.2265678,0.0,35233267.594637479,46507913.22492146 - 11/15 01:00:00,66900759.7604904,0.0,81948923.43989818,0.0,43353817.77967233,0.0,65548211.552548687,0.0,2542.612386187929,2502.807314958285,2506.0324376398409,3016.712538730364,295797105.37166878,0.0,21139960.556782485,23253956.61246073 - 11/15 02:00:00,34734782.09636328,0.0,47193600.780467618,0.0,13434856.168091314,0.0,30349493.067561889,0.0,1268.4070713236397,1248.5499220009629,1250.1588060123023,1504.916572050973,144692048.6494805,0.0,14093307.03785499,0.0 - 11/15 03:00:00,55981970.954713027,0.0,69111700.67195776,0.0,33530748.880878584,0.0,52965060.69936404,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,230630641.50681723,0.0,14093307.03785499,0.0 - 11/15 04:00:00,57196998.98602079,0.0,69537429.82673249,0.0,34904037.585253167,0.0,54429035.67999691,0.0,1270.676584786525,1250.7839058072094,1252.395668534701,1507.6092631420316,235080777.59817703,0.0,14093307.03785499,0.0 - 11/15 05:00:00,57870004.15128692,0.0,69577360.37808514,0.0,35957064.76870594,0.0,55147282.3853423,0.0,1271.9273904594755,1252.0151298840124,1253.6284791693955,1509.0932963267997,237583703.14844314,0.0,14093307.03785499,0.0 - 11/15 06:00:00,58610107.9120602,0.0,70021258.44540915,0.0,36506393.68025211,0.0,55643025.64287543,0.0,1273.144457320642,1253.2131433364237,1254.8280363844188,1510.5372996992756,239830988.25286366,0.0,14093307.03785499,0.0 - 11/15 07:00:00,52661157.39624212,0.0,64579271.592034,0.0,31926660.293331367,0.0,49808969.22887592,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,275316455.1853473,0.0,14093307.03785499,15502637.741640486 - 11/15 08:00:00,42178506.55856585,0.0,64949722.612958777,0.0,34607269.482174519,0.0,52003850.027575697,0.0,20455.347017836277,20135.114744330844,20161.060894827344,24269.488408063833,499814988.5154847,0.0,56373228.15141996,38756594.35410121 - 11/15 09:00:00,34436075.39392286,0.0,67518975.93109869,0.0,39892396.758593428,0.0,57711407.68177432,0.0,17943.031037927743,17662.129539759848,17684.888996407917,21288.72139889904,468042431.26816967,0.0,56373228.15141996,38756594.35410121 - 11/15 10:00:00,29355284.41864118,0.0,62232121.87247318,0.0,38538321.090201038,0.0,55825023.34280555,0.0,12838.428143572213,12637.440155978185,12653.724787495865,15232.304919417824,378053583.54739168,0.0,28186614.07570998,0.0 - 11/15 11:00:00,30765798.980081798,0.0,60110458.70606837,0.0,37597161.855072218,0.0,54616030.08348434,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,336916806.9705594,0.0,28186614.07570998,0.0 - 11/15 12:00:00,15316189.162147522,0.0,55856984.82988772,0.0,35559787.78434433,0.0,51035984.24890861,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,234728314.94783468,0.0,28186614.07570998,0.0 - 11/15 13:00:00,7976095.568555432,0.0,50724235.12092379,0.0,32519301.142390856,0.0,44853260.11669288,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,213146818.72886537,0.0,28186614.07570998,0.0 - 11/15 14:00:00,13570499.132905275,0.0,47311948.31118325,0.0,29209749.444385806,0.0,42105895.10189591,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,209281623.3233015,0.0,28186614.07570998,0.0 - 11/15 15:00:00,29996614.580425294,0.0,53138011.91083869,0.0,30576395.295313457,0.0,45539228.14213817,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,274875546.9281125,0.0,28186614.07570998,0.0 - 11/15 16:00:00,37088085.33094025,0.0,56762781.77013308,0.0,31148742.83360247,0.0,47017061.42529959,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,364840475.36575177,0.0,28186614.07570998,0.0 - 11/15 17:00:00,45014767.82374406,0.0,59418013.7193968,0.0,32628733.148495735,0.0,48802689.163271378,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,378596705.1194583,0.0,35233267.594637479,0.0 - 11/15 18:00:00,49370497.5118632,0.0,62604522.27797349,0.0,35486972.28762079,0.0,52324953.208376739,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,469645115.01422145,0.0,14093307.03785499,0.0 - 11/15 19:00:00,42067004.78795676,0.0,56151279.20289607,0.0,24552952.18249452,0.0,40820616.97387904,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,433246909.3493668,0.0,63419881.67034747,0.0 - 11/15 20:00:00,30137260.15829461,0.0,43092393.2242326,0.0,11215559.33987502,0.0,24657100.106021339,0.0,10304.407621900022,10143.090198293834,10156.160605298028,12225.786299963751,263288313.84006385,0.0,63419881.67034747,69761869.8373822 - 11/15 21:00:00,34799031.09136866,0.0,46973342.68722599,0.0,13962785.791706564,0.0,28443507.566714355,0.0,10311.620969935524,10150.190620020192,10163.270176642505,12234.344662057452,278472602.280176,0.0,49326574.63249246,69761869.8373822 - 11/15 22:00:00,39385365.237385559,0.0,51184471.890303719,0.0,16937540.66104065,0.0,32523057.32375694,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,217202551.5237134,0.0,35233267.594637479,69761869.8373822 - 11/15 23:00:00,39026211.147907879,0.0,49499510.13463421,0.0,17331446.22886695,0.0,32183663.651561206,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,215221058.16722749,0.0,35233267.594637479,62010550.96656194 - 11/15 24:00:00,38796706.622662607,0.0,47986060.01551968,0.0,18394339.31430197,0.0,32467427.124401027,0.0,2581.2505367690716,2540.84057808414,2544.1147105072075,3062.555229486008,176268072.87433247,0.0,35233267.594637479,46507913.22492146 - 11/16 01:00:00,44717855.30474512,0.0,53384635.12601175,0.0,24659700.073782639,0.0,39731814.83619851,0.0,2582.1245057737148,2541.7008649409769,2544.976105931467,3063.5921603485696,201130622.43391905,0.0,21139960.556782485,23253956.61246073 - 11/16 02:00:00,4853408.115367636,0.0,10719986.883217175,0.0,0.0,0.0,0.0,0.0,1292.1529077123876,1271.9240128912632,1273.5630168044589,1533.0901004919224,34908023.13502493,0.0,14093307.03785499,0.0 - 11/16 03:00:00,24471143.399505065,0.0,32086412.51794541,0.0,5610681.032640542,0.0,15636500.606067952,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,97150724.10184063,0.0,14093307.03785499,0.0 - 11/16 04:00:00,25061440.696049796,0.0,31476608.991336056,0.0,9214646.951634014,0.0,20169144.642186665,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,105264594.04272735,0.0,14093307.03785499,0.0 - 11/16 05:00:00,25025040.26458746,0.0,30847833.29271735,0.0,10726018.214983289,0.0,20493360.307689236,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,106431218.51132381,0.0,14093307.03785499,0.0 - 11/16 06:00:00,24937943.31579857,0.0,30280066.155206495,0.0,11419684.405528456,0.0,20650877.390301557,0.0,1292.2288468269522,1271.998763164823,1273.6378634013757,1533.180199352579,106624335.68871969,0.0,14093307.03785499,0.0 - 11/16 07:00:00,25034438.020982315,0.0,31310866.998360844,0.0,10556592.15671251,0.0,20248158.16729611,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,106477142.58362362,0.0,14093307.03785499,15502637.741640486 - 11/16 08:00:00,37134007.45910194,0.0,45971912.61633942,0.0,24049929.97501154,0.0,36371138.572537798,0.0,5165.850243891007,5084.977894634483,5091.530407664623,6129.084121749998,220824182.22757513,0.0,56373228.15141996,38756594.35410121 - 11/16 09:00:00,40751864.20645746,0.0,52209454.120678398,0.0,30653971.61808196,0.0,44422745.755614157,0.0,12911.65770819287,12709.523298103744,12725.900816107427,15319.189002495905,361236610.6704717,0.0,56373228.15141996,38756594.35410121 - 11/16 10:00:00,40307836.80477314,0.0,52395156.96015929,0.0,30723121.868629546,0.0,44571140.20022775,0.0,12907.379493515047,12705.312059674803,12721.684151067939,15314.113064090161,361131815.3998424,0.0,28186614.07570998,0.0 - 11/16 11:00:00,43437618.67148787,0.0,51547783.475937727,0.0,30392738.001257149,0.0,44321895.70871493,0.0,12905.10299306992,12703.071198268826,12719.440402083319,15311.412083211382,362800531.89327809,0.0,28186614.07570998,0.0 - 11/16 12:00:00,43435904.31355469,0.0,51042041.44428158,0.0,29898750.821677846,0.0,43870695.12848176,0.0,7741.641007528337,7620.444173353776,7630.263893473711,9185.16153882755,284086429.915456,0.0,28186614.07570998,0.0 - 11/16 13:00:00,45246301.386211607,0.0,52634350.125824648,0.0,30248179.651324978,0.0,44655114.41513366,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,288612046.34668806,0.0,28186614.07570998,0.0 - 11/16 14:00:00,47016754.146849509,0.0,54342965.365961078,0.0,30716254.08353005,0.0,45545052.258971709,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,293449126.62350556,0.0,28186614.07570998,0.0 - 11/16 15:00:00,48575071.99493031,0.0,55954085.60047113,0.0,31279956.81347862,0.0,46466103.663733948,0.0,7740.165385698941,7618.991652659396,7628.809501058161,9183.41076985492,298092176.3859911,0.0,28186614.07570998,0.0 - 11/16 16:00:00,50911942.46985693,0.0,58422060.65458289,0.0,32327231.876317745,0.0,48054954.12922104,0.0,18056.814969641164,17774.132162795926,17797.035946255644,21423.721690477323,459902326.29899087,0.0,28186614.07570998,0.0 - 11/16 17:00:00,51678492.106160547,0.0,59368170.35819518,0.0,32060706.916247459,0.0,48040975.49101761,0.0,23208.71043400909,22845.37374258402,22874.81233843016,27536.248999009862,538422868.7221401,0.0,35233267.594637479,0.0 - 11/16 18:00:00,58717424.32342518,0.0,67507410.34925696,0.0,36782020.856687609,0.0,55016608.13851932,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,487945545.6217592,0.0,14093307.03785499,0.0 - 11/16 19:00:00,50129588.04852287,0.0,59923778.87034476,0.0,26768908.626868696,0.0,43804584.82677334,0.0,18037.048095513583,17754.674742770316,17777.553453358356,21400.269048872917,450517223.59836426,0.0,63419881.67034747,0.0 - 11/16 20:00:00,38026895.08698435,0.0,48433848.42022972,0.0,14032035.72947721,0.0,28858846.096668435,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,360573405.6742669,0.0,63419881.67034747,69761869.8373822 - 11/16 21:00:00,42284599.76392566,0.0,52843355.976569179,0.0,17675450.920895984,0.0,33573129.26982443,0.0,12867.220385646113,12665.781650131234,12682.102802556885,15266.46581557106,338910190.2852743,0.0,49326574.63249246,69761869.8373822 - 11/16 22:00:00,46269818.13749187,0.0,56949949.58695615,0.0,21105068.870212955,0.0,37993885.82046736,0.0,10292.366233117345,10131.23731969887,10144.292453059197,12211.499651821174,316324546.7828361,0.0,35233267.594637479,69761869.8373822 - 11/16 23:00:00,48333773.64413378,0.0,59086569.4933277,0.0,22858526.67020402,0.0,40267848.87272002,0.0,7720.332231387668,7599.468990078738,7609.261681534131,9159.879489342638,286066911.29282096,0.0,35233267.594637479,62010550.96656194 - 11/16 24:00:00,51614804.74752557,0.0,62384990.58675999,0.0,25896025.07832717,0.0,44037210.289855148,0.0,5148.949224928924,5068.341464277133,5074.8725395687129,6109.031707903042,260977332.474508,0.0,35233267.594637479,46507913.22492146 - 11/17 01:00:00,59625438.28930487,0.0,69879416.87080875,0.0,34113330.84245079,0.0,53610050.737838,0.0,2570.1097750302176,2529.874227048615,2533.134228209061,3049.337140951878,255685076.07686556,0.0,21139960.556782485,23253956.61246073 - 11/17 02:00:00,20110159.31437712,0.0,27922741.87908422,0.0,2035417.6658718493,0.0,10874205.78833538,0.0,1284.4588811153456,1264.3504377159175,1265.9796823044808,1523.9614316335829,80162026.20563814,0.0,14093307.03785499,0.0 - 11/17 03:00:00,45170775.33044333,0.0,53860986.49219814,0.0,21933290.099793845,0.0,38720249.17927904,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,178889272.50045026,0.0,14093307.03785499,0.0 - 11/17 04:00:00,48656894.52169725,0.0,57089720.420253399,0.0,26532789.027805877,0.0,43058439.47116369,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,194511771.44053436,0.0,14093307.03785499,0.0 - 11/17 05:00:00,50147181.986745718,0.0,58459376.55804067,0.0,28265740.84726303,0.0,44823047.66716685,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,200872745.30941487,0.0,14093307.03785499,0.0 - 11/17 06:00:00,52306335.64822521,0.0,60645550.77390154,0.0,30298213.570847624,0.0,47167609.35962788,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,209558928.03814338,0.0,14093307.03785499,0.0 - 11/17 07:00:00,51144923.992497768,0.0,59784905.39566335,0.0,28924187.766324063,0.0,45536351.67396088,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,204523959.25655908,0.0,14093307.03785499,15502637.741640486 - 11/17 08:00:00,48586346.77810663,0.0,67166342.99803934,0.0,35977666.21231966,0.0,53741923.00251016,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,224590222.87186773,0.0,56373228.15141996,38756594.35410121 - 11/17 09:00:00,38450853.42638573,0.0,63955832.1333044,0.0,34872186.4109955,0.0,49627831.97011247,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,263471578.68296264,0.0,56373228.15141996,38756594.35410121 - 11/17 10:00:00,49929412.71617082,0.0,73575977.55268789,0.0,43793521.635911028,0.0,63845915.0854025,0.0,7676.872752978934,7556.68987791185,7566.427444114843,9108.316477160952,346014730.57797196,0.0,28186614.07570998,0.0 - 11/17 11:00:00,28070981.681633664,0.0,69889751.24382276,0.0,41710365.431712228,0.0,60755721.39113771,0.0,7692.6138412183149,7572.184536478346,7581.9420691304089,9126.9926774827,315532258.9958215,0.0,28186614.07570998,0.0 - 11/17 12:00:00,21552435.56210792,0.0,69156999.2492739,0.0,42164795.23039624,0.0,60995315.02763558,0.0,5117.915168652622,5037.793251941234,5044.284962743228,6072.2109847739679,270449480.7946135,0.0,28186614.07570998,0.0 - 11/17 13:00:00,41153035.96438128,0.0,69513538.9490774,0.0,41796709.47787154,0.0,60023021.219472628,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,289125178.3653293,0.0,28186614.07570998,0.0 - 11/17 14:00:00,45541486.74857511,0.0,70148772.54141428,0.0,41134667.59475312,0.0,59880791.013530317,0.0,7682.780985602729,7562.50561605174,7572.250676426926,9115.326369637982,331664027.03006258,0.0,28186614.07570998,0.0 - 11/17 15:00:00,53774390.84514138,0.0,75078993.48391679,0.0,42824430.820346597,0.0,62927217.83604343,0.0,10231.786743959794,10071.606213745174,10084.584506339059,12139.624400397004,387704399.697436,0.0,28186614.07570998,0.0 - 11/17 16:00:00,61146768.46570403,0.0,79592997.6177046,0.0,44923042.56800893,0.0,66475947.79792836,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,443357798.2342915,0.0,28186614.07570998,0.0 - 11/17 17:00:00,69020936.74452366,0.0,84315625.19304735,0.0,46984975.43420846,0.0,69591933.72609012,0.0,15319.096591784555,15079.273276865519,15098.70445959219,18175.523340285636,499134822.70456996,0.0,35233267.594637479,0.0 - 11/17 18:00:00,75046032.01803588,0.0,89670800.12964535,0.0,51347500.3888838,0.0,75107775.75791463,0.0,17828.208024709915,17549.104102234156,17571.717914069708,21152.48827677996,557937574.2385372,0.0,14093307.03785499,0.0 - 11/17 19:00:00,65958684.32536615,0.0,80384424.90186493,0.0,41100896.39101866,0.0,63027322.659524228,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,402764061.7249555,0.0,63419881.67034747,0.0 - 11/17 20:00:00,54189588.27008667,0.0,68394602.2540403,0.0,28601203.309241084,0.0,48002922.04309314,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,313093883.9092618,0.0,63419881.67034747,69761869.8373822 - 11/17 21:00:00,57823361.61757312,0.0,71722980.339871,0.0,31532142.269226429,0.0,51701985.37529266,0.0,5080.1543588076979,5000.6235946187039,5007.067408523409,6027.40922531169,288795386.1161046,0.0,49326574.63249246,69761869.8373822 - 11/17 22:00:00,61769067.42910802,0.0,75662135.13611628,0.0,34685520.543345797,0.0,55892957.287100318,0.0,5076.263702080786,4996.793846848654,5003.232725732463,6022.793109620708,303966380.57908788,0.0,35233267.594637479,69761869.8373822 - 11/17 23:00:00,64603966.1275463,0.0,78446612.88000362,0.0,36869166.94660056,0.0,58736941.59142729,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,314593732.9007782,0.0,35233267.594637479,62010550.96656194 - 11/17 24:00:00,69926590.08631402,0.0,83460562.4063493,0.0,41519993.034754429,0.0,64423851.407326299,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,335022537.91766008,0.0,35233267.594637479,46507913.22492146 - 11/18 01:00:00,81246332.35217336,0.0,94649088.13307694,0.0,51743156.56173867,0.0,77018557.27283164,0.0,2519.7219911568338,2480.2752733316008,2483.471361177722,2989.5539588060657,342360015.6239207,0.0,21139960.556782485,23253956.61246073 - 11/18 02:00:00,38561666.203501,0.0,51287264.59779343,0.0,15930413.559200503,0.0,31085419.90204326,0.0,1264.2805603331606,1244.4880123098397,1246.0916621359514,1500.020624279378,155782335.3551482,0.0,14093307.03785499,0.0 - 11/18 03:00:00,63462566.49823758,0.0,74971168.32861981,0.0,37982462.007556889,0.0,58938774.6130901,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,254277856.69323338,0.0,14093307.03785499,0.0 - 11/18 04:00:00,62700938.04267253,0.0,73649472.95412767,0.0,38144556.12840924,0.0,58661412.34838644,0.0,1269.3922323268208,1249.5196601248577,1251.1297937427485,1506.0854279753399,252150437.08460704,0.0,14093307.03785499,0.0 - 11/18 05:00:00,63513478.086773227,0.0,74312850.87371084,0.0,39121993.2080369,0.0,59555527.95043108,0.0,1267.7399174552944,1247.8932125508839,1249.5012503250678,1504.1250194530099,255473183.9581754,0.0,14093307.03785499,0.0 - 11/18 06:00:00,62428782.71522986,0.0,72936935.04778755,0.0,38647424.75402059,0.0,58559538.3632466,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,251609272.56118233,0.0,14093307.03785499,0.0 - 11/18 07:00:00,57440077.483142968,0.0,67659129.25095631,0.0,34431154.96167013,0.0,53031485.298108037,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,288798318.7341311,0.0,14093307.03785499,15502637.741640486 - 11/18 08:00:00,59813386.23074532,0.0,70904498.36892611,0.0,36281808.32617527,0.0,54776511.91483459,0.0,20398.50224062934,20079.159882715456,20105.03392966157,24202.04424980635,527001269.9308071,0.0,56373228.15141996,38756594.35410121 - 11/18 09:00:00,70261739.23323414,0.0,81733550.84753168,0.0,46468954.05549527,0.0,67709673.19320947,0.0,17848.68946055067,17569.26489737602,17591.90468845388,21176.78871858055,533245849.28333058,0.0,56373228.15141996,38756594.35410121 - 11/18 10:00:00,75435172.56649956,0.0,86158756.18087802,0.0,53877867.53416678,0.0,76071464.40964034,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,482601949.4600743,0.0,28186614.07570998,0.0 - 11/18 11:00:00,65998106.5619513,0.0,77729428.40532989,0.0,49136456.77435926,0.0,69729687.42954742,0.0,10229.73882184678,10069.590352234878,10082.566047185453,12137.194618983907,415662402.5960915,0.0,28186614.07570998,0.0 - 11/18 12:00:00,63571745.06684522,0.0,75148746.70686329,0.0,47027479.83781569,0.0,67147959.96040754,0.0,5117.915168652622,5037.793251941234,5044.284962743228,6072.2109847739679,329475867.2971315,0.0,28186614.07570998,0.0 - 11/18 13:00:00,62534625.556462828,0.0,74596858.55424573,0.0,46041168.583579998,0.0,66117973.952790129,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,325855501.3892432,0.0,28186614.07570998,0.0 - 11/18 14:00:00,67172728.91642116,0.0,78021190.50356564,0.0,47024626.950834717,0.0,67914461.27787803,0.0,5112.795412495462,5032.753646521804,5039.238863277833,6066.136589526604,336636335.89125767,0.0,28186614.07570998,0.0 - 11/18 15:00:00,68865703.89607518,0.0,79465704.22449924,0.0,47375684.744276437,0.0,68521664.06935418,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,379007121.8720337,0.0,28186614.07570998,0.0 - 11/18 16:00:00,70468845.31268823,0.0,81215357.68958573,0.0,47937835.677640687,0.0,69497680.14424472,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,460338760.60910496,0.0,28186614.07570998,0.0 - 11/18 17:00:00,71561833.51106575,0.0,82440221.5796757,0.0,47529859.32079228,0.0,69388399.02039893,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,462139355.21687826,0.0,35233267.594637479,0.0 - 11/18 18:00:00,74739032.5272145,0.0,85545631.18975625,0.0,50288731.50794781,0.0,72808579.8138823,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,550864139.3152462,0.0,14093307.03785499,0.0 - 11/18 19:00:00,62119961.34549466,0.0,73376949.36368951,0.0,37216674.366375569,0.0,57348540.23359946,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,497312568.8522967,0.0,63419881.67034747,0.0 - 11/18 20:00:00,49545512.394213709,0.0,61209190.503811407,0.0,24199336.550403999,0.0,41876671.6760057,0.0,10194.620788196893,10035.022097953042,10047.953248179667,12095.528412596073,329373959.49336728,0.0,63419881.67034747,69761869.8373822 - 11/18 21:00:00,56681695.36594983,0.0,68946730.92447531,0.0,29612610.844785297,0.0,49254586.11110913,0.0,10152.527404161572,9993.587693697307,10006.465451464926,12045.586219241415,356409023.61315438,0.0,49326574.63249246,69761869.8373822 - 11/18 22:00:00,64972012.458975959,0.0,77685399.64935525,0.0,36207115.37648459,0.0,57932194.00633481,0.0,5048.428149816551,4969.394065347833,4975.797636816541,5989.767289407546,312336915.2001491,0.0,35233267.594637479,69761869.8373822 - 11/18 23:00:00,72503358.55668406,0.0,85563938.33328873,0.0,42137086.17456925,0.0,65698725.835042718,0.0,5014.091966948574,4935.595421828062,4941.955440294839,5949.028719127368,340929526.47310069,0.0,35233267.594637479,62010550.96656194 - 11/18 24:00:00,80389969.35379702,0.0,93752427.77846657,0.0,48646181.100038919,0.0,74074811.36579383,0.0,2498.6191549896004,2459.5028060012957,2462.6721264030604,2964.516249238422,334250506.8099728,0.0,35233267.594637479,46507913.22492146 - 11/19 01:00:00,90876261.9555843,0.0,104277727.32119054,0.0,58245992.68003262,0.0,85943294.49206445,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,376665217.36142089,0.0,21139960.556782485,23253956.61246073 - 11/19 02:00:00,49771785.12103605,0.0,61934841.745479878,0.0,22710377.703293414,0.0,40260508.30800648,0.0,1250.167524576578,1230.5959187608103,1232.1816672064479,1483.2760460818868,193383909.04166842,0.0,14093307.03785499,0.0 - 11/19 03:00:00,78757782.72565273,0.0,91377081.22650889,0.0,47864057.11929634,0.0,72998022.0022817,0.0,1245.3556599458119,1225.8593847684913,1227.4390297066319,1477.566952377648,309631338.7702145,0.0,14093307.03785499,0.0 - 11/19 04:00:00,82031268.71081613,0.0,94442664.34606932,0.0,51229519.516398239,0.0,77048250.97377716,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,323372645.18162718,0.0,14093307.03785499,0.0 - 11/19 05:00:00,83558695.04737818,0.0,95778612.69167385,0.0,52993417.497093487,0.0,78796160.34632792,0.0,1244.0041671068476,1224.5290498020418,1226.1069804677935,1475.9634577138702,329741058.7407994,0.0,14093307.03785499,0.0 - 11/19 06:00:00,85257690.99034101,0.0,97597740.07990194,0.0,54532777.699807319,0.0,80623426.69896108,0.0,1243.5499821674389,1224.0819752125877,1225.6593297770988,1475.4245846205668,336619012.60741099,0.0,14093307.03785499,0.0 - 11/19 07:00:00,81532741.35737568,0.0,94092849.77977179,0.0,50956993.73687667,0.0,76308140.78292904,0.0,5000.670098306312,4922.383675043241,4928.7266688257909,5933.104184327547,377716310.31236359,0.0,14093307.03785499,15502637.741640486 - 11/19 08:00:00,45853756.13353823,0.0,81116738.77942205,0.0,39048096.073055367,0.0,61613810.96941015,0.0,20062.940360319604,19748.851286240977,19774.299696846647,23803.91288800329,527836417.1885036,0.0,56373228.15141996,38756594.35410121 - 11/19 09:00:00,37792192.56086525,0.0,92370981.58537092,0.0,53596578.126072589,0.0,78575194.0282632,0.0,17611.082391406708,17335.37761122506,17357.716014662336,20894.877001060664,525851537.1666491,0.0,56373228.15141996,38756594.35410121 - 11/19 10:00:00,46600677.50080367,0.0,94224401.4127351,0.0,57315369.164272319,0.0,82910620.28345174,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,469678699.387522,0.0,28186614.07570998,0.0 - 11/19 11:00:00,58986713.05150802,0.0,92804176.49689001,0.0,57543726.011541638,0.0,82954991.42459005,0.0,10111.386997878159,9953.091348148997,9965.916922242,11996.774697612,443587418.8617018,0.0,28186614.07570998,0.0 - 11/19 12:00:00,48086164.7286586,0.0,87625086.43063206,0.0,54611474.050371337,0.0,78539815.26042789,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,344759903.2216474,0.0,28186614.07570998,0.0 - 11/19 13:00:00,44016804.828809719,0.0,83526357.28464723,0.0,51702182.809477638,0.0,73104279.69315154,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,328440410.2942043,0.0,28186614.07570998,0.0 - 11/19 14:00:00,44784641.71754535,0.0,81332798.0887274,0.0,49402057.04406401,0.0,71264263.18715263,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,322893198.82316645,0.0,28186614.07570998,0.0 - 11/19 15:00:00,43815402.83509034,0.0,80557403.25230973,0.0,47371382.849136,0.0,69389555.39654814,0.0,7627.837158563788,7508.421944874854,7518.097312919523,9050.137616191094,355269922.8502615,0.0,28186614.07570998,0.0 - 11/19 16:00:00,47858951.19433742,0.0,81879642.30276305,0.0,46589628.06550551,0.0,69182571.12343385,0.0,12693.922323268207,12495.196601248572,12511.297937427486,15060.8542797534,435451368.7961514,0.0,28186614.07570998,0.0 - 11/19 17:00:00,75837442.7262941,0.0,96390870.80858599,0.0,54989659.09384303,0.0,80790573.40013756,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,497549823.80657598,0.0,35233267.594637479,0.0 - 11/19 18:00:00,83101450.84500905,0.0,102623916.26646284,0.0,59728489.44793552,0.0,86958387.65834674,0.0,17689.89820129477,17412.95954490625,17435.3979205837,20988.388950908433,597108164.8414495,0.0,14093307.03785499,0.0 - 11/19 19:00:00,69585996.27779019,0.0,88286786.92807605,0.0,45340490.75663115,0.0,69622830.28758924,0.0,17757.698998530952,17479.698908013474,17502.22328417223,21068.83200871362,538546535.7680357,0.0,63419881.67034747,0.0 - 11/19 20:00:00,54971291.78988202,0.0,72830869.67812084,0.0,30364707.3202734,0.0,51371539.46271749,0.0,10152.527404161572,9993.587693697307,10006.465451464926,12045.586219241415,361451808.6178286,0.0,63419881.67034747,69761869.8373822 - 11/19 21:00:00,57761658.467034798,0.0,74744654.19806482,0.0,32388301.70281601,0.0,53787098.264626909,0.0,10165.4126782922,10006.271246457674,10019.165348277607,12060.874105136252,370787916.79393199,0.0,49326574.63249246,69761869.8373822 - 11/19 22:00:00,61266764.45611833,0.0,77662747.64400566,0.0,34992271.25701677,0.0,57076831.07234945,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,307070621.1458851,0.0,35233267.594637479,69761869.8373822 - 11/19 23:00:00,63518747.727427478,0.0,79383359.51180978,0.0,36634676.77058646,0.0,59098813.88063168,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,314707604.6068503,0.0,35233267.594637479,62010550.96656194 - 11/19 24:00:00,67411887.49982804,0.0,82782167.17333733,0.0,40024522.70047059,0.0,63209018.16750513,0.0,2541.35316957305,2501.5678116144188,2504.791337069402,3015.218526284063,291454146.5814885,0.0,35233267.594637479,46507913.22492146 - 11/20 01:00:00,76599802.81975574,0.0,91477520.63991896,0.0,48442588.40362859,0.0,73415487.59917656,0.0,2538.7844646536416,2499.0393202497155,2502.259587485497,3012.1708559506798,327923514.6845022,0.0,21139960.556782485,23253956.61246073 - 11/20 02:00:00,37930969.55340391,0.0,51755390.30124582,0.0,15046199.18086379,0.0,31074598.412183137,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642634,154750993.74204547,0.0,14093307.03785499,0.0 - 11/20 03:00:00,66776735.356647539,0.0,80316593.08047332,0.0,39973728.00552366,0.0,62637723.855227,0.0,1263.9233747347699,1244.1364185186247,1245.73961528025,1499.5968372015,268617006.782518,0.0,14093307.03785499,0.0 - 11/20 04:00:00,69944316.59258576,0.0,82887414.05932573,0.0,42840355.18035784,0.0,66037040.94680734,0.0,1262.47434789568,1242.7100764650166,1244.311435239322,1497.8776221696747,280599671.3134475,0.0,14093307.03785499,0.0 - 11/20 05:00:00,70266745.10111518,0.0,82864111.566363,0.0,43562791.46346314,0.0,66495260.62311946,0.0,1265.3398915471713,1245.5307594960769,1247.1357530083693,1501.2774803276432,282122330.7378261,0.0,14093307.03785499,0.0 - 11/20 06:00:00,71903514.264236,0.0,84292289.81576056,0.0,45073088.87742986,0.0,68125405.59945117,0.0,1262.1070374541378,1242.3485163369583,1243.9494092041353,1497.4418223518865,288279346.98412719,0.0,14093307.03785499,0.0 - 11/20 07:00:00,69902498.53581259,0.0,82186512.90690843,0.0,43002365.006714988,0.0,65440064.41615179,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,336115482.6494776,0.0,14093307.03785499,15502637.741640486 - 11/20 08:00:00,59965920.93754718,0.0,80225442.68960801,0.0,39973774.56341735,0.0,61607487.01116206,0.0,20278.451778137507,19960.98883260932,19986.710604095908,24059.608958667653,545201361.8263719,0.0,56373228.15141996,38756594.35410121 - 11/20 09:00:00,73808656.49439717,0.0,93430245.52348402,0.0,52405405.7064379,0.0,76954146.92970416,0.0,17724.502467554616,17447.022074922377,17469.50434364644,21029.445591899686,561812162.7749064,0.0,56373228.15141996,38756594.35410121 - 11/20 10:00:00,77911285.97191257,0.0,97776312.0999426,0.0,60050220.53316381,0.0,85537125.3632657,0.0,12700.385897019243,12501.558986546757,12517.668521308522,15068.523063279225,511312235.25363817,0.0,28186614.07570998,0.0 - 11/20 11:00:00,73541368.02153598,0.0,95727469.51390304,0.0,57899649.30704524,0.0,83086143.6006393,0.0,10187.547442691379,10028.05948699095,10040.98166518269,12087.13615815998,462692039.5540136,0.0,28186614.07570998,0.0 - 11/20 12:00:00,64209144.25268577,0.0,92228419.95338825,0.0,55381205.98960456,0.0,79616580.08287364,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,367842467.4807857,0.0,28186614.07570998,0.0 - 11/20 13:00:00,68507886.83033958,0.0,89758747.74066195,0.0,53175653.35287312,0.0,76289550.41953025,0.0,5114.86941092339,5034.795176117439,5041.283023592727,6068.597309491954,364266200.0558567,0.0,28186614.07570998,0.0 - 11/20 14:00:00,68145168.19514524,0.0,84006822.36314264,0.0,50117117.29267155,0.0,72684115.80520949,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,351518098.39833346,0.0,28186614.07570998,0.0 - 11/20 15:00:00,65372727.54059457,0.0,83495244.83362147,0.0,49087323.45082139,0.0,71460375.73246105,0.0,7675.362941705243,7555.203703015304,7564.9393541302529,9106.52514371776,384262983.67074528,0.0,28186614.07570998,0.0 - 11/20 16:00:00,70000014.24056521,0.0,86238634.17841451,0.0,49986887.47669874,0.0,73120271.0647612,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,470564848.7453852,0.0,28186614.07570998,0.0 - 11/20 17:00:00,76764137.49907115,0.0,90241741.98022896,0.0,51517693.77116126,0.0,75502839.28217855,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,485085101.3015295,0.0,35233267.594637479,0.0 - 11/20 18:00:00,80480904.9723332,0.0,93636385.94653578,0.0,54531591.101428788,0.0,79253437.86047587,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,575152763.4239111,0.0,14093307.03785499,0.0 - 11/20 19:00:00,66857326.709794748,0.0,80065815.62812954,0.0,40661754.2706409,0.0,62650173.556049238,0.0,17864.53625352438,17584.86360584951,17607.523497455364,21195.59033353458,517544119.44992426,0.0,63419881.67034747,0.0 - 11/20 20:00:00,53815704.26412936,0.0,67154805.25411713,0.0,27208729.238092945,0.0,46577318.630221318,0.0,10194.620788196893,10035.022097953042,10047.953248179667,12095.528412596073,347299805.75549319,0.0,63419881.67034747,69761869.8373822 - 11/20 21:00:00,58361022.53959585,0.0,71692724.92780814,0.0,30824179.31051845,0.0,51285741.527724009,0.0,10182.74691140684,10023.334108919207,10036.250197978992,12081.440511038418,364529246.5312829,0.0,49326574.63249246,69761869.8373822 - 11/20 22:00:00,62948840.48048208,0.0,76281738.33032003,0.0,34553994.034852448,0.0,56107035.95183943,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,306001047.58317098,0.0,35233267.594637479,69761869.8373822 - 11/20 23:00:00,66763975.07298931,0.0,80133982.33481018,0.0,37597565.59058078,0.0,60052590.94832326,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,320485159.30190399,0.0,35233267.594637479,62010550.96656194 - 11/20 24:00:00,71176152.71935299,0.0,84538665.18240714,0.0,41518603.85583603,0.0,64889202.128791619,0.0,2538.131851040393,2498.396923424327,2501.6163628662318,3011.396554810354,300100973.9780964,0.0,35233267.594637479,46507913.22492146 - 11/21 01:00:00,79705975.26806858,0.0,93077468.86338401,0.0,49645295.67649704,0.0,74617683.53623487,0.0,2536.8141426472795,2497.0998440019259,2500.3176120246046,3009.833144101946,335005056.4181773,0.0,21139960.556782485,23253956.61246073 - 11/21 02:00:00,38461345.53709108,0.0,51062696.080988798,0.0,14691582.910248813,0.0,30281549.433600718,0.0,1268.0745302555334,1248.222586925313,1249.831049131997,1504.5220247675378,153471514.64981876,0.0,14093307.03785499,0.0 - 11/21 03:00:00,65658150.60976235,0.0,77214314.5847038,0.0,38501406.88159584,0.0,60067494.53498092,0.0,1267.0644895209508,1247.2283585668534,1248.8355396088187,1503.3236499915807,260400593.94672043,0.0,14093307.03785499,0.0 - 11/21 04:00:00,64601894.43726733,0.0,75476942.3521687,0.0,38424245.68568336,0.0,59515770.09225914,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,257060012.86728237,0.0,14093307.03785499,0.0 - 11/21 05:00:00,62927154.463590819,0.0,73706367.54701026,0.0,37902411.046967189,0.0,58243870.692035999,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,251838921.68466769,0.0,14093307.03785499,0.0 - 11/21 06:00:00,62538561.901279848,0.0,72962502.49906147,0.0,37990842.71803582,0.0,58080687.887277748,0.0,1274.6180615412266,1254.6636780080342,1256.2804402180069,1512.2856748560676,250644847.2822989,0.0,14093307.03785499,0.0 - 11/21 07:00:00,59480801.61173712,0.0,69773594.16491559,0.0,35214235.15931234,0.0,54430209.20820389,0.0,5097.3103940984469,5017.511048976521,5023.976624089833,6047.764206298037,295170464.3286352,0.0,14093307.03785499,15502637.741640486 - 11/21 08:00:00,51740640.10928926,0.0,68571819.90496005,0.0,35020747.88591318,0.0,50428646.091531369,0.0,20412.13665375248,20092.580846557656,20118.472187785534,24218.220960519408,511190932.3267082,0.0,56373228.15141996,38756594.35410121 - 11/21 09:00:00,42679091.29680895,0.0,73700836.25181088,0.0,39294181.289247829,0.0,58908238.16056187,0.0,17891.108882585515,17611.020235445572,17633.713832538415,21227.117743576004,482289005.4973533,0.0,56373228.15141996,38756594.35410121 - 11/21 10:00:00,37280062.80362943,0.0,79235922.48816398,0.0,46846230.33819151,0.0,68200503.57234304,0.0,12802.206012981016,12601.785089598625,12618.023775924037,15189.328744155097,423123556.2438996,0.0,28186614.07570998,0.0 - 11/21 11:00:00,45650370.099638018,0.0,80381145.34074275,0.0,48111561.87663771,0.0,69670016.46213576,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,397176492.45430609,0.0,28186614.07570998,0.0 - 11/21 12:00:00,52048692.92820316,0.0,77343316.81522683,0.0,46793974.8143377,0.0,67539169.78416692,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,320420866.3403911,0.0,28186614.07570998,0.0 - 11/21 13:00:00,52656863.91429925,0.0,74672542.3634769,0.0,45270986.840344529,0.0,64852429.26702702,0.0,5128.409227478876,5048.123024318898,5054.628046086938,6084.661784988465,314189781.88349118,0.0,28186614.07570998,0.0 - 11/21 14:00:00,58789181.903572607,0.0,74220195.64765564,0.0,44476379.23374897,0.0,64522992.12439643,0.0,5129.310459321772,5049.010147209169,5055.5163121256,6085.731062167927,318759193.64034178,0.0,28186614.07570998,0.0 - 11/21 15:00:00,63135815.61950559,0.0,76999979.58240506,0.0,45378359.2458304,0.0,66066204.82770813,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,366644748.7766408,0.0,28186614.07570998,0.0 - 11/21 16:00:00,67404931.75602609,0.0,80221144.9648038,0.0,46678900.419463988,0.0,68037013.42832127,0.0,12816.45074137696,12615.80681411418,12632.063568862799,15206.229570642176,454115973.07060119,0.0,28186614.07570998,0.0 - 11/21 17:00:00,69457891.43759984,0.0,81954602.32414179,0.0,46869347.97759974,0.0,68582021.7014261,0.0,12799.755167198507,12599.372612264047,12615.60818986618,15186.420909188688,458388028.2034302,0.0,35233267.594637479,0.0 - 11/21 18:00:00,73501197.20000862,0.0,85469681.0950259,0.0,49978749.04669139,0.0,72451204.5115509,0.0,17912.703090284176,17632.276381794316,17654.997369601297,21252.738446708885,549430606.8914759,0.0,14093307.03785499,0.0 - 11/21 19:00:00,60538643.16758854,0.0,72598343.19456104,0.0,36500104.98488131,0.0,56362297.870574567,0.0,17905.626801929637,17625.31087405405,17648.02288609335,21244.342700694757,493923280.96358397,0.0,63419881.67034747,0.0 - 11/21 20:00:00,46785422.88105187,0.0,59294796.96067687,0.0,22723433.032341165,0.0,39791188.6291952,0.0,10229.73882184678,10069.590352234878,10082.566047185453,12137.194618983907,321663564.9281688,0.0,63419881.67034747,69761869.8373822 - 11/21 21:00:00,50163780.38067109,0.0,62528766.89640011,0.0,25532259.148015478,0.0,43358406.01836662,0.0,10225.590824990924,10065.507293043607,10078.477726555666,12132.273179053209,334589868.92856958,0.0,49326574.63249246,69761869.8373822 - 11/21 22:00:00,54010947.02914126,0.0,65757604.56170634,0.0,28568277.040261106,0.0,47212555.82002818,0.0,5111.745395024433,5031.720067270165,5038.203952153832,6064.890783878859,272037001.1651151,0.0,35233267.594637479,69761869.8373822 - 11/21 23:00:00,56658142.69072895,0.0,68318354.49150627,0.0,30674421.2530676,0.0,49930581.41266608,0.0,5108.543390733541,5028.56819095378,5035.048014323108,6061.091728015734,282021204.6144631,0.0,35233267.594637479,62010550.96656194 - 11/21 24:00:00,61139852.76555438,0.0,72708054.97878543,0.0,34580969.60480273,0.0,54814279.16860257,0.0,2552.631837281639,2512.669909675996,2515.9077413174998,3028.6002349870898,261438471.5214891,0.0,35233267.594637479,46507913.22492146 - 11/22 01:00:00,70256156.15884382,0.0,81668015.3317518,0.0,43008229.891824398,0.0,65162612.57731479,0.0,2551.51708171906,2511.572605819707,2514.8090234731919,3027.2776200649257,298273648.7516116,0.0,21139960.556782485,23253956.61246073 - 11/22 02:00:00,35023729.23357454,0.0,44427595.61103052,0.0,11085256.755689346,0.0,27872674.12156456,0.0,1275.1925812523689,1255.2292035059223,1256.8466944532209,1512.9673205625728,137490104.60104568,0.0,14093307.03785499,0.0 - 11/22 03:00:00,57177149.850457567,0.0,67254987.97855386,0.0,32684869.504906745,0.0,51442396.70572691,0.0,1274.6180615412266,1254.6636780080342,1256.2804402180069,1512.2856748560676,227631656.3162891,0.0,14093307.03785499,0.0 - 11/22 04:00:00,58596539.28545357,0.0,68340073.21177405,0.0,34280477.42148964,0.0,53513070.67236328,0.0,1274.3275985246117,1254.3777622441303,1255.9941560224584,1511.9410515745092,233798066.6371971,0.0,14093307.03785499,0.0 - 11/22 05:00:00,59981494.428523499,0.0,69550227.93943748,0.0,35912974.85499981,0.0,55163302.339368838,0.0,1273.4434303364224,1253.5074358738687,1255.1227081478363,1510.8920197699975,239662675.7011909,0.0,14093307.03785499,0.0 - 11/22 06:00:00,61788188.958274397,0.0,71331424.24122358,0.0,37577651.82621767,0.0,57083782.06924236,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,246817638.77585573,0.0,14093307.03785499,0.0 - 11/22 07:00:00,60089764.63891467,0.0,69699992.73462144,0.0,35787519.39083293,0.0,54875119.65314673,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,296543182.095634,0.0,14093307.03785499,15502637.741640486 - 11/22 08:00:00,64288143.95927189,0.0,74937209.77458312,0.0,38649831.49020135,0.0,58271315.87858152,0.0,20360.64244865772,20041.89279284989,20067.718817346944,24157.125051829124,540805065.901099,0.0,56373228.15141996,38756594.35410121 - 11/22 09:00:00,72599572.78126215,0.0,85194545.3417879,0.0,48565296.77817297,0.0,70721794.95122944,0.0,17819.80709496197,17540.834690608608,17563.437846463232,21142.52089431723,543720971.7473161,0.0,56373228.15141996,38756594.35410121 - 11/22 10:00:00,69238785.35314614,0.0,87507582.94121304,0.0,54876751.396612759,0.0,77688633.4340392,0.0,12734.434303364225,12535.074358738684,12551.227081478362,15108.920197699974,479858514.51362368,0.0,28186614.07570998,0.0 - 11/22 11:00:00,63456530.91848365,0.0,84789677.29315707,0.0,53293371.986933868,0.0,75823940.0236282,0.0,10187.547442691379,10028.05948699095,10040.98166518269,12087.13615815998,429800929.3330928,0.0,28186614.07570998,0.0 - 11/22 12:00:00,52141349.81776997,0.0,82263137.88794944,0.0,51544343.36310451,0.0,73136257.10948347,0.0,5104.153215292681,5024.246744528433,5030.720999272961,6055.882952438452,335459102.25982448,0.0,28186614.07570998,0.0 - 11/22 13:00:00,17965646.352123217,0.0,74509426.8292321,0.0,47877719.70918414,0.0,64367717.81608633,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,281239420.66517826,0.0,28186614.07570998,0.0 - 11/22 14:00:00,19809894.979496726,0.0,67227700.04368718,0.0,42181943.399839598,0.0,58757317.63490525,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,264658555.39550466,0.0,28186614.07570998,0.0 - 11/22 15:00:00,23801943.402071693,0.0,65809471.708597619,0.0,38634926.03636472,0.0,55818361.457457859,0.0,7691.248755466738,7570.840821398867,7580.596622536899,9125.373055346981,299149715.9215901,0.0,28186614.07570998,0.0 - 11/22 16:00:00,48409096.231133807,0.0,74832179.89579985,0.0,42623110.16217527,0.0,62693198.76308861,0.0,12787.173527308476,12586.987940293597,12603.207558981816,15171.493273729886,419893489.3333271,0.0,28186614.07570998,0.0 - 11/22 17:00:00,67347962.68336596,0.0,84496111.84503596,0.0,48208145.90470983,0.0,70451591.74543922,0.0,12765.913826487129,12566.0610640546,12582.253716326824,15146.269450238027,461521605.18413469,0.0,35233267.594637479,0.0 - 11/22 18:00:00,71085856.78593202,0.0,86845172.47778592,0.0,50488598.5262432,0.0,73214321.19963432,0.0,17902.042938231865,17621.783116411032,17644.49058257454,21240.090583221838,549504214.9831768,0.0,14093307.03785499,0.0 - 11/22 19:00:00,57106041.92586438,0.0,71956502.38571434,0.0,35717385.00382097,0.0,55355453.10220671,0.0,17919.65723407791,17639.121657169664,17661.851465812648,21260.98927286416,488269213.0853342,0.0,63419881.67034747,0.0 - 11/22 20:00:00,42920886.97384562,0.0,57089165.74059186,0.0,21124000.362604705,0.0,37679652.2513141,0.0,10243.70798080364,10083.340821402322,10096.334235235901,12153.76849285064,312091450.83740928,0.0,63419881.67034747,69761869.8373822 - 11/22 21:00:00,46530288.19508603,0.0,60057467.82770237,0.0,23923252.27592802,0.0,41200317.123010877,0.0,10233.817255606991,10073.604937353743,10086.585805507002,12142.03352495701,324841074.9060564,0.0,49326574.63249246,69761869.8373822 - 11/22 22:00:00,49531105.74285285,0.0,62501287.90436231,0.0,26239663.949579229,0.0,44098020.36711619,0.0,5123.770864303803,5043.557275584617,5050.056413919397,6079.158544138449,259037633.11651717,0.0,35233267.594637479,69761869.8373822 - 11/22 23:00:00,50800480.74085297,0.0,63248214.384012687,0.0,27246666.92660043,0.0,45248702.6392249,0.0,5123.770864303803,5043.557275584617,5050.056413919397,6079.158544138449,263211619.84329755,0.0,35233267.594637479,62010550.96656194 - 11/22 24:00:00,54774172.36169503,0.0,66822076.7837769,0.0,30666820.740995639,0.0,49417984.56968489,0.0,2560.92699520091,2520.8352053505807,2524.0835588089755,3038.44212321266,240000490.83341573,0.0,35233267.594637479,46507913.22492146 - 11/23 01:00:00,63483735.61606641,0.0,75183491.56682793,0.0,38709057.244097437,0.0,59233188.705732788,0.0,2560.4412025962035,2520.357017919725,2523.6047551848075,3037.8657488310198,274921640.5410389,0.0,21139960.556782485,23253956.61246073 - 11/23 02:00:00,28516772.9004921,0.0,38466241.029051657,0.0,7057273.502377883,0.0,20843298.78867768,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,114054011.05499327,0.0,14093307.03785499,0.0 - 11/23 03:00:00,48185562.623256999,0.0,58082059.79502295,0.0,26394082.88648154,0.0,43341577.92095145,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,195177211.22532708,0.0,14093307.03785499,0.0 - 11/23 04:00:00,49780175.554325047,0.0,59074459.20169395,0.0,28227880.725459216,0.0,45112625.23088318,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,201354858.90099306,0.0,14093307.03785499,0.0 - 11/23 05:00:00,51113688.75980226,0.0,60224147.85059038,0.0,29809342.276957536,0.0,46727773.838944729,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,207023669.26644159,0.0,14093307.03785499,0.0 - 11/23 06:00:00,51434588.97826358,0.0,60281393.7677681,0.0,30421278.840193057,0.0,47140467.52234168,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,208437447.2971981,0.0,14093307.03785499,0.0 - 11/23 07:00:00,46881165.318778458,0.0,55473784.92165337,0.0,26357031.180281067,0.0,41903403.543392378,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,189819356.36284117,0.0,14093307.03785499,15502637.741640486 - 11/23 08:00:00,46260959.618597958,0.0,55943481.35408117,0.0,28927791.571516545,0.0,42410821.58842974,0.0,5133.683938970434,5053.315159218059,5059.826871581867,6090.920028825082,250358939.72756899,0.0,56373228.15141996,38756594.35410121 - 11/23 09:00:00,60539542.34822021,0.0,70238606.12397945,0.0,38018354.77607928,0.0,55964713.99283452,0.0,12842.557518663969,12641.504884932543,12657.794754268361,15237.204265336253,416925838.3646375,0.0,56373228.15141996,38756594.35410121 - 11/23 10:00:00,67189280.98398318,0.0,76222072.42244838,0.0,45286362.43454365,0.0,65173802.86333027,0.0,12840.50395623545,12639.483471406937,12655.770735945105,15234.767791904116,446005412.1440752,0.0,28186614.07570998,0.0 - 11/23 11:00:00,67186491.56759015,0.0,77050352.06405568,0.0,44658605.41356209,0.0,65117436.43183298,0.0,12852.490895117888,12651.282752525009,12667.585221641224,15248.98983731854,446326140.8208105,0.0,28186614.07570998,0.0 - 11/23 12:00:00,62239600.516396809,0.0,73243474.27420683,0.0,42052868.1998443,0.0,61591361.154955688,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,354663119.0333795,0.0,28186614.07570998,0.0 - 11/23 13:00:00,49812249.35880164,0.0,65819832.90532459,0.0,38498872.37202216,0.0,55622830.39877389,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,325379082.03431919,0.0,28186614.07570998,0.0 - 11/23 14:00:00,50059089.529651489,0.0,65905927.01327694,0.0,37653890.82926796,0.0,54934910.65408036,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,324179115.0256736,0.0,28186614.07570998,0.0 - 11/23 15:00:00,52850060.09317592,0.0,66596871.033167678,0.0,37413132.660673189,0.0,55086801.95461941,0.0,7725.417256470496,7604.474408145284,7614.273549592747,9165.912677496071,327543146.15177276,0.0,28186614.07570998,0.0 - 11/23 16:00:00,58343268.48935117,0.0,68213406.65674003,0.0,38374500.05517439,0.0,56557679.06329352,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,491143910.46669957,0.0,28186614.07570998,0.0 - 11/23 17:00:00,59396556.18811774,0.0,68981012.18598134,0.0,38004049.88150742,0.0,56365492.473358187,0.0,23157.82402451403,22795.283969322456,22824.658019383194,27475.87421659764,569260215.5563071,0.0,35233267.594637479,0.0 - 11/23 18:00:00,62284183.44335475,0.0,71661184.19523725,0.0,40592880.1970323,0.0,59523770.893839079,0.0,18004.049195088508,17722.192446287336,17745.029300120957,21361.117113164037,503458615.72624239,0.0,14093307.03785499,0.0 - 11/23 19:00:00,50537329.98035898,0.0,60090737.90864765,0.0,28842075.651109406,0.0,45397731.87585831,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,454225666.6448871,0.0,63419881.67034747,0.0 - 11/23 20:00:00,36961836.08408565,0.0,46672459.66415027,0.0,15389314.139099801,0.0,29162733.917539136,0.0,15411.06902239676,15169.805861919049,15189.353705122032,18284.645118403507,358783889.1531037,0.0,63419881.67034747,69761869.8373822 - 11/23 21:00:00,39931724.3581016,0.0,49714835.65253307,0.0,17858824.751360235,0.0,32371465.60440199,0.0,12852.490895117888,12651.282752525009,12667.585221641224,15248.98983731854,332190105.7101665,0.0,49326574.63249246,69761869.8373822 - 11/23 22:00:00,42924422.68284118,0.0,52928738.32224331,0.0,20513436.289498126,0.0,35919911.266044069,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,306090351.47737106,0.0,35233267.594637479,69761869.8373822 - 11/23 23:00:00,45355530.82955375,0.0,55470533.9321123,0.0,22508776.78347121,0.0,38572070.3539985,0.0,7706.753286692074,7586.102626295502,7595.878093826884,9143.768589801499,277223921.24695327,0.0,35233267.594637479,62010550.96656194 - 11/23 24:00:00,51890304.73046851,0.0,62237540.14214605,0.0,27885777.144531114,0.0,45500421.303206909,0.0,5123.770864303803,5043.557275584617,5050.056413919397,6079.158544138449,264181598.47295917,0.0,35233267.594637479,46507913.22492146 - 11/24 01:00:00,62743053.54967807,0.0,72980555.41164154,0.0,37889058.94651385,0.0,57714685.876099679,0.0,2555.8726975122165,2515.8600336350825,2519.101976076916,3032.4453919394297,269571162.1409223,0.0,21139960.556782485,23253956.61246073 - 11/24 02:00:00,21725571.525543877,0.0,29924431.47405536,0.0,2851258.3947640724,0.0,12676963.70014894,0.0,1280.7042032962764,1260.6545400785399,1262.279022125765,1519.506649726121,86341544.98932839,0.0,14093307.03785499,0.0 - 11/24 03:00:00,44826520.40176731,0.0,53233186.73106737,0.0,24167976.88627528,0.0,39963605.163880158,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,181361714.0173841,0.0,14093307.03785499,0.0 - 11/24 04:00:00,45001198.79634324,0.0,53058509.33166556,0.0,24908065.519292855,0.0,40224739.69252097,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,182399657.2970285,0.0,14093307.03785499,0.0 - 11/24 05:00:00,44482848.77196691,0.0,52304469.890300709,0.0,24978217.2224429,0.0,39876745.87288881,0.0,1284.4588811153456,1264.3504377159175,1265.9796823044806,1523.961431633583,180861783.31556887,0.0,14093307.03785499,0.0 - 11/24 06:00:00,45575562.26515821,0.0,53311884.30368233,0.0,26228836.43365006,0.0,41173207.173385519,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,185487016.87970907,0.0,14093307.03785499,0.0 - 11/24 07:00:00,43360118.077925879,0.0,51125663.761361729,0.0,24268153.362891389,0.0,38622696.86304668,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,176564243.24796767,0.0,14093307.03785499,15502637.741640486 - 11/24 08:00:00,56612852.85746813,0.0,64956051.85622837,0.0,36806584.475241158,0.0,53388163.14549316,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,230951263.51717288,0.0,56373228.15141996,38756594.35410121 - 11/24 09:00:00,55277331.14516902,0.0,64799416.10029119,0.0,36129227.566388238,0.0,52535288.903748098,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,285518282.2325491,0.0,56373228.15141996,38756594.35410121 - 11/24 10:00:00,58678497.49139693,0.0,68032008.25403792,0.0,42088773.1235731,0.0,60107104.2920603,0.0,7699.240442651108,7578.707397229518,7588.473335253433,9134.854887129783,344110976.98521807,0.0,28186614.07570998,0.0 - 11/24 11:00:00,56512261.156950298,0.0,65654435.451554488,0.0,40309161.8708291,0.0,57754459.77589113,0.0,7705.53451119838,7584.902930959524,7594.676852561016,9142.322559201753,335529090.9293394,0.0,28186614.07570998,0.0 - 11/24 12:00:00,53649836.69454668,0.0,63034269.33813591,0.0,38430013.318991769,0.0,55447548.368936229,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,287439673.95248886,0.0,28186614.07570998,0.0 - 11/24 13:00:00,55618223.00393415,0.0,64385448.36641143,0.0,38214775.36257165,0.0,55553439.201501119,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,290673807.39279046,0.0,28186614.07570998,0.0 - 11/24 14:00:00,52644623.11710952,0.0,61948459.86581065,0.0,36724487.97156866,0.0,53590620.35130039,0.0,7711.494537070733,7590.769651515005,7600.551132984735,9149.393902391126,320296144.512051,0.0,28186614.07570998,0.0 - 11/24 15:00:00,54470613.39553451,0.0,64404946.01299665,0.0,37380045.42816487,0.0,54876812.400993358,0.0,10275.671048922764,10114.80350172734,10127.837458435844,12191.691453068664,364888429.701446,0.0,28186614.07570998,0.0 - 11/24 16:00:00,54935816.07775873,0.0,66711085.393507767,0.0,37783716.35263967,0.0,55822740.883976567,0.0,12842.557518663967,12641.504884932543,12657.79475426836,15237.204265336253,407417979.8314068,0.0,28186614.07570998,0.0 - 11/24 17:00:00,60137345.274651277,0.0,69935582.9776529,0.0,38873080.873878,0.0,57650982.93845709,0.0,15401.051816911302,15159.945477654173,15179.480614745602,18272.76008647525,457044648.8494701,0.0,35233267.594637479,0.0 - 11/24 18:00:00,63655891.56170512,0.0,73422972.76190719,0.0,41930099.85869746,0.0,61478880.37668713,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,509161136.7885748,0.0,14093307.03785499,0.0 - 11/24 19:00:00,52049648.555830847,0.0,61841602.71568988,0.0,30435795.79139173,0.0,47524524.76672755,0.0,10256.818454957753,10096.246048637797,10109.256092173877,12169.32356997693,345325490.82632687,0.0,63419881.67034747,0.0 - 11/24 20:00:00,38279109.10686019,0.0,48309333.79181502,0.0,16708858.487304202,0.0,30993718.983264068,0.0,7691.248755466738,7570.840821398867,7580.596622536899,9125.373055346981,249376033.68634165,0.0,63419881.67034747,69761869.8373822 - 11/24 21:00:00,41121545.56433764,0.0,51143010.32160015,0.0,19109196.48649931,0.0,34078822.768417309,0.0,5129.310459321772,5049.010147209169,5055.5163121256,6085.731062167927,222203019.87182246,0.0,49326574.63249246,69761869.8373822 - 11/24 22:00:00,43748781.44134209,0.0,53697145.54997869,0.0,21585890.225323265,0.0,37142134.223935369,0.0,5129.310459321772,5049.010147209169,5055.5163121256,6085.731062167927,232924396.17154748,0.0,35233267.594637479,69761869.8373822 - 11/24 23:00:00,45902397.25735686,0.0,55861853.92924416,0.0,23424885.01883594,0.0,39491422.75631388,0.0,5127.499170311159,5047.227214265913,5053.731081691266,6083.582036897987,241403901.17314963,0.0,35233267.594637479,62010550.96656194 - 11/24 24:00:00,49722183.86791961,0.0,59675638.72895573,0.0,26871273.289548603,0.0,43787859.11189695,0.0,5127.499170311159,5047.227214265913,5053.731081691266,6083.582036897987,256780297.20971967,0.0,35233267.594637479,46507913.22492146 - 11/25 01:00:00,58008658.559454727,0.0,67839203.82277638,0.0,34838883.19166793,0.0,53471339.84260164,0.0,2562.8263075072566,2522.7047835684554,2525.9555461692077,3040.695584762933,252505941.41572894,0.0,21139960.556782485,23253956.61246073 - 11/25 02:00:00,19061806.92097538,0.0,27012428.2146812,0.0,2081107.7617916479,0.0,10788357.682858106,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642173,78121098.83050493,0.0,14093307.03785499,0.0 - 11/25 03:00:00,43655962.372145619,0.0,52443101.37445423,0.0,21896605.105503616,0.0,38226121.90781607,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,175402626.31276924,0.0,14093307.03785499,0.0 - 11/25 04:00:00,45469063.047574128,0.0,53877781.13718402,0.0,25224958.754655575,0.0,40896227.9958049,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,184648866.48806829,0.0,14093307.03785499,0.0 - 11/25 05:00:00,45878218.82962149,0.0,53990770.47902472,0.0,26206297.427536884,0.0,41577220.78556016,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,186836747.39632914,0.0,14093307.03785499,0.0 - 11/25 06:00:00,46086975.99703604,0.0,53994150.98719321,0.0,26881076.62441277,0.0,41989825.666689317,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,188136269.1499172,0.0,14093307.03785499,0.0 - 11/25 07:00:00,42812464.51678086,0.0,50608001.88263961,0.0,23944648.286749305,0.0,38193717.47447388,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,232348938.97597567,0.0,14093307.03785499,15502637.741640486 - 11/25 08:00:00,55020929.930120009,0.0,63341573.560470428,0.0,35815513.47328257,0.0,52000167.02960791,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,513492487.3087755,0.0,56373228.15141996,38756594.35410121 - 11/25 09:00:00,55556156.76265384,0.0,65072416.451082129,0.0,36588250.30769459,0.0,53065071.62681569,0.0,17961.863908977062,17680.66757869962,17703.450923503002,21311.065881504175,479047269.0019081,0.0,56373228.15141996,38756594.35410121 - 11/25 10:00:00,62017671.36162947,0.0,71014204.59822186,0.0,44588003.75618834,0.0,63192600.514777619,0.0,12829.902792126473,12629.048270499732,12645.322088216431,15222.189915360126,432787747.26914718,0.0,28186614.07570998,0.0 - 11/25 11:00:00,63135847.923347938,0.0,71828101.95219764,0.0,44089743.70955348,0.0,62781594.88017032,0.0,10272.40316498836,10111.586777125553,10124.616588756084,12187.814233523293,395542403.2170852,0.0,28186614.07570998,0.0 - 11/25 12:00:00,57427806.87341792,0.0,66479217.97819844,0.0,41106069.68900064,0.0,58825155.888643,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,300740171.88763216,0.0,28186614.07570998,0.0 - 11/25 13:00:00,62175128.555889178,0.0,71935617.68945199,0.0,42358601.19956904,0.0,61804610.39046576,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,315199259.9728838,0.0,28186614.07570998,0.0 - 11/25 14:00:00,64898333.78013176,0.0,74890318.24482623,0.0,42820503.76788891,0.0,63079453.45911018,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,322702070.9935807,0.0,28186614.07570998,0.0 - 11/25 15:00:00,65374844.365941699,0.0,75259486.54042989,0.0,42627875.2075562,0.0,62924098.81609826,0.0,7723.423837393386,7602.512196415697,7612.308809353069,9163.547561854564,361752757.58808627,0.0,28186614.07570998,0.0 - 11/25 16:00:00,64366550.23931898,0.0,73690369.4228368,0.0,41992643.63415961,0.0,61618832.25102691,0.0,12872.37306232231,12670.85366069283,12687.18134892178,15272.579269757605,434279149.9774426,0.0,28186614.07570998,0.0 - 11/25 17:00:00,61271909.31117606,0.0,69944212.2795152,0.0,39771256.23197288,0.0,58250504.890912268,0.0,12872.37306232231,12670.85366069283,12687.18134892178,15272.579269757605,421848637.1436767,0.0,35233267.594637479,0.0 - 11/25 18:00:00,62927737.776160407,0.0,71470934.83674598,0.0,41597789.2066335,0.0,60342140.39265439,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,505993658.4143347,0.0,14093307.03785499,0.0 - 11/25 19:00:00,47811587.775506149,0.0,56328475.66666241,0.0,27094024.75108684,0.0,42588219.536718498,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,443405875.80191758,0.0,63419881.67034747,0.0 - 11/25 20:00:00,33497983.610895039,0.0,42257083.8113306,0.0,12999744.828007382,0.0,25567121.43327221,0.0,10293.776308516892,10132.625320104988,10145.682242045506,12213.172652456848,268348857.1667525,0.0,63419881.67034747,69761869.8373822 - 11/25 21:00:00,35807149.28012883,0.0,44522811.4084486,0.0,15218211.619386722,0.0,28303168.228475505,0.0,10292.366233117345,10131.23731969887,10144.292453059197,12211.499651821174,277857164.9041474,0.0,49326574.63249246,69761869.8373822 - 11/25 22:00:00,38235319.7176014,0.0,46913158.45486209,0.0,17622432.323899043,0.0,31256952.886207425,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,211030775.5664238,0.0,35233267.594637479,69761869.8373822 - 11/25 23:00:00,39579549.81793017,0.0,48310821.72055432,0.0,18684939.974044574,0.0,32697959.594815408,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,216327583.01309718,0.0,35233267.594637479,62010550.96656194 - 11/25 24:00:00,41999978.88912034,0.0,50727090.41361542,0.0,21083173.483536886,0.0,35641738.36162314,0.0,2576.1019054750056,2535.7725495734587,2539.040151324507,3056.4465749909379,187998481.40080584,0.0,35233267.594637479,46507913.22492146 - 11/26 01:00:00,48941630.6830273,0.0,57431469.450143348,0.0,28084325.588973296,0.0,44001772.92379492,0.0,2576.7211565019408,2536.382106110046,2539.650493336908,3057.1812926961317,217014964.82106097,0.0,21139960.556782485,23253956.61246073 - 11/26 02:00:00,10293342.299620197,0.0,17051386.853194979,0.0,0.0,0.0,3350952.688115928,0.0,1288.206897947171,1268.0397786450488,1269.6737773259625,1528.4083105339458,49971265.39295876,0.0,14093307.03785499,0.0 - 11/26 03:00:00,33713020.83192808,0.0,41295348.108349,0.0,10506361.12759801,0.0,26876965.07741682,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,131669578.23285297,0.0,14093307.03785499,0.0 - 11/26 04:00:00,34455500.54978141,0.0,41271232.89048056,0.0,17152066.57106593,0.0,29704076.81952987,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,141865257.2314354,0.0,14093307.03785499,0.0 - 11/26 05:00:00,35116086.369000088,0.0,41735241.075338248,0.0,18394212.89794658,0.0,30646180.850697295,0.0,1288.5119921743095,1268.340096565146,1269.9744822363526,1528.770293188283,145171869.90397296,0.0,14093307.03785499,0.0 - 11/26 06:00:00,35406539.16318697,0.0,41887014.76981361,0.0,19070456.710382016,0.0,31138768.12910067,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,146785159.17306087,0.0,14093307.03785499,0.0 - 11/26 07:00:00,32451244.298663249,0.0,38873919.487458948,0.0,16604087.623792341,0.0,27850901.92924253,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,192882487.5472677,0.0,14093307.03785499,15502637.741640486 - 11/26 08:00:00,45881735.37371279,0.0,52849358.476990979,0.0,29008055.277443246,0.0,43113836.900587279,0.0,20616.19187478895,20293.441545042337,20319.591715781644,24460.324691012527,479335365.4045859,0.0,56373228.15141996,38756594.35410121 - 11/26 09:00:00,45608743.03356455,0.0,53681979.036094117,0.0,32284948.264622876,0.0,44338338.56080553,0.0,18041.255935700818,17758.816708434446,17781.70075636801,21405.26149063194,445867334.5031738,0.0,56373228.15141996,38756594.35410121 - 11/26 10:00:00,53653894.84222008,0.0,62028781.68959175,0.0,37748978.969746727,0.0,53902608.61399205,0.0,12889.526212419403,12687.738275025238,12704.087720803132,15292.930827571816,400201683.0445012,0.0,28186614.07570998,0.0 - 11/26 11:00:00,44924633.128372739,0.0,59577234.446091409,0.0,36134832.13258871,0.0,51714031.02847354,0.0,10318.179982652095,10156.646950169103,10169.734826431797,12242.126680272757,346742809.1178191,0.0,28186614.07570998,0.0 - 11/26 12:00:00,32064057.658317854,0.0,56245211.58364938,0.0,34119457.68161171,0.0,48574607.98024371,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,248236515.2546436,0.0,28186614.07570998,0.0 - 11/26 13:00:00,0.0,514437.380908092,41191731.811099138,0.0,27347596.777608079,0.0,34850406.010113928,0.0,5169.7713615334209,5088.83762644872,5095.395113137258,6133.73637815446,180745600.324207,514437.380908092,28186614.07570998,0.0 - 11/26 14:00:00,0.0,16991722.359825337,32236238.45962323,0.0,20909120.234655829,0.0,27758452.371147269,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,158251276.02480028,16991722.359825337,28186614.07570998,0.0 - 11/26 15:00:00,0.0,13458526.221003244,29068529.93318602,0.0,16775993.357580936,0.0,24206438.79155716,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,185988076.7139858,13458526.221003244,28186614.07570998,0.0 - 11/26 16:00:00,0.0,0.0,38168662.18064575,0.0,20300775.49950581,0.0,31100880.602405318,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561035,282500609.31062319,0.0,28186614.07570998,0.0 - 11/26 17:00:00,35489575.73944624,0.0,54258074.33406024,0.0,29429515.73021417,0.0,43927211.05670877,0.0,12885.119921743091,12683.400965651457,12699.744822363522,15287.702931882828,355905863.9703367,0.0,35233267.594637479,0.0 - 11/26 18:00:00,41073353.82427078,0.0,58788511.853892039,0.0,33442583.751472117,0.0,48976831.124751839,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,451864848.62633046,0.0,14093307.03785499,0.0 - 11/26 19:00:00,29959807.026864847,0.0,46447385.62524919,0.0,20659519.308556029,0.0,33743968.337000939,0.0,18018.949252776256,17736.859240792382,17759.714994287733,21378.795462840386,400430228.52017936,0.0,63419881.67034747,0.0 - 11/26 20:00:00,18119331.96175261,0.0,33559050.74454234,0.0,7583741.6409317399,0.0,17942286.33896871,0.0,10292.366233117345,10131.23731969887,10144.292453059197,12211.499651821174,231210235.0539031,0.0,63419881.67034747,69761869.8373822 - 11/26 21:00:00,21963888.74392867,0.0,36600341.56942834,0.0,10213324.890985925,0.0,21357441.38413667,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,244182749.7724474,0.0,49326574.63249246,69761869.8373822 - 11/26 22:00:00,27825488.04122869,0.0,41918353.904814708,0.0,14510939.971550949,0.0,26975594.379475897,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,188096224.74647988,0.0,35233267.594637479,69761869.8373822 - 11/26 23:00:00,30564249.4652349,0.0,44099242.42430182,0.0,16254766.74441285,0.0,29263001.435539426,0.0,5144.746060404829,5064.204101077763,5070.729844954568,6104.044813639857,197162669.42176629,0.0,35233267.594637479,62010550.96656194 - 11/26 24:00:00,34464782.80057913,0.0,47371116.37208651,0.0,19436498.347902247,0.0,33150409.946368845,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,172891203.33723039,0.0,35233267.594637479,46507913.22492146 - 11/27 01:00:00,44104497.158135067,0.0,56446076.339717458,0.0,28188170.091555455,0.0,43809935.75613233,0.0,2568.10079124709,2527.896694281388,2531.154147189021,3046.9535583808235,210975458.03349424,0.0,21139960.556782485,23253956.61246073 - 11/27 02:00:00,8128761.514712786,0.0,17349647.552994759,0.0,0.0,0.0,3716066.1688194286,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,48407864.580503959,0.0,14093307.03785499,0.0 - 11/27 03:00:00,32721625.38248068,0.0,44031638.3657773,0.0,13951377.767587744,0.0,30006013.02790969,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,139901603.98872528,0.0,14093307.03785499,0.0 - 11/27 04:00:00,35178471.431223828,0.0,45353004.14150213,0.0,20290652.05097867,0.0,33786586.34705385,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,153818997.25308556,0.0,14093307.03785499,0.0 - 11/27 05:00:00,37623497.54000861,0.0,47519325.8121196,0.0,22526007.417744839,0.0,36232988.00658331,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,163082654.32930608,0.0,14093307.03785499,0.0 - 11/27 06:00:00,39191862.03839193,0.0,48762153.77459843,0.0,23896678.319701248,0.0,37691795.40182777,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,168733438.9794892,0.0,14093307.03785499,0.0 - 11/27 07:00:00,36464289.33297117,0.0,45682570.15776437,0.0,21234187.422596866,0.0,34207179.927621889,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,214378333.65628625,0.0,14093307.03785499,15502637.741640486 - 11/27 08:00:00,50874362.31613828,0.0,60550566.86176896,0.0,34506172.60317536,0.0,49900344.40513611,0.0,20517.24183728709,20196.040588836677,20222.0652485024,24342.92424867171,502833225.11009106,0.0,56373228.15141996,38756594.35410121 - 11/27 09:00:00,50865514.19308522,0.0,61406174.37827343,0.0,35699783.35789515,0.0,49265882.82110262,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,466137370.15123918,0.0,56373228.15141996,38756594.35410121 - 11/27 10:00:00,51567379.61536679,0.0,65244544.921660069,0.0,40676693.85038954,0.0,57835526.39197846,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,407722567.0857611,0.0,28186614.07570998,0.0 - 11/27 11:00:00,15717124.2757314,0.0,51581906.14264344,0.0,33572382.70082567,0.0,47890710.62118619,0.0,10306.884626007763,10145.528424440185,10158.601973347631,12228.725170784526,302985188.44087508,0.0,28186614.07570998,0.0 - 11/27 12:00:00,0.0,0.0,51469541.68110602,0.0,33146177.483258949,0.0,46743264.56869473,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,208488505.33537025,0.0,28186614.07570998,0.0 - 11/27 13:00:00,0.0,0.0,46630001.1254105,0.0,29576061.44385554,0.0,38845092.147361818,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,192342564.47106899,0.0,28186614.07570998,0.0 - 11/27 14:00:00,0.0,6821949.961944319,35386464.25940293,0.0,22731653.390564719,0.0,31095303.405168758,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,166498909.58506299,6821949.961944319,28186614.07570998,0.0 - 11/27 15:00:00,1575060.8796144019,0.0,40984398.10452753,0.0,24233163.582772469,0.0,35428064.43070757,0.0,7734.5697319960149,7613.483599959058,7623.294350669723,9176.77174033563,217953916.9202795,0.0,28186614.07570998,0.0 - 11/27 16:00:00,26350339.1642253,0.0,50092720.639410387,0.0,28091339.582525515,0.0,41908815.56345763,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,339267018.95539519,0.0,28186614.07570998,0.0 - 11/27 17:00:00,39161506.28520866,0.0,57932835.366826888,0.0,31806727.88414785,0.0,47333672.40029345,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,368967243.2010272,0.0,35233267.594637479,0.0 - 11/27 18:00:00,45384508.999748978,0.0,62601254.443338219,0.0,35627509.89611736,0.0,52278189.2572463,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,465475030.6683945,0.0,14093307.03785499,0.0 - 11/27 19:00:00,35050383.387309517,0.0,51201624.91662706,0.0,23238979.257342768,0.0,37650012.864979628,0.0,18009.141790466303,17727.20531613447,17750.048629562545,21367.15928318348,416613798.4959074,0.0,63419881.67034747,0.0 - 11/27 20:00:00,24206210.29536743,0.0,39533976.93555705,0.0,10895479.792094775,0.0,22948189.476526567,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,251387699.41629014,0.0,63419881.67034747,69761869.8373822 - 11/27 21:00:00,28938988.34156852,0.0,43402001.13454609,0.0,14322488.780012379,0.0,27295990.97512632,0.0,10274.046014931173,10113.203907946036,10126.235803414687,12189.763412269001,267691166.13007254,0.0,49326574.63249246,69761869.8373822 - 11/27 22:00:00,33216638.41082119,0.0,46955904.78020333,0.0,17434949.506649998,0.0,31248317.42554354,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,205721658.57262767,0.0,35233267.594637479,69761869.8373822 - 11/27 23:00:00,36102104.31934256,0.0,49327352.28484775,0.0,19370868.083630817,0.0,33757822.97739228,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,215411705.0411213,0.0,35233267.594637479,62010550.96656194 - 11/27 24:00:00,40868495.88339144,0.0,53738306.71949056,0.0,23172573.883867064,0.0,38579773.77569513,0.0,2567.2660201184114,2527.074991650455,2530.3313857103787,3045.9631343018188,194773438.17685605,0.0,35233267.594637479,46507913.22492146 - 11/28 01:00:00,50222260.986497018,0.0,62699338.49275389,0.0,31595250.628560477,0.0,48938280.26645136,0.0,2565.9805584252947,2525.809654099947,2529.064417643286,3044.4379830720256,231850183.78192876,0.0,21139960.556782485,23253956.61246073 - 11/28 02:00:00,12665388.151578606,0.0,23403925.288018519,0.0,222696.62047567548,0.0,7696739.303116284,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,63186276.06702208,0.0,14093307.03785499,0.0 - 11/28 03:00:00,38341588.05545436,0.0,49121947.47723534,0.0,18723683.722356075,0.0,35191562.72757153,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,160563021.8572032,0.0,14093307.03785499,0.0 - 11/28 04:00:00,41035162.55950239,0.0,50992937.368095029,0.0,23582786.341017639,0.0,38325525.24571669,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,173120651.38891763,0.0,14093307.03785499,0.0 - 11/28 05:00:00,42340763.56379269,0.0,51956040.80365176,0.0,25015141.12405005,0.0,39721802.215805988,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,178214583.2601502,0.0,14093307.03785499,0.0 - 11/28 06:00:00,38376362.723363678,0.0,47135029.4022563,0.0,22251239.77004087,0.0,35474024.64677592,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,162514539.6299978,0.0,14093307.03785499,0.0 - 11/28 07:00:00,35758212.402807388,0.0,44250006.4727585,0.0,19833604.04478071,0.0,32288513.41165799,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,209008342.56388293,0.0,14093307.03785499,15502637.741640486 - 11/28 08:00:00,33230536.63900493,0.0,48838170.98574694,0.0,25576908.488236663,0.0,38455582.04494193,0.0,20676.839719109037,20353.13993604575,20379.36703425515,24532.28104322777,455491057.9954262,0.0,56373228.15141996,38756594.35410121 - 11/28 09:00:00,13893172.540533625,0.0,39063163.99952512,0.0,19375655.926230428,0.0,30221967.83158382,0.0,18108.155843164488,17824.669285366614,17847.63819106698,21484.635677111117,373508316.6860261,0.0,56373228.15141996,38756594.35410121 - 11/28 10:00:00,0.0,7771240.702360788,27503934.509506834,0.0,14696155.727047814,0.0,22990525.685962168,0.0,12929.467975608171,12727.054742460157,12743.454851519291,15340.320204924456,258655687.91076029,7771240.702360788,28186614.07570998,0.0 - 11/28 11:00:00,0.0,27755694.34860822,21511408.18278418,0.0,11808284.257114632,0.0,18752681.78234782,0.0,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,206651860.87994997,27755694.34860822,28186614.07570998,0.0 - 11/28 12:00:00,0.0,36501107.57438896,18699844.034118166,0.0,10630187.559252037,0.0,16139489.824512752,0.0,5165.352334369118,5084.487779979044,5091.039661446425,6128.493371108651,122759264.7467346,36501107.57438896,28186614.07570998,0.0 - 11/28 13:00:00,0.0,34934524.67455437,14414701.774387148,0.0,8465753.363767717,0.0,10108498.24040885,0.0,5165.352334369118,5084.487779979044,5091.039661446425,6128.493371108651,110278696.70741537,34934524.67455437,28186614.07570998,0.0 - 11/28 14:00:00,0.0,29727713.54447586,8971766.160280278,0.0,5287186.0948720569,0.0,7187244.26137288,0.0,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,98787978.34786876,29727713.54447586,28186614.07570998,0.0 - 11/28 15:00:00,0.0,18320852.28925653,8110301.600759176,0.0,3163330.2910055827,0.0,5897003.870618504,0.0,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,133146860.0432744,18320852.28925653,28186614.07570998,0.0 - 11/28 16:00:00,0.0,3717694.36354767,11986384.291404803,0.0,3705924.5714031888,0.0,7784452.13418988,0.0,12916.230548450674,12714.02454969425,12730.40786802004,15324.614502905742,216743759.8856524,3717694.36354767,28186614.07570998,0.0 - 11/28 17:00:00,0.0,0.0,21519337.380127878,0.0,8394407.557421718,0.0,14796772.2954358,0.0,12923.538049279316,12721.217650234206,12737.610237604225,15333.284573694473,238086859.07190944,0.0,35233267.594637479,0.0 - 11/28 18:00:00,12748247.09755307,0.0,24873352.84838837,0.0,11406407.152270724,0.0,18497968.36167553,0.0,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,338237774.2776237,0.0,14093307.03785499,0.0 - 11/28 19:00:00,2215644.1012476219,0.0,12324473.178556268,0.0,0.0,0.0,3150916.943745923,0.0,18096.66170153254,17813.355086666143,17836.309412866667,21470.998316823174,288473402.48794856,0.0,63419881.67034747,0.0 - 11/28 20:00:00,0.0,0.0,16217.959781733223,0.0,0.0,1559050.4369319087,0.0,0.0,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154717291.43092094,1559050.4369319087,63419881.67034747,69761869.8373822 - 11/28 21:00:00,0.0,0.0,297666.36309044269,0.0,0.0,5376277.014153443,0.0,0.0,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,154981230.02577753,5376277.014153443,49326574.63249246,69761869.8373822 - 11/28 22:00:00,0.0,0.0,3539343.1823986985,0.0,0.0,2621557.3614087777,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,80889879.9179683,2621557.3614087777,35233267.594637479,69761869.8373822 - 11/28 23:00:00,0.0,0.0,9504373.39432896,0.0,0.0,123579.23930109883,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,86893191.3504164,123579.23930109883,35233267.594637479,62010550.96656194 - 11/28 24:00:00,10263221.385234122,0.0,18374936.504677394,0.0,0.0,0.0,1407851.7371174007,0.0,2586.8794061663559,2546.3813264809457,2549.6625987238546,3069.233668158732,68753774.8253365,0.0,35233267.594637479,46507913.22492146 - 11/29 01:00:00,20147707.93775944,0.0,26942704.54380262,0.0,4541957.973492723,0.0,15897565.87045062,0.0,2586.8734619270978,2546.3754752998618,2549.6567400029268,3069.226615545758,106237612.57949773,0.0,21139960.556782485,23253956.61246073 - 11/29 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19353838.12699616,0.0,14093307.03785499,0.0 - 11/29 03:00:00,2720824.3169768329,0.0,10909054.646249386,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,32983731.836483115,0.0,14093307.03785499,0.0 - 11/29 04:00:00,11501553.322877951,0.0,16441839.566229746,0.0,0.0,0.0,4217421.330538005,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,51513998.86504135,0.0,14093307.03785499,0.0 - 11/29 05:00:00,14772840.218981173,0.0,19520976.042690465,0.0,1681580.3400070372,0.0,10342676.253195223,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,65667872.99024239,0.0,14093307.03785499,0.0 - 11/29 06:00:00,18105822.913974,0.0,22969992.881922436,0.0,5682223.798203256,0.0,14006041.727889838,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,80108520.07685994,0.0,14093307.03785499,0.0 - 11/29 07:00:00,17998778.477313799,0.0,23107351.051438545,0.0,5464755.165665943,0.0,13432616.879648367,0.0,5169.7713615334209,5088.837626448721,5095.395113137258,6133.73637815446,137359367.29945255,0.0,14093307.03785499,15502637.741640486 - 11/29 08:00:00,35534873.895948838,0.0,41160388.490874,0.0,20922536.005518557,0.0,32061659.469624245,0.0,20677.981021726853,20354.263371358174,20380.491917228643,24533.635155217613,439086395.1378783,0.0,56373228.15141996,38756594.35410121 - 11/29 09:00:00,46397757.49109392,0.0,53008912.114909019,0.0,30622684.656658714,0.0,44710800.7711737,0.0,18095.13385901582,17811.85116280904,17834.803551050172,21469.18558999842,445499662.0201797,0.0,56373228.15141996,38756594.35410121 - 11/29 10:00:00,44721574.71365948,0.0,51084941.22800654,0.0,29789015.11967656,0.0,43316257.606877978,0.0,12929.602571636953,12727.187231363,12743.587511147607,15340.47989797476,362378874.6318609,0.0,28186614.07570998,0.0 - 11/29 11:00:00,43069845.96927128,0.0,49425109.41585375,0.0,28253807.05877518,0.0,41509745.64186385,0.0,10344.729267844885,10182.780601349436,10195.902153489082,12273.626393705483,317047846.3847641,0.0,28186614.07570998,0.0 - 11/29 12:00:00,36321103.40776108,0.0,42071825.97280447,0.0,24486651.873868508,0.0,35998875.53440726,0.0,5173.508727977128,5092.516483723547,5099.078710995175,6138.170620775871,216290245.1453395,0.0,28186614.07570998,0.0 - 11/29 13:00:00,34491393.50183697,0.0,40043684.171376507,0.0,22707827.461481934,0.0,33786587.96962987,0.0,5173.757498318326,5092.761359518646,5099.32390233773,6138.465777289554,208445003.8391966,0.0,28186614.07570998,0.0 - 11/29 14:00:00,35423994.09612304,0.0,41154575.06562027,0.0,22476327.926396558,0.0,33829029.24279015,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,210299278.83891467,0.0,28186614.07570998,0.0 - 11/29 15:00:00,40125028.81170956,0.0,46329956.85153421,0.0,25570463.557255366,0.0,38199155.228140328,0.0,7755.443856854889,7634.030936499203,7643.868164550223,9201.538092666355,266270176.23069389,0.0,28186614.07570998,0.0 - 11/29 16:00:00,46133674.96359733,0.0,53043971.40933319,0.0,29371881.345209056,0.0,43675741.483309868,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.02392617774,365522654.6296638,0.0,28186614.07570998,0.0 - 11/29 17:00:00,49801435.35332538,0.0,57382125.1901063,0.0,31266592.52837465,0.0,46766517.51264827,0.0,12902.735012547228,12700.740288922962,12717.10648912285,15308.60256471258,378281734.2635548,0.0,35233267.594637479,0.0 - 11/29 18:00:00,56622937.19436574,0.0,64793069.760443139,0.0,36461404.601660858,0.0,53801498.866511669,0.0,18045.336697387163,17762.833585035332,17785.722809124385,21410.10315860054,481693296.9235122,0.0,14093307.03785499,0.0 - 11/29 19:00:00,45918751.517418328,0.0,54870429.66641901,0.0,24627974.51567757,0.0,40196423.64185623,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,435471749.0697583,0.0,63419881.67034747,0.0 - 11/29 20:00:00,34202455.321491349,0.0,43830529.75727223,0.0,12113017.996316344,0.0,25597747.202915558,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,269891603.8386003,0.0,63419881.67034747,69761869.8373822 - 11/29 21:00:00,38964704.06528358,0.0,48932802.94764431,0.0,15810594.643784667,0.0,30604232.728298606,0.0,10296.542430157862,10135.348137595649,10148.40856816442,12216.454550194507,288380647.65501597,0.0,49326574.63249246,69761869.8373822 - 11/29 22:00:00,44535024.553462188,0.0,54866198.55835894,0.0,20235591.61208923,0.0,36522611.99548598,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,233107574.09131635,0.0,35233267.594637479,69761869.8373822 - 11/29 23:00:00,47875137.52353066,0.0,58463537.2248276,0.0,22808700.23043143,0.0,40009884.62614265,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,246116628.52747888,0.0,35233267.594637479,62010550.96656194 - 11/29 24:00:00,49296021.44603448,0.0,59334229.34141001,0.0,24904821.254684774,0.0,42035224.03909628,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,214082234.37721754,0.0,35233267.594637479,46507913.22492146 - 11/30 01:00:00,54923540.75409758,0.0,64106176.41041952,0.0,31499977.747279534,0.0,49267075.66875603,0.0,2573.444077129223,2533.156330026247,2536.4205605113768,3053.293163114212,238303501.45136453,0.0,21139960.556782485,23253956.61246073 - 11/30 02:00:00,15144241.176349074,0.0,23141452.04115423,0.0,0.0,0.0,6919881.290054653,0.0,1286.8960473311816,1266.7494496399918,1268.3817856002809,1526.8530363163184,64461543.65555394,0.0,14093307.03785499,0.0 - 11/30 03:00:00,38503975.74663861,0.0,46472017.052844468,0.0,15982284.789030575,0.0,32352787.0426312,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,152572140.07415486,0.0,14093307.03785499,0.0 - 11/30 04:00:00,39437243.69959496,0.0,46818023.91479157,0.0,20328569.155144857,0.0,34238798.952459458,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,160083711.1650009,0.0,14093307.03785499,0.0 - 11/30 05:00:00,39870105.66073097,0.0,47032023.500112999,0.0,21382380.480604538,0.0,35029755.130509469,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,162572803.93070857,0.0,14093307.03785499,0.0 - 11/30 06:00:00,40881122.35495024,0.0,47961657.02690987,0.0,22650461.50710569,0.0,36275029.71199152,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,167013622.93902666,0.0,14093307.03785499,0.0 - 11/30 07:00:00,38366424.200681697,0.0,45454251.18387855,0.0,20362748.254400433,0.0,33310111.61459742,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,156738887.59162743,0.0,14093307.03785499,15502637.741640486 - 11/30 08:00:00,47926191.74935476,0.0,57445913.29651681,0.0,31461575.900958055,0.0,46165691.10638995,0.0,5148.271215078931,5067.674068797824,5074.20428408221,6108.227275097253,260033528.68822197,0.0,56373228.15141996,38756594.35410121 - 11/30 09:00:00,31559058.72519699,0.0,49381307.84052112,0.0,27037955.62857671,0.0,39077959.37218925,0.0,12888.080150899914,12686.3148518686,12702.662463420469,15291.2151307785,339902062.91556707,0.0,56373228.15141996,38756594.35410121 - 11/30 10:00:00,16016639.39469963,0.0,50204665.31518124,0.0,29114989.310673927,0.0,42803582.2965316,0.0,12900.275642831568,12698.319421098995,12714.682501763602,15305.684616424864,331168140.1727148,0.0,28186614.07570998,0.0 - 11/30 11:00:00,0.0,0.0,44708603.69686629,0.0,26764675.96948131,0.0,39589702.99130379,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,304230235.61988827,0.0,28186614.07570998,0.0 - 11/30 12:00:00,0.0,7537986.753928833,44933822.83849867,0.0,26816507.23060795,0.0,38890948.32640901,0.0,7750.956787118952,7629.6141126770439,7639.445649199753,9196.214355706647,226619709.65244425,7537986.753928833,28186614.07570998,0.0 - 11/30 13:00:00,0.0,414575.2681551706,42517899.01742864,0.0,25151461.105679599,0.0,34419777.56008311,0.0,7748.775365836511,7627.466841951723,7637.295611496935,9193.626182625,218034928.09006793,414575.2681551706,28186614.07570998,0.0 - 11/30 14:00:00,0.0,0.0,40598770.38530376,0.0,22931140.5772043,0.0,33311932.51196219,0.0,7750.432115744777,7629.097655131109,7638.928526145556,9195.591853149124,212812424.01508434,0.0,28186614.07570998,0.0 - 11/30 15:00:00,2950830.6383637387,0.0,38576311.46315837,0.0,20415705.474759956,0.0,30846971.25652791,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,208726933.46447168,0.0,28186614.07570998,0.0 - 11/30 16:00:00,18443869.990735856,0.0,44314013.924116689,0.0,22686836.59320485,0.0,35030515.98996984,0.0,18067.144190297888,17784.299677576353,17807.216562916645,21435.976916495933,390815930.9482597,0.0,28186614.07570998,0.0 - 11/30 17:00:00,36486177.26979892,0.0,53993091.784789208,0.0,28524142.968292186,0.0,43080945.473996687,0.0,23179.180924936194,22816.306523484385,22845.707663251887,27501.21336370553,508917028.0082378,0.0,35233267.594637479,0.0 - 11/30 18:00:00,40530869.007380548,0.0,56349404.530211,0.0,31070126.074970738,0.0,46048963.60120329,0.0,18047.329374657365,17764.795066571136,17787.68681822935,21412.467394116466,444043566.3666332,0.0,14093307.03785499,0.0 - 11/30 19:00:00,27300934.056268313,0.0,41915700.771695319,0.0,17585756.17976957,0.0,29516186.52813576,0.0,18067.144190297888,17784.299677576353,17807.216562916645,21435.976916495933,386659271.9861015,0.0,63419881.67034747,0.0 - 11/30 20:00:00,14273003.921121715,0.0,28313078.228685809,0.0,3898890.9302448618,0.0,13042141.847701833,0.0,15477.269973978142,15234.97042525365,15254.602239647698,18363.19002040914,291115232.5011933,0.0,63419881.67034747,69761869.8373822 - 11/30 21:00:00,18694570.25993286,0.0,32199896.897617356,0.0,7232176.735720659,0.0,17305197.632231665,0.0,12889.526212419403,12687.738275025238,12704.087720803132,15292.930827571816,268299260.45445306,0.0,49326574.63249246,69761869.8373822 - 11/30 22:00:00,23654446.722022095,0.0,36616184.9775195,0.0,11096568.594392572,0.0,22185590.474018374,0.0,10300.55634196066,10139.299210860381,10152.364732790329,12221.216903328093,247681164.6481346,0.0,35233267.594637479,69761869.8373822 - 11/30 23:00:00,29568290.164955189,0.0,42496644.98161153,0.0,15296252.766365037,0.0,27888170.974645966,0.0,7707.958688527978,7587.289157340798,7597.066153838538,9145.198753066783,230584404.79756446,0.0,35233267.594637479,62010550.96656194 - 11/30 24:00:00,38361252.6668203,0.0,51425194.92144975,0.0,22299307.970153888,0.0,37015744.09472828,0.0,5117.915168652622,5037.793251941234,5044.284962743228,6072.2109847739679,225681435.37835203,0.0,35233267.594637479,46507913.22492146 - 12/01 01:00:00,52749480.52599158,0.0,65722202.45509322,0.0,34785031.64626927,0.0,52670594.114224519,0.0,2543.2356892843197,2503.4208601284246,2506.6467734255554,3017.4520640612897,243982028.13441713,0.0,21139960.556782485,23253956.61246073 - 12/01 02:00:00,22181396.64917215,0.0,33294512.53410268,0.0,7032867.537163052,0.0,16330111.17162985,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106244,97734898.3380402,0.0,14093307.03785499,0.0 - 12/01 03:00:00,52976756.17851361,0.0,65288517.96628524,0.0,33500971.835088634,0.0,52005171.37819876,0.0,1255.9585575200095,1236.2962920031965,1237.8893859615817,1490.1468856119512,222564465.3940345,0.0,14093307.03785499,0.0 - 12/01 04:00:00,59010563.16200666,0.0,71134052.78202215,0.0,38294179.07000452,0.0,57932060.28132158,0.0,1252.2790726025613,1232.674410108538,1234.2628369024242,1485.7813172119725,245108846.78792668,0.0,14093307.03785499,0.0 - 12/01 05:00:00,62861557.71277538,0.0,75006316.8920139,0.0,41242245.31365024,0.0,61637384.27264702,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,259479233.84024666,0.0,14093307.03785499,0.0 - 12/01 06:00:00,65150015.84235496,0.0,77181320.25509231,0.0,43010585.78560921,0.0,63793601.445665638,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,267867252.97788225,0.0,14093307.03785499,0.0 - 12/01 07:00:00,62338634.05314172,0.0,74189736.00828415,0.0,40058121.298517618,0.0,60125650.84326041,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,255511162.10702683,0.0,14093307.03785499,15502637.741640486 - 12/01 08:00:00,63799623.0826091,0.0,77981803.0441266,0.0,41400185.48617425,0.0,62030964.60022165,0.0,1257.5432105268058,1237.8561369715547,1239.4512409493919,1492.0270159145908,264029335.58883608,0.0,56373228.15141996,38756594.35410121 - 12/01 09:00:00,65066729.69920926,0.0,83847718.10412818,0.0,47939720.87925376,0.0,69841413.6699462,0.0,5057.122241332643,4977.9520492393589,4984.366648543805,6000.082497117512,342365866.72297736,0.0,56373228.15141996,38756594.35410121 - 12/01 10:00:00,64577973.258497897,0.0,86045159.18398401,0.0,53794790.324719849,0.0,76328240.99640849,0.0,7592.039349283027,7473.184556976459,7482.814518050215,9007.66488196586,394346695.6662023,0.0,28186614.07570998,0.0 - 12/01 11:00:00,54758746.033203948,0.0,80040185.61400718,0.0,50760800.097824309,0.0,72287788.42719376,0.0,7602.386937125704,7483.370151401118,7493.013237652912,9019.941899949485,371602884.1862943,0.0,28186614.07570998,0.0 - 12/01 12:00:00,48527532.20434259,0.0,74830612.97391409,0.0,47803252.628782089,0.0,67923757.85129637,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,315157162.3747301,0.0,28186614.07570998,0.0 - 12/01 13:00:00,50051737.36202106,0.0,74776720.19609474,0.0,46732734.016186017,0.0,66168959.28190634,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,313802157.5726031,0.0,28186614.07570998,0.0 - 12/01 14:00:00,40823789.77044413,0.0,69831056.47257228,0.0,43358137.34129614,0.0,61774791.55862504,0.0,7635.2409182466449,7515.709797318706,7525.394556505104,9058.921894435922,330034736.9423605,0.0,28186614.07570998,0.0 - 12/01 15:00:00,21941334.728291423,0.0,63313883.6958949,0.0,37577840.11485511,0.0,54610472.61493129,0.0,10196.944492329812,10037.309424064273,10050.243521744054,12098.28539884854,330021549.3671248,0.0,28186614.07570998,0.0 - 12/01 16:00:00,51069625.355097319,0.0,75032984.449311,0.0,42795514.87701886,0.0,63227278.05372067,0.0,12728.43363925855,12529.167636149006,12545.312747473741,15101.800638798022,422582375.5171934,0.0,28186614.07570998,0.0 - 12/01 17:00:00,62312286.194721769,0.0,79583195.98099177,0.0,44302434.657030988,0.0,65725982.55133295,0.0,15328.858121831077,15088.881988338151,15108.325552870296,18187.105023065324,481291313.8540549,0.0,35233267.594637479,0.0 - 12/01 18:00:00,66890892.1080525,0.0,83182397.11250293,0.0,47297867.31251756,0.0,69544157.76926212,0.0,17844.652861577168,17565.291492112476,17587.926163052096,21171.999447984945,533926846.17535117,0.0,14093307.03785499,0.0 - 12/01 19:00:00,56622369.13621413,0.0,72168711.79991099,0.0,36183353.97399414,0.0,56125848.20223516,0.0,10201.540650018951,10041.833628047378,10054.773555625767,12103.738564500582,373747074.14584806,0.0,63419881.67034747,0.0 - 12/01 20:00:00,44009187.87715502,0.0,59088093.927149329,0.0,22523858.513755196,0.0,39809363.54697556,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,279941098.877331,0.0,63419881.67034747,69761869.8373822 - 12/01 21:00:00,47880660.32267082,0.0,62398889.24147926,0.0,25188472.10041064,0.0,43273902.95776891,0.0,5104.153215292681,5024.246744528433,5030.720999272961,6055.882952438452,255115938.7038467,0.0,49326574.63249246,69761869.8373822 - 12/01 22:00:00,50604984.949900198,0.0,64450075.65123686,0.0,27325616.671361209,0.0,45853769.92621641,0.0,5110.686712121091,5030.677958245172,5037.160500264995,6063.634697026455,264706222.72228245,0.0,35233267.594637479,69761869.8373822 - 12/01 23:00:00,51810883.96104497,0.0,65065310.49753513,0.0,28411770.101677937,0.0,47003868.601557027,0.0,5110.686712121091,5030.677958245172,5037.160500264995,6063.634697026455,268763608.68538287,0.0,35233267.594637479,62010550.96656194 - 12/01 24:00:00,64152135.52047761,0.0,77959599.39486367,0.0,38239981.86930561,0.0,59919598.04957489,0.0,5037.918635675542,4959.049079611248,4965.439320509944,5977.298152052055,315654253.5104774,0.0,35233267.594637479,46507913.22492146 - 12/02 01:00:00,78086751.6701993,0.0,92357542.78671888,0.0,50100632.969658378,0.0,75093317.54695565,0.0,2521.9860669721167,2482.5039046176327,2485.702864282638,2992.240198335812,333375003.8966817,0.0,21139960.556782485,23253956.61246073 - 12/02 02:00:00,36569237.08863614,0.0,49546196.084088239,0.0,14873184.616397623,0.0,30132711.258948797,0.0,1261.3663766959397,1241.6194507610997,1243.2194041528679,1496.5630566350436,149995294.88575263,0.0,14093307.03785499,0.0 - 12/02 03:00:00,62774419.96120339,0.0,74982179.92579293,0.0,37840830.94304299,0.0,58933605.122562337,0.0,1263.2029112816309,1243.4272340552466,1245.029516960306,1498.7420348161314,253432482.06220953,0.0,14093307.03785499,0.0 - 12/02 04:00:00,64763179.519232708,0.0,76498159.63624303,0.0,39896805.995889607,0.0,61251645.200270887,0.0,1262.1070374541378,1242.3485163369583,1243.9494092041353,1497.4418223518865,261294838.77888585,0.0,14093307.03785499,0.0 - 12/02 05:00:00,67824123.71568887,0.0,79501797.11575459,0.0,42115412.59214394,0.0,63966209.9727253,0.0,1262.47434789568,1242.7100764650166,1244.311435239322,1497.8776221696747,272298087.9306837,0.0,14093307.03785499,0.0 - 12/02 06:00:00,72505595.54005698,0.0,84313491.62837658,0.0,45755645.38383666,0.0,68600889.86445263,0.0,1254.7495220157453,1235.1061841752967,1236.6977445582739,1488.712411137864,289950579.5195167,0.0,14093307.03785499,0.0 - 12/02 07:00:00,69257829.73334095,0.0,80999140.33767042,0.0,42556774.582439187,0.0,64556804.894940648,0.0,5054.2566289413639,4975.131298544645,4981.542263023914,5996.68255740241,332997955.44087556,0.0,14093307.03785499,15502637.741640486 - 12/02 08:00:00,61828086.49196854,0.0,82051563.14190027,0.0,41053342.40818817,0.0,63396391.07041231,0.0,20199.58956633088,19883.361223440264,19908.982963829152,23966.041954714794,550578095.6624036,0.0,56373228.15141996,38756594.35410121 - 12/02 09:00:00,39575529.60290095,0.0,84935968.41523847,0.0,44878635.49927452,0.0,68415586.20254725,0.0,17653.902468804816,17377.52733232342,17399.920049978464,20945.681388350684,501963032.1820078,0.0,56373228.15141996,38756594.35410121 - 12/02 10:00:00,21215633.348793936,0.0,88158937.16630228,0.0,52888565.754964698,0.0,77123739.71817944,0.0,12624.7434789568,12427.10076465016,12443.114352393219,14978.776221696746,428292321.33194926,0.0,28186614.07570998,0.0 - 12/02 11:00:00,5793485.64445478,0.0,89210723.87586256,0.0,55119546.065554138,0.0,79808381.00676784,0.0,10108.513257882727,9950.26259708929,9963.084526047827,11993.36511480482,381186948.3776081,0.0,28186614.07570998,0.0 - 12/02 12:00:00,208485.4447739257,0.0,91508184.74463509,0.0,57177705.17589259,0.0,81226638.1913544,0.0,5055.693498939079,4976.5456740744989,4982.958461121,5998.387348806,305769919.495242,0.0,28186614.07570998,0.0 - 12/02 13:00:00,0.0,0.0,87817099.11875274,0.0,55649983.31601505,0.0,74266597.46881074,0.0,5055.693498939079,4976.5456740744989,4982.958461121,5998.387348806,293382585.84216466,0.0,28186614.07570998,0.0 - 12/02 14:00:00,6991252.7292288769,0.0,83662420.03979397,0.0,51680201.16095947,0.0,71647349.551265,0.0,5057.122241332642,4977.9520492393589,4984.366648543805,6000.082497117512,289651507.85168728,0.0,28186614.07570998,0.0 - 12/02 15:00:00,17851428.125838885,0.0,81352288.82770172,0.0,48073981.30470936,0.0,69410518.56017158,0.0,7574.84608737408,7456.260458790095,7465.868611435932,8987.265733018048,330031484.0246469,0.0,28186614.07570998,0.0 - 12/02 16:00:00,45021122.06588682,0.0,90642125.2521596,0.0,52160191.6803386,0.0,76871844.13355717,0.0,12559.585575200095,12362.962920031961,12378.893859615817,14901.46885611951,452625763.4914248,0.0,28186614.07570998,0.0 - 12/02 17:00:00,82730117.36249012,0.0,112293522.01827176,0.0,65298834.74184011,0.0,94918267.95009361,0.0,12440.041671068475,12245.290498020417,12261.069804677934,14759.6345771387,541382473.6559554,0.0,35233267.594637479,0.0 - 12/02 18:00:00,92762545.56499015,0.0,120069393.87417034,0.0,71115102.10758928,0.0,102575507.64963874,0.0,17416.058339495863,17143.40669722858,17165.497726549107,20663.48840799418,647120973.4129523,0.0,14093307.03785499,0.0 - 12/02 19:00:00,85090190.17777586,0.0,110897391.05732925,0.0,60242461.149229738,0.0,90015679.91631203,0.0,17318.008179491877,17046.891530770696,17068.858190448143,20547.155635954154,605377011.0326405,0.0,63419881.67034747,0.0 - 12/02 20:00:00,76914556.87144807,0.0,101532610.72765327,0.0,49371244.10915999,0.0,77337794.17084532,0.0,9856.871225878642,9702.560068040002,9715.062807007389,11694.80144959887,452645669.8609963,0.0,63419881.67034747,69761869.8373822 - 12/02 21:00:00,84288268.55130619,0.0,107455060.29297748,0.0,54718594.89310721,0.0,83917112.56674144,0.0,9799.77264777603,9646.355378829316,9658.78569231796,11627.056166266842,477014127.89081689,0.0,49326574.63249246,69761869.8373822 - 12/02 22:00:00,89582931.47163916,0.0,111798783.51322383,0.0,58431002.08259471,0.0,88623049.77592668,0.0,4912.284078541867,4835.381354906604,4841.612237319516,5828.237545778826,421938821.6229529,0.0,35233267.594637479,69761869.8373822 - 12/02 23:00:00,94836027.47365849,0.0,116298549.62976769,0.0,62423770.840871158,0.0,93576156.6075052,0.0,4865.67023073394,4789.497255581916,4795.669011649555,5772.931994714682,439940071.12545087,0.0,35233267.594637479,62010550.96656194 - 12/02 24:00:00,98754764.43093486,0.0,119491478.19661144,0.0,65876566.14192812,0.0,97644559.13973725,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,418363310.05746188,0.0,35233267.594637479,46507913.22492146 - 12/03 01:00:00,114442004.7834113,0.0,135286538.74715299,0.0,78872895.85444099,0.0,114272207.24257441,0.0,2398.6175296594899,2361.066724771012,2364.1092002349498,2845.8681380809618,478764428.36146679,0.0,21139960.556782485,23253956.61246073 - 12/03 02:00:00,72628442.95589225,0.0,91734542.89062295,0.0,41039842.033428598,0.0,66728399.09528056,0.0,1214.2151789702576,1195.2064138318602,1196.746559288265,1440.61996040539,290299664.18020918,0.0,14093307.03785499,0.0 - 12/03 03:00:00,100510422.11203642,0.0,119398319.48550162,0.0,66074845.56066805,0.0,98658050.87254262,0.0,1212.5470496072624,1193.5643993452323,1195.102428898374,1438.6407885926088,402785114.8299453,0.0,14093307.03785499,0.0 - 12/03 04:00:00,104702265.34853634,0.0,123495417.55795823,0.0,69777434.30856231,0.0,102990099.39363536,0.0,1210.3013572299718,1191.3538637010416,1192.889044753381,1435.9763603103016,419075090.8622731,0.0,14093307.03785499,0.0 - 12/03 05:00:00,107236527.52847666,0.0,125585413.26703945,0.0,71954837.65532953,0.0,105359262.51722026,0.0,1209.1693851286887,1190.2396128341734,1191.7733580605419,1434.633318622161,428228977.3967899,0.0,14093307.03785499,0.0 - 12/03 06:00:00,109021043.1745978,0.0,127019995.24619843,0.0,73405086.95031531,0.0,106961144.52569878,0.0,1209.1693851286887,1190.2396128341734,1191.7733580605419,1434.633318622161,434500206.3255343,0.0,14093307.03785499,0.0 - 12/03 07:00:00,107638054.76862666,0.0,125581264.43582434,0.0,71576674.29730831,0.0,104817201.22536394,0.0,4832.125547742973,4756.477720860927,4762.606927887844,5733.132508825171,481916828.4662641,0.0,14093307.03785499,15502637.741640486 - 12/03 08:00:00,106145065.89813183,0.0,131314826.56161465,0.0,73807786.55097881,0.0,108386655.15833463,0.0,19291.79979540569,18989.783070726917,19014.25334446041,22888.98404397795,708319687.0855155,0.0,56373228.15141996,38756594.35410121 - 12/03 09:00:00,90642008.76781851,0.0,132758717.7313632,0.0,77299714.89114398,0.0,112128483.51918337,0.0,17067.890428109953,16800.689419446076,16822.338822573758,20250.400471521036,668217673.819452,0.0,56373228.15141996,38756594.35410121 - 12/03 10:00:00,88635912.6435841,0.0,134415573.09706194,0.0,83391530.10749519,0.0,118753062.55851519,0.0,12239.251164436575,12047.64340422727,12063.168022431017,14521.404305664792,608333359.2349912,0.0,28186614.07570998,0.0 - 12/03 11:00:00,92537113.88617304,0.0,133892948.71625343,0.0,83670132.10108762,0.0,119227887.78107912,0.0,9791.40093154926,9638.114723381817,9650.534417944813,11617.123444531833,575837907.1472612,0.0,28186614.07570998,0.0 - 12/03 12:00:00,89937322.42145399,0.0,132301736.35126549,0.0,82705456.50817226,0.0,117802405.45860581,0.0,4906.115316706356,4829.30916618841,4835.532223966383,5820.918545337108,496157671.64741119,0.0,28186614.07570998,0.0 - 12/03 13:00:00,92907281.03793706,0.0,129923009.39377868,0.0,80867531.1739614,0.0,114689167.03704754,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,491920609.7233486,0.0,28186614.07570998,0.0 - 12/03 14:00:00,99435215.9947287,0.0,129236103.93072307,0.0,79569691.18639048,0.0,113960384.52640507,0.0,4918.392076684406,4841.393731198777,4847.632361172211,5835.484452418326,495795845.07555267,0.0,28186614.07570998,0.0 - 12/03 15:00:00,100837803.70347625,0.0,130654062.84250294,0.0,79005113.24241674,0.0,113777311.42591399,0.0,7392.653419408982,7276.92005103,7286.297105255542,8771.101087199155,534891389.2007272,0.0,28186614.07570998,0.0 - 12/03 16:00:00,116011331.74988684,0.0,139566975.11838485,0.0,82927071.15074218,0.0,119807261.99100797,0.0,12295.980191711014,12103.48432799694,12119.080902930527,14588.711131045815,642298763.6032853,0.0,28186614.07570998,0.0 - 12/03 17:00:00,118663595.90974568,0.0,141199482.25751449,0.0,82831113.10424912,0.0,120122073.11057127,0.0,12311.09695917788,12118.36443964908,12133.980189125312,14606.646598602762,647028581.8536786,0.0,35233267.594637479,0.0 - 12/03 18:00:00,121501012.2069034,0.0,143125086.01951234,0.0,84782947.36864075,0.0,122438711.24095313,0.0,17263.416856376527,16993.15484500272,17015.05225947576,20482.385114956705,730162189.5089316,0.0,14093307.03785499,0.0 - 12/03 19:00:00,106297991.44303438,0.0,127216757.37505505,0.0,69380529.46449772,0.0,103650970.68455272,0.0,17318.008179491877,17046.891530770696,17068.858190448143,20547.155635954154,665677537.6991334,0.0,63419881.67034747,0.0 - 12/03 20:00:00,97259329.16065271,0.0,118742414.54860509,0.0,56753195.51447092,0.0,89929271.90864922,0.0,9903.662291936233,9748.618611229598,9761.18070133098,11750.317263351406,510873815.05663159,0.0,63419881.67034747,69761869.8373822 - 12/03 21:00:00,103164121.84358345,0.0,124170764.03755096,0.0,60242754.46320142,0.0,94837255.94568305,0.0,9907.469726163761,9752.366439364017,9764.933358924485,11754.834638723667,530661471.27745226,0.0,49326574.63249246,69761869.8373822 - 12/03 22:00:00,106372659.8794921,0.0,126520165.8204807,0.0,62589973.06487349,0.0,97689560.7207585,0.0,4963.145846338146,4885.446872239779,4891.742269181856,5888.583091756075,467436464.57186189,0.0,35233267.594637479,69761869.8373822 - 12/03 23:00:00,107075714.849056,0.0,126508792.78030718,0.0,63142330.80649389,0.0,98167577.41499922,0.0,4972.375843253626,4894.532371831694,4900.839476367331,5899.534130765651,469296630.41084226,0.0,35233267.594637479,62010550.96656194 - 12/03 24:00:00,106946157.15553786,0.0,125536819.4491258,0.0,63759748.94208704,0.0,98363993.94256754,0.0,2499.478997875543,2460.349187886455,2463.5195989376677,2965.5364200003725,432006702.62623837,0.0,35233267.594637479,46507913.22492146 - 12/04 01:00:00,111996410.45336674,0.0,129824858.32279116,0.0,69524017.8261787,0.0,104796873.17938277,0.0,2501.187300608469,2462.0307468214139,2465.2033247329475,2967.563255983065,453567704.44304457,0.0,21139960.556782485,23253956.61246073 - 12/04 02:00:00,64131814.10079762,0.0,79645036.69868267,0.0,29781145.30957628,0.0,52898611.82529365,0.0,1258.3237280950187,1238.6244353916318,1240.2205294004016,1492.9530702150883,245285046.28151793,0.0,14093307.03785499,0.0 - 12/04 03:00:00,86486422.59685707,0.0,101294022.5239213,0.0,49979930.49320652,0.0,79106135.24367893,0.0,1261.7377125396445,1241.9849732728988,1243.5853976777317,1497.0036324388389,335746033.0350087,0.0,14093307.03785499,0.0 - 12/04 04:00:00,82603495.83673489,0.0,96375448.33805336,0.0,48844646.37740293,0.0,75973882.14069845,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,322751600.47066119,0.0,14093307.03785499,0.0 - 12/04 05:00:00,76868322.25532896,0.0,89597399.98056796,0.0,45607438.89284734,0.0,70658689.2068565,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,301773010.63550457,0.0,14093307.03785499,0.0 - 12/04 06:00:00,71619321.78122132,0.0,83438181.20420948,0.0,42556972.47277209,0.0,65776491.96180746,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,282476066.58872637,0.0,14093307.03785499,0.0 - 12/04 07:00:00,64223105.015247408,0.0,75413073.9517417,0.0,36901890.100818198,0.0,58045794.04501791,0.0,5111.745395024433,5031.720067270165,5038.203952153832,6064.890783878859,311071479.8268035,0.0,14093307.03785499,15502637.741640486 - 12/04 08:00:00,65242212.92674307,0.0,77055064.64089589,0.0,37387724.660890597,0.0,58163102.77011298,0.0,20487.41596160728,20166.681642804644,20192.668470471803,24307.53698570128,544403596.0167486,0.0,56373228.15141996,38756594.35410121 - 12/04 09:00:00,68966222.85847879,0.0,80242980.33863993,0.0,42426042.74745759,0.0,63651860.15964332,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,525145275.8326069,0.0,56373228.15141996,38756594.35410121 - 12/04 10:00:00,67460366.12999039,0.0,77295868.57313037,0.0,45711247.88530961,0.0,66016334.02146043,0.0,12888.080150899912,12686.314851868598,12702.662463420469,15291.2151307785,449329597.9589737,0.0,28186614.07570998,0.0 - 12/04 11:00:00,61655000.42687676,0.0,72344019.35792133,0.0,42238555.150978129,0.0,61533533.520803477,0.0,10317.132352769893,10155.615721128142,10168.702268546962,12240.883707408017,392147511.03605058,0.0,28186614.07570998,0.0 - 12/04 12:00:00,55517184.40207396,0.0,70224842.78018688,0.0,40523130.7420071,0.0,59311483.81045577,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,302756868.7389809,0.0,28186614.07570998,0.0 - 12/04 13:00:00,59852040.39764458,0.0,69802904.30412363,0.0,40308049.52956495,0.0,59091707.32922091,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,306138232.8934853,0.0,28186614.07570998,0.0 - 12/04 14:00:00,45879485.784137789,0.0,61128952.39488312,0.0,35722212.21748177,0.0,52149579.34729199,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,272120428.15814688,0.0,28186614.07570998,0.0 - 12/04 15:00:00,19002338.551740447,0.0,50116449.077640388,0.0,29091657.172681784,0.0,42580154.0120483,0.0,7735.4100959787369,7614.31080788686,7624.122624539371,9177.768800122465,256536403.19680966,0.0,28186614.07570998,0.0 - 12/04 16:00:00,46470294.78350943,0.0,61055827.874261628,0.0,34459085.36990907,0.0,50996384.91638996,0.0,12889.526212419403,12687.738275025238,12704.087720803132,15292.930827571816,385849011.87302067,0.0,28186614.07570998,0.0 - 12/04 17:00:00,60176274.00756876,0.0,71415270.04616685,0.0,38590464.99883945,0.0,57920261.13898391,0.0,12875.695427450826,12674.124013575474,12690.455915987912,15276.521129160117,420762737.54178658,0.0,35233267.594637479,0.0 - 12/04 18:00:00,66515142.97822033,0.0,77384950.80378878,0.0,43375787.97088458,0.0,64033840.305386457,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,520507597.4135223,0.0,14093307.03785499,0.0 - 12/04 19:00:00,53719546.12809117,0.0,64013275.613991219,0.0,30517934.87831676,0.0,48247131.83207766,0.0,17976.705538729628,17695.276859969712,17718.079030323144,21328.67490866576,465485339.2681545,0.0,63419881.67034747,0.0 - 12/04 20:00:00,41503312.87021501,0.0,52045552.19141947,0.0,17590001.805544814,0.0,32914099.16463794,0.0,10265.65392353481,10104.943196306027,10117.964447004575,12179.806516173041,297659091.13068369,0.0,63419881.67034747,69761869.8373822 - 12/04 21:00:00,46667211.74725786,0.0,57262740.07777338,0.0,21695487.647455984,0.0,38255305.85551748,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,317187304.4865337,0.0,49326574.63249246,69761869.8373822 - 12/04 22:00:00,51696964.54530242,0.0,62362169.080362368,0.0,25789071.02394779,0.0,43566810.5697585,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,260009881.37995778,0.0,35233267.594637479,69761869.8373822 - 12/04 23:00:00,53579504.2290849,0.0,64163408.01487553,0.0,27381237.067277068,0.0,45609654.89713111,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,267387083.78763313,0.0,35233267.594637479,62010550.96656194 - 12/04 24:00:00,56754239.202152308,0.0,67189166.90767414,0.0,30442440.84571259,0.0,49345856.91246894,0.0,2561.4084065925528,2521.30908015708,2524.55804425153,3039.013299452242,242058343.6576402,0.0,35233267.594637479,46507913.22492146 - 12/05 01:00:00,64973405.56675146,0.0,75260768.3159819,0.0,38422156.35233174,0.0,59010007.51713656,0.0,2560.4412025962035,2520.357017919725,2523.6047551848075,3037.8657488310198,275978505.160516,0.0,21139960.556782485,23253956.61246073 - 12/05 02:00:00,29724375.713375179,0.0,38520386.504798639,0.0,7929268.08738989,0.0,21016752.75444421,0.0,1279.975516719851,1259.9372612264049,1261.5608189866178,1518.6420909188688,116343199.5362742,0.0,14093307.03785499,0.0 - 12/05 03:00:00,51436736.89084184,0.0,60550719.299732718,0.0,28058507.796368466,0.0,45386577.45284114,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,204566131.86789713,0.0,14093307.03785499,0.0 - 12/05 04:00:00,53300943.55177976,0.0,62167119.972599867,0.0,29998404.34257755,0.0,47678509.16397514,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,212270809.09157188,0.0,14093307.03785499,0.0 - 12/05 05:00:00,54188427.63936228,0.0,62897432.771033767,0.0,31280876.80292319,0.0,48866210.74759655,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,216358780.02155534,0.0,14093307.03785499,0.0 - 12/05 06:00:00,53921547.394091669,0.0,62433505.50713459,0.0,31668825.089892046,0.0,48928497.27258207,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,216085965.69181333,0.0,14093307.03785499,0.0 - 12/05 07:00:00,52015198.4231242,0.0,60607585.39342273,0.0,29795524.263190785,0.0,46600426.73264463,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,265442210.31993819,0.0,14093307.03785499,15502637.741640486 - 12/05 08:00:00,55563441.09578513,0.0,65472313.72130112,0.0,34254027.88761501,0.0,48946655.17962892,0.0,20434.173562934164,20114.27276381512,20140.192057292432,24244.366912062935,509995256.9503069,0.0,56373228.15141996,38756594.35410121 - 12/05 09:00:00,68682736.7041067,0.0,78812366.46831842,0.0,43725670.61918449,0.0,64177270.29902801,0.0,17902.042938231865,17621.783116411032,17644.49058257454,21240.09058322184,523268310.084219,0.0,56373228.15141996,38756594.35410121 - 12/05 10:00:00,65803769.8470736,0.0,80627669.06479082,0.0,49584372.35389302,0.0,70496331.51459551,0.0,12807.042032962763,12606.545400785399,12622.790221257652,15195.06649726121,458145341.72851428,0.0,28186614.07570998,0.0 - 12/05 11:00:00,38454334.01996125,0.0,70651448.43719514,0.0,43764326.201982099,0.0,62872821.894104119,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,369400082.21088996,0.0,28186614.07570998,0.0 - 12/05 12:00:00,53596873.427316669,0.0,70205329.94290039,0.0,42927772.59137953,0.0,61838501.78479269,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,305434326.1957989,0.0,28186614.07570998,0.0 - 12/05 13:00:00,42385285.13299658,0.0,65237765.81018124,0.0,40429698.46855278,0.0,57329852.00092233,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,282284522.8710251,0.0,28186614.07570998,0.0 - 12/05 14:00:00,39214646.38040305,0.0,62537725.23561164,0.0,37866220.577033597,0.0,54395333.373415958,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,271027387.3080879,0.0,28186614.07570998,0.0 - 12/05 15:00:00,44439750.692628357,0.0,62906985.339878078,0.0,36765611.47376284,0.0,53799423.94930613,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,313447586.3435513,0.0,28186614.07570998,0.0 - 12/05 16:00:00,49965642.193638738,0.0,66349936.89441337,0.0,37477571.148476209,0.0,55418457.15438938,0.0,12865.45779139668,12664.046649623586,12680.365566323997,15264.374564776468,401718887.8505523,0.0,28186614.07570998,0.0 - 12/05 17:00:00,59530293.382312867,0.0,70925782.73857355,0.0,39517519.47487324,0.0,58400084.313162337,0.0,12861.865151012073,12660.510252694405,12676.82461238642,15260.112034099644,420827203.28961518,0.0,35233267.594637479,0.0 - 12/05 18:00:00,61805306.25350031,0.0,72516853.95993293,0.0,41309177.75811082,0.0,60519428.45280728,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,505805822.6264918,0.0,14093307.03785499,0.0 - 12/05 19:00:00,48249615.52634911,0.0,58735387.248121369,0.0,27390992.231892039,0.0,43741502.04208459,0.0,18011.640907955352,17729.665309473017,17752.511792853595,21370.12439068705,447627689.69193556,0.0,63419881.67034747,0.0 - 12/05 20:00:00,35029358.491350058,0.0,45480081.96939138,0.0,13899197.920028612,0.0,27510723.64599865,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,275860274.59635677,0.0,63419881.67034747,69761869.8373822 - 12/05 21:00:00,37721650.94474734,0.0,47879939.49117121,0.0,16266041.549896155,0.0,30440390.530705658,0.0,10289.492120809658,10128.408202155526,10141.459689909136,12208.089627279714,286270841.22107496,0.0,49326574.63249246,69761869.8373822 - 12/05 22:00:00,40195522.1317467,0.0,50102232.31651986,0.0,18495932.62396371,0.0,33190488.373868593,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,218997637.18772245,0.0,35233267.594637479,69761869.8373822 - 12/05 23:00:00,41468658.53856799,0.0,51164095.19078215,0.0,19667785.83176765,0.0,34597769.74699273,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,223922185.90009446,0.0,35233267.594637479,62010550.96656194 - 12/05 24:00:00,45234338.64324282,0.0,54793658.81334758,0.0,23187550.07968185,0.0,38888757.3845604,0.0,2572.007027869787,2531.7417780410489,2535.0041857315657,3051.5881590234346,200589533.06322969,0.0,35233267.594637479,46507913.22492146 - 12/06 01:00:00,54004307.64602194,0.0,63417459.20917787,0.0,31389219.406092474,0.0,48865982.62022835,0.0,2571.636538009163,2531.3770882683077,2534.639026018829,3051.1485869462715,236156653.34279389,0.0,21139960.556782485,23253956.61246073 - 12/06 02:00:00,14683835.995824647,0.0,22995576.77574795,0.0,0.0,0.0,6830206.206669364,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,63754971.31631127,0.0,14093307.03785499,0.0 - 12/06 03:00:00,38803104.43033038,0.0,47014316.719314727,0.0,16481401.412746013,0.0,32870179.457767019,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,154414354.35822747,0.0,14093307.03785499,0.0 - 12/06 04:00:00,39969770.40150143,0.0,47568554.73001246,0.0,20932442.676225984,0.0,34981327.77243752,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,162700152.58515234,0.0,14093307.03785499,0.0 - 12/06 05:00:00,40543711.772732857,0.0,47908477.514799538,0.0,21950680.045711895,0.0,35767383.38870341,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,165420980.76791118,0.0,14093307.03785499,0.0 - 12/06 06:00:00,41451416.95296286,0.0,48703756.841297399,0.0,23034085.650992007,0.0,36805186.572613198,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,169237060.08906395,0.0,14093307.03785499,0.0 - 12/06 07:00:00,38766263.727547299,0.0,45978862.69368781,0.0,20683257.233539627,0.0,33746165.956052739,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,216133918.53337399,0.0,14093307.03785499,15502637.741640486 - 12/06 08:00:00,49492730.027409,0.0,58692216.04103508,0.0,32484039.890404785,0.0,47488862.92187461,0.0,20573.092304073303,20251.01670614646,20277.112208150633,24409.18869557017,495995324.5709095,0.0,56373228.15141996,38756594.35410121 - 12/06 09:00:00,40329396.2445444,0.0,55340204.72588958,0.0,32564727.62879398,0.0,45193414.31419098,0.0,18004.049195088508,17722.192446287336,17745.029300120957,21361.117113164037,442824339.9101979,0.0,56373228.15141996,38756594.35410121 - 12/06 10:00:00,41645311.14907207,0.0,60499451.8460735,0.0,37308960.9721899,0.0,53657619.7208422,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,385671035.16813758,0.0,28186614.07570998,0.0 - 12/06 11:00:00,32979604.51076189,0.0,57367341.41455957,0.0,35978348.13284381,0.0,51691978.02495664,0.0,10297.898449857848,10136.682928554266,10149.745079137425,12218.063415806084,332105875.6272021,0.0,28186614.07570998,0.0 - 12/06 12:00:00,30045048.13269212,0.0,54510067.03996503,0.0,34662915.53595086,0.0,49683012.94604423,0.0,5148.949224928924,5068.341464277133,5074.8725395687129,6109.031707903042,245945345.42669235,0.0,28186614.07570998,0.0 - 12/06 13:00:00,30157091.685446089,0.0,53757269.78445992,0.0,33992266.37013293,0.0,47954497.41498468,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,242895281.89002607,0.0,28186614.07570998,0.0 - 12/06 14:00:00,35734225.11649774,0.0,55269464.44418981,0.0,33596297.05322658,0.0,48464039.49215543,0.0,5150.27817098033,5069.649605430191,5076.1823663951649,6110.608451664047,250128213.04616059,0.0,28186614.07570998,0.0 - 12/06 15:00:00,34892862.0623703,0.0,54400323.59985986,0.0,32019594.19543601,0.0,46858453.818249139,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,283796530.67531219,0.0,28186614.07570998,0.0 - 12/06 16:00:00,32064436.37919732,0.0,54505215.628241989,0.0,30511565.54577829,0.0,45663520.11049926,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,355304429.14367666,0.0,28186614.07570998,0.0 - 12/06 17:00:00,52509618.57580217,0.0,64961299.26783207,0.0,36202245.853267747,0.0,53591311.71744406,0.0,12863.672707475933,12662.289511524623,12678.606163973247,15262.256630845342,399745045.464095,0.0,35233267.594637479,0.0 - 12/06 18:00:00,56824288.07582232,0.0,68581827.647926,0.0,39324677.32288763,0.0,57533042.82774518,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,491621627.1032939,0.0,14093307.03785499,0.0 - 12/06 19:00:00,45117448.38492571,0.0,56666160.09287745,0.0,26565646.574629077,0.0,42389425.15113904,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,439936555.5588135,0.0,63419881.67034747,0.0 - 12/06 20:00:00,32317032.431501628,0.0,43693031.048076387,0.0,13070388.329313336,0.0,26226359.17098723,0.0,10285.04625670184,10124.03193887969,10137.077787371394,12202.814779224856,269203105.72371867,0.0,63419881.67034747,69761869.8373822 - 12/06 21:00:00,35388539.89868823,0.0,46323372.11188461,0.0,15417546.298309727,0.0,29190559.9530911,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,280260930.8315617,0.0,49326574.63249246,69761869.8373822 - 12/06 22:00:00,39318984.53903134,0.0,49958345.76958498,0.0,18506342.052366675,0.0,33149989.127904804,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,217881808.86080785,0.0,35233267.594637479,69761869.8373822 - 12/06 23:00:00,42201691.21335298,0.0,52740677.7449314,0.0,20877948.097410215,0.0,36202582.28043865,0.0,5138.6391256853189,5058.192771560533,5064.7107692256909,6096.799168711188,228912929.94279108,0.0,35233267.594637479,62010550.96656194 - 12/06 24:00:00,46857160.238873187,0.0,57353843.18387163,0.0,25003376.309632694,0.0,41370741.805954847,0.0,2567.6856287144426,2527.488031195637,2530.744957499173,3046.460983883565,209005688.10298649,0.0,35233267.594637479,46507913.22492146 - 12/07 01:00:00,56413243.68605047,0.0,66706308.090547319,0.0,33867712.793216098,0.0,52182919.61613787,0.0,2564.655229660886,2524.5050736045848,2527.7581560628,3042.8655310839637,247545406.5514358,0.0,21139960.556782485,23253956.61246073 - 12/07 02:00:00,18748420.496429739,0.0,27253634.299002224,0.0,2197753.7524173215,0.0,10885040.39581036,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110912,1520.0700178164989,78255273.77805361,0.0,14093307.03785499,0.0 - 12/07 03:00:00,46921373.609556589,0.0,56374461.26213646,0.0,24679123.918867925,0.0,41746348.43202789,0.0,1276.5913826487129,1256.6061064054603,1258.2253716326825,1514.6269450238029,188823086.5231472,0.0,14093307.03785499,0.0 - 12/07 04:00:00,53810243.81342463,0.0,63293589.92540587,0.0,31602749.7412728,0.0,49482741.65586975,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,217207326.8150718,0.0,14093307.03785499,0.0 - 12/07 05:00:00,57315942.877030778,0.0,66874419.236673068,0.0,34732883.41305353,0.0,53231825.2751542,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,231163588.79001428,0.0,14093307.03785499,0.0 - 12/07 06:00:00,58446237.51840426,0.0,67731899.10084658,0.0,36026784.276997,0.0,54437110.13439752,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,235645760.1591807,0.0,14093307.03785499,0.0 - 12/07 07:00:00,56276009.88951232,0.0,65532190.25652393,0.0,33896657.32931104,0.0,51724296.42205086,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,226432883.0259335,0.0,14093307.03785499,15502637.741640486 - 12/07 08:00:00,53443116.20338909,0.0,66050040.00183558,0.0,35012736.69496464,0.0,49640673.81066129,0.0,5090.16061216443,5010.473198212472,5016.929704336736,6039.281262957281,280311207.9104659,0.0,56373228.15141996,38756594.35410121 - 12/07 09:00:00,48923680.33982606,0.0,70947890.63935556,0.0,39924916.613525237,0.0,58447486.27182813,0.0,12716.178446421598,12517.10430064212,12533.233867127778,15087.26032030645,408517570.8287276,0.0,56373228.15141996,38756594.35410121 - 12/07 10:00:00,51354169.62942533,0.0,74665308.88007537,0.0,46691988.98364769,0.0,66616644.04586847,0.0,12749.063900393337,12549.474926697158,12565.646206038486,15126.277656128967,430093777.2203455,0.0,28186614.07570998,0.0 - 12/07 11:00:00,27838971.757508033,0.0,64519256.7665257,0.0,41669683.30404421,0.0,59501548.9049118,0.0,12765.913826487129,12566.0610640546,12582.253716326824,15146.269450238027,384547253.73857346,0.0,28186614.07570998,0.0 - 12/07 12:00:00,26850111.82504969,0.0,61306806.32546927,0.0,40079039.5486323,0.0,57318762.39703336,0.0,7666.030068181636,7546.016937367755,7555.740750397492,9095.452045539683,300262383.3815363,0.0,28186614.07570998,0.0 - 12/07 13:00:00,40137954.00484767,0.0,62871234.826385308,0.0,39636816.3801935,0.0,56627470.772379469,0.0,7666.030068181636,7546.016937367755,7555.740750397492,9095.452045539683,313981139.2691575,0.0,28186614.07570998,0.0 - 12/07 14:00:00,42875577.587852049,0.0,62955497.84493462,0.0,38788000.89172624,0.0,56121908.09671636,0.0,7669.193118743194,7549.1304697827049,7558.85829491675,9099.204884289908,315495976.7850665,0.0,28186614.07570998,0.0 - 12/07 15:00:00,50183521.618064809,0.0,67123372.58588635,0.0,39828946.40824292,0.0,58215044.30979232,0.0,7669.193118743194,7549.1304697827049,7558.85829491675,9099.204884289908,330105877.2858235,0.0,28186614.07570998,0.0 - 12/07 16:00:00,55904442.281328078,0.0,71803324.91179052,0.0,41469565.49639359,0.0,60942820.73338744,0.0,17887.40349242382,17607.372853858094,17630.06175092748,21222.721439592588,497771367.7553868,0.0,28186614.07570998,0.0 - 12/07 17:00:00,59446709.866699937,0.0,73911158.58946906,0.0,41498689.586544487,0.0,61422027.421776209,0.0,23016.91234915526,22656.578292528473,22685.77360616727,27308.68789271379,580683213.1705229,0.0,35233267.594637479,0.0 - 12/07 18:00:00,62891586.06160464,0.0,76782341.27926708,0.0,44069838.42064646,0.0,64626767.712180707,0.0,17894.783943734117,17614.637762826307,17637.33602147242,21231.478063343115,516132182.32265236,0.0,14093307.03785499,0.0 - 12/07 19:00:00,53042105.69958795,0.0,66752401.83545387,0.0,33219095.350631346,0.0,51771645.39873915,0.0,17883.667808802922,17603.695653061175,17626.37981168201,21218.28919357621,472380565.16605266,0.0,63419881.67034747,0.0 - 12/07 20:00:00,41170332.93978293,0.0,55012585.290866728,0.0,20385800.190403247,0.0,36631383.2032905,0.0,15319.096591784555,15079.273276865519,15098.70445959219,18175.523340285636,382421453.2310438,0.0,63419881.67034747,69761869.8373822 - 12/07 21:00:00,46443404.56935258,0.0,60347512.59870664,0.0,24264757.02123376,0.0,41885879.92091289,0.0,12751.92581252369,12552.29203505922,12568.466944532209,15129.673205625726,363750042.9020729,0.0,49326574.63249246,69761869.8373822 - 12/07 22:00:00,52358676.252455119,0.0,66307797.12437822,0.0,28710999.161848725,0.0,47822870.32862748,0.0,10187.547442691379,10028.05948699095,10040.98166518269,12087.13615815998,347637751.97819957,0.0,35233267.594637479,69761869.8373822 - 12/07 23:00:00,57131677.801194179,0.0,71190386.77632311,0.0,32111014.628534158,0.0,52459104.772426228,0.0,7631.564342756853,7512.0907793040719,7521.770875016373,9054.5597779608,327084132.7686148,0.0,35233267.594637479,62010550.96656194 - 12/07 24:00:00,62918750.33570478,0.0,77024628.1445658,0.0,36725067.79747009,0.0,58457562.51828664,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,311216794.47414556,0.0,35233267.594637479,46507913.22492146 - 12/08 01:00:00,72163177.47307624,0.0,85964140.9082037,0.0,45237191.20421796,0.0,68842225.58899497,0.0,2541.984877610486,2502.1896301446838,2505.4139568763109,3015.9680237567029,310242738.5326904,0.0,21139960.556782485,23253956.61246073 - 12/08 02:00:00,38002848.42430636,0.0,49554780.43949288,0.0,14749555.984902122,0.0,32016303.707068419,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,153322397.54319126,0.0,14093307.03785499,0.0 - 12/08 03:00:00,64787393.740263,0.0,77828659.55098455,0.0,37378131.35431877,0.0,59759658.43462653,0.0,1269.3922323268208,1249.5196601248577,1251.1297937427485,1506.0854279753399,258747900.691204,0.0,14093307.03785499,0.0 - 12/08 04:00:00,67052669.01671857,0.0,79559819.7884432,0.0,39677894.42899981,0.0,62306238.35547371,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,267580882.92843542,0.0,14093307.03785499,0.0 - 12/08 05:00:00,70018982.20818419,0.0,82341161.2027272,0.0,41950506.925148639,0.0,65067010.28321625,0.0,1269.0659255201966,1249.1984617121635,1250.8081814331159,1505.698277405177,278366835.6651306,0.0,14093307.03785499,0.0 - 12/08 06:00:00,73095890.05567727,0.0,85522162.0013488,0.0,44043867.1419671,0.0,67833124.6743314,0.0,1268.074530255533,1248.222586925313,1249.831049131997,1504.5220247675378,289469384.56121388,0.0,14093307.03785499,0.0 - 12/08 07:00:00,72171969.41562136,0.0,84651095.7611285,0.0,42665546.793521348,0.0,66234571.14360624,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,284677310.89164897,0.0,14093307.03785499,15502637.741640486 - 12/08 08:00:00,78716174.78259869,0.0,92915394.77808827,0.0,46691070.89862902,0.0,72061124.2766792,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642636,309327601.03034397,0.0,56373228.15141996,38756594.35410121 - 12/08 09:00:00,82771494.87550459,0.0,97972624.98218119,0.0,54523165.560920659,0.0,80398406.56475674,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,391563054.73492076,0.0,56373228.15141996,38756594.35410121 - 12/08 10:00:00,84899779.33390585,0.0,97325886.1628894,0.0,59674318.71035512,0.0,84924163.88950922,0.0,7614.395553121179,7495.190770272979,7504.849088598695,9034.189664431062,440759198.3717857,0.0,28186614.07570998,0.0 - 12/08 11:00:00,80986795.5177908,0.0,93913201.54017893,0.0,57544345.8413713,0.0,82310634.4440793,0.0,7606.439504731765,7487.3592753053,7497.007501950407,9024.750116718062,428570980.3787603,0.0,28186614.07570998,0.0 - 12/08 12:00:00,77374131.61183402,0.0,90407960.26238348,0.0,55485316.75726411,0.0,79536471.22315812,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,378740925.2098401,0.0,28186614.07570998,0.0 - 12/08 13:00:00,76104218.03883302,0.0,88786495.89069483,0.0,54030490.738992739,0.0,77642576.5333733,0.0,5077.568929307283,4998.078640499431,5004.519174970994,6024.341711901359,372540011.6459385,0.0,28186614.07570998,0.0 - 12/08 14:00:00,79661022.68324943,0.0,91330950.32249174,0.0,54193472.9143842,0.0,78420321.78977673,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,417656875.6385186,0.0,28186614.07570998,0.0 - 12/08 15:00:00,78412339.24513012,0.0,90185348.94285849,0.0,52902374.60800832,0.0,76903239.9656799,0.0,10182.74691140684,10023.334108919207,10036.250197978992,12081.440511038418,450768880.98731335,0.0,28186614.07570998,0.0 - 12/08 16:00:00,78915370.19042301,0.0,90622123.10906732,0.0,52258601.93383043,0.0,76281891.62734068,0.0,12749.063900393337,12549.474926697158,12565.646206038486,15126.277656128967,488843652.5419901,0.0,28186614.07570998,0.0 - 12/08 17:00:00,77126729.47277516,0.0,88736041.40792653,0.0,50251400.26739918,0.0,73829097.21509281,0.0,15305.719589211305,15066.105693763031,15085.519908714887,18159.652037364056,518964458.38778558,0.0,35233267.594637479,0.0 - 12/08 18:00:00,79129051.46793565,0.0,90579452.32920309,0.0,52139157.116126339,0.0,76086536.02000976,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,565184640.4764123,0.0,14093307.03785499,0.0 - 12/08 19:00:00,66831494.99244005,0.0,78513425.62703088,0.0,39875895.48716772,0.0,61370686.25650124,0.0,10210.527349126556,10050.679638703985,10063.630965269998,12114.400939948358,399372762.37811598,0.0,63419881.67034747,0.0 - 12/08 20:00:00,51891426.83571098,0.0,63863166.0050123,0.0,25221935.937261188,0.0,43698476.81646499,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,299310218.8557832,0.0,63419881.67034747,69761869.8373822 - 12/08 21:00:00,53917995.92152221,0.0,65690953.82148795,0.0,27252968.375271,0.0,46101632.13748607,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,269387025.76332309,0.0,49326574.63249246,69761869.8373822 - 12/08 22:00:00,56860838.07456616,0.0,68603411.52552723,0.0,29943768.905452916,0.0,49462716.682515177,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,281277852.3902949,0.0,35233267.594637479,69761869.8373822 - 12/08 23:00:00,60381582.791275639,0.0,72128457.63114862,0.0,32989879.85712358,0.0,53289877.92398393,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,294936164.9271224,0.0,35233267.594637479,62010550.96656194 - 12/08 24:00:00,64792167.48282111,0.0,76347890.23944229,0.0,37186454.950598258,0.0,58324864.60238963,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,312742162.95336946,0.0,35233267.594637479,46507913.22492146 - 12/09 01:00:00,72968584.03925789,0.0,84312607.75809986,0.0,45194380.61416048,0.0,67957809.00823239,0.0,2541.35316957305,2501.5678116144188,2504.791337069402,3015.218526284063,308459932.46009799,0.0,21139960.556782485,23253956.61246073 - 12/09 02:00:00,36901867.42245677,0.0,46224870.29080449,0.0,13455729.47153263,0.0,29806840.044826986,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,145407308.90871964,0.0,14093307.03785499,0.0 - 12/09 03:00:00,58462319.69629054,0.0,68388929.9633128,0.0,33850449.87172053,0.0,53062551.413254138,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,232767980.07311336,0.0,14093307.03785499,0.0 - 12/09 04:00:00,59830574.250452879,0.0,69494611.95548345,0.0,35550468.55732724,0.0,55009147.67308567,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,238883711.42377068,0.0,14093307.03785499,0.0 - 12/09 05:00:00,60035582.91854446,0.0,69445335.50850702,0.0,36326430.06931617,0.0,55480376.20553657,0.0,1270.676584786525,1250.7839058072094,1252.395668534701,1507.6092631420316,240301000.2220779,0.0,14093307.03785499,0.0 - 12/09 06:00:00,60108685.30353467,0.0,69337368.15508113,0.0,36930520.58994777,0.0,55831973.527108568,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,241212276.70420749,0.0,14093307.03785499,0.0 - 12/09 07:00:00,57853404.06409884,0.0,67125396.67158751,0.0,34694772.96754748,0.0,53040695.52843058,0.0,5078.865819030884,4999.355227172474,5005.797406656265,6025.880422053089,288709905.1813501,0.0,14093307.03785499,15502637.741640486 - 12/09 08:00:00,63784242.95347572,0.0,74451950.2153988,0.0,38281389.78368659,0.0,57757643.0765939,0.0,20315.463276123537,19997.420908689895,20023.18962662506,24103.521688212357,538257769.827898,0.0,56373228.15141996,38756594.35410121 - 12/09 09:00:00,77609596.00152225,0.0,89141085.0359386,0.0,51021461.43813502,0.0,73892397.02693483,0.0,17719.64481649957,17442.240471300793,17464.71657844054,21023.68217435081,556805562.0486609,0.0,56373228.15141996,38756594.35410121 - 12/09 10:00:00,78732978.71077691,0.0,91754467.36074287,0.0,58434286.837851379,0.0,82127159.73898907,0.0,12649.888221373116,12451.851861433204,12467.897343490758,15008.609498739881,500330581.57849326,0.0,28186614.07570998,0.0 - 12/09 11:00:00,78136738.81302753,0.0,90977729.86667842,0.0,57544082.139171559,0.0,81382513.38975999,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,459424146.1744696,0.0,28186614.07570998,0.0 - 12/09 12:00:00,77739666.15144529,0.0,90534417.37932226,0.0,56825039.75281721,0.0,80730633.76760063,0.0,5057.122241332642,4977.9520492393589,4984.366648543805,6000.082497117512,381500041.4216254,0.0,28186614.07570998,0.0 - 12/09 13:00:00,72621680.83759871,0.0,87358962.93262506,0.0,55069949.02307662,0.0,78154619.41936332,0.0,5059.955288549247,4980.740744573282,4987.158937396303,6003.443799495952,368917887.78471687,0.0,28186614.07570998,0.0 - 12/09 14:00:00,75186957.3503058,0.0,89746611.93687889,0.0,55496381.82539425,0.0,79432492.61060733,0.0,5054.2566289413639,4975.131298544645,4981.542263023914,5996.68255740241,375489849.6156706,0.0,28186614.07570998,0.0 - 12/09 15:00:00,78263476.9021095,0.0,92073598.65594566,0.0,56076922.035548198,0.0,80522694.25202073,0.0,7583.54024840862,7464.8185111117459,7474.437691681501,8997.581023209,420410050.7535032,0.0,28186614.07570998,0.0 - 12/09 16:00:00,83904104.31795587,0.0,96707380.25458452,0.0,57989334.88879304,0.0,83463462.3607305,0.0,12624.7434789568,12427.10076465016,12443.114352393219,14978.776221696746,510969727.1657728,0.0,28186614.07570998,0.0 - 12/09 17:00:00,84467840.82206296,0.0,96894429.55483864,0.0,57330553.43557899,0.0,82713462.65477063,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,510366390.92697587,0.0,35233267.594637479,0.0 - 12/09 18:00:00,86618404.55314768,0.0,98769609.83684069,0.0,59511879.032950628,0.0,85243118.88427387,0.0,17674.64087053952,17397.941070510224,17420.360093350508,20970.286710375443,594610635.7884054,0.0,14093307.03785499,0.0 - 12/09 19:00:00,75107684.70284359,0.0,88047751.36976998,0.0,46743281.25961343,0.0,70547261.46138987,0.0,17659.12927374315,17382.67231065539,17405.07165814015,20951.882792890603,544681500.5211623,0.0,63419881.67034747,0.0 - 12/09 20:00:00,64103044.04413358,0.0,77860888.93706653,0.0,34634787.81989012,0.0,56634496.42316593,0.0,10060.345684214446,9902.849095772437,9915.609927595135,11936.216127316726,383767292.22989168,0.0,63419881.67034747,69761869.8373822 - 12/09 21:00:00,69713913.81556647,0.0,83481350.00925412,0.0,39267268.96558017,0.0,62533831.99945579,0.0,10024.882230774747,9867.940829312038,9880.656678270387,11894.140093533764,404999796.1846639,0.0,49326574.63249246,69761869.8373822 - 12/09 22:00:00,74499887.18994375,0.0,88229250.30310509,0.0,43324354.12561993,0.0,67675111.10226187,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,348655521.31757119,0.0,35233267.594637479,69761869.8373822 - 12/09 23:00:00,77975343.76662973,0.0,91904235.4663757,0.0,46089043.80258991,0.0,71342339.99652834,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,362110929.30596396,0.0,35233267.594637479,62010550.96656194 - 12/09 24:00:00,80521624.83928189,0.0,93982500.2313649,0.0,48903276.71968576,0.0,74455810.12476948,0.0,2503.7211744483086,2464.524952393597,2467.7007443435888,2970.569600570124,335326671.2134223,0.0,35233267.594637479,46507913.22492146 - 12/10 01:00:00,86993837.52352099,0.0,100153965.91826812,0.0,55590724.09613809,0.0,82348349.19257578,0.0,2509.4990440314907,2470.2123683505935,2473.3954891165478,2977.424822275728,362636790.9360906,0.0,21139960.556782485,23253956.61246073 - 12/10 02:00:00,45288842.33290383,0.0,57444951.98143885,0.0,20568696.537832187,0.0,36909417.63061558,0.0,1254.7495220157453,1235.1061841752967,1236.6977445582739,1488.712411137864,178986865.58558429,0.0,14093307.03785499,0.0 - 12/10 03:00:00,73322045.75761712,0.0,85819986.51639855,0.0,43893417.82825151,0.0,67768106.03847094,0.0,1255.9585575200095,1236.2962920031965,1237.8893859615817,1490.1468856119512,289596604.17668637,0.0,14093307.03785499,0.0 - 12/10 04:00:00,77865625.41715169,0.0,90656579.29599805,0.0,47773837.61203212,0.0,72996225.28934151,0.0,1251.4401856893535,1231.8486561264509,1233.436018852048,1484.7860099117339,308017706.7486098,0.0,14093307.03785499,0.0 - 12/10 05:00:00,83021200.93777652,0.0,96208305.63201651,0.0,52139215.01103854,0.0,78494681.55338241,0.0,1244.9070103275065,1225.4177588436563,1226.9968347017166,1477.0346467315379,328491085.63638988,0.0,14093307.03785499,0.0 - 12/10 06:00:00,90030702.8701874,0.0,103857595.65533197,0.0,57666275.910410929,0.0,85743502.82943991,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,355763852.1650754,0.0,14093307.03785499,0.0 - 12/10 07:00:00,92577854.47082989,0.0,107045043.26095554,0.0,58872045.494270827,0.0,87751073.92511073,0.0,4918.392076684406,4841.393731198777,4847.632361172211,5835.484452418326,419840466.5884723,0.0,14093307.03785499,15502637.741640486 - 12/10 08:00:00,92436828.65116783,0.0,115027994.92472273,0.0,61952658.352442409,0.0,92681346.9239238,0.0,19599.54529555206,19292.71075765863,19317.57138463592,23254.11233253368,655369012.0256258,0.0,56373228.15141996,38756594.35410121 - 12/10 09:00:00,61161416.359794799,0.0,116928075.91761166,0.0,64700079.10618394,0.0,96361310.21331753,0.0,17090.448623106648,16822.89446169187,16844.572478282906,20277.16490878537,594877171.2956283,0.0,56373228.15141996,38756594.35410121 - 12/10 10:00:00,47848042.13572796,0.0,125786498.69842226,0.0,75611382.12921819,0.0,109089997.39534416,0.0,12185.947195141085,11995.173918514949,12010.630924430903,14458.161180833293,540675607.9468253,0.0,28186614.07570998,0.0 - 12/10 11:00:00,39729034.78730917,0.0,131080490.82445914,0.0,81070748.36081188,0.0,116638011.46756359,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,513799407.282289,0.0,28186614.07570998,0.0 - 12/10 12:00:00,38536611.25982545,0.0,136205850.80456058,0.0,85326263.52575737,0.0,121748839.26467939,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,454458125.77589538,0.0,28186614.07570998,0.0 - 12/10 13:00:00,36770707.35543415,0.0,138784274.75927336,0.0,86581553.16336563,0.0,118130430.95925036,0.0,4847.951685943888,4772.0560979159449,4778.205379271748,5751.909617679721,452807408.2482442,0.0,28186614.07570998,0.0 - 12/10 14:00:00,37254277.71667385,0.0,131676852.58882986,0.0,82325005.71125187,0.0,113741550.40004507,0.0,4847.951685943888,4772.0560979159449,4778.205379271748,5751.909617679721,437538128.4277214,0.0,28186614.07570998,0.0 - 12/10 15:00:00,49278516.37815879,0.0,129702151.92088995,0.0,78337486.21342229,0.0,111305808.04984403,0.0,7271.927528915832,7158.084146873913,7167.308068907622,8627.864426519584,477434625.57869616,0.0,28186614.07570998,0.0 - 12/10 16:00:00,82021520.87063754,0.0,139088519.23819829,0.0,81542460.31134014,0.0,118100956.50399152,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,601936548.4173309,0.0,28186614.07570998,0.0 - 12/10 17:00:00,121186071.40906017,0.0,155433972.21427185,0.0,91388559.9073723,0.0,131835058.1057184,0.0,12080.313869357433,11891.194302152315,11906.51731971961,14332.831272062927,680602745.9842751,0.0,35233267.594637479,0.0 - 12/10 18:00:00,128743599.436712,0.0,159878856.96145637,0.0,95290672.41881679,0.0,136673021.0045259,0.0,16896.423688595227,16631.907023725544,16653.338933509076,20046.961730374645,773409222.7758472,0.0,14093307.03785499,0.0 - 12/10 19:00:00,118724720.45318495,0.0,148340790.88777966,0.0,82993845.53110026,0.0,121983321.72965351,0.0,16823.33301306106,16559.960596351917,16581.299795820356,19960.242433895964,723772087.6225839,0.0,63419881.67034747,0.0 - 12/10 20:00:00,108287613.95191212,0.0,136113264.8912782,0.0,70619150.58143525,0.0,107308810.02738044,0.0,9575.426364376592,9425.521278348253,9437.667024558361,11360.877864837526,565607012.5676407,0.0,63419881.67034747,69761869.8373822 - 12/10 21:00:00,111944566.08986295,0.0,138166732.26529614,0.0,73171722.78733537,0.0,110187939.80620222,0.0,9599.202932898,9448.925620253942,9461.101525347427,11389.087855780757,577104905.5121051,0.0,49326574.63249246,69761869.8373822 - 12/10 22:00:00,115510241.98013003,0.0,140837749.0104053,0.0,75743133.08398949,0.0,113439340.13048548,0.0,4801.962203224589,4726.786589127944,4732.877536101112,5697.344851959753,517382760.4544985,0.0,35233267.594637479,69761869.8373822 - 12/10 23:00:00,115157883.2970793,0.0,139591584.6061231,0.0,75126817.1147449,0.0,112569737.58347978,0.0,4845.709039175129,4769.848560200714,4775.994996918854,5749.248802895679,514952907.63851246,0.0,35233267.594637479,62010550.96656194 - 12/10 24:00:00,116671279.56896097,0.0,140359454.95444823,0.0,76321054.07876453,0.0,113940057.04543559,0.0,2431.7386278924066,2393.6693060323584,2396.7537932499278,2885.1650568242719,483678222.07000556,0.0,35233267.594637479,46507913.22492146 - 12/11 01:00:00,124078790.45388137,0.0,146712300.3697577,0.0,83311890.13562912,0.0,122078668.82576123,0.0,2432.83511536697,2394.748627790958,2397.8345058247775,2886.465997357341,512584433.0718536,0.0,21139960.556782485,23253956.61246073 - 12/11 02:00:00,82204176.06801015,0.0,102650343.78282044,0.0,45566846.90647361,0.0,74652711.00798741,0.0,1213.1046387927173,1194.1132593679704,1195.6519961832726,1439.302346876663,323225897.8336859,0.0,14093307.03785499,0.0 - 12/11 03:00:00,112616791.5051732,0.0,132817053.76990253,0.0,72760564.5886372,0.0,108998600.05958241,0.0,1210.3013572299718,1191.3538637010416,1192.889044753381,1435.9763603103016,445302884.17687627,0.0,14093307.03785499,0.0 - 12/11 04:00:00,113544809.73551156,0.0,132777950.02962248,0.0,74771662.11458859,0.0,110349541.60167212,0.0,1209.7361271615915,1190.7974824148253,1192.331946513089,1435.3057364103266,449545380.13439419,0.0,14093307.03785499,0.0 - 12/11 05:00:00,114860636.79639457,0.0,133503298.77078694,0.0,76193949.8390047,0.0,111562064.82146259,0.0,1208.6011365692567,1189.6802603119457,1191.2132847554972,1433.9591133977756,454204383.88977298,0.0,14093307.03785499,0.0 - 12/11 06:00:00,114006343.89955616,0.0,131941461.0925245,0.0,76132703.47921139,0.0,110810815.41480708,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,451009633.0354154,0.0,14093307.03785499,0.0 - 12/11 07:00:00,108452072.21797922,0.0,125867099.01529856,0.0,71630929.45433322,0.0,104757308.19711219,0.0,4863.477255784813,4787.3386120647169,4793.507586499855,5770.330113648543,483480161.72951576,0.0,14093307.03785499,15502637.741640486 - 12/11 08:00:00,112319906.15879801,0.0,133162019.7193524,0.0,75536979.63360666,0.0,110185491.6290162,0.0,19346.71016205902,19043.833805346774,19068.37372896867,22954.133097954575,720691380.0003578,0.0,56373228.15141996,38756594.35410121 - 12/11 09:00:00,100488426.0296304,0.0,134663598.90797145,0.0,79775257.17166393,0.0,114824956.79179436,0.0,17082.951775322705,16815.514978458523,16837.1834858322,20268.270185061996,685366352.4298916,0.0,56373228.15141996,38756594.35410121 - 12/11 10:00:00,80137275.04752183,0.0,126831017.27436653,0.0,80405425.03336096,0.0,113791605.11816937,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,584614778.1699524,0.0,28186614.07570998,0.0 - 12/11 11:00:00,56386594.929051797,0.0,114711614.8815926,0.0,72827968.26912205,0.0,103783844.89085648,0.0,9984.06783746684,9827.765392945284,9840.429471753252,11845.715373855108,497102744.04429677,0.0,28186614.07570998,0.0 - 12/11 12:00:00,66701434.63921803,0.0,111659022.61564516,0.0,69917686.5157803,0.0,99967614.84814734,0.0,5002.374601216938,4924.061493642827,4930.406649465895,5935.12651196613,423096847.9414413,0.0,28186614.07570998,0.0 - 12/11 13:00:00,75421624.0029459,0.0,111595676.7044952,0.0,68987613.06939709,0.0,97993525.30066523,0.0,4997.2383099792009,4919.005612002591,4925.3442528061209,5929.032498476844,428772673.5012566,0.0,28186614.07570998,0.0 - 12/11 14:00:00,72353721.9174925,0.0,106209976.82822922,0.0,65642466.83804994,0.0,93671485.3966361,0.0,5012.441115387373,4933.970414656019,4940.328339135193,5947.070046766882,412879366.6778115,0.0,28186614.07570998,0.0 - 12/11 15:00:00,70904759.12503277,0.0,103094262.40045077,0.0,62559962.82794588,0.0,90098212.72691447,0.0,7535.7513451200579,7417.777752019177,7427.33631576949,8940.881313671707,439415485.2960334,0.0,28186614.07570998,0.0 - 12/11 16:00:00,80539137.88366428,0.0,108179871.47228304,0.0,63850329.25136709,0.0,92804185.97280212,0.0,12547.49522015745,12351.061841752964,12366.97744558274,14887.12411137864,533123095.608055,0.0,28186614.07570998,0.0 - 12/11 17:00:00,91216542.03070201,0.0,113779699.81233202,0.0,66125990.27219341,0.0,96218369.08767227,0.0,12531.102788468434,12334.926036640045,12350.820847837984,14867.675116917208,554844890.4464089,0.0,35233267.594637479,0.0 - 12/11 18:00:00,97678822.13640794,0.0,119554620.38305491,0.0,70670871.6538094,0.0,102081797.52681145,0.0,17459.843495262332,17186.50638821341,17208.652955884863,20715.437823928944,651239698.0879259,0.0,14093307.03785499,0.0 - 12/11 19:00:00,85217724.7444419,0.0,106439367.49027138,0.0,57361815.15411793,0.0,86060914.58002775,0.0,17472.118715566972,17198.589437654242,17220.751575568192,20730.001904246437,596517083.847788,0.0,63419881.67034747,0.0 - 12/11 20:00:00,72762742.15520987,0.0,93304684.99947848,0.0,44329721.705020088,0.0,70203140.79192026,0.0,9937.411411051846,9781.839381589563,9794.44428004433,11790.359304899002,429294885.41093376,0.0,63419881.67034747,69761869.8373822 - 12/11 21:00:00,77676792.81385643,0.0,97817014.13188373,0.0,48219198.86211991,0.0,75121945.62554203,0.0,9922.55611395445,9767.216646939478,9779.802702508137,11772.734061954492,447307265.72468569,0.0,49326574.63249246,69761869.8373822 - 12/11 22:00:00,80779462.35923237,0.0,100405832.34055934,0.0,50724956.454104948,0.0,78199433.58117362,0.0,4970.544429681432,4892.729629380622,4899.03441089861,5897.361228471596,384484495.6494264,0.0,35233267.594637479,69761869.8373822 - 12/11 23:00:00,79714375.54243456,0.0,98618874.39300518,0.0,49848770.96542885,0.0,76836761.8985464,0.0,5002.374601216938,4924.061493642827,4930.406649465895,5935.12651196613,379869872.1220654,0.0,35233267.594637479,62010550.96656194 - 12/11 24:00:00,85129849.70015702,0.0,103745604.76861616,0.0,54206541.921868029,0.0,82350776.3393787,0.0,2485.272214840716,2446.364814690311,2449.517205449305,2948.680614235798,362620178.187198,0.0,35233267.594637479,46507913.22492146 - 12/12 01:00:00,95577162.36722227,0.0,113863047.0426476,0.0,63805380.04982679,0.0,94087075.2003141,0.0,2480.6390284886126,2441.8041617348696,2444.9506756270345,2943.183515488623,404450743.2328316,0.0,21139960.556782485,23253956.61246073 - 12/12 02:00:00,52957198.04485763,0.0,69647746.75576681,0.0,26814484.19220893,0.0,46025517.949053447,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,214031771.41179998,0.0,14093307.03785499,0.0 - 12/12 03:00:00,77189261.13999349,0.0,93262026.87004578,0.0,48819347.801127348,0.0,74815701.86624134,0.0,1250.167524576578,1230.5959187608103,1232.1816672064477,1483.2760460818868,312792733.8412606,0.0,14093307.03785499,0.0 - 12/12 04:00:00,75976290.23786618,0.0,91167512.23951584,0.0,48646397.331492077,0.0,73880964.21724393,0.0,1253.9337725199753,1234.303205390061,1235.8937310529153,1487.7445555002058,308433914.9781853,0.0,14093307.03785499,0.0 - 12/12 05:00:00,75505653.55224908,0.0,90155101.27133298,0.0,48693832.64246063,0.0,73373817.11394814,0.0,1255.5574960251677,1235.9015092008743,1237.494094441324,1489.6710414577797,306515451.48804137,0.0,14093307.03785499,0.0 - 12/12 06:00:00,77895778.39930135,0.0,92391786.88663537,0.0,50729116.28725634,0.0,75752868.1552942,0.0,1250.5936503042345,1231.0153734107069,1232.6016623664737,1483.7816279915326,315482322.05914989,0.0,14093307.03785499,0.0 - 12/12 07:00:00,76419282.70713757,0.0,90817854.99285972,0.0,48898340.53093468,0.0,73502170.67224387,0.0,5005.760742757414,4927.394624505803,4933.744075408192,5939.144039646935,364539405.4395219,0.0,14093307.03785499,15502637.741640486 - 12/12 08:00:00,82739388.52620314,0.0,98169462.4158994,0.0,52677000.57106497,0.0,78658563.97779355,0.0,20002.68039322525,19689.534700172964,19714.906675303162,23732.416737310188,611546754.1126027,0.0,56373228.15141996,38756594.35410121 - 12/12 09:00:00,93836134.65172923,0.0,110492947.77808188,0.0,64336716.26779047,0.0,92905325.92292319,0.0,17508.311104259283,17234.215227749886,17256.42327313063,20772.942791881454,623549937.2498013,0.0,56373228.15141996,38756594.35410121 - 12/12 10:00:00,90566793.17066965,0.0,111075983.81493405,0.0,69581276.36341897,0.0,98199432.0049444,0.0,12531.102788468434,12334.926036640045,12350.820847837984,14867.675116917208,556927774.5974763,0.0,28186614.07570998,0.0 - 12/12 11:00:00,85562194.64671454,0.0,101644908.0071398,0.0,62856999.63874803,0.0,89550961.14276046,0.0,10160.308717615395,10001.247189237407,10014.134817046817,12054.81845062338,491644896.4636457,0.0,28186614.07570998,0.0 - 12/12 12:00:00,87633950.18223141,0.0,102502227.5346393,0.0,62931525.10266018,0.0,89964389.80392629,0.0,5030.172842107223,4951.4245478862189,4957.804963797567,5968.108063658363,418299130.1262749,0.0,28186614.07570998,0.0 - 12/12 13:00:00,91794506.47797905,0.0,106235241.73027879,0.0,64582987.17201241,0.0,92493334.03161398,0.0,5039.443982313667,4960.550546663201,4966.942722355444,5979.107917612131,430511832.0200842,0.0,28186614.07570998,0.0 - 12/12 14:00:00,89590086.25969261,0.0,103769779.31112558,0.0,63102224.15860765,0.0,90453040.77111824,0.0,5040.961357264712,4962.044166826321,4968.438267200596,5980.908225069783,422343597.7594452,0.0,28186614.07570998,0.0 - 12/12 15:00:00,85110545.49053633,0.0,99686876.82212299,0.0,60730758.47944175,0.0,87054307.99143397,0.0,7581.384943412046,7462.696947816965,7472.313394535871,8995.023836103615,446023597.6222615,0.0,28186614.07570998,0.0 - 12/12 16:00:00,86445075.61714089,0.0,100575125.14143127,0.0,60386251.6319756,0.0,86823118.42627,0.0,12642.805603331606,12444.880123098394,12460.916621359514,15000.20624279378,523405281.74291768,0.0,28186614.07570998,0.0 - 12/12 17:00:00,87541074.4739609,0.0,100968437.53232265,0.0,59387798.927050109,0.0,85857243.3399188,0.0,12653.398915471713,12455.307594960766,12471.357530083691,15012.774803276432,523088774.1109058,0.0,35233267.594637479,0.0 - 12/12 18:00:00,87507129.22351948,0.0,100791744.03057505,0.0,59636196.16910752,0.0,86021050.32934642,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,600075371.585987,0.0,14093307.03785499,0.0 - 12/12 19:00:00,72449715.87955974,0.0,85673277.16623965,0.0,44865505.24359689,0.0,68093396.08799476,0.0,17757.698998530952,17479.698908013474,17502.22328417223,21068.83200871362,536792325.89533999,0.0,63419881.67034747,0.0 - 12/12 20:00:00,54794460.85357292,0.0,67821872.91654806,0.0,28175740.06614074,0.0,47550477.27640524,0.0,10201.540650018951,10041.833628047378,10054.773555625767,12103.738564500582,350989342.1461606,0.0,63419881.67034747,69761869.8373822 - 12/12 21:00:00,58233846.17867065,0.0,71125477.97870097,0.0,31104307.855055877,0.0,51169329.30614574,0.0,10155.137858614566,9996.157280998861,10009.038349941988,12048.683423802719,363585422.20666256,0.0,49326574.63249246,69761869.8373822 - 12/12 22:00:00,60728976.86214039,0.0,73647388.56830289,0.0,32839784.180726924,0.0,53553900.23844543,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,297177167.05184909,0.0,35233267.594637479,69761869.8373822 - 12/12 23:00:00,59092947.33026314,0.0,71663631.13568522,0.0,31736083.12024692,0.0,52017717.935374658,0.0,5115.893371979897,5035.803106872587,5042.292253169529,6069.812200198502,291060062.87756386,0.0,35233267.594637479,62010550.96656194 - 12/12 24:00:00,60663748.413426447,0.0,72837949.64395307,0.0,33845161.53371195,0.0,54292235.246280457,0.0,2557.9466859899487,2517.9015534362936,2521.1461265847649,3034.906100099251,259913936.51536883,0.0,35233267.594637479,46507913.22492146 - 12/13 01:00:00,67466611.68997342,0.0,79238977.17034438,0.0,40798234.7221946,0.0,62498053.75958103,0.0,2559.951033439702,2519.8745224528099,2523.1216379732356,3037.2841818377376,288306710.294626,0.0,21139960.556782485,23253956.61246073 - 12/13 02:00:00,32757432.630251387,0.0,42988696.043858218,0.0,11026977.898511354,0.0,24772912.571449676,0.0,1276.5913826487129,1256.6061064054603,1258.2253716326825,1514.6269450238029,130647798.44462897,0.0,14093307.03785499,0.0 - 12/13 03:00:00,54830949.88455662,0.0,65262856.24701114,0.0,30702928.090104648,0.0,49456044.76445513,0.0,1277.404843485923,1257.406832361513,1259.027129405858,1515.5920852554437,219366730.19195903,0.0,14093307.03785499,0.0 - 12/13 04:00:00,54963009.565271239,0.0,64882896.19416754,0.0,31486029.26009655,0.0,49979217.961941268,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,220440880.4711147,0.0,14093307.03785499,0.0 - 12/13 05:00:00,55123599.23828849,0.0,64702410.0325846,0.0,32098078.525258144,0.0,50281558.74456831,0.0,1278.9733429949743,1258.9507767181468,1260.5730632923824,1517.4530500496256,221343067.37969799,0.0,14093307.03785499,0.0 - 12/13 06:00:00,54849205.61482019,0.0,64147937.422507587,0.0,32224062.746658528,0.0,50079217.248791757,0.0,1279.975516719851,1259.9372612264049,1261.5608189866178,1518.6420909188688,220452839.50904433,0.0,14093307.03785499,0.0 - 12/13 07:00:00,52042603.893959898,0.0,61228658.84810599,0.0,29631207.350440109,0.0,46743034.947013217,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,266210379.7816838,0.0,14093307.03785499,15502637.741640486 - 12/13 08:00:00,55043732.72492579,0.0,65402530.03271905,0.0,34060831.473233,0.0,48831926.4894984,0.0,20467.634511213982,20147.209874707485,20173.171611014004,24284.06704991402,509598519.6890344,0.0,56373228.15141996,38756594.35410121 - 12/13 09:00:00,66012693.038270469,0.0,76838364.99850965,0.0,42398119.17923026,0.0,62427378.815802607,0.0,17933.19802506331,17652.450464546157,17675.19744871789,21277.05490448457,516012999.06593587,0.0,56373228.15141996,38756594.35410121 - 12/13 10:00:00,68394230.21497683,0.0,79693740.88723737,0.0,49268405.353516418,0.0,70063259.02043896,0.0,12807.042032962763,12606.545400785399,12622.790221257652,15195.06649726121,459052834.42433086,0.0,28186614.07570998,0.0 - 12/13 11:00:00,71216947.95514895,0.0,81426883.83709553,0.0,49573471.6895525,0.0,70959066.30675742,0.0,10233.817255606991,10073.604937353743,10086.585805507002,12142.03352495701,426306119.27288356,0.0,28186614.07570998,0.0 - 12/13 12:00:00,68892810.70250735,0.0,79558995.72774717,0.0,48331695.44866989,0.0,69504678.18663959,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,342883046.2261507,0.0,28186614.07570998,0.0 - 12/13 13:00:00,68790929.4106108,0.0,79281634.49226587,0.0,47674740.03364291,0.0,68812130.49571932,0.0,5119.902066879404,5039.7490449056199,5046.243275946471,6074.568363675475,341169100.337304,0.0,28186614.07570998,0.0 - 12/13 14:00:00,71632712.0525726,0.0,81638352.6089581,0.0,48031690.195891518,0.0,69702628.58190862,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,347658663.0185953,0.0,28186614.07570998,0.0 - 12/13 15:00:00,70430596.56936273,0.0,80265114.41894807,0.0,47075251.743752028,0.0,68408323.75647187,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,381243675.9897263,0.0,28186614.07570998,0.0 - 12/13 16:00:00,72999204.76964957,0.0,83738683.7751006,0.0,47562957.67991794,0.0,70024744.16563466,0.0,12838.428143572213,12637.440155978185,12653.724787495865,15232.304919417824,466428423.21357348,0.0,28186614.07570998,0.0 - 12/13 17:00:00,71225965.64863082,0.0,81692516.13321573,0.0,45469027.47199265,0.0,67319101.18547586,0.0,12844.588811153453,12643.504377159172,12659.796823044806,15239.614316335828,457901626.01901087,0.0,35233267.594637479,0.0 - 12/13 18:00:00,69483584.80653052,0.0,78938114.5302141,0.0,45230869.60296789,0.0,66070521.87808867,0.0,18011.640907955352,17729.665309473017,17752.511792853595,21370.12439068705,529233283.4612896,0.0,14093307.03785499,0.0 - 12/13 19:00:00,53876963.705818239,0.0,63424309.122257027,0.0,30138826.11420118,0.0,47723719.532940749,0.0,18009.141790466303,17727.20531613447,17750.048629562545,21367.15928318348,464636616.54486569,0.0,63419881.67034747,0.0 - 12/13 20:00:00,39515614.10904505,0.0,49312336.89304823,0.0,15999285.028013319,0.0,30650266.40842699,0.0,10286.546152036652,10125.50835307323,10138.556104075316,12204.594347785085,289396240.28362658,0.0,63419881.67034747,69761869.8373822 - 12/13 21:00:00,42507751.83233669,0.0,52299673.070966679,0.0,18720509.15078144,0.0,34067710.55870459,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,301423001.9586421,0.0,49326574.63249246,69761869.8373822 - 12/13 22:00:00,49106057.7707458,0.0,59971783.89977744,0.0,23239787.393273213,0.0,40805924.13073005,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,250001559.4264048,0.0,35233267.594637479,69761869.8373822 - 12/13 23:00:00,52984463.20903105,0.0,64382151.3462996,0.0,26025169.978406826,0.0,44796949.5398224,0.0,5135.371257428885,5054.976062391274,5061.489914998346,6092.92196776713,265029867.20286817,0.0,35233267.594637479,62010550.96656194 - 12/13 24:00:00,57256825.57011564,0.0,68714301.03750572,0.0,29888999.48547601,0.0,49638613.274855,0.0,2566.841969485217,2526.6575796090298,2529.9134357909335,3045.460014412541,243906682.1654242,0.0,35233267.594637479,46507913.22492146 - 12/14 01:00:00,65676137.24604146,0.0,77057099.56324558,0.0,38000350.263870339,0.0,59504060.43997908,0.0,2566.4134808837027,2526.2357990765069,2529.4911117511439,3044.9516290432604,278639178.78785309,0.0,21139960.556782485,23253956.61246073 - 12/14 02:00:00,29919600.736141616,0.0,39209359.2844286,0.0,6653464.990526514,0.0,20946863.52925548,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,115920237.98532205,0.0,14093307.03785499,0.0 - 12/14 03:00:00,48438481.49562325,0.0,57366443.74440291,0.0,25601887.252032255,0.0,42481824.89127802,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,193079586.82830627,0.0,14093307.03785499,0.0 - 12/14 04:00:00,51626226.31845726,0.0,60431089.456638928,0.0,28732874.075358098,0.0,46093241.3644273,0.0,1278.9733429949743,1258.9507767181468,1260.5730632923824,1517.4530500496256,206020852.05388005,0.0,14093307.03785499,0.0 - 12/14 05:00:00,55466649.756282027,0.0,64386916.21010552,0.0,32162907.270731696,0.0,50219705.233949977,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,221329681.99144856,0.0,14093307.03785499,0.0 - 12/14 06:00:00,59115214.681269858,0.0,68413764.72489813,0.0,35268000.27676582,0.0,54103017.51307428,0.0,1272.843363925855,1252.916763614901,1254.531274747374,1510.1800638798023,235945694.47421269,0.0,14093307.03785499,0.0 - 12/14 07:00:00,60200214.26515442,0.0,70631242.82516235,0.0,35644073.633923638,0.0,54922738.57193581,0.0,1268.4070713236397,1248.5499220009629,1250.1588060123023,1504.916572050973,240377585.83317263,0.0,14093307.03785499,15502637.741640486 - 12/14 08:00:00,70456063.8750271,0.0,82676936.52925048,0.0,42290780.5361485,0.0,64468268.51545763,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842497,335476091.23977366,0.0,56373228.15141996,38756594.35410121 - 12/14 09:00:00,86156333.77478414,0.0,99108897.51093659,0.0,55869034.7519245,0.0,81469671.67641594,0.0,12598.609955784168,12401.376366658002,12417.356805888612,14947.769794030328,511118344.2345611,0.0,56373228.15141996,38756594.35410121 - 12/14 10:00:00,91492769.60469635,0.0,106223296.19842366,0.0,64766895.790317688,0.0,92143540.52575612,0.0,12567.548102487011,12370.800792468795,12386.74183195128,14910.916090797085,542676126.6629288,0.0,28186614.07570998,0.0 - 12/14 11:00:00,77384332.68409223,0.0,104985726.13334331,0.0,63867240.660964969,0.0,91520009.87735346,0.0,12551.544829014181,12355.048053227589,12370.968793697712,14891.928817704074,525567475.1328707,0.0,28186614.07570998,0.0 - 12/14 12:00:00,73519918.9313163,0.0,105924636.40018624,0.0,64697761.27122845,0.0,92656528.31258309,0.0,7523.602635119852,7405.819232340365,7415.362386317491,8926.467333001236,449375350.62771829,0.0,28186614.07570998,0.0 - 12/14 13:00:00,69363771.74355017,0.0,106786014.89772593,0.0,65113040.31643453,0.0,91598387.76102327,0.0,7518.66167308106,7400.955621984026,7410.4925087027909,8920.605070150325,445363788.2648394,0.0,28186614.07570998,0.0 - 12/14 14:00:00,65474555.72441274,0.0,101651804.7151626,0.0,62217052.53532683,0.0,88311272.43945772,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,430267896.6629926,0.0,28186614.07570998,0.0 - 12/14 15:00:00,52504040.37506428,0.0,99051836.04786696,0.0,58788625.34072965,0.0,84487008.13635531,0.0,7518.66167308106,7400.955621984026,7410.4925087027909,8920.605070150325,407334083.4461217,0.0,28186614.07570998,0.0 - 12/14 16:00:00,67784272.23895993,0.0,103826671.74967252,0.0,59788198.139665167,0.0,87520808.82427414,0.0,17508.311104259283,17234.215227749886,17256.42327313063,20772.942791881454,580898763.5818482,0.0,28186614.07570998,0.0 - 12/14 17:00:00,99736844.73932369,0.0,118578698.55221553,0.0,68257954.5645524,0.0,99370855.46165233,0.0,22471.993146873796,22120.189902013302,22148.694024462893,26662.162060051567,722195294.1979895,0.0,35233267.594637479,0.0 - 12/14 18:00:00,103699272.29724764,0.0,121273794.9866275,0.0,70925792.70762189,0.0,102593591.10459785,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,660292333.0545358,0.0,14093307.03785499,0.0 - 12/14 19:00:00,90487800.32342349,0.0,107809933.7400091,0.0,57803874.51859446,0.0,86714185.89593227,0.0,17555.07281527965,17280.24487546085,17302.51223474081,20828.423777002878,605494307.8069023,0.0,63419881.67034747,0.0 - 12/14 20:00:00,74362457.26598051,0.0,90790479.04945515,0.0,42323254.91385263,0.0,67490130.93208839,0.0,15042.275900845721,14806.786265484183,14825.866320884517,17847.08615738211,500045574.8819242,0.0,63419881.67034747,69761869.8373822 - 12/14 21:00:00,75345949.43617445,0.0,90865067.75388627,0.0,43845700.3656237,0.0,68813254.22021133,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,466558657.1902836,0.0,49326574.63249246,69761869.8373822 - 12/14 22:00:00,77033631.8906396,0.0,92331820.42414087,0.0,45552828.31641589,0.0,70863468.70858976,0.0,10054.03848198961,9896.640633975037,9909.393465561023,11928.732872637669,436221448.9747741,0.0,35233267.594637479,69761869.8373822 - 12/14 23:00:00,78499076.14871505,0.0,93711990.14974454,0.0,46428784.64123179,0.0,72132118.69740194,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,403777370.40576139,0.0,35233267.594637479,62010550.96656194 - 12/14 24:00:00,82458549.83707652,0.0,97526706.15586865,0.0,49711615.3236788,0.0,76257209.22485957,0.0,5031.737826116202,4952.96503177859,4959.347432760667,5969.964857445905,381244535.07464846,0.0,35233267.594637479,46507913.22492146 - 12/15 01:00:00,89029656.47744625,0.0,103638751.1408549,0.0,56343078.05900212,0.0,84100966.71492823,0.0,2523.475425079289,2483.9699465457977,2487.1707953554634,2994.0072648776779,370871496.74692109,0.0,21139960.556782485,23253956.61246073 - 12/15 02:00:00,44658279.97276062,0.0,57643794.4186628,0.0,19234211.093438928,0.0,35596401.7707578,0.0,1264.9888221373117,1245.1851861433207,1246.7897343490759,1500.860949873988,176060856.14863346,0.0,14093307.03785499,0.0 - 12/15 03:00:00,69146227.52424231,0.0,81753546.74469072,0.0,40766634.31042327,0.0,63859474.134963329,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642634,274469719.0086684,0.0,14093307.03785499,0.0 - 12/15 04:00:00,68819386.77785096,0.0,80731726.3013229,0.0,41449934.028437498,0.0,63979460.46418531,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,273964768.9105968,0.0,14093307.03785499,0.0 - 12/15 05:00:00,68556927.98894289,0.0,80081351.34115669,0.0,41651926.64192833,0.0,63746160.06815681,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,273035275.0276062,0.0,14093307.03785499,0.0 - 12/15 06:00:00,67828766.68058016,0.0,78997118.49281106,0.0,41553110.97859806,0.0,63149634.69338345,0.0,1270.676584786525,1250.7839058072094,1252.395668534701,1507.6092631420316,270541906.3655464,0.0,14093307.03785499,0.0 - 12/15 07:00:00,68966383.6223135,0.0,80420724.7436493,0.0,42196277.043299209,0.0,64087258.94905108,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,274504877.81975778,0.0,14093307.03785499,15502637.741640486 - 12/15 08:00:00,79261840.96051333,0.0,92724638.91303408,0.0,49190606.045775879,0.0,73817640.33371091,0.0,1253.5229917371435,1233.8988554570156,1235.4888600737098,1487.2571797818419,313751330.64641317,0.0,56373228.15141996,38756594.35410121 - 12/15 09:00:00,88534464.27240369,0.0,103811364.25341806,0.0,59931607.41508491,0.0,86887833.73286957,0.0,5012.441115387373,4933.970414656019,4940.328339135194,5947.070046766882,414166985.37117996,0.0,56373228.15141996,38756594.35410121 - 12/15 10:00:00,89492479.60793174,0.0,105727107.30098346,0.0,65795046.94917352,0.0,93313147.44899133,0.0,7523.602635119852,7405.819232340365,7415.362386317491,8926.467333001236,466904287.0194842,0.0,28186614.07570998,0.0 - 12/15 11:00:00,83038457.09058753,0.0,100206363.01381795,0.0,62485511.77628623,0.0,89041474.31394898,0.0,7540.528861492207,7422.480475481276,7432.045099170768,8946.549654478253,447601580.9208816,0.0,28186614.07570998,0.0 - 12/15 12:00:00,82693359.67621728,0.0,98542481.08096847,0.0,60727866.32991769,0.0,87008888.78603034,0.0,5036.385331986314,4957.539780077313,4963.928076089508,5975.478945754587,404332591.55520156,0.0,28186614.07570998,0.0 - 12/15 13:00:00,87584274.8200435,0.0,101561477.22938562,0.0,60729984.636024009,0.0,87711157.14952068,0.0,5043.972133944233,4965.007809235265,4971.405728565276,5984.480396671624,413060411.68127289,0.0,28186614.07570998,0.0 - 12/15 14:00:00,86679348.09133208,0.0,100179031.26684344,0.0,59197676.94816373,0.0,85797918.67837993,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,445391286.45909318,0.0,28186614.07570998,0.0 - 12/15 15:00:00,81770167.00289858,0.0,95149867.08555866,0.0,56331190.54784382,0.0,81668645.81772223,0.0,10141.919339642354,9983.14570040707,9996.010002600542,12033.000155624079,466674541.16780999,0.0,28186614.07570998,0.0 - 12/15 16:00:00,81884980.96618685,0.0,94994597.48052356,0.0,55555292.450081247,0.0,80744789.6516612,0.0,12690.659255201965,12491.984617121632,12508.081814331157,15056.98277405177,503071411.0069964,0.0,28186614.07570998,0.0 - 12/15 17:00:00,77315860.86733696,0.0,89775439.18410175,0.0,49959973.29545794,0.0,73983113.38140708,0.0,15387.931377965315,15147.030441627503,15166.548936376803,18257.193186503788,521285720.9212079,0.0,35233267.594637479,0.0 - 12/15 18:00:00,74402874.29310572,0.0,85953635.73229666,0.0,48188300.09674768,0.0,71120920.55226639,0.0,17961.863908977062,17680.66757869962,17703.450923503002,21311.065881504175,548431104.5280784,0.0,14093307.03785499,0.0 - 12/15 19:00:00,60961588.182450819,0.0,72385094.62173522,0.0,35348219.035177949,0.0,55363551.65348162,0.0,10263.922233701178,10103.238616399787,10116.257670573144,12177.751932288102,377638667.1235095,0.0,63419881.67034747,0.0 - 12/15 20:00:00,45808479.546799849,0.0,57254163.929099,0.0,20567335.08445353,0.0,37383275.051325637,0.0,7699.240442651108,7578.707397229518,7588.473335253433,9134.854887129783,276217847.43582788,0.0,63419881.67034747,69761869.8373822 - 12/15 21:00:00,47000263.78673276,0.0,58144597.999156627,0.0,22036041.009085008,0.0,38992534.686067197,0.0,5135.371257428885,5054.976062391274,5061.489914998346,6092.92196776713,243014570.61034987,0.0,49326574.63249246,69761869.8373822 - 12/15 22:00:00,48360949.8476058,0.0,59224845.9697721,0.0,23469943.361667977,0.0,40628735.30329278,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,248609776.6198465,0.0,35233267.594637479,69761869.8373822 - 12/15 23:00:00,49083718.55524114,0.0,59726290.902239579,0.0,24310540.486545825,0.0,41550544.968765947,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,251584773.58571885,0.0,35233267.594637479,62010550.96656194 - 12/15 24:00:00,51603610.9882219,0.0,62012692.063441719,0.0,26962199.968693675,0.0,44627146.55582703,0.0,5141.764219933242,5061.26894187502,5067.790903499606,6100.506973744168,262142441.31677164,0.0,35233267.594637479,46507913.22492146 - 12/16 01:00:00,58260687.55433787,0.0,68322270.0295789,0.0,33773541.04943532,0.0,52661104.47441818,0.0,2572.3730302024148,2532.1020505388817,2535.364922477284,3052.0224068199288,251508307.78390888,0.0,21139960.556782485,23253956.61246073 - 12/16 02:00:00,21420627.621760698,0.0,30435781.195186117,0.0,2219250.7277093499,0.0,11820941.65298381,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,85144658.20261488,0.0,14093307.03785499,0.0 - 12/16 03:00:00,45195866.329305339,0.0,54679690.31709018,0.0,21464588.953378049,0.0,38606399.953016478,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.351847403107,179183582.39577005,0.0,14093307.03785499,0.0 - 12/16 04:00:00,44394662.60101144,0.0,52632728.36172756,0.0,23456961.901394849,0.0,38908432.9337388,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,178640842.80284757,0.0,14093307.03785499,0.0 - 12/16 05:00:00,44571121.85050514,0.0,52535344.30223603,0.0,24306551.913025205,0.0,39411358.555209938,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,180066990.6921748,0.0,14093307.03785499,0.0 - 12/16 06:00:00,45609475.878409627,0.0,53473917.19035136,0.0,25568064.924174966,0.0,40638591.20231527,0.0,1285.0548875151088,1264.9371135243076,1266.5671141045305,1524.668570475939,184518468.8634828,0.0,14093307.03785499,0.0 - 12/16 07:00:00,43526517.67340736,0.0,51408376.07243273,0.0,23578714.452115358,0.0,38074963.21373631,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,233466577.64357008,0.0,14093307.03785499,15502637.741640486 - 12/16 08:00:00,49568743.73512211,0.0,62162360.173666689,0.0,33387912.999594928,0.0,49480012.03663885,0.0,20570.09251340368,20248.06387775938,20274.15557474279,24405.629558449713,502391618.4327026,0.0,56373228.15141996,38756594.35410121 - 12/16 09:00:00,24744442.241571838,0.0,60914967.10969231,0.0,34613743.63788458,0.0,50627368.517147589,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,440098396.8615385,0.0,56373228.15141996,38756594.35410121 - 12/16 10:00:00,1841336.1191068139,0.0,56554672.18470884,0.0,32933026.649321993,0.0,48716165.076078537,0.0,12854.410549833105,12653.172354687547,12669.477258749017,15251.26743436042,332387179.3806845,0.0,28186614.07570998,0.0 - 12/16 11:00:00,0.0,0.0,57864788.397385288,0.0,35016804.34968669,0.0,51354259.47726561,0.0,10285.04625670184,10124.03193887969,10137.077787371394,12202.814779224856,298132146.96817758,0.0,28186614.07570998,0.0 - 12/16 12:00:00,0.0,8858049.95078639,60674249.70131746,0.0,37566220.5283098,0.0,54074501.02130048,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,229274340.17347426,8858049.95078639,28186614.07570998,0.0 - 12/16 13:00:00,0.0,14086258.56237606,57175154.75334349,0.0,35874737.0443676,0.0,46791832.526559729,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,216844636.50812466,14086258.56237606,28186614.07570998,0.0 - 12/16 14:00:00,0.0,8613385.29005222,48626191.954987298,0.0,30712706.92015345,0.0,41645502.03774025,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,198038712.81863369,8613385.29005222,28186614.07570998,0.0 - 12/16 15:00:00,0.0,538313.7471821391,47371930.642185259,0.0,27601152.304652364,0.0,39790653.30351052,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,230299551.13832403,538313.7471821391,28186614.07570998,0.0 - 12/16 16:00:00,7986959.593334483,0.0,52750628.90315312,0.0,29087468.299899967,0.0,43555372.22663055,0.0,12854.410549833105,12653.172354687547,12669.477258749017,15251.26743436042,325722408.37448647,0.0,28186614.07570998,0.0 - 12/16 17:00:00,46182392.06546114,0.0,67983324.64367427,0.0,37801089.75334759,0.0,55790870.7669873,0.0,12829.902792126473,12629.048270499732,12645.322088216431,15222.189915360126,399732944.2678003,0.0,35233267.594637479,0.0 - 12/16 18:00:00,53901783.09565322,0.0,73690944.4571441,0.0,42451498.621294129,0.0,61805515.79283969,0.0,17929.85884614787,17649.163561099558,17671.90630976071,21273.093096165692,500136220.4943569,0.0,14093307.03785499,0.0 - 12/16 19:00:00,41213419.445636648,0.0,59334244.05368204,0.0,28154750.322540046,0.0,44523308.23782899,0.0,17973.799401001095,17692.416218369457,17715.21470249421,21325.226887184952,442169688.0122667,0.0,63419881.67034747,0.0 - 12/16 20:00:00,28254660.576963024,0.0,45142380.47737005,0.0,13951627.470414386,0.0,27347617.764426389,0.0,10267.367877940867,10106.630318436119,10119.653743163733,12181.840057650164,268328057.479061,0.0,63419881.67034747,69761869.8373822 - 12/16 21:00:00,31919876.323668817,0.0,47782205.44227092,0.0,16379796.760793038,0.0,30404101.555610178,0.0,10272.40316498836,10111.586777125553,10124.616588756084,12187.814233523293,280193094.8341588,0.0,49326574.63249246,69761869.8373822 - 12/16 22:00:00,35425537.188229519,0.0,50442588.5802576,0.0,18844012.925457669,0.0,33520699.249367857,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,215110844.17519097,0.0,35233267.594637479,69761869.8373822 - 12/16 23:00:00,37915269.9300254,0.0,52312682.144375119,0.0,20390030.522132376,0.0,35564611.06347777,0.0,5138.6391256853189,5058.192771560533,5064.7107692256909,6096.799168711188,223072624.2666685,0.0,35233267.594637479,62010550.96656194 - 12/16 24:00:00,41805816.76930501,0.0,55522607.46277303,0.0,23579117.798233466,0.0,39438018.187652368,0.0,2569.3195628426594,2529.0963857802669,2532.3553846128454,3048.399584355594,198790575.52129279,0.0,35233267.594637479,46507913.22492146 - 12/17 01:00:00,50057506.65511057,0.0,63262510.96920066,0.0,31086784.118978155,0.0,48646452.002066988,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,231521649.61565,0.0,21139960.556782485,23253956.61246073 - 12/17 02:00:00,12357397.932186744,0.0,23334812.908929845,0.0,13396.280715591272,0.0,7349049.306376343,0.0,1284.2557518663967,1264.1504884932547,1265.7794754268362,1523.7204265336252,62271118.540560919,0.0,14093307.03785499,0.0 - 12/17 03:00:00,38976538.212867218,0.0,50201624.02393865,0.0,19192373.83631137,0.0,36115497.0140285,0.0,1280.7042032962764,1260.65454007854,1262.279022125765,1519.506649726121,163649352.98196186,0.0,14093307.03785499,0.0 - 12/17 04:00:00,42319167.2692235,0.0,52757924.565604958,0.0,24457855.013278434,0.0,39828373.61381924,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,178540718.71212475,0.0,14093307.03785499,0.0 - 12/17 05:00:00,43674396.79835097,0.0,53660212.20635703,0.0,25691577.22285012,0.0,41024901.16744163,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,183228485.64519838,0.0,14093307.03785499,0.0 - 12/17 06:00:00,45031291.885593648,0.0,54632922.40102292,0.0,26795012.551638426,0.0,42169987.459339197,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,187806612.5477928,0.0,14093307.03785499,0.0 - 12/17 07:00:00,42668588.464313808,0.0,51963440.72896908,0.0,24288514.11559131,0.0,38975257.37648627,0.0,5128.409227478876,5048.123024318898,5054.628046086938,6084.661784988465,234632760.1837039,0.0,14093307.03785499,15502637.741640486 - 12/17 08:00:00,44203028.645759109,0.0,54743189.15270718,0.0,28189358.439775837,0.0,41386164.80020441,0.0,20506.32118620314,20185.29090258269,20211.301710180476,24329.967313027475,475360113.0416241,0.0,56373228.15141996,38756594.35410121 - 12/17 09:00:00,60754622.16786477,0.0,71198227.10729048,0.0,38986457.72345693,0.0,57231831.70070705,0.0,17943.031037927743,17662.129539759848,17684.888996407917,21288.72139889904,496654714.20209959,0.0,56373228.15141996,38756594.35410121 - 12/17 10:00:00,66314141.801289279,0.0,76058930.3032152,0.0,46886589.485561508,0.0,66595667.95644326,0.0,12816.45074137696,12615.80681411418,12632.063568862799,15206.229570642176,447629312.0484953,0.0,28186614.07570998,0.0 - 12/17 11:00:00,64307522.55798901,0.0,74424986.83462751,0.0,45799054.316118869,0.0,65317254.57431008,0.0,10247.541728607606,10087.114551169234,10100.112827838793,12158.317088276897,403183928.58825859,0.0,28186614.07570998,0.0 - 12/17 12:00:00,64887253.2685968,0.0,75317571.78524374,0.0,45695141.03987291,0.0,65683085.941209908,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,328221924.7894499,0.0,28186614.07570998,0.0 - 12/17 13:00:00,64326542.074654888,0.0,75167326.01464084,0.0,45216885.881935369,0.0,65337257.5512055,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,326701291.101701,0.0,28186614.07570998,0.0 - 12/17 14:00:00,63955430.55157676,0.0,75194830.7703924,0.0,44736469.28241494,0.0,65016076.59686203,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,325598519.1997026,0.0,28186614.07570998,0.0 - 12/17 15:00:00,63999031.204845819,0.0,76134109.3273673,0.0,44721629.41459608,0.0,65341264.58962467,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,365239602.5341187,0.0,28186614.07570998,0.0 - 12/17 16:00:00,69303660.59750396,0.0,81187977.34385047,0.0,46926345.43879333,0.0,68756063.90777448,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,457661212.6893891,0.0,28186614.07570998,0.0 - 12/17 17:00:00,74800042.45275581,0.0,86715991.62952814,0.0,49330004.811688158,0.0,72528749.9116522,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,474225780.4927841,0.0,35233267.594637479,0.0 - 12/17 18:00:00,81616854.77450007,0.0,93987563.04289368,0.0,54641110.47930655,0.0,79618526.37194854,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,576376338.2012163,0.0,14093307.03785499,0.0 - 12/17 19:00:00,71657833.40085778,0.0,84807924.24337077,0.0,43464776.338525447,0.0,66840293.45369844,0.0,17757.698998530952,17479.698908013474,17502.22328417223,21068.83200871362,532481258.9544014,0.0,63419881.67034747,0.0 - 12/17 20:00:00,61101211.70871327,0.0,75001878.28493242,0.0,31826575.651004435,0.0,53427825.13041423,0.0,10125.511323714041,9966.994555029029,9979.838044823167,12013.53267105761,372866646.51571026,0.0,63419881.67034747,69761869.8373822 - 12/17 21:00:00,67340663.04260917,0.0,81672224.2242879,0.0,36721433.80619135,0.0,59996869.575353797,0.0,10096.856299633102,9938.788130695666,9951.595273633082,11979.534578815092,396811578.0664393,0.0,49326574.63249246,69761869.8373822 - 12/17 22:00:00,74203126.45812083,0.0,89072843.70988819,0.0,42071492.07464043,0.0,67224200.86424884,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,347908596.95267698,0.0,35233267.594637479,69761869.8373822 - 12/17 23:00:00,80170936.19882626,0.0,95599942.57436416,0.0,46577439.32102622,0.0,73388111.33274588,0.0,5015.735090079901,4937.212821560244,4943.574924211661,5950.978222000823,370787433.235232,0.0,35233267.594637479,62010550.96656194 - 12/17 24:00:00,88358514.94505555,0.0,104321814.36957968,0.0,53202201.50711895,0.0,82102622.94299919,0.0,2496.01695936671,2456.941348236321,2460.107367938313,2961.428843463777,365333334.0331718,0.0,35233267.594637479,46507913.22492146 - 12/18 01:00:00,100386316.92313369,0.0,116753803.54344827,0.0,63854596.89032695,0.0,95566907.08280178,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,413803507.7088433,0.0,21139960.556782485,23253956.61246073 - 12/18 02:00:00,60887157.08461914,0.0,76046873.90229579,0.0,30353171.253121213,0.0,51441058.69315978,0.0,1241.7149221074977,1222.275643360215,1223.850670281766,1473.2473559079954,237308179.86316283,0.0,14093307.03785499,0.0 - 12/18 03:00:00,91264752.74786419,0.0,106899322.88036612,0.0,55514155.78225091,0.0,85773948.51446563,0.0,1237.957786492029,1218.5773264036998,1220.1475876663727,1468.7896579189258,357975880.4154786,0.0,14093307.03785499,0.0 - 12/18 04:00:00,96438093.05568069,0.0,112475828.70227465,0.0,60548647.97984994,0.0,91206547.73905345,0.0,1232.605919333036,1213.3092437234703,1214.872716523908,1462.4398718281089,379112737.3819294,0.0,14093307.03785499,0.0 - 12/18 05:00:00,100982343.662696,0.0,115977898.25184599,0.0,63926235.07003701,0.0,95248925.51915285,0.0,1229.5980191711015,1210.3484327996942,1211.9080902930528,1458.8711131045816,394534014.86305829,0.0,14093307.03785499,0.0 - 12/18 06:00:00,104097959.92678163,0.0,119120187.12945879,0.0,66350157.501012269,0.0,98228991.70997703,0.0,1228.0710196354667,1208.845338726651,1210.403059329879,1457.0593864447065,406173059.9621218,0.0,14093307.03785499,0.0 - 12/18 07:00:00,104305516.78041174,0.0,119491910.51944216,0.0,65705071.55772872,0.0,97656868.50134118,0.0,4895.70046577463,4819.057361690909,4825.2672089724069,5808.561722265917,460414279.6902577,0.0,14093307.03785499,15502637.741640486 - 12/18 08:00:00,104646340.21844365,0.0,126565312.45481584,0.0,68630569.81809622,0.0,102250766.93345493,0.0,19540.48322783841,19234.573317633054,19259.35902858491,23184.037443729165,694479420.2888386,0.0,56373228.15141996,38756594.35410121 - 12/18 09:00:00,71347621.57047051,0.0,125567634.65844313,0.0,69566048.82679482,0.0,103275317.51203904,0.0,17097.922824358608,16830.25165292892,16851.939150011793,20286.032763263018,625594749.573772,0.0,56373228.15141996,38756594.35410121 - 12/18 10:00:00,55650078.07179353,0.0,129870151.84167826,0.0,77803266.73068184,0.0,112594609.27132379,0.0,12223.430714728045,12032.070626610232,12047.575177700535,14502.633945989313,558818663.5895786,0.0,28186614.07570998,0.0 - 12/18 11:00:00,44656223.36162208,0.0,132053644.43262679,0.0,80689350.4251097,0.0,116212797.88859558,0.0,9803.938628121985,9650.456139975791,9662.89173771373,11631.998942922071,520309443.723395,0.0,28186614.07570998,0.0 - 12/18 12:00:00,42726806.50179679,0.0,135140439.80515964,0.0,83324902.7028131,0.0,119116919.88936772,0.0,4908.178289397092,4831.339842656826,4837.565517168694,5823.366183686158,453750688.29760888,0.0,28186614.07570998,0.0 - 12/18 13:00:00,48716394.11936878,0.0,133146024.18390309,0.0,81985001.6167473,0.0,112809444.60050433,0.0,4920.414481703921,4843.384475090433,4849.625670340562,5837.883958774036,450281575.42979577,0.0,28186614.07570998,0.0 - 12/18 14:00:00,49252330.146573517,0.0,126468910.9708488,0.0,77809177.09516406,0.0,108565787.13644874,0.0,4920.414481703921,4843.384475090433,4849.625670340562,5837.883958774036,435720916.2583074,0.0,28186614.07570998,0.0 - 12/18 15:00:00,62727353.45682533,0.0,124744582.56108773,0.0,74109531.57599496,0.0,106202453.42479152,0.0,7392.653419408982,7276.92005103,7286.297105255542,8771.101087199155,478401019.0051168,0.0,28186614.07570998,0.0 - 12/18 16:00:00,86554433.10188778,0.0,131105294.81599179,0.0,75651534.55641358,0.0,110184334.03910543,0.0,12335.947525640606,12142.825965857961,12158.473236507452,14636.130847106348,588079755.7838032,0.0,28186614.07570998,0.0 - 12/18 17:00:00,115318430.81558624,0.0,142947452.79199816,0.0,82375661.04027021,0.0,119580768.06376215,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,644509515.2572547,0.0,35233267.594637479,0.0 - 12/18 18:00:00,121435640.1162813,0.0,147252679.13673244,0.0,85910092.35833138,0.0,124098756.09120016,0.0,17228.505200011376,16958.789737130726,16980.642868654708,20440.963767339308,736489213.3658353,0.0,14093307.03785499,0.0 - 12/18 19:00:00,109900779.14504287,0.0,134593562.01324553,0.0,72630887.12656245,0.0,108280630.82902375,0.0,17214.37226839542,16944.878059195715,16966.71326410274,20424.19558346414,682986432.1444434,0.0,63419881.67034747,0.0 - 12/18 20:00:00,97585905.57421585,0.0,121351475.53579901,0.0,59052559.6387196,0.0,91999427.3924041,0.0,9824.568157083733,9670.762709813209,9683.224474639032,11656.475091557651,516995477.7002756,0.0,63419881.67034747,69761869.8373822 - 12/18 21:00:00,102427151.35235949,0.0,125445315.73999071,0.0,62479482.980074618,0.0,96389266.44030644,0.0,9812.230633412712,9658.61833237682,9671.064447932766,11641.837090674217,533562718.3285587,0.0,49326574.63249246,69761869.8373822 - 12/18 22:00:00,107492815.13491923,0.0,130034093.19890985,0.0,66270301.30099227,0.0,101263177.9633267,0.0,4897.796701109124,4821.1207800701899,4827.3332862768779,5811.048825472072,478346666.13268986,0.0,35233267.594637479,69761869.8373822 - 12/18 23:00:00,112604575.45920433,0.0,132988859.59182468,0.0,69188940.60862012,0.0,105106337.10122457,0.0,4887.249802103503,4810.7389947360229,4816.938122952661,5798.535332401788,493017176.86877205,0.0,35233267.594637479,62010550.96656194 - 12/18 24:00:00,118354198.85650634,0.0,138256307.5812426,0.0,73709643.96604687,0.0,110813613.58635837,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,477633992.5005411,0.0,35233267.594637479,46507913.22492146 - 12/19 01:00:00,128618715.7710808,0.0,148044896.65564747,0.0,82893925.67045072,0.0,122083594.65758306,0.0,2432.83511536697,2394.748627790958,2397.8345058247775,2886.465997357341,518043916.0415862,0.0,21139960.556782485,23253956.61246073 - 12/19 02:00:00,86702500.93900413,0.0,104368276.23791054,0.0,45762077.78501357,0.0,75399114.93925122,0.0,1214.7681193065078,1195.7506977839958,1197.2915446058267,1441.276003007321,330408680.8141126,0.0,14093307.03785499,0.0 - 12/19 03:00:00,116356899.74520609,0.0,134051945.36210361,0.0,72354734.64104648,0.0,109055558.55013462,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,449979278.52875897,0.0,14093307.03785499,0.0 - 12/19 04:00:00,118948897.1160883,0.0,136269765.28142003,0.0,75228971.93565625,0.0,111936568.18636342,0.0,1211.987921485972,1193.0140244789862,1194.551344817937,1437.9774044199303,460519313.02225819,0.0,14093307.03785499,0.0 - 12/19 05:00:00,119717338.75877992,0.0,137028802.12314923,0.0,76486800.76949945,0.0,113037167.1550536,0.0,1213.104638792717,1194.1132593679704,1195.6519961832726,1439.302346876663,464421928.87487646,0.0,14093307.03785499,0.0 - 12/19 06:00:00,121165292.64822223,0.0,138068133.41811238,0.0,77753113.98123712,0.0,114412266.3424578,0.0,1211.4272597937823,1192.4621400501786,1193.9987492297135,1437.3122007239197,469525527.6493008,0.0,14093307.03785499,0.0 - 12/19 07:00:00,118283833.46949072,0.0,135070394.3776952,0.0,75062030.44822873,0.0,110963702.76639258,0.0,4852.418555170868,4776.4530374718819,4782.60798473309,5757.209387506652,511987241.33538416,0.0,14093307.03785499,15502637.741640486 - 12/19 08:00:00,114814813.16005033,0.0,138130115.97976483,0.0,75782115.16696058,0.0,112135735.15816528,0.0,19436.289908904124,19132.011164543932,19156.664713693226,23060.416048117135,731690154.0718714,0.0,56373228.15141996,38756594.35410121 - 12/19 09:00:00,78702476.69075926,0.0,134437469.9167157,0.0,74890276.29479103,0.0,110774243.99342218,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,653738467.7928431,0.0,56373228.15141996,38756594.35410121 - 12/19 10:00:00,59849075.46914221,0.0,135493776.75783185,0.0,80962950.39735459,0.0,117223207.77739783,0.0,12223.430714728045,12032.070626610232,12047.575177700535,14502.633945989313,576429568.0758277,0.0,28186614.07570998,0.0 - 12/19 11:00:00,46172019.728253658,0.0,134960691.96315218,0.0,82218948.43065329,0.0,118535474.35519503,0.0,9816.356578794184,9662.679685313651,9675.131034337388,11646.732367372317,528770373.2741972,0.0,28186614.07570998,0.0 - 12/19 12:00:00,41260192.947287578,0.0,136935442.23103918,0.0,84131260.35920507,0.0,120377780.10858232,0.0,4916.362861492905,4839.396283749648,4845.6323398081699,5833.076866053517,456268761.7100893,0.0,28186614.07570998,0.0 - 12/19 13:00:00,37382738.97926604,0.0,133108978.46271383,0.0,81980448.43496973,0.0,111969982.97898104,0.0,4932.404816107579,4855.187098572206,4861.4435027073609,5852.110032844774,438246272.47676566,0.0,28186614.07570998,0.0 - 12/19 14:00:00,36115078.31033082,0.0,121389105.29578144,0.0,75122434.52925447,0.0,104259189.75158555,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,410923318.95323619,0.0,28186614.07570998,0.0 - 12/19 15:00:00,45000699.944578129,0.0,115947616.77208935,0.0,69292503.86858279,0.0,99069279.32030873,0.0,7424.880446742606,7308.642558238771,7318.0604901527,8809.337224949239,440409414.4978589,0.0,28186614.07570998,0.0 - 12/19 16:00:00,72761513.63197568,0.0,121558060.37265662,0.0,70383462.35195254,0.0,102810185.7481359,0.0,12374.80074457101,12181.070930397953,12196.767483587835,14682.22870824873,552678746.4252206,0.0,28186614.07570998,0.0 - 12/19 17:00:00,110572373.3410425,0.0,137299795.63297964,0.0,79370755.4218848,0.0,115355978.6840356,0.0,12370.005842494198,12176.35109340764,12192.041564605817,14676.539739967253,627692680.7456522,0.0,35233267.594637479,0.0 - 12/19 18:00:00,116827064.66983648,0.0,140898209.10827206,0.0,82527343.45139417,0.0,119317506.44664225,0.0,17311.270486576937,17040.259317695254,17062.21743108922,20539.161620504132,718600595.5572609,0.0,14093307.03785499,0.0 - 12/19 19:00:00,105604654.48691339,0.0,127999874.8035321,0.0,69382356.99156249,0.0,103529224.9807314,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,665036959.8586125,0.0,63419881.67034747,0.0 - 12/19 20:00:00,92929915.09209678,0.0,114467164.19645685,0.0,55442560.692425739,0.0,86796599.68563684,0.0,9884.411925462888,9729.669612834543,9742.207285217411,11727.477438362443,497537798.2093743,0.0,63419881.67034747,69761869.8373822 - 12/19 21:00:00,96645574.48751679,0.0,116828460.86949232,0.0,58105396.865552607,0.0,89967243.46711388,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,509272874.8873174,0.0,49326574.63249246,69761869.8373822 - 12/19 22:00:00,101790282.79747245,0.0,121279137.56513712,0.0,62294696.35859404,0.0,95132920.43287196,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,454030658.23469957,0.0,35233267.594637479,69761869.8373822 - 12/19 23:00:00,106289001.03466048,0.0,125461207.49226612,0.0,65444129.19262822,0.0,99299664.6240501,0.0,4908.178289397092,4831.339842656826,4837.565517168694,5823.366183686158,469935621.7420764,0.0,35233267.594637479,62010550.96656194 - 12/19 24:00:00,112249891.88062996,0.0,131158484.93849193,0.0,70253938.20280013,0.0,105405950.6787516,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,455664207.84892389,0.0,35233267.594637479,46507913.22492146 - 12/20 01:00:00,122236287.73472579,0.0,140800007.8302695,0.0,79510954.40472329,0.0,116692792.25739238,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,495740270.7374979,0.0,21139960.556782485,23253956.61246073 - 12/20 02:00:00,81339225.96882814,0.0,98551325.8839944,0.0,43014930.62490838,0.0,71115064.63028616,0.0,1214.2151789702576,1195.2064138318602,1196.746559288265,1440.61996040539,312188984.31300196,0.0,14093307.03785499,0.0 - 12/20 03:00:00,111915281.26164009,0.0,129138365.09149122,0.0,70670265.2943279,0.0,105919653.33805731,0.0,1210.3013572299718,1191.3538637010416,1192.889044753381,1435.9763603103016,435753439.23909738,0.0,14093307.03785499,0.0 - 12/20 04:00:00,113109164.66221743,0.0,129865380.5286614,0.0,72625723.90705709,0.0,107503615.89130858,0.0,1214.2151789702576,1195.2064138318602,1196.746559288265,1440.61996040539,441272322.1942293,0.0,14093307.03785499,0.0 - 12/20 05:00:00,114468192.84135221,0.0,130997938.90551013,0.0,73902202.16484545,0.0,108794849.45804973,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,446323323.6000257,0.0,14093307.03785499,0.0 - 12/20 06:00:00,116491034.34808749,0.0,132927415.25048146,0.0,75971347.65874172,0.0,111090053.58074755,0.0,1208.0313869357433,1189.1194302152317,1190.651731971961,1433.2831272062927,454555759.2728435,0.0,14093307.03785499,0.0 - 12/20 07:00:00,115114159.90232426,0.0,131599923.18714603,0.0,74361428.93922818,0.0,109158456.10398534,0.0,4832.125547742973,4756.477720860927,4762.606927887844,5733.132508825171,502537601.8718247,0.0,14093307.03785499,15502637.741640486 - 12/20 08:00:00,114188216.87784933,0.0,136828231.5269423,0.0,76812733.64951256,0.0,112655713.5056358,0.0,19273.306779587932,18971.57956652166,18996.02638318199,22867.042786631995,728873535.4172647,0.0,56373228.15141996,38756594.35410121 - 12/20 09:00:00,84458213.48091501,0.0,129461187.03239957,0.0,75513043.83316097,0.0,109699306.33365827,0.0,17045.13036366664,16778.285668057513,16799.906201664824,20223.396523864118,654179938.206245,0.0,56373228.15141996,38756594.35410121 - 12/20 10:00:00,83562233.41235593,0.0,127929201.49909732,0.0,80909209.06979645,0.0,114593480.2453187,0.0,12239.251164436575,12047.64340422727,12063.168022431017,14521.404305664792,590131405.054903,0.0,28186614.07570998,0.0 - 12/20 11:00:00,57067343.88910012,0.0,118487068.335843,0.0,76356177.29406156,0.0,108325361.22312905,0.0,9816.356578794184,9662.679685313651,9675.131034337388,11646.732367372317,507119189.5390768,0.0,28186614.07570998,0.0 - 12/20 12:00:00,56650099.16670673,0.0,115848002.67903051,0.0,74999897.74661316,0.0,106133109.15598576,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,427345989.7665913,0.0,28186614.07570998,0.0 - 12/20 13:00:00,57608306.1683015,0.0,111220285.06452231,0.0,71564204.02880198,0.0,99305201.08313275,0.0,4944.145150943998,4866.743636276603,4873.014932190141,5866.039491972052,413677791.90573659,0.0,28186614.07570998,0.0 - 12/20 14:00:00,61607400.21969545,0.0,106733480.29409923,0.0,67002992.73668921,0.0,95029632.52753566,0.0,4974.1999286697559,4896.3279008503509,4902.637319108395,5901.698338482267,404803014.3316183,0.0,28186614.07570998,0.0 - 12/20 15:00:00,70743000.12668875,0.0,109864668.2737313,0.0,66396144.79401013,0.0,95824347.2252673,0.0,7450.289532644986,7333.653860161288,7343.104021690596,8839.484135447974,454307673.99949887,0.0,28186614.07570998,0.0 - 12/20 16:00:00,84723973.94457165,0.0,117699517.68487019,0.0,69021767.32503203,0.0,100681138.40498978,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,557994642.058595,0.0,28186614.07570998,0.0 - 12/20 17:00:00,96762199.82303831,0.0,122840709.83356424,0.0,70965281.6086313,0.0,103666255.96383168,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,580443863.5747287,0.0,35233267.594637479,0.0 - 12/20 18:00:00,101568887.8573541,0.0,126083016.33190406,0.0,73860739.37920539,0.0,107267493.52826059,0.0,17409.69975034414,17137.147652976222,17159.230616879388,20655.944184687934,669283417.0343199,0.0,14093307.03785499,0.0 - 12/20 19:00:00,90279808.27010188,0.0,114053928.42929068,0.0,60739403.398594457,0.0,91823630.26830366,0.0,17409.69975034414,17137.147652976222,17159.230616879388,20655.944184687934,617400050.3038864,0.0,63419881.67034747,0.0 - 12/20 20:00:00,78415350.40021351,0.0,101427274.18263096,0.0,47357914.87595443,0.0,75902948.99475494,0.0,9941.088859362864,9785.459258761244,9798.06882179722,11794.722456943193,451853110.28226616,0.0,63419881.67034747,69761869.8373822 - 12/20 21:00:00,83242283.25849229,0.0,105407073.72629003,0.0,50610263.39590716,0.0,80105823.76425863,0.0,9941.088859362864,9785.459258761244,9798.06882179722,11794.722456943193,468115065.9736604,0.0,49326574.63249246,69761869.8373822 - 12/20 22:00:00,87674666.8107839,0.0,109056302.99215986,0.0,53741874.30399038,0.0,84080894.51207975,0.0,4972.375843253626,4894.532371831694,4900.839476367331,5899.534130765651,408955953.1789998,0.0,35233267.594637479,69761869.8373822 - 12/20 23:00:00,90671252.44536388,0.0,111412793.98461996,0.0,55651684.04597199,0.0,86549883.37846393,0.0,4972.375843253626,4894.532371831694,4900.839476367331,5899.534130765651,418687828.41440567,0.0,35233267.594637479,62010550.96656194 - 12/20 24:00:00,93900001.17349643,0.0,113859641.42851463,0.0,58333331.43459026,0.0,89686491.31866357,0.0,2491.604911647372,2452.598371947095,2455.7587952808605,2956.1941172629969,393061627.6613628,0.0,35233267.594637479,46507913.22492146 - 12/21 01:00:00,101015415.95644662,0.0,120092033.69233927,0.0,65178079.60999575,0.0,97702259.88815092,0.0,2495.1420329135596,2456.0801189200117,2459.245028840126,2960.3907766251097,421322877.7932083,0.0,21139960.556782485,23253956.61246073 - 12/21 02:00:00,56809117.522747118,0.0,73718497.68513677,0.0,26666587.99057194,0.0,47708898.618151757,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,223671970.35804633,0.0,14093307.03785499,0.0 - 12/21 03:00:00,79923979.95164752,0.0,95835385.53406543,0.0,47999156.30671639,0.0,75243569.96938406,0.0,1258.3237280950187,1238.6244353916318,1240.2205294004016,1492.9530702150883,317830530.1089811,0.0,14093307.03785499,0.0 - 12/21 04:00:00,84351185.21063186,0.0,100081490.35266567,0.0,51116077.67080204,0.0,79274734.58376038,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,333628450.2722334,0.0,14093307.03785499,0.0 - 12/21 05:00:00,86943489.43575102,0.0,102298338.06294182,0.0,52935470.686721477,0.0,81406718.7509317,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,342388979.3907195,0.0,14093307.03785499,0.0 - 12/21 06:00:00,87542521.62472469,0.0,102311152.06222075,0.0,53614618.271610859,0.0,81843446.64458508,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,344116701.05751487,0.0,14093307.03785499,0.0 - 12/21 07:00:00,81644274.8203332,0.0,95373566.18976963,0.0,49550742.22795306,0.0,75731716.73482825,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,321105262.4272576,0.0,14093307.03785499,15502637.741640486 - 12/21 08:00:00,83138953.09260562,0.0,96665998.70073316,0.0,51028700.11472222,0.0,76699086.27262092,0.0,5027.019240994805,4948.32031698752,4954.696732780511,5964.3664363188349,382752587.9981759,0.0,56373228.15141996,38756594.35410121 - 12/21 09:00:00,91436004.34515712,0.0,105101703.93638855,0.0,60128608.921466808,0.0,87375546.78764159,0.0,12587.110214895782,12390.056656358494,12406.022508987007,14934.125790438353,532384198.6051007,0.0,56373228.15141996,38756594.35410121 - 12/21 10:00:00,90057654.38997773,0.0,103670233.91138181,0.0,63540443.991568129,0.0,90376068.06331723,0.0,12642.805603331606,12444.880123098394,12460.916621359514,15000.20624279378,536820111.28234478,0.0,28186614.07570998,0.0 - 12/21 11:00:00,88528277.35461588,0.0,101317358.13292386,0.0,60855423.49434465,0.0,87375600.63305573,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,527617937.3926555,0.0,28186614.07570998,0.0 - 12/21 12:00:00,82845857.74124362,0.0,97362187.75112818,0.0,57692888.44814393,0.0,83742587.57555887,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,435694629.4446911,0.0,28186614.07570998,0.0 - 12/21 13:00:00,82137183.08975384,0.0,96586191.32057564,0.0,57017390.18606889,0.0,82875857.8942458,0.0,7606.439504731765,7487.3592753053,7497.007501950407,9024.750116718062,432432625.5259841,0.0,28186614.07570998,0.0 - 12/21 14:00:00,83893679.58992985,0.0,98466829.7564272,0.0,57987920.3996315,0.0,84393974.86674574,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,438279716.0871083,0.0,28186614.07570998,0.0 - 12/21 15:00:00,87843930.53745385,0.0,101904095.03894036,0.0,59449441.513987939,0.0,86671002.3047981,0.0,7581.384943412046,7462.696947816965,7472.313394535871,8995.023836103615,449309578.23390677,0.0,28186614.07570998,0.0 - 12/21 16:00:00,95226067.86840703,0.0,109402886.99073576,0.0,62881101.967562939,0.0,91869353.41839619,0.0,17632.715224864394,17356.671778639364,17379.0376217848,20920.54353218219,623219695.6119967,0.0,28186614.07570998,0.0 - 12/21 17:00:00,96982881.88381277,0.0,111655609.00021588,0.0,63453466.06014765,0.0,93206042.7348088,0.0,22649.827105710337,22295.23983704937,22323.96952920723,26873.155263871588,704209889.9280037,0.0,35233267.594637479,0.0 - 12/21 18:00:00,100160851.41235383,0.0,114850515.61081405,0.0,66343858.041638988,0.0,96797687.21628803,0.0,17611.082391406708,17335.37761122506,17357.716014662336,20894.877001060664,641669503.1471722,0.0,14093307.03785499,0.0 - 12/21 19:00:00,88700364.17449762,0.0,103630725.1766232,0.0,54775635.2899121,0.0,82945189.21883473,0.0,17605.60494737528,17329.98591760176,17352.31737329148,20888.37822280427,593486545.1197298,0.0,63419881.67034747,0.0 - 12/21 20:00:00,75616801.45896483,0.0,90823278.23943728,0.0,41477752.082812327,0.0,67011691.35254249,0.0,15056.994264188941,14821.274210103556,14840.372934699288,17864.548933654372,500229008.3672831,0.0,63419881.67034747,69761869.8373822 - 12/21 21:00:00,81156149.06939283,0.0,96404597.79029463,0.0,46110848.07605491,0.0,72874870.81017015,0.0,12488.77764372838,12293.263499936642,12309.104624703632,14817.457948333233,483417439.12603929,0.0,49326574.63249246,69761869.8373822 - 12/21 22:00:00,87504493.24073775,0.0,102969958.01426882,0.0,51389054.29716143,0.0,79616833.56554191,0.0,9948.399857339511,9792.655801700701,9805.27463821679,11803.396676964534,470339356.2249074,0.0,35233267.594637479,69761869.8373822 - 12/21 23:00:00,93222097.59840308,0.0,108591559.85675512,0.0,55825540.42668789,0.0,85302876.40604346,0.0,7419.115922818688,7302.968279012252,7312.378899038237,8802.497837358915,453955133.66551068,0.0,35233267.594637479,62010550.96656194 - 12/21 24:00:00,97933781.3889729,0.0,113375569.21304974,0.0,59894256.128991629,0.0,90480526.87669009,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,435864070.96532097,0.0,35233267.594637479,46507913.22492146 - 12/22 01:00:00,106147410.04583799,0.0,121431743.35322872,0.0,68114583.23507074,0.0,100333840.15969259,0.0,2472.072575471999,2433.3718181383017,2436.5074660950706,2933.019745986026,433017474.57431909,0.0,21139960.556782485,23253956.61246073 - 12/22 02:00:00,66735639.30680274,0.0,80920543.82960367,0.0,33781118.84771923,0.0,56407596.56121087,0.0,1232.1089032348303,1212.8200085050003,1214.3828508759237,1461.8501811998588,256281081.54307277,0.0,14093307.03785499,0.0 - 12/22 03:00:00,97199428.22540456,0.0,111768110.1258488,0.0,59453767.286247078,0.0,90451357.83758793,0.0,1231.1096959177879,1211.8364439649079,1213.3980189125312,1460.664659860276,377293895.2222481,0.0,14093307.03785499,0.0 - 12/22 04:00:00,99291544.37455675,0.0,113744766.3377578,0.0,62347795.0861368,0.0,93202162.13534074,0.0,1230.607514286527,1211.3421240807666,1212.9030620467648,1460.0688405242366,386999985.48117,0.0,14093307.03785499,0.0 - 12/22 05:00:00,102280395.17090164,0.0,117006895.68402438,0.0,65554984.429426569,0.0,96987440.63234195,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,400127686.9908197,0.0,14093307.03785499,0.0 - 12/22 06:00:00,102225744.82560948,0.0,116556414.81114879,0.0,66024013.98581743,0.0,97005166.02141841,0.0,1229.0907153732263,1209.849070937412,1211.4080849520424,1458.2692165133793,400202361.15998789,0.0,14093307.03785499,0.0 - 12/22 07:00:00,98784890.27589095,0.0,112623670.19381503,0.0,63402835.66177855,0.0,93189303.84278226,0.0,1223.3994094995733,1204.2468635189233,1205.7986585174893,1451.516699344791,386306561.8454376,0.0,14093307.03785499,15502637.741640486 - 12/22 08:00:00,94828853.66020733,0.0,115377038.28186995,0.0,63557068.51136923,0.0,93917533.68642758,0.0,1230.1036204259804,1210.8461187726082,1212.4064175851405,1459.470989693509,386086671.86719217,0.0,56373228.15141996,38756594.35410121 - 12/22 09:00:00,59395977.19192245,0.0,113355565.05207919,0.0,63560739.15198925,0.0,94037588.72683084,0.0,4882.985320887614,4806.541274769107,4812.734993795116,5793.475688224392,403414524.3224561,0.0,56373228.15141996,38756594.35410121 - 12/22 10:00:00,43433184.64180336,0.0,114120380.39609319,0.0,69507984.2020081,0.0,100195828.58851484,0.0,7386.658175506727,7271.018663789447,7280.388113475187,8763.987959161657,437784768.31137838,0.0,28186614.07570998,0.0 - 12/22 11:00:00,23644865.945442354,0.0,104666949.48234783,0.0,65626395.1388455,0.0,94414130.87035202,0.0,7461.299893004633,7344.491851275524,7353.955978662593,8852.547507723402,399996604.26738587,0.0,28186614.07570998,0.0 - 12/22 12:00:00,4035524.1493960234,0.0,95862645.42296992,0.0,61698569.42735952,0.0,87880232.33880894,0.0,5005.760742757414,4927.394624505803,4933.744075408192,5939.144039646935,324378727.87488046,0.0,28186614.07570998,0.0 - 12/22 13:00:00,781592.9719618609,0.0,87586112.21010107,0.0,57097520.968588609,0.0,76664482.68872331,0.0,5009.116290410245,4930.697640434152,4937.051347609697,5943.12526884789,297081674.809662,0.0,28186614.07570998,0.0 - 12/22 14:00:00,0.0,0.0,79725888.25285788,0.0,51135357.3129198,0.0,70575585.16861202,0.0,7535.7513451200579,7417.777752019177,7427.33631576949,8940.881313671707,314195118.9500792,0.0,28186614.07570998,0.0 - 12/22 15:00:00,19307587.011877065,0.0,83631245.2712771,0.0,49227857.024691779,0.0,71374454.61993876,0.0,10050.861308301484,9893.513199533701,9906.262001101199,11924.963277336885,373933303.15836849,0.0,28186614.07570998,0.0 - 12/22 16:00:00,48250855.0090656,0.0,91789079.04590088,0.0,52168994.00384618,0.0,77129751.71315705,0.0,12579.344565290507,12382.412579446473,12398.368581901668,14924.912143614763,457564816.104882,0.0,28186614.07570998,0.0 - 12/22 17:00:00,66315931.69667779,0.0,98676571.60721293,0.0,55200159.14933836,0.0,81703483.97683147,0.0,15131.916401832701,14895.02342770579,14914.217185695828,17953.441190014873,528316699.96895769,0.0,35233267.594637479,0.0 - 12/22 18:00:00,70994585.38067724,0.0,100592539.96503905,0.0,57216946.747595537,0.0,84079774.53800336,0.0,17669.49852435793,17392.87922871741,17415.29172885789,20964.185512926408,577274524.6128099,0.0,14093307.03785499,0.0 - 12/22 19:00:00,60693677.21905503,0.0,88052881.8558928,0.0,44879285.1359065,0.0,69113148.27862478,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,414122074.4553111,0.0,63419881.67034747,0.0 - 12/22 20:00:00,50274860.77188344,0.0,76095465.07599294,0.0,32244676.71875269,0.0,54076326.119505908,0.0,7559.165973470501,7440.8258199947999,7450.414083533167,8968.661876418197,325799972.5984349,0.0,63419881.67034747,69761869.8373822 - 12/22 21:00:00,56458217.26967737,0.0,80996350.73922123,0.0,36155342.22595167,0.0,59178070.055140618,0.0,5039.443982313667,4960.550546663201,4966.942722355444,5979.107917612131,308193742.89819088,0.0,49326574.63249246,69761869.8373822 - 12/22 22:00:00,62984225.90152397,0.0,86379059.43042806,0.0,40511886.61341263,0.0,64824622.22220561,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,329895873.7828622,0.0,35233267.594637479,69761869.8373822 - 12/22 23:00:00,70978401.3560336,0.0,93682589.77631498,0.0,45824276.78169377,0.0,71909374.61226216,0.0,4992.03391873342,4913.882696472642,4920.214735876626,5922.857686927554,357091003.0631412,0.0,35233267.594637479,62010550.96656194 - 12/22 24:00:00,78267954.15104386,0.0,100044251.84684983,0.0,51242430.844918388,0.0,78718770.32397631,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,382917288.99188616,0.0,35233267.594637479,46507913.22492146 - 12/23 01:00:00,86897575.82219392,0.0,107381194.21992594,0.0,58994377.901112619,0.0,87872306.97776169,0.0,2497.7555287456759,2458.6526999873296,2461.8209249407266,2963.491589666646,378519649.59701946,0.0,21139960.556782485,23253956.61246073 - 12/23 02:00:00,46928086.36254369,0.0,65411198.443227577,0.0,23814500.46088279,0.0,42398827.49778762,0.0,1248.0084796833554,1228.4706741181606,1230.0536839691566,1480.7144217318885,197226702.8986509,0.0,14093307.03785499,0.0 - 12/23 03:00:00,74341998.35848104,0.0,92202431.45734261,0.0,47611257.03977087,0.0,73299930.68032135,0.0,1248.8777643728379,1229.3263499936648,1230.9104624703633,1481.745794833323,306142714.87392857,0.0,14093307.03785499,0.0 - 12/23 04:00:00,76764389.150941,0.0,93712160.47009813,0.0,49951014.1331144,0.0,75855697.73403919,0.0,1248.4440637152109,1228.8994390007393,1230.4830013590498,1481.2312255584205,314963869.31487306,0.0,14093307.03785499,0.0 - 12/23 05:00:00,77510960.0396564,0.0,93686600.94989427,0.0,51053064.379039708,0.0,76575799.07299797,0.0,1248.4440637152109,1228.8994390007393,1230.4830013590498,1481.2312255584205,317507032.2682687,0.0,14093307.03785499,0.0 - 12/23 06:00:00,80432952.91223304,0.0,96065989.36752087,0.0,53583842.04729949,0.0,79347451.1541167,0.0,1241.7149221074977,1222.275643360215,1223.850670281766,1473.2473559079957,328010154.411137,0.0,14093307.03785499,0.0 - 12/23 07:00:00,77565016.07914762,0.0,92737222.13675311,0.0,50823304.44925053,0.0,75686469.20188509,0.0,4984.989574696163,4906.948632955408,4913.2717371108069,5914.499841626491,371402967.0980363,0.0,14093307.03785499,15502637.741640486 - 12/23 08:00:00,78634163.32230243,0.0,96447349.90257868,0.0,51707913.93861364,0.0,77217191.01692367,0.0,20009.49840486775,19696.24597457131,19721.62659786358,23740.50604786452,603410975.4710202,0.0,56373228.15141996,38756594.35410121 - 12/23 09:00:00,64121526.92525874,0.0,95173712.45469509,0.0,52782380.07537518,0.0,78074893.47677356,0.0,17743.64530587032,17465.865228533152,17488.37177858392,21052.1578388342,555652657.4786602,0.0,56373228.15141996,38756594.35410121 - 12/23 10:00:00,27432387.712876247,0.0,83920759.5598022,0.0,49837858.261409688,0.0,72618785.0021655,0.0,12763.159186408195,12563.34954837998,12579.538706587498,15143.001174935447,424786365.5549737,0.0,28186614.07570998,0.0 - 12/23 11:00:00,1495128.8471481035,0.0,77499440.4196895,0.0,46546795.00361061,0.0,68029880.08078826,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,346877803.5097655,0.0,28186614.07570998,0.0 - 12/23 12:00:00,0.0,0.0,76528482.92046674,0.0,46460946.745080698,0.0,67126832.19924784,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,266880059.6446747,0.0,28186614.07570998,0.0 - 12/23 13:00:00,0.0,0.0,72399395.97503561,0.0,44261760.49811613,0.0,59293127.781749907,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,252731302.77185417,0.0,28186614.07570998,0.0 - 12/23 14:00:00,0.0,4287412.685603197,62093920.26195507,0.0,38580156.07848403,0.0,52822385.39864676,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,230273480.25603838,4287412.685603197,28186614.07570998,0.0 - 12/23 15:00:00,0.0,0.0,61313183.34682119,0.0,35925959.306793738,0.0,51959806.23201903,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,264242516.88331873,0.0,28186614.07570998,0.0 - 12/23 16:00:00,23496016.32475604,0.0,66986981.59072219,0.0,37381597.749121617,0.0,55682196.838647048,0.0,12807.042032962763,12606.545400785399,12622.790221257652,15195.06649726121,375179991.45140817,0.0,28186614.07570998,0.0 - 12/23 17:00:00,57388403.530674379,0.0,81327771.44561178,0.0,45594932.01968725,0.0,67170655.6101656,0.0,12776.716780302728,12576.694895612927,12592.901250662488,15159.086742566136,442661201.41505846,0.0,35233267.594637479,0.0 - 12/23 18:00:00,65818606.04685436,0.0,87341602.44024766,0.0,50676648.42084325,0.0,73609323.1142453,0.0,17828.208024709915,17549.104102234156,17571.717914069708,21152.48827677996,544211645.966248,0.0,14093307.03785499,0.0 - 12/23 19:00:00,57537149.205846447,0.0,77871144.23444101,0.0,39610616.919311,0.0,60734676.01005469,0.0,17780.540255826938,17502.18258116546,17524.73592983193,21095.932288590913,501805794.1691481,0.0,63419881.67034747,0.0 - 12/23 20:00:00,48804871.30111729,0.0,68170394.88044137,0.0,28252213.364244366,0.0,47570108.14047491,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,344430609.90845027,0.0,63419881.67034747,69761869.8373822 - 12/23 21:00:00,51122857.77408094,0.0,69176952.40846466,0.0,29814599.3889622,0.0,49313130.02883503,0.0,10172.942757137278,10013.683440513698,10026.587093702221,12069.808256245158,351646417.1716969,0.0,49326574.63249246,69761869.8373822 - 12/23 22:00:00,54656821.57387213,0.0,71634613.63744398,0.0,32554894.680353889,0.0,52543322.96963439,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,287326698.2165048,0.0,35233267.594637479,69761869.8373822 - 12/23 23:00:00,57063670.52217912,0.0,73312001.30811076,0.0,34465482.65675224,0.0,54800399.85005756,0.0,5076.263702080786,4996.793846848654,5003.232725732463,6022.793109620708,295598254.5205171,0.0,35233267.594637479,62010550.96656194 - 12/23 24:00:00,62309611.55912988,0.0,78138494.99808832,0.0,39053489.38664931,0.0,60464679.08010699,0.0,2528.561120666321,2488.9760246196794,2492.1833242719028,3000.041248558756,277801417.2091945,0.0,35233267.594637479,46507913.22492146 - 12/24 01:00:00,70940152.36772648,0.0,86294310.29493352,0.0,46973795.441862057,0.0,70053238.37630686,0.0,2534.1289790419016,2494.4567171337068,2497.6710792176374,3006.6472999831614,312179951.15218397,0.0,21139960.556782485,23253956.61246073 - 12/24 02:00:00,38055035.238149899,0.0,51021273.24138267,0.0,17583861.15481272,0.0,34043393.7998642,0.0,1260.9930334860583,1241.2519523088163,1242.851432141319,1496.120099167906,159571942.89578427,0.0,14093307.03785499,0.0 - 12/24 03:00:00,60403809.76315692,0.0,74088692.25159249,0.0,37613694.91910783,0.0,58310944.622562568,0.0,1263.5641572353409,1243.7828246361613,1245.3855657559785,1499.1706393506025,249323993.02954094,0.0,14093307.03785499,0.0 - 12/24 04:00:00,70153728.45665479,0.0,84060432.27092536,0.0,45743014.655356127,0.0,68709034.00917512,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,287211193.7315155,0.0,14093307.03785499,0.0 - 12/24 05:00:00,73135607.10245177,0.0,87060801.70164141,0.0,48364279.79757379,0.0,71811525.69560324,0.0,1250.5936503042345,1231.0153734107069,1232.6016623664737,1483.7816279915326,299084986.6279328,0.0,14093307.03785499,0.0 - 12/24 06:00:00,74874377.37059477,0.0,88556059.63981353,0.0,49848542.98729607,0.0,73483234.45094875,0.0,1243.0939608134066,1223.6330929579236,1225.2098690918329,1474.8835326914128,305362768.0886495,0.0,14093307.03785499,0.0 - 12/24 07:00:00,76115037.29011116,0.0,89762736.74044518,0.0,50348162.26506476,0.0,74223701.04997733,0.0,4944.145150943998,4866.743636276603,4873.014932190141,5866.039491972052,364429432.9065765,0.0,14093307.03785499,15502637.741640486 - 12/24 08:00:00,78366119.64777404,0.0,93626792.77802673,0.0,51302504.19667887,0.0,75817835.8682826,0.0,19995.831983004344,19682.79350309164,19708.15679150134,23724.29136000298,598313117.5861234,0.0,56373228.15141996,38756594.35410121 - 12/24 09:00:00,80058699.23076639,0.0,99516859.18483718,0.0,58335178.84774303,0.0,83921732.60924262,0.0,17537.738929327825,17263.182354727232,17285.427727207694,20807.85778299614,584251614.3319212,0.0,56373228.15141996,38756594.35410121 - 12/24 10:00:00,81290957.55263743,0.0,102924924.80956319,0.0,65079646.823380228,0.0,91538388.03311333,0.0,12559.585575200095,12362.962920031961,12378.893859615817,14901.46885611951,528764397.5781768,0.0,28186614.07570998,0.0 - 12/24 11:00:00,75852311.53559847,0.0,99887946.02197632,0.0,62586402.480229858,0.0,88772649.29331276,0.0,10078.887964627334,9921.101093326402,9933.885444710888,11958.215835224262,477910834.5475173,0.0,28186614.07570998,0.0 - 12/24 12:00:00,74956964.80124802,0.0,98583324.60240728,0.0,61331357.08220579,0.0,87415678.11497262,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,397738377.0113373,0.0,28186614.07570998,0.0 - 12/24 13:00:00,77213437.57567859,0.0,98831205.71157557,0.0,61076089.75674157,0.0,86874641.03203973,0.0,5037.918635675542,4959.049079611248,4965.439320509944,5977.298152052055,399378312.7522911,0.0,28186614.07570998,0.0 - 12/24 14:00:00,56663363.17615242,0.0,91803481.17713633,0.0,57158358.45286013,0.0,80933837.52801636,0.0,5055.693498939079,4976.5456740744989,4982.958461121,5998.387348806,362207946.2727513,0.0,28186614.07570998,0.0 - 12/24 15:00:00,59320982.88915881,0.0,89356557.30091167,0.0,54330829.383429039,0.0,78240704.02021621,0.0,7594.133492785531,7475.245916271769,7484.878533617375,9010.149503293209,394880940.3992001,0.0,28186614.07570998,0.0 - 12/24 16:00:00,73770534.98972503,0.0,96286709.8857277,0.0,56627124.84361388,0.0,82429114.63941002,0.0,12660.358905396155,12462.158624944557,12478.217388318886,15021.032565642634,498551847.30196467,0.0,28186614.07570998,0.0 - 12/24 17:00:00,84328807.87168333,0.0,102092645.53125136,0.0,58803367.224046129,0.0,85934453.61175272,0.0,12653.398915471713,12455.307594960766,12471.357530083691,15012.774803276432,520493494.0763868,0.0,35233267.594637479,0.0 - 12/24 18:00:00,87357996.65505056,0.0,104286518.53124148,0.0,60901182.74785096,0.0,88479448.34325841,0.0,17743.645305870315,17465.865228533152,17488.37177858392,21052.1578388342,606525290.8239591,0.0,14093307.03785499,0.0 - 12/24 19:00:00,74074126.30867118,0.0,90587490.28713674,0.0,46930447.67305365,0.0,71703284.71443944,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,548653137.8721025,0.0,63419881.67034747,0.0 - 12/24 20:00:00,60019646.84151557,0.0,76210524.9632005,0.0,32482071.30493628,0.0,54269333.59121036,0.0,10147.256570589117,9988.399376007703,10001.270448098418,12039.332576407784,374816108.99683359,0.0,63419881.67034747,69761869.8373822 - 12/24 21:00:00,62729814.9191753,0.0,78391626.58399688,0.0,34641231.123967919,0.0,56910556.41590281,0.0,10147.256570589117,9988.399376007703,10001.270448098418,12039.332576407784,384507761.33901378,0.0,49326574.63249246,69761869.8373822 - 12/24 22:00:00,66509670.81624173,0.0,81906041.67292243,0.0,37641111.09321897,0.0,60757103.77260831,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,322711290.1065489,0.0,35233267.594637479,69761869.8373822 - 12/24 23:00:00,68636359.75504485,0.0,83720200.5625357,0.0,39308250.337646957,0.0,62828108.248814519,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,330390281.6555995,0.0,35233267.594637479,62010550.96656194 - 12/24 24:00:00,70823324.96146858,0.0,85389982.7162794,0.0,41487661.9364199,0.0,65274020.56034804,0.0,2541.35316957305,2501.5678116144188,2504.791337069402,3015.218526284063,301001541.2148633,0.0,35233267.594637479,46507913.22492146 - 12/25 01:00:00,78875132.72855877,0.0,93079118.15868396,0.0,49212007.97481132,0.0,74579425.40108823,0.0,2538.131851040393,2498.396923424327,2501.6163628662318,3011.396554810354,333724034.35485097,0.0,21139960.556782485,23253956.61246073 - 12/25 02:00:00,38911064.35102087,0.0,52420279.74598917,0.0,15173140.777434957,0.0,31513995.370593758,0.0,1267.4032361335943,1247.5618020380826,1249.1694127559943,1503.7255599167286,156982776.2840786,0.0,14093307.03785499,0.0 - 12/25 03:00:00,65975365.27219528,0.0,78872266.70748684,0.0,38633931.91210935,0.0,61072944.76723596,0.0,1267.7399174552944,1247.8932125508839,1249.5012503250678,1504.1250194530099,263523842.49825076,0.0,14093307.03785499,0.0 - 12/25 04:00:00,66987394.3782601,0.0,79266019.977391,0.0,40027946.59441176,0.0,62430532.44040357,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,267696154.72926659,0.0,14093307.03785499,0.0 - 12/25 05:00:00,68397953.293446,0.0,80423579.2326908,0.0,41677876.77232985,0.0,64060199.866392578,0.0,1266.3808134439633,1246.5553855663907,1248.161699413956,1502.5124944237553,273508606.57911226,0.0,14093307.03785499,0.0 - 12/25 06:00:00,69379051.49713786,0.0,81296145.40770136,0.0,42745582.936165329,0.0,65153582.867541778,0.0,1267.0644895209508,1247.2283585668534,1248.8355396088187,1503.3236499915807,277533590.0442239,0.0,14093307.03785499,0.0 - 12/25 07:00:00,67527931.4157401,0.0,79552645.47163895,0.0,40758165.02381256,0.0,62757932.587535869,0.0,5061.359566188685,4982.123037984307,4988.543012033477,6005.109921310573,326330362.43378886,0.0,14093307.03785499,15502637.741640486 - 12/25 08:00:00,74614201.9797543,0.0,88115254.0664077,0.0,44924403.5877401,0.0,68784739.80214818,0.0,20222.773995756317,19906.182696297994,19931.833844484,23993.549395224,579034223.1903945,0.0,56373228.15141996,38756594.35410121 - 12/25 09:00:00,87817280.76081154,0.0,101953396.73465209,0.0,57420005.987493988,0.0,84072912.49386344,0.0,17684.840757942828,17407.981276773447,17430.413237444285,20982.388487425833,595883841.511332,0.0,56373228.15141996,38756594.35410121 - 12/25 10:00:00,93960485.98783493,0.0,107986419.74081224,0.0,65793615.72419853,0.0,93886494.13613102,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,550587120.0487013,0.0,28186614.07570998,0.0 - 12/25 11:00:00,92106445.0362978,0.0,106581771.16582293,0.0,64423551.94370978,0.0,92557308.46023093,0.0,10105.623290253046,9947.417872441973,9960.236135682448,11989.93627852905,506880645.4829249,0.0,28186614.07570998,0.0 - 12/25 12:00:00,90532733.15316502,0.0,105228826.01624049,0.0,63308525.28082999,0.0,91322193.79648404,0.0,5052.811645126523,4973.708936220986,4980.118067841224,5994.968139264525,425998062.6851513,0.0,28186614.07570998,0.0 - 12/25 13:00:00,90140472.34734442,0.0,104910106.8051725,0.0,62897154.090059299,0.0,90867448.82149568,0.0,5049.89739158272,4970.840305860066,4977.245740957288,5991.5104886786989,424377360.2015555,0.0,28186614.07570998,0.0 - 12/25 14:00:00,90894445.91291924,0.0,105090780.70881863,0.0,62699470.548160899,0.0,90665505.6995059,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,424934244.65329459,0.0,28186614.07570998,0.0 - 12/25 15:00:00,87666760.90704455,0.0,102765141.54229905,0.0,61526789.61161932,0.0,88882808.8485565,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,454217563.5853542,0.0,28186614.07570998,0.0 - 12/25 16:00:00,93714489.85679089,0.0,107758736.1347143,0.0,63380740.555211979,0.0,91868216.59145382,0.0,12624.7434789568,12427.10076465016,12443.114352393219,14978.776221696746,545627628.48188,0.0,28186614.07570998,0.0 - 12/25 17:00:00,93830145.44784855,0.0,107838067.50057549,0.0,62431986.6231628,0.0,90914618.81042046,0.0,12632.029112816308,12434.272340552465,12450.295169603061,14987.420348161311,544029279.4780866,0.0,35233267.594637479,0.0 - 12/25 18:00:00,96048600.20149583,0.0,109858467.30091694,0.0,64540193.79613853,0.0,93411528.12412885,0.0,17684.840757942828,17407.981276773447,17430.413237444285,20982.388487425833,628479034.9571912,0.0,14093307.03785499,0.0 - 12/25 19:00:00,80965543.79628136,0.0,94899727.61942403,0.0,49687333.29189506,0.0,75454717.41701555,0.0,17714.758481660396,17437.43063294507,17459.900542117168,21017.884724587002,566075229.8973307,0.0,63419881.67034747,0.0 - 12/25 20:00:00,64185400.759952519,0.0,77929107.63220066,0.0,33684305.85495239,0.0,55776487.05796538,0.0,10147.256570589117,9988.399376007703,10001.270448098418,12039.332576407784,383409833.60104188,0.0,63419881.67034747,69761869.8373822 - 12/25 21:00:00,67014158.55653514,0.0,80621321.02438225,0.0,36311379.68988209,0.0,59013576.42076613,0.0,10122.71913237737,9964.246075968615,9977.086024066954,12010.219842621145,394427811.5616883,0.0,49326574.63249246,69761869.8373822 - 12/25 22:00:00,70457475.04039064,0.0,83820445.94359438,0.0,39380287.70510396,0.0,62744568.82191822,0.0,5061.359566188685,4982.123037984307,4988.543012033477,6005.109921310573,332136465.4460685,0.0,35233267.594637479,69761869.8373822 - 12/25 23:00:00,71432354.16700723,0.0,84578897.04024774,0.0,40583089.316379,0.0,64044143.593745667,0.0,5061.359566188685,4982.123037984307,4988.543012033477,6005.109921310573,336372172.052441,0.0,35233267.594637479,62010550.96656194 - 12/25 24:00:00,74520045.21665225,0.0,87548671.08161062,0.0,43319468.51814909,0.0,67434916.73593554,0.0,2534.8064722671886,2495.123604076165,2498.3388255119887,3007.451119833457,310751693.6304271,0.0,35233267.594637479,46507913.22492146 - 12/26 01:00:00,82131777.59109675,0.0,95105449.1340342,0.0,50582824.848675,0.0,76269469.08014295,0.0,2536.8141426472795,2497.0998440019259,2500.3176120246046,3009.833144101946,342048153.7279417,0.0,21139960.556782485,23253956.61246073 - 12/26 02:00:00,39818868.951343189,0.0,52206027.73206648,0.0,15047789.201703767,0.0,31216234.019981464,0.0,1269.0659255201966,1249.1984617121635,1250.8081814331159,1505.698277405177,157278094.95094926,0.0,14093307.03785499,0.0 - 12/26 03:00:00,64970500.396085377,0.0,76251540.29643616,0.0,37297486.73512147,0.0,58865729.72931578,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,256393775.14506153,0.0,14093307.03785499,0.0 - 12/26 04:00:00,65009763.4515336,0.0,75671864.98972908,0.0,38091089.37856542,0.0,59352013.96833117,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,257161323.469057,0.0,14093307.03785499,0.0 - 12/26 05:00:00,64962918.859478387,0.0,75487140.43556574,0.0,38648070.268292348,0.0,59568165.46774006,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,257707455.33098037,0.0,14093307.03785499,0.0 - 12/26 06:00:00,64907473.34316228,0.0,75111562.74135739,0.0,38984584.90927803,0.0,59622657.834614548,0.0,1273.144457320642,1253.2131433364237,1254.8280363844188,1510.5372996992756,257676481.40067903,0.0,14093307.03785499,0.0 - 12/26 07:00:00,61459400.99704035,0.0,71665747.1195723,0.0,36062598.87243331,0.0,55794492.63334011,0.0,5092.577829282568,5012.8525733456949,5019.312145537675,6042.149198797102,301183049.911453,0.0,14093307.03785499,15502637.741640486 - 12/26 08:00:00,66306790.4440362,0.0,77485546.49491287,0.0,39135506.24430063,0.0,59637255.06545063,0.0,20365.49382281368,20046.668217838414,20072.500395957984,24162.881022076836,547296254.6999732,0.0,56373228.15141996,38756594.35410121 - 12/26 09:00:00,77605563.87897025,0.0,89357370.63902208,0.0,50205047.94787714,0.0,73292486.60622429,0.0,17819.80709496197,17540.834690608608,17563.437846463232,21142.52089431723,557100230.9669576,0.0,56373228.15141996,38756594.35410121 - 12/26 10:00:00,82483081.33804275,0.0,93840989.92978992,0.0,57778371.78687948,0.0,81959272.92071025,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,506652895.32605656,0.0,28186614.07570998,0.0 - 12/26 11:00:00,75226506.97008063,0.0,90023861.4344926,0.0,55732633.070907469,0.0,79508871.11483318,0.0,10167.939510441944,10008.758520578735,10021.655827505243,12063.87209502681,452635886.0231037,0.0,28186614.07570998,0.0 - 12/26 12:00:00,69975784.76025191,0.0,89798213.48309048,0.0,55380168.45451448,0.0,79280386.6370712,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,370525339.01304629,0.0,28186614.07570998,0.0 - 12/26 13:00:00,71983887.64950344,0.0,88198435.78981523,0.0,54226315.819800939,0.0,77499072.08239374,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,368017150.1271904,0.0,28186614.07570998,0.0 - 12/26 14:00:00,67076607.84666632,0.0,87679576.74346012,0.0,53326251.75373883,0.0,76338272.8684014,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,360567075.9358573,0.0,28186614.07570998,0.0 - 12/26 15:00:00,62914488.46893209,0.0,87658141.43519619,0.0,52098875.3065763,0.0,75189296.18744374,0.0,7627.837158563788,7508.421944874854,7518.097312919523,9050.137616191094,391996979.91532567,0.0,28186614.07570998,0.0 - 12/26 16:00:00,61823464.24298093,0.0,88059903.35865793,0.0,51216044.278536189,0.0,74754087.3752646,0.0,12684.070713236397,12485.499220009626,12501.588060123022,15049.16572050973,465646664.6254033,0.0,28186614.07570998,0.0 - 12/26 17:00:00,84308692.24235556,0.0,98674671.88631496,0.0,57288796.78240803,0.0,83187682.31257923,0.0,12660.358905396155,12462.158624944557,12478.217388318886,15021.032565642634,512898206.1671458,0.0,35233267.594637479,0.0 - 12/26 18:00:00,87273436.170847,0.0,101112960.1857201,0.0,59633316.039301898,0.0,86074186.14184976,0.0,17748.358844374117,17470.504975712367,17493.017504550946,21057.75027234214,599664572.2868452,0.0,14093307.03785499,0.0 - 12/26 19:00:00,72414068.99389227,0.0,86025836.39596135,0.0,44831148.62361188,0.0,68146841.33182508,0.0,17766.92295728275,17488.778463970284,17511.31454006362,21079.775883672475,537266345.9872514,0.0,63419881.67034747,0.0 - 12/26 20:00:00,57817825.61596983,0.0,71333050.13692391,0.0,29953051.003627939,0.0,50253092.34336069,0.0,10170.449544751717,10011.22925983314,10024.129750559363,12066.850154921456,361538590.4561188,0.0,63419881.67034747,69761869.8373822 - 12/26 21:00:00,61270212.588713187,0.0,74558252.09152332,0.0,32623364.71276924,0.0,53704756.720205519,0.0,10160.308717615395,10001.247189237407,10014.134817046817,12054.81845062338,374186419.14149418,0.0,49326574.63249246,69761869.8373822 - 12/26 22:00:00,65631954.48138737,0.0,78791704.77277905,0.0,36189924.67834231,0.0,58273265.54123413,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,314823894.8289433,0.0,35233267.594637479,69761869.8373822 - 12/26 23:00:00,67914991.87599659,0.0,80916914.7115177,0.0,38140926.722987327,0.0,60698009.0654079,0.0,5073.628285294559,4994.199688003851,5000.635224049209,6019.666288203892,323588108.523895,0.0,35233267.594637479,62010550.96656194 - 12/26 24:00:00,71348194.9425656,0.0,84155259.87396437,0.0,41397830.602140549,0.0,64622173.08522011,0.0,2536.8141426472795,2497.0998440019259,2500.3176120246046,3009.833144101946,299482091.5778834,0.0,35233267.594637479,46507913.22492146 - 12/27 01:00:00,81956353.01990815,0.0,94944220.82684636,0.0,50920209.16114068,0.0,76463922.54261184,0.0,2528.561120666321,2488.9760246196794,2492.1833242719028,3000.041248558756,342119847.73572698,0.0,21139960.556782485,23253956.61246073 - 12/27 02:00:00,44099198.80980834,0.0,56629619.56767808,0.0,18718680.911170126,0.0,35088698.92221421,0.0,1259.8609955784169,1240.1376366658004,1241.7356805888613,1494.7769794030328,173387638.86292077,0.0,14093307.03785499,0.0 - 12/27 03:00:00,72743419.30410363,0.0,84947476.74082728,0.0,42799915.15697326,0.0,66618766.29905018,0.0,1259.4796589188855,1239.762269902812,1241.359830127486,1494.3245380130139,285955312.1700182,0.0,14093307.03785499,0.0 - 12/27 04:00:00,75334797.93709481,0.0,87884044.1733377,0.0,45843522.933323327,0.0,70037621.53092253,0.0,1257.5432105268058,1237.8561369715547,1239.4512409493919,1492.0270159145908,297916745.9503828,0.0,14093307.03785499,0.0 - 12/27 05:00:00,78141244.67254037,0.0,90740670.78660199,0.0,48502861.45622988,0.0,73083697.63083887,0.0,1254.7495220157453,1235.1061841752967,1236.6977445582739,1488.712411137864,309243431.64900496,0.0,14093307.03785499,0.0 - 12/27 06:00:00,80910793.30418283,0.0,93763726.01741484,0.0,50878780.496657509,0.0,75982146.05132462,0.0,1252.6956378091307,1233.0844539090884,1234.6734090862638,1486.2755559282958,320279670.4738178,0.0,14093307.03785499,0.0 - 12/27 07:00:00,79659121.5450904,0.0,92767251.89456862,0.0,49398050.80930015,0.0,74232134.65038529,0.0,5005.760742757414,4927.394624505803,4933.744075408192,5939.144039646935,370958315.4356905,0.0,14093307.03785499,15502637.741640486 - 12/27 08:00:00,81849766.97602842,0.0,99590515.51886313,0.0,52211302.10233207,0.0,78450790.2665012,0.0,20002.68039322525,19689.534700172964,19714.906675303162,23732.416737310188,611404713.4853665,0.0,56373228.15141996,38756594.35410121 - 12/27 09:00:00,72664504.74196862,0.0,105298227.0861455,0.0,58508957.55017321,0.0,86165906.53580064,0.0,17502.345344072084,17228.342862651338,17250.543340890265,20765.864645146412,584527142.2080243,0.0,56373228.15141996,38756594.35410121 - 12/27 10:00:00,95251094.86158605,0.0,116963825.50851569,0.0,71618851.31042841,0.0,101714302.90005717,0.0,12505.936503042345,12310.153734107065,12326.016623664735,14837.816279915323,572675797.8872135,0.0,28186614.07570998,0.0 - 12/27 11:00:00,91099288.71814117,0.0,114836944.9025633,0.0,70606214.44311619,0.0,100788244.0871804,0.0,9994.476619958401,9838.011224005182,9850.688505612241,11858.064996953688,526879160.9985073,0.0,28186614.07570998,0.0 - 12/27 12:00:00,97547042.0483638,0.0,117230031.40386267,0.0,71765342.01966839,0.0,102623548.93916722,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,463809846.23615989,0.0,28186614.07570998,0.0 - 12/27 13:00:00,81054158.61453185,0.0,114041782.9769577,0.0,70883497.656672,0.0,99819047.34506041,0.0,4983.209823294744,4905.19674389419,4911.517590561721,5912.3882345259939,440362811.2054179,0.0,28186614.07570998,0.0 - 12/27 14:00:00,76636872.22800127,0.0,115927789.31030116,0.0,71138288.3577841,0.0,100437023.29740882,0.0,4981.422639783247,4903.437539073965,4909.756118826527,5910.267809510592,438677555.979395,0.0,28186614.07570998,0.0 - 12/27 15:00:00,90225928.0246211,0.0,117136433.23037255,0.0,70560177.03511963,0.0,101227813.89853522,0.0,7485.426098740679,7368.240356760033,7377.735086520379,8881.17232987533,491155618.1274756,0.0,28186614.07570998,0.0 - 12/27 16:00:00,101723026.47627308,0.0,124423182.24024029,0.0,73027865.89158483,0.0,105465550.75025875,0.0,12466.90469227617,12271.732973619812,12287.546354106067,14791.506526377072,591183311.3253218,0.0,28186614.07570998,0.0 - 12/27 17:00:00,108745680.50672648,0.0,127594298.78250413,0.0,74162116.65351266,0.0,107285675.0920171,0.0,12462.473936740407,12267.37158238852,12283.179342777015,14786.249604066228,604265159.1122601,0.0,35233267.594637479,0.0 - 12/27 18:00:00,112099005.3731073,0.0,130414352.75708671,0.0,76761144.5364702,0.0,110485779.44776052,0.0,17453.666569186636,17180.426163067736,17202.564895748492,20708.1091369279,690921442.4681754,0.0,14093307.03785499,0.0 - 12/27 19:00:00,98905437.99457199,0.0,117309093.15891624,0.0,63006087.52496064,0.0,94104387.41282684,0.0,17447.46351143657,17174.320215343927,17196.451079887822,20700.749445692716,634393349.3997755,0.0,63419881.67034747,0.0 - 12/27 20:00:00,84349854.71169457,0.0,102550173.78128502,0.0,48399277.09548173,0.0,76438741.24940817,0.0,9980.568131654238,9824.320475680046,9836.980115360504,11841.563106500438,461078401.42297229,0.0,63419881.67034747,69761869.8373822 - 12/27 21:00:00,86709392.57630421,0.0,104547926.67973271,0.0,50524830.607872579,0.0,79022498.92919304,0.0,9984.06783746684,9827.765392945284,9840.429471753252,11845.715373855108,470197369.8667763,0.0,49326574.63249246,69761869.8373822 - 12/27 22:00:00,89977638.909373,0.0,107419634.52996779,0.0,53299432.86485721,0.0,82865212.78217538,0.0,4992.03391873342,4913.882696472642,4920.214735876626,5922.857686927554,408258279.6232102,0.0,35233267.594637479,69761869.8373822 - 12/27 23:00:00,92136811.27344696,0.0,109444371.67827799,0.0,55076456.00528753,0.0,85161817.59426013,0.0,4990.284065827119,4912.160237840023,4918.490057680252,5920.781553250219,416489633.843824,0.0,35233267.594637479,62010550.96656194 - 12/27 24:00:00,95927111.20802783,0.0,113132671.27210202,0.0,58549593.67252176,0.0,89355897.80240764,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,394287214.8676082,0.0,35233267.594637479,46507913.22492146 - 12/28 01:00:00,108150715.12762094,0.0,124408973.33094442,0.0,68895670.87712401,0.0,102024561.55356118,0.0,2477.8157154515918,2439.025048190132,2442.167980910836,2939.8337623426825,440555753.91407349,0.0,21139960.556782485,23253956.61246073 - 12/28 02:00:00,68832099.95228349,0.0,83881689.83148276,0.0,34434675.69017236,0.0,58013664.382926199,0.0,1235.551490682861,1216.2087016043179,1217.7759106521765,1465.9346797953054,263649824.6747096,0.0,14093307.03785499,0.0 - 12/28 03:00:00,99064458.76963659,0.0,114560246.3947483,0.0,60555295.41046713,0.0,92312390.01309785,0.0,1233.1012040268948,1213.7967746430516,1215.3608756768402,1463.0275082111935,384943421.4931585,0.0,14093307.03785499,0.0 - 12/28 04:00:00,102171653.95208726,0.0,118575332.01800563,0.0,64407940.31478909,0.0,96421626.42668832,0.0,1230.1036204259804,1210.8461187726082,1212.4064175851405,1459.470989693509,399982730.4388883,0.0,14093307.03785499,0.0 - 12/28 05:00:00,104611193.89195268,0.0,119694384.7742915,0.0,66350575.15820681,0.0,98488249.79776544,0.0,1230.1036204259804,1210.8461187726082,1212.4064175851405,1459.470989693509,407550581.3495345,0.0,14093307.03785499,0.0 - 12/28 06:00:00,106186507.92930572,0.0,121141092.28631898,0.0,67927606.17968498,0.0,100220550.01391234,0.0,1228.0710196354667,1208.845338726651,1210.403059329879,1457.0593864447065,413851520.1041141,0.0,14093307.03785499,0.0 - 12/28 07:00:00,105066326.19633419,0.0,120092530.73196672,0.0,66539312.29029224,0.0,98538508.8950838,0.0,1225.4923285152482,1206.307017496974,1207.8614672142163,1453.999867865259,408573856.565607,0.0,14093307.03785499,15502637.741640486 - 12/28 08:00:00,107570677.9490285,0.0,128105466.27140238,0.0,70340422.47717247,0.0,104151743.87336253,0.0,4880.843364377916,4804.43285098815,4810.623853094914,5790.934338589142,483200914.4363463,0.0,56373228.15141996,38756594.35410121 - 12/28 09:00:00,84128372.57394135,0.0,129628121.41104,0.0,72830962.27855475,0.0,107211471.52209299,0.0,12202.10841094479,12011.082127470374,12026.559632737286,14477.335846472855,576380437.4490801,0.0,56373228.15141996,38756594.35410121 - 12/28 10:00:00,78520659.01054226,0.0,133537108.65437791,0.0,80344178.90956249,0.0,115726620.1600679,0.0,12218.124505258755,12026.847486840054,12042.345307381653,14496.33833100447,590949727.0042963,0.0,28186614.07570998,0.0 - 12/28 11:00:00,91035971.92660284,0.0,136558555.4393356,0.0,83112050.22156991,0.0,119337902.38936854,0.0,12244.49175277281,12052.801950175472,12068.333215692195,14527.62206368018,613260176.3132314,0.0,28186614.07570998,0.0 - 12/28 12:00:00,83220942.58239931,0.0,132699104.59503907,0.0,81812038.0015121,0.0,117218240.15267205,0.0,7362.267434095637,7247.0097639852369,7256.348275753042,8735.049275529238,525112754.42932996,0.0,28186614.07570998,0.0 - 12/28 13:00:00,78255782.10687025,0.0,131646320.60161713,0.0,80847791.2287376,0.0,113585654.04087486,0.0,7374.544292239358,7259.09442562447,7268.448509712254,8749.615299080277,514681677.07406279,0.0,28186614.07570998,0.0 - 12/28 14:00:00,86081054.88795533,0.0,129984266.86008203,0.0,78976215.39683083,0.0,112287150.43843098,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,517901009.1106819,0.0,28186614.07570998,0.0 - 12/28 15:00:00,88695648.01003865,0.0,127162064.7180661,0.0,76096918.5920691,0.0,109504405.44399804,0.0,7407.459733453581,7291.4945694661159,7300.890404446253,8788.668213621317,512297683.279726,0.0,28186614.07570998,0.0 - 12/28 16:00:00,108320214.57601299,0.0,134395215.9891618,0.0,78928298.64327552,0.0,114377003.77165947,0.0,17290.90907546915,17020.21666827678,17042.148954671255,20515.003583467584,694746534.7948948,0.0,28186614.07570998,0.0 - 12/28 17:00:00,117114837.0934932,0.0,138079968.98277054,0.0,80151832.1875065,0.0,116388412.04204457,0.0,22231.168811317482,21883.13571635586,21911.334370291614,26376.43317874404,784382509.7819674,0.0,35233267.594637479,0.0 - 12/28 18:00:00,120984632.06340398,0.0,140787922.9724682,0.0,82698547.88417854,0.0,119505421.36809565,0.0,17297.720869560053,17026.92182246045,17048.862749130472,20523.085517134274,722804251.7379733,0.0,14093307.03785499,0.0 - 12/28 19:00:00,109338642.15986733,0.0,128421929.87389174,0.0,70503043.34001966,0.0,104735289.9014324,0.0,17304.508028303986,17033.602726968107,17055.552262665493,20531.138221902176,671928189.7386342,0.0,63419881.67034747,0.0 - 12/28 20:00:00,94526529.83268667,0.0,113122817.76685998,0.0,55604263.29426311,0.0,86625762.55340109,0.0,14849.760893485212,14617.285116477542,14636.1209803054,17618.674449898477,572078002.6318107,0.0,63419881.67034747,69761869.8373822 - 12/28 21:00:00,96710290.26331944,0.0,114740627.97907077,0.0,57394265.72201589,0.0,88764028.08647399,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,543059055.4449215,0.0,49326574.63249246,69761869.8373822 - 12/28 22:00:00,98863111.34752172,0.0,116415562.55597258,0.0,59351246.1072148,0.0,91065583.66037546,0.0,9926.291692676292,9770.893744479557,9783.484538363711,11777.16618351215,514223713.8435987,0.0,35233267.594637479,69761869.8373822 - 12/28 23:00:00,99671394.54508525,0.0,116822764.16334966,0.0,60175229.97170605,0.0,91934400.8625561,0.0,7453.058558288884,7336.37953619217,7345.833210033248,8842.769478674252,480124736.36217579,0.0,35233267.594637479,62010550.96656194 - 12/28 24:00:00,102206573.87680616,0.0,118986377.17529474,0.0,62859548.177758637,0.0,94997309.94698948,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,453397107.05650159,0.0,35233267.594637479,46507913.22492146 - 12/29 01:00:00,109743348.4056345,0.0,126330576.13515908,0.0,70489681.29930346,0.0,104069152.02024879,0.0,2483.4298442149954,2444.55128672043,2447.701340563532,2946.494711815991,447792595.7202797,0.0,21139960.556782485,23253956.61246073 - 12/29 02:00:00,66683152.35158813,0.0,81579424.97630926,0.0,33470363.655047563,0.0,56507104.79438105,0.0,1240.7864615845365,1221.3617180599447,1222.935567295464,1472.1457729390186,256806072.0488903,0.0,14093307.03785499,0.0 - 12/29 03:00:00,94773065.73660985,0.0,109751140.75157881,0.0,58121302.713891867,0.0,88689109.16904223,0.0,1239.8507614863807,1220.4406665213804,1222.0133288879825,1471.0356004904257,369886643.6577129,0.0,14093307.03785499,0.0 - 12/29 04:00:00,97085925.60418765,0.0,111647382.96540676,0.0,61192639.09309125,0.0,91556779.5949269,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,379992105.0241835,0.0,14093307.03785499,0.0 - 12/29 05:00:00,98381284.62660805,0.0,112751015.98875679,0.0,62740572.9003533,0.0,93076656.86403063,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,385458908.14631977,0.0,14093307.03785499,0.0 - 12/29 06:00:00,99019652.881653,0.0,113224535.5596419,0.0,63751710.21676332,0.0,93981429.12925151,0.0,1235.551490682861,1216.2087016043179,1217.7759106521765,1465.9346797953054,388465022.6051545,0.0,14093307.03785499,0.0 - 12/29 07:00:00,97084147.77430254,0.0,111313911.11134334,0.0,61788555.02792728,0.0,91519908.67151504,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,380172297.4847934,0.0,14093307.03785499,15502637.741640486 - 12/29 08:00:00,103126091.80837469,0.0,119206986.07010517,0.0,66067179.210256699,0.0,97331457.61042911,0.0,1232.1089032348303,1212.8200085050003,1214.3828508759237,1461.8501811998588,404167897.69690188,0.0,56373228.15141996,38756594.35410121 - 12/29 09:00:00,108491770.5886032,0.0,130590208.50424366,0.0,76867821.35440207,0.0,110396738.98901718,0.0,4899.886323888015,4823.177689414658,4829.39284615898,5813.528083133421,499664085.2296083,0.0,56373228.15141996,38756594.35410121 - 12/29 10:00:00,92516949.63245276,0.0,127683572.23297534,0.0,80011647.15323016,0.0,113318850.01033493,0.0,7349.829485832022,7234.766534121985,7244.089269238471,8720.292124700132,523507337.71900656,0.0,28186614.07570998,0.0 - 12/29 11:00:00,59760167.552590917,0.0,120669129.68267754,0.0,76504819.01736345,0.0,108732583.30939432,0.0,7359.172975059533,7243.963749282613,7253.298335949574,8731.377818005663,475782825.9238968,0.0,28186614.07570998,0.0 - 12/29 12:00:00,33909628.341651517,0.0,120534147.10723505,0.0,76734971.52496416,0.0,108711479.64440719,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,413605107.636513,0.0,28186614.07570998,0.0 - 12/29 13:00:00,22321401.55569905,0.0,115177293.62612063,0.0,73395198.8186439,0.0,98940678.31109542,0.0,4940.259735848329,4862.91904807908,4869.185415620358,5861.429595276453,383756229.97292616,0.0,28186614.07570998,0.0 - 12/29 14:00:00,19327639.036013567,0.0,104619323.48178809,0.0,67350978.27671874,0.0,92000377.93231166,0.0,7407.459733453581,7291.4945694661159,7300.890404446253,8788.668213621317,394136965.24238619,0.0,28186614.07570998,0.0 - 12/29 15:00:00,27932115.22046958,0.0,101655303.00450179,0.0,62623269.88953922,0.0,88570538.52748382,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,428507425.83963617,0.0,28186614.07570998,0.0 - 12/29 16:00:00,52686526.86283835,0.0,107063554.54876858,0.0,63230203.44178653,0.0,91774299.81685764,0.0,12350.649339620823,12157.2976201977,12172.963539050896,14653.573988191134,499558728.8236691,0.0,28186614.07570998,0.0 - 12/29 17:00:00,92465713.44327082,0.0,125606190.377295,0.0,73593442.25631257,0.0,106428634.03946683,0.0,14736.852235625598,14506.144064719809,14524.836711958547,17484.71263733648,618603144.4550507,0.0,35233267.594637479,0.0 - 12/29 18:00:00,100586087.03618086,0.0,131473940.62215314,0.0,78254994.55810541,0.0,112486651.07620877,0.0,17156.89259921347,16888.29824495763,16910.060540999028,20355.998150113617,679522171.6196697,0.0,14093307.03785499,0.0 - 12/29 19:00:00,91945481.80264722,0.0,120979533.6448648,0.0,67457863.98503722,0.0,99567748.28740704,0.0,9795.593402218248,9642.241560140379,9654.666572553755,11622.097650944144,526523184.7890398,0.0,63419881.67034747,0.0 - 12/29 20:00:00,78362133.39371969,0.0,105553741.57242258,0.0,52818545.36665376,0.0,81545973.19237127,0.0,7362.267434095637,7247.0097639852369,7256.348275753042,8735.049275529238,428442822.6228747,0.0,63419881.67034747,69761869.8373822 - 12/29 21:00:00,82872168.85196215,0.0,108893100.29357749,0.0,55976349.011183049,0.0,85476807.25129172,0.0,4893.597637998293,4816.987454075693,4823.194634069957,5806.066797379164,406441872.89269766,0.0,49326574.63249246,69761869.8373822 - 12/29 22:00:00,88642962.56779082,0.0,113826552.34794489,0.0,60125902.02781743,0.0,90781755.65784073,0.0,4882.985320887614,4806.541274769107,4812.734993795116,5793.475688224392,426441826.80102828,0.0,35233267.594637479,69761869.8373822 - 12/29 23:00:00,99378179.12841897,0.0,124481630.05138912,0.0,67593020.4222237,0.0,100905670.73542217,0.0,4799.601466449,4724.462810126971,4730.5507626737139,5694.543927890379,464175472.6191582,0.0,35233267.594637479,62010550.96656194 - 12/29 24:00:00,102398860.18286039,0.0,126495564.82981901,0.0,69964593.87238473,0.0,103609945.7774895,0.0,4870.037246761898,4793.795905159291,4799.973200475663,5778.113292532606,475339875.38429978,0.0,35233267.594637479,46507913.22492146 - 12/30 01:00:00,108758605.45162165,0.0,131726033.7607411,0.0,76269901.19267109,0.0,110866518.33088877,0.0,2428.430357940515,2390.4128276637204,2393.49311857653,2881.23992081078,463957933.14589217,0.0,21139960.556782485,23253956.61246073 - 12/30 02:00:00,65159373.096147958,0.0,85868576.85391408,0.0,37248263.298318568,0.0,61432766.95658617,0.0,1220.7463302219035,1201.6353186922768,1203.183748448779,1448.368922056098,267975143.7548754,0.0,14093307.03785499,0.0 - 12/30 03:00:00,96499533.6213969,0.0,117157799.48757848,0.0,64942360.76807635,0.0,96970937.28855834,0.0,1209.1693851286887,1190.2396128341734,1191.7733580605419,1434.633318622161,393663567.59433409,0.0,14093307.03785499,0.0 - 12/30 04:00:00,100223768.20282004,0.0,120309591.28446588,0.0,68378127.81173778,0.0,100648745.3179359,0.0,1212.5470496072624,1193.5643993452323,1195.102428898374,1438.6407885926088,407703709.4161562,0.0,14093307.03785499,0.0 - 12/30 05:00:00,97514998.06992196,0.0,116938613.61117675,0.0,66399049.968607667,0.0,97609909.83148314,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,396807517.0508429,0.0,14093307.03785499,0.0 - 12/30 06:00:00,97338263.54120797,0.0,116091191.53721571,0.0,66322078.48577502,0.0,97124931.70497515,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,395174436.34329906,0.0,14093307.03785499,0.0 - 12/30 07:00:00,95989723.84201914,0.0,114427315.87733995,0.0,64321738.391622807,0.0,94704070.74472592,0.0,4895.70046577463,4819.057361690909,4825.2672089724069,5808.561722265917,442697761.1870418,0.0,14093307.03785499,15502637.741640486 - 12/30 08:00:00,102433025.5095517,0.0,124834712.0773369,0.0,69984537.95763913,0.0,102770926.13052036,0.0,19382.836156700516,19079.394240802856,19103.979987675415,22996.995211582715,690050741.8233895,0.0,56373228.15141996,38756594.35410121 - 12/30 09:00:00,92501111.84951577,0.0,131294198.55248766,0.0,76783632.90064457,0.0,111089613.40528044,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,666602557.6050834,0.0,56373228.15141996,38756594.35410121 - 12/30 10:00:00,80353094.92689973,0.0,129068747.40057679,0.0,80232918.77553235,0.0,114196682.15526586,0.0,12270.44572349273,12078.349606642061,12093.913792921734,14558.415459215395,587455491.7544537,0.0,28186614.07570998,0.0 - 12/30 11:00:00,85728930.86597234,0.0,125119932.25834243,0.0,78716491.86579809,0.0,111880008.23230618,0.0,9860.847354664287,9706.473949787762,9718.981732191263,11699.51897462487,548994322.4629845,0.0,28186614.07570998,0.0 - 12/30 12:00:00,83816213.1697083,0.0,116975184.42494229,0.0,74216560.74730525,0.0,105681591.63025993,0.0,4963.145846338146,4885.446872239779,4891.742269181856,5888.583091756075,454953655.0584728,0.0,28186614.07570998,0.0 - 12/30 13:00:00,78021968.67651342,0.0,111081570.22685017,0.0,70125202.66502823,0.0,99242256.75878515,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,433114880.1522747,0.0,28186614.07570998,0.0 - 12/30 14:00:00,79378432.0290908,0.0,110729985.46971837,0.0,68566026.035849,0.0,97781116.87147741,0.0,4992.03391873342,4913.882696472642,4920.214735876626,5922.857686927554,431151920.94297239,0.0,28186614.07570998,0.0 - 12/30 15:00:00,92534109.70954594,0.0,116360174.32009322,0.0,69761121.26161272,0.0,100736527.69072631,0.0,7501.005147459466,7383.575512564858,7393.090003238685,8899.656276491321,491630309.9650938,0.0,28186614.07570998,0.0 - 12/30 16:00:00,91459877.27080912,0.0,116801812.15421808,0.0,68989014.56891203,0.0,100170071.13555561,0.0,12505.936503042345,12310.153734107065,12326.016623664735,14837.816279915323,564548498.436121,0.0,28186614.07570998,0.0 - 12/30 17:00:00,99847184.98183048,0.0,120993399.89446727,0.0,70281448.31999995,0.0,102394567.702043,0.0,12514.401856893533,12318.486561264504,12334.36018852048,14847.860099117339,580770992.2392058,0.0,35233267.594637479,0.0 - 12/30 18:00:00,103357576.94939405,0.0,123583213.37710393,0.0,72709562.71501597,0.0,105363635.11251414,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,667258203.2422695,0.0,14093307.03785499,0.0 - 12/30 19:00:00,89839490.81013376,0.0,109425108.4739664,0.0,58568827.201596427,0.0,88252177.62694325,0.0,17531.907016435856,17257.441741519524,17279.67971663394,20800.938440967617,608417485.0086448,0.0,63419881.67034747,0.0 - 12/30 20:00:00,75898156.30409757,0.0,94958107.04912359,0.0,44078300.96296104,0.0,70704619.93381912,0.0,10028.183933897148,9871.190843656124,9883.910880589678,11898.057438254737,435692019.39703306,0.0,63419881.67034747,69761869.8373822 - 12/30 21:00:00,79742457.35171619,0.0,98290754.41664988,0.0,47060398.85088048,0.0,74440241.57349479,0.0,10011.521485514828,9854.789249011606,9867.488150816383,11878.28807929387,449337365.2654334,0.0,49326574.63249246,69761869.8373822 - 12/30 22:00:00,82430899.52708632,0.0,100331275.80970335,0.0,49418444.64923677,0.0,77201099.77651379,0.0,5014.091966948574,4935.595421828062,4941.955440294839,5949.028719127368,384408137.33605608,0.0,35233267.594637479,69761869.8373822 - 12/30 23:00:00,84250535.12240725,0.0,101766830.4438285,0.0,50834352.75215784,0.0,78940001.83334938,0.0,5012.441115387373,4933.970414656019,4940.328339135193,5947.070046766882,390793435.84914669,0.0,35233267.594637479,62010550.96656194 - 12/30 24:00:00,88432336.70945703,0.0,105790312.9619232,0.0,54371496.43689199,0.0,83398121.24316134,0.0,2506.2205576936869,2466.9852073280096,2470.1641695675969,2973.535023383441,369493125.2001354,0.0,35233267.594637479,46507913.22492146 - 12/31 01:00:00,96527915.07421062,0.0,113414830.93207374,0.0,62128443.02592911,0.0,92690625.29165043,0.0,2506.2205576936869,2466.9852073280096,2470.1641695675969,2973.535023383441,402262672.1725657,0.0,21139960.556782485,23253956.61246073 - 12/31 02:00:00,53862410.40654743,0.0,69048408.166308,0.0,25006298.795600155,0.0,44252859.04138308,0.0,1254.3426172538225,1234.70564958333,1236.2966938366035,1488.2296341703523,210938844.95127744,0.0,14093307.03785499,0.0 - 12/31 03:00:00,79577563.62258183,0.0,94224810.99800043,0.0,48296618.07000303,0.0,74692939.19582671,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,315596894.3407855,0.0,14093307.03785499,0.0 - 12/31 04:00:00,79311649.59001288,0.0,93138773.35668949,0.0,49158675.504982609,0.0,75028654.39480064,0.0,1258.3237280950187,1238.6244353916318,1240.2205294004016,1492.9530702150883,315466191.1936533,0.0,14093307.03785499,0.0 - 12/31 05:00:00,79238888.59044726,0.0,92687048.34122384,0.0,49655544.46443768,0.0,75104027.25289314,0.0,1259.0963329965785,1239.3849450193282,1240.982019022377,1493.8697364386467,315525507.5695188,0.0,14093307.03785499,0.0 - 12/31 06:00:00,82956000.47940631,0.0,96985375.24309054,0.0,51418166.90367469,0.0,78067920.63734508,0.0,1261.3663766959397,1241.6194507610997,1243.2194041528679,1496.5630566350436,328301429.10119846,0.0,14093307.03785499,0.0 - 12/31 07:00:00,78070561.71437845,0.0,91382642.562027,0.0,47565237.1110591,0.0,72630655.09931873,0.0,5046.950850158578,4967.939893091595,4974.3415907109269,5988.014529755355,365167185.1961625,0.0,14093307.03785499,15502637.741640486 - 12/31 08:00:00,84302575.87630706,0.0,99157992.67597138,0.0,51017547.84209379,0.0,77785599.36338246,0.0,20211.246580506093,19894.835744883945,19920.472271364895,23979.8725570581,614686853.5114817,0.0,56373228.15141996,38756594.35410121 - 12/31 09:00:00,94863447.44737832,0.0,111697100.12031846,0.0,62100079.00285174,0.0,91648489.50773491,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,625229509.5184895,0.0,56373228.15141996,38756594.35410121 - 12/31 10:00:00,98512822.0070907,0.0,114594569.60403897,0.0,68588633.72204232,0.0,98726813.61563772,0.0,12674.03236133594,12475.618020380824,12491.694127559944,15037.255599167287,570065799.3392081,0.0,28186614.07570998,0.0 - 12/31 11:00:00,97838330.43823993,0.0,112578917.74573286,0.0,66590786.408598829,0.0,96421932.72755212,0.0,10155.137858614566,9996.157280998861,10009.038349941988,12048.683423802719,525382428.208213,0.0,28186614.07570998,0.0 - 12/31 12:00:00,86720209.81044163,0.0,104214907.6313559,0.0,62247335.256783869,0.0,90386885.78165828,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,419678777.2659167,0.0,28186614.07570998,0.0 - 12/31 13:00:00,84474446.78093085,0.0,101910751.23515152,0.0,60599707.65894867,0.0,87932108.50822957,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,411063380.9068513,0.0,28186614.07570998,0.0 - 12/31 14:00:00,86860308.3761107,0.0,102335788.40964403,0.0,59935616.08148889,0.0,87498153.43786504,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,412866338.0453623,0.0,28186614.07570998,0.0 - 12/31 15:00:00,85826370.74766463,0.0,101464546.12212409,0.0,58857620.532602857,0.0,86202986.60507658,0.0,7647.708369247359,7527.9820680482039,7537.682641308041,9073.714049136406,446785037.66733226,0.0,28186614.07570998,0.0 - 12/31 16:00:00,88063928.87503772,0.0,102890581.81481953,0.0,58879422.88511861,0.0,86489945.8236323,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,527174871.085768,0.0,28186614.07570998,0.0 - 12/31 17:00:00,84841693.21299942,0.0,97302413.02599658,0.0,55082713.95086543,0.0,80914342.75253558,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,509628328.34386387,0.0,35233267.594637479,0.0 - 12/31 18:00:00,78276173.71822599,0.0,89055737.79916269,0.0,51782022.281936828,0.0,75145666.98771906,0.0,17979.58052612955,17698.106838905558,17720.912655975702,21332.08597147075,563290070.3599782,0.0,14093307.03785499,0.0 - 12/31 19:00:00,65404523.71838858,0.0,77169732.11792813,0.0,37373994.94408996,0.0,58789021.09365004,0.0,17985.236939898612,17703.674700461863,17726.48769228992,21338.797090489155,507852378.99735906,0.0,63419881.67034747,0.0 - 12/31 20:00:00,47882575.116969238,0.0,59346693.5459217,0.0,21319851.942945795,0.0,38738455.03138003,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,321091418.5539611,0.0,63419881.67034747,69761869.8373822 - 12/31 21:00:00,45523952.22084032,0.0,55766140.90625473,0.0,21216976.118446866,0.0,37371916.75603523,0.0,10281.992716094312,10121.02620202001,10134.06817731298,12199.191869854832,313729590.2765928,0.0,49326574.63249246,69761869.8373822 - 12/31 22:00:00,50924186.97795059,0.0,62067387.20616983,0.0,24511315.76780682,0.0,42592224.59751489,0.0,5144.746060404829,5064.204101077763,5070.729844954568,6104.044813639857,257076523.9017194,0.0,35233267.594637479,69761869.8373822 - 12/31 23:00:00,50785716.4566803,0.0,61943538.40238796,0.0,24406120.711493426,0.0,42539325.966238629,0.0,5152.203810950011,5071.545099146917,5078.080302649014,6112.8931499818759,256767702.04262049,0.0,35233267.594637479,62010550.96656194 - 12/31 24:00:00,49112712.79171557,0.0,59559041.50299226,0.0,24204061.3470089,0.0,41570117.3334157,0.0,2580.303349104235,2539.908218818894,2543.1811498018848,3061.431427478056,213055299.89786346,0.0,35233267.594637479,46507913.22492146 +Date/Time,86522:Zone Lights Electricity Rate [W](Hourly),92980:Zone Lights Electricity Rate [W](Hourly),146189:Zone Lights Electricity Rate [W](Hourly),156117:Zone Lights Electricity Rate [W](Hourly),86522_APPLIANCE:Other Equipment Electricity Rate [W](Hourly),92980_APPLIANCE:Other Equipment Electricity Rate [W](Hourly),146189_APPLIANCE:Other Equipment Electricity Rate [W](Hourly),156117_APPLIANCE:Other Equipment Electricity Rate [W](Hourly),86522 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),86522 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),92980 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),92980 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),146189 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),146189 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),156117 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J](Hourly),156117 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J](Hourly),DHW 86522:Water Use Equipment Heating Rate [W](Hourly),DHW 92980:Water Use Equipment Heating Rate [W](Hourly),DHW 146189:Water Use Equipment Heating Rate [W](Hourly),DHW 156117:Water Use Equipment Heating Rate [W](Hourly),DistrictHeating:Facility [J](Hourly),DistrictCooling:Facility [J](Hourly),InteriorEquipment:Electricity [J](Hourly),InteriorLights:Electricity [J](Hourly) + 01/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,60445075.4217239,0.0,73002436.86632909,0.0,36420082.75642025,0.0,56624215.35425409,0.0,2583.9882438566935,2543.5354258565864,2546.813030866066,3065.8034144407677,265156314.81279976,0.0,21139960.556782485,23253956.61246073 + 01/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6992320.180099715,0.0,14354718.875117094,0.0,0.0,0.0,686074.0783205634,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,41379821.72990141,0.0,14093307.03785499,0.0 + 01/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24710082.678845005,0.0,33406914.18607578,0.0,5980814.468184035,0.0,18018341.183343226,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,101467803.08470173,0.0,14093307.03785499,0.0 + 01/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23121982.1137716,0.0,30295807.494761468,0.0,8425020.85110109,0.0,18963973.811267657,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,100159459.17139878,0.0,14093307.03785499,0.0 + 01/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21873318.489791965,0.0,28419004.60778556,0.0,8921780.336211678,0.0,18071562.725099535,0.0,1293.3156672372614,1273.0685691988627,1274.7090479896829,1534.469670282925,96637692.79584018,0.0,14093307.03785499,0.0 + 01/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21258505.57481562,0.0,27384505.03952747,0.0,9161094.127224887,0.0,17792434.939941039,0.0,1293.2333272844795,1272.9875182934023,1274.627892641858,1534.371977072059,94947334.2565595,0.0,14093307.03785499,0.0 + 01/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19653783.92356316,0.0,25610194.915651427,0.0,7541097.945405368,0.0,15600981.554224488,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,145777069.38492773,0.0,14093307.03785499,15502637.741640486 + 01/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,34120384.34819441,0.0,43421352.85234823,0.0,23073499.08932834,0.0,33759727.79765992,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,443540603.1052954,0.0,56373228.15141996,38756594.35410121 + 01/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21772276.186806598,0.0,48289445.80765087,0.0,27267641.001251945,0.0,40591622.360089939,0.0,18062.123443729644,17779.357531732254,17802.268048613187,21430.019992346388,408186553.8149167,0.0,56373228.15141996,38756594.35410121 + 01/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,40770378.14064714,0.0,22945038.21222695,0.0,34503601.31511632,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,291370095.2785413,0.0,28186614.07570998,0.0 + 01/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6935617.410562188,40688386.81144647,0.0,23808294.866569785,0.0,35601005.37640084,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,254680506.56329937,6935617.410562188,28186614.07570998,0.0 + 01/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9131873.685999873,43836039.14058268,0.0,26697571.001041198,0.0,39286830.77208929,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,187080871.95793353,9131873.685999873,28186614.07570998,0.0 + 01/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,46548286.511100698,0.0,27514553.055884009,0.0,38915330.95402311,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,190238601.56522817,0.0,28186614.07570998,0.0 + 01/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7512068.219152128,0.0,46267620.05741463,0.0,27360180.154521809,0.0,39089637.64992069,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,197448239.92647139,0.0,28186614.07570998,0.0 + 01/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16918953.053392829,0.0,48336532.2275358,0.0,27700446.406326936,0.0,40766121.31226008,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,249480227.6163554,0.0,28186614.07570998,0.0 + 01/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33650426.17139411,0.0,57108766.7696415,0.0,32019679.039697306,0.0,47655546.7012957,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,362994110.16198846,0.0,28186614.07570998,0.0 + 01/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,48876125.744392577,0.0,65865624.50715945,0.0,36617594.1541337,0.0,54343650.666830789,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,397957798.71844688,0.0,35233267.594637479,0.0 + 01/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56869695.832136917,0.0,72306591.89307399,0.0,41501758.27989178,0.0,60713268.119608048,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,500291329.5255935,0.0,14093307.03785499,0.0 + 01/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,47517009.1073462,0.0,62249452.78930352,0.0,30041470.842119516,0.0,47298908.97443694,0.0,17936.506471112665,17655.70711625542,17678.45829695528,21280.98024943098,455492789.3947218,0.0,63419881.67034747,0.0 + 01/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38000955.20955116,0.0,52448222.45485572,0.0,18750059.3746076,0.0,34138340.1451563,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,296375397.1012757,0.0,63419881.67034747,69761869.8373822 + 01/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,44501445.99140573,0.0,58788487.57998185,0.0,23384065.424150837,0.0,40411586.69636179,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,319932536.7070119,0.0,49326574.63249246,69761869.8373822 + 01/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54369871.313445467,0.0,68924632.14098932,0.0,30602929.399480765,0.0,50188686.744855049,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,280023164.953971,0.0,35233267.594637479,69761869.8373822 + 01/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63542518.1839637,0.0,78428499.41666687,0.0,37153661.83561557,0.0,59087046.54480682,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,313795767.7649428,0.0,35233267.594637479,62010550.96656194 + 01/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72174394.26550505,0.0,87156354.66111823,0.0,43892698.483689609,0.0,67866268.01632634,0.0,2517.4220429791564,2478.0113312716996,2481.2045017974016,2986.8251580876706,308758182.34952858,0.0,35233267.594637479,46507913.22492146 + 01/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,84159375.70416026,0.0,99322533.64811503,0.0,54264807.61910432,0.0,81032814.71084625,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,356377571.48987177,0.0,21139960.556782485,23253956.61246073 + 01/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44453886.621426377,0.0,58669198.20928459,0.0,20821455.329161548,0.0,37458805.53819804,0.0,1254.3426172538225,1234.70564958333,1236.2966938366035,1488.2296341703523,180172214.23950935,0.0,14093307.03785499,0.0 + 01/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73571864.45807596,0.0,87341355.59099067,0.0,45055693.044752318,0.0,69339843.98300483,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,294077625.61826249,0.0,14093307.03785499,0.0 + 01/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76024036.73178056,0.0,89240662.26252817,0.0,47527603.51632239,0.0,72171875.10584264,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,303733046.1579125,0.0,14093307.03785499,0.0 + 01/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78067984.41299495,0.0,90907950.12362954,0.0,49635257.4374286,0.0,74302621.41278994,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,311645543.0360032,0.0,14093307.03785499,0.0 + 01/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79694203.5743237,0.0,92447703.95989013,0.0,51187887.31700185,0.0,76035890.45592542,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,318097414.9563012,0.0,14093307.03785499,0.0 + 01/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77309993.37324718,0.0,89974781.98484874,0.0,48850105.70217364,0.0,73059677.52220524,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,364121477.1791153,0.0,14093307.03785499,15502637.741640486 + 01/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,80922722.17718604,0.0,95710253.277962,0.0,51617807.52689248,0.0,76880008.39141627,0.0,20029.769395586467,19716.199619148774,19741.60595474871,23764.55680456099,604838465.7600186,0.0,56373228.15141996,38756594.35410121 + 01/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,77671502.10879413,0.0,102278118.2592752,0.0,58777788.863582078,0.0,85649248.25936158,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.214878384926,587140817.071156,0.0,56373228.15141996,38756594.35410121 + 01/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60381647.242279458,0.0,103048178.52381061,0.0,63671374.60581081,0.0,91262039.6080265,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,505680536.4715285,0.0,28186614.07570998,0.0 + 01/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52936031.947730127,0.0,104069690.12003923,0.0,64505441.28366363,0.0,92576884.48683492,0.0,10034.74093803058,9877.64519666664,9890.37355069283,11905.837073362818,464238996.1697782,0.0,28186614.07570998,0.0 + 01/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58254687.06857228,0.0,104624498.4176988,0.0,65151352.51462499,0.0,93452034.425062,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,396678652.04125,0.0,28186614.07570998,0.0 + 01/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55257430.417458128,0.0,104006891.2848323,0.0,64413680.88005348,0.0,90590328.87835963,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,389464411.07599547,0.0,28186614.07570998,0.0 + 01/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77158613.19972666,0.0,104531196.28550864,0.0,63974818.518555838,0.0,91874116.81471151,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,412734824.43379458,0.0,28186614.07570998,0.0 + 01/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87636361.51102215,0.0,110062391.66259665,0.0,66064987.88054246,0.0,95490531.60517937,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,471867483.90797337,0.0,28186614.07570998,0.0 + 01/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93690072.76059017,0.0,113856960.77915901,0.0,67188968.19850151,0.0,97431428.75588434,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,560509765.1085817,0.0,28186614.07570998,0.0 + 01/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,94826806.74805144,0.0,113923532.86283933,0.0,66144549.55987655,0.0,96357027.86766905,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,559594251.652883,0.0,35233267.594637479,0.0 + 01/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97526010.18685913,0.0,115578352.9189447,0.0,68018614.33608575,0.0,98485712.02644608,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,643687372.9050984,0.0,14093307.03785499,0.0 + 01/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,82453562.20686186,0.0,99817363.89600168,0.0,52757590.18970223,0.0,79871390.65189535,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,579444053.1880757,0.0,63419881.67034747,0.0 + 01/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,68157009.39595093,0.0,85233120.6948908,0.0,38103545.31877306,0.0,62206535.97420116,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,404868294.95159569,0.0,63419881.67034747,69761869.8373822 + 01/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,70016936.63750161,0.0,86419288.48552263,0.0,39717395.6859526,0.0,64019413.35553303,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,411556116.13034197,0.0,49326574.63249246,69761869.8373822 + 01/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70958181.73631287,0.0,86408316.17541474,0.0,40840481.169147308,0.0,64987708.147283058,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,339011198.3392441,0.0,35233267.594637479,69761869.8373822 + 01/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72622422.9693938,0.0,87268602.53956875,0.0,41924543.26473997,0.0,66357607.64496565,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,343989687.5297544,0.0,35233267.594637479,62010550.96656194 + 01/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72749183.55698367,0.0,86877095.43670835,0.0,42434911.34476951,0.0,66452895.75742474,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,306632321.96601316,0.0,35233267.594637479,46507913.22492146 + 01/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,78152413.62748987,0.0,91591583.16616729,0.0,48249368.150460179,0.0,73121961.60005354,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,329233562.4142977,0.0,21139960.556782485,23253956.61246073 + 01/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33661001.22299934,0.0,46045987.63731128,0.0,9871389.280842223,0.0,24999123.820073517,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,133707229.45086447,0.0,14093307.03785499,0.0 + 01/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57505557.627468708,0.0,68654179.6630078,0.0,31976708.7093262,0.0,51612865.81468637,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,228898028.35463578,0.0,14093307.03785499,0.0 + 01/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56397035.55312042,0.0,66723366.19642481,0.0,32001354.97386053,0.0,51060643.452704329,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,225352825.01050408,0.0,14093307.03785499,0.0 + 01/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56882407.20140466,0.0,67407218.9008538,0.0,32456003.04058176,0.0,51641491.986158657,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,227578070.5739687,0.0,14093307.03785499,0.0 + 01/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56728552.94303082,0.0,67060978.81062118,0.0,32599295.884684445,0.0,51564708.07431501,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,227144485.1576213,0.0,14093307.03785499,0.0 + 01/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51559057.670662108,0.0,61049603.941975269,0.0,28782277.196271458,0.0,46026038.768947917,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,264180775.3577361,0.0,14093307.03785499,15502637.741640486 + 01/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,51982804.57074971,0.0,61884879.361344087,0.0,32656353.063713533,0.0,46714900.2806039,0.0,20520.811428769444,20199.554297698473,20225.583485136696,24347.15943270584,500294128.39592888,0.0,56373228.15141996,38756594.35410121 + 01/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65302213.03757514,0.0,75286407.8207201,0.0,41415968.92537862,0.0,60824520.0769598,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,511502402.0902116,0.0,56373228.15141996,38756594.35410121 + 01/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73692627.08074792,0.0,83934489.7996141,0.0,50197808.79994893,0.0,72133279.13429857,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,472029644.3866686,0.0,28186614.07570998,0.0 + 01/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68057655.33408392,0.0,79717165.67682746,0.0,47257358.96112887,0.0,68623000.88266583,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,417459023.7714504,0.0,28186614.07570998,0.0 + 01/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57957610.05523778,0.0,71045815.31111638,0.0,42542418.25472307,0.0,61839107.4746973,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,310458877.87607696,0.0,28186614.07570998,0.0 + 01/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50949658.52245888,0.0,69902917.18943924,0.0,41201686.44836928,0.0,59686166.38393995,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,298814355.32450976,0.0,28186614.07570998,0.0 + 01/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51056532.01160313,0.0,69977222.58205523,0.0,40852070.462345469,0.0,59415053.10159337,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,298324754.7495811,0.0,28186614.07570998,0.0 + 01/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47821501.19010649,0.0,67857874.35959563,0.0,39650925.189869899,0.0,57572980.93850424,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,328342335.061896,0.0,28186614.07570998,0.0 + 01/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62870133.56088223,0.0,74803910.81616494,0.0,42729053.85361065,0.0,62437463.11081266,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,435238983.64783677,0.0,28186614.07570998,0.0 + 01/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64428618.71990508,0.0,74784541.83776996,0.0,41979202.55501054,0.0,61778955.31250733,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,435369740.73155918,0.0,35233267.594637479,0.0 + 01/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67862104.10724741,0.0,78103134.7306261,0.0,44815822.19428449,0.0,65321639.61896272,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,525259425.7554232,0.0,14093307.03785499,0.0 + 01/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,55131245.50890508,0.0,66179511.82710303,0.0,31821737.06331619,0.0,49899381.894185688,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,471931891.69439277,0.0,63419881.67034747,0.0 + 01/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,42509774.7701567,0.0,53992531.46459457,0.0,18797635.65889403,0.0,34443749.35621932,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,303271286.8096235,0.0,63419881.67034747,69761869.8373822 + 01/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46045567.88133322,0.0,57555468.47470942,0.0,21720480.116743439,0.0,38204623.96614873,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,317053735.9986936,0.0,49326574.63249246,69761869.8373822 + 01/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51263618.48919115,0.0,63081904.495718318,0.0,26003914.040983946,0.0,43840600.43246013,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,260784903.61894024,0.0,35233267.594637479,69761869.8373822 + 01/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60093053.0518236,0.0,72460649.02490461,0.0,32708089.765829639,0.0,53205899.153908509,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,294501762.9488774,0.0,35233267.594637479,62010550.96656194 + 01/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71624586.16814676,0.0,84920035.64829798,0.0,41756069.59669213,0.0,65325252.71739192,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,301417965.0224738,0.0,35233267.594637479,46507913.22492146 + 01/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,86233702.54826606,0.0,100270994.03890862,0.0,54281879.50697644,0.0,81447037.15313322,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,359831653.05493029,0.0,21139960.556782485,23253956.61246073 + 01/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49629778.44316507,0.0,62924678.628412488,0.0,22503510.943425768,0.0,40423116.04227322,0.0,1251.8605872241543,1232.2624761967982,1233.8503721717944,1485.284800285062,194212813.7064367,0.0,14093307.03785499,0.0 + 01/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79532447.93339923,0.0,93440284.66223103,0.0,48152361.0014906,0.0,73794612.5313577,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,313619697.69693866,0.0,14093307.03785499,0.0 + 01/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82774925.61856982,0.0,96610731.1499606,0.0,51359952.267666418,0.0,77726101.48291181,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,327171702.0875687,0.0,14093307.03785499,0.0 + 01/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,84624860.76194427,0.0,98499411.66386034,0.0,53227552.27974497,0.0,79734616.86084469,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,334786433.13485428,0.0,14093307.03785499,0.0 + 01/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86707276.16714165,0.0,100525549.61708358,0.0,55187139.98259283,0.0,81945522.34077218,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,343026458.5638647,0.0,14093307.03785499,0.0 + 01/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,84762165.91464065,0.0,98554069.83991097,0.0,53275938.84196922,0.0,79513830.36699984,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,390749886.78861847,0.0,14093307.03785499,15502637.741640486 + 01/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,84467106.46155381,0.0,103648967.21537489,0.0,54860271.7794648,0.0,82140383.32511461,0.0,19954.10685172838,19641.721586529617,19667.031949582703,23674.78608449023,623692256.0818994,0.0,56373228.15141996,38756594.35410121 + 01/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,56340402.38560875,0.0,101899836.84437818,0.0,55307186.58404539,0.0,82479773.893852,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,557827081.6663252,0.0,56373228.15141996,38756594.35410121 + 01/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36605511.30874746,0.0,102687571.92988096,0.0,61055203.9502362,0.0,88519891.35325799,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,476185475.03372368,0.0,28186614.07570998,0.0 + 01/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22151428.375356936,0.0,101872134.98333268,0.0,62034641.47449381,0.0,89624631.2994629,0.0,10034.74093803058,9877.64519666664,9890.37355069283,11905.837073362818,425833784.4641566,0.0,28186614.07570998,0.0 + 01/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13355910.520792287,0.0,100941381.42172413,0.0,63005771.64713939,0.0,90380378.75413753,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,343020376.18957206,0.0,28186614.07570998,0.0 + 01/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9003397.949416087,0.0,97465954.3569685,0.0,61000211.16993153,0.0,82847106.97465258,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,325767722.86147239,0.0,28186614.07570998,0.0 + 01/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16558071.09920207,0.0,88360838.58122756,0.0,55947723.912757087,0.0,77053627.50911974,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,313504302.8861964,0.0,28186614.07570998,0.0 + 01/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50215692.0051368,0.0,92572708.83398566,0.0,55564582.872408289,0.0,79806545.98686652,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,391696841.1727712,0.0,28186614.07570998,0.0 + 01/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62392792.71867935,0.0,96241139.61795211,0.0,56236942.6707402,0.0,81717190.04497558,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,485816917.5096373,0.0,28186614.07570998,0.0 + 01/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74195874.8051225,0.0,99233962.44150827,0.0,57327072.4453489,0.0,83387563.78911796,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,503685751.25881299,0.0,35233267.594637479,0.0 + 01/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79022597.09432891,0.0,101642641.73243983,0.0,60011040.87661641,0.0,86483206.67013115,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,592079879.8137224,0.0,14093307.03785499,0.0 + 01/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,65393622.677930127,0.0,86850491.00184179,0.0,45509137.515452999,0.0,68903255.24360228,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,532014295.3276286,0.0,63419881.67034747,0.0 + 01/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,50823312.3924623,0.0,71536838.91210158,0.0,30044225.1247152,0.0,50367746.26722429,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,354840266.6013254,0.0,63419881.67034747,69761869.8373822 + 01/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,55217642.47770602,0.0,75046175.8649887,0.0,32723390.625303627,0.0,53878955.89736696,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,368740255.5757662,0.0,49326574.63249246,69761869.8373822 + 01/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60025651.61353547,0.0,78978719.59593329,0.0,36361189.7930268,0.0,58381523.14758493,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,309563595.2611667,0.0,35233267.594637479,69761869.8373822 + 01/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63656525.81724127,0.0,81884537.55936909,0.0,38984199.06971706,0.0,61673493.62983601,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,321890297.05907949,0.0,35233267.594637479,62010550.96656194 + 01/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64686006.18043056,0.0,82253950.23581267,0.0,39767279.1928671,0.0,62472197.76772454,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,287297669.2469617,0.0,35233267.594637479,46507913.22492146 + 01/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,67894147.58751135,0.0,84272536.91559939,0.0,43617226.8824303,0.0,66649696.16694027,0.0,2556.918377229535,2516.889343041355,2520.132611853418,3033.686051007979,300693062.5317575,0.0,21139960.556782485,23253956.61246073 + 01/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28060748.303724588,0.0,41516728.41045338,0.0,9303167.277386776,0.0,22820414.696300854,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,120892008.13283545,0.0,14093307.03785499,0.0 + 01/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47629508.52544385,0.0,60698638.279869128,0.0,27301114.883436517,0.0,44992069.22890341,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,199812280.36262275,0.0,14093307.03785499,0.0 + 01/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53283417.13567519,0.0,65564374.14145143,0.0,32374938.445027707,0.0,50913331.29283124,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,221172652.69588325,0.0,14093307.03785499,0.0 + 01/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55719951.08578046,0.0,67444229.82844374,0.0,34951860.75300943,0.0,53570461.99419731,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,230745621.59649436,0.0,14093307.03785499,0.0 + 01/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55904250.87957157,0.0,67248877.52715636,0.0,35349466.14506139,0.0,53722958.24987565,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,231284670.73672838,0.0,14093307.03785499,0.0 + 01/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52013157.60745565,0.0,63034141.575432028,0.0,31920300.80912316,0.0,49218249.16082006,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,215270948.32154689,0.0,14093307.03785499,15502637.741640486 + 01/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,52428004.30583287,0.0,65430907.2923362,0.0,34820326.5586581,0.0,49437660.755890388,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,278457295.58758148,0.0,56373228.15141996,38756594.35410121 + 01/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,54887382.017656829,0.0,73087586.24944756,0.0,40247952.44479548,0.0,59230723.61430421,0.0,12784.591886147677,12584.446715206774,12600.663059267092,15168.430255039897,418750919.22258529,0.0,56373228.15141996,38756594.35410121 + 01/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54852566.82583274,0.0,75006971.94398043,0.0,45656800.56589419,0.0,65582316.626826297,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,432585821.3640005,0.0,28186614.07570998,0.0 + 01/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52027414.575352277,0.0,74146061.94489153,0.0,45081945.816827747,0.0,65030102.77912033,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,427582800.012573,0.0,28186614.07570998,0.0 + 01/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48655867.48025651,0.0,72504040.597485,0.0,44366771.379809077,0.0,64197344.99469307,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,344502389.39007237,0.0,28186614.07570998,0.0 + 01/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45885838.98932815,0.0,73494268.33638974,0.0,45231174.74952899,0.0,64403155.68165517,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,343369145.3672825,0.0,28186614.07570998,0.0 + 01/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47015660.622346948,0.0,75831278.66923648,0.0,46265694.259471509,0.0,66249020.780863959,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,349581204.417305,0.0,28186614.07570998,0.0 + 01/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63878625.72072981,0.0,83171424.12569498,0.0,49358877.421907197,0.0,71820730.94976649,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,382135226.2508991,0.0,28186614.07570998,0.0 + 01/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72615980.92218708,0.0,89081949.16820883,0.0,52080728.05664204,0.0,75875005.31714463,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,555433322.2073841,0.0,28186614.07570998,0.0 + 01/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76895465.43766725,0.0,92631049.89771004,0.0,53102790.58484881,0.0,77741856.08428192,0.0,22801.026255618603,22444.071936059645,22472.993413568056,27052.547283611366,641545462.0043956,0.0,35233267.594637479,0.0 + 01/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81647065.08373335,0.0,97025397.50273842,0.0,56507728.36350004,0.0,82166867.93108115,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,582704847.7698544,0.0,14093307.03785499,0.0 + 01/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,71148630.86466648,0.0,86383762.40810833,0.0,45196622.17959901,0.0,68736584.86194483,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,536823389.20312008,0.0,63419881.67034747,0.0 + 01/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,59315236.231641348,0.0,74751812.62420856,0.0,32376164.456129735,0.0,53669046.73405357,0.0,15175.62852723902,14938.051231634385,14957.300435341542,18005.303958215063,447186882.99478128,0.0,63419881.67034747,69761869.8373822 + 01/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,63557037.564328107,0.0,78802534.88832554,0.0,35660594.223516259,0.0,57923284.38756148,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,425172303.52102139,0.0,49326574.63249246,69761869.8373822 + 01/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67463172.54718183,0.0,82442186.14338444,0.0,38763664.170180577,0.0,61865121.70571197,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,401917226.5322909,0.0,35233267.594637479,69761869.8373822 + 01/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70812999.1182617,0.0,85639608.1706506,0.0,41268058.04318448,0.0,65103032.42304658,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,376199760.4309782,0.0,35233267.594637479,62010550.96656194 + 01/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76317030.96941227,0.0,91019908.22776988,0.0,45844924.138677109,0.0,70847600.52349654,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,359480516.26985946,0.0,35233267.594637479,46507913.22492146 + 01/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,86726117.19321846,0.0,101471793.34208775,0.0,55140487.933852899,0.0,82449068.25559303,0.0,2517.4220429791564,2478.0113312716996,2481.2045017974016,2986.8251580876706,363455933.6476414,0.0,21139960.556782485,23253956.61246073 + 01/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47544889.668395448,0.0,61310884.560037288,0.0,21541628.006268726,0.0,38819926.04520463,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,188016348.18372906,0.0,14093307.03785499,0.0 + 01/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76281168.31982906,0.0,90100482.5370378,0.0,46065193.19808812,0.0,71181213.20151247,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,302396925.7979062,0.0,14093307.03785499,0.0 + 01/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79907403.59821685,0.0,93568339.04727407,0.0,49529985.446982387,0.0,75502253.74257863,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,317239711.48421207,0.0,14093307.03785499,0.0 + 01/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81797194.66368807,0.0,95280799.75852368,0.0,51416755.56956105,0.0,77480082.12300486,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,324706561.76393786,0.0,14093307.03785499,0.0 + 01/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82668016.26405227,0.0,95949475.72141975,0.0,52436589.472276199,0.0,78426839.78231848,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,328212650.88922688,0.0,14093307.03785499,0.0 + 01/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80369484.38261067,0.0,93721196.80516353,0.0,50131755.67405189,0.0,75587087.84962255,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,318541254.36060878,0.0,14093307.03785499,15502637.741640486 + 01/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,79094750.86020597,0.0,96989881.00480595,0.0,50765285.73576695,0.0,76771369.18517266,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,322390155.3273903,0.0,56373228.15141996,38756594.35410121 + 01/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,54924552.44524279,0.0,94159697.27806944,0.0,50803375.834169778,0.0,76413796.08138643,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,351497501.25416037,0.0,56373228.15141996,38756594.35410121 + 01/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46055903.817508939,0.0,93639168.7758752,0.0,56357550.72816107,0.0,81871696.58992376,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,390929720.680137,0.0,28186614.07570998,0.0 + 01/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38040992.85672537,0.0,90505463.5729892,0.0,55471649.73685642,0.0,80652725.01091762,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,377847409.79324409,0.0,28186614.07570998,0.0 + 01/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55319954.55751462,0.0,92772478.83009373,0.0,56820447.95207543,0.0,82615600.73406193,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,362979534.48424938,0.0,28186614.07570998,0.0 + 01/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77159041.04569349,0.0,102176529.30958785,0.0,59483362.21330801,0.0,87511366.74190793,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,401914341.0943872,0.0,28186614.07570998,0.0 + 01/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85553146.60391222,0.0,106255279.47651705,0.0,60314807.06776403,0.0,89447595.39574817,0.0,7600.3420852062,7481.357312019881,7490.997804522686,9017.51576120379,455295595.2105706,0.0,28186614.07570998,0.0 + 01/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90942798.52265062,0.0,108860678.532197,0.0,61311345.09334738,0.0,90901100.7220303,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,503648945.0923975,0.0,28186614.07570998,0.0 + 01/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93871887.05925069,0.0,110309768.31041256,0.0,61774908.857575,0.0,91533860.03047909,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,547333037.6457185,0.0,28186614.07570998,0.0 + 01/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,93757748.53846565,0.0,109338058.97993829,0.0,60481930.637663189,0.0,89918773.28145677,0.0,15224.850449625861,14986.502575643919,15005.814213853158,18063.70389021076,581307647.5031252,0.0,35233267.594637479,0.0 + 01/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97474387.60079886,0.0,112517599.941389,0.0,63438838.52189499,0.0,93517231.1420336,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,632305846.0949179,0.0,14093307.03785499,0.0 + 01/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,82174171.83510833,0.0,96276030.52715466,0.0,50000041.63564718,0.0,76200898.95499444,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,456284165.17507687,0.0,63419881.67034747,0.0 + 01/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,63651400.82052127,0.0,76951835.78909377,0.0,33288761.195826726,0.0,55011795.53418639,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,342954901.2682447,0.0,63419881.67034747,69761869.8373822 + 01/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,65840903.21313944,0.0,79659878.7773597,0.0,35165484.30026503,0.0,57483016.573071029,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,314183354.8162463,0.0,49326574.63249246,69761869.8373822 + 01/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67506309.56991208,0.0,81100657.15838117,0.0,36892278.52640244,0.0,59494535.88298776,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,321140147.8612741,0.0,35233267.594637479,69761869.8373822 + 01/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67359223.4679311,0.0,80463009.17978963,0.0,37079243.53170265,0.0,59442570.38774434,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,320580518.3074214,0.0,35233267.594637479,62010550.96656194 + 01/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,69766105.78958115,0.0,82577129.64277849,0.0,39612363.92535533,0.0,62346569.66342884,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,330538640.7613974,0.0,35233267.594637479,46507913.22492146 + 01/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,76809582.59909962,0.0,89225628.99579899,0.0,46865380.56941298,0.0,70902958.29880615,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,321921786.33324459,0.0,21139960.556782485,23253956.61246073 + 01/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34547304.43717663,0.0,46062266.58602732,0.0,10869052.472369554,0.0,25599665.571227038,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,136137407.00186397,0.0,14093307.03785499,0.0 + 01/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61598838.68687877,0.0,72667589.78309353,0.0,35202180.89090642,0.0,55509587.63683343,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,244014788.67860986,0.0,14093307.03785499,0.0 + 01/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65061881.2361209,0.0,75896084.54947242,0.0,38392666.222191069,0.0,59675473.6696887,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,258010367.01627327,0.0,14093307.03785499,0.0 + 01/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70481647.94750595,0.0,81684297.88005786,0.0,43058963.359309639,0.0,65517269.9083889,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,279604942.19788828,0.0,14093307.03785499,0.0 + 01/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75782977.02226773,0.0,87350274.11205109,0.0,47481394.75534186,0.0,71143896.69759144,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,300527411.12869086,0.0,14093307.03785499,0.0 + 01/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76572109.59300617,0.0,88509438.34952079,0.0,47625204.336959768,0.0,71520329.98311936,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,359027048.53644636,0.0,14093307.03785499,15502637.741640486 + 01/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,79123407.07952239,0.0,96246562.14918255,0.0,50919171.24743492,0.0,76373973.5788653,0.0,19954.10685172838,19641.721586529617,19667.031949582703,23674.78608449023,601238641.3553964,0.0,56373228.15141996,38756594.35410121 + 01/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,63332402.1261212,0.0,99711304.26273129,0.0,55679272.570004608,0.0,82437382.85157055,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.00205521031,561853544.694356,0.0,56373228.15141996,38756594.35410121 + 01/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70570255.5239749,0.0,108085255.09120724,0.0,67157298.4912435,0.0,95909372.33863659,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,527590426.14419355,0.0,28186614.07570998,0.0 + 01/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77548148.7988537,0.0,112245257.81912321,0.0,70106886.95316732,0.0,100057859.47657185,0.0,9915.041662468222,9759.819835593087,9772.39635961535,11763.81845211033,508318027.76294919,0.0,28186614.07570998,0.0 + 01/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79436280.39688528,0.0,112830216.70041992,0.0,71080975.27321653,0.0,101457005.39647402,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,438841988.83327957,0.0,28186614.07570998,0.0 + 01/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,76899533.49809838,0.0,112260485.68592602,0.0,70873000.96360915,0.0,99986980.38586857,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,434057511.599786,0.0,28186614.07570998,0.0 + 01/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70898992.18525149,0.0,109487360.58233118,0.0,68845534.32166647,0.0,97388488.68603328,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,420800313.13289907,0.0,28186614.07570998,0.0 + 01/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44958840.696636158,0.0,100182763.30136064,0.0,62156627.06351109,0.0,88321569.2144225,0.0,7453.058558288884,7336.37953619217,7345.833210033248,8842.769478674252,407140747.09540918,0.0,28186614.07570998,0.0 + 01/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59150436.89785543,0.0,104230489.79095185,0.0,62027563.55839683,0.0,90119276.92264992,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,500977610.56389549,0.0,28186614.07570998,0.0 + 01/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,94936006.85279116,0.0,120386522.65360809,0.0,70784650.45987918,0.0,102607419.86951207,0.0,12370.005842494198,12176.35109340764,12192.041564605817,14676.539739967253,573808377.5015001,0.0,35233267.594637479,0.0 + 01/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102880652.9276065,0.0,125444116.51913879,0.0,75285581.65497914,0.0,108048482.59258759,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,670179682.2901852,0.0,14093307.03785499,0.0 + 01/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,90036419.28817931,0.0,111667310.2864921,0.0,61746733.480861019,0.0,91626679.21664103,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,613597990.8680465,0.0,63419881.67034747,0.0 + 01/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75892269.01523324,0.0,96835788.22678657,0.0,47081970.89837313,0.0,73856459.95379697,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,441741510.22675767,0.0,63419881.67034747,69761869.8373822 + 01/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,80541795.23288274,0.0,101333035.42787814,0.0,50073385.63930409,0.0,78068947.34919435,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,458092185.7818271,0.0,49326574.63249246,69761869.8373822 + 01/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87213358.73245065,0.0,108199405.86789677,0.0,54683384.88907383,0.0,84511902.62202816,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,408471151.7102702,0.0,35233267.594637479,69761869.8373822 + 01/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92646055.95129158,0.0,113606341.88586024,0.0,58346971.516404788,0.0,89583704.80022577,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,427897955.17203757,0.0,35233267.594637479,62010550.96656194 + 01/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99729310.91420663,0.0,120605749.84487747,0.0,63726855.22138408,0.0,96657580.56740278,0.0,2457.1634278000549,2418.6960759544606,2421.8128127195038,2915.3306113904188,417486307.0881829,0.0,35233267.594637479,46507913.22492146 + 01/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,110042798.16965108,0.0,130457397.13208342,0.0,72797308.22686021,0.0,107827555.21874134,0.0,2457.1634278000549,2418.6960759544606,2421.8128127195038,2915.3306113904188,457891869.2876481,0.0,21139960.556782485,23253956.61246073 + 01/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68759540.58132567,0.0,87239259.4793021,0.0,36152117.09380664,0.0,61117992.79229444,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.665305695209,271652315.21688488,0.0,14093307.03785499,0.0 + 01/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,98161777.6335387,0.0,116473645.08311118,0.0,62063906.64833236,0.0,94647530.63693986,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,389691805.5715755,0.0,14093307.03785499,0.0 + 01/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100459630.06445807,0.0,118139681.69641836,0.0,64881316.7765875,0.0,97241051.44474426,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,399066625.5518616,0.0,14093307.03785499,0.0 + 01/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102469674.94655258,0.0,119676311.7493793,0.0,66914130.46940431,0.0,99281089.85912767,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,406639178.098589,0.0,14093307.03785499,0.0 + 01/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104109166.84435119,0.0,121129652.36928603,0.0,68409095.07559064,0.0,100931638.51164416,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,412877523.8749972,0.0,14093307.03785499,0.0 + 01/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100825223.8752718,0.0,117480895.90999867,0.0,65291926.05379189,0.0,96828316.99106872,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,453806145.10874459,0.0,14093307.03785499,15502637.741640486 + 01/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,102897355.92243433,0.0,122061175.0666452,0.0,67479782.14308337,0.0,99726274.2349556,0.0,19616.18260656554,19309.08760846451,19333.969338685616,23273.851866965975,685683716.4815724,0.0,56373228.15141996,38756594.35410121 + 01/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,98031699.24095494,0.0,129243820.15858108,0.0,74847374.71845043,0.0,108565981.29525604,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,667518113.3883896,0.0,56373228.15141996,38756594.35410121 + 01/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92898127.04450849,0.0,132681339.24197807,0.0,81642349.79086086,0.0,116457180.42837146,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,607128452.2022525,0.0,28186614.07570998,0.0 + 01/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75004080.32645348,0.0,127692444.69123511,0.0,79721339.90348459,0.0,113817961.03358117,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,542995390.5119813,0.0,28186614.07570998,0.0 + 01/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61465046.47559412,0.0,124128603.88633953,0.0,78866770.30325158,0.0,112399723.56662709,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,450393765.31243637,0.0,28186614.07570998,0.0 + 01/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65949464.01839075,0.0,124767778.88026968,0.0,78539322.72171194,0.0,109549380.3266873,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,452185728.2256731,0.0,28186614.07570998,0.0 + 01/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68357396.28346594,0.0,122586723.12343462,0.0,76508868.4921394,0.0,107616312.62361416,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,448602921.6032781,0.0,28186614.07570998,0.0 + 01/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64578790.66973113,0.0,120765354.69493252,0.0,73275279.0253776,0.0,104620524.21303723,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,473540380.2240144,0.0,28186614.07570998,0.0 + 01/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,76241829.78868415,0.0,124381686.26700217,0.0,73019859.30878122,0.0,106046354.94232108,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,563523783.0083485,0.0,28186614.07570998,0.0 + 01/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,109802397.52608139,0.0,139619887.60970409,0.0,81197990.69196405,0.0,117714355.25657062,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,631784086.7808539,0.0,35233267.594637479,0.0 + 01/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,119177851.43586006,0.0,145601647.65059708,0.0,86237086.35184238,0.0,124347196.94340305,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,731535377.4194543,0.0,14093307.03785499,0.0 + 01/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,109360629.18354382,0.0,134886605.20055834,0.0,74231978.94203399,0.0,110330398.56277617,0.0,17075.4323529404,16808.113274036357,16829.77224355841,20259.348677439386,684311211.4616207,0.0,63419881.67034747,0.0 + 01/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,99771039.62544331,0.0,124752267.96478394,0.0,62563227.81340979,0.0,96796063.60176458,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,529163720.8475468,0.0,63419881.67034747,69761869.8373822 + 01/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,106411995.97143214,0.0,130685258.007227,0.0,67263867.20669793,0.0,102929826.69130081,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,552237421.0711887,0.0,49326574.63249246,69761869.8373822 + 01/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,111686085.85945295,0.0,135294813.8117363,0.0,71097043.31113036,0.0,107858098.43225736,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,498409278.0118424,0.0,35233267.594637479,69761869.8373822 + 01/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,115547280.80726205,0.0,138475962.28306089,0.0,73874836.98480119,0.0,111322667.57079648,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,511490190.9599545,0.0,35233267.594637479,62010550.96656194 + 01/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,122000497.13118609,0.0,144697992.34984399,0.0,78925296.47786471,0.0,117839778.46275145,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,499512144.4038118,0.0,35233267.594637479,46507913.22492146 + 01/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,131403112.34121597,0.0,153532016.81357346,0.0,87515669.34342699,0.0,128241492.55604424,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,536740871.0364262,0.0,21139960.556782485,23253956.61246073 + 01/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91016384.37612868,0.0,111070855.60707838,0.0,52017257.01309456,0.0,83554960.90406746,0.0,1201.0793117485119,1182.2761910619648,1183.7996746065704,1425.0347553736675,355631341.6584157,0.0,14093307.03785499,0.0 + 01/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,120840639.94935572,0.0,141406635.47131527,0.0,77970620.97674015,0.0,116675067.72245357,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,474820587.28519049,0.0,14093307.03785499,0.0 + 01/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,123121836.78217225,0.0,143110373.61341549,0.0,80646549.95580963,0.0,119234709.8645379,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,484041093.381261,0.0,14093307.03785499,0.0 + 01/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125261033.79647842,0.0,145277585.62659214,0.0,82493728.96620621,0.0,121334373.97960997,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,492294345.53421249,0.0,14093307.03785499,0.0 + 01/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,127538366.11670928,0.0,147662415.68229006,0.0,84446839.93806546,0.0,123364293.96792257,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,500885735.56374076,0.0,14093307.03785499,0.0 + 01/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125801990.61069718,0.0,145767286.20463259,0.0,82548555.17566999,0.0,120951737.1236445,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,546564848.5496578,0.0,14093307.03785499,15502637.741640486 + 01/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,125248931.95306809,0.0,151558209.98274759,0.0,84697194.4715082,0.0,124209889.58544801,0.0,19112.40962230825,18813.20128425452,18837.444014332814,22676.144451341726,771695343.7328262,0.0,56373228.15141996,38756594.35410121 + 01/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,93522971.34635487,0.0,148576423.21443136,0.0,84181629.13484636,0.0,123323402.76616994,0.0,16773.698637059948,16511.103255766382,16532.379497564714,19901.353141431257,700591150.7763627,0.0,56373228.15141996,38756594.35410121 + 01/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73646574.53068197,0.0,149235070.97831089,0.0,89678040.98637297,0.0,129163328.2193177,0.0,12010.79311748512,11822.761910619647,11837.996746065704,14250.347553736674,621441852.2951492,0.0,28186614.07570998,0.0 + 01/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57733964.698683898,0.0,147346828.45685498,0.0,90167167.64994419,0.0,129444628.25954899,0.0,9659.681133560003,9508.457023402389,9520.709640785071,11460.842932271382,569231475.6931,0.0,28186614.07570998,0.0 + 01/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48168650.416787389,0.0,146638014.80370883,0.0,91574284.80092705,0.0,131063503.47955859,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,489917690.0982473,0.0,28186614.07570998,0.0 + 01/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37339493.09321169,0.0,143878791.78584809,0.0,89414759.81716155,0.0,122570925.53459753,0.0,4867.856901386803,4791.649693497785,4797.824223201373,5775.526395973954,466042256.20143458,0.0,28186614.07570998,0.0 + 01/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32126759.293084429,0.0,127622073.32030384,0.0,80693944.32063169,0.0,110854334.09200973,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,424676893.3046431,0.0,28186614.07570998,0.0 + 01/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40433307.03655869,0.0,119874901.6970155,0.0,73152762.92363093,0.0,103757125.16423774,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,447518528.44237878,0.0,28186614.07570998,0.0 + 01/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65847788.08204066,0.0,124622526.05008072,0.0,73179741.47160129,0.0,106261317.79225685,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,553745426.0975394,0.0,28186614.07570998,0.0 + 01/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,102185755.40981117,0.0,138538806.64987067,0.0,80806649.15802,0.0,117105970.94032724,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,622471234.859589,0.0,35233267.594637479,0.0 + 01/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,109756638.30331153,0.0,141363206.91447566,0.0,84003068.31296496,0.0,120801384.68220346,0.0,17200.143994600385,16930.87253168122,16952.689689036524,20407.314279732927,713291971.9951395,0.0,14093307.03785499,0.0 + 01/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,97626197.9152667,0.0,127371638.3576677,0.0,70340583.51498431,0.0,104164134.27461405,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,656331792.0376799,0.0,63419881.67034747,0.0 + 01/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,86369748.5484382,0.0,114881855.2470442,0.0,56625854.89829336,0.0,88053525.46491245,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,492998226.3199361,0.0,63419881.67034747,69761869.8373822 + 01/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,89882269.3428106,0.0,116885227.2970777,0.0,58432340.98546405,0.0,90412867.48343995,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,503042467.1453026,0.0,49326574.63249246,69761869.8373822 + 01/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92018001.4339608,0.0,117263886.01952817,0.0,59525069.44262848,0.0,91563975.44191098,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,434408443.4043123,0.0,35233267.594637479,69761869.8373822 + 01/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,93098525.12817839,0.0,116811877.42211809,0.0,59742741.328607168,0.0,91611947.5060535,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,435445028.74257376,0.0,35233267.594637479,62010550.96656194 + 01/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,96285264.37233755,0.0,118676378.89564497,0.0,61993773.0003177,0.0,94191018.68605201,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,408320083.8941784,0.0,35233267.594637479,46507913.22492146 + 01/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,103466226.27050075,0.0,124562046.36794278,0.0,68618457.43082392,0.0,101915544.08347821,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,435804157.4218782,0.0,21139960.556782485,23253956.61246073 + 01/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60447417.10786973,0.0,78925203.76849728,0.0,31612803.67388557,0.0,53554186.29698376,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,243160552.48180268,0.0,14093307.03785499,0.0 + 01/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86334349.09223502,0.0,104108608.58994892,0.0,53714995.37496078,0.0,83185329.88274583,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,346043274.5083506,0.0,14093307.03785499,0.0 + 01/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,85880940.39448145,0.0,102895261.50850967,0.0,54736537.96495208,0.0,83124223.01103939,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,345336954.4474426,0.0,14093307.03785499,0.0 + 01/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,89804001.89566134,0.0,106691712.42707558,0.0,57982103.04685722,0.0,87060009.84522832,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,360124651.68473568,0.0,14093307.03785499,0.0 + 01/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92635689.96304608,0.0,109448773.84244788,0.0,60163254.07898209,0.0,89777348.86720534,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,370611891.2215946,0.0,14093307.03785499,0.0 + 01/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91860679.23200134,0.0,108475750.27571275,0.0,58925355.825643319,0.0,88270256.70014106,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,421569553.09978237,0.0,14093307.03785499,15502637.741640486 + 01/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,99136476.93731718,0.0,117010765.32065162,0.0,63574523.96763055,0.0,94696001.68174258,0.0,19792.009347990723,19482.16174945223,19507.266503369305,23482.463583947607,670567812.1724775,0.0,56373228.15141996,38756594.35410121 + 01/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,107559628.8421091,0.0,126828881.98980308,0.0,73951032.53114106,0.0,106899512.93463186,0.0,17351.322909319388,17079.6847122879,17101.693629326863,20586.682291193076,674868837.0493431,0.0,56373228.15141996,38756594.35410121 + 01/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,108621012.02721577,0.0,128482489.82576657,0.0,79834857.37426509,0.0,113299171.19346984,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,615687373.8147588,0.0,28186614.07570998,0.0 + 01/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,102036122.7380596,0.0,123339892.25944385,0.0,76663110.36065,0.0,109350692.06444484,0.0,9937.411411051846,9781.839381589563,9794.44428004433,11790.359304899002,560084413.1819034,0.0,28186614.07570998,0.0 + 01/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,97106242.83498228,0.0,119083937.25214765,0.0,74040706.61984048,0.0,105941988.99531497,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,470656642.24055066,0.0,28186614.07570998,0.0 + 01/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,94792901.76470329,0.0,117013971.85635239,0.0,72573778.22316395,0.0,103632924.80463651,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,462497343.18712136,0.0,28186614.07570998,0.0 + 01/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93430011.1235224,0.0,114455225.16438094,0.0,70324711.68381548,0.0,100884370.44571427,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,453894284.6912734,0.0,28186614.07570998,0.0 + 01/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,94594317.83449826,0.0,113793127.97905949,0.0,68863742.65708623,0.0,99234088.41037523,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,488875654.7759798,0.0,28186614.07570998,0.0 + 01/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,98485652.2494486,0.0,116214449.43565814,0.0,69006896.94860088,0.0,99887085.95631424,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,571282770.0044098,0.0,28186614.07570998,0.0 + 01/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101105914.32921639,0.0,117696029.42852907,0.0,68539832.22099126,0.0,99646289.61123945,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,574676751.004364,0.0,35233267.594637479,0.0 + 01/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103126575.43238011,0.0,119095897.40334162,0.0,70209693.5793114,0.0,101459229.94426647,0.0,17589.0072895276,17313.648099183974,17335.958501927096,20868.685735339546,657077675.0128212,0.0,14093307.03785499,0.0 + 01/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,89291098.18828848,0.0,105212425.97035836,0.0,56193664.47807113,0.0,84551387.84078947,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,598012736.0576503,0.0,63419881.67034747,0.0 + 01/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,73130736.42918624,0.0,88745468.76286817,0.0,40579678.837802369,0.0,65368171.3708549,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,418497923.092269,0.0,63419881.67034747,69761869.8373822 + 01/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,69837898.91692852,0.0,84593566.30419474,0.0,38596076.3584639,0.0,62275749.049427229,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,407177381.3394153,0.0,49326574.63249246,69761869.8373822 + 01/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,65151466.58701622,0.0,79731296.41465512,0.0,35014847.171110499,0.0,57699383.56385372,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,314278693.0742115,0.0,35233267.594637479,69761869.8373822 + 01/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67782215.71182873,0.0,81413609.07550156,0.0,36873229.60374107,0.0,59812033.526810068,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,322027454.6414721,0.0,35233267.594637479,62010550.96656194 + 01/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,73314208.0654638,0.0,86783935.86141172,0.0,41739164.18604145,0.0,65837152.14585851,0.0,2544.4696551515264,2504.635508029784,2507.862986524712,3018.9161174593575,305747643.62057086,0.0,35233267.594637479,46507913.22492146 + 01/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,82461050.9676499,0.0,95919091.97119372,0.0,50493376.71983035,0.0,76460233.16283153,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,343302275.4991058,0.0,21139960.556782485,23253956.61246073 + 01/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43405550.09469449,0.0,56204392.441586259,0.0,17396972.34109524,0.0,34229789.19537282,0.0,1264.6357106032518,1244.8376026361994,1246.4417029451284,1500.4419965179218,170159589.3184778,0.0,14093307.03785499,0.0 + 01/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72038412.87998572,0.0,84405742.90214847,0.0,41946650.061095457,0.0,65669712.17502119,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,282956528.46422329,0.0,14093307.03785499,0.0 + 01/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76212114.84185487,0.0,88161655.824292,0.0,45798180.10358644,0.0,70236037.70335546,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,299242221.9345334,0.0,14093307.03785499,0.0 + 01/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78455641.52316693,0.0,90287600.04640493,0.0,47978233.76628493,0.0,72643060.10683698,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,308198768.90413847,0.0,14093307.03785499,0.0 + 01/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80215331.90270347,0.0,92194036.07230523,0.0,49735086.868587847,0.0,74620935.48523453,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,315564410.23265406,0.0,14093307.03785499,0.0 + 01/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78719356.80490655,0.0,91556302.05907695,0.0,48377819.24687031,0.0,72995634.09595204,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,366724586.3725611,0.0,14093307.03785499,15502637.741640486 + 01/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,84457931.38139105,0.0,100116937.00394604,0.0,52607665.44519711,0.0,78986581.6790252,0.0,20029.769395586467,19716.199619148774,19741.60595474871,23764.55680456099,615876789.8961212,0.0,56373228.15141996,38756594.35410121 + 01/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,90321907.03569938,0.0,113112342.46329192,0.0,64756599.84566538,0.0,94679061.89113364,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,623085453.8145741,0.0,56373228.15141996,38756594.35410121 + 01/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,101800650.52648776,0.0,125958305.964782,0.0,78009543.43039796,0.0,110915276.80638388,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,600970979.2736895,0.0,28186614.07570998,0.0 + 01/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,110318594.39045322,0.0,130891198.41010154,0.0,81347724.33936122,0.0,115831251.50909248,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,585148333.2062354,0.0,28186614.07570998,0.0 + 01/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,106802013.36129996,0.0,132225575.36492899,0.0,82385036.12783581,0.0,117608743.75077498,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,512213252.90134027,0.0,28186614.07570998,0.0 + 01/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,96464568.92935263,0.0,132510672.70840077,0.0,82274837.14506057,0.0,116600661.20762868,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,501230522.2690561,0.0,28186614.07570998,0.0 + 01/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,103728265.84589172,0.0,134245122.9976204,0.0,82207920.4096677,0.0,117547581.93900986,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,511108673.47080317,0.0,28186614.07570998,0.0 + 01/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68441733.06205042,0.0,123794521.34028536,0.0,75822949.46684243,0.0,108361294.71079043,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,486490171.9978888,0.0,28186614.07570998,0.0 + 01/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82895544.97422958,0.0,128585679.11078632,0.0,76315015.2874257,0.0,111036884.55684909,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,581812834.670542,0.0,28186614.07570998,0.0 + 01/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,119581273.90490355,0.0,145459217.71073563,0.0,85257861.8362306,0.0,123938027.77319438,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,657216091.9663155,0.0,35233267.594637479,0.0 + 01/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,129442640.87930966,0.0,153015465.49229209,0.0,90902298.84203157,0.0,131203453.647104,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,759497859.7578923,0.0,14093307.03785499,0.0 + 01/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,119049770.15905775,0.0,142065292.68515665,0.0,78998728.08013517,0.0,117077196.92201448,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,711432951.0701182,0.0,63419881.67034747,0.0 + 01/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,108625257.22385593,0.0,131392917.53861454,0.0,67125062.89817678,0.0,103106073.00411603,0.0,9659.681133560003,9508.457023402389,9520.709640785071,11460.842932271382,554788197.2928312,0.0,63419881.67034747,69761869.8373822 + 01/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,114763132.09081283,0.0,137251021.64606706,0.0,71749229.78936087,0.0,109150476.8583409,0.0,9636.653389793966,9485.78978326083,9498.013191590995,11433.521393315998,577108180.3132441,0.0,49326574.63249246,69761869.8373822 + 01/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,120636419.63469573,0.0,142929408.10939534,0.0,76289365.93512883,0.0,115033520.61602026,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,526776249.32742646,0.0,35233267.594637479,69761869.8373822 + 01/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,125574578.61860886,0.0,148003484.68961967,0.0,79829720.89085239,0.0,119882428.44968519,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,545000705.3100691,0.0,35233267.594637479,62010550.96656194 + 01/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,132166233.12842058,0.0,154750081.22855533,0.0,85077671.8152492,0.0,126759117.56672596,0.0,2389.051202788531,2351.650160531815,2354.6805017916019,2834.518056417716,534500743.45645788,0.0,35233267.594637479,46507913.22492146 + 01/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,142934116.73209445,0.0,165399153.21145738,0.0,94769091.13655959,0.0,138753111.5688006,0.0,2381.761392685993,2344.474473766345,2347.4955684213275,2825.868975000213,577494034.124458,0.0,21139960.556782485,23253956.61246073 + 01/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101607482.67240516,0.0,122012859.54814638,0.0,58580915.68438175,0.0,93195210.65856862,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,393169751.5370661,0.0,14093307.03785499,0.0 + 01/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,130817344.9053998,0.0,151592685.4927357,0.0,84502353.55033499,0.0,125801368.63176726,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,510487035.55380198,0.0,14093307.03785499,0.0 + 01/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,133921153.63976656,0.0,154510166.64056099,0.0,87711081.9780866,0.0,129314939.12921357,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,523174785.3543768,0.0,14093307.03785499,0.0 + 01/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,135935391.94581677,0.0,156376430.43849654,0.0,89696390.80270124,0.0,131475447.01456276,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,531201104.1683263,0.0,14093307.03785499,0.0 + 01/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,136998868.91367484,0.0,157267801.43840949,0.0,90798379.83652272,0.0,132585374.05225855,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,535367868.20761469,0.0,14093307.03785499,0.0 + 01/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,134127850.65358348,0.0,154140960.64834709,0.0,88179045.63941744,0.0,129108477.09334049,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,523273778.00143757,0.0,14093307.03785499,15502637.741640486 + 01/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,133629020.99296102,0.0,159708853.09082637,0.0,90674695.17348194,0.0,132676165.96815232,0.0,4723.7206571421,4649.769929045323,4655.761632191047,5604.514244196306,587370294.4906908,0.0,56373228.15141996,38756594.35410121 + 01/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,100916123.60777416,0.0,156925930.85461907,0.0,89564316.61658208,0.0,131377992.87881218,0.0,11840.748411249897,11655.379285982344,11670.398431832165,14048.596000794068,655958803.625278,0.0,56373228.15141996,38756594.35410121 + 01/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81665574.42667787,0.0,157884262.6499376,0.0,94439774.90191597,0.0,136333968.91860614,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,648056410.632779,0.0,28186614.07570998,0.0 + 01/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67339945.61559414,0.0,157850870.06973268,0.0,95898007.26591724,0.0,138025620.79629875,0.0,11908.806963429963,11722.372368831724,11737.477842106638,14129.344875001067,637307251.1252728,0.0,28186614.07570998,0.0 + 01/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60996024.95807868,0.0,159824043.91366325,0.0,98319151.46039185,0.0,140853619.730104,0.0,7167.153608365593,7054.950481595443,7064.041505374807,8503.554169253148,567235759.2147582,0.0,28186614.07570998,0.0 + 01/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54773391.5023909,0.0,157148294.7903879,0.0,96225869.56489459,0.0,133012696.45207265,0.0,7206.475870491073,7093.657146371787,7102.798047639422,8550.208532242006,548991554.8580254,0.0,28186614.07570998,0.0 + 01/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51904941.92256561,0.0,145945340.83593688,0.0,90120822.14674169,0.0,125160864.08905538,0.0,7227.490042345475,7114.342337445621,7123.509893693246,8575.141044987,521277708.9407964,0.0,28186614.07570998,0.0 + 01/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57501085.42883986,0.0,139667790.36813448,0.0,83731959.86839772,0.0,119260174.03264213,0.0,7244.760850170003,7131.342767551789,7140.532230588806,8595.632199203537,508565174.6690651,0.0,28186614.07570998,0.0 + 01/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78639582.75689706,0.0,140951437.3074721,0.0,82019751.43876826,0.0,119272344.75166072,0.0,16952.110978744815,16686.722518959385,16708.225064103426,20113.032574422585,674539444.3452269,0.0,28186614.07570998,0.0 + 01/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,119170943.23515415,0.0,156934690.92782364,0.0,90988129.5015846,0.0,131983384.51272552,0.0,21734.28255051001,21394.02830265537,21421.596691766415,25786.89659761061,824289643.0904406,0.0,35233267.594637479,0.0 + 01/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,129022293.41654983,0.0,162438145.88756604,0.0,95425127.22299764,0.0,137590703.91853363,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,777419322.0447658,0.0,14093307.03785499,0.0 + 01/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,119613104.82619831,0.0,150932648.8952367,0.0,83833018.86232449,0.0,123625438.74237785,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,730947262.925256,0.0,63419881.67034747,0.0 + 01/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,106900996.86974398,0.0,136360004.60844154,0.0,69592592.76743207,0.0,106350373.44770997,0.0,14489.521700340007,14262.685535103577,14281.064461177612,17191.264398407075,636012297.6354293,0.0,63419881.67034747,69761869.8373822 + 01/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,110725589.66727981,0.0,138471342.34133793,0.0,72095924.68331042,0.0,109310890.1784873,0.0,12074.601416950005,11885.571279252983,11900.887050981342,14326.053665339228,611277355.1555002,0.0,49326574.63249246,69761869.8373822 + 01/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,113909571.12288104,0.0,139907491.19320036,0.0,74500853.68705179,0.0,111996807.39231739,0.0,9659.681133560003,9508.457023402389,9520.709640785071,11460.842932271382,584853610.0235185,0.0,35233267.594637479,69761869.8373822 + 01/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,116755727.10107503,0.0,141572776.6994859,0.0,76511706.60300319,0.0,114354352.67800331,0.0,7227.490042345475,7114.342337445621,7123.509893693246,8575.141044987,557340303.0280643,0.0,35233267.594637479,62010550.96656194 + 01/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,122024427.76362588,0.0,146535106.75360818,0.0,80531792.97691414,0.0,119472651.40341984,0.0,4818.326694896983,4742.894891630415,4749.006595795498,5716.760696657999,540661138.8618993,0.0,35233267.594637479,46507913.22492146 + 01/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,130279882.60090626,0.0,153871593.6597422,0.0,88251228.43638447,0.0,128669525.71498157,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,537120810.39418,0.0,21139960.556782485,23253956.61246073 + 01/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87544686.57095765,0.0,107982251.74256164,0.0,51427603.2764847,0.0,81738033.5586624,0.0,1201.0793117485119,1182.2761910619648,1183.7996746065704,1425.0347553736675,346664458.9067129,0.0,14093307.03785499,0.0 + 01/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,115487338.20141796,0.0,136150376.9537602,0.0,76083587.13773616,0.0,112899565.86523757,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,458592751.9161984,0.0,14093307.03785499,0.0 + 01/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116377102.11940706,0.0,136336142.88291807,0.0,77794988.07977197,0.0,114058605.89820278,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,462538722.7383464,0.0,14093307.03785499,0.0 + 01/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118079045.47678775,0.0,137607881.53178663,0.0,79488073.24218899,0.0,115760136.70716612,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,468862760.12325528,0.0,14093307.03785499,0.0 + 01/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118828897.37155029,0.0,137968558.17197157,0.0,80417716.40179169,0.0,116548491.57231649,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,471691286.68295589,0.0,14093307.03785499,0.0 + 01/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116832340.95140328,0.0,135896751.52286873,0.0,78041576.27549505,0.0,113722492.7060213,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,462420784.62111416,0.0,14093307.03785499,15502637.741640486 + 01/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,113512802.86338078,0.0,137114717.72056604,0.0,77745321.54208446,0.0,113403674.63361605,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,459843877.5881558,0.0,56373228.15141996,38756594.35410121 + 01/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,88310814.10733813,0.0,132454132.60834414,0.0,76749618.68413624,0.0,111664485.42182237,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,481652287.4189063,0.0,56373228.15141996,38756594.35410121 + 01/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81898051.92330033,0.0,132092719.71544576,0.0,81511060.8758367,0.0,116744240.61681153,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,521503502.0873179,0.0,28186614.07570998,0.0 + 01/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65654845.06025318,0.0,124403292.41789076,0.0,78169530.5533567,0.0,111943758.6013506,0.0,7318.042436974457,7203.477117444153,7212.759532953605,8682.578004616882,489672112.16401198,0.0,28186614.07570998,0.0 + 01/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54680156.52225384,0.0,121720907.68123356,0.0,77443646.24545409,0.0,110795408.85874087,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,437832003.60418286,0.0,28186614.07570998,0.0 + 01/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55898950.90503122,0.0,121519506.79250132,0.0,76476891.28706457,0.0,107031510.92983619,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,434118744.2109338,0.0,28186614.07570998,0.0 + 01/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73101587.52810487,0.0,118802964.89980218,0.0,73599028.58709954,0.0,105221370.64954435,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,481025383.2854868,0.0,28186614.07570998,0.0 + 01/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90577787.60732848,0.0,125746819.47732759,0.0,75372237.1041921,0.0,109315326.45750273,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,547771735.2035778,0.0,28186614.07570998,0.0 + 01/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,102016979.43586664,0.0,133219436.21310237,0.0,78250422.88474663,0.0,114042117.97232798,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,610978412.2025774,0.0,28186614.07570998,0.0 + 01/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,112941387.27258985,0.0,140358854.51301984,0.0,81096483.72583884,0.0,118489658.28359877,0.0,14674.46471387139,14444.733231257043,14463.346744368791,17410.692224253227,672462036.6845489,0.0,35233267.594637479,0.0 + 01/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,119078584.0393251,0.0,144847341.62986637,0.0,84820618.12584177,0.0,123148746.32112563,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,728066885.1539106,0.0,14093307.03785499,0.0 + 01/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,108467272.99260055,0.0,133139617.08436024,0.0,72853498.87705052,0.0,108765652.09508467,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,569985605.6063229,0.0,63419881.67034747,0.0 + 01/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,94697816.36266646,0.0,118304524.8170146,0.0,58343832.31986687,0.0,91076627.04546523,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,472492473.9629334,0.0,63419881.67034747,69761869.8373822 + 01/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,98632334.2356711,0.0,121388475.9634836,0.0,61164965.41002308,0.0,94582996.40570997,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,449148554.29350128,0.0,49326574.63249246,69761869.8373822 + 01/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,103830490.10222332,0.0,126130624.19639784,0.0,65041017.24723617,0.0,99586399.86978154,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,467780415.71213939,0.0,35233267.594637479,69761869.8373822 + 01/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,105841183.85186307,0.0,127437906.16287419,0.0,66469344.705617178,0.0,101251369.52032602,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,474379586.51929387,0.0,35233267.594637479,62010550.96656194 + 01/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,108937286.3245183,0.0,129795848.55397448,0.0,69260952.71567354,0.0,104439524.34739657,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,485813394.2201763,0.0,35233267.594637479,46507913.22492146 + 01/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,117836693.40607183,0.0,138007095.3074659,0.0,77668582.98782985,0.0,114463721.00979227,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,484572034.85941007,0.0,21139960.556782485,23253956.61246073 + 01/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74516329.22542314,0.0,92663092.9862028,0.0,38981796.69017647,0.0,66089884.37264092,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,290596048.8440967,0.0,14093307.03785499,0.0 + 01/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102087044.82852668,0.0,120004315.67561148,0.0,64450020.65498989,0.0,97701417.25311437,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,402587743.9818958,0.0,14093307.03785499,0.0 + 01/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101690607.68038726,0.0,118569069.34459219,0.0,65450412.98715161,0.0,97666934.13465676,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,401760429.4169437,0.0,14093307.03785499,0.0 + 01/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102303810.89895067,0.0,118900608.7087326,0.0,66354373.23748994,0.0,98384313.4712257,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,404326511.5865549,0.0,14093307.03785499,0.0 + 01/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103025039.8410215,0.0,119833447.36124479,0.0,66915743.50362031,0.0,99076368.77523649,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,407279319.7356869,0.0,14093307.03785499,0.0 + 01/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100385392.76361147,0.0,117467173.5304278,0.0,64184565.13784461,0.0,95563905.37676952,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,451315917.8269086,0.0,14093307.03785499,15502637.741640486 + 01/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,106552624.68071427,0.0,125014128.25708483,0.0,68140778.0412006,0.0,101011194.2510199,0.0,19705.762568019818,19397.265178911097,19422.26053493182,23380.135071754125,695578249.3030403,0.0,56373228.15141996,38756594.35410121 + 01/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,106353231.3415872,0.0,132958655.34494606,0.0,76674139.0974892,0.0,111014047.63038989,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,685002156.9783055,0.0,56373228.15141996,38756594.35410121 + 01/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63521750.16546592,0.0,123717953.35803813,0.0,74643250.24727774,0.0,107405791.41146885,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,553946494.1793029,0.0,28186614.07570998,0.0 + 01/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35821445.04659772,0.0,121075676.69318304,0.0,73900396.102725,0.0,106369267.78341662,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,485241807.7584901,0.0,28186614.07570998,0.0 + 01/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29942036.987720379,0.0,121257243.12709449,0.0,75200885.75751896,0.0,107720197.00612426,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,408467660.75811067,0.0,28186614.07570998,0.0 + 01/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22598888.74295462,0.0,116315235.8046166,0.0,72021312.9424425,0.0,98428205.56990099,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,384007524.8850125,0.0,28186614.07570998,0.0 + 01/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20964105.5376943,0.0,102446329.88547232,0.0,64529837.28167457,0.0,88893115.47692019,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,351760306.77840188,0.0,28186614.07570998,0.0 + 01/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26759158.778161639,0.0,97804629.64609924,0.0,59000741.691729437,0.0,84019170.3016742,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,379974078.31262519,0.0,28186614.07570998,0.0 + 01/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44125730.95887227,0.0,100034887.15739958,0.0,57509657.140264358,0.0,84280495.00403814,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,473639455.6749622,0.0,28186614.07570998,0.0 + 01/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,84029790.28787527,0.0,116357204.99305733,0.0,66708853.26521218,0.0,97318402.86597686,0.0,12497.394989377714,12301.745939432274,12317.597994688338,14827.682100001863,551414167.0967223,0.0,35233267.594637479,0.0 + 01/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94466495.76311863,0.0,122501419.95537615,0.0,71880930.56109679,0.0,103913647.3621498,0.0,17459.843495262332,17186.50638821341,17208.652955884863,20715.437823928944,654016080.0295837,0.0,14093307.03785499,0.0 + 01/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,83565184.81920555,0.0,109600537.59691759,0.0,59010727.38136866,0.0,88307075.92609218,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,601176708.6075122,0.0,63419881.67034747,0.0 + 01/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,68988155.73090574,0.0,93289354.43147327,0.0,43677340.90730572,0.0,69477751.10449016,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,425032534.72185549,0.0,63419881.67034747,69761869.8373822 + 01/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,70899479.39333922,0.0,93705177.75310129,0.0,45030068.2517555,0.0,70846740.35444513,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,430081398.3003217,0.0,49326574.63249246,69761869.8373822 + 01/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,73129998.5244371,0.0,94792874.92293097,0.0,46852642.391245488,0.0,72841231.77155337,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,362543666.2068074,0.0,35233267.594637479,69761869.8373822 + 01/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74521632.27311538,0.0,95423279.0123926,0.0,47873126.54944815,0.0,73979299.05458611,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,366724255.4861827,0.0,35233267.594637479,62010550.96656194 + 01/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77475753.69502698,0.0,97586678.77543883,0.0,50337541.20699954,0.0,76886379.13132988,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,339824089.89167287,0.0,35233267.594637479,46507913.22492146 + 01/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,86921793.53272747,0.0,106803861.17092929,0.0,58371525.537341218,0.0,86990027.78956507,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,376624945.11344066,0.0,21139960.556782485,23253956.61246073 + 01/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49766755.11744526,0.0,68097528.85672552,0.0,24976821.231224546,0.0,44040776.37219304,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,205542852.03386284,0.0,14093307.03785499,0.0 + 01/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79349127.59191045,0.0,97360564.44203316,0.0,50726656.317422319,0.0,77629895.51368439,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,323687185.4996166,0.0,14093307.03785499,0.0 + 01/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82435721.32921362,0.0,99907664.98796802,0.0,53619198.86225997,0.0,80964403.21163686,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,335547930.0256448,0.0,14093307.03785499,0.0 + 01/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86354551.89951037,0.0,103779162.36546424,0.0,56694109.25271289,0.0,84688933.87563847,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,350061741.73273006,0.0,14093307.03785499,0.0 + 01/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91442190.09590625,0.0,108748853.67288777,0.0,60404788.100208,0.0,89682514.24215815,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,368744121.0108654,0.0,14093307.03785499,0.0 + 01/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92033383.50385861,0.0,109268095.48512182,0.0,59922450.36692014,0.0,89341569.04656787,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,424280379.4207236,0.0,14093307.03785499,15502637.741640486 + 01/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,94826861.27504352,0.0,118356007.83510974,0.0,64087789.951705288,0.0,95742565.77014618,0.0,19565.95295182852,19259.64430834273,19284.462325825054,23214.256299004297,665780762.0180069,0.0,56373228.15141996,38756594.35410121 + 01/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,68872046.07227209,0.0,121447782.4992272,0.0,67663390.56656577,0.0,100509700.68994701,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,613426920.725167,0.0,56373228.15141996,38756594.35410121 + 01/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56320829.72069547,0.0,128702288.86845133,0.0,77460514.4043172,0.0,111735668.9961967,0.0,12136.60683692166,11946.605992807883,11962.00041399434,14399.620729243206,555820704.2923423,0.0,28186614.07570998,0.0 + 01/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45862788.738720949,0.0,132329603.15394935,0.0,81197874.93963297,0.0,116626851.57007966,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,521298240.24452808,0.0,28186614.07570998,0.0 + 01/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40716593.66832508,0.0,136888266.20631285,0.0,85409289.27452761,0.0,121852646.74855258,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,457507356.8187907,0.0,28186614.07570998,0.0 + 01/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36074068.93569249,0.0,140152210.85755489,0.0,86648930.4870304,0.0,118511087.37679698,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,454026858.5781473,0.0,28186614.07570998,0.0 + 01/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33613151.72209151,0.0,131138077.78870753,0.0,82311437.12971722,0.0,112919920.94140443,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,432623148.5029933,0.0,28186614.07570998,0.0 + 01/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39579462.65788297,0.0,125354717.52328138,0.0,76161903.21849612,0.0,107553914.53185776,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,457907426.8874418,0.0,28186614.07570998,0.0 + 01/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65215150.80487547,0.0,130953268.41515792,0.0,76584261.4713905,0.0,110986270.29235476,0.0,12136.60683692166,11946.605992807883,11962.00041399434,14399.620729243206,565340353.2864602,0.0,28186614.07570998,0.0 + 01/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,113612827.61339444,0.0,152370029.60892535,0.0,88935030.2020688,0.0,129005007.9226578,0.0,12074.601416950005,11885.571279252983,11900.887050981342,14326.053665339228,664596503.6321313,0.0,35233267.594637479,0.0 + 01/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,127133136.52659433,0.0,161159314.76068545,0.0,95415654.04138278,0.0,137414186.39906676,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,773462351.6028886,0.0,14093307.03785499,0.0 + 01/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,118853203.97963476,0.0,150751263.55541194,0.0,83702980.04056677,0.0,123909337.04180385,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,728823157.2300693,0.0,63419881.67034747,0.0 + 01/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,109412596.17254621,0.0,139680613.71735729,0.0,71463082.36763758,0.0,109579387.98684947,0.0,9584.970649748542,9434.916146152222,9447.073998608408,11372.201795103576,573556665.5669963,0.0,63419881.67034747,69761869.8373822 + 01/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,116088589.64642191,0.0,144751509.2638627,0.0,75791255.7299272,0.0,115086154.10594088,0.0,9556.204811154124,9406.60064212726,9418.722007166407,11338.072225670863,594708067.61618,0.0,49326574.63249246,69761869.8373822 + 01/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,121778247.50981853,0.0,149246861.80446006,0.0,79612039.53129626,0.0,119852532.88261079,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,541984961.1631992,0.0,35233267.594637479,69761869.8373822 + 01/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,126652618.37402034,0.0,153642274.40995748,0.0,82687633.62511568,0.0,123645455.6971842,0.0,4763.522785371986,4688.94894753269,4694.991136842655,5651.737950000426,557905105.0573697,0.0,35233267.594637479,62010550.96656194 + 01/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,133403631.5030637,0.0,159956700.380216,0.0,87725525.26968205,0.0,130101373.85067873,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,546733796.9507687,0.0,35233267.594637479,46507913.22492146 + 01/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,143364677.80941204,0.0,169337593.7298913,0.0,96469054.85536349,0.0,140818524.97455273,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,585536417.3163478,0.0,21139960.556782485,23253956.61246073 + 01/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101162792.21791686,0.0,124808306.25038344,0.0,58917365.88760397,0.0,93881423.60454941,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,396589168.69822666,0.0,14093307.03785499,0.0 + 01/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,129054840.95733738,0.0,152322081.76473657,0.0,83834189.41495919,0.0,125368670.56241572,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,508399063.4372218,0.0,14093307.03785499,0.0 + 01/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,130810544.80057232,0.0,153375411.61698739,0.0,85905436.97953284,0.0,127172534.0124133,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,515083208.14727887,0.0,14093307.03785499,0.0 + 01/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,131288493.20510663,0.0,153512721.4726946,0.0,86488675.39962013,0.0,127110186.16054939,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,516273896.0967241,0.0,14093307.03785499,0.0 + 01/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,130212725.07823816,0.0,151713332.57705293,0.0,85945603.81364301,0.0,125917454.22900982,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,511716738.8632697,0.0,14093307.03785499,0.0 + 01/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,126949396.81338409,0.0,148126050.74419458,0.0,82827804.10699296,0.0,121897032.2752059,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,551510776.6010804,0.0,14093307.03785499,15502637.741640486 + 01/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,132363062.37540324,0.0,154663326.06642203,0.0,86515114.48937065,0.0,126665228.33355156,0.0,19217.26898797619,18916.41905699144,18940.794793705125,22800.55608597868,787756871.3934925,0.0,56373228.15141996,38756594.35410121 + 01/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,138838844.36265639,0.0,162444338.5378471,0.0,95613021.83449395,0.0,137205598.13298915,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,786441862.7431458,0.0,56373228.15141996,38756594.35410121 + 01/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,135010849.94142369,0.0,160341745.12011288,0.0,98906158.38584778,0.0,140176258.57629843,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,715618103.5168461,0.0,28186614.07570998,0.0 + 01/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,117324920.40035224,0.0,150908715.61370517,0.0,93204509.89634964,0.0,133122629.49702023,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,640237347.3486587,0.0,28186614.07570998,0.0 + 01/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,102301710.31103489,0.0,145698115.77760763,0.0,90014297.17324849,0.0,128798640.14822383,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,540004647.7066153,0.0,28186614.07570998,0.0 + 01/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86709175.7060784,0.0,141769011.1769508,0.0,87220656.95058127,0.0,122327486.15804863,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,511406112.27027258,0.0,28186614.07570998,0.0 + 01/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80935999.85626778,0.0,133485581.06587516,0.0,81791166.049027,0.0,115403497.7407154,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,485479344.31070616,0.0,28186614.07570998,0.0 + 01/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57310844.08212825,0.0,122588955.12077283,0.0,73778527.25529462,0.0,105175832.04060556,0.0,7404.519361253068,7288.600229340928,7297.992334668395,8785.179574246316,469648807.8970326,0.0,28186614.07570998,0.0 + 01/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71222150.32456434,0.0,123914693.49629241,0.0,71980735.52806589,0.0,104929814.86558911,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,556705143.2115641,0.0,28186614.07570998,0.0 + 01/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,111012999.84874973,0.0,140717023.05984695,0.0,81105544.24872962,0.0,118026571.56643652,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,635149341.2694008,0.0,35233267.594637479,0.0 + 01/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,120949298.52958146,0.0,146766748.02878193,0.0,85745034.84571737,0.0,123905141.84788636,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,735368306.81586,0.0,14093307.03785499,0.0 + 01/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,108079680.36383128,0.0,132641207.9077031,0.0,71761926.02523235,0.0,106991120.14854764,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,677476018.0092075,0.0,63419881.67034747,0.0 + 01/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,94957139.01129365,0.0,118575737.75922618,0.0,57626347.66728639,0.0,89939369.05341998,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,508528355.5277366,0.0,63419881.67034747,69761869.8373822 + 01/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,97852351.5714405,0.0,120424641.97584635,0.0,59644656.983432579,0.0,92335703.09736108,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,517983552.82572236,0.0,49326574.63249246,69761869.8373822 + 01/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99272362.29001057,0.0,120951261.0776403,0.0,60737459.73111312,0.0,93510085.7862567,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,448651106.2426373,0.0,35233267.594637479,69761869.8373822 + 01/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99134625.26039762,0.0,120004782.19244199,0.0,60625619.59633523,0.0,93137067.06217231,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,447249391.9909997,0.0,35233267.594637479,62010550.96656194 + 01/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101913095.47516273,0.0,122128537.9847186,0.0,63189689.758950088,0.0,96098602.17466702,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,420503574.3333247,0.0,35233267.594637479,46507913.22492146 + 01/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,109258483.08049259,0.0,128800604.31963821,0.0,70239769.84824655,0.0,104454989.1178275,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,449995729.6353374,0.0,21139960.556782485,23253956.61246073 + 01/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65623816.716019358,0.0,82978228.18101788,0.0,32801797.12475135,0.0,56193842.38242924,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,256218626.0387842,0.0,14093307.03785499,0.0 + 01/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92810821.98615705,0.0,109867057.94972836,0.0,56620254.936849918,0.0,87248732.13740304,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,365167808.6447047,0.0,14093307.03785499,0.0 + 01/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93677561.67327862,0.0,110086338.60293684,0.0,58577026.75952998,0.0,88589007.07891032,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,369550875.74922218,0.0,14093307.03785499,0.0 + 01/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93607481.1615975,0.0,108317252.29912246,0.0,58716944.38946153,0.0,88100285.38708776,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,367402933.6935438,0.0,14093307.03785499,0.0 + 01/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92127953.02201635,0.0,106533825.9833399,0.0,58086080.287508267,0.0,86772838.2605231,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,362220689.1218476,0.0,14093307.03785499,0.0 + 01/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,88049600.60402477,0.0,103074863.43103545,0.0,54814131.03878102,0.0,82519666.48491964,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,403258227.8326011,0.0,14093307.03785499,15502637.741640486 + 01/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,92431222.35399723,0.0,109362267.28379289,0.0,57824717.747912529,0.0,86695514.22631043,0.0,19995.831983004344,19682.79350309164,19708.15679150134,23724.29136000298,645513586.7073742,0.0,56373228.15141996,38756594.35410121 + 01/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,91320541.11377299,0.0,115588203.90828017,0.0,65325517.42319028,0.0,95471514.8192674,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,629949992.3527523,0.0,56373228.15141996,38756594.35410121 + 01/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77903866.60849032,0.0,110992406.22978962,0.0,67953609.57275568,0.0,97343086.54146478,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,541881654.3668883,0.0,28186614.07570998,0.0 + 01/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82561873.50944191,0.0,109669350.13618829,0.0,67274987.35024706,0.0,96528591.08803316,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,506708669.7754677,0.0,28186614.07570998,0.0 + 01/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75128873.2750797,0.0,103410503.30458838,0.0,63804000.33229584,0.0,91745673.66072402,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,409673092.35657778,0.0,28186614.07570998,0.0 + 01/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70495820.8911147,0.0,99308747.0050999,0.0,61211628.274894978,0.0,87137482.09533195,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,393845219.24935749,0.0,28186614.07570998,0.0 + 01/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68110970.97765082,0.0,95673883.27797356,0.0,58596751.51471137,0.0,83848811.17881668,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,382046928.0602386,0.0,28186614.07570998,0.0 + 01/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65856929.96911811,0.0,94913255.51798047,0.0,57059652.72923523,0.0,82341215.44973959,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,413708365.1404474,0.0,28186614.07570998,0.0 + 01/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71325794.25509511,0.0,97661600.3858146,0.0,57141123.28528169,0.0,83416218.6647091,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,498773589.0481905,0.0,28186614.07570998,0.0 + 01/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,89096363.73886487,0.0,106279299.05505423,0.0,61187127.83629571,0.0,89393730.22327155,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,534916625.31321099,0.0,35233267.594637479,0.0 + 01/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,95203562.73730278,0.0,110703340.71061158,0.0,64782232.33117996,0.0,93904881.05019233,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,629138163.0729013,0.0,14093307.03785499,0.0 + 01/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,81615742.6986632,0.0,96712932.74865622,0.0,50797807.02831801,0.0,76994109.94307073,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,570664738.6623228,0.0,63419881.67034747,0.0 + 01/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,68036683.46734536,0.0,82945402.94006565,0.0,36774796.36621867,0.0,60124713.45135215,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,399049679.79276159,0.0,63419881.67034747,69761869.8373822 + 01/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,71471652.10493249,0.0,86060052.16624104,0.0,39459601.73369894,0.0,63541067.73081914,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,411700457.3034714,0.0,49326574.63249246,69761869.8373822 + 01/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74756943.99059665,0.0,89065019.68847333,0.0,42258508.41146034,0.0,67004646.24453542,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,348669160.1189556,0.0,35233267.594637479,69761869.8373822 + 01/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76494612.79820022,0.0,90557447.34378353,0.0,43794996.29920345,0.0,68840747.19449072,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,355271845.4195678,0.0,35233267.594637479,62010550.96656194 + 01/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,79699183.39425867,0.0,93517886.76181373,0.0,46907725.555304069,0.0,72534033.90799184,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,330450850.5113133,0.0,35233267.594637479,46507913.22492146 + 01/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,87025299.38776177,0.0,100705408.52187005,0.0,54154493.640410307,0.0,81219388.71747865,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,360950360.7589787,0.0,21139960.556782485,23253956.61246073 + 01/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45522553.67433648,0.0,58706058.38525405,0.0,19398019.889425219,0.0,36071719.64124299,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,178594362.03623123,0.0,14093307.03785499,0.0 + 01/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72298008.47345132,0.0,85257001.70400688,0.0,42503997.27825113,0.0,66453672.904831428,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,285408690.80651316,0.0,14093307.03785499,0.0 + 01/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73393349.72247814,0.0,85817937.50935866,0.0,44399031.3091693,0.0,68152985.79330348,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,290659314.780282,0.0,14093307.03785499,0.0 + 01/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73971984.11524779,0.0,86178065.49679485,0.0,45474143.33418944,0.0,69005332.46431251,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,293525535.856517,0.0,14093307.03785499,0.0 + 01/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75384356.69445384,0.0,87485131.47456903,0.0,46940168.120052758,0.0,70553432.62189718,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,299225852.01359876,0.0,14093307.03785499,0.0 + 01/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74591046.56829693,0.0,86291655.81487552,0.0,45528750.948725488,0.0,68871954.07090533,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,350620341.24858197,0.0,14093307.03785499,15502637.741640486 + 01/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,78439715.32044792,0.0,93574523.13272344,0.0,48832835.17121369,0.0,73673947.63373778,0.0,20101.72261660297,19787.026399067403,19812.524002202397,23849.92655467377,595305339.7192904,0.0,56373228.15141996,38756594.35410121 + 01/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,71574246.61901416,0.0,98503995.3579551,0.0,54967015.3586774,0.0,80834911.41421892,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,569559437.2100909,0.0,56373228.15141996,38756594.35410121 + 01/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72693819.30437939,0.0,101623942.9489828,0.0,62392795.25322899,0.0,89002955.32790631,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,514341143.86075666,0.0,28186614.07570998,0.0 + 01/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72140116.2890062,0.0,99732996.30235853,0.0,61620128.07933885,0.0,88088552.11243005,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,472483897.6041409,0.0,28186614.07570998,0.0 + 01/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67808502.91931145,0.0,96985058.09844704,0.0,59955194.84683885,0.0,85907107.7043488,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,386347404.5518621,0.0,28186614.07570998,0.0 + 01/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59330293.397596407,0.0,94299419.75060846,0.0,58210783.50345531,0.0,82221805.64721664,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,369753843.28179278,0.0,28186614.07570998,0.0 + 01/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65682169.86098538,0.0,94171735.5378117,0.0,57443807.48220301,0.0,82031174.79119616,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,375020428.65511229,0.0,28186614.07570998,0.0 + 01/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68624356.78560543,0.0,94661289.68439529,0.0,56419600.80788402,0.0,81430251.71284044,0.0,7600.3420852062,7481.357312019881,7490.997804522686,9017.51576120379,414860265.6573543,0.0,28186614.07570998,0.0 + 01/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70944913.84544975,0.0,96046489.72285748,0.0,55894794.30762483,0.0,81412932.83090309,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,493840408.4845505,0.0,28186614.07570998,0.0 + 01/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,83510329.2333601,0.0,102187193.9579742,0.0,58324086.755285147,0.0,85217597.84341648,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,518780485.5677513,0.0,35233267.594637479,0.0 + 01/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,89650453.57444266,0.0,106806462.44399429,0.0,62130797.29317233,0.0,89998391.52669083,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,613506498.2785062,0.0,14093307.03785499,0.0 + 01/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,76843664.79762817,0.0,93672331.66562718,0.0,48668866.76464262,0.0,73871594.44589582,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,557976851.1139999,0.0,63419881.67034747,0.0 + 01/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,64235869.642159689,0.0,80983580.71171056,0.0,35326786.27419908,0.0,57963377.08197807,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,389677697.27782717,0.0,63419881.67034747,69761869.8373822 + 01/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,67242778.37091337,0.0,83546334.1378934,0.0,37728903.59403127,0.0,60948651.76088405,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,400849749.82955417,0.0,49326574.63249246,69761869.8373822 + 01/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70214687.57032058,0.0,86100692.69080028,0.0,40217861.21689476,0.0,64018633.328031327,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,336243415.78896299,0.0,35233267.594637479,69761869.8373822 + 01/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72145078.41293569,0.0,87648521.75429164,0.0,41798622.91622523,0.0,65943428.15560594,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,343227192.2219745,0.0,35233267.594637479,62010550.96656194 + 01/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,75754361.75360498,0.0,90967501.3063295,0.0,45060959.47658163,0.0,69905751.93468324,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,319534344.96265736,0.0,35233267.594637479,46507913.22492146 + 01/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,83929655.76600355,0.0,98857129.41381203,0.0,52877318.38635652,0.0,79349168.22038728,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,352859042.27801737,0.0,21139960.556782485,23253956.61246073 + 01/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42062258.46465574,0.0,56121796.869122888,0.0,17737436.323839185,0.0,34056373.446359548,0.0,1264.6357106032518,1244.8376026361994,1246.4417029451284,1500.4419965179218,168900750.34970636,0.0,14093307.03785499,0.0 + 01/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69159853.13550014,0.0,82425035.94245145,0.0,40840071.50899323,0.0,63971148.05644317,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,275318993.889117,0.0,14093307.03785499,0.0 + 01/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70623699.2388145,0.0,83362729.67389873,0.0,42800650.135331589,0.0,65886197.55005151,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,281596161.84382537,0.0,14093307.03785499,0.0 + 01/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71186172.81958528,0.0,83551802.13772086,0.0,43841201.81852613,0.0,66669721.401605937,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,284171783.4231672,0.0,14093307.03785499,0.0 + 01/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71599234.96187887,0.0,83713634.19228319,0.0,44561442.12349801,0.0,67214570.58286448,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,286011767.10625359,0.0,14093307.03785499,0.0 + 01/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69563048.90147603,0.0,81667779.95443389,0.0,42549049.487593937,0.0,64668487.8286518,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,277344376.6181281,0.0,14093307.03785499,15502637.741640486 + 01/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,74406169.88267674,0.0,87583703.81849137,0.0,45314113.18527419,0.0,68555054.23977776,0.0,5058.542842413007,4979.350410544797,4985.766811780513,6001.767986071687,351550582.10913607,0.0,56373228.15141996,38756594.35410121 + 01/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,83326191.56752575,0.0,97058393.57660245,0.0,54988067.84931335,0.0,79969039.63201082,0.0,12646.357106032516,12448.376026361992,12464.417029451284,15004.419965179217,504570545.0827424,0.0,56373228.15141996,38756594.35410121 + 01/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,84978522.13724785,0.0,98263600.23291111,0.0,60081390.2479439,0.0,85402449.77716269,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,518568575.7832667,0.0,28186614.07570998,0.0 + 01/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79309279.38503227,0.0,93105176.48333025,0.0,56545786.76883376,0.0,81012389.93890113,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,500057812.45712497,0.0,28186614.07570998,0.0 + 01/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74286790.39657732,0.0,88016249.04275304,0.0,53582671.272828679,0.0,77162479.76160042,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,407267740.5591455,0.0,28186614.07570998,0.0 + 01/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68009831.22200418,0.0,82856743.98747739,0.0,50635477.62288831,0.0,72869023.05682768,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,388725783.49957796,0.0,28186614.07570998,0.0 + 01/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71470548.46660504,0.0,84362947.24299538,0.0,50413513.33609345,0.0,73116478.90590394,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,393718195.5619782,0.0,28186614.07570998,0.0 + 01/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68864410.6595472,0.0,82460898.9274286,0.0,48842343.90543915,0.0,71124153.78572572,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,385802402.29043659,0.0,28186614.07570998,0.0 + 01/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71444332.13926849,0.0,84326423.25668085,0.0,48781304.7091742,0.0,71399436.35751583,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,543433660.7390847,0.0,28186614.07570998,0.0 + 01/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72845419.02684653,0.0,84562385.15557295,0.0,47900208.01580018,0.0,70444045.8062589,0.0,22983.564477667012,22623.752488189417,22652.90550242886,27269.121916159504,619657697.7884798,0.0,35233267.594637479,0.0 + 01/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76128353.55222449,0.0,87543501.57961308,0.0,50655677.35507843,0.0,73806827.9135823,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,555325748.762522,0.0,14093307.03785499,0.0 + 01/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,65266752.94761987,0.0,77080878.0949789,0.0,39292031.223170209,0.0,60364386.784953068,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,509195437.4127458,0.0,63419881.67034747,0.0 + 01/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,51082880.643137868,0.0,63060943.845555979,0.0,25135828.151958787,0.0,43302947.15268267,0.0,15305.719589211305,15066.105693763031,15085.519908714887,18159.652037364056,411603789.8179271,0.0,63419881.67034747,69761869.8373822 + 01/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,53166655.17368796,0.0,64967909.03458802,0.0,27304343.405165435,0.0,45867272.14099561,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,382157171.44159689,0.0,49326574.63249246,69761869.8373822 + 01/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54722350.056894008,0.0,66276524.02991684,0.0,29129117.160869764,0.0,47930443.71054493,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,350905385.9733372,0.0,35233267.594637479,69761869.8373822 + 01/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,56897014.40850369,0.0,68456700.95159272,0.0,30946101.69889637,0.0,50270407.197444308,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,321080819.26873299,0.0,35233267.594637479,62010550.96656194 + 01/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60866697.63825473,0.0,72413924.56430896,0.0,34518860.18258419,0.0,54720358.37445534,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,298860237.4344672,0.0,35233267.594637479,46507913.22492146 + 01/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,67413174.39508157,0.0,78613451.54862049,0.0,41398862.83046246,0.0,62780022.02018754,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,288417248.54813006,0.0,21139960.556782485,23253956.61246073 + 01/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30785373.391655908,0.0,40332262.41672219,0.0,10165208.788947754,0.0,23132513.929586147,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,123521227.403801,0.0,14093307.03785499,0.0 + 01/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52244921.4329474,0.0,62041619.96187087,0.0,29465845.815164038,0.0,47270863.68038995,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,210129119.76726128,0.0,14093307.03785499,0.0 + 01/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52735707.40993585,0.0,61957432.60567498,0.0,30657411.279511438,0.0,48209691.91979556,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,212666112.0918068,0.0,14093307.03785499,0.0 + 01/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52435326.37356382,0.0,61292871.97656802,0.0,31008763.400634059,0.0,48126384.11052014,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,211993073.35092414,0.0,14093307.03785499,0.0 + 01/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52302340.62007158,0.0,60960903.130502078,0.0,31301711.43037853,0.0,48119352.438764329,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,211814035.10935463,0.0,14093307.03785499,0.0 + 01/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48595229.4366655,0.0,57107948.82780392,0.0,28077981.453466447,0.0,43925905.90242933,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,196855782.16051189,0.0,14093307.03785499,15502637.741640486 + 01/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,52039599.76399322,0.0,61986797.71890781,0.0,33736378.840207148,0.0,47726135.26943232,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,214594780.4694295,0.0,56373228.15141996,38756594.35410121 + 01/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,64855849.009479258,0.0,75211727.99617197,0.0,42265923.32393433,0.0,61628983.93556243,0.0,5107.458772814891,5027.500552930982,5033.979000539748,6059.804870257667,320385959.7727038,0.0,56373228.15141996,38756594.35410121 + 01/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68816833.04113868,0.0,79075565.22824687,0.0,49044354.85260494,0.0,69573637.60729525,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,381145603.9906195,0.0,28186614.07570998,0.0 + 01/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65371594.21219751,0.0,75910550.81224728,0.0,46748179.94757244,0.0,66814143.99797488,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,369622833.90782079,0.0,28186614.07570998,0.0 + 01/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63179460.677796948,0.0,73695729.33296749,0.0,45070191.2980754,0.0,64801311.22647497,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,323265602.4938672,0.0,28186614.07570998,0.0 + 01/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63656557.09082344,0.0,73762984.2701424,0.0,44547879.25989945,0.0,64302841.24590525,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,322789171.825323,0.0,28186614.07570998,0.0 + 01/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60560998.27608297,0.0,70959490.43529047,0.0,42822750.1804512,0.0,61987484.93846311,0.0,7678.3694773040019,7558.163170738395,7567.90263542957,9110.092283439166,351223023.0711679,0.0,28186614.07570998,0.0 + 01/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61964270.33894813,0.0,73013781.11003219,0.0,43241656.04764655,0.0,62901138.771348,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,394158666.1850798,0.0,28186614.07570998,0.0 + 01/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59646951.046152938,0.0,73065999.56573391,0.0,42445936.292832497,0.0,62127327.597662,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,428773379.9038482,0.0,28186614.07570998,0.0 + 01/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64578058.52377061,0.0,75407616.60416839,0.0,42651806.09794207,0.0,62852815.471991349,0.0,15356.738954608003,15116.32634147679,15135.80527085914,18220.18456687833,475274895.17963257,0.0,35233267.594637479,0.0 + 01/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67681972.72499258,0.0,77987742.6966785,0.0,45060952.420465018,0.0,65711718.75787564,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,524524418.16206529,0.0,14093307.03785499,0.0 + 01/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,56648493.51522254,0.0,67144152.7376833,0.0,33809687.48490816,0.0,52254040.757928099,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,362894194.41284707,0.0,63419881.67034747,0.0 + 01/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,42454919.01469222,0.0,53044533.30932282,0.0,19879888.67172297,0.0,35343111.404400739,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,265500817.33796747,0.0,63419881.67034747,69761869.8373822 + 01/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,44706461.875117439,0.0,55174889.42515455,0.0,22113382.987941669,0.0,38043269.654979038,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,236556913.9017452,0.0,49326574.63249246,69761869.8373822 + 01/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47617756.55015162,0.0,58032687.79259904,0.0,24731021.99005458,0.0,41331595.4110274,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,248231971.70238508,0.0,35233267.594637479,69761869.8373822 + 01/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49561315.33089363,0.0,59914871.27287076,0.0,26330450.223657315,0.0,43373360.300174858,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,255698907.08614905,0.0,35233267.594637479,62010550.96656194 + 01/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53165838.778291817,0.0,63456107.30440966,0.0,29598972.582694197,0.0,47429671.75233139,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,270169500.37627956,0.0,35233267.594637479,46507913.22492146 + 01/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,62336282.88754583,0.0,72599339.461009,0.0,38145529.757671359,0.0,58007968.057556558,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,269300857.91756066,0.0,21139960.556782485,23253956.61246073 + 01/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22632305.76168699,0.0,31102827.785109827,0.0,3872236.667367368,0.0,13769569.999496397,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,90482809.09054955,0.0,14093307.03785499,0.0 + 01/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47725907.34886873,0.0,56685458.95961941,0.0,26815412.095930689,0.0,43370461.484600428,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,193703108.76590825,0.0,14093307.03785499,0.0 + 01/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50200949.599584158,0.0,58910045.286242287,0.0,29172895.1045942,0.0,45979860.62501178,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,203348849.7841484,0.0,14093307.03785499,0.0 + 01/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52095024.59173387,0.0,60663990.482300389,0.0,31271330.313258765,0.0,48201170.74331178,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,211290634.06566824,0.0,14093307.03785499,0.0 + 01/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53224766.286318588,0.0,61738573.91858576,0.0,32553639.679980816,0.0,49535887.681565199,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,216111985.50151379,0.0,14093307.03785499,0.0 + 01/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50859017.9955706,0.0,59340407.84699409,0.0,30198614.618070984,0.0,46554693.321952659,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,263189205.52284194,0.0,14093307.03785499,15502637.741640486 + 01/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,52377259.84085387,0.0,65928227.93703794,0.0,34666145.03835262,0.0,49492070.867074977,0.0,20267.5788938832,19950.286165386355,19975.994145393826,24046.708696543436,505729748.12766399,0.0,56373228.15141996,38756594.35410121 + 01/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,33292400.61991904,0.0,66872309.22716859,0.0,35592539.86269478,0.0,53480160.3344384,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,455356661.8776593,0.0,56373228.15141996,38756594.35410121 + 01/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8518413.443160089,0.0,64965206.25362577,0.0,38825613.043501827,0.0,57125036.65115857,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,359800186.20042309,0.0,28186614.07570998,0.0 + 01/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,64127875.13759794,0.0,39489113.87303667,0.0,57694338.973987,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,313992121.33434948,0.0,28186614.07570998,0.0 + 01/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1991745.458045486,64239672.65495547,0.0,41092529.721487957,0.0,59425324.92730551,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,241181002.81130479,1991745.458045486,28186614.07570998,0.0 + 01/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9968679.20058892,58087388.43969958,0.0,37499670.48377858,0.0,50485870.24605761,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,222754628.50711168,9968679.20058892,28186614.07570998,0.0 + 01/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2019755.0784979719,48290565.94565794,0.0,32068429.75828805,0.0,43885231.90233292,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,200925926.9438548,2019755.0784979719,28186614.07570998,0.0 + 01/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,47778879.07049747,0.0,29544866.01121817,0.0,42509012.410853598,0.0,7687.074201905429,7566.731621252323,7576.482127266549,9120.420106898993,234855306.4989331,0.0,28186614.07570998,0.0 + 01/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12862929.57807731,0.0,53060412.583813469,0.0,30388653.214536404,0.0,45387654.58945136,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,333186815.36734536,0.0,28186614.07570998,0.0 + 01/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37593189.6814105,0.0,65327059.70207131,0.0,36062887.24894304,0.0,54091963.82671157,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,384372375.3555176,0.0,35233267.594637479,0.0 + 01/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47908879.46867548,0.0,72602143.85427667,0.0,41389748.909505639,0.0,61037510.1926171,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,490420446.70152029,0.0,14093307.03785499,0.0 + 01/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38691478.6172408,0.0,61692132.13923056,0.0,29530165.083841534,0.0,47020677.70328441,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,444125841.90562108,0.0,63419881.67034747,0.0 + 01/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,27904094.066784298,0.0,49368244.4390905,0.0,16854629.35300993,0.0,31734467.39891289,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,278542228.6075255,0.0,63419881.67034747,69761869.8373822 + 01/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,33537895.454149665,0.0,53882952.80126562,0.0,20249201.64720057,0.0,36272187.40261421,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,296623030.6549579,0.0,49326574.63249246,69761869.8373822 + 01/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39569194.823671597,0.0,58864182.21455454,0.0,23988102.02266471,0.0,41250700.29475189,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,240012576.03050665,0.0,35233267.594637479,69761869.8373822 + 01/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43961694.06499037,0.0,62130486.34157606,0.0,26511903.85639721,0.0,44542928.4515341,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,253487409.38936169,0.0,35233267.594637479,62010550.96656194 + 01/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50485376.52099017,0.0,67680991.61475788,0.0,31224780.345072409,0.0,50474498.05864784,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,237983882.40959514,0.0,35233267.594637479,46507913.22492146 + 01/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,60881236.56049782,0.0,77160994.00131272,0.0,40083170.88009202,0.0,61349738.72218775,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,277593376.0342171,0.0,21139960.556782485,23253956.61246073 + 01/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27433534.858172515,0.0,40913670.482565689,0.0,10048868.54045501,0.0,23504840.910825556,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,120960032.7270822,0.0,14093307.03785499,0.0 + 01/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51071500.14092676,0.0,64956240.284636657,0.0,30840955.475216178,0.0,49542631.558381717,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,215447919.140059,0.0,14093307.03785499,0.0 + 01/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54934955.78963438,0.0,68470979.07294306,0.0,33991478.256509739,0.0,53370358.29641828,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,229776289.40360818,0.0,14093307.03785499,0.0 + 01/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57333201.95157497,0.0,70392362.00895557,0.0,36067297.57919698,0.0,55624652.474065687,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,238426032.00189597,0.0,14093307.03785499,0.0 + 01/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58552122.07031083,0.0,71016106.37588167,0.0,37189084.32003862,0.0,56673777.99558091,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,242439608.74991478,0.0,14093307.03785499,0.0 + 01/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56942014.816276218,0.0,68904152.50297761,0.0,35374587.43556069,0.0,54339485.05818568,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,291497285.1682006,0.0,14093307.03785499,15502637.741640486 + 01/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,62868530.105372939,0.0,75791956.3774307,0.0,39122894.67867736,0.0,59001097.77933465,0.0,20299.800599501148,19982.003434191898,20007.752285137543,24084.93852028101,540532660.3616173,0.0,56373228.15141996,38756594.35410121 + 01/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,74902933.76636754,0.0,87960262.59519056,0.0,50434082.8802565,0.0,73069176.35817376,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,552146114.3431898,0.0,56373228.15141996,38756594.35410121 + 01/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80897453.78252436,0.0,93257584.46245608,0.0,58361961.91262349,0.0,82238106.90680543,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,504840286.94543698,0.0,28186614.07570998,0.0 + 01/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79512568.05088616,0.0,91440182.72762272,0.0,56780216.812707457,0.0,80466917.16945286,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,460268028.6654912,0.0,28186614.07570998,0.0 + 01/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73849982.99935442,0.0,86396842.68103138,0.0,54270924.5777593,0.0,77072179.7418055,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,367624001.9523616,0.0,28186614.07570998,0.0 + 01/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74103934.7032829,0.0,86203833.32551724,0.0,53314327.901776898,0.0,76121465.11056374,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,365889927.7647314,0.0,28186614.07570998,0.0 + 01/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72247833.14274758,0.0,83859897.59103263,0.0,51542155.39356885,0.0,73748306.9575983,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,357634664.82520106,0.0,28186614.07570998,0.0 + 01/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,66268738.47899096,0.0,79823839.86885064,0.0,49624682.423850599,0.0,70991466.8063926,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,380928277.66347089,0.0,28186614.07570998,0.0 + 01/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71477794.3134633,0.0,84486698.77648905,0.0,51116320.63514065,0.0,73628267.91401774,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,471074998.4480875,0.0,28186614.07570998,0.0 + 01/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74424463.11412391,0.0,86349171.1988633,0.0,50661639.75820833,0.0,73483613.21433084,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,475510066.6361605,0.0,35233267.594637479,0.0 + 01/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78254320.03423769,0.0,90045049.42568667,0.0,53499714.17111763,0.0,77111888.06706451,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,565423255.230674,0.0,14093307.03785499,0.0 + 01/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,65690446.26462396,0.0,77988828.19804369,0.0,40247248.34759663,0.0,61543269.40479362,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,511982075.74762549,0.0,63419881.67034747,0.0 + 01/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52463470.10503375,0.0,65079484.00806074,0.0,26547476.65980552,0.0,45224543.26713014,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,341607707.48721167,0.0,63419881.67034747,69761869.8373822 + 01/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,56903952.864412169,0.0,69586549.23664987,0.0,30042643.40537182,0.0,49793233.29890921,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,358394522.710165,0.0,49326574.63249246,69761869.8373822 + 01/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61260666.586103599,0.0,74065165.72013076,0.0,33576441.55515724,0.0,54427087.911419268,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,299363433.72522196,0.0,35233267.594637479,69761869.8373822 + 01/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63709721.30157211,0.0,76633632.71690531,0.0,35548042.106470528,0.0,57070821.651232767,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,308996289.72859176,0.0,35233267.594637479,62010550.96656194 + 01/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,68357078.86955878,0.0,81301395.20162866,0.0,39648949.005238,0.0,62218111.43500443,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,289494057.1890301,0.0,35233267.594637479,46507913.22492146 + 01/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,77461901.67561522,0.0,90394728.68609253,0.0,48126312.67922123,0.0,72655510.07205278,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,326606975.790582,0.0,21139960.556782485,23253956.61246073 + 01/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36544529.149774078,0.0,49271201.59819954,0.0,12861604.818213214,0.0,28105470.63312673,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,145736933.97708509,0.0,14093307.03785499,0.0 + 01/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65448469.52873677,0.0,77466815.07973415,0.0,38629850.86764271,0.0,60458001.37303977,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,260926022.0948824,0.0,14093307.03785499,0.0 + 01/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67929600.84033513,0.0,79658777.12074162,0.0,41012440.482704598,0.0,63410118.53433677,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,270933822.2238471,0.0,14093307.03785499,0.0 + 01/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65114692.07422855,0.0,76149112.86311578,0.0,39522094.71016778,0.0,60691559.316625338,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,260514050.64503516,0.0,14093307.03785499,0.0 + 01/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63791273.19405392,0.0,74390677.62041763,0.0,38849717.268230278,0.0,59414299.929067198,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,255482559.69266678,0.0,14093307.03785499,0.0 + 01/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61897443.23172516,0.0,72726154.09808202,0.0,36969844.94577322,0.0,57105431.86868581,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,304732946.09667727,0.0,14093307.03785499,15502637.741640486 + 01/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65474939.289443228,0.0,78061612.86996678,0.0,39449958.888824667,0.0,60377589.41846943,0.0,20355.75724121221,20037.084064238272,20062.903892197697,24151.32893967486,547949567.361067,0.0,56373228.15141996,38756594.35410121 + 01/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,70236118.60226693,0.0,86030853.68188347,0.0,48130395.81891999,0.0,70970534.32428389,0.0,17811.28758606068,17532.44855620849,17555.040905672984,21132.412822215498,541880185.9599217,0.0,56373228.15141996,38756594.35410121 + 01/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74791280.27196567,0.0,90264238.73040949,0.0,56023432.16426622,0.0,79867470.39940316,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,491312338.37502136,0.0,28186614.07570998,0.0 + 01/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77521376.0295278,0.0,91889086.1547667,0.0,56649302.290705908,0.0,81162787.81941878,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,459096643.00482007,0.0,28186614.07570998,0.0 + 01/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79448562.95172665,0.0,93212640.69172193,0.0,56674632.26846143,0.0,81667162.7464054,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,387037070.61072638,0.0,28186614.07570998,0.0 + 01/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79712352.58053138,0.0,93605980.53133549,0.0,56535504.54284887,0.0,81695732.37933289,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,387486615.389249,0.0,28186614.07570998,0.0 + 01/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79960342.78567586,0.0,93728838.01719944,0.0,56206744.65657478,0.0,81442134.69377281,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,387372132.10563388,0.0,28186614.07570998,0.0 + 01/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81412865.93541807,0.0,95030892.88201896,0.0,56349008.29756349,0.0,81907271.8344042,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,428751146.8780212,0.0,28186614.07570998,0.0 + 01/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85133087.07343138,0.0,98728292.53653996,0.0,57941250.84068906,0.0,84346160.39696484,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,515991404.23562636,0.0,28186614.07570998,0.0 + 01/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,86489068.82272883,0.0,100044580.89992053,0.0,57490916.7310535,0.0,84147568.08451617,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,518257314.4192467,0.0,35233267.594637479,0.0 + 01/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,88700444.09620135,0.0,101938084.26230803,0.0,59494556.19340431,0.0,86441700.32186193,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,602694036.7072141,0.0,14093307.03785499,0.0 + 01/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75570834.42130113,0.0,89108548.70743433,0.0,46077790.11213383,0.0,70452446.40453495,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,546989278.3886058,0.0,63419881.67034747,0.0 + 01/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,62080052.12432046,0.0,75976065.42085895,0.0,32358610.776670144,0.0,54086780.39624609,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,376375599.4284965,0.0,63419881.67034747,69761869.8373822 + 01/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,64736896.85979223,0.0,78496654.73142594,0.0,34782439.261120688,0.0,57069900.36690767,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,386959981.92964747,0.0,49326574.63249246,69761869.8373822 + 01/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67629274.28275255,0.0,81274261.20640238,0.0,37438950.226895328,0.0,60345228.55738713,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,322624759.6286378,0.0,35233267.594637479,69761869.8373822 + 01/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,68679685.45836607,0.0,82218775.01577109,0.0,38446882.74135179,0.0,61560398.87967517,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,326939814.0475751,0.0,35233267.594637479,62010550.96656194 + 01/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71519515.22590998,0.0,84930942.27753109,0.0,41261797.37127311,0.0,64933121.57224426,0.0,2540.717268136974,2500.9418653339519,2504.1645841932638,3014.464053504009,300662412.42316398,0.0,35233267.594637479,46507913.22492146 + 01/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,77619803.84459585,0.0,90660303.605251,0.0,47649304.26128519,0.0,72411129.82455331,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,326458777.4058122,0.0,21139960.556782485,23253956.61246073 + 01/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34656197.90534781,0.0,46759986.7185303,0.0,10997274.643917665,0.0,26109206.747801186,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,137581783.95066039,0.0,14093307.03785499,0.0 + 01/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59720539.62236016,0.0,70856436.33805147,0.0,33956670.04647516,0.0,54049869.6494984,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,237668614.82510118,0.0,14093307.03785499,0.0 + 01/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59620526.299245487,0.0,69981726.80767125,0.0,34676669.93924835,0.0,54531593.460654389,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,237895615.67553548,0.0,14093307.03785499,0.0 + 01/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59182219.09398813,0.0,68956534.77626726,0.0,35212590.0137309,0.0,54409654.91449619,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,236846097.96719844,0.0,14093307.03785499,0.0 + 01/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58626339.10262562,0.0,67999544.99127943,0.0,35461498.65238861,0.0,54113624.89599475,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,235286106.8110044,0.0,14093307.03785499,0.0 + 01/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55562487.043548349,0.0,64839193.56996976,0.0,32709761.567045176,0.0,50560566.68373773,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,280012405.53916499,0.0,14093307.03785499,15502637.741640486 + 01/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,58360582.49028951,0.0,68890889.3709864,0.0,36104467.3573792,0.0,51566078.16868173,0.0,20407.626118948407,20088.14092501738,20114.026544953183,24212.86938315207,520283604.08679267,0.0,56373228.15141996,38756594.35410121 + 01/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,70203222.69594538,0.0,80922283.86367986,0.0,46028969.137676019,0.0,66885172.07067675,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,531231036.1300017,0.0,56373228.15141996,38756594.35410121 + 01/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74905400.72986281,0.0,85435644.17888519,0.0,53791643.65279951,0.0,75753795.49155909,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,480737475.7402664,0.0,28186614.07570998,0.0 + 01/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72915015.4079115,0.0,83651476.9873543,0.0,52189070.22038103,0.0,74098473.55020695,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,435534829.5155816,0.0,28186614.07570998,0.0 + 01/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69984147.5895304,0.0,80471978.13892108,0.0,50052354.00242953,0.0,71340009.5462256,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,348271964.7846624,0.0,28186614.07570998,0.0 + 01/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69435965.11290401,0.0,79499381.76326578,0.0,48976697.368936847,0.0,70045225.4841102,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,344380745.23677268,0.0,28186614.07570998,0.0 + 01/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70377725.74310887,0.0,80435612.41682692,0.0,48843071.87400024,0.0,70206868.54823978,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,346286754.08973166,0.0,28186614.07570998,0.0 + 01/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73430164.74926397,0.0,83997221.22126703,0.0,49820019.53868731,0.0,72074404.94159866,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,393957023.71215078,0.0,28186614.07570998,0.0 + 01/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75648780.84703312,0.0,86704341.7250598,0.0,50942540.553966,0.0,73826401.70850568,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,477973056.52172449,0.0,28186614.07570998,0.0 + 01/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76664602.93406438,0.0,88062004.43348223,0.0,50741489.07335864,0.0,73942337.3162292,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,480261425.4442943,0.0,35233267.594637479,0.0 + 01/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82182568.27886084,0.0,94112083.44018446,0.0,54989994.033508349,0.0,79567868.2108887,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,577364797.4960098,0.0,14093307.03785499,0.0 + 01/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,71556547.52813044,0.0,84247125.25323317,0.0,43437646.48873273,0.0,66144376.68175775,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,531165354.69505569,0.0,63419881.67034747,0.0 + 01/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,61949459.46538833,0.0,75594989.16584742,0.0,32656466.502194566,0.0,53796071.06246112,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,375165069.7636712,0.0,63419881.67034747,69761869.8373822 + 01/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,66607464.48313032,0.0,80628620.34443215,0.0,36393201.62740286,0.0,58734325.56864348,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,393746693.9894409,0.0,49326574.63249246,69761869.8373822 + 01/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71765305.23241326,0.0,85967980.05095896,0.0,40618191.823276977,0.0,64220539.880232159,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,338023069.397385,0.0,35233267.594637479,69761869.8373822 + 01/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77341527.9567554,0.0,91954251.99047335,0.0,44910289.717061419,0.0,69943933.19133693,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,359346082.470919,0.0,35233267.594637479,62010550.96656194 + 01/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,83470229.97876813,0.0,98354129.28455621,0.0,50098604.06102977,0.0,76590207.72665158,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,346050908.1338833,0.0,35233267.594637479,46507913.22492146 + 01/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,94520271.92358105,0.0,109618688.62812692,0.0,60134639.30469113,0.0,89089739.31183847,0.0,2499.478997875543,2460.349187886455,2463.5195989376677,2965.5364200003725,390763322.30515769,0.0,21139960.556782485,23253956.61246073 + 01/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56555926.85849847,0.0,71109117.56183379,0.0,26687316.8879245,0.0,46024401.11469753,0.0,1244.456511273645,1224.9743124365232,1226.5528168686265,1476.5001468007368,218997704.05752064,0.0,14093307.03785499,0.0 + 01/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91531108.04895991,0.0,105770149.12723686,0.0,56392174.87835938,0.0,85217193.54349388,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,357294030.868206,0.0,14093307.03785499,0.0 + 01/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,98906002.7785823,0.0,113261516.11812783,0.0,63281154.68627331,0.0,93639673.33540702,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,387338461.173584,0.0,14093307.03785499,0.0 + 01/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,105672150.30884804,0.0,120366848.58197323,0.0,68699561.05087118,0.0,100569173.49729125,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,413426042.5883,0.0,14093307.03785499,0.0 + 01/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,111533716.47356498,0.0,126639295.96880262,0.0,72880582.17786844,0.0,106199044.11712456,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,435319999.5658691,0.0,14093307.03785499,0.0 + 01/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,111346770.12977332,0.0,126676096.84468825,0.0,71903864.7552042,0.0,105276557.56765613,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,487472732.6113558,0.0,14093307.03785499,15502637.741640486 + 01/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,111242386.26262345,0.0,133205905.3180618,0.0,74577871.52296728,0.0,109428002.15767613,0.0,19217.26898797619,18916.41905699144,18940.794793705125,22800.55608597868,716004305.3900738,0.0,56373228.15141996,38756594.35410121 + 01/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,77938887.82994205,0.0,128025977.33524972,0.0,72678850.46383795,0.0,106770364.83004505,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,638357132.0581935,0.0,56373228.15141996,38756594.35410121 + 01/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58589196.16921531,0.0,126999821.61411153,0.0,77550094.00190367,0.0,111554497.25477903,0.0,12136.60683692166,11946.605992807883,11962.00041399434,14399.620729243206,556295011.342691,0.0,28186614.07570998,0.0 + 01/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43440496.139769289,0.0,125956157.51091077,0.0,78083649.39600855,0.0,112197762.2238658,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,505678979.3121021,0.0,28186614.07570998,0.0 + 01/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36075386.08321826,0.0,128526211.98031327,0.0,80739233.45306447,0.0,115371837.95931489,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,433904553.7724114,0.0,28186614.07570998,0.0 + 01/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31536102.95951054,0.0,128612269.3481696,0.0,80538517.31245306,0.0,110435579.68290735,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,424314353.59954109,0.0,28186614.07570998,0.0 + 01/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28755132.571113439,0.0,117736507.37910183,0.0,75139790.96036496,0.0,103038891.92520148,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,398050105.11439517,0.0,28186614.07570998,0.0 + 01/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31734502.638820858,0.0,111879145.38074965,0.0,68729720.77085749,0.0,97242693.4972066,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,419655735.70555487,0.0,28186614.07570998,0.0 + 01/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52505062.916576329,0.0,115264327.16659853,0.0,68080970.21728289,0.0,99096806.01767168,0.0,12196.737394957428,12005.795195740257,12021.26588825601,14470.963341028135,517448308.870064,0.0,28186614.07570998,0.0 + 01/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,97544736.79134853,0.0,136337198.40886227,0.0,79891496.61019202,0.0,116104236.42796669,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,611060759.7315328,0.0,35233267.594637479,0.0 + 01/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118931499.28153169,0.0,150449143.02891854,0.0,90081235.747753,0.0,129283076.80705366,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,741085014.7404162,0.0,14093307.03785499,0.0 + 01/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,111663272.65387851,0.0,141460663.2727112,0.0,79183286.17696871,0.0,116759568.4106338,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,700673163.1268442,0.0,63419881.67034747,0.0 + 01/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,101704115.63616444,0.0,129954367.01008456,0.0,66969439.088464219,0.0,102215997.12916659,0.0,9584.970649748542,9434.916146152222,9447.073998608408,11372.201795103576,544264904.1864857,0.0,63419881.67034747,69761869.8373822 + 01/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,107033928.5725795,0.0,133415554.09872554,0.0,71276277.67116326,0.0,107076957.76306893,0.0,9527.045570743972,9377.89789506538,9389.98227368531,11303.475900000853,561356964.0077211,0.0,49326574.63249246,69761869.8373822 + 01/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,113725419.21362773,0.0,139181484.2559659,0.0,76549043.30286375,0.0,113619056.00912668,0.0,4736.299364499959,4662.151714392939,4668.159372732866,5619.4384003176269,513944778.6485803,0.0,35233267.594637479,69761869.8373822 + 01/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,116723945.48115982,0.0,141496010.5350536,0.0,78581950.36713048,0.0,116165121.76459106,0.0,4751.226475486676,4676.845138672508,4682.871730989347,5637.14884770051,524060160.0421915,0.0,35233267.594637479,62010550.96656194 + 01/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,122299445.49150938,0.0,146533481.2040444,0.0,83118323.85268042,0.0,121802249.94281802,0.0,2361.86032857105,2324.8849645226616,2327.8808160955238,2802.257122098153,509094280.12368687,0.0,35233267.594637479,46507913.22492146 + 01/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,133194237.5064264,0.0,156969029.44070087,0.0,92867243.6605695,0.0,133781386.87124568,0.0,2354.2316921706458,2317.375755848226,2320.361931039263,2793.206036212027,552038528.973915,0.0,21139960.556782485,23253956.61246073 + 01/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91977646.60457509,0.0,113443615.994412,0.0,56535902.449151758,0.0,87791678.78877032,0.0,1177.1158460853229,1158.687877924113,1160.1809655196315,1396.6030181060133,367362159.5843954,0.0,14093307.03785499,0.0 + 01/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,122718895.15318614,0.0,144577014.2287837,0.0,83114264.31130094,0.0,121893270.95888837,0.0,1170.0117899606876,1151.6950371233693,1153.1791137297713,1388.1743266926274,489810461.6151824,0.0,14093307.03785499,0.0 + 01/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,126084930.38114357,0.0,147389391.39702345,0.0,86332539.85074651,0.0,125307382.66137782,0.0,1170.0117899606876,1151.6950371233693,1153.1791137297713,1388.1743266926274,502621261.25331458,0.0,14093307.03785499,0.0 + 01/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,128478996.81972891,0.0,149338556.7665743,0.0,88491299.66042045,0.0,127656614.48091986,0.0,1166.7369441254405,1148.471459610595,1149.951382308348,1384.2888471176578,511423482.80702689,0.0,14093307.03785499,0.0 + 01/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,134023398.70238972,0.0,154977217.63040609,0.0,92640916.99351625,0.0,133034663.85017675,0.0,1155.4016418402926,1137.3136135973196,1138.7791582716268,1370.8399436514188,531964600.86298719,0.0,14093307.03785499,0.0 + 01/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,131263096.22639199,0.0,151789970.26024557,0.0,90011292.24981359,0.0,129548771.36240211,0.0,1162.7709198900078,1144.567524224429,1146.0424163029705,1379.5833107547688,520011801.11507317,0.0,14093307.03785499,15502637.741640486 + 01/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,126723339.79253489,0.0,153960206.96263934,0.0,90196524.98015584,0.0,130046190.3065114,0.0,4635.066756124245,4562.503921386271,4568.383173374071,5499.329774766071,570281283.0941838,0.0,56373228.15141996,38756594.35410121 + 01/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,88604616.43131456,0.0,144927349.4730407,0.0,85240407.81282974,0.0,123412077.74382487,0.0,11700.117899606874,11516.95037123369,11531.791137297714,13881.743266926274,617254621.0912422,0.0,56373228.15141996,38756594.35410121 + 01/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61720886.62442009,0.0,138799335.80173964,0.0,85494919.07336679,0.0,122398531.09313156,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,586146502.3282995,0.0,28186614.07570998,0.0 + 01/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45456809.884636219,0.0,135053424.4617211,0.0,85049564.5262518,0.0,121566870.83894369,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,564859499.4471941,0.0,28186614.07570998,0.0 + 01/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37152220.75896251,0.0,136122995.26669268,0.0,86745351.9586661,0.0,123574521.5115927,0.0,7188.727987311406,7076.187109614164,7085.305498956307,8529.151346327682,491160828.4878683,0.0,28186614.07570998,0.0 + 01/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26986215.815195994,0.0,134193805.29716105,0.0,84324054.22768833,0.0,115577655.40579476,0.0,7227.490042345475,7114.342337445621,7123.509893693246,8575.141044987,469227470.6923369,0.0,28186614.07570998,0.0 + 01/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18615907.609741488,0.0,118917192.92085648,0.0,75990810.73391849,0.0,104111360.26149757,0.0,7265.190419462064,7151.452508125451,7160.667884615754,8619.871103323967,426345126.4219121,0.0,28186614.07570998,0.0 + 01/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19886075.18944077,0.0,107939667.59154909,0.0,66851750.790605518,0.0,94608035.03418866,0.0,7281.964102152996,7167.963595684729,7177.200248396604,8639.772437545926,398246369.98739299,0.0,28186614.07570998,0.0 + 01/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40923571.712293159,0.0,109142915.05383049,0.0,64662547.62938832,0.0,94324151.8254428,0.0,16952.110978744815,16686.722518959385,16708.225064103426,20113.032574422585,562709514.3113835,0.0,28186614.07570998,0.0 + 01/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,78327190.14212507,0.0,126096746.64009184,0.0,73026744.33830032,0.0,107163041.21138183,0.0,21682.470127036424,21343.02701233686,21370.529681079737,25725.423134960995,709050942.1713895,0.0,35233267.594637479,0.0 + 01/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100775281.75169218,0.0,140015310.45338638,0.0,83019021.6009644,0.0,119961107.33763437,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,695377093.7563293,0.0,14093307.03785499,0.0 + 01/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,94220098.96780738,0.0,131247927.96391085,0.0,73605214.20779273,0.0,108790388.95077682,0.0,16723.358419519715,16461.5511237227,16482.763512541213,19841.626394924006,658097108.1128352,0.0,63419881.67034747,0.0 + 01/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,84766041.37761137,0.0,119989833.62558049,0.0,61284126.96072941,0.0,94220474.24423862,0.0,14334.307216731186,14109.900963190887,14128.083010749613,17007.108338506296,574746314.5132007,0.0,63419881.67034747,69761869.8373822 + 01/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,91703201.50952873,0.0,125507066.63038406,0.0,65569784.77434948,0.0,99885932.2366894,0.0,11908.806963429963,11722.372368831724,11737.477842106638,14129.344875001067,560858792.5286815,0.0,49326574.63249246,69761869.8373822 + 01/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,104009868.02889797,0.0,136948127.4637505,0.0,73751276.12807957,0.0,110856426.73241762,0.0,9391.233764406763,9244.21224789205,9256.124358910587,11142.340376037118,566087777.0432332,0.0,35233267.594637479,69761869.8373822 + 01/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,109707058.93161442,0.0,141607542.942216,0.0,76823383.47604886,0.0,115128581.04601597,0.0,7104.449046749938,6993.227571589407,7002.2390590993,8429.157600476441,549571230.1963896,0.0,35233267.594637479,62010550.96656194 + 01/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,116210809.4170931,0.0,146557841.573529,0.0,81334533.19179723,0.0,120655280.55468783,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,535211727.72705236,0.0,35233267.594637479,46507913.22492146 + 01/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,129180252.58379469,0.0,158530910.81366907,0.0,91880044.58067762,0.0,133829435.68255472,0.0,2347.8084411016909,2311.0530619730127,2314.0310897276469,2785.5850940092798,548551163.3332179,0.0,21139960.556782485,23253956.61246073 + 01/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90636120.53145084,0.0,117144922.36561261,0.0,56840222.79537666,0.0,89618565.51980368,0.0,1173.9042205508454,1155.5265309865063,1157.0155448638234,1392.7925470046399,371805091.0485047,0.0,14093307.03785499,0.0 + 01/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,117972938.31364407,0.0,144076307.4884436,0.0,80536071.7914837,0.0,119805656.02830208,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,480061363.43819066,0.0,14093307.03785499,0.0 + 01/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,120483939.55701044,0.0,145550727.455756,0.0,82624624.41893684,0.0,121838332.1336909,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,488168013.3817115,0.0,14093307.03785499,0.0 + 01/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,123794486.03661755,0.0,148393456.7456494,0.0,84854899.9909108,0.0,124563639.9928261,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,499276872.58232119,0.0,14093307.03785499,0.0 + 01/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,127295521.03556352,0.0,151337510.0552786,0.0,87258606.48570001,0.0,127493452.26083222,0.0,1177.1158460853229,1158.687877924113,1160.1809655196315,1396.6030181060135,510998405.5848605,0.0,14093307.03785499,0.0 + 01/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125309381.421059,0.0,148580693.1238804,0.0,84822204.26132152,0.0,124302367.97921613,0.0,1180.930164285525,1162.4424822613308,1163.9404080477619,1401.1285610490766,500685036.6017943,0.0,14093307.03785499,15502637.741640486 + 01/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,118710238.57795069,0.0,147532869.72209663,0.0,82825057.16993383,0.0,121841026.71771162,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,488728472.9254657,0.0,56373228.15141996,38756594.35410121 + 01/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,91692112.08016235,0.0,141847086.5437451,0.0,80938194.36648156,0.0,118969099.00463893,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,504941771.43004158,0.0,56373228.15141996,38756594.35410121 + 01/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67117707.38491702,0.0,139298638.79497088,0.0,83909704.47390837,0.0,121632973.26039012,0.0,7167.153608365593,7054.950481595443,7064.041505374807,8503.554169253148,519201943.0667067,0.0,28186614.07570998,0.0 + 01/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44748213.1752697,0.0,137519182.33235259,0.0,83977366.21127337,0.0,121388597.61919946,0.0,7206.475870491073,7093.657146371787,7102.798047639422,8550.208532242006,495464661.8863746,0.0,28186614.07570998,0.0 + 01/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35331076.25027074,0.0,137265067.4953013,0.0,85458958.35385496,0.0,122833724.99817258,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,453158270.4116335,0.0,28186614.07570998,0.0 + 01/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33899883.20399439,0.0,132021009.74995868,0.0,81935903.1336955,0.0,113787157.66275504,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,434284514.6714762,0.0,28186614.07570998,0.0 + 01/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44564763.121495258,0.0,117078769.04835756,0.0,73918061.65666385,0.0,103916622.21685593,0.0,7318.042436974457,7203.477117444153,7212.759532953605,8682.578004616882,448978901.57453337,0.0,28186614.07570998,0.0 + 01/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61560598.56510788,0.0,117128178.92827685,0.0,71092303.90004854,0.0,102706302.93473616,0.0,9782.97647591426,9629.822154171365,9642.231162912527,11607.128149502149,498871152.9211705,0.0,28186614.07570998,0.0 + 01/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86300358.73449546,0.0,125651182.94677516,0.0,74459487.56547806,0.0,108353446.2389037,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,577744186.2269038,0.0,28186614.07570998,0.0 + 01/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98694972.68434254,0.0,131987242.0045868,0.0,76958456.47137355,0.0,112049991.82392341,0.0,14636.084873948914,14406.954234888306,14425.51906590721,17365.156009233764,638692034.0465478,0.0,35233267.594637479,0.0 + 01/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103901461.08157665,0.0,134756041.99145446,0.0,79522140.8056121,0.0,115079852.90989723,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,689431091.8262923,0.0,14093307.03785499,0.0 + 01/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,92899521.00332928,0.0,122210157.89113496,0.0,66887621.16529714,0.0,99851094.60903496,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,528607959.2260233,0.0,63419881.67034747,0.0 + 01/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,81007546.05994243,0.0,109131170.03970149,0.0,53664014.06434692,0.0,83894948.29315612,0.0,7318.042436974457,7203.477117444153,7212.759532953605,8682.578004616882,437198363.98830768,0.0,63419881.67034747,69761869.8373822 + 01/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,86373164.66264037,0.0,113604686.64610739,0.0,56994101.51998498,0.0,88347909.17473112,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,418511746.29996439,0.0,49326574.63249246,69761869.8373822 + 01/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92310623.3532295,0.0,118872030.05019096,0.0,60873449.81312355,0.0,93544148.7897616,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,438600709.02707937,0.0,35233267.594637479,69761869.8373822 + 01/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98063270.05703084,0.0,124519601.44122869,0.0,64256806.46939693,0.0,98228683.59153971,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,458068818.5799699,0.0,35233267.594637479,62010550.96656194 + 01/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,104444983.23079843,0.0,130388662.10158539,0.0,68695041.4970037,0.0,103939697.37183839,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,480468841.2219997,0.0,35233267.594637479,46507913.22492146 + 01/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,115635342.16797605,0.0,140742674.41616423,0.0,78117005.3680652,0.0,115537593.0694974,0.0,2433.9284506934016,2395.8248467488926,2398.9121116006865,2887.763197986977,486451758.00701078,0.0,21139960.556782485,23253956.61246073 + 01/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78032981.01604335,0.0,99681495.93839392,0.0,42867258.746593359,0.0,71513242.22726433,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873273,310213287.07761129,0.0,14093307.03785499,0.0 + 01/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,108917208.8893336,0.0,130359652.26674576,0.0,70131100.36258555,0.0,105997087.96802579,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,433523358.63600698,0.0,14093307.03785499,0.0 + 01/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,110782189.81900984,0.0,132100401.12612836,0.0,72349261.89065887,0.0,107958425.89549145,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,441350418.96155676,0.0,14093307.03785499,0.0 + 01/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,112868425.89672145,0.0,133425204.43937013,0.0,74183218.5790839,0.0,109773323.23755142,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,448368481.3020432,0.0,14093307.03785499,0.0 + 01/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116842884.77448556,0.0,136000889.29320345,0.0,76735390.26427911,0.0,112872278.32144898,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,460518803.4819256,0.0,14093307.03785499,0.0 + 01/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116981003.41255671,0.0,136221621.7571494,0.0,75895045.03175608,0.0,112065086.63298063,0.0,4818.326694896983,4742.894891630415,4749.006595795498,5716.760696657999,513259916.798774,0.0,14093307.03785499,15502637.741640486 + 01/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,111840761.40167624,0.0,139229702.55864088,0.0,76019081.18058548,0.0,112628647.4751133,0.0,19273.306779587932,18971.57956652166,18996.02638318199,22867.042786631995,728106832.4733408,0.0,56373228.15141996,38756594.35410121 + 01/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,86711041.14622061,0.0,134532196.3200419,0.0,76134010.6859753,0.0,112205322.89263693,0.0,16864.14343213944,16600.132120706447,16621.52308528424,20008.662438302996,661922630.9200339,0.0,56373228.15141996,38756594.35410121 + 01/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75389104.31468368,0.0,133386941.8930787,0.0,81676738.0901757,0.0,117690553.54425788,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,589326429.3353593,0.0,28186614.07570998,0.0 + 01/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59924470.95216857,0.0,130478522.07188867,0.0,80881869.96321169,0.0,116392778.12266225,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,532624114.3044619,0.0,28186614.07570998,0.0 + 01/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53795928.315692517,0.0,130874175.08964148,0.0,82576156.99603918,0.0,118287964.96796659,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,458174786.2904123,0.0,28186614.07570998,0.0 + 01/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55215882.443850759,0.0,132651506.00866625,0.0,83203649.47853178,0.0,115842514.13464883,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,459554112.9867702,0.0,28186614.07570998,0.0 + 01/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57649199.99279767,0.0,129191518.55371717,0.0,81196075.21683885,0.0,113551479.79830563,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,454061510.15892478,0.0,28186614.07570998,0.0 + 01/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75536240.98948865,0.0,130810574.42069972,0.0,80272037.96739577,0.0,114875847.15303087,0.0,7265.190419462064,7151.452508125451,7160.667884615754,8619.871103323967,510204555.4265131,0.0,28186614.07570998,0.0 + 01/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,102785537.80133929,0.0,142691633.75983394,0.0,84778090.21012643,0.0,122866240.81466776,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,634304594.0791309,0.0,28186614.07570998,0.0 + 01/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,125775542.31047602,0.0,156992719.49568699,0.0,91086331.27275041,0.0,132225517.68737988,0.0,12074.601416950005,11885.571279252983,11900.887050981342,14326.053665339228,686753719.051378,0.0,35233267.594637479,0.0 + 01/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,136099737.0932169,0.0,164371935.36008764,0.0,96358207.05407778,0.0,139020003.49636848,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,788792934.6028695,0.0,14093307.03785499,0.0 + 01/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,123289442.57265838,0.0,150048148.66227935,0.0,82222084.75354168,0.0,121866367.19416657,0.0,16952.110978744815,16686.722518959385,16708.225064103426,20113.032574422585,731082371.2730748,0.0,63419881.67034747,0.0 + 01/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,110243451.59997796,0.0,136015555.41167058,0.0,68045637.68301663,0.0,104779978.99722725,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,564031096.8864231,0.0,63419881.67034747,69761869.8373822 + 01/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,114380962.9086493,0.0,139263307.1088697,0.0,71005183.17568678,0.0,108462071.65152551,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,578057998.039262,0.0,49326574.63249246,69761869.8373822 + 01/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,119488496.4050305,0.0,141869559.04283507,0.0,74135479.77906925,0.0,112386331.54601512,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,520353103.3702153,0.0,35233267.594637479,69761869.8373822 + 01/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,121969965.25699273,0.0,144006477.9208145,0.0,75961297.05683035,0.0,114665226.2289335,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,529076203.06083658,0.0,35233267.594637479,62010550.96656194 + 01/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,126798331.87838874,0.0,149865127.954334,0.0,80356685.96697603,0.0,120206186.17424618,0.0,2414.920283390001,2377.114255850597,2380.177410196268,2865.2107330678456,513361053.63096186,0.0,35233267.594637479,46507913.22492146 + 01/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,137899280.90908358,0.0,158795200.110995,0.0,89563603.13665764,0.0,131498349.79259037,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,553805013.9314922,0.0,21139960.556782485,23253956.61246073 + 01/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96110828.55048736,0.0,114856706.0548453,0.0,53135692.61150634,0.0,85731114.54787943,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,367858631.75580129,0.0,14093307.03785499,0.0 + 01/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125199866.77416532,0.0,144205780.81277866,0.0,78718028.74822214,0.0,117993619.95256356,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,484089180.0457762,0.0,14093307.03785499,0.0 + 01/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,127551601.10038616,0.0,146062365.68909488,0.0,81400130.29964257,0.0,120645813.13315939,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,493631793.9803296,0.0,14093307.03785499,0.0 + 01/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,129597959.667761,0.0,147841828.4338759,0.0,83418974.05767535,0.0,122800773.15667589,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,501587158.4813138,0.0,14093307.03785499,0.0 + 01/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,130850538.6400705,0.0,148897276.51032944,0.0,84707193.33050582,0.0,124129161.66054225,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,506511793.3067737,0.0,14093307.03785499,0.0 + 01/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,128564292.16180946,0.0,146566531.97026447,0.0,82346275.58131123,0.0,121198422.04278183,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,550386014.41747,0.0,14093307.03785499,15502637.741640486 + 01/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,129754406.09735984,0.0,152556891.75772304,0.0,85143563.14799793,0.0,125131164.94588255,0.0,19112.40962230825,18813.20128425452,18837.444014332814,22676.144451341726,778567143.6890178,0.0,56373228.15141996,38756594.35410121 + 01/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,124485879.1447295,0.0,156992719.59421809,0.0,91419716.54941404,0.0,132474818.02524299,0.0,16773.698637059948,16511.103255766382,16532.379497564714,19901.353141431257,756359857.6281649,0.0,56373228.15141996,38756594.35410121 + 01/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,124555836.59836214,0.0,159659472.305242,0.0,98413310.21558267,0.0,140245040.8602306,0.0,11981.213312185679,11793.645182690276,11808.842498260512,14215.25224387947,702149891.6326748,0.0,28186614.07570998,0.0 + 01/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,113946348.39139378,0.0,154311329.77705715,0.0,95687395.05644629,0.0,136640429.29694913,0.0,9636.653389793966,9485.78978326083,9498.013191590995,11433.521393315998,644779822.4505088,0.0,28186614.07570998,0.0 + 01/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,98568221.9238537,0.0,149168682.29181815,0.0,93197861.20529391,0.0,133148209.56688874,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,546556211.5851199,0.0,28186614.07570998,0.0 + 01/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80089491.46243549,0.0,146146527.62565018,0.0,91295810.10908804,0.0,127250614.43294166,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,517423004.55118796,0.0,28186614.07570998,0.0 + 01/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60121948.64852601,0.0,134869600.8500818,0.0,85114635.383101,0.0,117959163.41662577,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,471065805.31910839,0.0,28186614.07570998,0.0 + 01/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58636679.65790766,0.0,126325558.73911026,0.0,77308739.09152052,0.0,109882774.83282441,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,481941578.7661137,0.0,28186614.07570998,0.0 + 01/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68217680.15244399,0.0,124687894.44088856,0.0,73031269.82847129,0.0,106709821.65185887,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,555626376.8149141,0.0,28186614.07570998,0.0 + 01/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101544508.77036385,0.0,136916330.22823975,0.0,78835138.1282773,0.0,115749673.35546097,0.0,12196.737394957428,12005.795195740257,12021.26588825601,14470.963341028135,615546793.0342765,0.0,35233267.594637479,0.0 + 01/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125339086.03955102,0.0,150247682.27752204,0.0,89382230.76477355,0.0,128610867.49254246,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,748513867.471544,0.0,14093307.03785499,0.0 + 01/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,113897947.39623939,0.0,138032663.35301478,0.0,76640427.56871684,0.0,113392753.50328639,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,696205755.0450115,0.0,63419881.67034747,0.0 + 01/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,100360594.24727795,0.0,123427469.74637847,0.0,62630099.4264881,0.0,96268669.44306988,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,527967954.70535966,0.0,63419881.67034747,69761869.8373822 + 01/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,103075491.14622726,0.0,125085085.9710046,0.0,64955224.129858288,0.0,98756672.64242804,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,537153595.7316635,0.0,49326574.63249246,69761869.8373822 + 01/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,107679794.46259642,0.0,129197401.44827998,0.0,68883387.63288509,0.0,103598406.44912409,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,481628433.30691948,0.0,35233267.594637479,69761869.8373822 + 01/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,109881532.54049117,0.0,131091852.53323972,0.0,70613809.97904949,0.0,105754086.06715477,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,489814517.7172006,0.0,35233267.594637479,62010550.96656194 + 01/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,113252428.40895413,0.0,134091879.03835809,0.0,73522910.03520511,0.0,109310554.84835953,0.0,2421.7301398206884,2383.8175027084846,2386.889294871918,2873.290367774655,466414390.62950959,0.0,35233267.594637479,46507913.22492146 + 01/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,121374239.07446519,0.0,141618573.4970552,0.0,81251331.28204105,0.0,118555922.83713685,0.0,2421.7301398206884,2383.8175027084846,2386.889294871918,2873.290367774655,499036684.98933097,0.0,21139960.556782485,23253956.61246073 + 01/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80814571.81219894,0.0,99864664.17389915,0.0,44641677.14354248,0.0,72918192.77145176,0.0,1207.4601416950005,1188.5571279252986,1190.0887050981338,1432.6053665339228,316306466.7296008,0.0,14093307.03785499,0.0 + 01/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,111451111.24774803,0.0,131227646.42857424,0.0,71616812.83729583,0.0,107726227.98873124,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,440089159.3308578,0.0,14093307.03785499,0.0 + 01/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113836388.31691033,0.0,133368469.00683475,0.0,74209427.07358806,0.0,110408845.44827092,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,449890490.67411258,0.0,14093307.03785499,0.0 + 01/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,114315817.65559767,0.0,133368324.3916015,0.0,74957226.33722118,0.0,110865077.19107664,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,451624754.72481337,0.0,14093307.03785499,0.0 + 01/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,115377820.11075309,0.0,134290848.5896454,0.0,75824955.58649467,0.0,111818583.11814323,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,455430516.5543527,0.0,14093307.03785499,0.0 + 01/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,112209995.49306464,0.0,130880754.84097784,0.0,72749816.46145183,0.0,107892527.23266196,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,496373654.9492288,0.0,14093307.03785499,15502637.741640486 + 01/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,117770174.53484249,0.0,137487566.91509874,0.0,76224450.1410059,0.0,112557697.33112383,0.0,19471.42760554721,19166.59877399114,19191.29689280549,23102.105583895816,735393032.8045337,0.0,56373228.15141996,38756594.35410121 + 01/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,129011366.92557615,0.0,149399342.51991535,0.0,87110610.10455406,0.0,125930490.3412459,0.0,17075.4323529404,16808.113274036357,16829.77224355841,20259.348677439386,746953409.4639998,0.0,56373228.15141996,38756594.35410121 + 01/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,133473551.15259943,0.0,152800556.8274785,0.0,92882296.57994253,0.0,132503107.30731455,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,695108967.5638688,0.0,28186614.07570998,0.0 + 01/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,126876545.64580192,0.0,145685347.26337255,0.0,87942074.81137648,0.0,126127966.97927773,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,634358133.8974705,0.0,28186614.07570998,0.0 + 01/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,116528028.82360102,0.0,135196261.83806158,0.0,81453846.03569147,0.0,117388128.53006846,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,525050031.7656878,0.0,28186614.07570998,0.0 + 01/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,109167635.37657939,0.0,127093909.6765931,0.0,75717208.15710888,0.0,109700069.46421841,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,496754296.840255,0.0,28186614.07570998,0.0 + 01/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,101680500.6424689,0.0,118471597.77177149,0.0,69624950.3165392,0.0,101472802.8555464,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,466941392.56924197,0.0,28186614.07570998,0.0 + 01/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93822847.53539373,0.0,110117022.5528843,0.0,64375489.07176885,0.0,94104502.81745513,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,476325430.01030269,0.0,28186614.07570998,0.0 + 01/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92128823.37415377,0.0,106911048.59411657,0.0,61526774.18900028,0.0,90241157.94508109,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,541398983.4529858,0.0,28186614.07570998,0.0 + 01/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87674419.33647266,0.0,101424895.42669299,0.0,56851932.67112858,0.0,84022919.99790487,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,521271442.3285802,0.0,35233267.594637479,0.0 + 01/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86134951.76768503,0.0,99050465.99725992,0.0,56211731.9711763,0.0,82566749.62560313,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,592045930.9237778,0.0,14093307.03785499,0.0 + 01/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,67613380.02086887,0.0,80066109.37723841,0.0,39072745.126257847,0.0,61251682.09846562,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,516677208.85240867,0.0,63419881.67034747,0.0 + 01/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49535854.15232894,0.0,61627239.708940539,0.0,22294817.218270754,0.0,40427903.796980287,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,327542966.5341678,0.0,63419881.67034747,69761869.8373822 + 01/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,53119870.235744889,0.0,64855346.93495966,0.0,25662953.122132146,0.0,44484832.01953531,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,341160822.2294769,0.0,49326574.63249246,69761869.8373822 + 01/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,65850026.92681925,0.0,77911823.87548164,0.0,35526047.08351822,0.0,57348683.976813439,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,312087634.27313616,0.0,35233267.594637479,69761869.8373822 + 01/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,78160991.38197203,0.0,91282582.65872653,0.0,44604224.57389699,0.0,69753153.55015372,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,358600918.43858948,0.0,35233267.594637479,62010550.96656194 + 01/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87862901.50544518,0.0,101575569.36299812,0.0,52143516.06375715,0.0,79783312.22633837,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,358607182.42767146,0.0,35233267.594637479,46507913.22492146 + 01/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,99599326.16222009,0.0,113549467.01475999,0.0,62451897.489538777,0.0,92775878.59949614,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,405550218.2058412,0.0,21139960.556782485,23253956.61246073 + 01/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59363023.74561713,0.0,72115239.05010335,0.0,28340433.89347303,0.0,48090497.873589519,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,226530136.19734938,0.0,14093307.03785499,0.0 + 01/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87652882.2808845,0.0,100701709.7299707,0.0,51986365.09391507,0.0,80222129.79460114,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,339149911.36928459,0.0,14093307.03785499,0.0 + 01/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90249678.38221848,0.0,103142581.57707507,0.0,55166778.97581996,0.0,83459399.25165269,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,350605262.6566794,0.0,14093307.03785499,0.0 + 01/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91042922.45479435,0.0,103837084.2609957,0.0,56265823.62589134,0.0,84449355.671656,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,354216127.64790377,0.0,14093307.03785499,0.0 + 01/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92518935.9045124,0.0,105354741.21369764,0.0,57727948.102698829,0.0,86090866.4968682,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,360279316.18769028,0.0,14093307.03785499,0.0 + 01/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90733206.26924207,0.0,103725254.50947044,0.0,55850487.97820719,0.0,83803101.80752337,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,408459348.4440957,0.0,14093307.03785499,15502637.741640486 + 01/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,97458512.80420402,0.0,111589020.92561235,0.0,60248384.70469373,0.0,89759150.33530703,0.0,19830.083324936444,19519.639671186174,19544.7927192307,23527.63690422066,655774818.2002835,0.0,56373228.15141996,38756594.35410121 + 01/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,107035082.37847775,0.0,122230727.45473853,0.0,71176313.46381718,0.0,102759496.76789747,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,663417162.6437148,0.0,56373228.15141996,38756594.35410121 + 01/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,99966028.76810487,0.0,120076769.80124949,0.0,74670454.30386448,0.0,106058107.47106786,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,586980776.6899498,0.0,28186614.07570998,0.0 + 01/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78532641.53613803,0.0,111574345.9682245,0.0,69512113.03041226,0.0,99435943.43341582,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,508342807.6183862,0.0,28186614.07570998,0.0 + 01/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86840484.15055339,0.0,114076191.25920138,0.0,70633635.2155992,0.0,101243735.97017166,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,447437928.4206234,0.0,28186614.07570998,0.0 + 01/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86861121.16488886,0.0,114011969.63960324,0.0,70254904.1440268,0.0,100156582.47596108,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,445928459.2495778,0.0,28186614.07570998,0.0 + 01/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87815734.41081183,0.0,113465808.1730816,0.0,69566556.24082533,0.0,99497848.74483186,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,444989829.39464846,0.0,28186614.07570998,0.0 + 01/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92273459.77689547,0.0,115194587.58783257,0.0,69543298.00617975,0.0,100206600.51828672,0.0,7482.790069398141,7365.6455949486039,7375.136981093513,8878.044781683835,489183768.6268412,0.0,28186614.07570998,0.0 + 01/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,103469344.61765102,0.0,121267839.58303726,0.0,71956474.71119799,0.0,104172050.03585896,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,587475413.5104898,0.0,28186614.07570998,0.0 + 01/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,105911280.35942868,0.0,123490979.52718258,0.0,71712812.9347325,0.0,104459232.91624028,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,592184010.3003286,0.0,35233267.594637479,0.0 + 01/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113132173.02915052,0.0,129038587.03821236,0.0,75860428.49227953,0.0,109695662.6313173,0.0,17459.843495262332,17186.50638821341,17208.652955884863,20715.437823928944,688980437.5788021,0.0,14093307.03785499,0.0 + 01/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,100423662.143165,0.0,116379658.24674732,0.0,62525411.66426205,0.0,93803190.3466667,0.0,17434.979239241366,17162.031386758874,17184.146415892843,20685.93733328707,634013462.1514896,0.0,63419881.67034747,0.0 + 01/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,86295740.6590489,0.0,102282362.79140137,0.0,48228034.05084753,0.0,76566724.6823278,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,462660625.8338212,0.0,63419881.67034747,69761869.8373822 + 01/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,88181970.59466343,0.0,103887747.70499937,0.0,49980961.91592885,0.0,78653760.2175934,0.0,9994.476619958401,9838.011224005182,9850.688505612241,11858.064996953688,470252909.2806913,0.0,49326574.63249246,69761869.8373822 + 01/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,89752858.74935173,0.0,105197086.65544051,0.0,51539968.54511076,0.0,80489483.73561724,0.0,5010.7825512365229,4932.337815636353,4938.693636345055,5945.102223713183,401956296.1024722,0.0,35233267.594637479,69761869.8373822 + 01/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,88207215.13545391,0.0,103237118.33685306,0.0,50684449.75178713,0.0,79102268.1747857,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,396567985.24465849,0.0,35233267.594637479,62010550.96656194 + 01/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,86059062.28953849,0.0,100426009.06706029,0.0,49982127.67612602,0.0,77545155.68460235,0.0,2532.7616268879266,2493.1107711327815,2496.323398827912,3005.0249888475107,351910349.54583325,0.0,35233267.594637479,46507913.22492146 + 02/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,87203897.56193438,0.0,100686681.92006013,0.0,53013879.29531252,0.0,80288104.79088825,0.0,2546.8868606728449,2507.0148717477375,2510.2454162956726,3021.784039539995,359301915.8459178,0.0,21139960.556782485,23253956.61246073 + 02/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37593746.21108884,0.0,50413553.78914344,0.0,11922334.812577773,0.0,27744929.184628428,0.0,1278.7173527308478,1258.6987940293598,1260.3207558981818,1517.1493273729885,146808154.42555145,0.0,14093307.03785499,0.0 + 02/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59071733.825608488,0.0,69934964.28788576,0.0,32495493.14093832,0.0,52466399.805433679,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,233149426.61271594,0.0,14093307.03785499,0.0 + 02/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56096087.892477888,0.0,66023372.803168509,0.0,31337147.81647481,0.0,50223207.50149707,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,222883787.41235415,0.0,14093307.03785499,0.0 + 02/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53855551.7278242,0.0,63253308.09537637,0.0,30543794.394006205,0.0,48421829.49328339,0.0,1284.2557518663967,1264.1504884932545,1265.779475426836,1523.7204265336252,215290945.8228426,0.0,14093307.03785499,0.0 + 02/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51778881.83388702,0.0,60752215.14568651,0.0,29621866.66096743,0.0,46642074.80231449,0.0,1285.249089511789,1265.1282752525013,1266.7585221641226,1524.898983731854,208026363.9772324,0.0,14093307.03785499,0.0 + 02/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49119841.80031764,0.0,58020736.42818916,0.0,27340250.459134025,0.0,43587198.06066078,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,254831824.52818103,0.0,14093307.03785499,15502637.741640486 + 02/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44357401.12863961,0.0,57423515.003761228,0.0,30162490.983092648,0.0,43412507.506749559,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,482670217.93753769,0.0,56373228.15141996,38756594.35410121 + 02/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,42752370.77904398,0.0,62425633.1215441,0.0,34802341.94099511,0.0,49012645.87156016,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,457893007.1140261,0.0,56373228.15141996,38756594.35410121 + 02/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49244254.45862432,0.0,68159220.62200064,0.0,41708969.43929011,0.0,60400462.113530579,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,411584346.2055048,0.0,28186614.07570998,0.0 + 02/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40084168.756423529,0.0,62180547.99483955,0.0,39082282.41545077,0.0,56416414.84880297,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,351567256.9322611,0.0,28186614.07570998,0.0 + 02/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7114476.629216631,0.0,55112473.22615141,0.0,35918840.096262779,0.0,51865913.68881147,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,226971072.56298883,0.0,28186614.07570998,0.0 + 02/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,51054401.653656709,0.0,33753778.47923537,0.0,45028184.36424184,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,206860241.08911783,0.0,28186614.07570998,0.0 + 02/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7644606.048187104,46838412.94449958,0.0,30672328.09802351,0.0,40928912.94805397,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,195463530.58256097,7644606.048187104,28186614.07570998,0.0 + 02/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,599162.7821697093,41170613.3421937,0.0,25671584.373196514,0.0,36701475.01536059,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,219079487.61872668,599162.7821697093,28186614.07570998,0.0 + 02/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2600013.9131461537,0.0,42564698.83774589,0.0,23978228.915919328,0.0,36400514.75295623,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,298228273.3705236,0.0,28186614.07570998,0.0 + 02/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26298401.55331131,0.0,51114705.75029126,0.0,26438386.842053355,0.0,41208766.17724937,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,337745077.27366128,0.0,35233267.594637479,0.0 + 02/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47460307.32428324,0.0,64815219.209128748,0.0,35620739.91510447,0.0,53133368.84221192,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,470788379.0217867,0.0,14093307.03785499,0.0 + 02/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37835639.67553231,0.0,53688400.14328334,0.0,23686119.932537576,0.0,38970957.45762548,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,423538908.4378915,0.0,63419881.67034747,0.0 + 02/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,25674802.754569755,0.0,40182255.638028997,0.0,10086272.949133426,0.0,22498113.594528274,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,252589298.49686525,0.0,63419881.67034747,69761869.8373822 + 02/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,28984834.14039208,0.0,42240892.05193192,0.0,12222079.106716009,0.0,25052207.819396557,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,262647866.67904137,0.0,49326574.63249246,69761869.8373822 + 02/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33781318.31287831,0.0,46220811.158259447,0.0,15735391.3707821,0.0,29474449.885321697,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,202235847.31922547,0.0,35233267.594637479,69761869.8373822 + 02/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37731286.284793738,0.0,49656653.72919841,0.0,18550469.95382443,0.0,33087836.04510169,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,215985614.93546478,0.0,35233267.594637479,62010550.96656194 + 02/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40278556.71108178,0.0,51552520.46187495,0.0,20657988.859894009,0.0,35554417.33230336,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,186608244.16630934,0.0,35233267.594637479,46507913.22492146 + 02/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,48157709.7010823,0.0,58801315.44199578,0.0,28050779.161807695,0.0,44412378.62431294,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,217959146.31934989,0.0,21139960.556782485,23253956.61246073 + 02/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12539763.681977313,0.0,21790806.68350733,0.0,0.0,0.0,5534734.07307283,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,59090784.80315051,0.0,14093307.03785499,0.0 + 02/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37579884.60316864,0.0,46809694.64564599,0.0,17123956.015741074,0.0,32367637.434234259,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,153121014.92942656,0.0,14093307.03785499,0.0 + 02/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37815112.95356044,0.0,46064742.58999335,0.0,19969881.578139035,0.0,33639710.39251573,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,156745416.66220454,0.0,14093307.03785499,0.0 + 02/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39509364.60462291,0.0,47503922.53977162,0.0,21894186.505502304,0.0,35645834.36144255,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,163778788.37593246,0.0,14093307.03785499,0.0 + 02/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40840498.668577808,0.0,48654192.40820658,0.0,23098866.519770184,0.0,36869500.161014068,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,168702899.98820529,0.0,14093307.03785499,0.0 + 02/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38630989.868767637,0.0,46353898.79661395,0.0,20905052.097165098,0.0,34051947.23198023,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,159167368.35911996,0.0,14093307.03785499,15502637.741640486 + 02/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,45803814.47416966,0.0,56192231.406705219,0.0,30372362.95386333,0.0,44833383.95461638,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,254275719.56965698,0.0,56373228.15141996,38756594.35410121 + 02/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38217648.4187704,0.0,58559728.656358558,0.0,34137307.97875526,0.0,49216854.310584578,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,372691230.8444286,0.0,56373228.15141996,38756594.35410121 + 02/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26882203.08531688,0.0,51452890.23776649,0.0,30801826.69149213,0.0,45071547.44254692,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,346893284.4078784,0.0,28186614.07570998,0.0 + 02/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44091566.928187,0.0,60893982.96157529,0.0,34719160.08277843,0.0,51803964.637391,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,384332478.6157081,0.0,28186614.07570998,0.0 + 02/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44524017.57477689,0.0,67766023.07117735,0.0,37379775.41065457,0.0,56343839.94967471,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,321624546.17673709,0.0,28186614.07570998,0.0 + 02/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52193153.58989926,0.0,66492340.54472014,0.0,36604016.83363809,0.0,55318821.65045501,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,326366507.23555228,0.0,28186614.07570998,0.0 + 02/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56078815.58650521,0.0,68181326.192259,0.0,37188309.41622123,0.0,56357889.29736142,0.0,7731.966829586066,7610.921446471907,7620.7288955862909,9173.683495985118,333500622.89581266,0.0,28186614.07570998,0.0 + 02/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58439723.35501676,0.0,69709480.84203291,0.0,37949857.09873052,0.0,57382167.81130825,0.0,7731.966829586066,7610.921446471907,7620.7288955862909,9173.683495985118,339175511.5105542,0.0,28186614.07570998,0.0 + 02/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61761826.17036142,0.0,72247359.02480817,0.0,39297418.59805231,0.0,59143336.782287407,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,502208684.30656769,0.0,28186614.07570998,0.0 + 02/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61593863.32931255,0.0,71833248.28620592,0.0,38141440.624655608,0.0,57787763.29853745,0.0,23195.900488758198,22832.764339415724,22862.18668675887,27521.050487955352,576439162.7491088,0.0,35233267.594637479,0.0 + 02/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62810096.811537738,0.0,72680550.01612717,0.0,39333402.80212799,0.0,59022773.75281395,0.0,18051.21922645151,17768.62402200979,17791.520707667903,21417.082554785447,503949230.82189956,0.0,14093307.03785499,0.0 + 02/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,50435310.40264206,0.0,60337639.804691787,0.0,27223351.227905826,0.0,44332757.99695713,0.0,18041.255935700818,17758.816708434446,17781.70075636801,21405.26149063194,452282385.04028359,0.0,63419881.67034747,0.0 + 02/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37281580.24039528,0.0,47517507.014987979,0.0,13914309.0648503,0.0,28436931.743380909,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,358372108.40452167,0.0,63419881.67034747,69761869.8373822 + 02/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,40451541.393348637,0.0,50728712.50856595,0.0,16654529.888727792,0.0,31956112.65403237,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,332475713.39543077,0.0,49326574.63249246,69761869.8373822 + 02/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43185481.648537088,0.0,53409941.41302588,0.0,19216414.217188918,0.0,35138587.1375422,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,305098277.97689887,0.0,35233267.594637479,69761869.8373822 + 02/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43012412.44780138,0.0,53012416.158338528,0.0,19414499.298919646,0.0,35203293.666005749,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,266400796.18790505,0.0,35233267.594637479,62010550.96656194 + 02/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43623912.94534274,0.0,52921164.1135702,0.0,21222861.56400027,0.0,36651478.37002815,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,231548938.59525193,0.0,35233267.594637479,46507913.22492146 + 02/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,52426208.2269531,0.0,61794838.60473299,0.0,29411218.57208268,0.0,46821275.35465631,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,229018301.55958034,0.0,21139960.556782485,23253956.61246073 + 02/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14975361.58166287,0.0,23510576.896392228,0.0,0.0,0.0,6801793.319140139,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,64556213.49227083,0.0,14093307.03785499,0.0 + 02/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39251546.05805664,0.0,47554738.07896268,0.0,17277776.459580929,0.0,32782658.386827087,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163182,156122688.1314233,0.0,14093307.03785499,0.0 + 02/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40608497.335545878,0.0,48080406.05373835,0.0,21156449.5949611,0.0,35419654.837077919,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,164504850.05195988,0.0,14093307.03785499,0.0 + 02/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42393348.200134519,0.0,49787758.493285778,0.0,23173429.809922078,0.0,37538181.847429309,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,172118198.71536476,0.0,14093307.03785499,0.0 + 02/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45852648.25935669,0.0,53402745.112756248,0.0,26225858.087155135,0.0,41249034.79143486,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,185900711.08509694,0.0,14093307.03785499,0.0 + 02/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47399828.39166699,0.0,55358798.82006652,0.0,26916652.555487858,0.0,42384103.70003642,0.0,1276.864693203723,1256.8751382327455,1258.494750134937,1514.9512175644168,191165252.3441468,0.0,14093307.03785499,15502637.741640486 + 02/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,54599026.2129527,0.0,64563293.44558777,0.0,34601848.44616017,0.0,49201827.21761501,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,221974513.31041838,0.0,56373228.15141996,38756594.35410121 + 02/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,68040029.31316087,0.0,80002627.47800276,0.0,45376539.82312373,0.0,66410028.49060576,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,335645736.2159792,0.0,56373228.15141996,38756594.35410121 + 02/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73969320.91198816,0.0,86476315.10961697,0.0,54540459.901257809,0.0,77164335.71023563,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,405526494.3089334,0.0,28186614.07570998,0.0 + 02/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78218936.02247656,0.0,89820434.1515253,0.0,56034540.87258125,0.0,79699860.5155784,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,416950350.1779169,0.0,28186614.07570998,0.0 + 02/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74784557.5714822,0.0,87581959.2254878,0.0,54873351.7388645,0.0,78332433.97178851,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,371023354.91812667,0.0,28186614.07570998,0.0 + 02/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,76469845.40861483,0.0,89586800.18127704,0.0,55844460.59328525,0.0,79835282.66477497,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,376932468.46324399,0.0,28186614.07570998,0.0 + 02/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,84871793.83189997,0.0,97819590.39474106,0.0,59783654.142986457,0.0,85936419.33945313,0.0,7498.4369936266289,7381.047563659363,7390.558796813003,8896.609260001118,440611407.11984106,0.0,28186614.07570998,0.0 + 02/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90898617.65658093,0.0,104146461.38038349,0.0,62900758.0376665,0.0,90661228.03063475,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,497894828.75546136,0.0,28186614.07570998,0.0 + 02/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,99280637.14330375,0.0,112922263.20104182,0.0,67508577.61511103,0.0,97421075.69429192,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,562582397.04779,0.0,28186614.07570998,0.0 + 02/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,107580226.37714266,0.0,121813431.54803327,0.0,71498202.25854302,0.0,103592980.449971,0.0,14809.038722506137,14577.200458681857,14595.98466933679,17570.359148492633,626074139.4301527,0.0,35233267.594637479,0.0 + 02/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,117687681.55743949,0.0,132502905.7268185,0.0,78638323.2231804,0.0,113263449.21703601,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,698921597.6996216,0.0,14093307.03785499,0.0 + 02/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,112138673.33696303,0.0,127755575.4036091,0.0,70990972.7248662,0.0,104981992.23356687,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,561868127.7405529,0.0,63419881.67034747,0.0 + 02/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,102858401.96935694,0.0,119279000.78545785,0.0,59907917.09706728,0.0,92470319.32220792,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,483773068.1300136,0.0,63419881.67034747,69761869.8373822 + 02/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,110909450.20132827,0.0,127889453.55492667,0.0,65841140.385194059,0.0,100562320.00067358,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,477675600.739388,0.0,49326574.63249246,69761869.8373822 + 02/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,116998500.530157,0.0,134309074.63391043,0.0,70688730.953464,0.0,106954497.96718943,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,501424040.6819863,0.0,35233267.594637479,69761869.8373822 + 02/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,120798452.64850882,0.0,138793341.59196816,0.0,73943339.40579964,0.0,111224832.51532045,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,517029409.47563096,0.0,35233267.594637479,62010550.96656194 + 02/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,124706118.71255005,0.0,144216135.08503775,0.0,78182602.64161861,0.0,116489282.31135203,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,535863582.06459239,0.0,35233267.594637479,46507913.22492146 + 02/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,134204071.10985956,0.0,153920018.45645727,0.0,87179693.08724673,0.0,127540819.76763568,0.0,2409.1633474484917,2371.4474458152078,2374.503297897749,2858.3803483289996,538893182.4033649,0.0,21139960.556782485,23253956.61246073 + 02/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94391020.39876159,0.0,113008231.31986766,0.0,52404192.37310068,0.0,84047381.68422991,0.0,1201.0793117485119,1182.2761910619648,1183.7996746065704,1425.0347553736675,361822709.5340064,0.0,14093307.03785499,0.0 + 02/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,124076830.4120705,0.0,143665480.8058472,0.0,78411932.28359021,0.0,117169656.40594055,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,481251523.07277426,0.0,14093307.03785499,0.0 + 02/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,127642438.06720694,0.0,147411050.7220457,0.0,82164247.7886267,0.0,121343370.42181395,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,496434926.85844656,0.0,14093307.03785499,0.0 + 02/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,130301266.81629868,0.0,150120701.3051347,0.0,84864520.50719993,0.0,124405115.40120909,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,507510884.76761546,0.0,14093307.03785499,0.0 + 02/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,132953441.66867176,0.0,152984848.54826296,0.0,87262711.60566902,0.0,127307682.52768564,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,518281967.3238536,0.0,14093307.03785499,0.0 + 02/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,133681073.12984267,0.0,154361191.13412334,0.0,87164023.95831205,0.0,127552219.77624786,0.0,4723.7206571421,4649.769929045323,4655.761632191047,5604.514244196306,573440067.2637951,0.0,14093307.03785499,15502637.741640486 + 02/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,139089864.32217808,0.0,163664111.20821686,0.0,92624533.00355505,0.0,134954798.9979465,0.0,18782.467528813526,18488.4244957841,18512.248717821174,22284.680752074237,811377464.9120714,0.0,56373228.15141996,38756594.35410121 + 02/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,137056538.4025463,0.0,170737617.8153075,0.0,101315538.40404438,0.0,145648045.64645428,0.0,16334.317217756166,16078.600434548325,16099.319352316872,19380.043859647205,799169951.3797194,0.0,56373228.15141996,38756594.35410121 + 02/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,124973215.51504001,0.0,172973308.52919335,0.0,107451071.84334094,0.0,152666309.39172087,0.0,11627.709198900076,11445.675242244288,11460.424163029706,13795.833107547689,732050615.4414934,0.0,28186614.07570998,0.0 + 02/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,95037917.44658554,0.0,169598802.3635622,0.0,105924157.34854225,0.0,150907060.4288245,0.0,9333.895553003524,9187.77167688476,9199.611058466784,11074.310776941262,661132058.2225813,0.0,28186614.07570998,0.0 + 02/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79600149.39379165,0.0,172027622.70543698,0.0,108657155.22024626,0.0,154260833.8577336,0.0,4680.04715984275,4606.780148493477,4612.716454919085,5552.697306770509,584573829.0293014,0.0,28186614.07570998,0.0 + 02/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74690866.63776469,0.0,172610974.754106,0.0,108254784.0042142,0.0,149261567.83239968,0.0,4695.6168822033819,4622.106123946025,4628.0621794552939,5571.170188018559,575079232.5735283,0.0,28186614.07570998,0.0 + 02/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72249734.4317387,0.0,161863315.05904839,0.0,102715958.93657768,0.0,141745990.33785416,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,549028261.7551642,0.0,28186614.07570998,0.0 + 02/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75618922.60964336,0.0,155116311.862712,0.0,96012275.60014057,0.0,135595185.0347382,0.0,7062.695076511937,6952.127267544677,6961.085793117788,8379.618108636083,568022589.5921519,0.0,28186614.07570998,0.0 + 02/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87692787.69140491,0.0,153435273.23443423,0.0,91413345.46607799,0.0,132378673.77574891,0.0,11809.30164285525,11624.424822613306,11639.40408047762,14011.285610490764,641623978.3308389,0.0,28186614.07570998,0.0 + 02/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,121867385.4685333,0.0,166021320.93029604,0.0,96652249.35862565,0.0,141313531.41152597,0.0,11771.158460853228,11586.87877924113,11601.809655196314,13966.030181060138,701987644.6438439,0.0,35233267.594637479,0.0 + 02/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,155578312.91203345,0.0,185745674.59914089,0.0,110874152.17655571,0.0,159248752.87436203,0.0,16479.62184519452,16221.630290937579,16242.533517274838,19552.44225348419,858033313.0269002,0.0,14093307.03785499,0.0 + 02/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,142843078.83864308,0.0,171187317.45798404,0.0,97002489.67870848,0.0,142250648.08320344,0.0,16479.62184519452,16221.630290937579,16242.533517274838,19552.44225348419,799869954.5233471,0.0,63419881.67034747,0.0 + 02/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,129601255.83381063,0.0,156763417.27616994,0.0,82949589.68538727,0.0,125100465.57651814,0.0,9416.926768682582,9269.503023392905,9281.447724157051,11172.824144848108,635321254.3517763,0.0,63419881.67034747,69761869.8373822 + 02/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,132937002.30080177,0.0,158877651.99344645,0.0,85928704.6659417,0.0,128413462.60759402,0.0,9391.233764406763,9244.21224789205,9256.124358910587,11142.340376037118,646678900.2578714,0.0,49326574.63249246,69761869.8373822 + 02/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,135680685.77146704,0.0,160417337.53827564,0.0,88328439.52930466,0.0,131089432.34106745,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,585969158.1700599,0.0,35233267.594637479,69761869.8373822 + 02/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,138623104.17167903,0.0,162696930.4929592,0.0,91131706.02303931,0.0,134189965.82663968,0.0,4666.947776501762,4593.88583844238,4599.805529233392,5537.155388470631,596473766.8318505,0.0,35233267.594637479,62010550.96656194 + 02/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,142854522.41108085,0.0,166469025.6759043,0.0,94921527.76195586,0.0,138759922.58039094,0.0,2340.023579921375,2303.3900742467387,2306.3582274595426,2776.3486533852549,578019032.3553784,0.0,35233267.594637479,46507913.22492146 + 02/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,148145264.0807464,0.0,171533179.15784038,0.0,99673424.73757266,0.0,144671476.48358078,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,599569910.4068685,0.0,21139960.556782485,23253956.61246073 + 02/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101441732.08895853,0.0,122423312.58553826,0.0,58977417.85906261,0.0,93436222.7896823,0.0,1190.8806963429966,1172.2372368831726,1173.7477842106637,1412.9344875001066,394097966.06101468,0.0,14093307.03785499,0.0 + 02/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125670181.83831936,0.0,146500706.38956876,0.0,81110619.85908866,0.0,120764365.26867312,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,492070163.34673276,0.0,14093307.03785499,0.0 + 02/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125416461.68829523,0.0,145450781.9661724,0.0,81480005.45248397,0.0,120463271.92282389,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,490834811.0208583,0.0,14093307.03785499,0.0 + 02/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,125164401.51469705,0.0,144586366.69731499,0.0,81758337.89396855,0.0,120241285.16957091,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,489817752.10406,0.0,14093307.03785499,0.0 + 02/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,123174795.20486856,0.0,141863998.04087756,0.0,80531694.79630141,0.0,118219197.23287292,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,481949825.50518867,0.0,14093307.03785499,0.0 + 02/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,117378128.05211503,0.0,135529962.82465864,0.0,75461717.14877232,0.0,111517249.14486362,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,512887514.19118347,0.0,14093307.03785499,15502637.741640486 + 02/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,120481892.7471897,0.0,139677536.7583873,0.0,77974617.01211457,0.0,114662515.21580442,0.0,19514.779831931886,19209.272313184414,19234.02542120961,23153.541345645015,744798389.8165914,0.0,56373228.15141996,38756594.35410121 + 02/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,123945063.03269504,0.0,145273025.22898714,0.0,86073102.78309444,0.0,124002440.02254674,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,735465226.1050751,0.0,56373228.15141996,38756594.35410121 + 02/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,112083851.68726874,0.0,142272572.92072547,0.0,88654401.56988597,0.0,125968633.54935809,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,651959170.4684897,0.0,28186614.07570998,0.0 + 02/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81134607.1817252,0.0,128918458.2844196,0.0,81471780.14166136,0.0,116364092.4881046,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,554956180.2571588,0.0,28186614.07570998,0.0 + 02/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60898585.13986577,0.0,118410016.91467902,0.0,76444093.77200279,0.0,109137191.9318653,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,438927398.8246967,0.0,28186614.07570998,0.0 + 02/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70274771.75848979,0.0,115195481.72523844,0.0,74388469.72686583,0.0,104714728.46388319,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,438436551.27329817,0.0,28186614.07570998,0.0 + 02/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58901233.73071506,0.0,102131814.59386149,0.0,66341013.02332442,0.0,93699537.3327843,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,395873564.95452556,0.0,28186614.07570998,0.0 + 02/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62369530.28863305,0.0,98851844.2766233,0.0,60974949.51596463,0.0,87997819.58876868,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,422988263.09292748,0.0,28186614.07570998,0.0 + 02/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46774484.65799679,0.0,90305753.3253464,0.0,53103042.377822939,0.0,78518016.53646936,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,457043631.5120822,0.0,28186614.07570998,0.0 + 02/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,66697353.33781983,0.0,97804773.07617297,0.0,55196306.78639695,0.0,82546804.91446269,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,490587572.7292991,0.0,35233267.594637479,0.0 + 02/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90196678.9723829,0.0,112352482.84595548,0.0,65108737.94809356,0.0,95091748.07130179,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,626428916.2979591,0.0,14093307.03785499,0.0 + 02/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,83260382.12868308,0.0,105368554.00165928,0.0,55735038.910945508,0.0,84606998.05783832,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,589664155.9830545,0.0,63419881.67034747,0.0 + 02/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75425773.77513902,0.0,97253965.0604769,0.0,45852773.66629447,0.0,73216489.00921606,0.0,9915.041662468222,9759.819835593087,9772.39635961535,11763.81845211033,440108876.2263595,0.0,63419881.67034747,69761869.8373822 + 02/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,80839206.97892107,0.0,101610649.07026784,0.0,50049016.376610409,0.0,78270219.54816434,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,458844114.1065314,0.0,49326574.63249246,69761869.8373822 + 02/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,85382765.18220921,0.0,105147340.28683557,0.0,53888661.113206919,0.0,82718456.13574808,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,401000322.3168206,0.0,35233267.594637479,69761869.8373822 + 02/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,91215887.5375084,0.0,110896733.94733009,0.0,58008100.58504861,0.0,88258682.34477677,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,421913025.49528786,0.0,35233267.594637479,62010550.96656194 + 02/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92348243.77662821,0.0,111448220.4051381,0.0,59069445.05284067,0.0,89382963.29636033,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,389422521.4707935,0.0,35233267.594637479,46507913.22492146 + 02/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,97158262.03035602,0.0,115216459.82548683,0.0,64308492.12586619,0.0,95171006.78930119,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,409096104.0401428,0.0,21139960.556782485,23253956.61246073 + 02/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54167146.22820062,0.0,70655275.84156296,0.0,26589113.587726378,0.0,46248153.70777368,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,216320659.8215381,0.0,14093307.03785499,0.0 + 02/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82066585.2407731,0.0,98425186.40163204,0.0,51241113.43169135,0.0,78748342.23055287,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,329142197.76092389,0.0,14093307.03785499,0.0 + 02/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83017349.28572034,0.0,98697809.65214877,0.0,52782191.484040539,0.0,80101521.5946076,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,333298863.5849773,0.0,14093307.03785499,0.0 + 02/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82577832.41643594,0.0,97645622.2717649,0.0,52948791.20857784,0.0,79684775.16553064,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,331588750.7114695,0.0,14093307.03785499,0.0 + 02/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82514126.44863227,0.0,97035797.45344217,0.0,53277571.74892144,0.0,79595745.51204244,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,331154970.81219848,0.0,14093307.03785499,0.0 + 02/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78459805.39905896,0.0,92442276.40249363,0.0,49773523.70318213,0.0,74844760.92700899,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,370595840.5974989,0.0,14093307.03785499,15502637.741640486 + 02/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,79826925.9611845,0.0,94669521.49652964,0.0,50588082.95879088,0.0,75790016.77612706,0.0,20139.376343833253,19824.090650173595,19849.63601437921,23894.601264701363,602222282.5757468,0.0,56373228.15141996,38756594.35410121 + 02/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,85040846.16895415,0.0,102179029.01824326,0.0,59738170.42330627,0.0,86394326.55759889,0.0,17589.0072895276,17313.648099183978,17335.958501927096,20868.685735339546,596538650.8216242,0.0,56373228.15141996,38756594.35410121 + 02/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79324907.42877823,0.0,100415045.40729575,0.0,63517367.540507297,0.0,89874305.50821516,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,522091730.3445211,0.0,28186614.07570998,0.0 + 02/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72652230.20774699,0.0,91053741.5771612,0.0,58385614.08889785,0.0,82881465.26699491,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,456606073.3629732,0.0,28186614.07570998,0.0 + 02/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58451131.026888947,0.0,81800394.46079806,0.0,52953983.42095126,0.0,75431775.16896379,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,344783650.80119279,0.0,28186614.07570998,0.0 + 02/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35034820.4475339,0.0,73579794.09586728,0.0,47409076.86344776,0.0,66265790.96816169,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,298808392.3335631,0.0,28186614.07570998,0.0 + 02/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41756747.9509158,0.0,69685483.56206702,0.0,43288333.08545664,0.0,61895278.71641415,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,293307542.6524295,0.0,28186614.07570998,0.0 + 02/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29396225.37781242,0.0,62021064.19863764,0.0,38325789.02965524,0.0,55351766.55720301,0.0,7678.3694773040019,7558.163170738395,7567.90263542957,9110.092283439166,299987144.40418848,0.0,28186614.07570998,0.0 + 02/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37813275.845170009,0.0,64640730.98256993,0.0,38002501.92208588,0.0,56203702.39734431,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,388147376.5486369,0.0,28186614.07570998,0.0 + 02/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46586208.98547066,0.0,70064575.13959104,0.0,38903243.47074534,0.0,58781379.133134279,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,405394095.49783089,0.0,35233267.594637479,0.0 + 02/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68008169.82961883,0.0,85816957.24742209,0.0,49764317.53500974,0.0,72863888.42826551,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,542572584.8737547,0.0,14093307.03785499,0.0 + 02/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,55385189.84023176,0.0,72568371.59114626,0.0,36611996.16341348,0.0,56914682.93884662,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,487992524.06620576,0.0,63419881.67034747,0.0 + 02/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,44085835.87964563,0.0,61148396.40120068,0.0,23828369.467340694,0.0,41872666.11650197,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,323003411.769511,0.0,63419881.67034747,69761869.8373822 + 02/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,48437801.99367074,0.0,64761863.5562767,0.0,27307819.049421498,0.0,46104024.24245508,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,338485599.5522249,0.0,49326574.63249246,69761869.8373822 + 02/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54184559.53561272,0.0,70086337.90941888,0.0,31932892.725541694,0.0,51907960.61464895,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,283803291.76813825,0.0,35233267.594637479,69761869.8373822 + 02/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,58139811.289248559,0.0,73774373.50268266,0.0,34770051.11830251,0.0,55555315.2169519,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,297931092.11010166,0.0,35233267.594637479,62010550.96656194 + 02/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,65563123.56265119,0.0,81111821.04462885,0.0,40857598.47628087,0.0,63299154.503631588,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,288429737.3948384,0.0,35233267.594637479,46507913.22492146 + 02/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,76781501.64832461,0.0,92170036.35015968,0.0,50967613.27608684,0.0,75809149.43550805,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,333266037.79295679,0.0,21139960.556782485,23253956.61246073 + 02/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37488533.62181332,0.0,52012449.51616937,0.0,17265264.989098349,0.0,32882537.024560565,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,158380514.8008017,0.0,14093307.03785499,0.0 + 02/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69643471.40847376,0.0,84212671.72718965,0.0,44303524.767922539,0.0,67808584.30540793,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,284555076.67890706,0.0,14093307.03785499,0.0 + 02/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74756359.2345049,0.0,88859783.4323739,0.0,48807640.44597655,0.0,73212629.3234467,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,304181396.7757062,0.0,14093307.03785499,0.0 + 02/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76429245.72123377,0.0,90089658.6103025,0.0,50667640.47559692,0.0,75063841.82876767,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,310795370.97530499,0.0,14093307.03785499,0.0 + 02/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79173819.49785401,0.0,92890128.57559102,0.0,52507237.16760932,0.0,77475184.77411145,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,320591354.3545699,0.0,14093307.03785499,0.0 + 02/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73746349.95009236,0.0,87142973.85013592,0.0,47705665.82348964,0.0,71259164.85147596,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,354654120.74903419,0.0,14093307.03785499,15502637.741640486 + 02/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,72224640.0964606,0.0,89854995.6880159,0.0,48359226.69596282,0.0,72336483.52661523,0.0,19874.82282210369,19563.678763179127,19588.88856008866,23580.718609798,580164537.5256646,0.0,56373228.15141996,38756594.35410121 + 02/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65432033.847567047,0.0,92303488.61392054,0.0,52792551.67609125,0.0,77257786.6757506,0.0,17589.0072895276,17313.648099183978,17335.958501927096,20868.685735339546,550972139.466851,0.0,56373228.15141996,38756594.35410121 + 02/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62641537.07093053,0.0,88908878.89258993,0.0,55762792.81564311,0.0,79430272.43315476,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,476586094.60031947,0.0,28186614.07570998,0.0 + 02/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60388265.76532636,0.0,80077164.54906157,0.0,50770549.268433008,0.0,72719149.9997979,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,416428073.063126,0.0,28186614.07570998,0.0 + 02/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54779103.20785388,0.0,73465877.50955723,0.0,46383639.46048694,0.0,66996009.883548069,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,318143540.01999858,0.0,28186614.07570998,0.0 + 02/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45637991.72479638,0.0,69967877.76107894,0.0,43888411.4813899,0.0,62727841.77143209,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,298816988.899284,0.0,28186614.07570998,0.0 + 02/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11510080.407995884,0.0,60005501.40284703,0.0,38795844.12248026,0.0,53828518.41206962,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,240821643.68296869,0.0,28186614.07570998,0.0 + 02/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,47713567.6033514,0.0,30059515.79576546,0.0,42807491.7754419,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,235726271.8443779,0.0,28186614.07570998,0.0 + 02/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1037895.3440718149,0.0,48335756.70886879,0.0,27720267.958433644,0.0,42050347.86490378,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,310631433.2777449,0.0,28186614.07570998,0.0 + 02/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31951627.413331059,0.0,59555209.81331899,0.0,32038427.30509205,0.0,49516853.817871119,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,364549283.75108006,0.0,35233267.594637479,0.0 + 02/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58553721.215076338,0.0,78586929.17098743,0.0,44633726.13794146,0.0,65906900.041211549,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,514872664.9272405,0.0,14093307.03785499,0.0 + 02/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49009102.44679973,0.0,68196411.14382085,0.0,33420254.60402187,0.0,52586417.18554273,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,469724468.9127527,0.0,63419881.67034747,0.0 + 02/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41610954.18032625,0.0,60293922.24775835,0.0,23999032.702718118,0.0,41614736.63707347,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,318686729.3356559,0.0,63419881.67034747,69761869.8373822 + 02/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46406184.77098801,0.0,64250641.354526508,0.0,27507170.086929226,0.0,46003800.557080987,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,335800818.991697,0.0,49326574.63249246,69761869.8373822 + 02/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49848728.35434827,0.0,67006848.90308211,0.0,30001271.32602948,0.0,49141418.84507358,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,271814778.53961959,0.0,35233267.594637479,69761869.8373822 + 02/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52964837.09744519,0.0,69752679.94973062,0.0,32129825.753535697,0.0,51943320.50411122,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,282607174.4159089,0.0,35233267.594637479,62010550.96656194 + 02/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,58216664.426237788,0.0,74612056.09565848,0.0,36429880.39941547,0.0,57328877.09951296,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,264433248.5122827,0.0,35233267.594637479,46507913.22492146 + 02/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,67716061.27314435,0.0,83658186.65932419,0.0,45001252.29215541,0.0,67800094.37155193,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,302021365.0876339,0.0,21139960.556782485,23253956.61246073 + 02/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33117436.061363408,0.0,46150034.9216083,0.0,13101330.46219364,0.0,29890306.92107535,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,141213236.1440122,0.0,14093307.03785499,0.0 + 02/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60687582.57819197,0.0,74955830.033027,0.0,38544329.28704819,0.0,59435037.98457604,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,252322771.45130325,0.0,14093307.03785499,0.0 + 02/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69608523.30823326,0.0,83919885.47056833,0.0,45939413.3503691,0.0,69036947.00036651,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,287049753.46894136,0.0,14093307.03785499,0.0 + 02/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76043527.57168488,0.0,90370290.8286447,0.0,51194473.836069259,0.0,75553167.28863442,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,311590179.77959707,0.0,14093307.03785499,0.0 + 02/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78389142.20844116,0.0,92504449.24927661,0.0,53123308.70685624,0.0,77792594.6374152,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,320275269.7016944,0.0,14093307.03785499,0.0 + 02/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73105438.232306,0.0,86927460.78204882,0.0,48276832.63147504,0.0,71597650.10576728,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,354391148.2898624,0.0,14093307.03785499,15502637.741640486 + 02/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,55710850.18779846,0.0,79198868.36460456,0.0,40691773.138723138,0.0,62205258.09616631,0.0,20029.769395586467,19716.199619148774,19741.60595474871,23764.55680456099,537514424.1738542,0.0,56373228.15141996,38756594.35410121 + 02/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,28057109.20711691,0.0,69652969.36971689,0.0,37421368.471549119,0.0,55324861.83983008,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,454135577.3484383,0.0,56373228.15141996,38756594.35410121 + 02/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4707235.768986266,0.0,69475220.49455874,0.0,41817589.03921214,0.0,61751945.45955815,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,366980843.21960529,0.0,28186614.07570998,0.0 + 02/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,536337.8561380347,67422347.50679535,0.0,41534460.082617137,0.0,60854529.8607979,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,321879481.35503247,536337.8561380347,28186614.07570998,0.0 + 02/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21075080.61584215,61751258.27480615,0.0,39244384.52489913,0.0,57130964.81006304,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,234808306.94734425,21075080.61584215,28186614.07570998,0.0 + 02/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33265406.895276205,55634309.70567472,0.0,35096906.11153528,0.0,46643820.06176598,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,214138833.65885539,33265406.895276205,28186614.07570998,0.0 + 02/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39693335.39425905,43590713.986819598,0.0,28605058.21137295,0.0,37805205.448189448,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,186829553.47520567,39693335.39425905,28186614.07570998,0.0 + 02/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38602320.84983236,34799685.07710894,0.0,20917250.828650837,0.0,29813700.700272737,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,200883518.79359073,38602320.84983236,28186614.07570998,0.0 + 02/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21542956.65939722,34963520.440025057,0.0,18219764.61981158,0.0,29038723.75247119,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,273926257.15624758,21542956.65939722,28186614.07570998,0.0 + 02/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,193701.16285827827,1078926.078994412,47285465.04061111,0.0,23547962.72615043,0.0,37955400.36320611,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,300279804.1892071,1078926.078994412,35233267.594637479,0.0 + 02/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35967026.907113138,0.0,71270388.1687006,0.0,39121961.0541125,0.0,58832670.183554518,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,471704329.8460483,0.0,14093307.03785499,0.0 + 02/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,32081010.69523058,0.0,62252008.5021227,0.0,29098145.127526244,0.0,46968771.39994375,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,436179594.46802476,0.0,63419881.67034747,0.0 + 02/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,26469297.05048327,0.0,54838344.892870198,0.0,19741631.42222797,0.0,36170659.41561501,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,288388016.34897628,0.0,63419881.67034747,69761869.8373822 + 02/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,33021615.132857078,0.0,60163619.86912335,0.0,23526898.4443172,0.0,41380966.484853658,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,309726122.15332356,0.0,49326574.63249246,69761869.8373822 + 02/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38225855.07826153,0.0,63841455.7222434,0.0,26373122.601413449,0.0,45201912.35282457,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,249579391.1099434,0.0,35233267.594637479,69761869.8373822 + 02/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42877958.14856156,0.0,66938828.97464597,0.0,28605913.836824344,0.0,48185719.6812176,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,262642492.5936605,0.0,35233267.594637479,62010550.96656194 + 02/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49862268.89431518,0.0,72337476.46859902,0.0,33323848.17060002,0.0,54029717.597261,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,247521833.80837543,0.0,35233267.594637479,46507913.22492146 + 02/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,62788683.19318228,0.0,84022291.6148706,0.0,43868814.00464678,0.0,67061937.77635691,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,295587497.0805145,0.0,21139960.556782485,23253956.61246073 + 02/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32803462.530984954,0.0,50447274.31404206,0.0,15103076.255720936,0.0,32734172.6484638,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,149983996.19518424,0.0,14093307.03785499,0.0 + 02/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57761070.88996746,0.0,76209190.36948462,0.0,37463568.615513939,0.0,59283555.4824483,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,249580148.4600402,0.0,14093307.03785499,0.0 + 02/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62460204.779392037,0.0,79853232.07489413,0.0,40956884.80314246,0.0,63522515.45138411,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,265627070.57025744,0.0,14093307.03785499,0.0 + 02/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66183730.81813508,0.0,82623808.38187707,0.0,43847918.98165029,0.0,66678274.45277258,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,278132752.53825798,0.0,14093307.03785499,0.0 + 02/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69374827.0583741,0.0,85104499.13632122,0.0,46237929.10484903,0.0,69379748.55504014,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,288865872.3960233,0.0,14093307.03785499,0.0 + 02/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68773650.73456082,0.0,84296942.00277801,0.0,44818459.65414196,0.0,67800119.57970065,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,284458040.51262018,0.0,14093307.03785499,15502637.741640486 + 02/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,54993780.31181235,0.0,81470487.8876918,0.0,40438725.23835926,0.0,62780956.49225743,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,314759424.095876,0.0,56373228.15141996,38756594.35410121 + 02/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,32402877.15200514,0.0,77786366.86608286,0.0,39871779.351156,0.0,60586581.29422554,0.0,12563.576635376856,12366.891499417125,12382.827501376501,14906.204096671105,398637803.70169928,0.0,56373228.15141996,38756594.35410121 + 02/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31469819.162426674,0.0,88873216.10573477,0.0,51084280.8059586,0.0,75583202.31200922,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,435638149.4123884,0.0,28186614.07570998,0.0 + 02/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36023099.871959608,0.0,92255678.07925734,0.0,54122517.27897727,0.0,79480413.91471705,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,450841813.60463598,0.0,28186614.07570998,0.0 + 02/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15451434.23587305,0.0,87518078.03796682,0.0,53524444.01846624,0.0,77934977.87237805,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,347966245.6390582,0.0,28186614.07570998,0.0 + 02/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9683427.783037087,0.0,83576733.63503319,0.0,51556649.960298348,0.0,71639741.81018238,0.0,7600.3420852062,7481.357312019881,7490.997804522686,9017.51576120379,330181319.85518017,0.0,28186614.07570998,0.0 + 02/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45334375.440347608,0.0,80914347.73868799,0.0,49032158.905245337,0.0,70921519.99381927,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,360107970.1109008,0.0,28186614.07570998,0.0 + 02/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33280800.27140431,0.0,73702344.96057569,0.0,44216247.66394959,0.0,64461938.24694133,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,329712439.0714874,0.0,28186614.07570998,0.0 + 02/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45175851.88647272,0.0,78076735.06247431,0.0,44899553.95961759,0.0,66626793.212977129,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,500898185.95498028,0.0,28186614.07570998,0.0 + 02/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55093163.70475894,0.0,81812486.26646236,0.0,45299245.569210398,0.0,68046537.39490018,0.0,22900.22689636374,22541.71957226805,22570.766878722407,27170.245057134216,592910083.1914902,0.0,35233267.594637479,0.0 + 02/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68496596.18778126,0.0,90304113.36662799,0.0,51173098.607544969,0.0,75488674.09297534,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,551974765.787497,0.0,14093307.03785499,0.0 + 02/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,58393638.71438998,0.0,78844202.76551809,0.0,39669601.90117061,0.0,61557613.28245873,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,504977340.196105,0.0,63419881.67034747,0.0 + 02/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,46144115.66477686,0.0,65692872.687291059,0.0,26099847.923888696,0.0,45278025.31742662,0.0,15266.817930909157,15027.813048178701,15047.177919148273,18113.496704756148,411653961.7641554,0.0,63419881.67034747,69761869.8373822 + 02/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,50108376.1875982,0.0,68627091.8589967,0.0,28833513.460775664,0.0,48650680.09520809,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,386585578.41155549,0.0,49326574.63249246,69761869.8373822 + 02/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53857581.593628797,0.0,71339846.80265862,0.0,31629894.31474258,0.0,51990854.98319785,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,361110911.1414094,0.0,35233267.594637479,69761869.8373822 + 02/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53527876.07238482,0.0,69881735.44657906,0.0,31288291.35958036,0.0,51159967.75435575,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,320493083.89423379,0.0,35233267.594637479,62010550.96656194 + 02/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54105421.87052751,0.0,69449456.56483764,0.0,32082634.668934488,0.0,51698043.141138467,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,283930422.4060248,0.0,35233267.594637479,46507913.22492146 + 02/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,63846141.9079351,0.0,78791082.93917299,0.0,40904399.18348849,0.0,62520646.98274299,0.0,2550.953264868551,2511.0176156271725,2514.253318119148,3026.6086728940088,284232469.35077157,0.0,21139960.556782485,23253956.61246073 + 02/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32566693.922939674,0.0,45110967.071884158,0.0,11520103.166150649,0.0,28510144.05660436,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,136744499.89847655,0.0,14093307.03785499,0.0 + 02/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54244408.69467501,0.0,67611141.0446196,0.0,32553682.243621727,0.0,51646353.17478112,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,225114703.0927609,0.0,14093307.03785499,0.0 + 02/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55488951.539191368,0.0,68218502.3940438,0.0,33742049.276857528,0.0,53179844.975325677,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,229688466.1204818,0.0,14093307.03785499,0.0 + 02/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56673700.06295414,0.0,68912744.61244342,0.0,35003433.036859538,0.0,54329043.65453045,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,233978039.30185098,0.0,14093307.03785499,0.0 + 02/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57334708.785820309,0.0,69046887.86812453,0.0,35772896.30540497,0.0,54885013.019249949,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,236098623.91366319,0.0,14093307.03785499,0.0 + 02/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52149789.755076978,0.0,63264604.10249081,0.0,31265231.873568294,0.0,48889828.326540749,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,214699181.54731495,0.0,14093307.03785499,15502637.741640486 + 02/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46501170.30584818,0.0,58326392.74456085,0.0,30942476.924809189,0.0,44371036.55343975,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,199380918.7592946,0.0,56373228.15141996,38756594.35410121 + 02/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,48036505.01923935,0.0,60969528.70633425,0.0,34391282.93459325,0.0,48185700.60806477,0.0,5147.584189324726,5066.997798559966,5073.527142401123,6107.4121452652739,268606893.86021557,0.0,56373228.15141996,38756594.35410121 + 02/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54071505.37988399,0.0,67666163.81475005,0.0,41348292.07848991,0.0,59932882.26950755,0.0,7687.074201905429,7566.731621252323,7576.482127266549,9120.420106898993,338041392.5489953,0.0,28186614.07570998,0.0 + 02/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56333466.7312516,0.0,68155162.52479452,0.0,41613595.67869676,0.0,60160663.28214486,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,341505751.9601232,0.0,28186614.07570998,0.0 + 02/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44612684.594067808,0.0,59195047.26014956,0.0,37490213.65976118,0.0,54271770.80412036,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,272333514.0979783,0.0,28186614.07570998,0.0 + 02/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51490860.62758818,0.0,63594178.60857773,0.0,38595417.07213426,0.0,56263152.09371796,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,286707406.1818975,0.0,28186614.07570998,0.0 + 02/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45422007.5891914,0.0,60065679.10614106,0.0,36946088.026317868,0.0,53958937.545464787,0.0,7687.074201905429,7566.731621252323,7576.482127266549,9120.420106898993,311415261.273479,0.0,28186614.07570998,0.0 + 02/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49723622.26096946,0.0,63765848.522957969,0.0,37931096.69906501,0.0,55979774.3790733,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,360763740.5372176,0.0,28186614.07570998,0.0 + 02/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59934732.6663178,0.0,71965863.36721255,0.0,41024589.96047439,0.0,60878406.625824358,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,425507840.96376886,0.0,28186614.07570998,0.0 + 02/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61643604.71382329,0.0,73425666.52962905,0.0,40521327.56586081,0.0,60619601.85943596,0.0,15390.608571577086,15149.665723273849,15169.187613852526,18260.369574529384,466501594.0083873,0.0,35233267.594637479,0.0 + 02/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65516927.120411369,0.0,77101209.02577767,0.0,43248044.207201469,0.0,64080188.918969709,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,518619661.5019381,0.0,14093307.03785499,0.0 + 02/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52666803.89962347,0.0,64102062.10831669,0.0,30467360.38538649,0.0,48535508.32895046,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,349575577.63902148,0.0,63419881.67034747,0.0 + 02/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37194078.948592837,0.0,48532164.656726438,0.0,15306617.890858215,0.0,30051570.917578624,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,246523485.79757584,0.0,63419881.67034747,69761869.8373822 + 02/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,41433574.880945678,0.0,52807593.680150087,0.0,18741748.58203076,0.0,34529185.43429501,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,224340678.40624524,0.0,49326574.63249246,69761869.8373822 + 02/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45757908.89450537,0.0,57185214.24973828,0.0,22298546.915422616,0.0,39140520.6424179,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,241210766.5309078,0.0,35233267.594637479,69761869.8373822 + 02/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50709506.06060025,0.0,62476443.53269413,0.0,25212056.09310419,0.0,43530086.12545121,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,258756667.64067347,0.0,35233267.594637479,62010550.96656194 + 02/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55867236.36728782,0.0,67669200.67810482,0.0,29209988.064917923,0.0,48760812.89022201,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,278335813.82935628,0.0,35233267.594637479,46507913.22492146 + 02/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,63617989.39514689,0.0,75125122.6381333,0.0,36622463.92458263,0.0,57706124.42522381,0.0,2569.716901713348,2529.487504236811,2532.747007065442,3048.8710117583088,271522661.1122727,0.0,21139960.556782485,23253956.61246073 + 02/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28758659.483125949,0.0,38480530.580429319,0.0,5934964.598790341,0.0,19553468.81667441,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,111953103.84361306,0.0,14093307.03785499,0.0 + 02/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48135386.77312588,0.0,57968969.896953139,0.0,24438989.85629846,0.0,41982523.30799672,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,191751350.19896729,0.0,14093307.03785499,0.0 + 02/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48916972.2490681,0.0,58280420.348645698,0.0,26025842.80488687,0.0,43231343.17543881,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,195680058.9426325,0.0,14093307.03785499,0.0 + 02/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49259927.53501525,0.0,58351889.70941203,0.0,26979029.14410489,0.0,43897885.7224722,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,197714212.47559745,0.0,14093307.03785499,0.0 + 02/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49509374.104436669,0.0,58438259.01463762,0.0,27624712.04891942,0.0,44351845.28964051,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,199149670.82222728,0.0,14093307.03785499,0.0 + 02/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46569908.9785668,0.0,55463506.401044968,0.0,24978401.33349254,0.0,40948185.942069318,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,244861924.11354579,0.0,14093307.03785499,15502637.741640486 + 02/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,49377084.65233644,0.0,59620327.660629939,0.0,30728610.993516119,0.0,44533334.76062245,0.0,20557.735213706783,20235.90003389449,20261.976056523537,24390.96809406647,491867043.9005936,0.0,56373228.15141996,38756594.35410121 + 02/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,61988664.98630655,0.0,72847262.96705973,0.0,38729863.385419469,0.0,57993770.580949019,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,500716287.02403727,0.0,56373228.15141996,38756594.35410121 + 02/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62916813.427340257,0.0,74518525.06788127,0.0,44678942.56229022,0.0,64829682.995212707,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,439342386.3590907,0.0,28186614.07570998,0.0 + 02/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52796377.76219389,0.0,65442848.930796679,0.0,40174725.841908279,0.0,58255556.73090473,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,370717262.4497714,0.0,28186614.07570998,0.0 + 02/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46573727.05325255,0.0,58968671.35039109,0.0,37131211.38086003,0.0,53677069.24736002,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,273374555.6238476,0.0,28186614.07570998,0.0 + 02/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46080362.58985914,0.0,57993070.07281871,0.0,36090922.6119795,0.0,52217636.452131759,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,269405868.31877306,0.0,28186614.07570998,0.0 + 02/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47926430.76539053,0.0,61103226.337179478,0.0,36829977.81412023,0.0,54048192.765083719,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,276867196.60432049,0.0,28186614.07570998,0.0 + 02/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59534384.573546718,0.0,70895791.05499545,0.0,40734802.904219929,0.0,60387107.459603939,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,346904968.17992427,0.0,28186614.07570998,0.0 + 02/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65138624.41774562,0.0,76011001.07773498,0.0,42989777.67371154,0.0,63767552.37705007,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,440161759.1921725,0.0,28186614.07570998,0.0 + 02/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72279697.78839502,0.0,83610256.60738793,0.0,46573380.57163669,0.0,69190471.76691297,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,462951081.6307137,0.0,35233267.594637479,0.0 + 02/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82363074.54371612,0.0,93966202.3584054,0.0,54055737.373790938,0.0,78950957.29316102,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,575848255.101641,0.0,14093307.03785499,0.0 + 02/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,74013421.27893754,0.0,85879170.57083953,0.0,44357948.76112376,0.0,67677442.19124784,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,536848376.24235466,0.0,63419881.67034747,0.0 + 02/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,65427392.81046466,0.0,78090643.03672374,0.0,33988729.63381702,0.0,56016134.067502129,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,384425004.3695148,0.0,63419881.67034747,69761869.8373822 + 02/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,71738823.71083066,0.0,84713645.24224735,0.0,38758727.538536939,0.0,62434797.212056498,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,408319861.39522877,0.0,49326574.63249246,69761869.8373822 + 02/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77640613.04186155,0.0,90873887.50118444,0.0,43400699.65683417,0.0,68586175.71558666,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,355697455.53075876,0.0,35233267.594637479,69761869.8373822 + 02/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,82119280.46797294,0.0,95626796.57146448,0.0,46799492.407990608,0.0,73157839.17748057,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,372778882.7906638,0.0,35233267.594637479,62010550.96656194 + 02/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,89023662.81214084,0.0,102849368.09737413,0.0,52478653.24343918,0.0,80535466.28985074,0.0,2499.478997875543,2460.349187886455,2463.5195989376677,2965.5364200003725,362287133.57972499,0.0,35233267.594637479,46507913.22492146 + 02/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,100290230.33315848,0.0,114340103.11946969,0.0,62542316.69747071,0.0,93148916.89725185,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,407643507.95989969,0.0,21139960.556782485,23253956.61246073 + 02/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61585223.650090787,0.0,74633839.1407057,0.0,29757855.96717184,0.0,49930957.470665138,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,234494700.69854663,0.0,14093307.03785499,0.0 + 02/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92590440.72411016,0.0,106526378.71196726,0.0,55417730.1881964,0.0,85179117.8156665,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,358223045.20651128,0.0,14093307.03785499,0.0 + 02/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96591159.10454123,0.0,111867626.58530271,0.0,60057934.95184078,0.0,90404681.54965802,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,377387177.09104797,0.0,14093307.03785499,0.0 + 02/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100608558.74822997,0.0,116352556.00735052,0.0,63672022.90107754,0.0,94793950.70722471,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,393810493.6340387,0.0,14093307.03785499,0.0 + 02/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102973033.14547526,0.0,119026852.48662865,0.0,65864576.033686939,0.0,97410534.22513226,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,403658401.16107907,0.0,14093307.03785499,0.0 + 02/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100863573.45132181,0.0,117140961.036357,0.0,63789559.23013373,0.0,94846140.55084084,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,450173855.3492774,0.0,14093307.03785499,15502637.741640486 + 02/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,106827983.06242839,0.0,124503151.51717659,0.0,67822556.28709436,0.0,100390965.09680046,0.0,19657.307422400438,19349.568607635683,19374.502501756026,23322.64489112335,693679140.2859956,0.0,56373228.15141996,38756594.35410121 + 02/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,116537119.76787831,0.0,136389757.35435204,0.0,79122013.9437242,0.0,113995210.96164486,0.0,17200.143994600385,16930.87253168122,16952.689689036524,20407.314279732927,703411775.8097832,0.0,56373228.15141996,38756594.35410121 + 02/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,101859301.96169088,0.0,132496859.808717,0.0,81033269.34151657,0.0,115406700.9622032,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,615083334.6197656,0.0,28186614.07570998,0.0 + 02/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54178265.856455188,0.0,115476568.9341355,0.0,72274099.2962679,0.0,103433549.57983732,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,492792245.70320627,0.0,28186614.07570998,0.0 + 02/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45066559.19772792,0.0,116789009.43319151,0.0,74472224.48231346,0.0,106095767.8130601,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,416138441.9445482,0.0,28186614.07570998,0.0 + 02/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40806446.58266848,0.0,120683109.13684277,0.0,76639047.80501396,0.0,105278721.46402546,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,416940946.06917467,0.0,28186614.07570998,0.0 + 02/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36734237.430185239,0.0,115234501.38344953,0.0,73536299.2622123,0.0,101297253.11580162,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,400182073.4702621,0.0,28186614.07570998,0.0 + 02/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40795324.70939809,0.0,111253762.8532802,0.0,67887642.89553474,0.0,96685269.08853634,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,426691672.96466967,0.0,28186614.07570998,0.0 + 02/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56370506.39558782,0.0,111501565.61353615,0.0,64376181.754803728,0.0,95174467.69528988,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,510872177.1557512,0.0,28186614.07570998,0.0 + 02/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,81902076.19218117,0.0,118951068.253328,0.0,65966037.414953049,0.0,99386470.42143958,0.0,12285.817139000274,12093.4803797723,12109.06406359752,14576.653056952093,550039704.9834616,0.0,35233267.594637479,0.0 + 02/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,117829296.86493534,0.0,142424251.3107432,0.0,83486758.63038373,0.0,121004259.02648627,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,720916160.8703004,0.0,14093307.03785499,0.0 + 02/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,106780675.88261643,0.0,130461257.64135523,0.0,71001652.71240029,0.0,105948933.64489326,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,670364114.919017,0.0,63419881.67034747,0.0 + 02/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,95645934.52605325,0.0,118728437.67053509,0.0,58398455.62815908,0.0,90931668.68408689,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,509705410.55038198,0.0,63419881.67034747,69761869.8373822 + 02/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,100636607.39125166,0.0,122282530.78223282,0.0,61937255.38571891,0.0,95292273.88883898,0.0,9757.389915965943,9604.636156592207,9617.012710604806,11576.770672822508,526149581.48959007,0.0,49326574.63249246,69761869.8373822 + 02/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,104166666.88968034,0.0,125236706.70793088,0.0,64613728.870370689,0.0,98607774.49066049,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,465816761.2551429,0.0,35233267.594637479,69761869.8373822 + 02/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,105518261.95254644,0.0,126304257.19933626,0.0,65916223.421482559,0.0,100071822.43125701,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,471002449.3011228,0.0,35233267.594637479,62010550.96656194 + 02/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,109224505.74295144,0.0,129436964.08423019,0.0,69290598.40326737,0.0,104083431.74634233,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,448631442.12504157,0.0,35233267.594637479,46507913.22492146 + 02/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,118648262.6377227,0.0,138368097.4572568,0.0,78038020.65737888,0.0,114816813.39232034,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,486371422.65506568,0.0,21139960.556782485,23253956.61246073 + 02/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79528609.7215679,0.0,97783666.07351394,0.0,42639579.312326449,0.0,70722801.43936897,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873273,308792965.69609358,0.0,14093307.03785499,0.0 + 02/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,110065902.2279511,0.0,128521984.41181156,0.0,70062003.00516384,0.0,105341782.3581291,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,432109981.15237197,0.0,14093307.03785499,0.0 + 02/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,114580058.89475909,0.0,132932225.50654662,0.0,74580744.29841557,0.0,110453778.78002268,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,450518691.2377905,0.0,14093307.03785499,0.0 + 02/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118575352.02015352,0.0,136997011.39977927,0.0,78093298.22095625,0.0,114714451.16866993,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,466307735.97488477,0.0,14093307.03785499,0.0 + 02/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,121686170.17511913,0.0,140183943.33591197,0.0,80648088.58995539,0.0,117885190.70849441,0.0,1194.5256013942656,1175.8250802659075,1177.3402508958009,1417.259028208858,478277212.6682342,0.0,14093307.03785499,0.0 + 02/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,121690205.67268543,0.0,140330598.19583614,0.0,79912983.2826583,0.0,117184997.27119524,0.0,4763.522785371986,4688.94894753269,4694.991136842655,5651.737950000426,530395907.3734671,0.0,14093307.03785499,15502637.741640486 + 02/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,107835894.08672035,0.0,136243529.48771299,0.0,74855035.15850692,0.0,111335935.23072756,0.0,19054.091141487945,18755.79579013076,18779.96454737062,22606.951800001705,715378885.7680354,0.0,56373228.15141996,38756594.35410121 + 02/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,106630168.28881957,0.0,145216944.35699374,0.0,84417287.99175492,0.0,122994498.3482898,0.0,16672.32974880195,16411.32131636441,16432.46897894929,19781.08282500149,708728829.3146798,0.0,56373228.15141996,38756594.35410121 + 02/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,76642296.73665594,0.0,141715638.37152113,0.0,86270836.92630856,0.0,124290151.1738131,0.0,11908.806963429963,11722.372368831724,11737.477842106638,14129.344875001067,607111730.5860286,0.0,28186614.07570998,0.0 + 02/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58136617.130480129,0.0,141796476.66130979,0.0,87433791.65227136,0.0,125590997.36761266,0.0,9556.204811154124,9406.60064212726,9418.722007166407,11338.072225670863,555948441.6817012,0.0,28186614.07570998,0.0 + 02/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52563480.7153961,0.0,145040358.25364167,0.0,90865356.13911069,0.0,129811112.74167013,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,489990800.5111216,0.0,28186614.07570998,0.0 + 02/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47731923.86754589,0.0,144465809.04381234,0.0,90276256.66951964,0.0,124528777.02947837,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,478890301.64254257,0.0,28186614.07570998,0.0 + 02/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47113204.14750211,0.0,134150499.23348755,0.0,85018661.98437801,0.0,117771231.14995632,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,455941131.5475103,0.0,28186614.07570998,0.0 + 02/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52623365.1150811,0.0,128571570.3344138,0.0,78779743.257486,0.0,112344069.13707693,0.0,7206.475870491073,7093.657146371787,7102.798047639422,8550.208532242006,480150050.3923373,0.0,28186614.07570998,0.0 + 02/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69011623.54271364,0.0,129794896.78668109,0.0,76210365.11632954,0.0,111847092.09002145,0.0,11981.213312185679,11793.645182690276,11808.842498260512,14215.25224387947,566140209.1890031,0.0,28186614.07570998,0.0 + 02/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,96486941.74179745,0.0,140289677.61041088,0.0,79319148.01145104,0.0,118293865.02676022,0.0,11981.213312185679,11793.645182690276,11808.842498260512,14215.25224387947,613665864.0436769,0.0,35233267.594637479,0.0 + 02/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,133677689.91295591,0.0,166284106.5635765,0.0,97433732.49319892,0.0,141063182.88511086,0.0,16723.358419519715,16461.5511237227,16482.763512541213,19841.626394924006,788692189.8773897,0.0,14093307.03785499,0.0 + 02/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,124617736.30716029,0.0,154875745.20269657,0.0,85791343.50603438,0.0,127020376.22701434,0.0,16672.32974880195,16411.32131636441,16432.46897894929,19781.08282500149,741775131.5717273,0.0,63419881.67034747,0.0 + 02/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,114013153.8791113,0.0,142596690.61988176,0.0,73467647.58681864,0.0,112115794.73424813,0.0,9502.452950973351,9353.690277345017,9365.743461978695,11274.29769540102,584379550.6085729,0.0,63419881.67034747,69761869.8373822 + 02/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,117411698.96528964,0.0,144453821.19016654,0.0,75759857.1157933,0.0,114938453.19100614,0.0,9556.204811154124,9406.60064212726,9418.722007166407,11338.072225670863,595554389.3322828,0.0,49326574.63249246,69761869.8373822 + 02/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,119742213.52375017,0.0,145581627.0708017,0.0,77460511.06515837,0.0,116777002.72043951,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,531271847.0414527,0.0,35233267.594637479,69761869.8373822 + 02/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,123099543.6036641,0.0,147771943.75664646,0.0,80109637.12941076,0.0,119739806.01689463,0.0,4763.522785371986,4688.94894753269,4694.991136842655,5651.737950000426,541998053.4577078,0.0,35233267.594637479,62010550.96656194 + 02/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,128653407.10755503,0.0,152727355.96573044,0.0,84966779.86210391,0.0,125598562.18272592,0.0,2375.613237743338,2338.422569336254,2341.4358654946738,2818.574423850255,527492671.0652437,0.0,35233267.594637479,46507913.22492146 + 02/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,138191849.51257918,0.0,161683717.66035215,0.0,93947603.85477296,0.0,136388964.59548263,0.0,2368.1496822499796,2331.0758571964695,2334.079686366433,2809.7192001588134,565647023.556685,0.0,21139960.556782485,23253956.61246073 + 02/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96425250.2967568,0.0,117760021.16279367,0.0,56997548.873781148,0.0,89937504.55767499,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,378893607.86457076,0.0,14093307.03785499,0.0 + 02/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,124979822.92649994,0.0,146618481.58841167,0.0,81889401.66310314,0.0,121559849.18191698,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,492820838.33349588,0.0,14093307.03785499,0.0 + 02/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,126761880.3112139,0.0,147706341.01363046,0.0,84052693.8541585,0.0,123503320.41647461,0.0,1187.806618871669,1169.211284668127,1170.7179327473369,1409.2872119251275,499797518.5690416,0.0,14093307.03785499,0.0 + 02/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,128343211.92327315,0.0,148800055.9306312,0.0,85915497.84459469,0.0,125289302.1246106,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,506065511.7898587,0.0,14093307.03785499,0.0 + 02/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,128878255.16635794,0.0,148866874.13671629,0.0,86915618.7170779,0.0,126027755.78618063,0.0,1184.0748411249898,1165.5379285982347,1167.0398431832167,1404.8596000794067,508405947.7730818,0.0,14093307.03785499,0.0 + 02/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,127764761.32549846,0.0,147612523.0733482,0.0,85669800.80150053,0.0,124405234.1134315,0.0,4708.463384341291,4634.751511696452,4640.723862078526,5586.412072424054,555905582.3037238,0.0,14093307.03785499,15502637.741640486 + 02/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,97313623.9244944,0.0,133109421.02508115,0.0,72713901.01315475,0.0,108448425.18618688,0.0,18833.853537365165,18539.00604678581,18562.895448314102,22345.648289696215,693398423.1086978,0.0,56373228.15141996,38756594.35410121 + 02/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,73130296.8870591,0.0,131244004.31472913,0.0,74306538.79569859,0.0,109638173.48768437,0.0,16672.32974880195,16411.32131636441,16432.46897894929,19781.08282500149,637788943.813993,0.0,56373228.15141996,38756594.35410121 + 02/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55307998.12883036,0.0,131188606.05957787,0.0,79109168.66983602,0.0,114566267.35634586,0.0,12010.79311748512,11822.761910619647,11837.996746065704,14250.347553736674,559890877.7950559,0.0,28186614.07570998,0.0 + 02/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43939964.76831399,0.0,132881521.89018855,0.0,81182411.00412965,0.0,117464875.60203135,0.0,9636.653389793966,9485.78978326083,9498.013191590995,11433.521393315998,519663093.1933259,0.0,28186614.07570998,0.0 + 02/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38501637.605602268,0.0,135352648.19940526,0.0,84278833.82072544,0.0,121171368.70194645,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,451777724.9249448,0.0,28186614.07570998,0.0 + 02/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30553494.99272657,0.0,130639335.67413631,0.0,81400092.18170329,0.0,112200862.90276659,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,427794242.7721065,0.0,28186614.07570998,0.0 + 02/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24276830.850510189,0.0,115916803.14196956,0.0,72961887.28964281,0.0,101015747.18614826,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,387551050.7468842,0.0,28186614.07570998,0.0 + 02/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25302556.840201849,0.0,105482445.76447147,0.0,63374478.81589828,0.0,91142390.7873294,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,395874193.73528376,0.0,28186614.07570998,0.0 + 02/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37432127.56893639,0.0,101572011.66850388,0.0,57539178.3370888,0.0,86399379.58336655,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,467229899.7035336,0.0,28186614.07570998,0.0 + 02/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62487105.82786591,0.0,108306252.94269943,0.0,58892374.97978415,0.0,90130101.8560296,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,504103038.15201708,0.0,35233267.594637479,0.0 + 02/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100450731.01353678,0.0,132798699.61900422,0.0,77221110.7336424,0.0,112679655.92742804,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,679979435.2687585,0.0,14093307.03785499,0.0 + 02/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,89382756.40689886,0.0,119212985.00449725,0.0,64391082.34415138,0.0,96785779.20902467,0.0,17164.15978074485,16895.451657406444,16917.223171349913,20364.620383595226,626601840.9397192,0.0,63419881.67034747,0.0 + 02/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,81530781.98670849,0.0,110233459.11603566,0.0,54275771.94817791,0.0,84877685.48129201,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,475864171.72674486,0.0,63419881.67034747,69761869.8373822 + 02/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,84580739.20594722,0.0,111981667.10343594,0.0,56094125.01736257,0.0,87039811.27612448,0.0,9808.09130328277,9654.543804232255,9666.984669342808,11636.925933482988,486455907.1600972,0.0,49326574.63249246,69761869.8373822 + 02/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,91791221.17291442,0.0,118248948.39638858,0.0,61477924.021933328,0.0,93826638.70510344,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,437614175.61037376,0.0,35233267.594637479,69761869.8373822 + 02/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,93982352.45370358,0.0,119523988.46586979,0.0,62705739.78706516,0.0,95311313.30452733,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,444715278.30766639,0.0,35233267.594637479,62010550.96656194 + 02/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,100019187.86137553,0.0,124733991.73268184,0.0,67630729.31683058,0.0,101337678.87459438,0.0,2414.920283390001,2377.114255850597,2380.177410196268,2865.2107330678456,429856309.4424993,0.0,35233267.594637479,46507913.22492146 + 02/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,112104818.69198513,0.0,136322945.08924297,0.0,78079388.9831111,0.0,114288357.60632533,0.0,2414.920283390001,2377.114255850597,2380.177410196268,2865.2107330678456,476930232.0276815,0.0,21139960.556782485,23253956.61246073 + 02/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71801276.52052994,0.0,94162448.90543683,0.0,40981156.17006677,0.0,68090954.60767709,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,293060126.19479349,0.0,14093307.03785499,0.0 + 02/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101622749.07671449,0.0,123816753.19668228,0.0,67675425.47312644,0.0,101871972.93451032,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,413054261.50954207,0.0,14093307.03785499,0.0 + 02/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104903043.24169269,0.0,126333391.50506842,0.0,70742238.00632748,0.0,105037624.14253216,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,425040586.88670358,0.0,14093307.03785499,0.0 + 02/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,109130458.3132957,0.0,130327852.15805203,0.0,73967983.33735869,0.0,109021397.61489858,0.0,1201.0793117485119,1182.276191061965,1183.7996746065704,1425.0347553736675,440419575.1816516,0.0,14093307.03785499,0.0 + 02/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113319890.58264554,0.0,134433634.4321639,0.0,76928773.3712402,0.0,112865757.52471212,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,455475679.0760875,0.0,14093307.03785499,0.0 + 02/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,114702652.97568012,0.0,136029298.67667196,0.0,76786734.79610324,0.0,113226964.8851003,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,512240930.76856926,0.0,14093307.03785499,15502637.741640486 + 02/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,108919158.27951004,0.0,136077960.35755859,0.0,75451689.79543272,0.0,111998510.59448795,0.0,19169.941299497084,18869.832292304443,18894.147997216816,22744.403590207152,719289289.6722012,0.0,56373228.15141996,38756594.35410121 + 02/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,124728167.60377348,0.0,150073089.10109604,0.0,89289129.90935749,0.0,128704111.56803131,0.0,16815.110364479166,16551.866674867506,16573.195444491983,19950.48657523134,744400870.7949103,0.0,56373228.15141996,38756594.35410121 + 02/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,129601252.1745791,0.0,152982357.71672765,0.0,95239745.50256033,0.0,135403355.33081047,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,694409802.2178408,0.0,28186614.07570998,0.0 + 02/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,121790802.61139375,0.0,145362981.54402054,0.0,90380978.7695151,0.0,129108070.7952404,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,632319405.6614013,0.0,28186614.07570998,0.0 + 02/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,116057753.23114863,0.0,138996858.1037325,0.0,86109272.66304365,0.0,123463734.89494698,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,538007401.1714852,0.0,28186614.07570998,0.0 + 02/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,118111721.04320382,0.0,139557078.6460657,0.0,85209511.97639594,0.0,122586267.53672369,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,538844361.4810026,0.0,28186614.07570998,0.0 + 02/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,117005328.04484885,0.0,137828848.48864154,0.0,83497147.79898246,0.0,120484253.25281498,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,532530458.603543,0.0,28186614.07570998,0.0 + 02/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,114864716.17937944,0.0,135016059.69989104,0.0,81138054.29372603,0.0,117398437.56554052,0.0,7422.00350549652,7305.810656044584,7315.22493876349,8805.923843980354,559473534.3379629,0.0,28186614.07570998,0.0 + 02/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,115674394.47681833,0.0,134914279.88778527,0.0,80280851.27989371,0.0,116335559.60345468,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,632654928.6419935,0.0,28186614.07570998,0.0 + 02/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,115435153.24103473,0.0,133994406.37275279,0.0,78473502.85817279,0.0,114125185.82896643,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,627896493.000058,0.0,35233267.594637479,0.0 + 02/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118162387.61109217,0.0,135946673.9102914,0.0,80412933.31836954,0.0,116177683.67591462,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,710915221.0944516,0.0,14093307.03785499,0.0 + 02/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,102033839.89282206,0.0,119239088.80833413,0.0,64922573.69583111,0.0,96964580.49770339,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,643853265.778619,0.0,63419881.67034747,0.0 + 02/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,86811942.2775465,0.0,104043994.5992653,0.0,49951237.689803067,0.0,78814164.72373212,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,468588872.36687758,0.0,63419881.67034747,69761869.8373822 + 02/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,88954885.56255661,0.0,105749712.69418778,0.0,52044900.40807426,0.0,81175408.59649295,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,476892440.33784219,0.0,49326574.63249246,69761869.8373822 + 02/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,91983105.72275269,0.0,108698407.27616748,0.0,54733241.992870729,0.0,84514507.72876235,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,414413029.2588185,0.0,35233267.594637479,69761869.8373822 + 02/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,95296583.56984243,0.0,111889384.91329767,0.0,57112957.659113,0.0,87655696.46736765,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,426301920.4892733,0.0,35233267.594637479,62010550.96656194 + 02/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,100899355.89486376,0.0,117501726.10917145,0.0,62000555.21757279,0.0,93754357.36633304,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,411174750.1210829,0.0,35233267.594637479,46507913.22492146 + 02/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,111210369.37925759,0.0,127767863.57969305,0.0,71131457.42813523,0.0,105129934.42082064,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,452258380.3410484,0.0,21139960.556782485,23253956.61246073 + 02/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68424702.06669653,0.0,83487629.51954402,0.0,34170414.567053068,0.0,57697310.80523376,0.0,1237.00058424942,1217.6351093407644,1219.2041564605814,1467.6539739967253,262289434.7250983,0.0,14093307.03785499,0.0 + 02/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97692726.73591618,0.0,112839335.12084726,0.0,59701269.65792183,0.0,91107708.20942647,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,379806814.62381699,0.0,14093307.03785499,0.0 + 02/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100258476.37831864,0.0,115383431.6469988,0.0,62763793.921112719,0.0,94167153.27942959,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,391038630.12556496,0.0,14093307.03785499,0.0 + 02/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102137163.16434501,0.0,116901501.74435562,0.0,64706328.18934249,0.0,96160855.20520103,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,398334568.5578079,0.0,14093307.03785499,0.0 + 02/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102973799.00792615,0.0,117551963.17305832,0.0,65877490.3884456,0.0,97216910.7050935,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,402048883.5290874,0.0,14093307.03785499,0.0 + 02/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103640754.91350203,0.0,118585517.20927543,0.0,66139920.85786641,0.0,97652962.75498647,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,404269269.9908238,0.0,14093307.03785499,15502637.741640486 + 02/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,80283176.77265606,0.0,108186002.13555283,0.0,56382843.84025702,0.0,85844674.99276723,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,403888582.03773358,0.0,56373228.15141996,38756594.35410121 + 02/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60642497.41218406,0.0,104667000.50395905,0.0,57531960.781652677,0.0,85890292.67947839,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,493389500.37432649,0.0,56373228.15141996,38756594.35410121 + 02/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39688864.22599431,0.0,100724352.78099489,0.0,59731005.95417316,0.0,87419705.37670213,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,473432173.03699579,0.0,28186614.07570998,0.0 + 02/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21322767.32015547,0.0,97732210.3174226,0.0,58474926.221362438,0.0,85725634.25933293,0.0,12497.394989377714,12301.745939432274,12317.597994688338,14827.682100001863,450255453.80287399,0.0,28186614.07570998,0.0 + 02/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12721273.658685789,0.0,98027157.06749475,0.0,59851162.3751841,0.0,87149671.88289331,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,370362476.2328906,0.0,28186614.07570998,0.0 + 02/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6945157.487742574,0.0,97196408.87905887,0.0,59383114.78778922,0.0,81946567.09880352,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,358084459.5020269,0.0,28186614.07570998,0.0 + 02/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3648118.158651338,0.0,86269077.03383173,0.0,53483923.704526979,0.0,74134665.95420724,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,330329904.27415516,0.0,28186614.07570998,0.0 + 02/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7935876.260060005,0.0,79578316.37101257,0.0,46563998.30698258,0.0,67758363.23322062,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,314630673.5942136,0.0,28186614.07570998,0.0 + 02/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22617296.319911198,0.0,78907326.27507159,0.0,42873554.103318739,0.0,65814702.31046278,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,472977038.5889073,0.0,28186614.07570998,0.0 + 02/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,48887438.40016493,0.0,87750576.04305324,0.0,45652206.398022089,0.0,71552102.46547348,0.0,22533.490570034777,22180.724571542367,22209.306699092293,26735.126405131112,591013456.9915958,0.0,35233267.594637479,0.0 + 02/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87767512.16755679,0.0,114524442.69559267,0.0,64540444.05217366,0.0,95603387.3343586,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,623128969.1336101,0.0,14093307.03785499,0.0 + 02/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,86738712.44603339,0.0,111296055.29749538,0.0,59146746.419878598,0.0,89501332.86997625,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,605203695.6292567,0.0,63419881.67034747,0.0 + 02/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,73895107.53801853,0.0,96788322.03921959,0.0,45339257.28530642,0.0,72477083.745695,0.0,14906.117116577769,14672.75907238434,14691.666420066496,17685.538957348504,511541664.2471971,0.0,63419881.67034747,69761869.8373822 + 02/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,77557274.93364291,0.0,98962132.25107032,0.0,47961751.92028195,0.0,75523207.17364994,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,485454209.6726866,0.0,49326574.63249246,69761869.8373822 + 02/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,79613010.90346971,0.0,99738321.44328258,0.0,49844339.47648716,0.0,77354342.98685928,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,455517547.8866292,0.0,35233267.594637479,69761869.8373822 + 02/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,85224132.0619704,0.0,105140440.88721079,0.0,53560227.2737489,0.0,82424764.76007141,0.0,7422.00350549652,7305.810656044584,7315.22493876349,8805.923843980354,437405831.5824273,0.0,35233267.594637479,62010550.96656194 + 02/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92297079.61942353,0.0,112038537.51273662,0.0,58843694.99062191,0.0,89330350.09417768,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,426547173.28324356,0.0,35233267.594637479,46507913.22492146 + 02/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,99476622.81337653,0.0,118343414.69473277,0.0,65700569.75214315,0.0,97405710.35308212,0.0,2484.3528527629616,2445.459845397391,2448.6110700110828,2947.5898262247508,418099966.5531607,0.0,21139960.556782485,23253956.61246073 + 02/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56605330.597481239,0.0,73669375.07247596,0.0,28193965.395614827,0.0,48713638.39324043,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,225769133.9287256,0.0,14093307.03785499,0.0 + 02/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82099121.82895655,0.0,98463225.2972617,0.0,51409359.0501658,0.0,78919396.14864403,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,329552072.7813026,0.0,14093307.03785499,0.0 + 02/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83572867.10263065,0.0,99221721.77895184,0.0,53163761.73918099,0.0,80547634.32557315,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,335166955.40261116,0.0,14093307.03785499,0.0 + 02/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83688464.35286206,0.0,98777265.84328814,0.0,53663190.753922779,0.0,80610828.26099393,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,335439740.77952697,0.0,14093307.03785499,0.0 + 02/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,84371454.2359398,0.0,99019844.39051755,0.0,54613093.05806472,0.0,81353344.08673361,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,338018706.2275302,0.0,14093307.03785499,0.0 + 02/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83557548.32935468,0.0,98112295.66564277,0.0,52973452.51976751,0.0,79511645.46293885,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,332815912.4339783,0.0,14093307.03785499,15502637.741640486 + 02/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,84483407.4762601,0.0,100922159.94641207,0.0,54393939.93663257,0.0,81422351.07296369,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806395,339882828.8885429,0.0,56373228.15141996,38756594.35410121 + 02/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,91303695.99829239,0.0,108094228.63689214,0.0,62860835.6723925,0.0,91391330.07822779,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,428577008.98244526,0.0,56373228.15141996,38756594.35410121 + 02/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93567143.0918689,0.0,108880261.4079175,0.0,67478051.81440015,0.0,95995413.85602507,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,478714989.5931495,0.0,28186614.07570998,0.0 + 02/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82217828.48580946,0.0,98558922.43275184,0.0,61569998.839210618,0.0,88000811.54486758,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,443524139.9183949,0.0,28186614.07570998,0.0 + 02/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51654912.28564262,0.0,77074409.83539668,0.0,51386655.49770633,0.0,73231105.0792251,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,329163593.8090569,0.0,28186614.07570998,0.0 + 02/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39323900.17583692,0.0,70982635.0808719,0.0,47252970.75904443,0.0,66122221.602950919,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,299715799.5711152,0.0,28186614.07570998,0.0 + 02/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17756871.13510763,0.0,64001839.907605979,0.0,41619753.47063703,0.0,58145031.89835868,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,295878204.0220898,0.0,28186614.07570998,0.0 + 02/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,54078697.00198729,0.0,32746722.30966368,0.0,47504083.84639606,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,286802446.63855436,0.0,28186614.07570998,0.0 + 02/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,50087368.11145076,0.0,26563587.883329575,0.0,41958948.70679242,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,309201084.0522069,0.0,28186614.07570998,0.0 + 02/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22244390.056357214,0.0,55864246.85405413,0.0,27256092.45628996,0.0,45015742.737202677,0.0,15244.303608821841,15005.651192003705,15024.98750515958,18086.784321024057,378482687.961137,0.0,35233267.594637479,0.0 + 02/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63092300.30648081,0.0,86641870.10976824,0.0,48060418.67878523,0.0,72222223.1399657,0.0,17589.0072895276,17313.648099183974,17335.958501927096,20868.685735339546,533203090.88852158,0.0,14093307.03785499,0.0 + 02/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,61228741.5321118,0.0,83944169.49938627,0.0,42258939.16493923,0.0,66110997.6118015,0.0,10034.74093803058,9877.64519666664,9890.37355069283,11905.837073362818,403693796.1397491,0.0,63419881.67034747,0.0 + 02/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52101795.05241178,0.0,73848911.43565734,0.0,31004621.21179565,0.0,52765648.353145908,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,322111353.94797137,0.0,63419881.67034747,69761869.8373822 + 02/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,60878363.61664544,0.0,81823267.33970276,0.0,37236361.33625553,0.0,60812002.58849959,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,315233761.41936859,0.0,49326574.63249246,69761869.8373822 + 02/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70330944.51086411,0.0,90924324.49633631,0.0,44019650.88773684,0.0,69761652.34374665,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,349216509.5963005,0.0,35233267.594637479,69761869.8373822 + 02/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76290701.0639043,0.0,96301269.11939088,0.0,48205442.52340205,0.0,75150529.53499773,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,369985453.30797889,0.0,35233267.594637479,62010550.96656194 + 02/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,80283533.38744316,0.0,99422086.79719666,0.0,51426643.17453644,0.0,78929135.30507998,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,384408696.54390886,0.0,35233267.594637479,46507913.22492146 + 02/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,87925320.51831597,0.0,106194791.04710932,0.0,58569884.52048235,0.0,87362461.26454395,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,377294340.6195842,0.0,21139960.556782485,23253956.61246073 + 02/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45910939.868461918,0.0,62202924.19806037,0.0,22460019.516846748,0.0,40427824.52976642,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,189662678.5694099,0.0,14093307.03785499,0.0 + 02/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72736188.37011649,0.0,88470340.8693617,0.0,45845432.766434159,0.0,70578168.99422916,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,296291101.456416,0.0,14093307.03785499,0.0 + 02/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74864449.30813723,0.0,89893043.47976126,0.0,48101366.23170091,0.0,73084829.19775093,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,304604658.6736249,0.0,14093307.03785499,0.0 + 02/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75779019.02821876,0.0,90280344.7788121,0.0,49331812.949457298,0.0,74028987.04515428,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,308081134.2579169,0.0,14093307.03785499,0.0 + 02/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78415213.21068917,0.0,92809999.4163437,0.0,51359442.47023031,0.0,76480118.9017804,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,317685715.6336099,0.0,14093307.03785499,0.0 + 02/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76633327.37511331,0.0,91924338.51529293,0.0,49505174.895021189,0.0,74521320.4448277,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,366764098.5878717,0.0,14093307.03785499,15502637.741640486 + 02/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,51424627.3522716,0.0,79591494.91565897,0.0,38022258.85279753,0.0,60413641.48756014,0.0,19954.10685172838,19641.721586529617,19667.031949582703,23674.78608449023,528027549.9086795,0.0,56373228.15141996,38756594.35410121 + 02/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,30950315.727095739,0.0,70896415.16937636,0.0,36729903.90718347,0.0,55913934.55679173,0.0,17679.754964758045,17402.975102629724,17425.400612334204,20976.354387948744,459034715.60406187,0.0,56373228.15141996,38756594.35410121 + 02/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19922277.534500146,0.0,65924098.73300125,0.0,40604613.71800509,0.0,60008654.51606566,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,376544824.3825997,0.0,28186614.07570998,0.0 + 02/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24613080.712310744,0.0,64773210.080859888,0.0,40850419.03116727,0.0,60089084.57819496,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,342618527.8497143,0.0,28186614.07570998,0.0 + 02/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22328699.75138897,0.0,60753619.84307574,0.0,38123866.063278499,0.0,56607197.44748445,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,254408249.2658144,0.0,28186614.07570998,0.0 + 02/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10673724.814036416,0.0,55876355.082986149,0.0,34543074.824007827,0.0,49614158.996622968,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,227535889.54647703,0.0,28186614.07570998,0.0 + 02/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,45699602.4372752,0.0,28943310.79931919,0.0,41668851.674987029,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,193213686.36995358,0.0,28186614.07570998,0.0 + 02/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7731303.433789998,0.0,45701389.595548529,0.0,26265869.92911675,0.0,39761125.94327188,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,234995503.789703,0.0,28186614.07570998,0.0 + 02/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20065053.490257719,0.0,47265563.20300878,0.0,26032646.346631066,0.0,40426245.70903513,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,326187931.0552989,0.0,28186614.07570998,0.0 + 02/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27425107.003826515,0.0,50445878.30794415,0.0,25766757.513815706,0.0,41198842.16084325,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,337235007.2927959,0.0,35233267.594637479,0.0 + 02/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43498235.196560759,0.0,61863445.539044488,0.0,33484391.524813385,0.0,51010577.23752363,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,459214440.72685506,0.0,14093307.03785499,0.0 + 02/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,34812143.541393388,0.0,52162865.42400883,0.0,22820855.577576847,0.0,38293794.97397181,0.0,17936.506471112665,17655.70711625542,17678.45829695528,21280.98024943098,416475607.19846656,0.0,63419881.67034747,0.0 + 02/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,26410814.38697946,0.0,43633821.81664787,0.0,12224561.265121129,0.0,26091628.129930468,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,261550557.91985239,0.0,63419881.67034747,69761869.8373822 + 02/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,30478037.47561391,0.0,46946471.15462517,0.0,15023447.175903358,0.0,29666898.64692702,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,275478253.1282213,0.0,49326574.63249246,69761869.8373822 + 02/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33858923.377844858,0.0,49388530.515116129,0.0,17369286.732690365,0.0,32552522.604709995,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,209933061.01024074,0.0,35233267.594637479,69761869.8373822 + 02/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37103943.539072457,0.0,51936152.28362113,0.0,19354654.55492294,0.0,35118030.458389129,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,220276578.61588506,0.0,35233267.594637479,62010550.96656194 + 02/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41708524.83448642,0.0,55848970.51128163,0.0,23069922.950325129,0.0,39618173.63821869,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,198627490.82425157,0.0,35233267.594637479,46507913.22492146 + 02/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,50334027.72317718,0.0,63793053.3735094,0.0,31088895.5560316,0.0,49208798.84306683,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,232806674.3857247,0.0,21139960.556782485,23253956.61246073 + 02/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13026884.489678769,0.0,24643098.051015948,0.0,217541.42945630596,0.0,8716457.205427457,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210436,1521.697464544115,65794930.62054832,0.0,14093307.03785499,0.0 + 02/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40048746.844161499,0.0,52218664.11765635,0.0,19638363.819730186,0.0,37486428.33144337,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,168540919.6531381,0.0,14093307.03785499,0.0 + 02/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43455438.52085978,0.0,54588988.64753601,0.0,24997229.686612544,0.0,41216149.04035092,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,183406522.43550594,0.0,14093307.03785499,0.0 + 02/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47848321.789932239,0.0,58961354.27013711,0.0,28618871.550626086,0.0,45666615.02142745,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,200180261.8008389,0.0,14093307.03785499,0.0 + 02/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55485076.8394741,0.0,67183503.76701612,0.0,34462870.21291806,0.0,53415005.634687948,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,229500584.23186774,0.0,14093307.03785499,0.0 + 02/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59412979.36093398,0.0,71787634.80638343,0.0,36701684.285307887,0.0,56828201.37225436,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,300181552.2353833,0.0,14093307.03785499,15502637.741640486 + 02/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,67289590.12285358,0.0,81590872.07374725,0.0,42467758.972123209,0.0,64825904.00758676,0.0,20069.48187606116,19755.29039333328,19780.74710138566,23811.674146725636,556476021.8393314,0.0,56373228.15141996,38756594.35410121 + 02/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,76718342.73695953,0.0,93862730.4522321,0.0,54828101.501055467,0.0,79845594.98587606,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,567054651.634564,0.0,56373228.15141996,38756594.35410121 + 02/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65077124.64211887,0.0,94017055.1555099,0.0,60084525.067093949,0.0,85385884.0436818,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,491174293.4711491,0.0,28186614.07570998,0.0 + 02/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22882299.85072858,0.0,83158960.58693543,0.0,54138458.6600877,0.0,77333096.55152154,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,387112748.19695386,0.0,28186614.07570998,0.0 + 02/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8052382.251357006,0.0,83419995.38216046,0.0,55677107.94223595,0.0,79117577.12690228,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,301193981.29929617,0.0,28186614.07570998,0.0 + 02/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,640123.4692025987,0.0,85831786.15425122,0.0,56087675.96763046,0.0,75561329.44079593,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,293047833.6285207,0.0,28186614.07570998,0.0 + 02/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,76941134.14980778,0.0,50923040.79459736,0.0,69000766.11058946,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,271791859.65163508,0.0,28186614.07570998,0.0 + 02/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,72090167.66862537,0.0,44741570.45101179,0.0,63721433.540373567,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,292943549.5549714,0.0,28186614.07570998,0.0 + 02/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15912389.70417706,0.0,74436265.0556143,0.0,42272864.19584224,0.0,63827120.47324833,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,383058343.9916265,0.0,28186614.07570998,0.0 + 02/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46651220.413585398,0.0,87150341.02988959,0.0,46802788.70314414,0.0,72473680.05885829,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,438946274.9046087,0.0,35233267.594637479,0.0 + 02/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87457014.07149549,0.0,115744134.18128912,0.0,66373740.672273728,0.0,97715594.18705419,0.0,17351.322909319388,17079.6847122879,17101.693629326863,20586.682291193076,626920263.8637705,0.0,14093307.03785499,0.0 + 02/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,84762434.18132729,0.0,110258364.31006997,0.0,58208044.83404763,0.0,88423355.6995284,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,600173047.6208464,0.0,63419881.67034747,0.0 + 02/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,78934978.99138767,0.0,102775781.84347946,0.0,48585624.35820672,0.0,77388386.5500082,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,454752013.9043299,0.0,63419881.67034747,69761869.8373822 + 02/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,88942196.62603954,0.0,111450451.10592708,0.0,55199877.987638067,0.0,86012559.16681935,0.0,9782.97647591426,9629.822154171365,9642.231162912527,11607.128149502149,487988853.4794251,0.0,49326574.63249246,69761869.8373822 + 02/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,96485494.694919,0.0,117893756.74188891,0.0,60716561.65092399,0.0,92947553.11831723,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,441043823.2268229,0.0,35233267.594637479,69761869.8373822 + 02/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,100532812.24316052,0.0,121092217.16862284,0.0,63643809.82956996,0.0,96524670.45553029,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,454793966.71765747,0.0,35233267.594637479,62010550.96656194 + 02/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,107464983.9646321,0.0,127690136.55002384,0.0,69146093.63979729,0.0,103480013.12432742,0.0,2427.321367384332,2389.3211985615769,2392.400082798868,2879.9241458486415,444101507.73931697,0.0,35233267.594637479,46507913.22492146 + 02/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,119170380.1938555,0.0,139612113.90887676,0.0,79400099.06910345,0.0,116291082.10177368,0.0,2421.7301398206884,2383.8175027084846,2386.889294871918,2873.290367774655,490710293.57224217,0.0,21139960.556782485,23253956.61246073 + 02/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76510799.93033864,0.0,94545685.0857727,0.0,41367947.5837134,0.0,68315119.61532822,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,298899692.4454211,0.0,14093307.03785499,0.0 + 02/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,105405390.6388239,0.0,123216791.68419396,0.0,68034924.37644923,0.0,101779950.62256083,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,416504418.1505364,0.0,14093307.03785499,0.0 + 02/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,108486667.0032824,0.0,126032843.50913094,0.0,71310443.36873383,0.0,105199102.8423123,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,429096417.5519679,0.0,14093307.03785499,0.0 + 02/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,111051877.98228099,0.0,128438338.58620122,0.0,73546598.79474029,0.0,107739633.0957231,0.0,1204.5816737242458,1185.7237229076039,1187.2516489488745,1429.1901741644998,438800738.4500284,0.0,14093307.03785499,0.0 + 02/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,111447703.99072427,0.0,128560004.72772095,0.0,73892483.98204331,0.0,107917032.93757382,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,439935534.78737869,0.0,14093307.03785499,0.0 + 02/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,108668680.72032711,0.0,126765562.9989717,0.0,71287914.46953032,0.0,105029501.35414952,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,483639194.575165,0.0,14093307.03785499,15502637.741640486 + 02/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,80969992.14108414,0.0,113902433.86878629,0.0,58997919.41192397,0.0,90453117.60537908,0.0,19319.362267120006,19016.914046804777,19041.419281570143,22921.685864542764,633401236.2833091,0.0,56373228.15141996,38756594.35410121 + 02/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,57082365.78778964,0.0,112369930.0911414,0.0,60910061.612265828,0.0,92048530.80126006,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,577344889.1896119,0.0,56373228.15141996,38756594.35410121 + 02/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42129152.863406579,0.0,113867315.7839105,0.0,67613167.92144923,0.0,98762384.43676824,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,505351731.7467859,0.0,28186614.07570998,0.0 + 02/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29566517.934965716,0.0,113971395.23245767,0.0,69207758.1915919,0.0,100641426.69641245,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,460454340.21667566,0.0,28186614.07570998,0.0 + 02/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21995663.446109259,0.0,113303086.5018633,0.0,70020451.4621721,0.0,101284146.32068804,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,380950645.6104853,0.0,28186614.07570998,0.0 + 02/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16791796.15477398,0.0,110284679.02567542,0.0,67900035.66853044,0.0,93740204.65992354,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,363200482.0471686,0.0,28186614.07570998,0.0 + 02/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14687029.43132646,0.0,97976128.72337586,0.0,61102206.229127358,0.0,84779732.17602238,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,333345062.8336923,0.0,28186614.07570998,0.0 + 02/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23596461.301964359,0.0,90592919.43032156,0.0,53948491.67824678,0.0,78097237.85678348,0.0,7511.163523344925,7393.574857180788,7403.102233030764,8911.708801710374,358625488.16227677,0.0,28186614.07570998,0.0 + 02/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34602595.850903328,0.0,89387547.59652674,0.0,49928009.01587583,0.0,75274770.41965007,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,436510219.3745571,0.0,28186614.07570998,0.0 + 02/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54551730.97090559,0.0,94660915.93447253,0.0,50250334.32685661,0.0,77643282.92374307,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,464423560.6475789,0.0,35233267.594637479,0.0 + 02/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90283193.24636758,0.0,117551858.97343697,0.0,66693163.423734959,0.0,98465971.60304977,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,634794069.2050302,0.0,14093307.03785499,0.0 + 02/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,84594993.80663222,0.0,109375640.67391363,0.0,56994478.97244786,0.0,86964859.66585014,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.002055210312,598623156.0027722,0.0,63419881.67034747,0.0 + 02/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75100290.14969613,0.0,98254757.48383785,0.0,45005037.84757216,0.0,72678141.2490431,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,440005759.8066798,0.0,63419881.67034747,69761869.8373822 + 02/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,79761283.1758721,0.0,101297734.64834509,0.0,47859848.98313387,0.0,76146987.8209157,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,454353618.2784624,0.0,49326574.63249246,69761869.8373822 + 02/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,86139566.53409995,0.0,106766013.69168103,0.0,52397028.671238798,0.0,81881245.53404463,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,401531152.310717,0.0,35233267.594637479,69761869.8373822 + 02/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92489648.20345095,0.0,113056911.50208514,0.0,57321518.9443232,0.0,88133008.59585569,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,424864186.8445358,0.0,35233267.594637479,62010550.96656194 + 02/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,100755499.89911574,0.0,120155512.7597388,0.0,63672731.47481702,0.0,96122439.99207518,0.0,2457.1634278000549,2418.6960759544606,2421.8128127195038,2915.3306113904188,417472994.6660587,0.0,35233267.594637479,46507913.22492146 + 02/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,108915216.07283762,0.0,127641463.81551512,0.0,71004963.63407181,0.0,104987744.6280221,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,449568143.68358859,0.0,21139960.556782485,23253956.61246073 + 02/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65629758.83699009,0.0,82289425.74548513,0.0,33489471.762287938,0.0,56626327.25628742,0.0,1237.00058424942,1217.6351093407644,1219.2041564605814,1467.6539739967253,256544361.3676215,0.0,14093307.03785499,0.0 + 02/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,95246356.65544683,0.0,111776602.0182996,0.0,58882188.78172144,0.0,90019926.10283238,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,374390848.45800557,0.0,14093307.03785499,0.0 + 02/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94464682.36471114,0.0,110084357.0579823,0.0,59544340.78486374,0.0,89614635.01971257,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,372294839.6971829,0.0,14093307.03785499,0.0 + 02/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94460261.39635311,0.0,109530974.47188996,0.0,59835469.986534658,0.0,89466182.44948429,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,371879712.77417519,0.0,14093307.03785499,0.0 + 02/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96614817.86788705,0.0,111481330.63745898,0.0,61600203.78670105,0.0,91492365.54948806,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,379733702.1809393,0.0,14093307.03785499,0.0 + 02/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93089062.1107414,0.0,108412907.79469338,0.0,58661562.29462992,0.0,87869194.57141842,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,422070237.83776697,0.0,14093307.03785499,15502637.741640486 + 02/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,71859470.95602682,0.0,99539338.14927407,0.0,49937929.970026429,0.0,77583752.75856249,0.0,19705.762568019818,19397.265178911097,19422.26053493182,23380.135071754125,593780015.9069104,0.0,56373228.15141996,38756594.35410121 + 02/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,50646177.82731342,0.0,99566190.32932896,0.0,52684013.61155631,0.0,80277953.80484212,0.0,17351.322909319388,17079.6847122879,17101.693629326863,20586.682291193076,542804116.3246988,0.0,56373228.15141996,38756594.35410121 + 02/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36571827.49290333,0.0,101500115.96764186,0.0,59483695.7449893,0.0,87279381.9934544,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,471044437.544652,0.0,28186614.07570998,0.0 + 02/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24700137.661180747,0.0,101817641.31401828,0.0,61116373.47015275,0.0,89225575.44810349,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,426147491.54365089,0.0,28186614.07570998,0.0 + 02/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18393720.435968985,0.0,103179166.01729071,0.0,63613303.255531419,0.0,92004384.12730325,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,352117492.43273487,0.0,28186614.07570998,0.0 + 02/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12661542.13885291,0.0,100815701.78828672,0.0,62316733.22682291,0.0,85721219.47841558,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,336590670.79813328,0.0,28186614.07570998,0.0 + 02/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8697170.45964598,0.0,89449974.9197187,0.0,56147465.068725798,0.0,77514263.02342248,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,307004953.08680489,0.0,28186614.07570998,0.0 + 02/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11335742.887282933,0.0,79112913.21352484,0.0,47698259.636862259,0.0,68721422.56927175,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,320044916.9226973,0.0,28186614.07570998,0.0 + 02/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21293821.161516459,0.0,75721392.79926855,0.0,42361635.414024878,0.0,64235669.84910293,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,392572623.6836375,0.0,28186614.07570998,0.0 + 02/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,44860345.03259137,0.0,84357590.70790938,0.0,44424580.87795177,0.0,69007638.01632776,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,431277785.6610395,0.0,35233267.594637479,0.0 + 02/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81829780.14363513,0.0,109747459.98095709,0.0,62364987.54802828,0.0,91967305.80701667,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,608153748.5678787,0.0,14093307.03785499,0.0 + 02/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75401663.4427507,0.0,100658458.8519742,0.0,52159159.05230006,0.0,79722373.09249985,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,570185869.5277664,0.0,63419881.67034747,0.0 + 02/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,63871429.88878786,0.0,87350657.90842512,0.0,38921021.93861651,0.0,63637805.508143778,0.0,10014.884697793233,9858.099809574387,9870.802977374355,11882.278402280495,403634752.4372542,0.0,63419881.67034747,69761869.8373822 + 02/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,70351348.56519357,0.0,92533699.62011168,0.0,43073030.406665559,0.0,68999518.08192066,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,424557529.22157207,0.0,49326574.63249246,69761869.8373822 + 02/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74242889.41657946,0.0,95128058.02252767,0.0,45322866.758833888,0.0,71817759.50238894,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,361707653.3156218,0.0,35233267.594637479,69761869.8373822 + 02/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77407250.41949938,0.0,97082148.86209098,0.0,47095479.17840988,0.0,74005574.48463983,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,370665927.1103953,0.0,35233267.594637479,62010550.96656194 + 02/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,82914648.88589208,0.0,101606406.12654203,0.0,51234951.81034621,0.0,79102978.60483253,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,352396722.5104904,0.0,35233267.594637479,46507913.22492146 + 02/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,90279275.45960859,0.0,107808929.98081337,0.0,58059193.90279314,0.0,87133010.98088122,0.0,2517.4220429791564,2478.0113312716996,2481.2045017974016,2986.8251580876706,380948877.2469857,0.0,21139960.556782485,23253956.61246073 + 02/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47509241.31330128,0.0,62663598.39659099,0.0,21397858.865644449,0.0,39198226.20870845,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,189631687.8868711,0.0,14093307.03785499,0.0 + 02/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71998204.90201429,0.0,86504002.10920565,0.0,42995396.387453708,0.0,67265443.93962637,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,287685932.584029,0.0,14093307.03785499,0.0 + 02/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70506616.48525836,0.0,83817880.52058631,0.0,42612705.9424018,0.0,66125742.516784239,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,282047206.80383077,0.0,14093307.03785499,0.0 + 02/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69238755.90358041,0.0,81776681.02331499,0.0,42099906.159890148,0.0,64786471.97392775,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,276910333.0488161,0.0,14093307.03785499,0.0 + 02/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67568047.37663877,0.0,79390301.17901638,0.0,41320056.274634059,0.0,63132405.474981,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,270447401.9861679,0.0,14093307.03785499,0.0 + 02/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63088564.32974211,0.0,74422583.85269721,0.0,37621326.15371842,0.0,58119636.002106238,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,309398477.0618546,0.0,14093307.03785499,15502637.741640486 + 02/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65318894.638480979,0.0,77499429.39725255,0.0,39463463.89636333,0.0,60175753.23492496,0.0,20355.75724121221,20037.084064238272,20062.903892197697,24151.32893967486,547043008.0613847,0.0,56373228.15141996,38756594.35410121 + 02/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,72583738.77151673,0.0,84750925.61133556,0.0,47244760.12262523,0.0,69500416.24227336,0.0,17916.19544704267,17635.714065056254,17658.439482668997,21256.881994691386,542161872.3098043,0.0,56373228.15141996,38756594.35410121 + 02/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75236745.42878089,0.0,86317934.00571063,0.0,52935147.805730078,0.0,75518298.26200435,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,481495290.90369287,0.0,28186614.07570998,0.0 + 02/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69244113.55027309,0.0,80480717.77044523,0.0,49375916.46365184,0.0,70931996.6617929,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,423396143.1213149,0.0,28186614.07570998,0.0 + 02/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58010707.36306873,0.0,70486434.79660359,0.0,44079257.593878749,0.0,63598490.35646798,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,313003465.9388427,0.0,28186614.07570998,0.0 + 02/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49112881.49160584,0.0,63514279.93454788,0.0,40523529.99096942,0.0,58170581.43839233,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,288149848.68433919,0.0,28186614.07570998,0.0 + 02/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42421197.04698743,0.0,59207983.65352434,0.0,37605975.767365958,0.0,54208388.655094768,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,270345466.58134469,0.0,28186614.07570998,0.0 + 02/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28665789.421433748,0.0,52173435.50923054,0.0,32562852.860073858,0.0,47457407.19166371,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,276298538.36622169,0.0,28186614.07570998,0.0 + 02/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37694618.34124075,0.0,56741457.07624152,0.0,33059448.685816796,0.0,49438212.79701908,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,369188540.5462485,0.0,28186614.07570998,0.0 + 02/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46590173.34654745,0.0,61442640.382387939,0.0,33441985.644738668,0.0,51065729.762793939,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,384938951.4428342,0.0,35233267.594637479,0.0 + 02/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61200487.66720151,0.0,72586857.98764813,0.0,40853992.30825596,0.0,60527336.020320657,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,504325399.08772876,0.0,14093307.03785499,0.0 + 02/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,48784393.050862539,0.0,59770178.10462291,0.0,27528592.24300536,0.0,44484697.14381662,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,449925651.7712202,0.0,63419881.67034747,0.0 + 02/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37679373.664356399,0.0,49469645.1456136,0.0,14521926.670271822,0.0,29825428.192087819,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,285544126.8562975,0.0,63419881.67034747,69761869.8373822 + 02/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,43972328.41139916,0.0,55811366.604267958,0.0,19509156.95787894,0.0,36301529.091048289,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,309121976.6243532,0.0,49326574.63249246,69761869.8373822 + 02/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51518229.62723714,0.0,63298736.97990947,0.0,26106868.50907872,0.0,44529357.88892086,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,261876668.51270203,0.0,35233267.594637479,69761869.8373822 + 02/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62737300.285526517,0.0,75513798.19661787,0.0,34550275.04821645,0.0,56017974.07614374,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,304510888.58942058,0.0,35233267.594637479,62010550.96656194 + 02/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,75655740.1924335,0.0,89460255.44026761,0.0,44733103.693708229,0.0,69576988.8051993,0.0,2508.685234507645,2469.41129916666,2472.5933876732076,2976.4592683407047,316963825.21448627,0.0,35233267.594637479,46507913.22492146 + 02/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,91126504.12612634,0.0,105753541.8124824,0.0,57882790.878458309,0.0,86525608.32803142,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,378610386.0576474,0.0,21139960.556782485,23253956.61246073 + 02/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54872449.77280274,0.0,69019983.0851758,0.0,25874713.869638739,0.0,45318988.897714208,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,213672960.09524463,0.0,14093307.03785499,0.0 + 02/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87645370.60523482,0.0,102441218.84174674,0.0,53906791.38719524,0.0,82569144.84961553,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,345028300.5834976,0.0,14093307.03785499,0.0 + 02/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94497600.66015052,0.0,109601977.58134049,0.0,59854614.27789918,0.0,90071862.59340348,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,372409460.38294968,0.0,14093307.03785499,0.0 + 02/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100049633.25675975,0.0,115575312.59073636,0.0,64429309.75508328,0.0,95800544.84567897,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,394152771.5223836,0.0,14093307.03785499,0.0 + 02/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104214612.61253923,0.0,120134800.38193032,0.0,67841994.39702283,0.0,100097603.56684968,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,410539125.2135354,0.0,14093307.03785499,0.0 + 02/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101424635.68192539,0.0,118913907.7588247,0.0,65455138.26344355,0.0,97258827.0367965,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,401262080.233644,0.0,14093307.03785499,15502637.741640486 + 02/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,76459395.54328078,0.0,108920870.0428178,0.0,54723041.22808858,0.0,84839789.21206805,0.0,4867.856901386803,4791.649693497784,4797.824223201373,5775.526395973954,397781381.9968709,0.0,56373228.15141996,38756594.35410121 + 02/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60738814.9103369,0.0,113220951.44774349,0.0,60536446.12710366,0.0,92365895.32353904,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,508957822.73526236,0.0,56373228.15141996,38756594.35410121 + 02/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50827992.71833973,0.0,118834197.75826445,0.0,69615646.7459535,0.0,102566425.16522798,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,523939977.3143249,0.0,28186614.07570998,0.0 + 02/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43560486.9266358,0.0,119828871.36693317,0.0,72184745.28298533,0.0,105703675.3379252,0.0,12228.720594892826,12037.277692714204,12052.78895364066,14508.910186877687,524257489.65573087,0.0,28186614.07570998,0.0 + 02/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42804628.53357557,0.0,121696307.51500836,0.0,74978853.81194723,0.0,108945151.02319631,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,458494614.30164769,0.0,28186614.07570998,0.0 + 02/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42146099.66708092,0.0,122238634.1439389,0.0,75234748.0653304,0.0,105243061.70989067,0.0,7356.068477462079,7240.907853174189,7250.238502007106,8727.694450112242,454932217.0041611,0.0,28186614.07570998,0.0 + 02/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50454324.22461964,0.0,114732203.9878083,0.0,70760499.02685657,0.0,100098868.77446085,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,446618217.5411281,0.0,28186614.07570998,0.0 + 02/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61612010.00554215,0.0,111510498.92874104,0.0,67054850.69529602,0.0,97608066.25964226,0.0,7404.519361253068,7288.600229340928,7297.992334668395,8785.179574246316,448580075.2874528,0.0,28186614.07570998,0.0 + 02/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65490199.30300012,0.0,110265410.56136412,0.0,63980874.5421534,0.0,94896415.81616453,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,593153748.8185554,0.0,28186614.07570998,0.0 + 02/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74430890.40094406,0.0,112331268.20317862,0.0,61944121.51762363,0.0,94170450.35075982,0.0,22213.55808375921,21865.800688022788,21893.977004005184,26355.538722738944,675260678.6672003,0.0,35233267.594637479,0.0 + 02/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,107102655.91832507,0.0,135157681.29740773,0.0,77642535.42567545,0.0,114076497.21067378,0.0,17200.143994600385,16930.87253168122,16952.689689036524,20407.314279732927,691347043.6342658,0.0,14093307.03785499,0.0 + 02/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,102594350.25775787,0.0,127996404.49784348,0.0,69705468.35195498,0.0,104324926.8058064,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,660792744.9511147,0.0,63419881.67034747,0.0 + 02/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,90983738.53437735,0.0,115247829.28862497,0.0,56862810.53919161,0.0,88742988.33444932,0.0,14674.46471387139,14444.733231257043,14463.346744368791,17410.692224253227,571413019.5861449,0.0,63419881.67034747,69761869.8373822 + 02/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,92426314.83230058,0.0,115013919.06455969,0.0,58355989.7836609,0.0,89913737.29822064,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,539159416.6752756,0.0,49326574.63249246,69761869.8373822 + 02/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,95347425.50320812,0.0,117103800.56922995,0.0,60502085.34619581,0.0,92496476.38067453,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,512517029.9605563,0.0,35233267.594637479,69761869.8373822 + 02/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98036088.71108577,0.0,119455020.79826026,0.0,62224802.01772012,0.0,94831769.62567416,0.0,7371.490283400164,7256.088227863379,7265.438438158511,8745.991834171256,484848112.7736763,0.0,35233267.594637479,62010550.96656194 + 02/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101298388.15938905,0.0,122018097.80748354,0.0,65322711.078897949,0.0,98381137.45258425,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,460553955.5789788,0.0,35233267.594637479,46507913.22492146 + 02/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,107381447.27820376,0.0,126948223.49914083,0.0,71852248.25112449,0.0,105631245.18744385,0.0,2463.2203210024774,2424.6581473638868,2427.782566866477,2922.5168839692657,448670604.72504058,0.0,21139960.556782485,23253956.61246073 + 02/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63012269.70308748,0.0,80458787.24623667,0.0,33645030.38564737,0.0,56287993.469753857,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,251869855.70443059,0.0,14093307.03785499,0.0 + 02/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93814526.99346854,0.0,111695170.90195568,0.0,59683500.915598589,0.0,90854976.31353536,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,374431580.3947141,0.0,14093307.03785499,0.0 + 02/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,95539334.90832114,0.0,112936863.29892296,0.0,62045088.40240519,0.0,92930387.79856351,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,381880394.6627766,0.0,14093307.03785499,0.0 + 02/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,95460513.48452692,0.0,112341811.7468094,0.0,62359237.2352614,0.0,92796923.21037334,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,381424260.57667627,0.0,14093307.03785499,0.0 + 02/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97464522.55529714,0.0,114389141.14110323,0.0,63889906.30266565,0.0,94704577.70162902,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,388876867.9552588,0.0,14093307.03785499,0.0 + 02/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96631824.24214694,0.0,113869584.32196439,0.0,62596892.58210665,0.0,93368784.30715592,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,384850490.7235299,0.0,14093307.03785499,15502637.741640486 + 02/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,97946161.77924831,0.0,118294751.43744822,0.0,64935994.59921848,0.0,96843882.08473166,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,396365735.4703001,0.0,56373228.15141996,38756594.35410121 + 02/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,92617806.02828568,0.0,122187823.873885,0.0,70864686.46779911,0.0,103777370.3211944,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,462639570.9876647,0.0,56373228.15141996,38756594.35410121 + 02/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73958848.39159736,0.0,120227516.94700763,0.0,73588735.39748892,0.0,106310883.97735469,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,483873811.15819939,0.0,28186614.07570998,0.0 + 02/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49197989.63610032,0.0,117101085.31446876,0.0,72460003.93039127,0.0,104845306.21717377,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,453392211.54288497,0.0,28186614.07570998,0.0 + 02/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38085783.00877439,0.0,115535484.09670255,0.0,73615047.99986123,0.0,105851431.89516235,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,406467529.27911397,0.0,28186614.07570998,0.0 + 02/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30280157.142151026,0.0,111730492.53458967,0.0,71731653.72028595,0.0,99066975.24709511,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,386342899.72474578,0.0,28186614.07570998,0.0 + 02/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28059971.675092713,0.0,99946900.13194503,0.0,65082634.05183315,0.0,90594305.7895512,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,394256133.17580488,0.0,28186614.07570998,0.0 + 02/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47586655.31926184,0.0,99347801.86680965,0.0,61792453.242584679,0.0,89273379.53536658,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,445430052.0005331,0.0,28186614.07570998,0.0 + 02/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59632464.45245736,0.0,103066896.61561397,0.0,61094978.902721319,0.0,90298720.92806724,0.0,12340.865602088448,12147.667048901549,12163.320557780658,14641.965957077193,498750809.8959122,0.0,28186614.07570998,0.0 + 02/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,91469826.7370292,0.0,122331017.33575578,0.0,70244892.7224058,0.0,103717678.3042899,0.0,14779.321926014863,14547.948884183315,14566.695401198864,17535.101303815594,608908058.1542462,0.0,35233267.594637479,0.0 + 02/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104365471.00915125,0.0,132303421.78859949,0.0,76490198.9243789,0.0,111998940.48191154,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,683160115.7679343,0.0,14093307.03785499,0.0 + 02/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,97199042.4017257,0.0,123578511.51517847,0.0,66655078.58086958,0.0,100387982.26102287,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,534887856.9200446,0.0,63419881.67034747,0.0 + 02/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,85695351.5923885,0.0,110912866.28089604,0.0,53275734.7743893,0.0,84417404.17425034,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,444873678.3493068,0.0,63419881.67034747,69761869.8373822 + 02/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,91047966.13749948,0.0,115044910.28423772,0.0,56864502.67120261,0.0,88903844.48150458,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,425394844.6550684,0.0,49326574.63249246,69761869.8373822 + 02/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,95566377.62022051,0.0,118564973.62842293,0.0,60000732.53280635,0.0,92808345.86648259,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,440655310.6661876,0.0,35233267.594637479,69761869.8373822 + 02/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99066093.52625045,0.0,121249692.96745719,0.0,62337678.590846899,0.0,95715863.66142647,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,451902949.82660499,0.0,35233267.594637479,62010550.96656194 + 02/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,104931623.02754125,0.0,126559958.35614711,0.0,67010838.44465904,0.0,101546419.13547266,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,473428621.2424335,0.0,35233267.594637479,46507913.22492146 + 02/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,114268435.82537255,0.0,135174551.2628653,0.0,75496297.59767473,0.0,111760300.56581262,0.0,2452.0228258206927,2413.6359510580639,2416.746167335702,2909.231483370747,473389476.39103206,0.0,21139960.556782485,23253956.61246073 + 02/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71896232.53460376,0.0,90556926.63614013,0.0,37784151.343991998,0.0,64157779.429420847,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,282740035.51381018,0.0,14093307.03785499,0.0 + 02/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100274460.2385716,0.0,118748251.89645475,0.0,63401718.00889029,0.0,96486600.73159924,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,397255976.44516929,0.0,14093307.03785499,0.0 + 02/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101487010.52449718,0.0,119166752.62854019,0.0,65422355.822841677,0.0,97978616.60165057,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,402399681.147183,0.0,14093307.03785499,0.0 + 02/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101919355.38108596,0.0,118884022.75701435,0.0,66354308.292340289,0.0,98438689.1973582,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,403941321.1974522,0.0,14093307.03785499,0.0 + 02/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102408338.22206804,0.0,118934564.07362776,0.0,67064362.410382408,0.0,98896684.0200803,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,405648894.29581186,0.0,14093307.03785499,0.0 + 02/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,99069116.36100027,0.0,115472440.34834533,0.0,64135648.68238224,0.0,95101905.3950082,0.0,4904.045651641385,4827.271902116127,4833.492334671404,5818.462966741494,447158893.0653496,0.0,14093307.03785499,15502637.741640486 + 02/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,96838436.02421315,0.0,116406284.86228624,0.0,64326224.57963625,0.0,95467327.73850459,0.0,19616.18260656554,19309.08760846451,19333.969338685616,23273.851866965975,666557402.3190941,0.0,56373228.15141996,38756594.35410121 + 02/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,80527359.28795164,0.0,115715896.4188433,0.0,66808882.9783534,0.0,97823010.62326843,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,617046744.3461686,0.0,56373228.15141996,38756594.35410121 + 02/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47998368.245083067,0.0,111875142.89950831,0.0,67243142.81253229,0.0,97505492.57697472,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,508909349.07973638,0.0,28186614.07570998,0.0 + 02/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28690106.524459877,0.0,109351797.6709198,0.0,66832289.786691147,0.0,96834014.42078221,0.0,9896.00467399536,9741.080874726114,9753.633251684652,11741.231791973803,449783230.53542086,0.0,28186614.07570998,0.0 + 02/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21656117.00089786,0.0,109773162.03764747,0.0,68890885.71724288,0.0,99006664.41494158,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,373674127.0503824,0.0,28186614.07570998,0.0 + 02/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17239012.81119757,0.0,105892944.14422159,0.0,66451486.213856797,0.0,91150822.47184378,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,355378147.4662175,0.0,28186614.07570998,0.0 + 02/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14310127.218107738,0.0,96429332.20893857,0.0,60857855.50013761,0.0,83847402.34796848,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,330088599.1002501,0.0,28186614.07570998,0.0 + 02/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28206843.20241037,0.0,91412541.00368598,0.0,55521871.16669997,0.0,79831919.86676508,0.0,7482.790069398141,7365.6455949486039,7375.136981093513,8878.044781683835,366938997.97720816,0.0,28186614.07570998,0.0 + 02/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64989896.91057089,0.0,103528450.09485804,0.0,60599868.06951641,0.0,89108085.97317419,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,504435717.3937827,0.0,28186614.07570998,0.0 + 02/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,79915362.65469209,0.0,113016893.48039893,0.0,63871610.02740052,0.0,94878469.14048364,0.0,12370.005842494198,12176.35109340764,12192.041564605817,14676.539739967253,536776112.9686848,0.0,35233267.594637479,0.0 + 02/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104773767.22078145,0.0,132013753.86045614,0.0,76602099.58883259,0.0,111418575.77163813,0.0,17242.54224701734,16972.607031547202,16994.477968065337,20457.618187784858,682810280.0056013,0.0,14093307.03785499,0.0 + 02/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,99801432.50327888,0.0,125452448.73136278,0.0,67733769.43691705,0.0,101756263.11044297,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,650915508.8197535,0.0,63419881.67034747,0.0 + 02/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,92702393.0850427,0.0,117684359.26932363,0.0,57750677.5418749,0.0,90424696.59706265,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,504238698.43453529,0.0,63419881.67034747,69761869.8373822 + 02/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,101699484.39238253,0.0,126088426.94178662,0.0,64006837.10483082,0.0,98745640.9846927,0.0,9686.920559282753,9535.270010833938,9547.557179487672,11493.16147109862,535486862.6182234,0.0,49326574.63249246,69761869.8373822 + 02/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,111462688.19482798,0.0,135541372.04967083,0.0,71112260.77386488,0.0,108013452.33690752,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,498017308.38745757,0.0,35233267.594637479,69761869.8373822 + 02/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,118546437.22731804,0.0,142359841.36885638,0.0,76023389.41659585,0.0,114687004.23394118,0.0,4792.485324874271,4717.458073076111,4723.536999304204,5686.100897551788,523327164.9080144,0.0,35233267.594637479,62010550.96656194 + 02/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,126829124.20782282,0.0,150481269.93895567,0.0,82433404.06223876,0.0,123004293.23918054,0.0,2381.761392685993,2344.474473766345,2347.4955684213275,2825.868975000213,518386652.9237437,0.0,35233267.594637479,46507913.22492146 + 02/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,139815149.43378688,0.0,163262904.42658789,0.0,93663158.61201483,0.0,137044880.23414798,0.0,2368.1496822499796,2331.0758571964695,2334.079686366433,2809.7192001588134,569220980.6400356,0.0,21139960.556782485,23253956.61246073 + 02/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101826569.75222898,0.0,123219664.98744279,0.0,59997022.92009835,0.0,94631324.61166349,0.0,1173.9042205508454,1155.5265309865063,1157.0155448638234,1392.7925470046399,397239842.10769459,0.0,14093307.03785499,0.0 + 02/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,135612950.51131959,0.0,156971614.75910727,0.0,88990134.22180948,0.0,131306071.65689712,0.0,1162.7709198900078,1144.567524224429,1146.0424163029705,1379.5833107547688,530279442.1653533,0.0,14093307.03785499,0.0 + 02/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,141515118.90486438,0.0,162906404.21122826,0.0,94070888.56565306,0.0,137378628.5363743,0.0,1158.7666890310614,1140.6259803465678,1142.0957933435178,1374.8324436915178,553209795.4812055,0.0,14093307.03785499,0.0 + 02/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,144509761.8885398,0.0,165424868.11026729,0.0,96515437.03635609,0.0,140165265.6153488,0.0,1158.7666890310614,1140.6259803465678,1142.0957933435178,1374.8324436915178,563954087.9135976,0.0,14093307.03785499,0.0 + 02/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,147552926.28611959,0.0,168319809.601132,0.0,99241360.144384,0.0,143351426.76718403,0.0,1151.3309669891669,1133.306665920372,1134.767047233617,1366.01024332777,575693016.523315,0.0,14093307.03785499,0.0 + 02/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,139889454.78581936,0.0,161652835.79778806,0.0,93562077.97929779,0.0,136178329.57968424,0.0,4635.066756124245,4562.503921386271,4568.383173374071,5499.329774766071,600637719.1949318,0.0,14093307.03785499,15502637.741640486 + 02/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,103771403.23366133,0.0,143146082.45218254,0.0,76990261.21872127,0.0,116009557.90591525,0.0,18604.334718240123,18313.080387590864,18336.678660847527,22073.3329720763,718296041.0699976,0.0,56373228.15141996,38756594.35410121 + 02/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,83369476.63445476,0.0,143596113.26769734,0.0,81298196.2405869,0.0,120150904.99571425,0.0,16434.659087711836,16177.371433811084,16198.217628093524,19499.095658064954,674328328.8461063,0.0,56373228.15141996,38756594.35410121 + 02/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67050290.80791867,0.0,142100183.48783077,0.0,86222869.40834347,0.0,124642577.00996027,0.0,11878.066188716688,11692.11284668127,11707.179327473368,14092.872119251275,597748750.4496946,0.0,28186614.07570998,0.0 + 02/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46772989.0780342,0.0,137756643.4836195,0.0,84980054.89252126,0.0,122541852.97641954,0.0,9584.970649748542,9434.916146152222,9447.073998608408,11372.201795103576,535472525.7532004,0.0,28186614.07570998,0.0 + 02/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40191308.401282738,0.0,140007759.52881659,0.0,87873380.0359187,0.0,126001828.39628302,0.0,4804.317246994047,4729.10476424786,4735.198698426281,5700.13902149467,465961811.39448729,0.0,28186614.07570998,0.0 + 02/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34056528.32019242,0.0,136870912.5701174,0.0,85774984.49961788,0.0,118197074.882869,0.0,4829.840566780002,4754.228511701194,4760.354820392536,5730.421466135691,447168943.5868306,0.0,28186614.07570998,0.0 + 02/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27264595.723763654,0.0,120209870.11181414,0.0,76987000.84948723,0.0,106437465.72326085,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,403372169.0055913,0.0,28186614.07570998,0.0 + 02/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29091519.794258879,0.0,112173795.08036097,0.0,68626351.66589584,0.0,98218152.21658656,0.0,7281.964102152996,7167.963595684729,7177.200248396604,8639.772437545926,417070660.1387112,0.0,28186614.07570998,0.0 + 02/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40370694.50429809,0.0,106054138.90806803,0.0,61803701.92852751,0.0,92082966.7147349,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,482407216.9821678,0.0,28186614.07570998,0.0 + 02/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64793828.85612236,0.0,112288204.11813395,0.0,62604330.78747928,0.0,95148530.70591699,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,516930609.39419189,0.0,35233267.594637479,0.0 + 02/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104174148.84826686,0.0,140122636.42428649,0.0,80706855.42060691,0.0,118703700.17022705,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,697949304.0871415,0.0,14093307.03785499,0.0 + 02/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,98696751.34681498,0.0,131674553.63609128,0.0,70462976.78974848,0.0,106574256.55995156,0.0,16991.24957169032,16725.248389931032,16746.800579592076,20159.469020940487,661650501.5563605,0.0,63419881.67034747,0.0 + 02/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,87770954.53241043,0.0,118385146.54466231,0.0,57098955.49001457,0.0,90341145.57222584,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,499272774.0805445,0.0,63419881.67034747,69761869.8373822 + 02/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,93614697.34243278,0.0,122165173.522167,0.0,60552180.05963899,0.0,94558870.68796577,0.0,9735.713802773605,9583.29938699557,9595.648446402745,11551.052791947908,516567493.5534359,0.0,49326574.63249246,69761869.8373822 + 02/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98392955.99823629,0.0,125118709.68435912,0.0,63663043.685169968,0.0,98271313.65865453,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,458446480.04719367,0.0,35233267.594637479,69761869.8373822 + 02/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101942072.03972057,0.0,127041416.52466157,0.0,65744803.89871617,0.0,100905119.3718702,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,468633868.8557423,0.0,35233267.594637479,62010550.96656194 + 02/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,107209093.71581511,0.0,131077031.12401489,0.0,69688089.07195947,0.0,105632900.04821044,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,450107342.4703868,0.0,35233267.594637479,46507913.22492146 + 02/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,115379072.89447393,0.0,138037696.27526159,0.0,77167086.46960968,0.0,114373294.6469948,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,481553092.4345901,0.0,21139960.556782485,23253956.61246073 + 02/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73550061.11575686,0.0,93806761.2498543,0.0,39446911.71696645,0.0,66976150.21818626,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,292029998.5559573,0.0,14093307.03785499,0.0 + 02/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103229506.28642905,0.0,123600585.51198891,0.0,66242592.006216857,0.0,100640444.53582907,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,411963242.59565737,0.0,14093307.03785499,0.0 + 02/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,109391988.31216395,0.0,129428806.31137723,0.0,71658138.9299376,0.0,106904718.67554562,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,435451013.0575329,0.0,14093307.03785499,0.0 + 02/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116648083.13000603,0.0,136910809.7429732,0.0,77308007.67116635,0.0,114145929.99701432,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,462940453.7064857,0.0,14093307.03785499,0.0 + 02/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,120854657.19801966,0.0,141276831.34417338,0.0,80381297.12607506,0.0,118188620.77957918,0.0,1198.1213312185678,1179.3645182690278,1180.884249826051,1421.525224387947,478629029.613173,0.0,14093307.03785499,0.0 + 02/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116495801.33325237,0.0,138112725.78187228,0.0,76813330.46755268,0.0,114069283.91546829,0.0,4778.102405577062,4703.30032106363,4709.3610035832039,5669.036112835432,516986420.93315926,0.0,14093307.03785499,15502637.741640486 + 02/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,83486119.42811872,0.0,121789876.71439697,0.0,62008242.286086078,0.0,96269158.14322257,0.0,19169.941299497084,18869.832292304443,18894.147997216816,22744.403590207152,650395367.217036,0.0,56373228.15141996,38756594.35410121 + 02/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,68069951.74875975,0.0,125084776.90618094,0.0,68266816.22336856,0.0,103060124.5456593,0.0,16904.441983730005,16639.799790954174,16661.241871373877,20056.475131474916,617424721.0230873,0.0,56373228.15141996,38756594.35410121 + 02/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50695806.03702609,0.0,125814581.9994729,0.0,74040822.69426899,0.0,108716143.52946012,0.0,12169.64225346701,11979.124233744462,11994.560558003433,14438.815989934887,541363069.1867673,0.0,28186614.07570998,0.0 + 02/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35025773.11452465,0.0,122917587.42152879,0.0,73936596.2444393,0.0,108085142.39596741,0.0,9828.653711200219,9674.784303817842,9687.251250878015,11661.322445561675,487032341.33770808,0.0,28186614.07570998,0.0 + 02/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29193139.524012127,0.0,117554636.04768983,0.0,72651358.37031524,0.0,105427187.59525389,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,399173619.4169236,0.0,28186614.07570998,0.0 + 02/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55039546.519775617,0.0,108933218.95297592,0.0,67486550.27115798,0.0,96765209.26872376,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,402868406.83773109,0.0,28186614.07570998,0.0 + 02/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62395802.37042567,0.0,102121239.92557788,0.0,62372608.083515267,0.0,90682628.83396581,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,392768358.82877656,0.0,28186614.07570998,0.0 + 02/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45316687.194465879,0.0,93466770.05450015,0.0,55867269.51190144,0.0,81826503.16975628,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,389482630.6992918,0.0,28186614.07570998,0.0 + 02/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69850232.50758825,0.0,99589503.95916325,0.0,58319826.99395572,0.0,86191155.80434364,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,502910823.72477558,0.0,28186614.07570998,0.0 + 02/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76178520.55272022,0.0,100876264.03761968,0.0,57404737.62931765,0.0,85245609.36812729,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,509246409.36550018,0.0,35233267.594637479,0.0 + 02/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,84222766.15066591,0.0,106605560.1405699,0.0,61104064.44025872,0.0,89851721.45774794,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,607141901.0780439,0.0,14093307.03785499,0.0 + 02/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,74717515.83456289,0.0,96128308.7421247,0.0,49477331.94660328,0.0,76086797.02845155,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,560488636.9885051,0.0,63419881.67034747,0.0 + 02/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,63221836.561726998,0.0,83755185.57406602,0.0,36694795.92659604,0.0,60704150.87771495,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,395278073.7611112,0.0,63419881.67034747,69761869.8373822 + 02/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,68102830.66373252,0.0,87837577.58846367,0.0,40160664.52636135,0.0,65107343.65410844,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,411882284.12422338,0.0,49326574.63249246,69761869.8373822 + 02/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74642164.4930309,0.0,93910920.18191007,0.0,45002105.13990856,0.0,71382214.54203217,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,360012878.5226369,0.0,35233267.594637479,69761869.8373822 + 02/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77601041.13151689,0.0,96204045.58212653,0.0,47083162.094231259,0.0,73939598.20483452,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,370023926.62800106,0.0,35233267.594637479,62010550.96656194 + 02/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,81262617.15652129,0.0,99159103.09325138,0.0,50203301.349087,0.0,77618764.2873438,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,345841825.6938494,0.0,35233267.594637479,46507913.22492146 + 02/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,89896483.07073751,0.0,107189628.77129308,0.0,58201855.5949244,0.0,87251210.23033779,0.0,2512.715327075371,2473.3782998834255,2476.5655002752998,2981.240819334221,380137217.47493866,0.0,21139960.556782485,23253956.61246073 + 02/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48878970.50594801,0.0,64217474.94555281,0.0,22617213.134239407,0.0,40822120.76396728,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,195334799.25353045,0.0,14093307.03785499,0.0 + 02/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76615361.6106176,0.0,91858425.70905566,0.0,46936577.27871493,0.0,72646957.93288855,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,306826191.0727155,0.0,14093307.03785499,0.0 + 02/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78694795.71967492,0.0,93266841.76272184,0.0,49319571.906302567,0.0,75280534.44264187,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,315330612.37277999,0.0,14093307.03785499,0.0 + 02/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79664265.83479308,0.0,93795839.88681522,0.0,50551078.38653269,0.0,76302988.99451877,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,319083041.6440985,0.0,14093307.03785499,0.0 + 02/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80618354.39042534,0.0,94514606.52427677,0.0,51530591.13016538,0.0,77246425.6838063,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,322678846.2701125,0.0,14093307.03785499,0.0 + 02/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77871140.1413644,0.0,91636612.9299131,0.0,48978071.51833316,0.0,73982286.310067,0.0,5017.37046901529,4938.82259833332,4945.186775346415,5952.918536681409,367543585.0654329,0.0,14093307.03785499,15502637.741640486 + 02/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,81661179.53762338,0.0,96345810.9245621,0.0,51651277.82167274,0.0,77484516.34758348,0.0,20069.48187606116,19755.29039333328,19780.74710138566,23811.674146725636,607444681.2944622,0.0,56373228.15141996,38756594.35410121 + 02/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,90114146.7264888,0.0,105667304.42819779,0.0,61963652.301049049,0.0,89825718.06737614,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,610334981.1032548,0.0,56373228.15141996,38756594.35410121 + 02/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81579642.33771175,0.0,101101772.38406784,0.0,64823136.190399538,0.0,91826305.66778933,0.0,12563.576635376856,12366.891499417125,12382.8275013765,14906.204096671105,527321055.61819818,0.0,28186614.07570998,0.0 + 02/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60241967.31636964,0.0,89206989.44646128,0.0,58255327.264711197,0.0,82988798.26311395,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,441366949.9822134,0.0,28186614.07570998,0.0 + 02/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68691615.78500088,0.0,88939849.3065962,0.0,57757814.33445489,0.0,82504840.99592223,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,373345172.8324778,0.0,28186614.07570998,0.0 + 02/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52109761.14581809,0.0,78890171.95792407,0.0,53234158.87798182,0.0,74926829.59024705,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,334611973.9824746,0.0,28186614.07570998,0.0 + 02/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52565875.319411758,0.0,78477376.44820406,0.0,51405525.225801479,0.0,73222902.21893235,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,331255720.99623957,0.0,28186614.07570998,0.0 + 02/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42512499.28058511,0.0,75469944.36724492,0.0,47447093.26404267,0.0,68350673.05862257,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,347317521.4448692,0.0,28186614.07570998,0.0 + 02/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41031463.02354506,0.0,71755032.27518644,0.0,43633204.59070946,0.0,64267158.3588112,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,409646962.7079768,0.0,28186614.07570998,0.0 + 02/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,56731880.63389514,0.0,79292503.38477044,0.0,45622259.190009627,0.0,68263718.64495869,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,438870466.3133586,0.0,35233267.594637479,0.0 + 02/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75188823.50720182,0.0,92997082.0249638,0.0,54505700.5743788,0.0,79762529.9560676,0.0,17679.75496475804,17402.975102629724,17425.400612334204,20976.354387948744,566998282.3062267,0.0,14093307.03785499,0.0 + 02/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,63472362.628688458,0.0,80825526.74658129,0.0,41303444.4412531,0.0,64029408.8837422,0.0,17709.84350992236,17432.59260600648,17455.05628088706,21012.05329823583,514625107.2024513,0.0,63419881.67034747,0.0 + 02/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49275011.51407085,0.0,65881315.24181135,0.0,27034315.218683337,0.0,46433110.79902206,0.0,10122.71913237737,9964.246075968615,9977.086024066954,12010.219842621145,340091128.6437103,0.0,63419881.67034747,69761869.8373822 + 02/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,52953473.07587613,0.0,69146320.75084038,0.0,29776376.14373076,0.0,49940565.83971395,0.0,10128.287124316925,9969.726899955647,9982.573910655108,12016.826052514107,353367426.1649517,0.0,49326574.63249246,69761869.8373822 + 02/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,58168376.957308,0.0,74228033.58452793,0.0,33314144.205251554,0.0,54771846.283994439,0.0,5065.523253775853,4986.221542265563,4992.646797655824,6010.049977695021,296278390.688094,0.0,35233267.594637479,69761869.8373822 + 02/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61141455.250785369,0.0,76756371.18812011,0.0,35376830.39909904,0.0,57384589.92600111,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,306475757.8750918,0.0,35233267.594637479,62010550.96656194 + 02/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64051655.74994215,0.0,78844851.89480667,0.0,38487961.56705984,0.0,60708580.4096641,0.0,2532.7616268879266,2493.1107711327815,2496.323398827912,3005.0249888475107,279991044.4499788,0.0,35233267.594637479,46507913.22492146 + 03/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,73557243.11611638,0.0,87949715.75780472,0.0,47043850.59987478,0.0,71096420.98569717,0.0,2531.3778309285105,2491.748638757257,2494.959511205792,3003.3831677644027,317524519.39465448,0.0,21139960.556782485,23253956.61246073 + 03/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33219131.368526989,0.0,46720678.146502818,0.0,11707544.947571863,0.0,26730914.99519012,0.0,1264.9888221373117,1245.1851861433207,1246.7897343490759,1500.860949873988,137306438.3508051,0.0,14093307.03785499,0.0 + 03/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60685997.90664565,0.0,73580095.90229188,0.0,36544153.06926158,0.0,57326138.50852557,0.0,1264.2805603331606,1244.4880123098397,1246.0916621359514,1500.020624279378,247053956.47933466,0.0,14093307.03785499,0.0 + 03/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62608498.579314608,0.0,74988992.89238845,0.0,38517974.43048737,0.0,59676422.4752933,0.0,1264.2805603331606,1244.4880123098397,1246.0916621359514,1500.020624279378,254709459.47009374,0.0,14093307.03785499,0.0 + 03/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63482798.12941868,0.0,75533930.82415565,0.0,39703077.349120099,0.0,60667527.14615717,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,258310218.69458059,0.0,14093307.03785499,0.0 + 03/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64396302.67848991,0.0,76275975.97541808,0.0,40514805.8926733,0.0,61479655.837613,0.0,1265.6889154642552,1245.8743193786286,1247.479755602896,1501.6915838822013,261605384.85177503,0.0,14093307.03785499,0.0 + 03/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58810096.47707623,0.0,71325425.34770651,0.0,36372477.46412207,0.0,56230974.91871826,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,298430515.1905391,0.0,14093307.03785499,15502637.741640486 + 03/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44448012.55163574,0.0,66502877.24603517,0.0,35373743.45162888,0.0,53872364.13297051,0.0,20299.800599501148,19982.003434191898,20007.752285137543,24084.93852028101,503945178.8030721,0.0,56373228.15141996,38756594.35410121 + 03/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,31374797.68594073,0.0,64528411.9599548,0.0,37991573.88440032,0.0,56552627.62370198,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,457275062.24488559,0.0,56373228.15141996,38756594.35410121 + 03/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14525957.296729306,0.0,55202827.573048558,0.0,34701725.42240967,0.0,51180114.24699609,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,346461616.22634348,0.0,28186614.07570998,0.0 + 03/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5060782.504296597,0.0,47807914.43853909,0.0,31800246.20165326,0.0,46841132.2431619,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,284699807.7088243,0.0,28186614.07570998,0.0 + 03/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6550074.831364685,0.0,45094215.23399569,0.0,30342865.00941916,0.0,44845974.06808083,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,203661704.97168405,0.0,28186614.07570998,0.0 + 03/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,41529064.40263979,0.0,28341561.639382148,0.0,39711950.41084819,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,186411152.28169377,0.0,28186614.07570998,0.0 + 03/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4250202.3473495929,0.0,38145070.46179967,0.0,25831121.462679965,0.0,37337101.38472767,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,182392071.48538057,0.0,28186614.07570998,0.0 + 03/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19630375.96673901,0.0,41711991.49197424,0.0,25748530.797948917,0.0,38887785.56358078,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,241331566.00780118,0.0,28186614.07570998,0.0 + 03/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24113254.708557417,0.0,44513447.8505203,0.0,25814754.763642558,0.0,39772801.06533727,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,326469062.03398796,0.0,28186614.07570998,0.0 + 03/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,32868987.3765299,0.0,51459609.61710692,0.0,27655675.52173885,0.0,43247113.75497885,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,347486189.9162849,0.0,35233267.594637479,0.0 + 03/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46835694.82541365,0.0,63522552.324648048,0.0,34725832.53648175,0.0,52782366.16656209,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,466766461.25398829,0.0,14093307.03785499,0.0 + 03/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,39690673.0834023,0.0,55406114.307832468,0.0,24548324.59285583,0.0,40939928.220544788,0.0,17936.506471112665,17655.70711625542,17678.45829695528,21280.98024943098,428970987.8861511,0.0,63419881.67034747,0.0 + 03/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,30626836.80218683,0.0,45556213.95221267,0.0,13559677.849313654,0.0,27857225.716476855,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,270789686.64136347,0.0,63419881.67034747,69761869.8373822 + 03/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,35939249.20156881,0.0,50050916.123420599,0.0,17338670.279215579,0.0,32650683.90591039,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,289169251.8312888,0.0,49326574.63249246,69761869.8373822 + 03/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40276484.67111434,0.0,53717271.62228165,0.0,20698088.074700685,0.0,36800142.93239801,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,228086853.4610814,0.0,35233267.594637479,69761869.8373822 + 03/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43678635.36410392,0.0,56686946.8481606,0.0,23306297.7382451,0.0,40035878.99286931,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,240226668.9019314,0.0,35233267.594637479,62010550.96656194 + 03/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47172997.19999223,0.0,59564760.673952389,0.0,26499649.593134725,0.0,43716649.78093527,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,215251490.328308,0.0,35233267.594637479,46507913.22492146 + 03/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,58509684.701355438,0.0,71014144.68932534,0.0,36394771.92660362,0.0,56204643.64626528,0.0,2550.953264868551,2511.0176156271725,2514.253318119148,3026.6086728940088,260293443.30098165,0.0,21139960.556782485,23253956.61246073 + 03/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28115428.01620248,0.0,39164184.26374834,0.0,8364317.653452499,0.0,22394306.112877978,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,117074827.72717898,0.0,14093307.03785499,0.0 + 03/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52191721.83165677,0.0,63965167.97726587,0.0,30627517.889444159,0.0,49101764.037048507,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,214894689.72351805,0.0,14093307.03785499,0.0 + 03/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55631974.308227498,0.0,67020096.94108112,0.0,33529676.528421888,0.0,52732164.884254667,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,227898174.0007853,0.0,14093307.03785499,0.0 + 03/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57822456.44012537,0.0,68947308.2755699,0.0,35602524.51296063,0.0,54969966.732707288,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,236326517.30016334,0.0,14093307.03785499,0.0 + 03/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59226214.72157605,0.0,70151818.18498644,0.0,36916061.80962138,0.0,56361050.62829318,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,241639406.6832772,0.0,14093307.03785499,0.0 + 03/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52916403.30136156,0.0,64253506.17448555,0.0,31845724.463771427,0.0,49871915.35431346,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,217871810.63273213,0.0,14093307.03785499,15502637.741640486 + 03/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,43664388.27270937,0.0,62161741.426026407,0.0,32964681.219510877,0.0,49819425.66323656,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,264547281.93668363,0.0,56373228.15141996,38756594.35410121 + 03/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37132512.20806431,0.0,57963175.129924159,0.0,33046014.456592364,0.0,47099945.53890053,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,366300336.1023709,0.0,56373228.15141996,38756594.35410121 + 03/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60332006.733543109,0.0,75058770.87124111,0.0,44691517.27634937,0.0,65434170.340530838,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,436367456.9088242,0.0,28186614.07570998,0.0 + 03/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56876494.19882028,0.0,70075099.03723948,0.0,42584478.40741511,0.0,62118633.97771524,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,422951980.5175712,0.0,28186614.07570998,0.0 + 03/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50264570.28689416,0.0,66346000.11513068,0.0,39410792.915058199,0.0,57918516.53239569,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,329182743.5927142,0.0,28186614.07570998,0.0 + 03/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17409657.71518643,0.0,53699735.22585336,0.0,34439002.87686402,0.0,48081716.41169706,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,268775808.89942,0.0,28186614.07570998,0.0 + 03/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,43996303.52190663,0.0,28678321.471971014,0.0,39722916.38388978,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,227640405.1210029,0.0,28186614.07570998,0.0 + 03/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,35905193.488426338,0.0,21386791.868891818,0.0,31959169.744278574,0.0,7701.798060355234,7581.224974951363,7590.9941571311369,9137.889402905457,204494018.84483219,0.0,28186614.07570998,0.0 + 03/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,35856304.135443139,0.0,18669481.55833592,0.0,30567747.886917063,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,353993548.98157897,0.0,28186614.07570998,0.0 + 03/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26957879.69285745,0.0,48748226.35204129,0.0,24278177.09239901,0.0,39534881.88974908,0.0,23105.394181065705,22743.674924854095,22772.982471393407,27413.668208716368,485247756.2567532,0.0,35233267.594637479,0.0 + 03/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45323025.15987764,0.0,62506089.37267466,0.0,32800869.29021667,0.0,50798253.67227313,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,460328252.89592489,0.0,14093307.03785499,0.0 + 03/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37582737.095361549,0.0,53399482.51678032,0.0,22806362.612437525,0.0,38709709.73057489,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,421655017.0594567,0.0,63419881.67034747,0.0 + 03/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,25572006.33870901,0.0,40271788.003118429,0.0,9744382.333573498,0.0,22713926.744066568,0.0,15418.301410280086,15176.925025420862,15196.482042392654,18293.226070549856,329007867.7945839,0.0,63419881.67034747,69761869.8373822 + 03/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,30451091.325608195,0.0,44234504.96893476,0.0,13398204.289546332,0.0,27206948.430458636,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,307362188.58660706,0.0,49326574.63249246,69761869.8373822 + 03/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,35604075.25906057,0.0,48814095.31891142,0.0,17182095.871524104,0.0,32061405.39947477,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,287318823.50661817,0.0,35233267.594637479,69761869.8373822 + 03/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38258692.412646967,0.0,50897042.85637823,0.0,18858739.2536012,0.0,34153436.913954269,0.0,7709.150705140043,7588.462512710431,7598.241021196327,9146.613035274928,257520793.6241389,0.0,35233267.594637479,62010550.96656194 + 03/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42194108.83008865,0.0,54254953.44291098,0.0,22154368.2280305,0.0,38112416.056523818,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,233617768.0159261,0.0,35233267.594637479,46507913.22492146 + 03/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,54202862.10858403,0.0,66752929.331891,0.0,31494235.9381572,0.0,50620384.485315579,0.0,2571.636538009163,2531.3770882683077,2534.639026018829,3051.1485869462715,241550096.32522107,0.0,21139960.556782485,23253956.61246073 + 03/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16192991.153015197,0.0,25919553.76633117,0.0,8275.599520333344,0.0,8726145.185329849,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,70086807.93483317,0.0,14093307.03785499,0.0 + 03/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42164856.15734464,0.0,52504336.78163363,0.0,18498666.516440486,0.0,36668999.47956402,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,169076701.1656194,0.0,14093307.03785499,0.0 + 03/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44803593.77261208,0.0,54573151.68559191,0.0,23154617.576784694,0.0,39648322.96310008,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,181435655.14608474,0.0,14093307.03785499,0.0 + 03/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45341395.56855371,0.0,54564196.67257404,0.0,24145550.64817704,0.0,40277335.98027071,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,183584448.01757149,0.0,14093307.03785499,0.0 + 03/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41278426.15644452,0.0,49735675.36090548,0.0,21484850.46918843,0.0,36149631.503577429,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,167971435.92872618,0.0,14093307.03785499,0.0 + 03/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30881887.337019244,0.0,38796660.954234387,0.0,14139953.74883834,0.0,25942797.247871277,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,129076407.04901836,0.0,14093307.03785499,15502637.741640486 + 03/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,25584203.08573558,0.0,37558161.507853109,0.0,17710083.515593966,0.0,27889908.38369292,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,128065208.93148586,0.0,56373228.15141996,38756594.35410121 + 03/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,16447028.922459927,0.0,37194136.981635209,0.0,20914954.64028559,0.0,30885993.849908294,0.0,5165.463703289985,5084.597405398679,5091.149428129604,6128.625506082048,182733524.14873014,0.0,56373228.15141996,38756594.35410121 + 03/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,30340459.59919569,0.0,16094740.064972189,0.0,25907531.43150433,0.0,7745.09004676023,7623.839217233076,7633.6633122135749,9189.25369221827,188233377.66200275,0.0,28186614.07570998,0.0 + 03/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1981833.1764662897,28361904.28473714,0.0,16220400.204137598,0.0,25628127.71478349,0.0,7751.467660694694,7630.116988431653,7639.9491729611,9196.82048770302,186196507.7189039,1981833.1764662897,28186614.07570998,0.0 + 03/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2424238.1005785248,28449285.212136367,0.0,17631473.762872377,0.0,26910632.405985945,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,150315441.7244918,2424238.1005785248,28186614.07570998,0.0 + 03/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,28726559.639829223,0.0,17414572.908662574,0.0,25941172.847496146,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,149429770.35536189,0.0,28186614.07570998,0.0 + 03/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,25474752.48797376,0.0,15611438.664501992,0.0,23405861.095838686,0.0,7751.467660694694,7630.116988431653,7639.9491729611,9196.82048770302,180478127.76356013,0.0,28186614.07570998,0.0 + 03/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11103046.02797686,0.0,28873931.615084415,0.0,16172249.400182464,0.0,25444376.60166189,0.0,10335.290214259592,10173.489317908874,10186.598897281467,12262.42731693736,236241704.33189989,0.0,28186614.07570998,0.0 + 03/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11624175.943675466,0.0,28344342.399900304,0.0,14390596.147490733,0.0,23816112.198632547,0.0,12919.11276782449,12716.861647386091,12733.248621601833,15328.034146171698,271485352.5484419,0.0,28186614.07570998,0.0 + 03/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12396993.818551265,0.0,27060866.26771674,0.0,10583623.794945918,0.0,20517341.805200794,0.0,15496.391109869955,15253.792216196032,15273.448284388809,18385.876518246147,302433054.94973817,0.0,35233267.594637479,0.0 + 03/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34441607.59994088,0.0,44933297.327030587,0.0,22028748.640253344,0.0,35542491.80014903,0.0,18079.122961514946,17796.09091889537,17819.02299845361,21450.189271287163,407466079.50791779,0.0,14093307.03785499,0.0 + 03/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,30673449.83690133,0.0,40632596.240361679,0.0,15389953.043342026,0.0,27709677.658433778,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,268843144.469963,0.0,63419881.67034747,0.0 + 03/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,20749523.425775123,0.0,30487866.3780784,0.0,4238318.7003564559,0.0,14341066.322539978,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,185574949.44358976,0.0,63419881.67034747,69761869.8373822 + 03/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,25646111.849486866,0.0,35029594.860174339,0.0,7888156.715649225,0.0,19054045.293957224,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,164790025.13049419,0.0,49326574.63249246,69761869.8373822 + 03/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30575820.22898194,0.0,39694944.729888338,0.0,11785667.76087086,0.0,24073001.829928176,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,183258956.15197984,0.0,35233267.594637479,69761869.8373822 + 03/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34902613.141500089,0.0,43934285.44238517,0.0,15035284.559920267,0.0,28306862.98568568,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,199252972.90979363,0.0,35233267.594637479,62010550.96656194 + 03/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40647878.59886375,0.0,49629350.41452182,0.0,19805327.754120895,0.0,34322375.386751357,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,221428808.74624173,0.0,35233267.594637479,46507913.22492146 + 03/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,47990166.06993248,0.0,56609287.04178685,0.0,27011409.615906776,0.0,42893626.869694288,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,213069250.39847563,0.0,21139960.556782485,23253956.61246073 + 03/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11575230.517681072,0.0,18920019.703144965,0.0,0.0,0.0,4083099.987325177,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,53818192.43878783,0.0,14093307.03785499,0.0 + 03/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37285619.53611585,0.0,45148936.20635143,0.0,15219315.85757858,0.0,31146605.43024411,0.0,1284.8584508566738,1264.7437521184057,1266.373503532721,1524.4355058791544,148025957.39488305,0.0,14093307.03785499,0.0 + 03/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40628013.031483788,0.0,48371421.74689322,0.0,21701312.84965708,0.0,36103772.867897007,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,166011664.45313699,0.0,14093307.03785499,0.0 + 03/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44233465.769539099,0.0,52202777.56806272,0.0,24965013.515741424,0.0,40036443.57137515,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,180608125.25911237,0.0,14093307.03785499,0.0 + 03/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46485963.66864126,0.0,54566861.026642788,0.0,27019190.58309498,0.0,42448104.647383827,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,189690544.7601568,0.0,14093307.03785499,0.0 + 03/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43908377.68680495,0.0,52788813.37473084,0.0,24992528.97086761,0.0,40102667.029592517,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,238311297.0205484,0.0,14093307.03785499,15502637.741640486 + 03/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,49714953.465579938,0.0,62842579.60768476,0.0,35338108.67386772,0.0,52179844.28476893,0.0,20379.844481671935,20060.79421445513,20086.644595363152,24179.90753101383,505021372.9929159,0.0,56373228.15141996,38756594.35410121 + 03/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,39399065.14687587,0.0,59866312.406882788,0.0,34923664.80839628,0.0,49324335.60352254,0.0,17811.28758606068,17532.44855620849,17555.040905672984,21132.412822215498,450025661.498245,0.0,56373228.15141996,38756594.35410121 + 03/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36702123.70486522,0.0,64076794.77651408,0.0,40981199.020774308,0.0,59522024.3301999,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,391648058.64133039,0.0,28186614.07570998,0.0 + 03/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31255290.52924558,0.0,61751443.10689223,0.0,40681439.48458795,0.0,58651965.281627599,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,344813081.88286069,0.0,28186614.07570998,0.0 + 03/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28284025.676099317,0.0,59852939.59167427,0.0,40182353.41777417,0.0,57493996.51836365,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,262153711.87877534,0.0,28186614.07570998,0.0 + 03/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3711111.6852003878,0.0,52758562.6398722,0.0,36846402.4007227,0.0,49715300.572475869,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,219550287.2568236,0.0,28186614.07570998,0.0 + 03/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,43869185.88494868,0.0,30879104.566968405,0.0,42233755.18704094,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,193500955.59751047,0.0,28186614.07570998,0.0 + 03/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1344177.5569606485,36437065.79971186,0.0,23786618.504075003,0.0,34778703.48421149,0.0,7678.3694773040019,7558.163170738395,7567.90263542957,9110.092283439166,209894687.0288784,1344177.5569606485,28186614.07570998,0.0 + 03/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,656142.7277900134,33495954.282059019,0.0,17662277.734809385,0.0,29666565.608948675,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,272529045.96975687,656142.7277900134,28186614.07570998,0.0 + 03/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9412646.506606374,0.0,43082795.74991986,0.0,20858473.021795505,0.0,35629654.28622352,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,300280844.4609264,0.0,35233267.594637479,0.0 + 03/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44089523.245660949,0.0,64967540.54742767,0.0,34419282.28843114,0.0,53775664.82823558,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,465068195.76468899,0.0,14093307.03785499,0.0 + 03/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,40490907.30058838,0.0,59793016.972925599,0.0,26435848.782359873,0.0,44520602.027380909,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,438722539.3597002,0.0,63419881.67034747,0.0 + 03/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,31472017.007058827,0.0,49301893.09004114,0.0,15129048.572590841,0.0,30869583.95972036,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,279619493.6445228,0.0,63419881.67034747,69761869.8373822 + 03/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,39527316.483909297,0.0,56910990.4395047,0.0,20610000.983444219,0.0,38149251.052878659,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,307670502.4402442,0.0,49326574.63249246,69761869.8373822 + 03/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46001227.716897319,0.0,62562478.6272744,0.0,25045675.03519525,0.0,43991741.73591553,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,253941519.7901464,0.0,35233267.594637479,69761869.8373822 + 03/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51003332.67746549,0.0,67172091.3558687,0.0,28466272.897186165,0.0,48459432.30744971,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,271337600.97822377,0.0,35233267.594637479,62010550.96656194 + 03/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57551332.72133988,0.0,73193229.39931599,0.0,33443484.7112098,0.0,54726116.373857367,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,257032399.07584984,0.0,35233267.594637479,46507913.22492146 + 03/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,69335826.7238736,0.0,84584922.10709214,0.0,43597757.22238984,0.0,67308857.36517146,0.0,2540.717268136974,2500.9418653339519,2504.1645841932638,3014.464053504009,302844399.39473256,0.0,21139960.556782485,23253956.61246073 + 03/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31715578.0311681,0.0,45301706.88511782,0.0,10562992.367001269,0.0,25566878.724961677,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,132131417.34704899,0.0,14093307.03785499,0.0 + 03/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65821138.770319927,0.0,80141542.20226704,0.0,38490193.353771749,0.0,61571509.32309472,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,264947268.89518247,0.0,14093307.03785499,0.0 + 03/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73683241.47151235,0.0,87858441.18084961,0.0,43747303.88950989,0.0,68900582.15997835,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,293085579.1478226,0.0,14093307.03785499,0.0 + 03/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78617789.11648381,0.0,92556215.05038607,0.0,47468698.95952309,0.0,73468134.52345509,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,310973600.752474,0.0,14093307.03785499,0.0 + 03/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79457784.00368022,0.0,92955422.02813062,0.0,48259022.47027746,0.0,74104023.28226999,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,313699137.0300873,0.0,14093307.03785499,0.0 + 03/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76038016.37280658,0.0,89312485.8672443,0.0,45431871.78230606,0.0,70345740.99530436,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,356712156.8015512,0.0,14093307.03785499,15502637.741640486 + 03/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,79143619.24589326,0.0,94203717.33835943,0.0,48188599.54594684,0.0,74225691.05601469,0.0,20169.882983876745,19854.11970307621,19879.703762781486,23930.796228602936,597565836.8282288,0.0,56373228.15141996,38756594.35410121 + 03/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,90532907.90967837,0.0,106616467.72230911,0.0,60073244.249571237,0.0,88723187.17702498,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,610024490.4953464,0.0,56373228.15141996,38756594.35410121 + 03/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,105450767.29662162,0.0,120137738.44860895,0.0,72018688.27964746,0.0,103522150.17883137,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,589471678.8181561,0.0,28186614.07570998,0.0 + 03/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,103856241.85588801,0.0,118567976.19860335,0.0,70910985.05471522,0.0,102154715.5570325,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,546163786.3577963,0.0,28186614.07570998,0.0 + 03/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,97653136.78276122,0.0,112066881.63883625,0.0,67751941.6535703,0.0,97519618.81083742,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,450442631.29650887,0.0,28186614.07570998,0.0 + 03/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,88406142.94621672,0.0,103923165.7079339,0.0,64089435.67354405,0.0,92185618.23046406,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,424055414.9686624,0.0,28186614.07570998,0.0 + 03/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86236350.18606965,0.0,101587093.0522317,0.0,62345191.1454716,0.0,89969567.44998908,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,415722243.6176519,0.0,28186614.07570998,0.0 + 03/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86390148.27422366,0.0,101213831.57513286,0.0,61535497.700201798,0.0,89021608.47201169,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,451537148.69740489,0.0,28186614.07570998,0.0 + 03/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86768056.44864026,0.0,101234190.10194633,0.0,60909833.53291237,0.0,88317378.02271219,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,526458310.5635012,0.0,28186614.07570998,0.0 + 03/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87050928.23548867,0.0,101482576.63063501,0.0,59572200.51966569,0.0,87052690.42789442,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,524387248.2709738,0.0,35233267.594637479,0.0 + 03/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94647435.13043277,0.0,108777951.124493,0.0,63869256.08224699,0.0,92733697.74392115,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,624948733.5213,0.0,14093307.03785499,0.0 + 03/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,81477275.47016384,0.0,95776836.01639849,0.0,50169116.6027997,0.0,76312759.44406109,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,568656380.9736292,0.0,63419881.67034747,0.0 + 03/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,66974568.4490117,0.0,81320122.40707925,0.0,35856134.00002554,0.0,58939676.69894422,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,394473583.52089276,0.0,63419881.67034747,69761869.8373822 + 03/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,69853918.6203451,0.0,84152111.48735322,0.0,38406066.547729279,0.0,62146657.10665544,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,405941835.7279151,0.0,49326574.63249246,69761869.8373822 + 03/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72994644.42852882,0.0,87276786.73357088,0.0,41207318.33607846,0.0,65674257.92507225,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,342844548.40616646,0.0,35233267.594637479,69761869.8373822 + 03/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74639156.04304333,0.0,88800930.8036004,0.0,42742195.9009479,0.0,67520714.53203459,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,349394538.2625422,0.0,35233267.594637479,62010550.96656194 + 03/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77681164.93202028,0.0,91597570.27556414,0.0,45809492.53240618,0.0,71106674.22431968,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,324040672.4557683,0.0,35233267.594637479,46507913.22492146 + 03/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,85704261.41043018,0.0,99487738.12894383,0.0,53629390.03808497,0.0,80564959.07199168,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,357232119.14090868,0.0,21139960.556782485,23253956.61246073 + 03/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44293867.808801669,0.0,57404117.58359341,0.0,18809594.447159597,0.0,35563546.50940924,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106244,174967136.7949364,0.0,14093307.03785499,0.0 + 03/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71055251.24992806,0.0,83536121.13460674,0.0,41780496.46869849,0.0,65487283.66618824,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,280782037.76515057,0.0,14093307.03785499,0.0 + 03/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73161805.85357352,0.0,85425044.45225485,0.0,44253690.093558508,0.0,68183707.65609262,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,289920258.5014519,0.0,14093307.03785499,0.0 + 03/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74654254.14181708,0.0,86931130.11507198,0.0,45923347.78433939,0.0,69972858.9862905,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,296377601.4734914,0.0,14093307.03785499,0.0 + 03/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75129145.6027828,0.0,87255835.54081898,0.0,46727520.12298661,0.0,70632299.56600607,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,298640811.2785669,0.0,14093307.03785499,0.0 + 03/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71061874.13102478,0.0,83437687.55680813,0.0,43433312.94392541,0.0,66472624.17221513,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,339989540.5878633,0.0,14093307.03785499,15502637.741640486 + 03/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65794893.49388049,0.0,82083967.18481548,0.0,41721466.671329427,0.0,64437684.49866807,0.0,20205.434245437762,19889.114403005402,19914.743556953377,23972.97644336999,556374178.9842529,0.0,56373228.15141996,38756594.35410121 + 03/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65023658.33451441,0.0,87423776.39052153,0.0,48948139.107956279,0.0,73008495.34340894,0.0,17679.754964758045,17402.975102629724,17425.400612334204,20976.354387948744,538948215.4200157,0.0,56373228.15141996,38756594.35410121 + 03/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68069833.21057934,0.0,90454748.24845487,0.0,56723765.40950732,0.0,81434224.12111478,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,486223848.76737168,0.0,28186614.07570998,0.0 + 03/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,66770777.09754029,0.0,85711376.05702488,0.0,54372586.603823248,0.0,78294824.49778575,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,437023654.9665751,0.0,28186614.07570998,0.0 + 03/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62858826.34397147,0.0,82580002.64157854,0.0,52371101.229613367,0.0,75602590.13069941,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,349446592.2982738,0.0,28186614.07570998,0.0 + 03/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57384438.16984545,0.0,81437344.90233146,0.0,51064529.535373877,0.0,73349347.56522762,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,339382026.89636906,0.0,28186614.07570998,0.0 + 03/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65380487.979873109,0.0,83659388.18825461,0.0,50413654.53715275,0.0,74016284.6853868,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,349810212.06553128,0.0,28186614.07570998,0.0 + 03/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75863859.42085126,0.0,91047645.64863132,0.0,52606055.88340278,0.0,77873905.10299209,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,412026679.3172112,0.0,28186614.07570998,0.0 + 03/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79100017.78354167,0.0,93042288.67948708,0.0,53110949.80932388,0.0,78620445.14239028,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,495170976.311124,0.0,28186614.07570998,0.0 + 03/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,78948495.93934885,0.0,91991875.11942789,0.0,51267022.7477045,0.0,76278485.61935178,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,490190127.76977279,0.0,35233267.594637479,0.0 + 03/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78249347.68054278,0.0,90127540.60032873,0.0,51053972.21969241,0.0,75220532.16488736,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,563551408.066334,0.0,14093307.03785499,0.0 + 03/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,63244805.360293168,0.0,74924264.14421398,0.0,36057784.38436642,0.0,57037421.95611869,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,500164291.245875,0.0,63419881.67034747,0.0 + 03/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,44795457.66640392,0.0,56062110.69585275,0.0,19018844.157104415,0.0,35705662.404251899,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,309629828.10758087,0.0,63419881.67034747,69761869.8373822 + 03/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,44651893.70436017,0.0,55569891.12050487,0.0,19379418.53687369,0.0,35941453.52684836,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,309690510.4491919,0.0,49326574.63249246,69761869.8373822 + 03/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45136923.26469101,0.0,55519978.644433047,0.0,20610045.489324236,0.0,36979476.91972122,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,235320351.09847195,0.0,35233267.594637479,69761869.8373822 + 03/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43037061.89205679,0.0,52466595.60399945,0.0,20007764.460286954,0.0,35349089.725005019,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,227990033.28365878,0.0,35233267.594637479,62010550.96656194 + 03/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45787150.53610214,0.0,55072583.275631617,0.0,22876026.28616053,0.0,38726376.22168677,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,200999099.70973224,0.0,35233267.594637479,46507913.22492146 + 03/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,56567009.5173558,0.0,66558887.27883361,0.0,32183320.930871205,0.0,50830696.21299476,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,244651852.23604734,0.0,21139960.556782485,23253956.61246073 + 03/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18056384.512598754,0.0,26254748.865322774,0.0,686532.5818852782,0.0,9396984.551800522,0.0,1286.8960473311816,1266.7494496399918,1268.3817856002809,1526.8530363163184,73650619.6596033,0.0,14093307.03785499,0.0 + 03/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39701339.22152616,0.0,48125149.60787659,0.0,17176754.530801409,0.0,33458590.894194154,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,157730315.94947393,0.0,14093307.03785499,0.0 + 03/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36022115.68019299,0.0,43133921.94666235,0.0,17659249.997442224,0.0,30691449.460630489,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,146821844.84598313,0.0,14093307.03785499,0.0 + 03/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37567237.565059628,0.0,44583170.26061474,0.0,19509994.752176498,0.0,32577003.88010723,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,153505888.1530337,0.0,14093307.03785499,0.0 + 03/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41663319.82951151,0.0,48967902.80630338,0.0,22917745.796451197,0.0,36846177.02928827,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,169634987.69219098,0.0,14093307.03785499,0.0 + 03/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35352657.08361735,0.0,43455716.62313599,0.0,18023590.63441765,0.0,30755283.966144269,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,204489169.76568745,0.0,14093307.03785499,15502637.741640486 + 03/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,31155786.263437988,0.0,46552743.79330063,0.0,22867635.823376627,0.0,35485886.62172932,0.0,20520.811428769444,20199.554297698473,20225.583485136696,24347.15943270584,443117243.6213622,0.0,56373228.15141996,38756594.35410121 + 03/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,22665349.115456985,0.0,53114640.60390495,0.0,29229343.43910923,0.0,44155619.977579157,0.0,17936.50647111266,17655.70711625542,17678.45829695528,21280.98024943098,417550900.8175659,0.0,56373228.15141996,38756594.35410121 + 03/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7783376.156009604,0.0,50137900.291694659,0.0,28597070.52377252,0.0,43363824.43828778,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,321586419.7537043,0.0,28186614.07570998,0.0 + 03/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11139697.189868652,0.0,54135085.6827059,0.0,33201804.708818035,0.0,49171497.769901629,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,300837817.67246767,0.0,28186614.07570998,0.0 + 03/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21298894.16315496,0.0,56337228.80736092,0.0,35907026.91907882,0.0,52358879.70600073,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,242583728.93317134,0.0,28186614.07570998,0.0 + 03/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23101493.70440031,0.0,55801732.71660125,0.0,35969004.88310765,0.0,50842422.91403715,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,242396353.5557223,0.0,28186614.07570998,0.0 + 03/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9269176.682017474,0.0,50172203.48553872,0.0,32444944.874784568,0.0,45793907.9683125,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,214444030.79053266,0.0,28186614.07570998,0.0 + 03/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,822769.065134754,0.0,43841718.51374302,0.0,26260264.676871189,0.0,38939203.22205199,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,225009652.14762009,0.0,28186614.07570998,0.0 + 03/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7937731.086808,0.0,41755905.63284361,0.0,21474753.30089215,0.0,35038628.21776905,0.0,12825.507142980903,12624.721436061543,12640.989678210439,15216.97464544115,298116512.6880113,0.0,28186614.07570998,0.0 + 03/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23042003.950495006,0.0,45247342.76933893,0.0,20235671.769116507,0.0,35800413.464432548,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,316396871.5254421,0.0,35233267.594637479,0.0 + 03/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53540382.6203524,0.0,68976014.92181354,0.0,36497222.63386087,0.0,56897158.88262786,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,483992810.6207082,0.0,14093307.03785499,0.0 + 03/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,51773480.36987883,0.0,66874838.60473128,0.0,30944904.150759728,0.0,50397008.394675198,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,467472395.7964904,0.0,63419881.67034747,0.0 + 03/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41446487.61717356,0.0,56039113.64674581,0.0,19610498.718140376,0.0,36631485.98248795,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,306408379.3142756,0.0,63419881.67034747,69761869.8373822 + 03/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,45487243.60044415,0.0,59469676.40254149,0.0,22832296.33672759,0.0,40605198.91503906,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,321241366.26986399,0.0,49326574.63249246,69761869.8373822 + 03/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49592401.59510306,0.0,63111594.420462299,0.0,26090822.21193625,0.0,44617724.58636369,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,259836018.32142116,0.0,35233267.594637479,69761869.8373822 + 03/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54260387.90065543,0.0,67581350.9820711,0.0,29633439.867195947,0.0,49131518.26898248,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,276843168.7591586,0.0,35233267.594637479,62010550.96656194 + 03/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,59393021.14618498,0.0,72450435.3369507,0.0,34079310.10725142,0.0,54577032.81324878,0.0,2547.480560208992,2507.5992768068915,2510.830574420394,3022.4884413767288,258618035.2737627,0.0,35233267.594637479,46507913.22492146 + 03/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,69248613.00283417,0.0,82298041.45944815,0.0,43071236.810465518,0.0,65745522.6788106,0.0,2544.4696551515264,2504.635508029784,2507.862986524712,3018.9161174593575,298436597.3133538,0.0,21139960.556782485,23253956.61246073 + 03/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37612608.96581622,0.0,48863975.2915542,0.0,13984473.294493672,0.0,31492711.552224868,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,150938030.4428891,0.0,14093307.03785499,0.0 + 03/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62751086.243950989,0.0,74828716.87662031,0.0,37007606.0643301,0.0,58169117.71765925,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,251679412.14828966,0.0,14093307.03785499,0.0 + 03/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66734885.40508944,0.0,78685082.40621749,0.0,40549240.18211187,0.0,62621984.34981234,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,267487202.78920365,0.0,14093307.03785499,0.0 + 03/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69066342.29339719,0.0,81019021.58721628,0.0,42699735.46749706,0.0,65107892.98077612,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,276789002.7748591,0.0,14093307.03785499,0.0 + 03/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71277958.89141107,0.0,83148373.37501812,0.0,44679358.73612489,0.0,67371590.57936742,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,285340044.6845475,0.0,14093307.03785499,0.0 + 03/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63039203.64374614,0.0,75948413.37813741,0.0,38306407.44583034,0.0,59488978.84617375,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,312234055.7243913,0.0,14093307.03785499,15502637.741640486 + 03/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,45245671.61843047,0.0,69275289.73618153,0.0,35011158.708366099,0.0,54458733.929955858,0.0,20169.882983876745,19854.11970307621,19879.703762781486,23930.796228602936,505795063.6349485,0.0,56373228.15141996,38756594.35410121 + 03/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,32740044.952012239,0.0,70756118.70763332,0.0,40193879.19001573,0.0,60455002.388157118,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,469502834.1266199,0.0,56373228.15141996,38756594.35410121 + 03/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22848993.32549504,0.0,65989051.69546517,0.0,40872735.56081003,0.0,60622436.01381463,0.0,12646.357106032516,12448.37602636199,12464.417029451284,15004.419965179217,379562069.0528748,0.0,28186614.07570998,0.0 + 03/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34122196.56735808,0.0,66670273.33973454,0.0,43044996.61342713,0.0,63275468.41245363,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,359181078.8377954,0.0,28186614.07570998,0.0 + 03/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32532424.73719799,0.0,63728011.72405769,0.0,42135396.80407974,0.0,61662622.030781317,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,276092527.2485278,0.0,28186614.07570998,0.0 + 03/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33312546.93414234,0.0,63313752.41817671,0.0,41818289.316018547,0.0,60266373.9897985,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,274857329.3817268,0.0,28186614.07570998,0.0 + 03/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34298618.66866283,0.0,62141084.39393188,0.0,40378966.874953549,0.0,58950361.90783562,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,271915398.5689746,0.0,28186614.07570998,0.0 + 03/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39386323.01355897,0.0,64873841.797422859,0.0,40472172.623262617,0.0,60012172.401028919,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,318964059.9206595,0.0,28186614.07570998,0.0 + 03/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48644190.556879799,0.0,71242463.491021,0.0,42404302.13730669,0.0,63624989.882250938,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,416281862.8764352,0.0,28186614.07570998,0.0 + 03/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60130839.658541779,0.0,79508897.49491404,0.0,44971293.32197383,0.0,68037646.76243904,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,443014594.0468455,0.0,35233267.594637479,0.0 + 03/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75323399.67381485,0.0,92763067.7240294,0.0,52793986.03787664,0.0,78437542.73130131,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,565437248.0004608,0.0,14093307.03785499,0.0 + 03/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,67105409.662906538,0.0,84029162.58566147,0.0,41781499.35780977,0.0,65518476.650200847,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,524553800.0900171,0.0,63419881.67034747,0.0 + 03/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,54848233.12384414,0.0,71260723.34663078,0.0,28629893.053946645,0.0,49638512.22399768,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,356445505.6532413,0.0,63419881.67034747,69761869.8373822 + 03/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,59065033.06715912,0.0,74897428.08398248,0.0,31805505.660680295,0.0,53592781.10194704,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,371428891.81859096,0.0,49326574.63249246,69761869.8373822 + 03/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63095057.277905959,0.0,78452851.97169692,0.0,35020407.72119099,0.0,57565505.15164422,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,310167894.0748491,0.0,35233267.594637479,69761869.8373822 + 03/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,66959618.23896505,0.0,81959852.67451982,0.0,38071751.59483466,0.0,61346233.456381779,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,324153967.0757874,0.0,35233267.594637479,62010550.96656194 + 03/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72033638.19722195,0.0,86853299.30817758,0.0,42383429.835351329,0.0,66714885.46792562,0.0,2533.4473617354,2493.7857706732945,2496.9992681742285,3005.8385870679296,305893508.3642194,0.0,35233267.594637479,46507913.22492146 + 03/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,79561854.26193939,0.0,93964595.7684471,0.0,49681274.75613538,0.0,75425358.8435122,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,336601606.30763438,0.0,21139960.556782485,23253956.61246073 + 03/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36568910.21263588,0.0,50420017.42999256,0.0,12735374.763477589,0.0,28585945.235128493,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,147318765.62933726,0.0,14093307.03785499,0.0 + 03/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64134443.04394146,0.0,76835866.73371953,0.0,37389486.12241143,0.0,59320874.61760737,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,256664931.85647989,0.0,14093307.03785499,0.0 + 03/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66279007.5265177,0.0,78469330.73987565,0.0,39533454.309269409,0.0,61803734.72609007,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,265069788.64055295,0.0,14093307.03785499,0.0 + 03/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67300854.05927134,0.0,79295393.98875043,0.0,40798956.48023535,0.0,62995188.758688878,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,269374654.62574616,0.0,14093307.03785499,0.0 + 03/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69797725.72647289,0.0,81808126.5961238,0.0,43038377.62426633,0.0,65644840.599790308,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,279211955.79238238,0.0,14093307.03785499,0.0 + 03/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67507955.68291521,0.0,79516053.42157512,0.0,41065192.91201323,0.0,63106368.052069168,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,270118455.3143018,0.0,14093307.03785499,15502637.741640486 + 03/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,70532363.10852939,0.0,83866287.79859638,0.0,43255762.805573318,0.0,66227179.0967391,0.0,5058.542842413007,4979.350410544797,4985.766811780513,6001.767986071687,339573133.79235419,0.0,56373228.15141996,38756594.35410121 + 03/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,80241016.92262498,0.0,94344855.54384402,0.0,53320962.985331859,0.0,78430244.37817,0.0,12646.357106032516,12448.376026361992,12464.417029451284,15004.419965179217,495565932.2872609,0.0,56373228.15141996,38756594.35410121 + 03/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85178534.92532982,0.0,98942830.65815382,0.0,60662670.804563198,0.0,86907738.63928014,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,520651879.4870516,0.0,28186614.07570998,0.0 + 03/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83219747.76690647,0.0,97500656.40338125,0.0,59396592.47692994,0.0,85697185.2135705,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,514774286.3205128,0.0,28186614.07570998,0.0 + 03/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82885664.97541426,0.0,97440078.59460218,0.0,58754497.39363188,0.0,85270836.52087286,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,437727140.16035607,0.0,28186614.07570998,0.0 + 03/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86599952.90763828,0.0,101122032.50915668,0.0,60017552.11627804,0.0,87433228.14824842,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,448349344.2970769,0.0,28186614.07570998,0.0 + 03/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79482689.65833816,0.0,95212302.58929332,0.0,57661171.98828889,0.0,83919010.31720536,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,429451753.1688812,0.0,28186614.07570998,0.0 + 03/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74936186.2743695,0.0,91864349.92667954,0.0,55831862.896563667,0.0,81468966.79883325,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,417277944.51220139,0.0,28186614.07570998,0.0 + 03/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,84879503.94694868,0.0,100220371.39867899,0.0,58874431.559665609,0.0,86339771.95424602,0.0,17648.647610892156,17372.354740191677,17394.740792433804,20939.446700027565,594392762.2963021,0.0,28186614.07570998,0.0 + 03/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,89230601.69354932,0.0,104627200.520129,0.0,59793915.31437937,0.0,88265550.40972154,0.0,22656.798386812407,22302.101981445296,22330.840516176613,26881.42642278903,680933470.2437832,0.0,35233267.594637479,0.0 + 03/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94253810.48182498,0.0,109653287.74944633,0.0,62856488.27402668,0.0,92472080.4515478,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,622914935.4170711,0.0,14093307.03785499,0.0 + 03/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,85125122.43336044,0.0,100684292.93060258,0.0,52606142.00910782,0.0,80228388.97421925,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,582323214.8075154,0.0,63419881.67034747,0.0 + 03/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,71752634.7888721,0.0,87088332.6392275,0.0,39104803.628181498,0.0,63721803.267978269,0.0,15076.291962452227,14840.269799300548,14859.393001651799,17887.44491600533,487255813.170135,0.0,63419881.67034747,69761869.8373822 + 03/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,73834671.99715086,0.0,88807182.84264915,0.0,41215888.4672895,0.0,66129941.60533365,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,458330019.52686986,0.0,49326574.63249246,69761869.8373822 + 03/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76043489.99719829,0.0,90775363.51570764,0.0,43453941.16060862,0.0,68786510.14452252,0.0,10069.688171916625,9912.045325086798,9924.818007189606,11947.300632350682,429733172.5095944,0.0,35233267.594637479,69761869.8373822 + 03/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77601084.21501202,0.0,92470373.73779522,0.0,44739933.065479118,0.0,70492566.95356517,0.0,7563.706118953782,7445.294888653576,7454.888911043059,8974.048585726103,398480536.58760699,0.0,35233267.594637479,62010550.96656194 + 03/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,78954013.22364743,0.0,93687334.24712865,0.0,46392628.87935361,0.0,72145399.12919128,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,366870916.46223697,0.0,35233267.594637479,46507913.22492146 + 03/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,87010380.93721041,0.0,101198103.26698159,0.0,54387333.10513339,0.0,81822788.5684549,0.0,2521.235372984593,2481.764962884526,2484.962970347686,2991.349528575367,362144132.08303216,0.0,21139960.556782485,23253956.61246073 + 03/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47077010.87335555,0.0,59905896.192797798,0.0,20547577.456688435,0.0,37659878.88116838,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,184053126.50663609,0.0,14093307.03785499,0.0 + 03/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73886574.673572,0.0,87071911.98019168,0.0,43536525.37062609,0.0,67991494.18187343,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,291349269.30888918,0.0,14093307.03785499,0.0 + 03/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74820527.15282586,0.0,87858881.98372263,0.0,45016845.97670421,0.0,69403942.60472726,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,295996208.1639524,0.0,14093307.03785499,0.0 + 03/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77872275.24030644,0.0,91094228.0546106,0.0,47902594.55507543,0.0,72776245.82901746,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,308444363.5828329,0.0,14093307.03785499,0.0 + 03/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82264927.31803587,0.0,95912933.0219323,0.0,51518990.26625302,0.0,77346636.50802623,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,325775216.7634076,0.0,14093307.03785499,0.0 + 03/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78559399.47831401,0.0,92928119.32073315,0.0,48758435.56881222,0.0,73957500.42751315,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,312903446.3638326,0.0,14093307.03785499,15502637.741640486 + 03/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,71790380.2391067,0.0,91343950.41834733,0.0,46796032.072427559,0.0,71760994.65998408,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806395,300352327.84614017,0.0,56373228.15141996,38756594.35410121 + 03/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,58460111.4881577,0.0,90794250.43282365,0.0,49460901.67279327,0.0,74543921.75238098,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,347742951.8844209,0.0,56373228.15141996,38756594.35410121 + 03/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50575413.723697569,0.0,88930890.42248318,0.0,55299908.5789723,0.0,80324132.01133916,0.0,7466.73906764187,7349.845874619138,7359.316901211759,8859.000880804424,386855994.5438901,0.0,28186614.07570998,0.0 + 03/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41779461.93186216,0.0,89174127.91138295,0.0,56832701.774219628,0.0,82369495.25837785,0.0,7436.2812468511669,7319.864876694814,7329.297269711513,8822.86383908275,381425692.91226747,0.0,28186614.07570998,0.0 + 03/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32766480.26278344,0.0,94437604.34678963,0.0,60905106.7974216,0.0,87096938.46318983,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,349553427.7498371,0.0,28186614.07570998,0.0 + 03/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28136097.70126461,0.0,89170009.93090421,0.0,58909885.656200949,0.0,81023233.33450097,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,331722993.16113606,0.0,28186614.07570998,0.0 + 03/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26248074.701864534,0.0,83956964.63297773,0.0,54454818.71184938,0.0,76357974.85878869,0.0,7482.790069398141,7365.6455949486039,7375.136981093513,8878.044781683835,352983655.6431271,0.0,28186614.07570998,0.0 + 03/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32184798.12463501,0.0,78202211.48093592,0.0,48209842.46584414,0.0,70450095.03612629,0.0,10014.884697793233,9858.099809574387,9870.802977374355,11882.278402280495,378900784.30082228,0.0,28186614.07570998,0.0 + 03/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41962810.01293638,0.0,79351058.27168305,0.0,44448714.76682681,0.0,68227885.8012453,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,421679154.2670794,0.0,28186614.07570998,0.0 + 03/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57093137.651761028,0.0,82945257.01254475,0.0,43286465.317680258,0.0,68587497.53226097,0.0,15104.532257874936,14868.067987630193,14887.227010784409,17920.950948526024,477923159.0515831,0.0,35233267.594637479,0.0 + 03/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82229996.6619046,0.0,102729362.90422526,0.0,55583302.9797423,0.0,84720651.99246755,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,588027474.1184827,0.0,14093307.03785499,0.0 + 03/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,84400268.63517049,0.0,104499502.9033806,0.0,53221329.837806168,0.0,82062589.16329621,0.0,10014.884697793233,9858.099809574387,9870.802977374355,11882.278402280495,474037527.73293438,0.0,63419881.67034747,0.0 + 03/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,74334272.25853953,0.0,94145555.29100128,0.0,41656302.36659007,0.0,68298126.93949783,0.0,7498.4369936266289,7381.047563659363,7390.558796813003,8896.609260001118,390634206.26638916,0.0,63419881.67034747,69761869.8373822 + 03/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,81422676.31413883,0.0,100733018.79284513,0.0,47112412.0717325,0.0,75141616.27470625,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,378893489.991688,0.0,49326574.63249246,69761869.8373822 + 03/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87922314.63216013,0.0,106872925.90221302,0.0,52277033.8497989,0.0,81632248.0576547,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,403051820.3214793,0.0,35233267.594637479,69761869.8373822 + 03/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,95005973.14408589,0.0,112848255.40719927,0.0,57220819.807172808,0.0,88068304.12119141,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,427006452.07847025,0.0,35233267.594637479,62010550.96656194 + 03/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101865256.14420064,0.0,119503369.41376402,0.0,62671913.34441221,0.0,95011017.69002226,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,452914656.19122,0.0,35233267.594637479,46507913.22492146 + 03/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,112323704.27738004,0.0,129629350.73789616,0.0,71992394.51125016,0.0,106488081.84559557,0.0,2463.2203210024774,2424.6581473638868,2427.782566866477,2922.5168839692657,457290971.88124957,0.0,21139960.556782485,23253956.61246073 + 03/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71619440.70051289,0.0,87378164.0155753,0.0,36262493.168114248,0.0,60906955.266319397,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.665305695209,274550458.4206778,0.0,14093307.03785499,0.0 + 03/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103165271.15957277,0.0,119110471.5610342,0.0,63668018.721616659,0.0,96577250.29367769,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,400818982.8100265,0.0,14093307.03785499,0.0 + 03/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,106985501.57243039,0.0,122728092.76297711,0.0,67461440.92923227,0.0,100693978.73835431,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,416166985.07711926,0.0,14093307.03785499,0.0 + 03/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,110493433.17933735,0.0,126156489.932847,0.0,70577190.87294063,0.0,104332447.71347341,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,429769133.19125226,0.0,14093307.03785499,0.0 + 03/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113948803.26077323,0.0,129662597.46674884,0.0,73490695.19924963,0.0,107890359.08527646,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,443152595.24231639,0.0,14093307.03785499,0.0 + 03/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102839373.68019451,0.0,119773311.6666712,0.0,64725199.61944164,0.0,97139533.7652603,0.0,4843.4602796413769,4767.635005416969,4773.778589743836,5746.58073554931,456950655.3288331,0.0,14093307.03785499,15502637.741640486 + 03/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,76800321.86809896,0.0,105689917.00545644,0.0,52152191.89550356,0.0,81684909.13436044,0.0,19418.570939074656,19114.569588492614,19139.200662390944,23039.39316678913,606889583.5877099,0.0,56373228.15141996,38756594.35410121 + 03/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,63122623.66518887,0.0,108781897.46718917,0.0,57879344.87022462,0.0,88503370.18501117,0.0,17120.208832849956,16852.188769799883,16873.904535096925,20312.47426162876,574458831.2253658,0.0,56373228.15141996,38756594.35410121 + 03/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52262102.15047598,0.0,112709321.04177113,0.0,66388775.407553989,0.0,97403578.70896858,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,512213233.0053034,0.0,28186614.07570998,0.0 + 03/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41167691.66587264,0.0,114818758.55191612,0.0,69077173.80944748,0.0,100718891.8619683,0.0,9852.881284009909,9698.632589455547,9711.130267465907,11690.067535877062,473212277.92571488,0.0,28186614.07570998,0.0 + 03/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36442370.230551939,0.0,117422590.44553265,0.0,72751004.50357847,0.0,104161441.30751689,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,404640506.0860008,0.0,28186614.07570998,0.0 + 03/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29583625.641308994,0.0,111422440.3409608,0.0,69931631.84599811,0.0,95858879.93031064,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,381143875.6382311,0.0,28186614.07570998,0.0 + 03/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25655274.682919925,0.0,97128956.22597869,0.0,61331312.21963139,0.0,85568167.61061067,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,344167477.2774059,0.0,28186614.07570998,0.0 + 03/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26708538.87805244,0.0,87269575.834767,0.0,52098880.38428582,0.0,76038593.38857125,0.0,7498.4369936266289,7381.047563659363,7390.558796813003,8896.609260001118,354315537.8964369,0.0,28186614.07570998,0.0 + 03/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36562271.267041269,0.0,83129953.61320585,0.0,45534366.842445779,0.0,70362033.5766809,0.0,12518.605872241542,12322.624761967982,12338.503721717942,14852.848002850618,422905921.79097488,0.0,28186614.07570998,0.0 + 03/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52814581.91161912,0.0,84729571.41814262,0.0,42835111.72660766,0.0,69315899.44785796,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,437383849.9186152,0.0,35233267.594637479,0.0 + 03/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80966417.2128481,0.0,103746525.57425052,0.0,55864761.33960679,0.0,85919832.25959045,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,588741751.4745374,0.0,14093307.03785499,0.0 + 03/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,82796974.40330459,0.0,104518259.72670755,0.0,52856639.939913857,0.0,82111285.29179642,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,584527374.4499639,0.0,63419881.67034747,0.0 + 03/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,72698698.9592021,0.0,93147724.8475706,0.0,41221353.285822208,0.0,67964445.98339813,0.0,9977.05342586419,9820.860793264808,9833.515974791351,11837.393042245114,424319986.72618868,0.0,63419881.67034747,69761869.8373822 + 03/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,79204060.58515036,0.0,98615626.92490627,0.0,46206819.4162045,0.0,74045603.39052835,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,447039643.39331999,0.0,49326574.63249246,69761869.8373822 + 03/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,85987044.05678317,0.0,104766748.26103267,0.0,51541650.171033937,0.0,80682803.90595453,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,397158183.7524209,0.0,35233267.594637479,69761869.8373822 + 03/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,91560460.45163954,0.0,109984946.2956193,0.0,55556241.141994509,0.0,85868756.03799418,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,417007914.9935314,0.0,35233267.594637479,62010550.96656194 + 03/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,97009288.67611891,0.0,115022369.59899879,0.0,60007085.916795279,0.0,91373701.45695602,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,400431201.1820109,0.0,35233267.594637479,46507913.22492146 + 03/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,106969995.82761127,0.0,124538540.54363539,0.0,69153117.90953863,0.0,102466668.41754949,0.0,2468.1731204176896,2429.53340978031,2432.6641115561317,2928.393191415438,440059872.4977452,0.0,21139960.556782485,23253956.61246073 + 03/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65479506.60951753,0.0,81346945.06074457,0.0,33361077.634628547,0.0,56136475.19734271,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,254789779.4019386,0.0,14093307.03785499,0.0 + 03/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93916658.09327553,0.0,109709390.37819286,0.0,58239025.03801534,0.0,88891390.48342821,0.0,1231.6101605012387,1212.3290736819434,1213.8912834332385,1461.2584419846328,369185184.2474758,0.0,14093307.03785499,0.0 + 03/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93571489.66943252,0.0,108413696.75936774,0.0,59770721.54606671,0.0,89306439.31399791,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,369528122.1885701,0.0,14093307.03785499,0.0 + 03/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,93084386.16946087,0.0,107386915.01312474,0.0,60285942.024007279,0.0,89164210.1159924,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,368387228.2222905,0.0,14093307.03785499,0.0 + 03/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92488353.73743609,0.0,106486297.8565132,0.0,60276965.9558849,0.0,88698667.61849483,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,366459662.9348999,0.0,14093307.03785499,0.0 + 03/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83075070.84568131,0.0,97778180.56299362,0.0,53503396.01702941,0.0,80030923.68196914,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,388425082.17395737,0.0,14093307.03785499,15502637.741640486 + 03/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,69580158.22061423,0.0,89136150.54699369,0.0,47591827.86571847,0.0,72249896.07940173,0.0,19874.82282210369,19563.678763179127,19588.88856008866,23580.718609798,575947224.2313383,0.0,56373228.15141996,38756594.35410121 + 03/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,63276094.475294318,0.0,90355572.1112158,0.0,52917920.49836072,0.0,77748535.09779357,0.0,17422.39115783103,17149.64037411132,17171.73943616077,20671.00205521031,544991305.0665927,0.0,56373228.15141996,38756594.35410121 + 03/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35629637.9552278,0.0,84156909.24724463,0.0,52777856.140990968,0.0,76132495.6001527,0.0,12497.394989377714,12301.745939432274,12317.597994688338,14827.682100001863,435696814.6282168,0.0,28186614.07570998,0.0 + 03/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14679806.044903404,0.0,74772088.37398906,0.0,47903955.469700139,0.0,69483660.00335159,0.0,10102.717122718881,9944.557201502701,9957.371778476689,11986.488221684996,358007593.45972397,0.0,28186614.07570998,0.0 + 03/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4358546.769906872,0.0,67699042.87808134,0.0,44849908.00508264,0.0,64403322.7925346,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,257247865.8008059,0.0,28186614.07570998,0.0 + 03/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11747612.474763534,0.0,61430618.83976385,0.0,40990824.30493902,0.0,57413259.085262197,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,247616386.65713964,0.0,28186614.07570998,0.0 + 03/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14482047.784682235,0.0,57006298.445758629,0.0,36850636.63102841,0.0,53273198.435902688,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,237758548.02096267,0.0,28186614.07570998,0.0 + 03/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6910285.839036538,0.0,50795755.324425239,0.0,30877524.01984325,0.0,46305502.98379275,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,249399663.1793937,0.0,28186614.07570998,0.0 + 03/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25997426.130386056,0.0,56247648.93411997,0.0,31491705.675451608,0.0,49099035.80002345,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,353686808.2271409,0.0,28186614.07570998,0.0 + 03/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37593682.84277348,0.0,61716780.39488703,0.0,31664722.65677883,0.0,51195386.41176828,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,372761751.6568417,0.0,35233267.594637479,0.0 + 03/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56539246.798424188,0.0,75819899.86215265,0.0,39933447.75663527,0.0,62614197.75975795,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,501734443.2678578,0.0,14093307.03785499,0.0 + 03/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,56487842.44044863,0.0,74658598.57643181,0.0,35116119.12788511,0.0,56822770.86711401,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,489597614.54444709,0.0,63419881.67034747,0.0 + 03/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,46528428.088502157,0.0,63542912.7872873,0.0,23287057.602968877,0.0,42527284.55693957,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,328178416.4828794,0.0,63419881.67034747,69761869.8373822 + 03/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,53612367.71040441,0.0,69672421.60218096,0.0,28384266.254878958,0.0,48913941.53153422,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,352457087.8093994,0.0,49326574.63249246,69761869.8373822 + 03/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61053160.45830354,0.0,76495125.24506147,0.0,33859499.67384432,0.0,55903110.99695269,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,303127407.4852482,0.0,35233267.594637479,69761869.8373822 + 03/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,65586331.96546976,0.0,80502133.33581528,0.0,37029723.83068693,0.0,59927682.64090114,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,318862382.8839593,0.0,35233267.594637479,62010550.96656194 + 03/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71558326.92674463,0.0,86218679.54541327,0.0,41912074.399432707,0.0,65996339.18756522,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,303531190.55061379,0.0,35233267.594637479,46507913.22492146 + 03/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,81513234.2024357,0.0,95543800.93171764,0.0,51133831.00059415,0.0,77119773.24538085,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,343102660.27207329,0.0,21139960.556782485,23253956.61246073 + 03/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38979515.33605526,0.0,52183324.72010365,0.0,15011618.009133915,0.0,31265677.609810994,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,156394263.45287536,0.0,14093307.03785499,0.0 + 03/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68191892.1528276,0.0,80628730.3027115,0.0,40398798.54258266,0.0,63091410.52377833,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,271173594.624526,0.0,14093307.03785499,0.0 + 03/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73550990.67118569,0.0,85662692.80412868,0.0,45323994.36880128,0.0,69023690.01393137,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,292330236.39948579,0.0,14093307.03785499,0.0 + 03/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77652569.32647455,0.0,89602780.70382066,0.0,49078935.93213494,0.0,73403711.50325215,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,308437989.0341424,0.0,14093307.03785499,0.0 + 03/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81166925.72060625,0.0,93038521.52464828,0.0,52232036.55111423,0.0,77150791.48880092,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,322209216.919736,0.0,14093307.03785499,0.0 + 03/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66147839.2669148,0.0,79286620.03084795,0.0,40963212.58273626,0.0,62976055.58184296,0.0,4977.82604509458,4899.897249746094,4906.211267474506,5906.000587202948,323857494.00060728,0.0,14093307.03785499,15502637.741640486 + 03/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,43025316.373041559,0.0,67999459.27359692,0.0,34704005.27204538,0.0,53804188.49274797,0.0,20069.48187606116,19755.29039333328,19780.74710138566,23811.674146725636,499834866.07445248,0.0,56373228.15141996,38756594.35410121 + 03/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,27554092.62523663,0.0,68294334.77363546,0.0,39378232.86993989,0.0,57732682.777726057,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,456638611.5067634,0.0,56373228.15141996,38756594.35410121 + 03/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3762187.9127302386,0.0,58350785.18770101,0.0,34631527.89512609,0.0,51811190.76421173,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,338398305.1477702,0.0,28186614.07570998,0.0 + 03/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,54690729.92829898,0.0,32948788.919934386,0.0,49608297.41919649,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,290094767.2825415,0.0,28186614.07570998,0.0 + 03/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12463004.476475098,53620251.72040226,0.0,34289335.35830138,0.0,50378899.05612256,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,214628882.80969013,12463004.476475098,28186614.07570998,0.0 + 03/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19454812.843812527,48473754.282271187,0.0,32933050.103823835,0.0,44458219.47851983,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,202205420.53947879,19454812.843812527,28186614.07570998,0.0 + 03/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24128453.93088063,37649444.28588428,0.0,26748528.447943495,0.0,36839185.91242579,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,177660634.1538094,24128453.93088063,28186614.07570998,0.0 + 03/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16341368.80809797,32632357.48526135,0.0,20519396.498263536,0.0,31649600.994614129,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,199436568.23947279,16341368.80809797,28186614.07570998,0.0 + 03/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1980637.1332020323,37404208.8379225,0.0,19392732.48338837,0.0,33326800.48805363,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,280714921.1599986,1980637.1332020323,28186614.07570998,0.0 + 03/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11920975.369906119,0.0,47769279.31983817,0.0,21953427.82968534,0.0,38797646.25025611,0.0,12722.348275757631,12523.17754014892,12539.314932623558,15094.580587296787,310807245.5786626,0.0,35233267.594637479,0.0 + 03/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42723562.44459709,0.0,68935120.2269509,0.0,34981699.113502237,0.0,56364163.887809228,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,469123797.50629797,0.0,14093307.03785499,0.0 + 03/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,46174340.05917154,0.0,70536891.62004879,0.0,31951737.807692209,0.0,53102045.562842037,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,467544673.7929561,0.0,63419881.67034747,0.0 + 03/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38956132.63697,0.0,61853078.063892778,0.0,21859694.250934423,0.0,41167980.09743969,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,315469907.27140918,0.0,63419881.67034747,69761869.8373822 + 03/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46256195.95501907,0.0,67900785.01020992,0.0,26465834.283854806,0.0,47211012.22464511,0.0,10149.900299750574,9991.001717095949,10003.876142568772,12042.469260140506,339707918.18412986,0.0,49326574.63249246,69761869.8373822 + 03/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53004906.291498709,0.0,73329844.83940764,0.0,30909875.949020167,0.0,52839992.42204258,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,286021664.8571695,0.0,35233267.594637479,69761869.8373822 + 03/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,58270162.503451649,0.0,77425710.40528938,0.0,34231723.637342218,0.0,56994609.659818489,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,302859251.56110218,0.0,35233267.594637479,62010550.96656194 + 03/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,65006150.062139619,0.0,83116539.62545899,0.0,39359963.5803712,0.0,63230433.54490196,0.0,2533.4473617354,2493.7857706732945,2496.9992681742285,3005.8385870679296,288621342.36841478,0.0,35233267.594637479,46507913.22492146 + 03/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,76571621.36070258,0.0,93931560.13443505,0.0,49299847.90428433,0.0,75414974.8930734,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,333063774.78395339,0.0,21139960.556782485,23253956.61246073 + 03/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38098137.912963788,0.0,54002177.51129286,0.0,15702632.17884029,0.0,32742836.046385476,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106244,159441794.0954549,0.0,14093307.03785499,0.0 + 03/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66484170.67934072,0.0,81694683.67747063,0.0,40289297.291716288,0.0,63762855.445399,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,271127017.5398991,0.0,14093307.03785499,0.0 + 03/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68996235.88827782,0.0,83233156.18386197,0.0,42604409.38327858,0.0,66241285.09082505,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,279971096.9922159,0.0,14093307.03785499,0.0 + 03/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69648188.64851062,0.0,83259652.4170775,0.0,43504114.77558218,0.0,66786526.51149097,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,282121367.5983903,0.0,14093307.03785499,0.0 + 03/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71989307.55571296,0.0,85346956.9954298,0.0,45512159.99454926,0.0,69062444.32604243,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,290773631.9743604,0.0,14093307.03785499,0.0 + 03/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67679992.6451754,0.0,80785983.33392053,0.0,42036911.88281153,0.0,64490278.410748649,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,330684707.25557216,0.0,14093307.03785499,15502637.741640486 + 03/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,64113487.79538568,0.0,78010004.97752877,0.0,40334620.00672078,0.0,61755950.55024795,0.0,20325.73814509579,20007.534922671613,20033.31667354611,24115.71242803207,548350351.1395272,0.0,56373228.15141996,38756594.35410121 + 03/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,72908081.44293602,0.0,86536739.06671639,0.0,48873006.45024097,0.0,71959288.07840902,0.0,17856.672854079854,17577.1233093902,17599.773226834033,21186.26071025806,547468503.4003261,0.0,56373228.15141996,38756594.35410121 + 03/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73993423.79779873,0.0,86711754.4089435,0.0,54298010.18931925,0.0,77470738.15054803,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,483324918.2337693,0.0,28186614.07570998,0.0 + 03/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71850018.47782542,0.0,83489948.6356758,0.0,52031063.7864363,0.0,74836161.45558197,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,435054143.37063118,0.0,28186614.07570998,0.0 + 03/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70063126.16277708,0.0,81584725.86890781,0.0,50699486.17533241,0.0,73254053.91857435,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,351941788.80045559,0.0,28186614.07570998,0.0 + 03/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68364096.91479913,0.0,80946635.87308887,0.0,49850698.11075409,0.0,72134958.03401339,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,347636785.6075194,0.0,28186614.07570998,0.0 + 03/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69185366.0360651,0.0,81753540.16092536,0.0,49972975.30064306,0.0,72528616.47344855,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,349676969.71133568,0.0,28186614.07570998,0.0 + 03/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71086827.19196804,0.0,83688722.29827713,0.0,50510090.79105388,0.0,73554191.78620884,0.0,7642.4416806269759,7522.797830420672,7532.491723261182,9067.465324130186,393194539.6778883,0.0,28186614.07570998,0.0 + 03/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72444787.26015386,0.0,84852257.55461078,0.0,50441642.616728197,0.0,73683445.29594997,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,472273124.41460266,0.0,28186614.07570998,0.0 + 03/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,73730158.3270845,0.0,85803031.64243695,0.0,49733998.26026502,0.0,73113520.87230224,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,473231700.7892486,0.0,35233267.594637479,0.0 + 03/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78019612.98515487,0.0,89256764.11484485,0.0,51972769.50601068,0.0,75995295.41870542,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,563060626.8796494,0.0,14093307.03785499,0.0 + 03/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,63288340.27242454,0.0,74707002.31910785,0.0,37001230.552139658,0.0,57666017.84358811,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,500744622.5493137,0.0,63419881.67034747,0.0 + 03/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49373598.309200439,0.0,60868035.28883294,0.0,23060337.63395101,0.0,40879744.13019896,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,327219535.2792883,0.0,63419881.67034747,69761869.8373822 + 03/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,51678745.02033324,0.0,63023586.738978799,0.0,25179012.578430259,0.0,43410768.070895519,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,336481844.72981128,0.0,49326574.63249246,69761869.8373822 + 03/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53927971.90831215,0.0,65087829.394922379,0.0,27383733.528812015,0.0,46044384.65680898,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,269038785.6494422,0.0,35233267.594637479,69761869.8373822 + 03/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,58675400.96793619,0.0,70762833.76337229,0.0,30325257.342264158,0.0,50726219.85952973,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,287084578.0936891,0.0,35233267.594637479,62010550.96656194 + 03/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63565919.91143614,0.0,75994414.98908179,0.0,34254556.84541007,0.0,55959597.777822289,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,268071922.60404367,0.0,35233267.594637479,46507913.22492146 + 03/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,70535545.0286054,0.0,82641849.38398102,0.0,41349754.104807328,0.0,64344893.63014618,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,297212891.81632789,0.0,21139960.556782485,23253956.61246073 + 03/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33276094.83492433,0.0,43490532.10496942,0.0,10116776.711948352,0.0,24352569.66447649,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,130406398.15071258,0.0,14093307.03785499,0.0 + 03/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52969174.34578697,0.0,63133632.23565908,0.0,28129089.686676418,0.0,46698098.42476725,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,210120944.13785953,0.0,14093307.03785499,0.0 + 03/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55495587.92058175,0.0,65257010.80225068,0.0,31366163.16391545,0.0,50108520.54101038,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,221312381.59647424,0.0,14093307.03785499,0.0 + 03/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59929796.6809461,0.0,69601575.00095856,0.0,35956992.60090146,0.0,55301832.060901168,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,239774457.68250744,0.0,14093307.03785499,0.0 + 03/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63512716.69065199,0.0,73437293.28301446,0.0,39024224.29616295,0.0,59124349.56859928,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,254052711.61620016,0.0,14093307.03785499,0.0 + 03/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58530124.17364157,0.0,68344309.9624084,0.0,35408334.1106074,0.0,54300296.029359158,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,292520109.63121697,0.0,14093307.03785499,15502637.741640486 + 03/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,56133691.612280968,0.0,67435876.63960642,0.0,35598238.75197342,0.0,53670733.33674799,0.0,20267.5788938832,19950.286165386355,19975.994145393826,24046.708696543436,516104584.78495338,0.0,56373228.15141996,38756594.35410121 + 03/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,59766594.43564218,0.0,72855321.87085441,0.0,42838359.732018347,0.0,62584406.07136856,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,504163933.94332209,0.0,56373228.15141996,38756594.35410121 + 03/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62420484.67913096,0.0,77319143.52388841,0.0,50041734.2830559,0.0,70546152.30474675,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,450412694.6718496,0.0,28186614.07570998,0.0 + 03/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64844160.27636611,0.0,75840989.36060398,0.0,47737307.48865,0.0,68057441.75951509,0.0,10227.67350891814,10067.55737216542,10080.530447413672,12134.744204031917,409517718.80224016,0.0,28186614.07570998,0.0 + 03/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60414640.37948748,0.0,70763954.49695218,0.0,43641096.721237879,0.0,62983213.410465057,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,314484604.34571859,0.0,28186614.07570998,0.0 + 03/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53054563.87579827,0.0,64798255.2957565,0.0,39960804.67169691,0.0,57814991.13826732,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,292457190.81034269,0.0,28186614.07570998,0.0 + 03/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35940535.08989261,0.0,53962067.94440645,0.0,34133039.94556567,0.0,49424821.037866178,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,250419832.94027744,0.0,28186614.07570998,0.0 + 03/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28783417.54310908,0.0,48154584.128937449,0.0,29552872.50362035,0.0,43805153.643678728,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,265831842.7073215,0.0,28186614.07570998,0.0 + 03/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43158728.74928884,0.0,58360227.407583188,0.0,32944649.183760175,0.0,50246206.69454886,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,377108234.34154739,0.0,28186614.07570998,0.0 + 03/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53554011.061547819,0.0,65673280.03952259,0.0,36076424.66344002,0.0,54963540.262131009,0.0,12836.330100592057,12635.374958252272,12651.656928551894,15229.815671509095,402338695.5987005,0.0,35233267.594637479,0.0 + 03/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59497870.64035602,0.0,69995277.20869257,0.0,38738517.79287688,0.0,58476187.67259173,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,495607868.7154,0.0,14093307.03785499,0.0 + 03/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52562692.51776469,0.0,63233616.291172597,0.0,29515701.299763208,0.0,47405443.54788036,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,461617469.05746367,0.0,63419881.67034747,0.0 + 03/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38949180.743305239,0.0,49600036.38938391,0.0,15831015.405722063,0.0,30786887.146251028,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,288824271.34230956,0.0,63419881.67034747,69761869.8373822 + 03/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,40986194.83906376,0.0,51433141.294148,0.0,17820477.932231759,0.0,33127225.37776204,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,297170882.3599499,0.0,49326574.63249246,69761869.8373822 + 03/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45374538.6945665,0.0,56175119.84231929,0.0,21643452.19518322,0.0,38229741.09062222,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,238186649.60257066,0.0,35233267.594637479,69761869.8373822 + 03/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50342035.98444432,0.0,61384206.17364447,0.0,25547600.31900769,0.0,43299767.786787468,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,257168476.42447064,0.0,35233267.594637479,62010550.96656194 + 03/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55581771.188241738,0.0,66557597.58812034,0.0,30220798.031552964,0.0,49076076.483982447,0.0,2556.918377229535,2516.889343041355,2520.132611853418,3033.686051007979,239695698.27117373,0.0,35233267.594637479,46507913.22492146 + 03/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,65487732.82716225,0.0,76276015.42715831,0.0,39540151.88169885,0.0,60350537.146993298,0.0,2550.953264868551,2511.0176156271725,2514.253318119148,3026.6086728940088,279824635.62044468,0.0,21139960.556782485,23253956.61246073 + 03/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32631070.400216987,0.0,42230712.30070633,0.0,11331457.06583526,0.0,24712656.891330944,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,129965014.59315293,0.0,14093307.03785499,0.0 + 03/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55991461.7213381,0.0,66189546.83252405,0.0,31565556.04491479,0.0,50519627.233280349,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,223302783.512955,0.0,14093307.03785499,0.0 + 03/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60033353.91135767,0.0,70340244.26743928,0.0,35209450.08698727,0.0,55094758.8567713,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,239662068.46135567,0.0,14093307.03785499,0.0 + 03/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63325247.84764036,0.0,73822458.8861961,0.0,38247518.192651327,0.0,58777918.30962442,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,253127271.01388369,0.0,14093307.03785499,0.0 + 03/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66299217.021713558,0.0,77056539.1568555,0.0,40782994.168362278,0.0,61969789.83729585,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,265031425.42995615,0.0,14093307.03785499,0.0 + 03/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55207762.77770364,0.0,67534826.27966716,0.0,32539212.0882081,0.0,51906642.579926747,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,226022677.18695034,0.0,14093307.03785499,15502637.741640486 + 03/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46769743.02753471,0.0,68519579.83494509,0.0,35487168.791328098,0.0,54420812.0790938,0.0,5034.844085958313,4956.022662543399,4962.409003594803,5973.650316175341,280534237.57868036,0.0,56373228.15141996,38756594.35410121 + 03/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,30222517.213120048,0.0,64482934.013844329,0.0,33844960.1130712,0.0,49282233.554194469,0.0,12563.576635376856,12366.891499417125,12382.827501376501,14906.204096671105,365822843.9324598,0.0,56373228.15141996,38756594.35410121 + 03/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20494218.91470337,0.0,70141389.86213476,0.0,40486422.12301783,0.0,61214949.042038608,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,380679314.55634126,0.0,28186614.07570998,0.0 + 03/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9994700.115293913,0.0,66485618.60734577,0.0,41567186.85726716,0.0,61248590.93539382,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,367638431.1297474,0.0,28186614.07570998,0.0 + 03/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11189837.408458697,0.0,66550435.90048511,0.0,43983669.89116086,0.0,63640275.035054448,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,298369619.00382718,0.0,28186614.07570998,0.0 + 03/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30340565.813691029,0.0,74563216.40602193,0.0,47522462.623650427,0.0,67396362.49970675,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,332616726.76600798,0.0,28186614.07570998,0.0 + 03/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17757871.671210108,0.0,67060132.7717991,0.0,43764938.35178729,0.0,62043054.061627257,0.0,7538.145981226114,7420.134899650274,7429.696500825899,8943.722458002665,303420116.2793616,0.0,28186614.07570998,0.0 + 03/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24313979.982378536,0.0,65114138.507663119,0.0,40181903.3012512,0.0,59228654.249279249,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,301844076.80924019,0.0,28186614.07570998,0.0 + 03/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28866247.68641589,0.0,62981445.254311,0.0,36290084.00776754,0.0,55947863.44175357,0.0,17621.954300854093,17346.07931890189,17368.43151258181,20907.77610661369,447764908.8504734,0.0,28186614.07570998,0.0 + 03/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46380143.85679993,0.0,71108374.07302943,0.0,37671980.520868647,0.0,59980325.04283068,0.0,22656.798386812407,22302.101981445296,22330.840516176613,26881.42642278903,554157025.7995328,0.0,35233267.594637479,0.0 + 03/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72802518.58062133,0.0,92526502.25748347,0.0,49983043.45009084,0.0,76877589.85210145,0.0,17589.0072895276,17313.648099183974,17335.958501927096,20868.685735339546,555375932.7938187,0.0,14093307.03785499,0.0 + 03/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75718414.1239147,0.0,95365802.43236096,0.0,47869093.83005005,0.0,75004846.646109,0.0,17560.796641553512,17285.879094166616,17308.15371371245,20835.21487838493,556722316.6125777,0.0,63419881.67034747,0.0 + 03/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,67627634.60360237,0.0,86896940.32213006,0.0,37644317.8759277,0.0,63089173.84951295,0.0,14996.873987253257,14762.095127318726,14781.117593626006,17793.218520002236,479657965.47269389,0.0,63419881.67034747,69761869.8373822 + 03/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,76560833.4984864,0.0,95576834.86798045,0.0,44268926.14038356,0.0,71710296.05352549,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,474326306.906039,0.0,49326574.63249246,69761869.8373822 + 03/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,83674972.10085587,0.0,102269839.67813614,0.0,49848260.3589828,0.0,78722943.51287759,0.0,9937.411411051846,9781.839381589563,9794.44428004433,11790.359304899002,463210611.4101575,0.0,35233267.594637479,69761869.8373822 + 03/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,88324678.60098078,0.0,106397302.82853379,0.0,53485151.05696523,0.0,83132497.30045043,0.0,7436.2812468511669,7319.864876694814,7329.297269711513,8822.86383908275,442609535.8233551,0.0,35233267.594637479,62010550.96656194 + 03/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,94784865.20019531,0.0,112771978.3012815,0.0,58793647.652686107,0.0,89807424.8121378,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,430195427.0325846,0.0,35233267.594637479,46507913.22492146 + 03/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,105522046.74601554,0.0,123718747.76429796,0.0,68248640.41105487,0.0,101742144.2195394,0.0,2474.00116849884,2435.2702186815288,2438.408312921163,2935.307947993451,436250334.6740497,0.0,21139960.556782485,23253956.61246073 + 03/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67979947.78919211,0.0,85164638.3031592,0.0,35187828.411291528,0.0,59486175.8886731,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,266163535.96196933,0.0,14093307.03785499,0.0 + 03/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101021643.04754836,0.0,118557601.54303508,0.0,63317906.25388998,0.0,96590009.22931966,0.0,1219.673739495743,1200.5795195740259,1202.1265888256008,1447.0963341028135,397737274.3289865,0.0,14093307.03785499,0.0 + 03/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,105872705.00049225,0.0,123218704.7797226,0.0,68048024.74635017,0.0,101778309.05329438,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,417127315.0725133,0.0,14093307.03785499,0.0 + 03/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,108684665.99025242,0.0,126024159.91218098,0.0,70530433.85485238,0.0,104647287.76349156,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,428096119.0134312,0.0,14093307.03785499,0.0 + 03/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113168641.97098309,0.0,130698932.87609466,0.0,74231943.41910288,0.0,109274618.17158675,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,445441497.2662759,0.0,14093307.03785499,0.0 + 03/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,98168680.8736942,0.0,117014940.95401405,0.0,63013266.09760831,0.0,95292287.81590963,0.0,1207.4601416950005,1188.5571279252986,1190.088705098134,1432.6053665339228,391556536.5697347,0.0,14093307.03785499,15502637.741640486 + 03/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,78012301.00588642,0.0,107043990.48351279,0.0,54927198.1371256,0.0,85166249.20407677,0.0,1210.8650699103442,1191.9087513542423,1193.4446474359593,1436.6451838873275,343268047.9799179,0.0,56373228.15141996,38756594.35410121 + 03/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60943927.4556571,0.0,108379817.57360108,0.0,58519471.383019607,0.0,89048806.98402018,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,389532584.3173705,0.0,56373228.15141996,38756594.35410121 + 03/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50904310.918318238,0.0,112711141.28426683,0.0,66523678.51984379,0.0,97920187.3186402,0.0,7301.785352080205,7187.474540246676,7196.736334802061,8663.289593960933,437316746.9969926,0.0,28186614.07570998,0.0 + 03/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38881270.51777682,0.0,112743884.76351385,0.0,68465499.0291499,0.0,100044319.33519659,0.0,7337.232356935695,7222.366615628522,7231.673372184396,8705.346112126614,429922800.09038797,0.0,28186614.07570998,0.0 + 03/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33349719.95948247,0.0,114472277.42048934,0.0,71431940.66859326,0.0,102541142.79734543,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,395328701.9265345,0.0,28186614.07570998,0.0 + 03/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27961240.55621374,0.0,112309885.58289966,0.0,70178519.20452401,0.0,96505645.92298354,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,380818390.8654418,0.0,28186614.07570998,0.0 + 03/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25808685.70899775,0.0,101677659.51722186,0.0,63114783.98019219,0.0,88433400.13168895,0.0,7422.00350549652,7305.810656044584,7315.22493876349,8805.923843980354,390090795.9375266,0.0,28186614.07570998,0.0 + 03/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27195109.37234851,0.0,91027933.33846204,0.0,53295471.86214947,0.0,78250685.17674524,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,398736732.8262358,0.0,28186614.07570998,0.0 + 03/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37237748.407311078,0.0,86315616.09726832,0.0,46355481.56094079,0.0,72205548.2089698,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,428323810.62015309,0.0,28186614.07570998,0.0 + 03/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53682794.695407759,0.0,87087610.78144804,0.0,42686886.27884364,0.0,70223125.39736581,0.0,14996.873987253257,14762.095127318726,14781.117593626006,17793.218520002236,478080315.974586,0.0,35233267.594637479,0.0 + 03/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80051730.65950947,0.0,103006413.51728994,0.0,53550190.43863087,0.0,84262173.75028214,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,582670390.3241533,0.0,14093307.03785499,0.0 + 03/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,88970732.07971028,0.0,111108753.29091186,0.0,56934002.001214589,0.0,87914297.83503062,0.0,9955.65209018916,9799.794499492187,9812.422534949012,11812.001174405896,493895318.28339788,0.0,63419881.67034747,0.0 + 03/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,81034881.27946215,0.0,102108649.75942123,0.0,46613051.8027861,0.0,75731693.5443471,0.0,7436.2812468511669,7319.864876694814,7329.297269711513,8822.86383908275,416758182.4224414,0.0,63419881.67034747,69761869.8373822 + 03/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,88344337.0638561,0.0,108353717.29422194,0.0,51989693.27807233,0.0,82390788.8656237,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,405116047.5680579,0.0,49326574.63249246,69761869.8373822 + 03/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,94682453.21859235,0.0,113879015.93190015,0.0,56951124.28596316,0.0,88468942.92652902,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,427844635.9618056,0.0,35233267.594637479,69761869.8373822 + 03/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98648208.1300876,0.0,117245349.91556816,0.0,59912835.6261971,0.0,92098981.74193502,0.0,4936.346240835379,4859.06681956062,4865.328223112263,5856.786382830876,441768475.01260879,0.0,35233267.594637479,62010550.96656194 + 03/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,104707100.87784319,0.0,122922774.22968079,0.0,65095073.56127134,0.0,98436274.86711839,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,464694844.6165377,0.0,35233267.594637479,46507913.22492146 + 03/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,116265621.11970595,0.0,134231401.38080425,0.0,75614196.51092361,0.0,111321621.90657057,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,474028783.0662546,0.0,21139960.556782485,23253956.61246073 + 03/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76074908.83036056,0.0,92615767.33447716,0.0,39690932.937092769,0.0,66207810.43962014,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934884,292798991.03420457,0.0,14093307.03785499,0.0 + 03/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,108113162.19333434,0.0,124900750.25539835,0.0,68116077.67235346,0.0,102452516.50986962,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,421742646.86122396,0.0,14093307.03785499,0.0 + 03/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,109719221.24771646,0.0,126068129.60251722,0.0,70412668.59679716,0.0,104455274.23969583,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,428864865.17938056,0.0,14093307.03785499,0.0 + 03/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,110657718.71976149,0.0,126701540.43956444,0.0,71593339.55251426,0.0,105464524.8290116,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,432626695.03350576,0.0,14093307.03785499,0.0 + 03/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,112217102.9930241,0.0,128147451.3497254,0.0,72924542.2521973,0.0,106954847.93885978,0.0,1216.9642253467008,1197.9124233744463,1199.4560558003432,1443.8815989934886,438453516.0264605,0.0,14093307.03785499,0.0 + 03/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90558110.86937556,0.0,107492748.43230182,0.0,55868809.75725855,0.0,85706175.37996245,0.0,4891.48823795713,4814.911077085682,4821.1155814562639,5803.564074751074,412817728.7353989,0.0,14093307.03785499,15502637.741640486 + 03/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,61960038.936202939,0.0,90966814.02527619,0.0,42531671.16823217,0.0,68766340.14334755,0.0,19745.384963341516,19436.26727824248,19461.312892449052,23427.145531323506,559677262.6683424,0.0,56373228.15141996,38756594.35410121 + 03/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46137087.35387971,0.0,91814014.60992514,0.0,46703836.364532548,0.0,73457695.40386114,0.0,17390.469969340727,17118.21891778173,17140.277490077577,20633.12878357325,518328176.31098249,0.0,56373228.15141996,38756594.35410121 + 03/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34826167.420376028,0.0,91827261.65510546,0.0,54459529.04027101,0.0,80482583.34099442,0.0,12471.316782330236,12276.075991581007,12291.894968489189,14796.74130280639,448205246.01949146,0.0,28186614.07570998,0.0 + 03/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24968105.487314345,0.0,90238776.6028043,0.0,55391692.21784092,0.0,81185732.04110082,0.0,9997.915991502172,9841.39675154582,9854.07839575067,11862.14568000149,401384238.896741,0.0,28186614.07570998,0.0 + 03/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31104644.935289097,0.0,81282069.05930858,0.0,52257559.07469114,0.0,75873188.31793031,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,316101503.17110899,0.0,28186614.07570998,0.0 + 03/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13977836.344136347,0.0,75368218.1894968,0.0,48563526.7634328,0.0,67453104.51977636,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,281179196.92792847,0.0,28186614.07570998,0.0 + 03/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6409689.962975152,0.0,64156045.13287104,0.0,41522805.71626492,0.0,58719260.35453477,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,246744846.52184633,0.0,28186614.07570998,0.0 + 03/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19262678.368256287,0.0,58418879.22725241,0.0,36164460.88695016,0.0,53692957.960730228,0.0,7633.408965454579,7513.906524089351,7523.588959574136,9056.748352378074,281758526.5285752,0.0,28186614.07570998,0.0 + 03/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31397668.896105045,0.0,60300672.32993013,0.0,34938401.24688465,0.0,53612764.890438798,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,370840686.7139927,0.0,28186614.07570998,0.0 + 03/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37180759.404001768,0.0,61511284.90790163,0.0,32697786.46533908,0.0,52000457.83134772,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,373981467.9592243,0.0,35233267.594637479,0.0 + 03/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53961130.08053149,0.0,74096892.74239467,0.0,40154204.04122667,0.0,62023604.10818289,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,497063482.0632234,0.0,14093307.03785499,0.0 + 03/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,48910797.39197269,0.0,68127597.52209255,0.0,31760561.108270907,0.0,51714163.438815359,0.0,17832.36392146294,17553.194937648233,17575.81402094276,21157.419089637096,467340770.55203929,0.0,63419881.67034747,0.0 + 03/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38144578.07868217,0.0,56579818.188540238,0.0,19830512.532596414,0.0,37242409.438592288,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,303865462.1432331,0.0,63419881.67034747,69761869.8373822 + 03/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,44077203.91463142,0.0,62049863.597258228,0.0,23981288.064292194,0.0,42697152.67830674,0.0,10162.869072547895,10003.767461335807,10016.658336773055,12057.856214016036,324873652.1593106,0.0,49326574.63249246,69761869.8373822 + 03/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50257576.16924238,0.0,67592942.815083,0.0,28644965.734073715,0.0,48556620.78463162,0.0,5066.8947234708,4987.571541346589,4993.998536348457,6011.677174135859,270868616.61411687,0.0,35233267.594637479,69761869.8373822 + 03/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55019897.197745259,0.0,71749399.44601205,0.0,32216121.55546152,0.0,52968604.808712188,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,287645563.99084708,0.0,35233267.594637479,62010550.96656194 + 03/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61008939.51551475,0.0,77365937.3517294,0.0,37055181.123470839,0.0,59019611.623583879,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,272241690.5062438,0.0,35233267.594637479,46507913.22492146 + 03/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,70100626.86044148,0.0,85908195.74923751,0.0,45516252.30656239,0.0,69234538.24270736,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,308551634.05089369,0.0,21139960.556782485,23253956.61246073 + 03/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31892262.76373901,0.0,46156326.61958401,0.0,11823351.838373879,0.0,26934380.15830955,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,135640554.8414511,0.0,14093307.03785499,0.0 + 03/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63355943.569128569,0.0,77815264.74480325,0.0,39310758.386942569,0.0,61238478.60273765,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,260452174.95277218,0.0,14093307.03785499,0.0 + 03/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70835752.52411819,0.0,85102557.75261122,0.0,45346698.4670105,0.0,69149957.07801834,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.7949131123754,289021790.2916714,0.0,14093307.03785499,0.0 + 03/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72357014.96254839,0.0,86314517.36651114,0.0,46783924.684678267,0.0,70620501.07424487,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,294775949.65644267,0.0,14093307.03785499,0.0 + 03/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69557087.50411295,0.0,83021222.79631086,0.0,44686919.56638264,0.0,67583390.41530009,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,283682853.74355128,0.0,14093307.03785499,0.0 + 03/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57838286.725074369,0.0,71261318.78467612,0.0,36297076.71954247,0.0,56608166.17027058,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,297588890.1834534,0.0,14093307.03785499,15502637.741640486 + 03/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,51817218.861113239,0.0,67348087.81643397,0.0,36192046.15323959,0.0,52244149.57367858,0.0,20267.5788938832,19950.286165386355,19975.994145393826,24046.708696543436,510867546.84880998,0.0,56373228.15141996,38756594.35410121 + 03/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,66842325.605770189,0.0,81829532.16222985,0.0,46693577.82363871,0.0,69144481.0057942,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,530289575.34063449,0.0,56373228.15141996,38756594.35410121 + 03/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60659224.8501208,0.0,76332736.54199572,0.0,49714509.85735788,0.0,70901243.3087259,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,447973631.36717709,0.0,28186614.07570998,0.0 + 03/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51533507.337144989,0.0,68245703.0602435,0.0,44859511.176712278,0.0,64568859.24560592,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,381888374.16943457,0.0,28186614.07570998,0.0 + 03/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45536284.88227433,0.0,62341597.793811518,0.0,40854043.310168508,0.0,59262838.493722427,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,284589630.6405635,0.0,28186614.07570998,0.0 + 03/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45063475.46313873,0.0,60620782.60645265,0.0,38786296.75932522,0.0,56497799.14721012,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,277650053.3137026,0.0,28186614.07570998,0.0 + 03/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39233615.45211306,0.0,55213800.48486241,0.0,35216227.15191988,0.0,51628034.42259662,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,258120253.34031568,0.0,28186614.07570998,0.0 + 03/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31744808.719108866,0.0,49587779.76836146,0.0,30875725.932343544,0.0,45821183.39356692,0.0,7714.909614027489,7594.131264804921,7603.917078056487,9153.445760838815,273468551.19720056,0.0,28186614.07570998,0.0 + 03/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33246183.117374049,0.0,48860596.51317654,0.0,29017671.214273707,0.0,43951920.29021953,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,347474793.44141009,0.0,28186614.07570998,0.0 + 03/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34684892.289942178,0.0,48528362.066841017,0.0,26536042.182951973,0.0,41762628.25949037,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,343910347.1055918,0.0,35233267.594637479,0.0 + 03/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52956111.116690147,0.0,65168651.42694174,0.0,36182613.582125607,0.0,55027740.07654849,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,477417147.7643595,0.0,14093307.03785499,0.0 + 03/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49719376.056798998,0.0,62421181.52447788,0.0,29162517.399785136,0.0,47182144.55988915,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,456301404.3958849,0.0,63419881.67034747,0.0 + 03/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,39575056.57990906,0.0,52587974.00376563,0.0,17933985.323599999,0.0,33884000.6909149,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,296661809.94791749,0.0,63419881.67034747,69761869.8373822 + 03/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,45345246.731380868,0.0,57964765.7946756,0.0,22172096.745124137,0.0,39388382.06949124,0.0,10203.813059474203,10044.07046250869,10057.013272476592,12106.434691576034,317551284.6903997,0.0,49326574.63249246,69761869.8373822 + 03/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49361353.90361091,0.0,61683358.938907537,0.0,25559685.335419008,0.0,43546574.5929602,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,256491369.44576157,0.0,35233267.594637479,69761869.8373822 + 03/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55153568.772712189,0.0,67498531.37754049,0.0,30185820.252199089,0.0,49486588.28519431,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,278261554.0428465,0.0,35233267.594637479,62010550.96656194 + 03/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62641633.45450863,0.0,75189432.67499301,0.0,36296637.19914916,0.0,57359965.43427311,0.0,2533.4473617354,2493.7857706732945,2496.9992681742285,3005.8385870679296,269395924.318467,0.0,35233267.594637479,46507913.22492146 + 03/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,72749646.84983409,0.0,85255636.84288636,0.0,45658791.514969479,0.0,68912672.6173839,0.0,2529.2714212065036,2489.675205272398,2492.8834058902568,3000.8839930358437,310422518.31653186,0.0,21139960.556782485,23253956.61246073 + 03/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35300675.207022767,0.0,45652212.33933542,0.0,12260064.917067485,0.0,29115581.390349188,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,141365125.53467254,0.0,14093307.03785499,0.0 + 03/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54122777.56935944,0.0,65060369.904813308,0.0,30771165.966379625,0.0,49563533.54596866,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,218602946.15523703,0.0,14093307.03785499,0.0 + 03/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55100305.12584287,0.0,65698448.421403829,0.0,31950185.239515976,0.0,50927507.1553576,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,222761545.11083625,0.0,14093307.03785499,0.0 + 03/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59307507.39349123,0.0,69932070.14824428,0.0,35559968.21915442,0.0,55234866.248702388,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,239042929.99769504,0.0,14093307.03785499,0.0 + 03/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65376373.081323977,0.0,76581843.96073225,0.0,40309373.94220559,0.0,61494825.77738635,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,262685302.0073772,0.0,14093307.03785499,0.0 + 03/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49974542.0631131,0.0,63200382.707595009,0.0,28227126.359260415,0.0,46956014.44093444,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,263809117.98140664,0.0,14093307.03785499,15502637.741640486 + 03/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,39385511.89048904,0.0,64546754.44857247,0.0,30141402.135900573,0.0,49710786.189912747,0.0,20139.376343833253,19824.090650173595,19849.63601437921,23894.601264701363,485132190.04798957,0.0,56373228.15141996,38756594.35410121 + 03/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,33442903.49352234,0.0,75261086.81071435,0.0,41709680.17852209,0.0,62498846.163292977,0.0,17589.0072895276,17313.648099183978,17335.958501927096,20868.685735339546,476098795.2995733,0.0,56373228.15141996,38756594.35410121 + 03/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16880355.84674076,0.0,74065871.48551424,0.0,42801699.43434183,0.0,64453069.303553339,0.0,12587.110214895782,12390.056656358496,12406.022508987007,14934.125790438353,386543330.6845969,0.0,28186614.07570998,0.0 + 03/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2338265.8964657376,0.0,73055713.38957286,0.0,44923366.51787867,0.0,66043206.66950561,0.0,10084.941491938373,9927.059851538104,9939.851881390745,11965.398114301468,337262657.29443016,0.0,28186614.07570998,0.0 + 03/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,70948165.06293823,0.0,46718317.28133574,0.0,66597892.526483539,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,259848416.65464736,0.0,28186614.07570998,0.0 + 03/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3925460.9273805685,64185487.77908427,0.0,43116126.2370294,0.0,57434386.604905057,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,240673045.9762192,3925460.9273805685,28186614.07570998,0.0 + 03/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16875216.905320895,49034374.97222231,0.0,33870325.7784875,0.0,46014684.65664922,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,204953457.35977007,16875216.905320895,28186614.07570998,0.0 + 03/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14270933.874596375,41138377.38545722,0.0,25823188.17923921,0.0,38310810.06973383,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,219323483.56304679,14270933.874596375,28186614.07570998,0.0 + 03/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2689510.5838943126,40208766.71331519,0.0,20923503.528680318,0.0,35417373.2140629,0.0,12687.375374688218,12488.752146369934,12504.845178210964,15053.086575175634,286392256.8440596,2689510.5838943126,28186614.07570998,0.0 + 03/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2568379.8735600898,0.0,43157275.22575605,0.0,18527946.675142379,0.0,35083654.29221707,0.0,12703.586340684868,12504.709326669756,12520.822920966315,15072.320267520045,289422435.9477031,0.0,35233267.594637479,0.0 + 03/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36210661.68327568,0.0,60706623.547373447,0.0,29669957.536245407,0.0,49197171.88512136,0.0,17762.3255245635,17484.253004917908,17506.783249495347,21074.321205245884,441564073.3952174,0.0,14093307.03785499,0.0 + 03/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41374577.127376157,0.0,67163560.85535863,0.0,29780845.609332473,0.0,50113577.178744319,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,453790349.659613,0.0,63419881.67034747,0.0 + 03/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,32102060.167722096,0.0,56049766.54051419,0.0,18462461.58224318,0.0,36124722.08141582,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,294372032.5940676,0.0,63419881.67034747,69761869.8373822 + 03/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,37525840.498515088,0.0,60005937.83426626,0.0,22170394.295785197,0.0,40696163.3427171,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,312031358.19345596,0.0,49326574.63249246,69761869.8373822 + 03/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45125901.82956147,0.0,66429272.153836417,0.0,27848731.11506322,0.0,47716293.7744451,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,262571251.28340984,0.0,35233267.594637479,69761869.8373822 + 03/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53750330.07653767,0.0,74485067.24477378,0.0,34196302.60880407,0.0,55882638.52157114,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,293241257.04832717,0.0,35233267.594637479,62010550.96656194 + 03/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62746802.82131436,0.0,83003327.7973238,0.0,41248106.323298897,0.0,64811567.50802119,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,289131745.36250719,0.0,35233267.594637479,46507913.22492146 + 03/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,73993337.99940215,0.0,93516098.24643243,0.0,50892952.81459056,0.0,76647032.66861674,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,332371362.64159086,0.0,21139960.556782485,23253956.61246073 + 03/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37911436.284880969,0.0,55920462.267855469,0.0,19686418.619842285,0.0,36245427.277531329,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,168273122.216681,0.0,14093307.03785499,0.0 + 03/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70631881.95593357,0.0,88615816.42034881,0.0,47006481.299883339,0.0,72006685.3141543,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,296644270.260476,0.0,14093307.03785499,0.0 + 03/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75911601.9709749,0.0,93098259.90005046,0.0,51265779.42951796,0.0,77068714.06704758,0.0,1228.5817139000274,1209.3480379772303,1210.9064063597519,1457.6653056952094,315727760.6377469,0.0,14093307.03785499,0.0 + 03/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79524551.1117722,0.0,96276795.74310617,0.0,54087619.38029126,0.0,80352319.34072967,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,328586231.1455527,0.0,14093307.03785499,0.0 + 03/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83234230.07655564,0.0,99665053.58645676,0.0,56938704.35732647,0.0,83793813.32500616,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,341929772.4194702,0.0,14093307.03785499,0.0 + 03/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63620182.15662612,0.0,81187828.41080606,0.0,41748403.68369801,0.0,64711219.44635546,0.0,4878.694957982972,4802.3180782961039,4808.506355302403,5788.385336411254,324268090.7182595,0.0,14093307.03785499,15502637.741640486 + 03/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,43907404.98699319,0.0,73801665.77257015,0.0,37923307.96086099,0.0,58958425.16475692,0.0,19745.384963341516,19436.26727824248,19461.312892449052,23427.145531323506,510043202.28046479,0.0,56373228.15141996,38756594.35410121 + 03/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,26535431.433714004,0.0,72562555.65710044,0.0,41080106.66261573,0.0,60310325.796347517,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,462288301.5082185,0.0,56373228.15141996,38756594.35410121 + 03/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2745550.6414098546,0.0,61365346.15317364,0.0,35639580.16611986,0.0,53632127.87115673,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,342342709.2915848,0.0,28186614.07570998,0.0 + 03/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2045077.2023487499,55418762.76952811,0.0,33416423.16345536,0.0,50402133.86533348,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,291530053.2454984,2045077.2023487499,28186614.07570998,0.0 + 03/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18203805.33442079,53149891.16250777,0.0,33496617.917012987,0.0,49446005.28454012,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,212432911.0389248,18203805.33442079,28186614.07570998,0.0 + 03/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24941455.25041862,49274775.248551119,0.0,32026216.852558379,0.0,43343778.453311059,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,200985167.22928448,24941455.25041862,28186614.07570998,0.0 + 03/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28774236.102034049,38719925.57965391,0.0,25792155.323309844,0.0,35954058.37221767,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,176889614.78273729,28774236.102034049,28186614.07570998,0.0 + 03/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25940719.39817363,30425368.19046901,0.0,17281813.88307114,0.0,27904018.413940643,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,190389565.42530949,25940719.39817363,28186614.07570998,0.0 + 03/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13956121.884858802,27693571.40928194,0.0,11409209.118907195,0.0,23419020.253960927,0.0,12784.591886147675,12584.446715206772,12600.663059267092,15168.430255039897,253819075.67853124,13956121.884858802,28186614.07570998,0.0 + 03/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,832538.7966532493,30641723.135899165,0.0,9362652.91899547,0.0,23523715.807570064,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,255015257.2639315,832538.7966532493,35233267.594637479,0.0 + 03/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21468775.50747942,0.0,49950253.013440538,0.0,22622887.643325055,0.0,39516723.993171099,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.31704590183,401040804.4338615,0.0,14093307.03785499,0.0 + 03/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,32903726.36175468,0.0,58320944.79443079,0.0,23668882.74451253,0.0,41849219.62269656,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,423255057.0559621,0.0,63419881.67034747,0.0 + 03/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,28174582.898856988,0.0,51920189.15105623,0.0,15774757.228580773,0.0,32321042.337795304,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,279823593.8384616,0.0,63419881.67034747,69761869.8373822 + 03/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,37646717.56588003,0.0,60256705.87362814,0.0,21934880.01592103,0.0,40693542.41967347,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,311914927.84093478,0.0,49326574.63249246,69761869.8373822 + 03/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46433076.58956626,0.0,67754820.1310224,0.0,28112928.238777214,0.0,48524496.30507136,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,266276373.67494086,0.0,35233267.594637479,69761869.8373822 + 03/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53685249.87488399,0.0,74498592.6463064,0.0,32732808.74203088,0.0,54811050.421152699,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,291178754.0948776,0.0,35233267.594637479,62010550.96656194 + 03/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,59962234.7948471,0.0,79947712.66944714,0.0,37217262.76551961,0.0,60472603.98556007,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,275391835.1073189,0.0,35233267.594637479,46507913.22492146 + 03/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,70224730.17611489,0.0,89034995.60938607,0.0,46100302.59954286,0.0,71096501.26616341,0.0,2525.6792806797204,2486.1393003756754,2489.342944619172,2996.622055421249,314248550.5431522,0.0,21139960.556782485,23253956.61246073 + 03/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32952319.221333248,0.0,50494736.29398004,0.0,13226948.64536203,0.0,29184769.66698024,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,144657793.7314785,0.0,14093307.03785499,0.0 + 03/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65720291.31732085,0.0,82102015.03902152,0.0,41527004.30285181,0.0,64776924.33467385,0.0,1249.7394989377715,1230.1745939432277,1231.7597994688338,1482.7682100001862,272826226.5623281,0.0,14093307.03785499,0.0 + 03/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71608342.06671264,0.0,87461766.90133029,0.0,46078001.46778327,0.0,70644180.43432914,0.0,1247.1316782330237,1227.607599158101,1229.189496848919,1479.6741302806393,294453261.32642987,0.0,14093307.03785499,0.0 + 03/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77821463.5291626,0.0,93782704.54764802,0.0,50918627.92189901,0.0,76806182.8867882,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,317873963.2249019,0.0,14093307.03785499,0.0 + 03/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82474196.21982669,0.0,98524809.36237422,0.0,54323436.07752409,0.0,81231141.06621424,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,335098567.0653433,0.0,14093307.03785499,0.0 + 03/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59845102.58115104,0.0,74510898.01145125,0.0,34522332.252145778,0.0,56474253.84456569,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,299699884.56896629,0.0,14093307.03785499,15502637.741640486 + 03/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,47804937.66606009,0.0,70863440.11902277,0.0,34785766.417237687,0.0,55635419.326576869,0.0,19995.831983004344,19682.79350309164,19708.15679150134,23724.29136000298,508289428.6242585,0.0,56373228.15141996,38756594.35410121 + 03/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,33433414.881734238,0.0,70762493.70103917,0.0,38964113.795604947,0.0,58658092.95649484,0.0,17679.754964758045,17402.975102629724,17425.400612334204,20976.354387948744,466362261.57848778,0.0,56373228.15141996,38756594.35410121 + 03/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11662995.881586047,0.0,61771666.7307474,0.0,34833753.52803104,0.0,53534909.233332488,0.0,12703.586340684868,12504.709326669756,12520.822920966317,15072.320267520045,351888505.25472459,0.0,28186614.07570998,0.0 + 03/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,398435.6096480623,0.0,57811249.614650327,0.0,34122697.46793715,0.0,52020488.918176379,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,297199822.62552359,0.0,28186614.07570998,0.0 + 03/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,52235742.5696934,0.0,32747488.516492309,0.0,47852382.3132955,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,209599411.1793606,0.0,28186614.07570998,0.0 + 03/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7836916.958367934,42883225.10165024,0.0,28392896.26047007,0.0,39011256.34911784,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,187189299.1696103,7836916.958367934,28186614.07570998,0.0 + 03/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17003893.44586838,30564946.727208646,0.0,20229172.95760338,0.0,29190986.24078923,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,157008982.51758517,17003893.44586838,28186614.07570998,0.0 + 03/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15824341.102156833,22181367.691987888,0.0,11623791.293590015,0.0,20698591.238355016,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,170114640.3943865,15824341.102156833,28186614.07570998,0.0 + 03/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5254534.581845727,20152561.711809607,0.0,6245452.672193598,0.0,16705314.504897576,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,235788145.83965678,5254534.581845727,28186614.07570998,0.0 + 03/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,23567547.819753685,0.0,5057291.6574580729,0.0,17523523.971683854,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,238833180.39965163,0.0,35233267.594637479,0.0 + 03/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18744550.205344537,0.0,41259543.16193483,0.0,16490398.373307404,0.0,30350388.412005478,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,376202671.381505,0.0,14093307.03785499,0.0 + 03/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,27364723.881437407,0.0,46611670.27999495,0.0,16489545.21992619,0.0,31414428.826179245,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,391037093.3118403,0.0,63419881.67034747,0.0 + 03/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,21129833.72286588,0.0,39116710.70432552,0.0,7994137.915334434,0.0,20987596.985596159,0.0,10237.82596973867,10077.550894317863,10090.536847239428,12146.789711252219,242418011.64929543,0.0,63419881.67034747,69761869.8373822 + 03/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,28081759.30057987,0.0,45143431.49179447,0.0,12611283.83529273,0.0,27229089.098276508,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,266428962.4010954,0.0,49326574.63249246,69761869.8373822 + 03/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34116785.490382257,0.0,50277998.86208558,0.0,16942727.77609982,0.0,32730272.853866415,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,210662651.1430208,0.0,35233267.594637479,69761869.8373822 + 03/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39749874.65929175,0.0,55371236.11744465,0.0,20882265.9972068,0.0,37823469.48266089,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,230345756.21515657,0.0,35233267.594637479,62010550.96656194 + 03/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46771811.26723131,0.0,61943456.218488659,0.0,26369668.982797665,0.0,44746740.67064753,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,218043414.89294309,0.0,35233267.594637479,46507913.22492146 + 03/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,57008441.847035918,0.0,71499774.36337403,0.0,35505232.777148369,0.0,55803050.32250789,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,258028237.06384409,0.0,21139960.556782485,23253956.61246073 + 03/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21585490.9431062,0.0,33313436.56302082,0.0,4167118.780971929,0.0,14826853.665376395,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,92929491.63337302,0.0,14093307.03785499,0.0 + 03/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49920129.60636597,0.0,62539156.521542917,0.0,29258684.289867585,0.0,47748162.19329472,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,208474650.59917394,0.0,14093307.03785499,0.0 + 03/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54274524.87533541,0.0,66527513.70254253,0.0,32711527.29288883,0.0,51884946.158891368,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,224382773.36845828,0.0,14093307.03785499,0.0 + 03/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57678932.92700172,0.0,69716006.7615037,0.0,35650942.63924661,0.0,55290282.8647622,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,237290292.9702857,0.0,14093307.03785499,0.0 + 03/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59714873.930759269,0.0,71273232.27906779,0.0,37263411.96048523,0.0,57070129.99100532,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106246,244217658.6072901,0.0,14093307.03785499,0.0 + 03/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43764616.99104179,0.0,54747574.03754322,0.0,24428371.885019538,0.0,40734067.7421193,0.0,1260.6176864922966,1240.882481442263,1242.481485173843,1495.6747642876836,182537393.75834976,0.0,14093307.03785499,15502637.741640486 + 03/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,36532414.7598022,0.0,53790259.2793059,0.0,26824673.847252575,0.0,43503606.26468115,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,236797320.87463255,0.0,56373228.15141996,38756594.35410121 + 03/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21709090.16424144,0.0,48687221.42647998,0.0,27657290.45440625,0.0,42022841.7930277,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,331563609.23962226,0.0,56373228.15141996,38756594.35410121 + 03/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,34682120.304075229,0.0,19597497.447474295,0.0,31166855.024283548,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,277701276.4217634,0.0,28186614.07570998,0.0 + 03/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7353746.224386658,24932744.184522269,0.0,15867368.387501939,0.0,25501530.05250394,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,259125446.63030447,7353746.224386658,28186614.07570998,0.0 + 03/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17154093.101404344,21922654.94685755,0.0,15763066.405338619,0.0,23643940.981654109,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,176940552.50430388,17154093.101404344,28186614.07570998,0.0 + 03/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25859819.58195058,10892054.963533055,0.0,8842018.000145019,0.0,13019189.087995524,0.0,7757.761542982173,7636.3123388178,7646.152506688564,9204.287938784857,148833513.6298578,25859819.58195058,28186614.07570998,0.0 + 03/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35929973.931353259,227462.45606998565,0.0,863807.3391711338,0.0,3717648.8790871698,0.0,7753.814894665889,7632.427476017154,7642.262637845681,9199.605391210414,120830116.1133892,35929973.931353259,28186614.07570998,0.0 + 03/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21421708.598701,805463.946969289,0.0,0.0,0.0,3110399.26309702,0.0,7757.761542982173,7636.3123388178,7646.152506688564,9204.287938784857,119996114.78825054,21421708.598701,28186614.07570998,0.0 + 03/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8600984.385854565,5200085.774904504,0.0,0.0,0.0,4942912.976279855,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.28050726523,280941537.41247579,8600984.385854565,28186614.07570998,0.0 + 03/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,14039119.096026164,0.0,2323385.272411757,0.0,10883434.826662034,0.0,23244.586664804934,22880.688324294053,22910.172426583213,27578.81477736921,375057283.090085,0.0,35233267.594637479,0.0 + 03/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8353496.581581128,0.0,28314004.43108709,0.0,11823656.228527887,0.0,21372359.348244899,0.0,18062.123443729644,17779.357531732254,17802.268048613187,21430.019992346388,340129085.04855838,0.0,14093307.03785499,0.0 + 03/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,12816798.922328927,0.0,27795758.524250147,0.0,7264553.742891003,0.0,16518350.889778726,0.0,18051.21922645151,17768.62402200979,17791.520707667903,21417.082554785447,334497869.5185416,0.0,63419881.67034747,0.0 + 03/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,5120673.421979861,0.0,18631549.041702589,0.0,0.0,0.0,4690728.726939712,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,259664731.53152938,0.0,63419881.67034747,69761869.8373822 + 03/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,9597150.131961853,0.0,22878425.4922846,0.0,0.0,0.0,8789055.660761852,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,234088435.2907846,0.0,49326574.63249246,69761869.8373822 + 03/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14145802.164175479,0.0,26845445.50390115,0.0,3299944.7730356336,0.0,12929343.230850116,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,211479578.8765834,0.0,35233267.594637479,69761869.8373822 + 03/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,16986117.00342242,0.0,29234120.131320429,0.0,5603387.25995912,0.0,15695413.568282225,0.0,7731.966829586066,7610.921446471907,7620.7288955862909,9173.683495985118,183213320.36644996,0.0,35233267.594637479,62010550.96656194 + 03/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22788562.857816608,0.0,34676625.155089687,0.0,10258504.546981944,0.0,21800935.51845959,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,166548504.67033173,0.0,35233267.594637479,46507913.22492146 + 03/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,33049775.431481117,0.0,44561730.16364672,0.0,19215959.89104423,0.0,32952109.770849065,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,168291513.5530131,0.0,21139960.556782485,23253956.61246073 + 03/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2304229.4648793849,0.0,9725919.997682188,0.0,0.0,0.0,0.0,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,31255629.827154615,0.0,14093307.03785499,0.0 + 03/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23959397.847519667,0.0,35189243.64349967,0.0,10270415.44698252,0.0,21192417.567748548,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,109818618.46295634,0.0,14093307.03785499,0.0 + 03/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28447225.77705217,0.0,37849141.101962458,0.0,14891196.112276152,0.0,27211268.950674394,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,127605975.89917109,0.0,14093307.03785499,0.0 + 03/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31058539.82982342,0.0,40107439.617330659,0.0,17342987.109517736,0.0,29747226.537531105,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,137447142.53917278,0.0,14093307.03785499,0.0 + 03/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33244469.518711348,0.0,42001975.403993319,0.0,19116721.38178525,0.0,31743432.431189367,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,145277023.57007329,0.0,14093307.03785499,0.0 + 03/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24667613.28653651,0.0,33379919.727913068,0.0,13449666.492507693,0.0,24041158.65920538,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,114708783.00055665,0.0,14093307.03785499,15502637.741640486 + 03/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,30605603.17154131,0.0,40965597.52072031,0.0,24170950.50162732,0.0,35488920.709928657,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210436,1521.697464544115,150422021.34878747,0.0,56373228.15141996,38756594.35410121 + 03/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,23012596.211921514,0.0,37952756.55130501,0.0,25350462.779952434,0.0,35630022.275232348,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,198905206.7409578,0.0,56373228.15141996,38756594.35410121 + 03/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1676847.7410816705,0.0,24955270.79469355,0.0,17064937.45807764,0.0,25579070.2996823,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,184811941.18151105,0.0,28186614.07570998,0.0 + 03/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,20845099.86486093,0.0,15249739.412227959,0.0,23225902.473172767,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,174931631.92071525,0.0,28186614.07570998,0.0 + 03/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,16619605.831737027,0.0,13344101.241937587,0.0,20211355.238601034,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,127304583.91458616,0.0,28186614.07570998,0.0 + 03/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,284796.21583264667,13572482.425035507,0.0,11198283.756458627,0.0,17299935.52867303,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,119242818.12139365,284796.21583264667,28186614.07570998,0.0 + 03/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,149058.11938763364,0.0,19466854.836013237,0.0,12229225.62026449,0.0,20001083.1279814,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,167674322.4718399,0.0,28186614.07570998,0.0 + 03/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,11110981.414772446,0.0,6967381.817653492,0.0,13411134.211578496,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,186010359.5324452,0.0,28186614.07570998,0.0 + 03/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,14556302.179354119,0.0,7796349.88674177,0.0,15070845.318774384,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,230574574.99542118,0.0,28186614.07570998,0.0 + 03/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9364085.304562537,0.0,20652805.89937574,0.0,9868593.52977227,0.0,18150057.42228307,0.0,15481.82009462541,15239.44931291336,15259.086898811309,18368.58856486834,289691743.69237998,0.0,35233267.594637479,0.0 + 03/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20825284.840093689,0.0,31611206.847089456,0.0,15460440.082751044,0.0,25520595.409812444,0.0,18051.21922645151,17768.62402200979,17791.520707667903,21417.082554785447,363519934.61903938,0.0,14093307.03785499,0.0 + 03/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,16944442.090933756,0.0,28149122.779429966,0.0,8688052.437769056,0.0,17995380.880865996,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,226036041.39361979,0.0,63419881.67034747,0.0 + 03/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,6797906.299690427,0.0,17571302.5676407,0.0,0.0,0.0,4761968.380611951,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,144742067.41839666,0.0,63419881.67034747,69761869.8373822 + 03/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,12513634.915119462,0.0,23356546.565241394,0.0,1016154.6535667699,0.0,10141877.693146822,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,124052090.41905838,0.0,49326574.63249246,69761869.8373822 + 03/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17811492.259573707,0.0,28495443.207663668,0.0,5330148.235514734,0.0,15289252.565066107,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,143950212.85980214,0.0,35233267.594637479,69761869.8373822 + 03/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21303041.29211354,0.0,31769531.77587499,0.0,7755312.2147280969,0.0,18567050.67457036,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,156418812.54927094,0.0,35233267.594637479,62010550.96656194 + 03/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27152081.713695807,0.0,37466321.4801714,0.0,12291780.580598318,0.0,24537264.56909546,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,178406817.2661075,0.0,35233267.594637479,46507913.22492146 + 03/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,36011735.05076375,0.0,45949340.84856411,0.0,20396107.100514708,0.0,34409158.77767983,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,175278280.07351438,0.0,21139960.556782485,23253956.61246073 + 03/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2892315.2178475635,0.0,9523251.600775417,0.0,0.0,0.0,0.0,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,31655409.049259608,0.0,14093307.03785499,0.0 + 03/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26092290.699647078,0.0,35852988.799401309,0.0,10648899.015677523,0.0,21843912.045368934,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,113645234.51730076,0.0,14093307.03785499,0.0 + 03/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31144246.134091729,0.0,39513634.79849269,0.0,15882874.610937426,0.0,28556292.22180704,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,134304191.72253485,0.0,14093307.03785499,0.0 + 03/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32887188.035552298,0.0,40968883.8490413,0.0,17811005.77258937,0.0,30408233.927931925,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,141282455.54232083,0.0,14093307.03785499,0.0 + 03/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33601961.87730445,0.0,41346041.40362439,0.0,18538692.32487353,0.0,30979425.16647058,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,143673264.72947888,0.0,14093307.03785499,0.0 + 03/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27236543.47107286,0.0,35458857.71477833,0.0,12425089.181735758,0.0,23907784.87895149,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,175930196.7049106,0.0,14093307.03785499,15502637.741640486 + 03/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38247273.19378945,0.0,48151910.905816119,0.0,25697410.566931167,0.0,39844044.16002426,0.0,20590.336757298905,20267.991194239865,20294.10856960449,24429.648581061094,460036145.1944967,0.0,56373228.15141996,38756594.35410121 + 03/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,35517408.60453957,0.0,47964763.524235177,0.0,29544605.88457116,0.0,43677366.6038549,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,426462888.3482592,0.0,56373228.15141996,38756594.35410121 + 03/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20546827.043260967,0.0,38305052.42492734,0.0,25119216.17156864,0.0,36869684.98834133,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561035,313771071.6561645,0.0,28186614.07570998,0.0 + 03/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1361163.3223774406,0.0,28749223.63137968,0.0,19702537.871078887,0.0,29341906.480624737,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,233675693.3939015,0.0,28186614.07570998,0.0 + 03/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,30696078.36879459,0.0,21977907.77763571,0.0,31476930.18665529,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,161224843.113388,0.0,28186614.07570998,0.0 + 03/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,28856911.17199239,0.0,21424944.188597628,0.0,28930041.12113345,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,156384012.89295,0.0,28186614.07570998,0.0 + 03/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8851869.907331825,23766141.91428403,0.0,16868359.213613649,0.0,23555396.148201247,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,141362013.68732543,8851869.907331825,28186614.07570998,0.0 + 03/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7114248.645949875,18718569.576017936,0.0,10899657.577653433,0.0,18241362.10431914,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,163617763.87483026,7114248.645949875,28186614.07570998,0.0 + 03/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1092110.6326834704,16820620.190528796,0.0,5443601.047837007,0.0,14136652.884194196,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,229447708.73621524,1092110.6326834704,28186614.07570998,0.0 + 03/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,20523807.194415038,0.0,4379187.126817929,0.0,15275547.60513556,0.0,12886.611382643441,12684.869077453179,12701.21482597715,15289.47249330853,233002345.93214483,0.0,35233267.594637479,0.0 + 03/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23022631.785024126,0.0,35941936.52104194,0.0,13668963.076802984,0.0,25854031.52702409,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,368246306.6409515,0.0,14093307.03785499,0.0 + 03/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,31930084.30033639,0.0,45448500.71824458,0.0,16744890.9571096,0.0,30890648.712767107,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,394170849.79276016,0.0,63419881.67034747,0.0 + 03/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,24415503.54052835,0.0,37692300.742514748,0.0,7422236.823021974,0.0,19718954.16650833,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,242906146.93022073,0.0,63419881.67034747,69761869.8373822 + 03/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,31309078.860738115,0.0,43921140.12334863,0.0,12414397.221771859,0.0,26396223.145636243,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,267568434.91125364,0.0,49326574.63249246,69761869.8373822 + 03/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38054971.659856829,0.0,50382347.248391959,0.0,17601373.509616816,0.0,33046219.29085651,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,215766611.04629804,0.0,35233267.594637479,69761869.8373822 + 03/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43214904.97938955,0.0,55362953.96661172,0.0,21534345.71859351,0.0,38072575.17625677,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,234779646.0014383,0.0,35233267.594637479,62010550.96656194 + 03/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49520367.51143898,0.0,61524479.77969979,0.0,26785615.186180537,0.0,44644191.78007144,0.0,2556.918377229535,2516.889343041355,2520.132611853418,3033.686051007979,220734109.23666699,0.0,35233267.594637479,46507913.22492146 + 03/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,59827419.60070555,0.0,71490649.36303546,0.0,36256369.25662904,0.0,56120848.76019449,0.0,2553.729386407446,2513.750276465491,2516.989500269874,3029.9024351288337,261907024.73434244,0.0,21139960.556782485,23253956.61246073 + 03/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22602729.90509785,0.0,32230617.845333034,0.0,3910057.215079474,0.0,14110453.390813765,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,91938957.52504012,0.0,14093307.03785499,0.0 + 03/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49271094.420274469,0.0,59700846.195188257,0.0,27579671.873658748,0.0,45154831.49701495,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,200791543.1548524,0.0,14093307.03785499,0.0 + 03/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53285148.931493248,0.0,63469480.603306557,0.0,31052721.04973723,0.0,49230429.607353087,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,216074371.87278778,0.0,14093307.03785499,0.0 + 03/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55732856.12783283,0.0,65768029.871434058,0.0,33451154.803721437,0.0,51867189.61580553,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,225855822.09969155,0.0,14093307.03785499,0.0 + 03/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56396248.168262097,0.0,65988533.69894317,0.0,33867295.25829201,0.0,52183706.366463858,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,227420044.83076126,0.0,14093307.03785499,0.0 + 03/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34000449.36676882,0.0,42448176.48722598,0.0,15109294.28162757,0.0,28280297.33544168,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,195872289.4234751,0.0,14093307.03785499,15502637.741640486 + 03/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,26779595.82864583,0.0,43403141.51908884,0.0,19319040.555203994,0.0,31381332.27176702,0.0,20379.844481671935,20060.79421445513,20086.644595363152,24179.90753101383,425828997.13572028,0.0,56373228.15141996,38756594.35410121 + 03/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,17127716.647046236,0.0,45549938.10592101,0.0,24555766.886864935,0.0,37775620.66826274,0.0,17898.42864060674,17618.22540128948,17640.928282973924,21235.802357055854,392825227.1630285,0.0,56373228.15141996,38756594.35410121 + 03/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,39202916.32803756,0.0,21044248.6602192,0.0,33048936.801699029,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,285000350.1338956,0.0,28186614.07570998,0.0 + 03/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5136742.123089025,40856619.183549348,0.0,23598194.52620513,0.0,36025489.52171293,0.0,10260.405714384722,10099.777148849236,10112.79174256835,12173.57971635292,254007898.7912262,5136742.123089025,28186614.07570998,0.0 + 03/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12064302.071152507,43316614.164538729,0.0,26533731.349298378,0.0,38308154.651582468,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,184922297.94529898,12064302.071152507,28186614.07570998,0.0 + 03/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19240765.404084568,36093542.285690497,0.0,23835186.831725837,0.0,31968749.302439959,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,168799399.87822844,19240765.404084568,28186614.07570998,0.0 + 03/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26299867.791189236,24428116.084635855,0.0,15813170.68799128,0.0,22983981.771825646,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,140184637.4669993,26299867.791189236,28186614.07570998,0.0 + 03/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23986421.16819636,16166731.91250557,0.0,6830659.597653236,0.0,14292038.654084882,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,152825245.05221958,23986421.16819636,28186614.07570998,0.0 + 03/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13042496.903366238,13228162.725288462,0.0,729356.5957904474,0.0,9125191.877232833,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,215767528.14906774,13042496.903366238,28186614.07570998,0.0 + 03/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1319899.2710440646,15656940.420068302,0.0,0.0,0.0,9625024.434270909,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,217841656.33429904,1319899.2710440646,35233267.594637479,0.0 + 03/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8856845.425505301,0.0,33323613.851695118,0.0,10605507.793001488,0.0,23872697.63647905,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,346016455.9355937,0.0,14093307.03785499,0.0 + 03/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,21086724.96287775,0.0,39240242.66206193,0.0,12099454.044681255,0.0,24588103.233997287,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,366372316.132531,0.0,63419881.67034747,0.0 + 03/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13135571.825653969,0.0,29739921.22876597,0.0,2001408.7463863313,0.0,12298509.970498093,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,210979254.68804867,0.0,63419881.67034747,69761869.8373822 + 03/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,19942695.84463376,0.0,35528859.84324964,0.0,6302245.528636794,0.0,18238344.465030835,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,233815988.59829534,0.0,49326574.63249246,69761869.8373822 + 03/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25610674.996800454,0.0,40106793.06599303,0.0,10160900.333248062,0.0,23407279.042656058,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,176187568.89706976,0.0,35233267.594637479,69761869.8373822 + 03/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30505970.520389789,0.0,44273766.286600109,0.0,13633873.193323439,0.0,27860492.105991685,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,193102677.9351287,0.0,35233267.594637479,62010550.96656194 + 03/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37268606.53895168,0.0,50535320.600802708,0.0,18977652.752500915,0.0,34541162.673744957,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,179704641.45593996,0.0,35233267.594637479,46507913.22492146 + 03/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,47456729.763747479,0.0,60141658.7736379,0.0,28075594.81466674,0.0,45585584.82426773,0.0,2565.1014285961807,2524.944287212309,2528.1979356420877,3043.39492908823,219641467.06625957,0.0,21139960.556782485,23253956.61246073 + 03/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10758302.026146129,0.0,21208840.547138886,0.0,0.0,0.0,4772048.111171346,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,55930140.12942621,0.0,14093307.03785499,0.0 + 03/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35241280.41099224,0.0,46152020.83235209,0.0,15084534.585583646,0.0,31776748.76284731,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,147445534.03674514,0.0,14093307.03785499,0.0 + 03/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37356212.72999217,0.0,47258456.20271209,0.0,20347241.06286676,0.0,34825933.8508746,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,158978793.29141546,0.0,14093307.03785499,0.0 + 03/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39675613.931035038,0.0,49228759.607672449,0.0,22322346.862390754,0.0,36901232.87926774,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,167318902.72533585,0.0,14093307.03785499,0.0 + 03/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40737628.14363538,0.0,49845938.251702178,0.0,22968862.445674406,0.0,37502976.24221662,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,170225829.91762258,0.0,14093307.03785499,0.0 + 03/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22671928.29048677,0.0,30816997.971277879,0.0,8602624.963982173,0.0,18881549.04297004,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,157654799.60629279,0.0,14093307.03785499,15502637.741640486 + 03/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14134255.06304735,0.0,26105666.274742426,0.0,13615097.634336988,0.0,17640139.034266365,0.0,20573.092304073303,20251.01670614646,20277.112208150633,24409.18869557017,379332633.6965792,0.0,56373228.15141996,38756594.35410121 + 03/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,11415559.893846328,0.0,29926935.503929855,0.0,14526104.174151216,0.0,27542823.34827006,0.0,18028.25183050592,17746.016184932298,17768.883738084798,21389.83261621541,353170166.65125587,0.0,56373228.15141996,38756594.35410121 + 03/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,21788982.364029237,0.0,14326044.684463194,0.0,22639403.38904911,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,251801265.05119679,0.0,28186614.07570998,0.0 + 03/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7932244.5403972719,15506699.185281933,0.0,10737617.17197239,0.0,17767351.3869524,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,198594487.25308899,7932244.5403972719,28186614.07570998,0.0 + 03/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32020786.50440686,13018403.382252958,0.0,9604827.85327596,0.0,14479213.340622366,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,114473455.62223456,32020786.50440686,28186614.07570998,0.0 + 03/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43443488.33973625,5950971.328692092,0.0,5350522.7190356799,0.0,6568809.345159753,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,95271562.02792114,43443488.33973625,28186614.07570998,0.0 + 03/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41498280.54027103,0.0,0.0,0.0,0.0,220535.4587735521,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,77635293.45452465,41498280.54027103,28186614.07570998,0.0 + 03/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46306541.39311133,0.0,1157141.4703341146,0.0,0.0,0.0,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,116122583.57621002,47463682.863445449,28186614.07570998,0.0 + 03/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39155002.456156168,0.0,6654305.256737959,0.0,10019929.07040876,0.0,4769335.690795263,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,193537639.29368336,60598572.474098149,28186614.07570998,0.0 + 03/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25090488.78537961,0.0,4744288.960451289,0.0,13096277.783878768,0.0,7503669.307348387,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,193536894.98937778,50434724.83705806,35233267.594637479,0.0 + 03/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3841544.453104233,0.0,0.0,0.0,2918091.374053928,0.0,25301.84364204761,18101.443600291735,17818.0621239082,17841.022515606648,21476.671857164656,270853920.3490964,6784937.670800209,14093307.03785499,0.0 + 03/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,8823972.27633189,0.0,0.0,0.0,0.0,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.28050726523,279622510.93762329,0.0,63419881.67034747,0.0 + 03/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,5204739.437626893,0.0,0.0,3723179.528118472,0.0,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,159642207.1285511,3723179.528118472,63419881.67034747,69761869.8373822 + 03/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,1882379.1432637312,0.0,17994384.374430054,0.0,0.0,0.0,1177952.9355194623,0.0,10286.546152036652,10125.50835307323,10138.556104075316,12204.594347785085,174973454.2983063,0.0,49326574.63249246,69761869.8373822 + 03/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14137473.934156329,0.0,28380573.294192908,0.0,0.0,0.0,13254686.425636413,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,132674655.11235781,0.0,35233267.594637479,69761869.8373822 + 03/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,20435936.581708105,0.0,34090784.711010519,0.0,6493457.11474792,0.0,18804084.211532155,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,156726184.07737086,0.0,35233267.594637479,62010550.96656194 + 03/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,28263802.085553849,0.0,41552721.55874705,0.0,12555641.642980522,0.0,26550986.76364669,0.0,2567.2660201184114,2527.074991650455,2530.3313857103787,3045.9631343018188,147337439.96533994,0.0,35233267.594637479,46507913.22492146 + 03/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,39567920.70829256,0.0,52391515.10453369,0.0,22309373.073298955,0.0,38770007.61877225,0.0,2567.2660201184114,2527.074991650455,2530.3313857103787,3045.9631343018188,191453104.4193093,0.0,21139960.556782485,23253956.61246073 + 03/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6598875.509252986,0.0,15930111.344824627,0.0,0.0,0.0,2962882.0932656938,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,44682818.39231316,0.0,14093307.03785499,0.0 + 03/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30171193.856079479,0.0,41802096.44112165,0.0,8379755.498187084,0.0,26874888.943394908,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,126435078.69598904,0.0,14093307.03785499,0.0 + 03/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33628180.23514113,0.0,43876846.9482959,0.0,17329290.951263917,0.0,31717083.634242115,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,145758545.72614897,0.0,14093307.03785499,0.0 + 03/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40365099.97531639,0.0,51039263.008334498,0.0,21968248.395278738,0.0,37751375.93009728,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,170314936.75399677,0.0,14093307.03785499,0.0 + 03/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44800682.81322182,0.0,55253607.97756775,0.0,24675139.609678769,0.0,41290988.13489629,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,185227562.49257053,0.0,14093307.03785499,0.0 + 03/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36608023.29987114,0.0,46365064.60480854,0.0,19732751.368662217,0.0,34103137.859551358,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,213572774.91277267,0.0,14093307.03785499,15502637.741640486 + 03/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38661071.99818947,0.0,49880561.58698513,0.0,27972885.865286847,0.0,42958492.59857983,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,466787315.3643359,0.0,56373228.15141996,38756594.35410121 + 03/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,27749208.124528689,0.0,45527102.822285499,0.0,27751235.23366262,0.0,41610644.411233868,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,412221758.66365447,0.0,56373228.15141996,38756594.35410121 + 03/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1985239.5986355555,0.0,30459608.930619774,0.0,18835943.435473317,0.0,28772414.701714346,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,273100041.2800983,0.0,28186614.07570998,0.0 + 03/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,29214704.159513728,0.0,18638679.54944736,0.0,28417019.6434054,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,230707871.0432907,0.0,28186614.07570998,0.0 + 03/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,25414393.15793526,0.0,17500452.16985415,0.0,25936226.849078783,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,146175122.52036534,0.0,28186614.07570998,0.0 + 03/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12556167.045633695,18111787.93752619,0.0,13713541.627279599,0.0,18710758.643240118,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,127907099.25412917,12556167.045633695,28186614.07570998,0.0 + 03/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23403958.61819199,8240258.034875965,0.0,6486495.939325634,0.0,10255620.377755506,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,102383632.98699072,23403958.61819199,28186614.07570998,0.0 + 03/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24081998.66655186,1825710.6368443643,0.0,611278.0562911211,0.0,2798929.8531537528,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,121358055.53991588,24081998.66655186,28186614.07570998,0.0 + 03/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27926755.48483122,0.0,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,193386768.2394872,27926755.48483122,28186614.07570998,0.0 + 03/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13434477.780511067,0.0,0.0,0.0,4778764.876573789,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193528733.64187894,18213242.657084858,35233267.594637479,0.0 + 03/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,8083649.185730078,0.0,0.0,0.0,1375115.6498720402,0.0,18104.817555852474,17821.383259565224,17844.347930885946,21480.674926645683,280363170.0582197,0.0,14093307.03785499,0.0 + 03/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,12714650.621914076,0.0,0.0,0.0,904074.3106427922,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,284571419.9437135,0.0,63419881.67034747,0.0 + 03/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,1984263.1743339725,0.0,0.0,3065053.990148611,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,156803207.83133076,3065053.990148611,63419881.67034747,69761869.8373822 + 03/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,9882264.323477526,0.0,0.0,688713.79349675,0.0,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,164624286.41564406,688713.79349675,49326574.63249246,69761869.8373822 + 03/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3316276.441878899,0.0,16492373.640664235,0.0,0.0,0.0,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,97179661.1286264,0.0,35233267.594637479,69761869.8373822 + 03/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12497543.58603782,0.0,22905176.081721136,0.0,0.0,0.0,9158469.416006396,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,121852598.83820649,0.0,35233267.594637479,62010550.96656194 + 03/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,20912818.491514759,0.0,30652306.65852244,0.0,3746936.0674082639,0.0,17155532.254414996,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,111097808.99397063,0.0,35233267.594637479,46507913.22492146 + 03/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,31041137.48784603,0.0,40134132.07487755,0.0,14934822.958620172,0.0,28204032.667630678,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,152944340.7110846,0.0,21139960.556782485,23253956.61246073 + 03/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,787372.3910913161,0.0,5779070.331443075,0.0,0.0,0.0,0.0,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,25859471.825341017,0.0,14093307.03785499,0.0 + 03/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21371062.37340907,0.0,30518550.875569107,0.0,490543.5321375843,0.0,14473246.586390825,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,86135783.76808422,0.0,14093307.03785499,0.0 + 03/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26527594.04891534,0.0,33680823.295337188,0.0,12236723.068520267,0.0,22885055.931825945,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,114612576.74517636,0.0,14093307.03785499,0.0 + 03/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29525691.179645748,0.0,36454840.27667883,0.0,14358473.140794302,0.0,25926241.968445396,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,125533728.26063986,0.0,14093307.03785499,0.0 + 03/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32582809.286057064,0.0,39422375.61294976,0.0,17003399.200572049,0.0,28979731.526930844,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,137244284.77450568,0.0,14093307.03785499,0.0 + 03/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29720841.0813573,0.0,36357766.20770253,0.0,14976824.514935509,0.0,26147805.14542369,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,184227113.54140298,0.0,14093307.03785499,15502637.741640486 + 03/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,43154278.11516839,0.0,50339738.70899152,0.0,27488134.5184056,0.0,41927746.042680937,0.0,20573.092304073303,20251.01670614646,20277.112208150633,24409.18869557017,470747373.0754324,0.0,56373228.15141996,38756594.35410121 + 03/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37449689.64400301,0.0,45144559.803155709,0.0,27678217.71535728,0.0,39380718.32054371,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,419236753.5550034,0.0,56373228.15141996,38756594.35410121 + 03/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45094455.40434931,0.0,53144375.53636242,0.0,34517106.36422025,0.0,49001146.29431497,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,374316775.07920679,0.0,28186614.07570998,0.0 + 03/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43449242.22824073,0.0,51603918.26142675,0.0,33593745.637677568,0.0,48179272.986745569,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,330873932.29805847,0.0,28186614.07570998,0.0 + 03/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43405984.63857584,0.0,51562077.886139769,0.0,33121455.08767463,0.0,47800525.24344603,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,252913919.4478202,0.0,28186614.07570998,0.0 + 03/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41246838.04558944,0.0,49655625.07604297,0.0,32056660.49914507,0.0,46351553.215111639,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,246334553.42787303,0.0,28186614.07570998,0.0 + 03/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42767028.17518561,0.0,50837033.69174069,0.0,32118671.11494088,0.0,46751584.13059035,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,249498193.70444147,0.0,28186614.07570998,0.0 + 03/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47473350.743643518,0.0,55227288.12230652,0.0,33527185.844810606,0.0,49119700.99610914,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,300883340.59484568,0.0,28186614.07570998,0.0 + 03/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51537261.41845606,0.0,59296833.63872273,0.0,35016813.49256074,0.0,51475154.89318448,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,389885754.92288389,0.0,28186614.07570998,0.0 + 03/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55299816.09064353,0.0,63385926.98341417,0.0,36347812.006433609,0.0,53692226.440027657,0.0,12848.584508566739,12647.437521184052,12663.73503532721,15244.355058791543,400980585.1664493,0.0,35233267.594637479,0.0 + 03/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60854859.1764343,0.0,69118441.85522719,0.0,40310916.65342073,0.0,58860482.10746295,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,498301424.89684769,0.0,14093307.03785499,0.0 + 03/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,48874393.40034036,0.0,57533504.12411611,0.0,27319812.074860179,0.0,43479911.50380176,0.0,17988.018311993434,17706.41252965767,17729.229049458096,21342.09708230816,446364346.2074208,0.0,63419881.67034747,0.0 + 03/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,34958977.34452394,0.0,43877729.98278703,0.0,13556932.573567411,0.0,26830482.68147369,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,273027965.4990964,0.0,63419881.67034747,69761869.8373822 + 03/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,37796700.513592649,0.0,46718495.19836298,0.0,16111522.684410159,0.0,30036283.273406995,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,284466844.5865171,0.0,49326574.63249246,69761869.8373822 + 03/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42168364.319833148,0.0,51239117.64942245,0.0,19716991.113950764,0.0,34717300.60377845,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,224670349.51580853,0.0,35233267.594637479,69761869.8373822 + 03/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45691216.84851868,0.0,54949587.092879887,0.0,22495396.314864384,0.0,38346364.65487115,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,238246362.69101352,0.0,35233267.594637479,62010550.96656194 + 03/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50687063.544740747,0.0,60078172.89864181,0.0,26889524.6970409,0.0,43880798.0620513,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,219876408.8712627,0.0,35233267.594637479,46507913.22492146 + 03/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,59260472.905749779,0.0,68615564.7985451,0.0,35124234.60220213,0.0,53954718.29218523,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,255295840.26747025,0.0,21139960.556782485,23253956.61246073 + 03/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20420098.920621545,0.0,27995052.38695714,0.0,2562810.471836253,0.0,11448707.070348962,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110912,1520.0700178164989,81597093.68415788,0.0,14093307.03785499,0.0 + 03/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45189400.35295523,0.0,53580306.42083244,0.0,22862817.019040128,0.0,39157595.35806276,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,179960543.9852845,0.0,14093307.03785499,0.0 + 03/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47916054.03192902,0.0,55994634.02257095,0.0,26580020.728907955,0.0,42759605.721446599,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,192399031.04500125,0.0,14093307.03785499,0.0 + 03/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49621867.51104836,0.0,57643109.99300092,0.0,28399564.470407368,0.0,44707186.595101367,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,199520445.10970474,0.0,14093307.03785499,0.0 + 03/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50728410.76033618,0.0,58660319.14159746,0.0,29235296.33196061,0.0,45662448.91903491,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,203416202.64256729,0.0,14093307.03785499,0.0 + 03/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38971361.128726977,0.0,46569889.013921428,0.0,19875159.06934734,0.0,33697551.94768194,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,158243688.64931575,0.0,14093307.03785499,15502637.741640486 + 03/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44850732.86055196,0.0,55594543.90945019,0.0,29412390.415098065,0.0,44971547.43062711,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,251424080.77631406,0.0,56373228.15141996,38756594.35410121 + 03/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,39952518.18635214,0.0,54555082.85498866,0.0,31185613.37369796,0.0,44028508.225448269,0.0,12825.507142980903,12624.721436061543,12640.98967821044,15216.97464544115,361631217.0901855,0.0,56373228.15141996,38756594.35410121 + 03/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28587725.80218442,0.0,52214757.38507768,0.0,30230294.475013678,0.0,45457303.59009374,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,348888503.5587357,0.0,28186614.07570998,0.0 + 03/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4037145.330944576,0.0,45779912.737282719,0.0,27102893.937083357,0.0,40465968.8146216,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,309945612.29989209,0.0,28186614.07570998,0.0 + 03/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,46605906.27160559,0.0,28992688.830897526,0.0,41211578.94776687,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,232345988.93824584,0.0,28186614.07570998,0.0 + 03/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,42413150.99657164,0.0,27128944.98898915,0.0,36414403.613643649,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,221567389.76965804,0.0,28186614.07570998,0.0 + 03/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1388525.0691424304,34301788.27522743,0.0,21100614.424058178,0.0,29906717.10647375,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,200920009.97621296,1388525.0691424304,28186614.07570998,0.0 + 03/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,287522.29954150968,28741684.328874008,0.0,15332533.316996349,0.0,24521352.577034568,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,184131385.1108808,287522.29954150968,28186614.07570998,0.0 + 03/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,28745703.597879959,0.0,11488719.684398963,0.0,22444633.33740808,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,332036847.84859976,0.0,28186614.07570998,0.0 + 03/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15009553.431851678,0.0,36514729.925305839,0.0,13934983.058890693,0.0,27685082.378664618,0.0,23085.912857365627,22724.49858491078,22753.78142077879,27390.55436179407,438581438.8041702,0.0,35233267.594637479,0.0 + 03/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40531150.80996099,0.0,55127115.72478975,0.0,25416576.870523205,0.0,42230935.83448421,0.0,17898.428640606744,17618.22540128948,17640.928282973928,21235.802357055854,431121964.0946919,0.0,14093307.03785499,0.0 + 03/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,48104303.56194612,0.0,63394559.813044037,0.0,28135822.88999601,0.0,46729498.558590989,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,453846349.1000225,0.0,63419881.67034747,0.0 + 03/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,39248977.89797251,0.0,54207909.1263875,0.0,17602030.277717096,0.0,34385950.71223762,0.0,15305.719589211305,15066.105693763031,15085.519908714887,18159.652037364056,374466058.0389066,0.0,63419881.67034747,69761869.8373822 + 03/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46959577.80857058,0.0,61447780.31958246,0.0,23364302.90512901,0.0,41770090.51474413,0.0,12722.348275757631,12523.17754014892,12539.31493262356,15094.580587296787,363907668.35700306,0.0,49326574.63249246,69761869.8373822 + 03/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53133232.12526503,0.0,67249994.45218766,0.0,28194647.226703366,0.0,47817241.11589466,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,348687848.3672322,0.0,35233267.594637479,69761869.8373822 + 03/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57646375.97959911,0.0,71514748.28751903,0.0,31632012.668628027,0.0,52219226.67190109,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,327063471.53626379,0.0,35233267.594637479,62010550.96656194 + 03/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62972729.652482498,0.0,76603653.89796973,0.0,36163403.04092275,0.0,57811955.98588225,0.0,5081.434536273948,5001.883730667903,5008.329168386527,6028.928107008018,309585814.52966836,0.0,35233267.594637479,46507913.22492146 + 03/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,72750014.0828849,0.0,86106335.7949759,0.0,45195990.395786579,0.0,68766046.38525102,0.0,2537.4750749376437,2497.7504292739874,2500.969035642193,3010.6173150351266,310786909.3364986,0.0,21139960.556782485,23253956.61246073 + 03/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33699556.34138562,0.0,46057622.039335567,0.0,11356256.303173442,0.0,26023007.601628536,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,136090570.06329469,0.0,14093307.03785499,0.0 + 03/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61797025.01097928,0.0,73929005.2735332,0.0,36267532.205815348,0.0,56941412.124427858,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,247889102.39252717,0.0,14093307.03785499,0.0 + 03/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64053718.2200671,0.0,75803133.97088409,0.0,38395410.289709199,0.0,59613876.68253693,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,256820266.9409688,0.0,14093307.03785499,0.0 + 03/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66244230.96381262,0.0,77792151.25776226,0.0,40593398.4698341,0.0,61963735.753924708,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,265516401.6910627,0.0,14093307.03785499,0.0 + 03/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64017279.09936037,0.0,74755132.1720723,0.0,38296244.769515369,0.0,58913271.62224216,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,254904812.9089192,0.0,14093307.03785499,0.0 + 03/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37943480.97794719,0.0,47302650.48914786,0.0,16225064.508687182,0.0,30833046.372090419,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,151312760.33597539,0.0,14093307.03785499,15502637.741640486 + 03/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,30173147.766712164,0.0,48418195.34815333,0.0,20177922.592965709,0.0,33976631.96019396,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,151851766.54491414,0.0,56373228.15141996,38756594.35410121 + 03/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21526520.763188997,0.0,52993223.32329987,0.0,26325868.477519268,0.0,41433778.01783234,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,218874256.7424272,0.0,56373228.15141996,38756594.35410121 + 03/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,378756.6036208417,0.0,45882674.04391845,0.0,22582301.010698026,0.0,36281702.80917905,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,220271131.1372355,0.0,28186614.07570998,0.0 + 03/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,43463022.74749889,0.0,23106605.70457565,0.0,36370701.412648688,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,218476144.75269915,0.0,28186614.07570998,0.0 + 03/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8680903.276971754,43340656.58359136,0.0,24893856.371773498,0.0,36548489.600543078,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,181806879.14789189,8680903.276971754,28186614.07570998,0.0 + 03/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17279657.730390558,35311500.21702984,0.0,21448416.56772603,0.0,29177109.472152797,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,163066547.8592192,17279657.730390558,28186614.07570998,0.0 + 03/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21338139.61003931,25120600.832011,0.0,15023544.432494019,0.0,21934827.227423327,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,177689862.66238196,21338139.61003931,28186614.07570998,0.0 + 03/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18814535.501921126,16842338.16265153,0.0,6846127.601205968,0.0,14119292.22166213,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,192066801.19014067,18814535.501921126,28186614.07570998,0.0 + 03/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8871765.940222305,14107429.128447907,0.0,1107875.1418665634,0.0,9673127.237287894,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,217712235.51337869,8871765.940222305,28186614.07570998,0.0 + 03/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,260206.28071187525,16855991.017486074,0.0,184256.7775784817,0.0,10476603.422890863,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,258738631.5588626,260206.28071187525,35233267.594637479,0.0 + 03/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14676653.16377708,0.0,33896802.12328531,0.0,11542817.607138137,0.0,23446989.622795687,0.0,18028.25183050592,17746.016184932298,17768.8837380848,21389.83261621541,353322006.24805459,0.0,14093307.03785499,0.0 + 03/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,20126657.92731484,0.0,37661518.15504759,0.0,11061241.885147332,0.0,23126777.47263117,0.0,10296.542430157862,10135.348137595649,10148.40856816442,12216.454550194507,246044508.7101457,0.0,63419881.67034747,0.0 + 03/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,11569634.020242738,0.0,27711865.6741144,0.0,893821.9468237076,0.0,10646132.00446246,0.0,7719.274674838009,7598.42798977415,7608.2193397943979,9158.624738865881,166325821.92142407,0.0,63419881.67034747,69761869.8373822 + 03/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,17493113.35523132,0.0,32670908.475126909,0.0,4966897.8044827389,0.0,16090522.254418124,0.0,5144.014055739574,5063.4835560820979,5070.008371463131,6103.176318046869,148191898.17405314,0.0,49326574.63249246,69761869.8373822 + 03/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23664782.513199867,0.0,37994038.10710614,0.0,9054211.945053194,0.0,21763782.19895527,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,169436183.686861,0.0,35233267.594637479,69761869.8373822 + 03/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27868894.58362671,0.0,41701166.61308839,0.0,11964461.621893669,0.0,25555136.638900553,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,184049028.38005585,0.0,35233267.594637479,62010550.96656194 + 03/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33064860.55299805,0.0,46178113.76788985,0.0,16233880.31424222,0.0,30732167.18034783,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,203168390.73802445,0.0,35233267.594637479,46507913.22492146 + 04/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,47589551.682693857,0.0,61166055.94590866,0.0,27144191.679604494,0.0,45362512.72188893,0.0,2571.26156417546,2531.0079847199228,2534.2694468428487,3050.703694806214,219736385.71605594,0.0,21139960.556782485,23253956.61246073 + 04/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13767917.681357593,0.0,25379747.053137714,0.0,0.0,0.0,7474990.388803598,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.3518474031073,65859691.96627891,0.0,14093307.03785499,0.0 + 04/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41848996.187825027,0.0,53155392.40053028,0.0,18305989.557025397,0.0,36447395.90695077,0.0,1285.4410549833106,1265.317235468755,1266.9477258749017,1525.126743436042,168991971.98747833,0.0,14093307.03785499,0.0 + 04/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45923296.95971015,0.0,56250162.92292619,0.0,23850752.482085796,0.0,40989911.012577857,0.0,1285.249089511789,1265.1282752525013,1266.7585221641226,1524.898983731854,186245448.91167698,0.0,14093307.03785499,0.0 + 04/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45965427.98752169,0.0,55279338.2466579,0.0,24998000.406610874,0.0,41274577.42990473,0.0,1285.249089511789,1265.1282752525013,1266.7585221641226,1524.898983731854,186748669.6050722,0.0,14093307.03785499,0.0 + 04/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47669300.41857204,0.0,56860168.271582189,0.0,26500259.017673356,0.0,43008309.51303026,0.0,1285.4410549833106,1265.317235468755,1266.9477258749017,1525.126743436042,193272235.1560047,0.0,14093307.03785499,0.0 + 04/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42725448.28070704,0.0,51570278.05765662,0.0,23305814.836592579,0.0,38465321.82558659,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,232968784.45891498,0.0,14093307.03785499,15502637.741640486 + 04/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,57565499.77856397,0.0,67405451.40881913,0.0,37309908.332743588,0.0,55340119.64613626,0.0,20527.844467402356,20206.477232799574,20232.51534114629,24355.503864576203,524781406.42759087,0.0,56373228.15141996,38756594.35410121 + 04/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,59126521.26795762,0.0,70256575.11812508,0.0,38630646.14319049,0.0,57617653.11795571,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,494304687.87680688,0.0,56373228.15141996,38756594.35410121 + 04/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57438385.407612148,0.0,67197387.20075104,0.0,42504710.53432515,0.0,60830942.46351229,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,420531117.0861604,0.0,28186614.07570998,0.0 + 04/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49632029.90234236,0.0,59278943.82612995,0.0,37867899.48633625,0.0,54403029.60475852,0.0,10300.55634196066,10139.299210860381,10152.364732790329,12221.216903328093,355310276.6997491,0.0,28186614.07570998,0.0 + 04/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50898952.82141754,0.0,59895446.502855788,0.0,36837472.23760777,0.0,53434744.26560295,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,278196137.4297946,0.0,28186614.07570998,0.0 + 04/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47698168.6268358,0.0,56492746.363784369,0.0,34359146.03234691,0.0,50188664.30061236,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,265926926.61331488,0.0,28186614.07570998,0.0 + 04/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44828309.345116678,0.0,54087504.970093239,0.0,32149810.849165035,0.0,47341212.68517977,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,255667268.89377506,0.0,28186614.07570998,0.0 + 04/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33481140.658878514,0.0,45445436.26057182,0.0,27230178.236612135,0.0,40511161.49783379,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,262577767.9334393,0.0,28186614.07570998,0.0 + 04/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32850121.33871629,0.0,43161869.676225159,0.0,24895070.690388137,0.0,37836903.46587074,0.0,12917.386859574628,12715.162758551849,12731.547543575927,15325.986421915206,332028266.0722238,0.0,28186614.07570998,0.0 + 04/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36305982.98337309,0.0,44718151.67265916,0.0,24021156.57755732,0.0,37321387.25995464,0.0,12915.56899978458,12713.373357695935,12729.75583689437,15323.82960066629,335623778.55569246,0.0,35233267.594637479,0.0 + 04/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43941947.783369939,0.0,51927525.47086619,0.0,28296684.05219349,0.0,42872466.042697679,0.0,18074.871540416,17791.90605458683,17814.832741520266,21445.145122439986,437494943.0013944,0.0,14093307.03785499,0.0 + 04/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,35890842.4618489,0.0,44541081.36614634,0.0,18493350.624418305,0.0,31494507.00747257,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,400632873.6763799,0.0,63419881.67034747,0.0 + 04/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,22409980.750600127,0.0,31257597.241398727,0.0,5074002.619068062,0.0,15256918.532112578,0.0,10325.002147076286,10163.36231233656,10176.45884202883,12250.220917944032,228492658.332968,0.0,63419881.67034747,69761869.8373822 + 04/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,26507848.111159594,0.0,35495298.489277359,0.0,8424691.087091532,0.0,19695018.17817456,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,244483309.8742175,0.0,49326574.63249246,69761869.8373822 + 04/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29991648.761490257,0.0,38927917.861289028,0.0,11297714.226010945,0.0,23362816.06485711,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,180813277.26446826,0.0,35233267.594637479,69761869.8373822 + 04/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31766977.165710257,0.0,40503219.60102523,0.0,12987043.05177962,0.0,25337258.475271729,0.0,5159.089991326047,5078.323475084551,5084.8674132158989,6121.063340136378,187790537.48493318,0.0,35233267.594637479,62010550.96656194 + 04/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,35856848.25264187,0.0,44548049.108481887,0.0,16834155.07311584,0.0,30070661.563560547,0.0,2578.7456037787876,2538.3748602871135,2541.645815381129,3059.583222112207,165895772.20341338,0.0,35233267.594637479,46507913.22492146 + 04/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,43916212.847022969,0.0,52404330.04037072,0.0,24685462.45733642,0.0,39538275.566372159,0.0,2578.7456037787876,2538.3748602871135,2541.645815381129,3059.583222112207,199130339.1167155,0.0,21139960.556782485,23253956.61246073 + 04/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6790857.276125299,0.0,12562949.871922479,0.0,0.0,0.0,659615.8919098409,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,39306452.14276425,0.0,14093307.03785499,0.0 + 04/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31389099.404967838,0.0,39331565.919404,0.0,12131635.31120957,0.0,24772776.279037328,0.0,1287.5695427450826,1267.4124013575475,1269.0455915987912,1527.6521129160117,126891123.64964149,0.0,14093307.03785499,0.0 + 04/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34159938.80077647,0.0,41369031.54119269,0.0,17149979.628260703,0.0,29809251.02690053,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,141756682.692206,0.0,14093307.03785499,0.0 + 04/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34553626.190555308,0.0,41467349.76358693,0.0,18127177.540871353,0.0,30467477.35326065,0.0,1288.0509527375028,1267.8862747867293,1269.5200756622535,1528.2232874954689,143888880.97472925,0.0,14093307.03785499,0.0 + 04/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33389214.106221804,0.0,40004236.25448366,0.0,17852784.481216585,0.0,29613142.716193774,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,140150344.95523227,0.0,14093307.03785499,0.0 + 04/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25009430.330560063,0.0,31142960.887172417,0.0,12189935.145616832,0.0,21839417.142126867,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,167435567.33189724,0.0,14093307.03785499,15502637.741640486 + 04/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,34663609.34430496,0.0,40616696.63069657,0.0,23647563.023643104,0.0,34144135.64692486,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,442237643.663334,0.0,56373228.15141996,38756594.35410121 + 04/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46389164.10633616,0.0,54479447.90612909,0.0,33101473.38815618,0.0,48205978.9841925,0.0,18068.753757383496,17785.884046588973,17808.80297355045,21437.886606402055,452540842.9669438,0.0,56373228.15141996,38756594.35410121 + 04/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51103486.22479519,0.0,59582867.699976619,0.0,35888816.337839458,0.0,52109772.39592286,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,391675040.6364,0.0,28186614.07570998,0.0 + 04/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54476929.99234156,0.0,63267618.11460982,0.0,37267971.54879588,0.0,54557371.83102443,0.0,10313.880127971648,10152.414410515816,10165.496832719162,12237.02506682995,363897630.6637034,0.0,28186614.07570998,0.0 + 04/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55762285.81314607,0.0,64896026.16442339,0.0,38061464.08567015,0.0,55933109.98462646,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,291755220.2559767,0.0,28186614.07570998,0.0 + 04/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55501388.55886855,0.0,64993372.71581115,0.0,38396607.74156055,0.0,56475921.33745499,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,292421602.25944796,0.0,28186614.07570998,0.0 + 04/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55392407.87740965,0.0,65078625.52673229,0.0,38269507.30749138,0.0,56504061.45095806,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,292328133.4955226,0.0,28186614.07570998,0.0 + 04/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57082618.90678943,0.0,66764061.68565917,0.0,38690654.930892888,0.0,57339006.26443979,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,335501638.78717818,0.0,28186614.07570998,0.0 + 04/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,60087169.84719435,0.0,69780753.28399521,0.0,39803726.56671238,0.0,59092122.57668567,0.0,12878.927441182876,12677.305429529617,12693.641431521231,15280.355790079646,421472600.6069158,0.0,28186614.07570998,0.0 + 04/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62447039.06153184,0.0,72320735.27232047,0.0,39862304.016773719,0.0,59638676.339564878,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,427001255.95474126,0.0,35233267.594637479,0.0 + 04/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66248131.054934088,0.0,76135289.8751793,0.0,42571602.93124403,0.0,63092467.39508705,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,517905660.9848317,0.0,14093307.03785499,0.0 + 04/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52339817.186129387,0.0,62457382.8437479,0.0,28448539.911156589,0.0,46132895.01893004,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,459300716.9138341,0.0,63419881.67034747,0.0 + 04/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,36747624.03269586,0.0,46964456.6348654,0.0,13331816.886066996,0.0,27752558.937294194,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,279156910.4994369,0.0,63419881.67034747,69761869.8373822 + 04/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,38237195.51387941,0.0,48274192.53240454,0.0,14978091.563478889,0.0,29663957.932068558,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,285513891.5503459,0.0,49326574.63249246,69761869.8373822 + 04/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40345092.9413771,0.0,50251405.37852982,0.0,17112729.21642963,0.0,32244083.614498229,0.0,5159.089991326047,5078.323475084551,5084.8674132158989,6121.063340136378,217149350.34198118,0.0,35233267.594637479,69761869.8373822 + 04/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40689638.34257179,0.0,50429928.18222262,0.0,17715051.871736934,0.0,32850970.18726271,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,218918768.934615,0.0,35233267.594637479,62010550.96656194 + 04/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43026614.90078385,0.0,52593924.752985227,0.0,20253180.58543054,0.0,35803687.504672389,0.0,2580.7860864440469,2540.3833988155968,2543.656942116513,3062.004176904525,190293997.91928245,0.0,35233267.594637479,46507913.22492146 + 04/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,48717512.18396961,0.0,57539074.54534797,0.0,26844526.547450589,0.0,43063114.80715448,0.0,2580.7860864440469,2540.3833988155968,2543.656942116513,3062.004176904525,214780818.2593331,0.0,21139960.556782485,23253956.61246073 + 04/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8504767.19460221,0.0,13996601.431828917,0.0,0.0,0.0,1561741.4788993248,0.0,1290.3930432220237,1270.1916994077984,1271.8284710582566,1531.0020884522626,43371405.19303568,0.0,14093307.03785499,0.0 + 04/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30043244.256425386,0.0,37300728.9015252,0.0,6828776.5229043499,0.0,22809754.653470484,0.0,1290.6252683845358,1270.42028904207,1272.0573552536035,1531.277614743004,116294274.23304899,0.0,14093307.03785499,0.0 + 04/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28936813.93931085,0.0,35127479.64467192,0.0,12644368.736037646,0.0,23898455.934781955,0.0,1291.9941219283467,1271.7677129282932,1273.406515433033,1532.9017072203838,119939370.46183858,0.0,14093307.03785499,0.0 + 04/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26228528.678716307,0.0,31908654.4635792,0.0,11605746.657567412,0.0,21486554.346524184,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,110573922.9012575,0.0,14093307.03785499,0.0 + 04/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25579614.5479637,0.0,30916801.398857397,0.0,11482641.267468304,0.0,20912576.739872654,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,108225091.34857485,0.0,14093307.03785499,0.0 + 04/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19506108.66743314,0.0,24679234.238136934,0.0,6801023.459461538,0.0,14802024.244615285,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,143073879.13957349,0.0,14093307.03785499,15502637.741640486 + 04/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,36673433.53084644,0.0,42350728.190505448,0.0,24255040.614065399,0.0,34985996.144119549,0.0,20646.288691552374,20323.067190524773,20349.255536932105,24496.033415236205,447197919.88282039,0.0,56373228.15141996,38756594.35410121 + 04/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44857515.16638494,0.0,52602060.83826035,0.0,32797700.90220274,0.0,46340690.237931009,0.0,18062.123443729644,17779.357531732254,17802.26804861319,21430.019992346388,446863535.6038963,0.0,56373228.15141996,38756594.35410121 + 04/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25928062.58683514,0.0,40461743.17931809,0.0,26020863.49801898,0.0,37481898.35786633,0.0,12906.252683845356,12704.202890420696,12720.573552536038,15312.776147430042,323010266.6092742,0.0,28186614.07570998,0.0 + 04/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21710285.492236128,0.0,39170571.8882073,0.0,25672588.247365636,0.0,37122123.604601617,0.0,10320.220514265255,10158.655536879198,10171.74600141088,12244.547693139893,278098180.3169135,0.0,28186614.07570998,0.0 + 04/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28936393.730742195,0.0,42838036.18183227,0.0,27187834.81931189,0.0,39409470.47871298,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,215618814.8054936,0.0,28186614.07570998,0.0 + 04/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36223355.25903706,0.0,44758111.72547645,0.0,27291690.153036298,0.0,40063016.56780635,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,225596604.7495765,0.0,28186614.07570998,0.0 + 04/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35734207.21693775,0.0,43331719.58028507,0.0,26361359.341592045,0.0,38918639.061343949,0.0,5164.663083277148,5083.809319241499,5090.36032644297,6127.675600998361,221625355.18801473,0.0,28186614.07570998,0.0 + 04/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37882724.966953847,0.0,45131553.414098639,0.0,26892699.5350803,0.0,39823128.50085026,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,265639957.6965261,0.0,28186614.07570998,0.0 + 04/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39647463.684847418,0.0,46667426.735715139,0.0,27312378.4776613,0.0,40522095.621557798,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,347377888.9058844,0.0,28186614.07570998,0.0 + 04/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39230520.30356187,0.0,46225493.37191322,0.0,25951599.84546996,0.0,39059598.286967668,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,343695736.1940155,0.0,35233267.594637479,0.0 + 04/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44654025.262478608,0.0,51546324.97806096,0.0,28793304.914131434,0.0,43038914.94456434,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,438348701.3271085,0.0,14093307.03785499,0.0 + 04/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38201986.60866617,0.0,46152162.471611518,0.0,20184014.49284385,0.0,33388276.877085769,0.0,18032.713338325033,17750.407847014205,17773.28105927155,21395.126024936562,407751942.2205777,0.0,63419881.67034747,0.0 + 04/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,28899427.6773945,0.0,37451261.43454409,0.0,9765397.529982839,0.0,21254851.73478026,0.0,10283.528439866484,10122.53788375004,10135.581806999213,12201.013947488336,251244521.85787637,0.0,63419881.67034747,69761869.8373822 + 04/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,34000010.081091079,0.0,42644914.13365319,0.0,13929121.186744102,0.0,26597900.431454794,0.0,10277.278251370637,10116.385543121067,10129.421538451381,12193.598337422376,270952007.0462588,0.0,49326574.63249246,69761869.8373822 + 04/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37736962.09699012,0.0,46390278.899966519,0.0,17101377.737149694,0.0,30642141.479056989,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,208772681.67153547,0.0,35233267.594637479,69761869.8373822 + 04/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40489031.24770446,0.0,49152241.97356814,0.0,19393816.97639668,0.0,33555486.23490958,0.0,5135.371257428885,5054.976062391274,5061.489914998346,6092.92196776713,219431709.56188715,0.0,35233267.594637479,62010550.96656194 + 04/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46316320.213905248,0.0,55021305.84935786,0.0,24606914.88249538,0.0,40035289.26630154,0.0,2560.92699520091,2520.8352053505807,2524.0835588089755,3038.44212321266,204299266.58932329,0.0,35233267.594637479,46507913.22492146 + 04/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,58820438.18143166,0.0,67809077.09613543,0.0,35858331.728526677,0.0,54132047.5806596,0.0,2549.8127800786676,2509.894985339432,2513.129241207697,3025.255531225793,254773027.7230191,0.0,21139960.556782485,23253956.61246073 + 04/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19852215.494261438,0.0,27176022.21890103,0.0,2643802.4627248786,0.0,11162060.451600163,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,79967691.05560047,0.0,14093307.03785499,0.0 + 04/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43839815.53928845,0.0,51583151.97852369,0.0,23701674.639818979,0.0,38834252.15340355,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,177092484.73914764,0.0,14093307.03785499,0.0 + 04/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47406357.75773945,0.0,55064479.39295108,0.0,27181179.453213015,0.0,42752862.127183217,0.0,1274.9063900393338,1254.947492669716,1256.5646206038485,1512.6277656128967,191481445.2992196,0.0,14093307.03785499,0.0 + 04/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51137620.06507361,0.0,58899860.18303649,0.0,30661636.990923868,0.0,46882345.30183266,0.0,1271.6178446421598,1251.7104300642123,1253.3233867127777,1508.7260320306448,206608822.23728589,0.0,14093307.03785499,0.0 + 04/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47547798.03123617,0.0,54471501.439614627,0.0,27597892.712610939,0.0,42778612.072605308,0.0,1274.9063900393338,1254.947492669716,1256.5646206038485,1512.6277656128967,191472370.82419987,0.0,14093307.03785499,0.0 + 04/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21499756.5595757,0.0,27298859.882811265,0.0,6648428.311486854,0.0,16207167.535055317,0.0,5119.902066879404,5039.7490449056199,5046.243275946471,6074.568363675475,148263878.19399423,0.0,14093307.03785499,15502637.741640486 + 04/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14211878.711845492,0.0,24534932.959264239,0.0,13692191.548933568,0.0,17139522.361547688,0.0,20557.735213706783,20235.90003389449,20261.976056523537,24390.96809406647,377186211.4150796,0.0,56373228.15141996,38756594.35410121 + 04/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,11240275.628536934,0.0,31936662.360833106,0.0,12499869.7303188,0.0,26874459.191035928,0.0,18018.949252776256,17736.859240792386,17759.71499428773,21378.795462840382,352170815.1332331,0.0,56373228.15141996,38756594.35410121 + 04/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,30563569.719870368,0.0,15798427.580785847,0.0,26020702.48583634,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,265067516.73724855,0.0,28186614.07570998,0.0 + 04/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2554440.4944513987,26961205.163486564,0.0,16757313.14721018,0.0,26187353.341538147,0.0,10312.759642661353,10151.31146661208,10164.39246755963,12235.69565378084,224216844.88244493,2554440.4944513987,28186614.07570998,0.0 + 04/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8399123.28211979,23516192.62181814,0.0,16477603.20523144,0.0,24270594.9702078,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,141483124.6427195,8399123.28211979,28186614.07570998,0.0 + 04/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20929261.01853797,25460426.44498223,0.0,16898569.83397831,0.0,22580590.263451995,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,142212820.72877459,20929261.01853797,28186614.07570998,0.0 + 04/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20848696.722050489,16067548.131172605,0.0,10551059.711301974,0.0,16023475.510201952,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473419,119908984.53757128,20848696.722050489,28186614.07570998,0.0 + 04/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,977624.3060551378,18657845.052642995,0.0,10954570.413027354,0.0,18596093.07071746,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,164118359.81593085,977624.3060551378,28186614.07570998,0.0 + 04/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5225069.717970514,0.0,24936624.179607408,0.0,13942398.553361364,0.0,22742216.17349951,0.0,12910.622528868573,12708.504324704882,12724.880529657334,15317.960801742849,260029394.0903439,0.0,28186614.07570998,0.0 + 04/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14985078.72151551,0.0,30147174.693076195,0.0,14497907.632077527,0.0,24580313.977798456,0.0,12907.379493515047,12705.312059674803,12721.684151067939,15314.113064090161,277345034.59052029,0.0,35233267.594637479,0.0 + 04/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26932030.942706378,0.0,41577488.6365788,0.0,20532537.13838537,0.0,33408481.60606379,0.0,18054.981617347312,17772.327511974247,17795.228969957185,21421.546487964028,392609242.8378083,0.0,14093307.03785499,0.0 + 04/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,21892322.472062489,0.0,36199165.74408035,0.0,11977549.854568024,0.0,23702621.639282157,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,363984751.9264868,0.0,63419881.67034747,0.0 + 04/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,11397524.429901807,0.0,24864515.237441187,0.0,346899.49020119677,0.0,9296668.985378083,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,200343075.83384649,0.0,63419881.67034747,69761869.8373822 + 04/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,22688156.499877003,0.0,36797028.58213279,0.0,6351292.192373417,0.0,18904018.492971355,0.0,10318.179982652095,10156.646950169103,10169.734826431797,12242.126680272757,239132574.14964728,0.0,49326574.63249246,69761869.8373822 + 04/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33301941.568827154,0.0,46960972.4945318,0.0,12854079.522169017,0.0,28008126.104190317,0.0,5156.940063985824,5076.207205257908,5082.748416359581,6118.512533414975,198288989.27818416,0.0,35233267.594637479,69761869.8373822 + 04/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41925238.63319855,0.0,54673231.97665739,0.0,19072587.876038307,0.0,35911240.52223493,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,228507601.145637,0.0,35233267.594637479,62010550.96656194 + 04/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,48874482.2775697,0.0,60617489.70683992,0.0,25363358.96084138,0.0,43174881.00755449,0.0,2565.543206263963,2525.3791487682885,2528.633357561567,3043.9190814273636,216418721.21128176,0.0,35233267.594637479,46507913.22492146 + 04/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,56406218.335074838,0.0,67209382.7014008,0.0,33336857.729394244,0.0,52192712.42675291,0.0,2566.841969485217,2526.6575796090298,2529.9134357909335,3045.460014412541,247553113.9900946,0.0,21139960.556782485,23253956.61246073 + 04/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18343583.88030139,0.0,27197524.29308548,0.0,1640666.7114296316,0.0,10544085.69390543,0.0,1282.7716031319815,1262.6895743841442,1264.3166787807837,1521.9595407136818,76920115.20796006,0.0,14093307.03785499,0.0 + 04/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45609609.669569287,0.0,55743406.07572394,0.0,21929380.06745699,0.0,39888045.54926108,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,182374412.76074717,0.0,14093307.03785499,0.0 + 04/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46667134.370980519,0.0,55939590.44906201,0.0,25085598.29961235,0.0,41657855.77442597,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,188560462.17640794,0.0,14093307.03785499,0.0 + 04/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45580779.7611385,0.0,54099146.819531697,0.0,25517093.303782509,0.0,41133946.438654799,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,185541249.6054346,0.0,14093307.03785499,0.0 + 04/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46242997.75492388,0.0,54572225.24199024,0.0,26587921.484521673,0.0,42073143.52416153,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,188673814.70943029,0.0,14093307.03785499,0.0 + 04/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41739061.684907708,0.0,49851409.244767,0.0,23460689.81726399,0.0,37808923.51405193,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,229650191.07632263,0.0,14093307.03785499,15502637.741640486 + 04/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,52671390.762094598,0.0,61156494.37738073,0.0,34910057.266738709,0.0,50950713.02299061,0.0,20524.345650111703,20203.033190146307,20229.066860492538,24351.352651418907,506796729.49701467,0.0,56373228.15141996,38756594.35410121 + 04/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60365386.12629369,0.0,70698378.53112975,0.0,38179954.258530657,0.0,56836000.226637247,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,494979734.5434742,0.0,56373228.15141996,38756594.35410121 + 04/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67379845.88738095,0.0,77545899.69488752,0.0,46536837.784948687,0.0,67421837.51656845,0.0,12840.50395623545,12639.483471406937,12655.770735945105,15234.767791904116,451018314.32355538,0.0,28186614.07570998,0.0 + 04/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58100534.96256058,0.0,67884024.07965362,0.0,42140165.75624955,0.0,60750099.22019567,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,382702181.36451217,0.0,28186614.07570998,0.0 + 04/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59036809.64527884,0.0,68881855.71419034,0.0,41541558.002932008,0.0,60561838.00790979,0.0,5144.746060404829,5064.204101077763,5070.729844954568,6104.044813639857,307003470.7225882,0.0,28186614.07570998,0.0 + 04/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54905958.4970482,0.0,64675568.76788862,0.0,39053475.39031144,0.0,57113592.14908163,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,292782751.43933227,0.0,28186614.07570998,0.0 + 04/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42431695.95491049,0.0,52252593.13284219,0.0,33892908.912949968,0.0,49069694.919437628,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,254670769.51212419,0.0,28186614.07570998,0.0 + 04/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42534268.7047451,0.0,51957367.553074579,0.0,32931901.56533414,0.0,48132670.21213414,0.0,7722.406822618397,7601.511103196734,7611.306426123314,9162.340912645881,291107442.98779156,0.0,28186614.07570998,0.0 + 04/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50697075.41686183,0.0,60697523.03742572,0.0,35416176.84131696,0.0,52975211.43598426,0.0,12874.04553092269,12672.499946485272,12688.829756121499,15274.563589909905,392421766.49597057,0.0,28186614.07570998,0.0 + 04/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57312223.75463742,0.0,66931486.5695859,0.0,37006513.69641842,0.0,55595830.640504818,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,409578555.9256969,0.0,35233267.594637479,0.0 + 04/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59465308.295561689,0.0,68215141.76201909,0.0,39022899.11689164,0.0,57435685.91493483,0.0,18032.713338325033,17750.407847014205,17773.28105927155,21395.126024936562,493964536.8597776,0.0,14093307.03785499,0.0 + 04/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,47545732.238677199,0.0,56618852.87004381,0.0,25991713.146412929,0.0,41952758.21698171,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,441867800.203174,0.0,63419881.67034747,0.0 + 04/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,33897661.66956184,0.0,43176565.69576697,0.0,12333823.061349329,0.0,25474648.231823166,0.0,10299.23642473815,10137.99995718822,10151.0638048972,12219.650871927923,268991322.4700067,0.0,63419881.67034747,69761869.8373822 + 04/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,36753991.47219501,0.0,45947884.003317978,0.0,14912767.134302885,0.0,28681468.08143217,0.0,10297.898449857848,10136.682928554266,10149.745079137425,12218.063415806084,280384714.2353283,0.0,49326574.63249246,69761869.8373822 + 04/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39971192.97554442,0.0,49139252.499246079,0.0,17756645.135285617,0.0,32270028.46606818,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,216171275.71114669,0.0,35233267.594637479,69761869.8373822 + 04/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42094827.8496676,0.0,51249594.018326077,0.0,19691881.377962486,0.0,34670769.24388923,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,224699300.50974495,0.0,35233267.594637479,62010550.96656194 + 04/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46732252.103481,0.0,55939603.054338339,0.0,23867450.071185288,0.0,39869683.056060578,0.0,2570.1097750302176,2529.874227048615,2533.134228209061,3049.337140951878,204865827.62152837,0.0,35233267.594637479,46507913.22492146 + 04/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,54909857.90221547,0.0,64002119.62283741,0.0,31776788.911327099,0.0,49423561.96753648,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,238580724.2742101,0.0,21139960.556782485,23253956.61246073 + 04/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16080413.863601987,0.0,23927018.796773863,0.0,429379.4572456798,0.0,8068092.725550175,0.0,1284.6597814213297,1264.5481928901336,1266.1776923064227,1524.199792177797,67727412.49483617,0.0,14093307.03785499,0.0 + 04/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39876802.7222648,0.0,47898412.51633404,0.0,17608466.87628925,0.0,33792658.476592708,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.351847403107,158413377.4344608,0.0,14093307.03785499,0.0 + 04/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41134361.67020355,0.0,48638832.02078741,0.0,21481625.36292734,0.0,35852741.2902885,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,166347402.57484345,0.0,14093307.03785499,0.0 + 04/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43739114.91869024,0.0,51242845.9578059,0.0,24071571.43855626,0.0,38792656.71861476,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,177043715.73750014,0.0,14093307.03785499,0.0 + 04/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45695691.618497829,0.0,53242100.33467403,0.0,26109692.845431698,0.0,41136442.89546971,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,185368167.56865917,0.0,14093307.03785499,0.0 + 04/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42619479.770599279,0.0,50713059.55942204,0.0,23559178.427902946,0.0,38338302.02229461,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,174427546.48405183,0.0,14093307.03785499,15502637.741640486 + 04/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,47626388.96525634,0.0,57502140.91089238,0.0,31394639.885791758,0.0,44760607.916770819,0.0,5107.458772814891,5027.500552930982,5033.979000539748,6059.804870257667,257707253.18626715,0.0,56373228.15141996,38756594.35410121 + 04/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60702462.236780118,0.0,71405746.19392252,0.0,39852425.64153782,0.0,58908482.67127984,0.0,12757.5854085953,12557.863029098533,12574.04511736596,15136.388100324628,421762290.7029042,0.0,56373228.15141996,38756594.35410121 + 04/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50457844.82521509,0.0,64160532.16295285,0.0,41044557.96803911,0.0,58828275.65453858,0.0,12792.271569508739,12592.006171692175,12608.232256883754,15177.541906196264,405903397.46615698,0.0,28186614.07570998,0.0 + 04/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54582195.10795043,0.0,65080576.60559491,0.0,40522699.13860209,0.0,58638282.42444953,0.0,12818.747925777896,12618.068035664779,12634.327704228166,15208.955092244967,410632108.8050938,0.0,28186614.07570998,0.0 + 04/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40135220.20514538,0.0,52378132.3559613,0.0,34847032.375380348,0.0,50361006.10951423,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,292785780.5471929,0.0,28186614.07570998,0.0 + 04/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37229737.26631948,0.0,49794354.91562158,0.0,33444381.635392477,0.0,48262325.307011548,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,283774367.1220299,0.0,28186614.07570998,0.0 + 04/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40687400.59457944,0.0,52477589.888633858,0.0,34070313.30070472,0.0,49800994.69341216,0.0,7675.362941705243,7555.203703015304,7564.9393541302529,9106.52514371776,291883610.590577,0.0,28186614.07570998,0.0 + 04/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54112553.549437,0.0,64279206.97520022,0.0,38590355.88434043,0.0,57013475.0399798,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,328773956.3867861,0.0,28186614.07570998,0.0 + 04/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57794283.07795227,0.0,67712163.92508945,0.0,39955787.69704628,0.0,59127979.797372389,0.0,17891.108882585515,17611.020235445572,17633.71383253841,21227.117743576004,492296872.9963842,0.0,28186614.07570998,0.0 + 04/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51440784.864212099,0.0,61184224.9172643,0.0,35684795.87961702,0.0,53821338.42127843,0.0,22983.564477667012,22623.752488189417,22652.90550242886,27269.121916159504,546036783.8663731,0.0,35233267.594637479,0.0 + 04/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65401763.59301311,0.0,75202499.98554224,0.0,43353359.90082495,0.0,63996693.501363817,0.0,17887.40349242382,17607.372853858094,17630.06175092748,21222.721439592588,515605531.3132313,0.0,14093307.03785499,0.0 + 04/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,57297185.041387129,0.0,67598864.8862168,0.0,33180248.684481324,0.0,52171548.46341431,0.0,17891.108882585515,17611.020235445572,17633.71383253841,21227.117743576004,477954505.5744233,0.0,63419881.67034747,0.0 + 04/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,44620307.611425,0.0,55210648.25130965,0.0,19937441.669990317,0.0,36354392.957470659,0.0,15335.236185073298,15095.16020181049,15114.611856461497,18194.67235163658,385585640.6321303,0.0,63419881.67034747,69761869.8373822 + 04/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,47005212.25308466,0.0,57629975.75611891,0.0,22007625.52302137,0.0,38969237.34781796,0.0,12802.206012981016,12601.785089598625,12618.023775924037,15189.328744155097,357172887.9216145,0.0,49326574.63249246,69761869.8373822 + 04/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50291128.443467069,0.0,61504082.182134088,0.0,24908768.1746241,0.0,42688908.6250288,0.0,10239.804133758807,10079.498089811239,10092.486551892942,12149.13672735095,332612219.2353842,0.0,35233267.594637479,69761869.8373822 + 04/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51155932.14306371,0.0,62180199.42687918,0.0,25780255.718119153,0.0,43922811.00705962,0.0,7695.304285788543,7574.8328616369249,7584.593806926263,9130.184787264692,298184894.9649408,0.0,35233267.594637479,62010550.96656194 + 04/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53883622.47017597,0.0,64819083.35899177,0.0,28635025.304167034,0.0,47303071.91992564,0.0,5128.409227478876,5048.123024318898,5054.628046086938,6084.661784988465,271377762.55160388,0.0,35233267.594637479,46507913.22492146 + 04/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,62254487.77123088,0.0,73114955.8212071,0.0,36792773.31437759,0.0,57179340.85581144,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,267696354.2630242,0.0,21139960.556782485,23253956.61246073 + 04/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22975221.691587889,0.0,32010760.07477332,0.0,3325949.645510735,0.0,13647755.752350234,0.0,1281.6450741376962,1261.580681411418,1263.2063568862796,1520.6229570642173,91137085.41442077,0.0,14093307.03785499,0.0 + 04/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47975902.21104605,0.0,57562680.999804567,0.0,25587774.312840746,0.0,42909316.57144503,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,193209602.09475056,0.0,14093307.03785499,0.0 + 04/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49311147.270740788,0.0,58586337.68130662,0.0,27285557.969397606,0.0,44455622.07268623,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,198819500.54698093,0.0,14093307.03785499,0.0 + 04/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52761847.45453378,0.0,62154183.87523543,0.0,30442755.696795957,0.0,48209447.40517825,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,212686178.31263537,0.0,14093307.03785499,0.0 + 04/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55769527.26422369,0.0,65258854.833649437,0.0,32953420.553104424,0.0,51431319.330875139,0.0,1273.4434303364224,1253.5074358738687,1255.1227081478363,1510.8920197699975,224467798.12071396,0.0,14093307.03785499,0.0 + 04/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46946813.51678075,0.0,56570631.49123143,0.0,26697955.714300764,0.0,43455172.232096318,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,192688574.63350804,0.0,14093307.03785499,15502637.741640486 + 04/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44593134.50242018,0.0,57797987.22109354,0.0,31615888.40797607,0.0,45729221.69467936,0.0,1271.6178446421598,1251.7104300642123,1253.3233867127777,1508.7260320306448,198763591.5225884,0.0,56373228.15141996,38756594.35410121 + 04/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,53200886.705137539,0.0,69741268.00885117,0.0,38362988.3170824,0.0,57940930.82410138,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,295355512.64084956,0.0,56373228.15141996,38756594.35410121 + 04/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50355681.60715959,0.0,72738113.59863486,0.0,44139290.17993501,0.0,64870511.67231083,0.0,7635.2409182466449,7515.709797318706,7525.394556505104,9058.921894435922,346350558.85746327,0.0,28186614.07570998,0.0 + 04/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33212966.00452651,0.0,62702938.004056628,0.0,39804173.550451669,0.0,58399975.56316927,0.0,7651.155487514214,7531.3752210355319,7541.0801667193259,9077.803923375437,308605146.3973243,0.0,28186614.07570998,0.0 + 04/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29220085.29451381,0.0,59227086.67290968,0.0,38763420.343367788,0.0,56053750.64712255,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,259671460.16014735,0.0,28186614.07570998,0.0 + 04/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16788619.864353867,0.0,62792332.714646209,0.0,39766952.451064418,0.0,55423101.22666837,0.0,5112.795412495462,5032.753646521804,5039.238863277833,6066.136589526604,251274334.49929098,0.0,28186614.07570998,0.0 + 04/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36742.039590058266,0.0,46311612.11194421,0.0,29810203.496001103,0.0,42394789.085991207,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,233617736.2347182,0.0,28186614.07570998,0.0 + 04/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,355066.0769138572,0.0,42636444.61490042,0.0,23543132.508302247,0.0,36861501.99661897,0.0,10258.620918643544,10098.020294418338,10111.0326242512,12171.462124335854,256897034.65867169,0.0,28186614.07570998,0.0 + 04/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11101930.497142975,0.0,38546272.50295233,0.0,18502009.8444262,0.0,32450426.74307476,0.0,12827.716031319813,12626.89574384144,12643.166787807837,15219.595407136816,292543185.87997749,0.0,28186614.07570998,0.0 + 04/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,24704967.222234414,0.0,43226881.261359769,0.0,17803995.028356956,0.0,33967818.457128588,0.0,15371.312592911409,15130.671826753845,15150.16924175819,18237.47563241535,349706327.4268994,0.0,35233267.594637479,0.0 + 04/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47651829.7558732,0.0,63411059.35343863,0.0,31218732.714019769,0.0,50559616.07880741,0.0,17916.195447042668,17635.714065056254,17658.439482668997,21256.881994691383,460923269.4641926,0.0,14093307.03785499,0.0 + 04/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49157953.35555304,0.0,65285119.9222569,0.0,29225542.89140817,0.0,48673286.63778044,0.0,10229.73882184678,10069.590352234878,10082.566047185453,12137.194618983907,345410626.23190227,0.0,63419881.67034747,0.0 + 04/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,39816744.44538112,0.0,55391157.69438773,0.0,18451387.381480695,0.0,35697341.18495223,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,263991843.96753554,0.0,63419881.67034747,69761869.8373822 + 04/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46555511.329544369,0.0,61569750.08784938,0.0,23480593.379467638,0.0,42031541.594072747,0.0,5099.625560157335,5019.789970678864,5026.258482415394,6050.511062451586,249943662.66346554,0.0,49326574.63249246,69761869.8373822 + 04/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52494083.49259571,0.0,67109175.27101849,0.0,28036267.701766574,0.0,47793537.619477357,0.0,5097.3103940984469,5017.511048976521,5023.976624089833,6047.764206298037,271704688.26932439,0.0,35233267.594637479,69761869.8373822 + 04/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,56554921.70130636,0.0,70892933.09315706,0.0,31071385.38254113,0.0,51667590.87748965,0.0,5093.773721345689,5014.029743495475,5020.490832591345,6043.56807907999,286405535.6099392,0.0,35233267.594637479,62010550.96656194 + 04/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62670690.07582205,0.0,76794386.9554541,0.0,36102761.74533635,0.0,57962196.367489058,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,309620820.8222197,0.0,35233267.594637479,46507913.22492146 + 04/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,73141097.04395554,0.0,87005646.68958801,0.0,45563187.29330835,0.0,69553695.36837235,0.0,2539.432909515442,2499.677613586237,2502.8987033281325,3012.9402110265448,313261444.37006726,0.0,21139960.556782485,23253956.61246073 + 04/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33668236.31339079,0.0,46407422.7106342,0.0,11324140.421202394,0.0,26304560.359521018,0.0,1268.4070713236397,1248.5499220009629,1250.1588060123023,1504.9165720509732,136683676.34174479,0.0,14093307.03785499,0.0 + 04/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62298440.47056572,0.0,74730331.99491248,0.0,36621114.42146266,0.0,57795892.06382316,0.0,1267.0644895209508,1247.2283585668534,1248.8355396088187,1503.3236499915807,250405006.28644154,0.0,14093307.03785499,0.0 + 04/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65864257.9227155,0.0,78066845.01586449,0.0,39681912.36896761,0.0,61821168.14895161,0.0,1265.3398915471713,1245.5307594960769,1247.1357530083693,1501.2774803276432,264367605.44026456,0.0,14093307.03785499,0.0 + 04/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68512092.40082714,0.0,80628012.97680423,0.0,42147847.2281585,0.0,64623613.56220799,0.0,1263.9233747347699,1244.1364185186247,1245.73961528025,1499.5968372015,274823792.65264436,0.0,14093307.03785499,0.0 + 04/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65228861.450838718,0.0,76177946.23785697,0.0,38799638.93523622,0.0,60260414.939667928,0.0,1262.47434789568,1242.7100764650166,1244.311435239322,1497.8776221696747,259357406.09797073,0.0,14093307.03785499,0.0 + 04/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40194732.47619804,0.0,49846090.171546179,0.0,17319651.304997948,0.0,33104489.906119639,0.0,5062.755661857021,4983.497277514514,4989.919022411584,6006.766335528805,216219541.72918476,0.0,14093307.03785499,15502637.741640486 + 04/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,36379924.872212078,0.0,55721353.24035859,0.0,24824951.51657563,0.0,41549017.21700721,0.0,20278.451778137507,19960.98883260932,19986.710604095908,24059.608958667653,461903983.4707909,0.0,56373228.15141996,38756594.35410121 + 04/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,27202953.90340185,0.0,61172666.56317302,0.0,31863804.774788739,0.0,48502993.935357067,0.0,17811.28758606068,17532.44855620849,17555.040905672984,21132.412822215498,435254702.7092881,0.0,56373228.15141996,38756594.35410121 + 04/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11527031.127776448,0.0,59642197.14277419,0.0,32047812.97642199,0.0,49678231.02687918,0.0,12734.434303364225,12535.074358738684,12551.227081478362,15108.920197699974,343442033.6624643,0.0,28186614.07570998,0.0 + 04/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3280382.08537678,0.0,60264631.81747204,0.0,34569347.0601304,0.0,52185397.97606998,0.0,10225.590824990924,10065.507293043607,10078.477726555666,12132.273179053209,303306415.4241655,0.0,28186614.07570998,0.0 + 04/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,61007263.78563343,0.0,36876920.17648953,0.0,52917352.9370803,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,227440409.6537298,0.0,28186614.07570998,0.0 + 04/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,53614150.68753103,0.0,33457547.310981536,0.0,45350221.463817868,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,209299925.69420875,0.0,28186614.07570998,0.0 + 04/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,416287.3836611137,41204655.567650418,0.0,24932332.194320356,0.0,35521377.440793197,0.0,5144.014055739574,5063.4835560820979,5070.008371463131,6103.176318046869,178628821.48755796,416287.3836611137,28186614.07570998,0.0 + 04/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4665554.014576955,31346349.508470954,0.0,16089097.109074032,0.0,26271009.04379658,0.0,7722.406822618397,7601.511103196734,7611.306426123314,9162.340912645881,189257690.61384515,4665554.014576955,28186614.07570998,0.0 + 04/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,29336828.664474776,0.0,10483494.608411346,0.0,21909869.34073756,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,254415009.5643797,0.0,28186614.07570998,0.0 + 04/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10613123.497413215,0.0,31933679.970294425,0.0,9614764.345189423,0.0,22917786.259712526,0.0,12867.220385646113,12665.781650131234,12682.102802556885,15266.46581557106,267613008.42666865,0.0,35233267.594637479,0.0 + 04/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32846273.51536578,0.0,48203087.85102162,0.0,20940536.902538506,0.0,36132585.749321859,0.0,17996.174769766345,17714.441296562563,17737.268162248623,21351.774408104586,407401255.1103034,0.0,14093307.03785499,0.0 + 04/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37333596.57961401,0.0,53126953.49244703,0.0,20600017.717461114,0.0,36871929.1737497,0.0,17952.5866076262,17671.535515232084,17694.307092439598,21300.05871758774,416559053.5216601,0.0,63419881.67034747,0.0 + 04/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,30147557.569952854,0.0,45186547.88232319,0.0,11472521.73840657,0.0,25938604.552407456,0.0,10243.70798080364,10083.340821402322,10096.334235235901,12153.76849285064,266022977.25214309,0.0,63419881.67034747,69761869.8373822 + 04/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,37427050.335227709,0.0,51891351.98369594,0.0,17017239.614725587,0.0,32943869.26915747,0.0,10221.373424242181,10061.355916490344,10074.32100052999,12127.26939405291,292223062.2499422,0.0,49326574.63249246,69761869.8373822 + 04/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43501273.51761233,0.0,57381376.90834379,0.0,21743339.872665846,0.0,38967243.54859182,0.0,5109.619373943692,5029.627329446052,5036.108517623432,6062.3683410217749,238049038.67053963,0.0,35233267.594637479,69761869.8373822 + 04/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47110271.87398579,0.0,60502241.64037567,0.0,24498581.139774607,0.0,42323101.592503,0.0,5108.543390733541,5028.56819095378,5035.048014323108,6061.091728015734,250873901.01313324,0.0,35233267.594637479,62010550.96656194 + 04/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51912795.764667879,0.0,64782694.16109213,0.0,28477425.074564924,0.0,47158473.1616876,0.0,2555.3433560605456,2515.338979122586,2518.5802501324976,3031.8173485132276,230567275.92379643,0.0,35233267.594637479,46507913.22492146 + 04/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,60680462.292621459,0.0,73115548.24751032,0.0,36778184.2968342,0.0,57112665.3809966,0.0,2554.809686971846,2514.813664723026,2518.054258811716,3031.1841705108874,265914762.62962545,0.0,21139960.556782485,23253956.61246073 + 04/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22265640.11578781,0.0,32341239.998652519,0.0,3662874.8239035776,0.0,13925299.088724744,0.0,1276.8646932037228,1256.8751382327455,1258.494750134937,1514.9512175644168,91300922.90395762,0.0,14093307.03785499,0.0 + 04/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48803502.49003582,0.0,59564669.24678298,0.0,27179495.871454717,0.0,44791998.84033091,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,199424765.6173204,0.0,14093307.03785499,0.0 + 04/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50150895.5795684,0.0,60367761.98716741,0.0,28631130.141313048,0.0,46098630.22327718,0.0,1277.9363487561082,1257.9300168175412,1259.550988038458,1516.2226959697148,204370322.10982055,0.0,14093307.03785499,0.0 + 04/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50600465.286187198,0.0,60384978.98504088,0.0,29453630.443442249,0.0,46581444.77031683,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,206146351.54562668,0.0,14093307.03785499,0.0 + 04/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48395955.08678758,0.0,57483609.91047698,0.0,28357619.34276293,0.0,44678618.53140661,0.0,1279.975516719851,1259.9372612264049,1261.5608189866178,1518.6420909188688,198068219.3477004,0.0,14093307.03785499,0.0 + 04/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38408537.4255405,0.0,47058891.190937358,0.0,21592543.768152667,0.0,35489543.485249858,0.0,5126.580296550785,5046.322725645672,5052.825427545119,6082.49182825687,219259108.87067474,0.0,14093307.03785499,15502637.741640486 + 04/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,33335464.42476362,0.0,45695928.763247158,0.0,23429906.374157877,0.0,37098057.563121769,0.0,20567.05687973297,20245.07576750008,20271.163613998426,24402.027894976673,447306524.0876398,0.0,56373228.15141996,38756594.35410121 + 04/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,19563540.31751865,0.0,41423919.98933918,0.0,24117194.49418588,0.0,35455803.554196689,0.0,18021.322287251227,17739.195124969963,17762.053888490493,21381.610977660646,390215514.5573808,0.0,56373228.15141996,38756594.35410121 + 04/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3372519.0672748957,0.0,34718270.31381585,0.0,20769924.6240511,0.0,31788655.22140422,0.0,12888.080150899912,12686.314851868598,12702.662463420469,15291.2151307785,283495150.575629,0.0,28186614.07570998,0.0 + 04/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,30948099.650757739,0.0,19902082.59495472,0.0,30254566.12705966,0.0,10319.209373109612,10157.660225326976,10170.749407298134,12243.34801275635,235512229.63933999,0.0,28186614.07570998,0.0 + 04/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,26325478.929810488,0.0,18972021.037924064,0.0,27794116.532542178,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,150317641.97191683,0.0,28186614.07570998,0.0 + 04/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4309712.40006471,0.0,25698561.591419113,0.0,18217045.62619001,0.0,26976161.51391183,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,152434661.48240657,0.0,28186614.07570998,0.0 + 04/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20349080.478058675,0.0,34548121.558330979,0.0,20682372.584137106,0.0,32118950.80239299,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,184931705.77374066,0.0,28186614.07570998,0.0 + 04/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27945202.18328809,0.0,41105353.08722709,0.0,23506351.617967305,0.0,36395340.12928282,0.0,7737.049870136405,7615.924911074191,7625.738807663407,9179.714329566512,244722587.52415113,0.0,28186614.07570998,0.0 + 04/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35811609.76946219,0.0,48333383.07227999,0.0,27387772.2146368,0.0,41844949.312301028,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,346062531.319436,0.0,28186614.07570998,0.0 + 04/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43468843.39000887,0.0,55891043.842988248,0.0,30856983.79822115,0.0,47006041.21396588,0.0,12854.410549833105,12653.172354687547,12669.477258749017,15251.26743436042,369564891.5966525,0.0,35233267.594637479,0.0 + 04/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54084835.89729982,0.0,66582204.50120327,0.0,37693470.26321729,0.0,56208709.32501193,0.0,17961.863908977062,17680.66757869962,17703.450923503002,21311.065881504175,483334593.84039428,0.0,14093307.03785499,0.0 + 04/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,46293618.6440849,0.0,59082849.513116,0.0,27344801.32773234,0.0,44457208.26730442,0.0,17943.031037927743,17662.129539759848,17684.888996407917,21288.72139889904,445662053.255018,0.0,63419881.67034747,0.0 + 04/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,35484465.213118318,0.0,48396284.036384899,0.0,15287070.920622744,0.0,30240677.227789798,0.0,10253.16059310157,10092.645451291344,10105.650855090238,12164.98365651374,282827683.39950457,0.0,63419881.67034747,69761869.8373822 + 04/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,40110908.28076202,0.0,52792982.33577513,0.0,18755241.142553636,0.0,34741455.42132069,0.0,10253.16059310157,10092.645451291344,10105.650855090238,12164.98365651374,299819773.1820003,0.0,49326574.63249246,69761869.8373822 + 04/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,44597054.009578477,0.0,57067745.616808068,0.0,22255789.84848121,0.0,39231755.325305279,0.0,5126.580296550785,5046.322725645672,5052.825427545119,6082.49182825687,239861937.80096743,0.0,35233267.594637479,69761869.8373822 + 04/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47452628.001054588,0.0,59719377.4435638,0.0,24423605.82466268,0.0,41989093.36711517,0.0,5126.580296550785,5046.322725645672,5052.825427545119,6082.49182825687,250294297.63719065,0.0,35233267.594637479,62010550.96656194 + 04/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51706981.11671325,0.0,63773954.15661739,0.0,28103367.81128615,0.0,46533934.481159139,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,228473034.0661731,0.0,35233267.594637479,46507913.22492146 + 04/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,60253752.08023305,0.0,72050862.62636453,0.0,36154898.73664871,0.0,56297734.26527499,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,263112044.20891846,0.0,21139960.556782485,23253956.61246073 + 04/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21206404.24652221,0.0,30710846.792049275,0.0,2723686.464272021,0.0,12857843.365012436,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,86679616.42070562,0.0,14093307.03785499,0.0 + 04/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46197916.818137127,0.0,56292949.12865037,0.0,24761408.667696306,0.0,41853738.44689601,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,188279941.06099395,0.0,14093307.03785499,0.0 + 04/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48005901.588903468,0.0,57705391.07591074,0.0,26867489.434455545,0.0,43786811.48575356,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,195539521.58463747,0.0,14093307.03785499,0.0 + 04/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49111597.30155264,0.0,58515801.746851619,0.0,28304480.63808305,0.0,45089128.63423247,0.0,1280.9427160759508,1260.8893188961543,1262.5141034798492,1519.7896360346122,200187897.1088714,0.0,14093307.03785499,0.0 + 04/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48872285.795999597,0.0,57974022.66083646,0.0,28805256.052378168,0.0,45274448.00478415,0.0,1280.9427160759508,1260.8893188961543,1262.5141034798492,1519.7896360346122,200092901.30215,0.0,14093307.03785499,0.0 + 04/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41960560.56677519,0.0,50687671.116402078,0.0,24435359.655374536,0.0,39256357.82422146,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,232993228.74203778,0.0,14093307.03785499,15502637.741640486 + 04/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,51143474.72394574,0.0,60531260.55969697,0.0,34883288.714040789,0.0,51155958.5184883,0.0,20513.636909915505,20192.492097275594,20218.512184347754,24338.64713995386,504661820.5095455,0.0,56373228.15141996,38756594.35410121 + 04/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,42234018.84621902,0.0,53318322.42657476,0.0,33256440.34189209,0.0,46296077.58687216,0.0,17973.799401001095,17692.416218369457,17715.21470249421,21325.226887184952,444048825.154137,0.0,56373228.15141996,38756594.35410121 + 04/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50538625.05744121,0.0,60575356.8151588,0.0,38680204.53808656,0.0,55673894.873962,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,397866503.5910148,0.0,28186614.07570998,0.0 + 04/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36600015.99562261,0.0,49046362.82497871,0.0,32931697.2574412,0.0,47448493.32410133,0.0,10296.542430157862,10135.348137595649,10148.40856816442,12216.454550194507,320094882.67214867,0.0,28186614.07570998,0.0 + 04/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28654134.421192945,0.0,46047396.24055889,0.0,30248054.169408595,0.0,43664059.19725392,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,225793871.03267158,0.0,28186614.07570998,0.0 + 04/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21141808.377429159,0.0,37678106.080199699,0.0,25412204.39633868,0.0,36450581.48673075,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,197955934.52706034,0.0,28186614.07570998,0.0 + 04/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13318521.29064995,0.0,30263156.594003306,0.0,20223570.651426455,0.0,29804035.4570527,0.0,5167.976487713387,5087.0708517131729,5093.626061732132,6131.606828881535,170938292.82127724,0.0,28186614.07570998,0.0 + 04/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2356170.930301468,0.0,21519079.84940237,0.0,13136576.010220465,0.0,20963897.870536165,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,174032241.22958539,0.0,28186614.07570998,0.0 + 04/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,12462466.939004114,0.0,2840091.37585471,0.0,10066321.186757094,0.0,12930.911584806106,12728.475751686792,12744.877691861353,15342.032992131853,218855552.3753659,0.0,28186614.07570998,0.0 + 04/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,10105512.870422729,0.0,0.0,0.0,5660228.5425157579,0.0,12929.120017805477,12726.712232001773,12743.111899701222,15339.907366273923,209225606.86975513,0.0,35233267.594637479,0.0 + 04/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11217571.22511676,0.0,21781453.03143578,0.0,3139596.448562553,0.0,12932019.677386573,0.0,18094.19976536697,17810.931692570517,17833.8828959804,21468.07732354061,319816170.42135229,0.0,14093307.03785499,0.0 + 04/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,23210909.859213987,0.0,33656742.038785908,0.0,9158166.039357637,0.0,20353258.18773392,0.0,18063.829017566117,17781.036404492144,17803.94908477199,21432.04359059761,356670165.27583178,0.0,63419881.67034747,0.0 + 04/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,18527707.661172559,0.0,29558042.0100198,0.0,2520727.222650853,0.0,12828969.38506398,0.0,10303.1419529463,10141.844343623696,10154.913145216986,12224.284632063716,217602508.94476969,0.0,63419881.67034747,69761869.8373822 + 04/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,26245747.952391026,0.0,37239422.19450198,0.0,8190245.715034975,0.0,20512190.862641194,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,246235359.90853704,0.0,49326574.63249246,69761869.8373822 + 04/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33260036.338975759,0.0,44195520.756732467,0.0,13683624.499429446,0.0,27597069.99742123,0.0,5141.764219933242,5061.26894187502,5067.790903499606,6100.506973744168,195673043.3331462,0.0,35233267.594637479,69761869.8373822 + 04/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37979343.04197112,0.0,48849887.37206139,0.0,17344593.02313239,0.0,32259944.080754296,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,213347446.19084553,0.0,35233267.594637479,62010550.96656194 + 04/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45145416.16436809,0.0,56117009.090483177,0.0,23278495.834461426,0.0,39808562.5416249,0.0,2564.655229660886,2524.5050736045848,2527.7581560628,3042.8655310839637,202724705.99642165,0.0,35233267.594637479,46507913.22492146 + 04/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,57013371.508760709,0.0,68068517.23635069,0.0,33865786.67473699,0.0,52967342.802175458,0.0,2560.4412025962035,2520.357017919725,2523.6047551848075,3037.8657488310198,250227185.6303382,0.0,21139960.556782485,23253956.61246073 + 04/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20690846.79694423,0.0,29778000.788601065,0.0,2829125.075008155,0.0,12400984.94222019,0.0,1278.9733429949743,1258.9507767181468,1260.5730632923824,1517.4530500496256,84836378.4417721,0.0,14093307.03785499,0.0 + 04/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48438084.36478578,0.0,58450359.4834438,0.0,26639422.51335232,0.0,44024089.24977556,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,196645459.13173677,0.0,14093307.03785499,0.0 + 04/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54156101.86244674,0.0,64193406.774423588,0.0,31556869.534293318,0.0,49913743.598436329,0.0,1271.6178446421598,1251.7104300642123,1253.3233867127777,1508.7260320306448,218847481.46601925,0.0,14093307.03785499,0.0 + 04/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54523938.788872238,0.0,64382997.69317456,0.0,32247851.938604226,0.0,50423799.05563365,0.0,1277.404843485923,1257.406832361513,1259.027129405858,1515.5920852554437,220692538.68211616,0.0,14093307.03785499,0.0 + 04/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46756991.71520123,0.0,54343978.4161714,0.0,25237260.904187666,0.0,41398739.29077435,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,186862802.3869742,0.0,14093307.03785499,0.0 + 04/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24074121.658046627,0.0,29506551.666855344,0.0,4956548.3926380029,0.0,15628868.162591115,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,150819369.45939563,0.0,14093307.03785499,15502637.741640486 + 04/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,20476964.97271739,0.0,32441066.3371697,0.0,13695716.40540417,0.0,20295120.95124167,0.0,20524.345650111703,20203.033190146307,20229.066860492538,24351.352651418907,394016942.73434296,0.0,56373228.15141996,38756594.35410121 + 04/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21781742.05705387,0.0,43097519.44444854,0.0,19102524.274403186,0.0,34191837.29848455,0.0,17988.018311993434,17706.412529657668,17729.229049458096,21342.09708230816,387330348.17869266,0.0,56373228.15141996,38756594.35410121 + 04/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3315633.8881442726,0.0,37176579.463985729,0.0,19376802.04778795,0.0,31376671.35283483,0.0,12875.695427450826,12674.124013575474,12690.455915987912,15276.521129160117,283906154.1029804,0.0,28186614.07570998,0.0 + 04/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,37586063.94552295,0.0,21684926.058114657,0.0,33854969.157893549,0.0,10311.620969935524,10150.190620020192,10163.270176642505,12234.344662057452,247419894.30469156,0.0,28186614.07570998,0.0 + 04/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,37561698.7975707,0.0,23297808.00254596,0.0,33877022.163963828,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,171976727.37843264,0.0,28186614.07570998,0.0 + 04/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4741483.421981692,31242724.073693079,0.0,20160976.979006925,0.0,27869593.299408564,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,156564704.10654969,4741483.421981692,28186614.07570998,0.0 + 04/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11225515.063575086,20560284.70740107,0.0,12576437.078416588,0.0,19082064.15714327,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,129561843.63049942,11225515.063575086,28186614.07570998,0.0 + 04/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10812499.801321432,11720992.954018919,0.0,3074253.8500642289,0.0,9449298.30492227,0.0,7757.472010683286,7636.027339201064,7645.867139820733,9203.944419764355,140320464.38309539,10812499.801321432,28186614.07570998,0.0 + 04/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4768748.457152575,7009378.969939705,0.0,0.0,0.0,3006562.4565841255,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,203489902.17201785,4768748.457152575,28186614.07570998,0.0 + 04/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,124109.65291840254,5079711.032147942,0.0,0.0,0.0,15242.32750841766,0.0,12932.012539894626,12729.559471118018,12745.962807775679,15343.339233318344,198598099.94724039,124109.65291840254,35233267.594637479,0.0 + 04/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2650275.8847754329,0.0,17600115.655485847,0.0,0.0,0.0,7056726.941934196,0.0,18091.20385557733,17807.982684307513,17830.930087619257,21464.5227909361,298007820.3885802,0.0,14093307.03785499,0.0 + 04/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,15824867.429546668,0.0,29709732.80453998,0.0,2526012.328277074,0.0,16395882.324160073,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,334772626.1143969,0.0,63419881.67034747,0.0 + 04/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,11592181.737379685,0.0,24317909.74000546,0.0,0.0,0.0,7920279.508529015,0.0,10312.759642661353,10151.31146661208,10164.39246755963,12235.69565378084,198141344.2161242,0.0,63419881.67034747,69761869.8373822 + 04/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,20314182.460472414,0.0,32694143.962370725,0.0,4356878.650151374,0.0,16302930.575856865,0.0,10293.776308516892,10132.625320104988,10145.682242045506,12213.172652456848,227695059.1320986,0.0,49326574.63249246,69761869.8373822 + 04/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27626162.266267055,0.0,39610299.111366439,0.0,10270996.946392622,0.0,23461424.286442035,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,177961110.6303677,0.0,35233267.594637479,69761869.8373822 + 04/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33711374.442920338,0.0,45550327.72689164,0.0,14826320.581027586,0.0,29348586.674593077,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,200302457.87484224,0.0,35233267.594637479,62010550.96656194 + 04/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43337254.163006898,0.0,55308755.45817364,0.0,22514055.288374906,0.0,39199458.968630287,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,198656956.95847909,0.0,35233267.594637479,46507913.22492146 + 04/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,55674006.36603748,0.0,67558245.85637705,0.0,33383381.400378609,0.0,52632981.922864537,0.0,2557.434705461695,2517.3975880587197,2520.6415117963636,3034.298654745977,247515796.4018836,0.0,21139960.556782485,23253956.61246073 + 04/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18138423.58343804,0.0,28009615.644434565,0.0,2009868.4734059964,0.0,11140067.432541158,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,78439193.81936088,0.0,14093307.03785499,0.0 + 04/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44657073.91262143,0.0,55185103.050622347,0.0,22839182.509574526,0.0,40283184.550945747,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,182090376.08440358,0.0,14093307.03785499,0.0 + 04/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47003816.41463272,0.0,56784914.27070763,0.0,26456297.119209518,0.0,43116102.37752594,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,192509846.7222225,0.0,14093307.03785499,0.0 + 04/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49420504.380636069,0.0,58877386.608001369,0.0,28741950.03127437,0.0,45520357.29617479,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,201678142.1969785,0.0,14093307.03785499,0.0 + 04/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43920566.10112509,0.0,51141278.55269532,0.0,23400082.748130956,0.0,38717585.66666516,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,176297456.94950847,0.0,14093307.03785499,0.0 + 04/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17855972.138223925,0.0,22542464.583254197,0.0,2430365.1170319158,0.0,9612606.730677642,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,129343330.02755985,0.0,14093307.03785499,15502637.741640486 + 04/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14080305.754797243,0.0,18768155.744999336,0.0,12026325.110743477,0.0,16437829.411331635,0.0,20601.112683921325,20278.598421720762,20304.72946558066,24442.43380665619,369569363.78223589,0.0,56373228.15141996,38756594.35410121 + 04/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9993401.549109765,0.0,26902484.972769735,0.0,4972936.750422351,0.0,15126407.321606709,0.0,18053.11636365161,17770.491459173114,17793.390551214616,21419.333435655186,327126025.1088088,0.0,56373228.15141996,38756594.35410121 + 04/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,25701686.558582069,0.0,10166635.986893563,0.0,20964509.281551724,0.0,12916.489419344149,12714.279367915595,12730.663014600672,15324.921643339141,250103704.22974579,0.0,28186614.07570998,0.0 + 04/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,627570.6725925296,25422471.314923847,0.0,13497916.066843253,0.0,22368425.725463496,0.0,10338.990510863428,10177.131685679089,10190.245958614321,12266.817577608806,215992281.74518693,627570.6725925296,28186614.07570998,0.0 + 04/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9257143.04437574,23276521.499419579,0.0,13939040.55657037,0.0,20958301.893689123,0.0,5172.024808126503,5091.055794915008,5097.616139940017,6136.410006517806,135563448.24787665,9257143.04437574,28186614.07570998,0.0 + 04/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28395349.79882784,8573618.194324878,0.0,7186173.439487849,0.0,9764886.56711398,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,102938901.60925935,28395349.79882784,28186614.07570998,0.0 + 04/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26841667.566605204,1801743.5187870605,0.0,1039562.8755580809,0.0,2775540.294695104,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,83032377.08565544,26841667.566605204,28186614.07570998,0.0 + 04/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24150806.8059552,0.0,0.0,0.0,0.0,0.0,0.0,7760.332727172708,7638.843270640177,7648.686699874923,9207.338550678793,116118724.49411977,24150806.8059552,28186614.07570998,0.0 + 04/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17600779.244756324,0.0,0.0,0.0,200838.90284584487,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193528733.64187894,17801618.147602168,28186614.07570998,0.0 + 04/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13066758.995258505,0.0,0.0,0.0,13142732.865565863,0.0,1510665.0642023367,12933.534074326944,12731.057185644957,12747.462452260655,15345.14447584175,193525913.47706748,27720156.925026709,35233267.594637479,0.0 + 04/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1910040.7940815436,0.0,0.0,0.0,4752548.090463435,0.0,1623049.021739688,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,270953940.2255965,8285637.906284668,14093307.03785499,0.0 + 04/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,11163562.73836654,0.0,0.0,0.0,0.0,0.0,18105.683224217697,17822.2353757307,17845.20114509008,21481.70200911642,282080921.05332419,0.0,63419881.67034747,0.0 + 04/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,5395608.790601926,0.0,0.0,2586374.047491734,0.0,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,160180000.5797322,2586374.047491734,63419881.67034747,69761869.8373822 + 04/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,104154.75454729458,0.0,11998054.839612056,0.0,0.0,330052.9202436154,0.0,0.0,10340.076490866182,10178.20066446231,10191.316314885813,12268.106051427669,166821927.87207047,330052.9202436154,49326574.63249246,69761869.8373822 + 04/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,8242413.342291696,0.0,17884276.63804955,0.0,0.0,0.0,1154247.4287800608,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,104640796.54807687,0.0,35233267.594637479,69761869.8373822 + 04/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13365187.2012129,0.0,22867520.883935285,0.0,0.0,0.0,8326943.6343886409,0.0,5167.304524745968,5086.409408451364,5092.963766133168,6130.809570471096,121878605.89082258,0.0,35233267.594637479,62010550.96656194 + 04/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,20158546.738634599,0.0,29514709.48198756,0.0,3077349.7011613456,0.0,15505522.782352165,0.0,2582.9251219455038,2542.4889473172418,2545.7652038323119,3064.542060874999,106904725.50642787,0.0,35233267.594637479,46507913.22492146 + 04/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,30768361.03723808,0.0,39851212.59333027,0.0,14058609.703796348,0.0,27352415.562591305,0.0,2582.1245057737148,2541.7008649409769,2544.976105931467,3063.5921603485696,150667215.99013705,0.0,21139960.556782485,23253956.61246073 + 04/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1313167.745760921,0.0,6745826.469963592,0.0,0.0,0.0,0.0,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,27347865.86950077,0.0,14093307.03785499,0.0 + 04/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24444018.8828948,0.0,34165141.920864079,0.0,1918133.2063711629,0.0,17182531.475362019,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163182,96965794.63348803,0.0,14093307.03785499,0.0 + 04/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30796212.91067686,0.0,38853334.740638319,0.0,14698799.003156392,0.0,27064331.387285875,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,130668647.18975342,0.0,14093307.03785499,0.0 + 04/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32972435.244333693,0.0,40815015.503671,0.0,16613665.869869546,0.0,29379139.494454259,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,139038795.27107907,0.0,14093307.03785499,0.0 + 04/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26973676.914470164,0.0,32325021.12223487,0.0,11183405.667161372,0.0,21988416.67475659,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,111734098.35506118,0.0,14093307.03785499,0.0 + 04/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7132413.258487247,0.0,10678561.538155362,0.0,0.0,0.0,1459636.2828980955,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,38555189.214448999,0.0,14093307.03785499,15502637.741640486 + 04/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13906804.64027567,0.0,16700039.173335558,0.0,8065157.929825304,0.0,15329791.574388817,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,131234973.66864626,0.0,56373228.15141996,38756594.35410121 + 04/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,10015995.32590926,0.0,25144004.576466636,0.0,6545515.786674849,0.0,16333107.263756209,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.023926177739,251336008.38102133,0.0,56373228.15141996,38756594.35410121 + 04/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6310644.874718908,9337767.10981119,0.0,1759381.4969298216,0.0,8385786.800482999,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,212963425.14363686,6310644.874718908,28186614.07570998,0.0 + 04/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13559172.216040075,10505876.614574807,0.0,5386912.334983333,0.0,11040945.298799115,0.0,12933.589913508365,12731.112150653576,12747.517488097297,15345.210726898993,220460483.25332693,13559172.216040075,28186614.07570998,0.0 + 04/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19808632.24230913,10901504.501959619,0.0,6779890.002478729,0.0,11044815.819363092,0.0,7760.6262988271159,7639.13224637557,7648.976047985046,9207.68686224043,144849327.5633428,19808632.24230913,28186614.07570998,0.0 + 04/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25458353.994195656,5986621.019132415,0.0,3761967.141897645,0.0,5588799.997391948,0.0,7759.5292614173599,7638.052383291116,7647.894793386788,9206.385269230244,131444090.30479384,25458353.994195656,28186614.07570998,0.0 + 04/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32449906.814725706,0.0,0.0,0.0,0.0,0.0,0.0,7757.96038905313,7636.508071916422,7646.348492009262,9204.523862057627,116083226.93413119,32449906.814725706,28186614.07570998,0.0 + 04/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30464885.327784309,0.0,0.0,0.0,0.0,0.0,0.0,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,116025805.1033544,30464885.327784309,28186614.07570998,0.0 + 04/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20172817.73964905,0.0,1500591.0201173274,0.0,7807901.786222791,0.0,1998619.655858365,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,270755589.560041,31479930.20184753,28186614.07570998,0.0 + 04/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4520057.640882031,0.0,0.0,0.0,2842306.707915895,0.0,137932.0744803467,23273.88116715939,22909.52421574927,22939.045476027786,27613.571586172875,348249680.80239358,7500296.423278274,35233267.594637479,0.0 + 04/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3886570.768928632,0.0,0.0,0.0,0.0,0.0,18106.94770405772,17823.480059902937,17846.447433164914,21483.202266178447,274822849.63682308,0.0,14093307.03785499,0.0 + 04/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,1777635.6356432457,0.0,10766401.037110938,0.0,0.0,0.0,473447.0707698347,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,283969136.72865286,0.0,63419881.67034747,0.0 + 04/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,4287464.16727262,0.0,0.0,38557.77780663628,0.0,0.0,15517.093901767326,15274.170902024149,15293.853230233624,18410.439590558224,236471471.61577259,38557.77780663628,63419881.67034747,69761869.8373822 + 04/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,635327.5268464232,0.0,10137341.284601644,0.0,0.0,788983.2125549265,0.0,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,204265178.90962518,788983.2125549265,49326574.63249246,69761869.8373822 + 04/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7638047.445656495,0.0,15745040.778810524,0.0,0.0,0.0,48649.13143110461,0.0,10342.891490761616,10180.971595009243,10194.090816059579,12271.445941348447,178193576.7913421,0.0,35233267.594637479,69761869.8373822 + 04/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12424785.543455188,0.0,20264375.359126256,0.0,0.0,0.0,7164660.575040234,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,155910338.04674659,0.0,35233267.594637479,62010550.96656194 + 04/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18229805.161005357,0.0,25811662.99095552,0.0,1666558.9832366449,0.0,12914724.581905423,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,135982610.8560585,0.0,35233267.594637479,46507913.22492146 + 04/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,29544732.613507235,0.0,36963036.69741891,0.0,12776928.792547714,0.0,25390732.683502135,0.0,2583.2978838688297,2542.8558735831195,2546.132602920134,3064.9843286678285,143329605.26751969,0.0,21139960.556782485,23253956.61246073 + 04/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3191171.619498246,0.0,0.0,0.0,0.0,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,22515470.020644346,0.0,14093307.03785499,0.0 + 04/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17568639.299172447,0.0,25245695.184878939,0.0,0.0,0.0,9399677.474517718,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,71536864.3971794,0.0,14093307.03785499,0.0 + 04/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22722758.641551585,0.0,28510047.756059208,0.0,6989741.3653367799,0.0,18004526.507924368,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,95543799.56709562,0.0,14093307.03785499,0.0 + 04/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25078960.40296608,0.0,30716709.009738365,0.0,10673474.344315662,0.0,20684198.51751748,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,106465112.17326118,0.0,14093307.03785499,0.0 + 04/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24161157.979613834,0.0,28972917.036844315,0.0,10454714.379997805,0.0,19919214.857680959,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,102816299.34184213,0.0,14093307.03785499,0.0 + 04/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15988301.563932822,0.0,20549629.30620707,0.0,5410285.05594467,0.0,12759684.882671714,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,74019670.70747985,0.0,14093307.03785499,15502637.741640486 + 04/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,23825454.861284596,0.0,30469035.685990856,0.0,15861906.024558137,0.0,24467408.177319409,0.0,1291.266995454923,1271.0519697554565,1272.6898499520635,1532.0389994157907,113945176.88163463,0.0,56373228.15141996,38756594.35410121 + 04/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,41165779.003825377,0.0,48238577.0660546,0.0,28717113.11295622,0.0,42331286.77380156,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,237713187.0008581,0.0,56373228.15141996,38756594.35410121 + 04/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44384700.574754867,0.0,52419711.28321847,0.0,30827546.025935674,0.0,45736729.93247995,0.0,7737.049870136405,7615.924911074191,7625.738807663407,9179.714329566512,289139028.32277479,0.0,28186614.07570998,0.0 + 04/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47667964.86141582,0.0,56171967.91647644,0.0,32569207.746507843,0.0,48519004.316359329,0.0,7734.5697319960149,7613.483599959058,7623.294350669723,9176.771740335631,300661374.76341697,0.0,28186614.07570998,0.0 + 04/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49313756.096318859,0.0,58081471.14952658,0.0,33168601.337863726,0.0,49641686.49656351,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,267377631.4914992,0.0,28186614.07570998,0.0 + 04/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50055694.67342931,0.0,58847943.23033784,0.0,33125190.144586415,0.0,49771183.57213723,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,269003752.25377479,0.0,28186614.07570998,0.0 + 04/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50321517.08515513,0.0,59108220.91167356,0.0,33129312.677639955,0.0,49854578.97494863,0.0,7737.84926457742,7616.711790846105,7626.526701410223,9180.662780556013,308195931.5840204,0.0,28186614.07570998,0.0 + 04/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49097643.52904838,0.0,57995326.73512006,0.0,32695668.536743568,0.0,49278631.79482357,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,343427724.6042501,0.0,28186614.07570998,0.0 + 04/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46346416.64882119,0.0,54650539.14124375,0.0,31205088.22659169,0.0,46882401.921372327,0.0,12899.011716387015,12697.075281658717,12713.436759122667,15304.185015945439,372093797.5212388,0.0,28186614.07570998,0.0 + 04/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50195297.85167567,0.0,58738890.43584093,0.0,31638049.67667931,0.0,48139781.400727707,0.0,15484.716518664281,15242.300392893574,15261.941652699079,18372.025061427154,420411560.4173863,0.0,35233267.594637479,0.0 + 04/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53139778.451390389,0.0,61505990.199615199,0.0,33851424.50418019,0.0,50729195.54399974,0.0,18062.123443729644,17779.357531732254,17802.26804861319,21430.019992346388,469491957.1583028,0.0,14093307.03785499,0.0 + 04/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,42079846.40798086,0.0,50233988.48358988,0.0,22452845.802351707,0.0,36675809.06618984,0.0,10319.209373109612,10157.660225326976,10170.749407298134,12243.34801275635,305849971.0266802,0.0,63419881.67034747,0.0 + 04/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,28085184.13478858,0.0,36489366.32250278,0.0,8499772.187940132,0.0,19818611.936278229,0.0,7739.4070298322089,7618.245168995229,7628.062055473601,9182.511009567264,208698545.53143559,0.0,63419881.67034747,69761869.8373822 + 04/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,30443876.433935688,0.0,38765695.4397258,0.0,10714134.195028203,0.0,22551968.95216826,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,179679415.65414188,0.0,49326574.63249246,69761869.8373822 + 04/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33299121.610651576,0.0,41589930.20713921,0.0,13374381.97687132,0.0,25863487.82618352,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,191315122.91058106,0.0,35233267.594637479,69761869.8373822 + 04/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,35058622.14385161,0.0,43332774.82417158,0.0,14992734.450137057,0.0,27881491.99295347,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,198445850.41537095,0.0,35233267.594637479,62010550.96656194 + 04/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38100582.38846736,0.0,46292760.128331657,0.0,17967698.01920856,0.0,31479987.510942617,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,211029229.3366856,0.0,35233267.594637479,46507913.22492146 + 04/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,46017825.52280279,0.0,54067177.537393707,0.0,25774496.252306776,0.0,40891074.88426243,0.0,2578.189910665338,2537.82786665302,2541.0981168899077,3058.92391344521,205328317.5043182,0.0,21139960.556782485,23253956.61246073 + 04/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8640909.281069031,0.0,14063161.306296245,0.0,0.0,0.0,1848231.8600450266,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,43845331.55021693,0.0,14093307.03785499,0.0 + 04/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31234185.669149415,0.0,38546563.627839948,0.0,7970394.835922711,0.0,24097665.02726258,0.0,1289.094955332669,1268.91393332651,1270.5490584449536,1529.461956722605,121137680.8139509,0.0,14093307.03785499,0.0 + 04/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33853788.1258782,0.0,40484354.94786624,0.0,16407524.417421196,0.0,28934035.140444388,0.0,1288.0509527375028,1267.8862747867293,1269.5200756622535,1528.2232874954689,138952952.75806505,0.0,14093307.03785499,0.0 + 04/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35520187.49000581,0.0,42061911.73345461,0.0,18567627.768144024,0.0,30941082.36739879,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,146356856.094026,0.0,14093307.03785499,0.0 + 04/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36014620.22917906,0.0,42455674.50358136,0.0,19660348.471968067,0.0,31935020.941386627,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,149324203.3048657,0.0,14093307.03785499,0.0 + 04/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29759241.03077675,0.0,35890880.02955423,0.0,15323876.462160329,0.0,26034705.137517789,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,184147015.19964228,0.0,14093307.03785499,15502637.741640486 + 04/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38361044.1584248,0.0,44488082.263953048,0.0,25349927.776513038,0.0,37887100.4823712,0.0,20651.807189624073,20328.499295479687,20354.6946417087,24502.580902544258,455101449.9869463,0.0,56373228.15141996,38756594.35410121 + 04/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38618887.18560474,0.0,45147886.80190624,0.0,29509327.591534556,0.0,41709898.9981595,0.0,18085.565836610887,17802.43292957977,17825.37318146609,21457.833496648836,425602340.1767052,0.0,56373228.15141996,38756594.35410121 + 04/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23343741.96057403,0.0,30401245.40691772,0.0,22204405.230530204,0.0,31427648.07783654,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,300804568.2910667,0.0,28186614.07570998,0.0 + 04/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7585532.192496325,0.0,17698048.68227008,0.0,15636806.29224528,0.0,22287193.820228265,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,217949603.0794065,0.0,28186614.07570998,0.0 + 04/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,14584716.560817704,0.0,13457775.209322114,0.0,18981366.109100015,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,124420861.91851068,0.0,28186614.07570998,0.0 + 04/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9427846.495613601,0.0,17149067.48049623,0.0,13122948.187891394,0.0,19482223.30817109,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,136576754.62167234,0.0,28186614.07570998,0.0 + 04/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10883724.04562933,0.0,17468879.14800553,0.0,12037543.098101972,0.0,18557499.86054734,0.0,5173.508727977128,5092.516483723547,5099.078710995175,6138.170620775871,136359434.5087824,0.0,28186614.07570998,0.0 + 04/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11552911.58093623,0.0,17802631.102467937,0.0,12101692.906789856,0.0,18767115.962051985,0.0,7757.472010683286,7636.027339201064,7645.867139820733,9203.944419764355,176300270.82633598,0.0,28186614.07570998,0.0 + 04/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24447250.886533347,0.0,32035005.095304327,0.0,17249295.4951894,0.0,27779020.78160521,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,294984533.00412628,0.0,28186614.07570998,0.0 + 04/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34811272.5770735,0.0,43076059.45446678,0.0,21504035.66281486,0.0,34564782.94952679,0.0,12925.739761424817,12723.38489416534,12739.780274250372,15335.896821110588,327365436.9473059,0.0,35233267.594637479,0.0 + 04/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45126926.92888869,0.0,53522234.11260809,0.0,28453570.758977638,0.0,43685895.227082807,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,441367848.391363,0.0,14093307.03785499,0.0 + 04/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37007453.758259687,0.0,45823793.56914603,0.0,18284593.44749345,0.0,31968643.147721076,0.0,18070.33129092107,17787.436883544724,17810.357811495112,21439.758289726222,403472867.31509396,0.0,63419881.67034747,0.0 + 04/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,25268577.086752975,0.0,34402748.03830616,0.0,5799483.42495916,0.0,17113879.10492664,0.0,10329.326166554296,10167.618638482998,10180.72065288594,12255.351201996722,237143547.6306568,0.0,63419881.67034747,69761869.8373822 + 04/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,28428383.458421444,0.0,37463625.40296814,0.0,8452651.549335324,0.0,20462044.76391067,0.0,10330.135963639384,10168.415758043651,10181.518799616508,12256.311995326325,249377682.2344887,0.0,49326574.63249246,69761869.8373822 + 04/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31692972.407653747,0.0,40633401.54604929,0.0,11353779.665832639,0.0,24077897.774247428,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,185043539.9237097,0.0,35233267.594637479,69761869.8373822 + 04/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34339542.42953778,0.0,43258980.12344478,0.0,13671739.397924416,0.0,26981376.28498002,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,195498717.83078126,0.0,35233267.594637479,62010550.96656194 + 04/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39255803.63346328,0.0,48272618.840629417,0.0,17989652.53241626,0.0,32426707.45278227,0.0,2580.0551285663138,2539.6638842197996,2542.93650035272,3061.1369232849735,176550435.23041696,0.0,35233267.594637479,46507913.22492146 + 04/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,48404586.768172677,0.0,57431622.99891919,0.0,26563467.305534975,0.0,42961698.24945919,0.0,2579.2830881924735,2538.9039302820358,2542.1755671367407,3060.220926852004,213955475.96695376,0.0,21139960.556782485,23253956.61246073 + 04/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10631238.364986178,0.0,18334801.421196727,0.0,0.0,0.0,3416980.8635307278,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,51676049.752520259,0.0,14093307.03785499,0.0 + 04/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34184385.55028723,0.0,42200509.254530649,0.0,9846757.534309913,0.0,27032488.16416088,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,132557169.60609529,0.0,14093307.03785499,0.0 + 04/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36118169.61754371,0.0,43579625.63492988,0.0,17364484.439158758,0.0,30945582.963317135,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,147298830.05206595,0.0,14093307.03785499,0.0 + 04/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37436963.841209027,0.0,44861640.6727777,0.0,19015582.301441056,0.0,32483715.017957923,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,153088869.23050217,0.0,14093307.03785499,0.0 + 04/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37658870.603048678,0.0,44990945.73476317,0.0,19934507.67046991,0.0,33265850.167744806,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,155134752.31093485,0.0,14093307.03785499,0.0 + 04/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32374103.872615369,0.0,39514013.20489446,0.0,16441579.650732547,0.0,28520090.036386827,0.0,5155.810484967762,5075.095310010096,5081.635088321253,6117.172331028726,193996754.33620943,0.0,14093307.03785499,15502637.741640486 + 04/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46146213.85909124,0.0,53996430.96401405,0.0,28846388.1720785,0.0,43892672.1914002,0.0,20629.9648302303,20306.998882296903,20333.166523049033,24476.665776897655,481570170.83149,0.0,56373228.15141996,38756594.35410121 + 04/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,49031447.793115328,0.0,58232287.60783475,0.0,33059598.904509415,0.0,46380276.33978256,0.0,18043.31221125988,17760.840792616033,17783.72744878865,21407.7011830899,456687704.53395816,0.0,56373228.15141996,38756594.35410121 + 04/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59635002.27036075,0.0,68080299.25291531,0.0,39965540.90046823,0.0,58164844.70640369,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,418796254.6407911,0.0,28186614.07570998,0.0 + 04/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55432152.62130871,0.0,63994009.54361015,0.0,38023576.60334598,0.0,55359130.90611099,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,367169323.6828903,0.0,28186614.07570998,0.0 + 04/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42716013.77959439,0.0,52069209.5212277,0.0,32966200.61555985,0.0,47981194.20231089,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,252920819.40842826,0.0,28186614.07570998,0.0 + 04/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40334841.249927658,0.0,49861010.63743847,0.0,31487052.320035839,0.0,46059410.03967738,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,244961048.09254147,0.0,28186614.07570998,0.0 + 04/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40483282.54674269,0.0,49781367.18241947,0.0,30582509.84039359,0.0,45261866.515571299,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,243356105.68002133,0.0,28186614.07570998,0.0 + 04/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42795758.06782522,0.0,51717926.882086697,0.0,30601754.5056158,0.0,45753563.02548788,0.0,7746.3735173211439,7625.102594822928,7634.928317794401,9190.77648104571,286778853.7605586,0.0,28186614.07570998,0.0 + 04/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43134164.74434879,0.0,51428056.98406308,0.0,30021728.187557598,0.0,44894267.70657696,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,362706742.00864925,0.0,28186614.07570998,0.0 + 04/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41673841.871762927,0.0,49121302.1649404,0.0,27727103.647352075,0.0,41700401.015731628,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.02392617774,353520034.12800136,0.0,35233267.594637479,0.0 + 04/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47126993.801461938,0.0,54432797.30569219,0.0,29830079.92965191,0.0,44633836.18392021,0.0,18081.79659969841,17798.72270077431,17821.658171652118,21453.3614409328,446583647.3077337,0.0,14093307.03785499,0.0 + 04/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,37896270.05253199,0.0,45743483.172037247,0.0,19415460.895010745,0.0,32456602.472752997,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,405724908.8088267,0.0,63419881.67034747,0.0 + 04/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,29721022.32903864,0.0,38416499.858844097,0.0,9935981.043265144,0.0,21663979.90012651,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,253678395.70086245,0.0,63419881.67034747,69761869.8373822 + 04/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,36260486.47062448,0.0,45354056.17534583,0.0,15184342.518180427,0.0,28590455.939893243,0.0,10274.046014931173,10113.203907946036,10126.235803414687,12189.763412269001,279121038.00286319,0.0,49326574.63249246,69761869.8373822 + 04/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40061082.80128605,0.0,49204050.60135527,0.0,18409992.4858721,0.0,32661153.220874847,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,217238200.56776045,0.0,35233267.594637479,69761869.8373822 + 04/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43773798.83616439,0.0,52988870.78396879,0.0,21327414.45690051,0.0,36539297.978748548,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,231393179.83566166,0.0,35233267.594637479,62010550.96656194 + 04/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45169848.91723473,0.0,54184362.02701427,0.0,22975739.42033977,0.0,38433559.634050149,0.0,2574.1356075394658,2533.8370343989124,2537.102142041105,3054.1136375486269,199280588.31614013,0.0,35233267.594637479,46507913.22492146 + 04/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,50218757.48251995,0.0,58786627.19903384,0.0,28565596.114222435,0.0,44884385.65759242,0.0,2576.1019054750056,2535.7725495734587,2539.040151324507,3056.4465749909379,221001866.70627869,0.0,21139960.556782485,23253956.61246073 + 04/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11054595.75615076,0.0,18411350.829443225,0.0,0.0,0.0,3658846.3125169768,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,52395675.73134377,0.0,14093307.03785499,0.0 + 04/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36345819.90727839,0.0,44032406.9180494,0.0,12826887.789482652,0.0,29280259.310062253,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,141733430.9298476,0.0,14093307.03785499,0.0 + 04/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39420397.72233256,0.0,46679712.31407215,0.0,20346577.27351465,0.0,34245132.07239492,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,159931661.61295093,0.0,14093307.03785499,0.0 + 04/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39978172.758915487,0.0,47036779.34391887,0.0,21464291.794718535,0.0,35050475.69600117,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,162780447.63951753,0.0,14093307.03785499,0.0 + 04/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38428567.20769856,0.0,44788330.29678739,0.0,19875374.39726219,0.0,33322431.558240236,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,155670672.60798437,0.0,14093307.03785499,0.0 + 04/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32567688.182350615,0.0,39438376.239602569,0.0,16699485.138370242,0.0,28620817.819231009,0.0,5156.379821330676,5075.65573330604,5082.196233779815,6117.84782689042,194481853.99465943,0.0,14093307.03785499,15502637.741640486 + 04/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38591913.66836035,0.0,45361657.2367808,0.0,25394856.35557835,0.0,38458022.64134124,0.0,20656.996046189714,20333.60691952781,20359.808847451735,24508.737282788556,456899386.64750888,0.0,56373228.15141996,38756594.35410121 + 04/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,35244969.74700492,0.0,44110016.40647483,0.0,28132704.595792705,0.0,41014485.22238951,0.0,18090.14070797342,17806.936180477685,17829.882235262423,21463.26140688691,419186969.88182356,0.0,56373228.15141996,38756594.35410121 + 04/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29292812.873968059,0.0,40917665.25644281,0.0,25341392.45484272,0.0,36880086.248213078,0.0,12926.360841179097,12723.996250800205,12740.39241868066,15336.633708530971,325850536.422554,0.0,28186614.07570998,0.0 + 04/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4657003.596645072,0.0,23844620.175983125,0.0,17334891.419063718,0.0,25444933.431810924,0.0,10343.29601424438,10181.36978560142,10194.489519760979,12271.925893019139,226049340.98895616,0.0,28186614.07570998,0.0 + 04/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2563988.1448144938,0.0,20234720.196783708,0.0,15445375.652502168,0.0,22240468.855429595,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,137892659.3973357,0.0,28186614.07570998,0.0 + 04/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3163424.3612906925,0.0,17600865.516642095,0.0,12842663.300035108,0.0,18796053.45734798,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,129817230.04364856,0.0,28186614.07570998,0.0 + 04/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,587598.708019589,0.0,15060758.732332409,0.0,9890323.225631591,0.0,15342772.7710336,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,118296805.94500183,0.0,28186614.07570998,0.0 + 04/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,10719356.171495079,0.0,5660442.08277287,0.0,10805801.465181789,0.0,7760.489458833364,7638.997548637448,7648.84117667514,9207.524506811345,143306669.406896,0.0,28186614.07570998,0.0 + 04/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,9508264.004575782,0.0,2309056.711930828,0.0,7946683.987329283,0.0,12932.829801949552,12730.363938783015,12746.768312079374,15344.308883549702,213279380.07473786,0.0,28186614.07570998,0.0 + 04/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,314987.05672662469,0.0,7919335.4862074409,0.0,0.0,0.0,3857545.451712393,0.0,12934.393745795815,12731.903398796612,12748.309755844326,15346.164443223886,205630644.83182479,0.0,35233267.594637479,0.0 + 04/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9618137.182161184,0.0,15373654.695973937,0.0,1975660.4386524936,0.0,8598526.109810647,0.0,18107.808737277846,17824.327613487378,17847.296078908657,21484.223849226466,306515141.0306395,0.0,14093307.03785499,0.0 + 04/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10046299.792985646,0.0,17796923.514335835,0.0,860747.4065447197,0.0,7141985.7887993319,0.0,18102.086828442756,17818.695282202523,17841.65648979006,21477.43502281232,306709501.5463571,0.0,63419881.67034747,0.0 + 04/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,6274979.59076176,0.0,14961532.198016625,0.0,0.0,0.0,869790.9856789277,0.0,10328.498023094859,10166.803459763907,10179.904423725868,12254.368641394278,176652771.1471814,0.0,63419881.67034747,69761869.8373822 + 04/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,16732552.363697555,0.0,25877410.729807438,0.0,601171.9742503251,0.0,11228608.035026357,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,208587596.6633865,0.0,49326574.63249246,69761869.8373822 + 04/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22891273.29170802,0.0,32038475.82021148,0.0,7000078.71443367,0.0,17364793.723950987,0.0,5155.810484967762,5075.095310010096,5081.635088321253,6117.172331028726,156441589.12188436,0.0,35233267.594637479,69761869.8373822 + 04/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29663472.295526286,0.0,39056919.375843349,0.0,11834831.943049413,0.0,24193043.10920316,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,181626272.9555005,0.0,35233267.594637479,62010550.96656194 + 04/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,35604355.9286364,0.0,45067336.96394785,0.0,16785878.615750657,0.0,30455492.49489615,0.0,2572.7345414951867,2532.457902304925,2535.721232794649,3052.4513261690688,166409178.01318086,0.0,35233267.594637479,46507913.22492146 + 04/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,46429530.69100438,0.0,55938373.49002304,0.0,26562304.56031748,0.0,42578690.61917207,0.0,2566.841969485217,2526.6575796090298,2529.9134357909335,3045.460014412541,209916842.1579888,0.0,21139960.556782485,23253956.61246073 + 04/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12021795.138916083,0.0,20707342.193475069,0.0,0.0,0.0,4875781.663447245,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,56782317.246037,0.0,14093307.03785499,0.0 + 04/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37561439.28265357,0.0,46548880.342314649,0.0,16464323.541643076,0.0,32419757.077186418,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,152191926.94763068,0.0,14093307.03785499,0.0 + 04/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39376814.588799159,0.0,47765483.62699914,0.0,20881118.29238345,0.0,35229532.89805791,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,162463232.68856675,0.0,14093307.03785499,0.0 + 04/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40877029.660134058,0.0,49104070.21283524,0.0,22536488.66273202,0.0,36893403.84191297,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,168621275.65994139,0.0,14093307.03785499,0.0 + 04/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28146681.21437589,0.0,31375474.939510518,0.0,10325996.03093076,0.0,21236343.510783286,0.0,1284.4588811153456,1264.3504377159175,1265.9796823044806,1523.961431633583,110303997.25357002,0.0,14093307.03785499,0.0 + 04/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9526215.156616556,0.0,12579476.241443124,0.0,0.0,0.0,2064439.715675605,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,101204287.7487377,0.0,14093307.03785499,15502637.741640486 + 04/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13842261.400938163,0.0,15290062.644576766,0.0,8995625.161223336,0.0,15383270.687742284,0.0,20629.9648302303,20306.998882296903,20333.166523049033,24476.66577689766,362199685.5393866,0.0,56373228.15141996,38756594.35410121 + 04/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,8237318.946329231,0.0,25685222.478852795,0.0,3081981.2320220109,0.0,11066717.31454156,0.0,18060.385899964196,17777.64718953859,17800.55550246904,21427.958462994808,318310809.36962547,0.0,56373228.15141996,38756594.35410121 + 04/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,22086876.629111414,0.0,7415403.372642706,0.0,17814034.721619514,0.0,12907.379493515047,12705.312059674803,12721.684151067939,15314.113064090161,240450874.28942628,0.0,28186614.07570998,0.0 + 04/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7756931.758291079,23101697.17146664,0.0,12827105.478802022,0.0,21324454.383907483,0.0,10332.455199827664,10170.69868615675,10183.804669515495,12259.06368053303,211858937.08389474,7756931.758291079,28186614.07570998,0.0 + 04/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17607970.437317939,21906627.116713149,0.0,13832773.302290723,0.0,20171757.96180502,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,133285610.49918029,17607970.437317939,28186614.07570998,0.0 + 04/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24469283.533352075,15658476.58582282,0.0,10250888.235992652,0.0,13974071.776637715,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,117278105.74795318,24469283.533352075,28186614.07570998,0.0 + 04/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30939855.491739386,4206810.953640141,0.0,1832450.4726979328,0.0,3636431.6616688098,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,87091223.48462206,30939855.491739386,28186614.07570998,0.0 + 04/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30972096.558472635,0.0,0.0,0.0,0.0,0.0,0.0,7760.120444596167,7638.634311386973,7648.477471356393,9207.08668550505,116115548.0862405,30972096.558472635,28186614.07570998,0.0 + 04/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23799700.850528536,0.0,0.0,0.0,7237948.649240579,0.0,0.0,12932.548769028932,12730.087305485195,12746.491322311313,15343.975448717072,193511170.24395303,31037649.499769115,28186614.07570998,0.0 + 04/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14334910.091646389,0.0,203952.47119026603,0.0,12524021.034013439,0.0,7129231.268514738,12932.548769028932,12730.087305485195,12746.491322311313,15343.975448717072,193511170.24395303,34192114.86536483,35233267.594637479,0.0 + 04/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1814206.0976386856,0.0,0.0,0.0,3833159.23660056,0.0,696757.8782241241,18108.15124411414,17824.664758315255,17847.633658182054,21484.630220513438,270954287.5720496,6344123.21246337,14093307.03785499,0.0 + 04/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,9620044.017403659,0.0,0.0,356879.98558566046,0.0,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,280199265.38120946,356879.98558566046,63419881.67034747,0.0 + 04/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,9954968.408761789,0.0,0.0,749557.9268375033,0.0,0.0,10333.191535475318,10171.423494332477,10184.530411680536,12259.937314671313,164571666.33093653,749557.9268375033,63419881.67034747,69761869.8373822 + 04/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,5578210.867838791,0.0,18602860.562739567,0.0,0.0,0.0,910964.3118548265,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,179452489.75094766,0.0,49326574.63249246,69761869.8373822 + 04/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15886407.109716353,0.0,27884124.78883677,0.0,0.0,0.0,12475526.479614877,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,133348392.58627865,0.0,35233267.594637479,69761869.8373822 + 04/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22940574.303843656,0.0,34760949.1375642,0.0,4958600.293980356,0.0,18922906.07556255,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,158606906.40293468,0.0,35233267.594637479,62010550.96656194 + 04/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31468713.497390748,0.0,43171030.52489855,0.0,13452746.072989986,0.0,27681437.594292646,0.0,2570.1097750302176,2529.874227048615,2533.134228209061,3049.337140951878,154230767.0260351,0.0,35233267.594637479,46507913.22492146 + 04/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,44892165.39623921,0.0,56435693.3117296,0.0,25205037.64755468,0.0,42243597.70873065,0.0,2563.7495851555797,2523.6136071329567,2526.865540845633,3041.7910184489935,207138165.16995353,0.0,21139960.556782485,23253956.61246073 + 04/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10284167.190881884,0.0,19871383.473655169,0.0,0.0,0.0,4071928.6671863228,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,53411719.20630924,0.0,14093307.03785499,0.0 + 04/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35904471.97951714,0.0,46344986.07212568,0.0,12965576.633234222,0.0,31014016.27802039,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,145409886.51574714,0.0,14093307.03785499,0.0 + 04/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40373100.86842306,0.0,50078609.54177267,0.0,21695665.954723784,0.0,37071900.47297621,0.0,1280.2206012981017,1260.1785089598625,1261.8023775924037,1518.9328744155099,168375360.54205287,0.0,14093307.03785499,0.0 + 04/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43515562.98631464,0.0,53024674.80085154,0.0,24704377.501585895,0.0,40296733.58307077,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,180690065.41196955,0.0,14093307.03785499,0.0 + 04/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29091575.601619897,0.0,32804191.91067155,0.0,10963905.238490504,0.0,22543120.306985007,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,114587032.93235283,0.0,14093307.03785499,0.0 + 04/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10520822.016981092,0.0,14223350.738210738,0.0,0.0,0.0,2864875.359893273,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,104557195.48700512,0.0,14093307.03785499,15502637.741640486 + 04/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13879005.735883678,0.0,15690196.449026319,0.0,8844752.530369357,0.0,15859843.606811643,0.0,20636.35996530419,20313.293900338205,20339.469652863594,24484.253360545514,363057955.0866765,0.0,56373228.15141996,38756594.35410121 + 04/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,7926305.70903425,0.0,22254872.181984,0.0,2775145.012169197,0.0,8789382.403780409,0.0,18084.34160340448,17801.227861972588,17824.166561006296,21456.380990681286,312343726.56840059,0.0,56373228.15141996,38756594.35410121 + 04/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4339905.788525943,15703201.098069027,0.0,2798075.1233064366,0.0,10848350.810623365,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,222830116.76841168,4339905.788525943,28186614.07570998,0.0 + 04/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13909784.44997709,17565744.595586227,0.0,8457793.558093353,0.0,16107555.730947108,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,196886603.9235899,13909784.44997709,28186614.07570998,0.0 + 04/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13820762.807087867,19225000.700158247,0.0,11681443.473170512,0.0,17856241.707482887,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,126157355.03031165,13820762.807087867,28186614.07570998,0.0 + 04/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17058323.839357966,13963878.08993299,0.0,8801335.625952127,0.0,12931065.470352833,0.0,5173.626478327107,5092.632390669831,5099.194767299391,6138.3103270713149,113109829.45436146,17058323.839357966,28186614.07570998,0.0 + 04/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18152039.998335445,6286005.266259861,0.0,2410652.9271952027,0.0,6108535.633533925,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,92220249.54446234,18152039.998335445,28186614.07570998,0.0 + 04/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15101384.315445787,1721896.005085934,0.0,0.0,0.0,1170876.0020704037,0.0,7760.332727172708,7638.843270640177,7648.686699874923,9207.338550678793,119011496.5012761,15101384.315445787,28186614.07570998,0.0 + 04/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13414419.90323648,0.0,0.0,0.0,0.0,0.0,0.0,12933.087698752137,12730.617798163044,12747.022498583125,15344.614868261442,193519234.3095351,13414419.90323648,28186614.07570998,0.0 + 04/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9028682.278855334,0.0,0.0,0.0,6147603.963444691,0.0,0.0,12933.887878621179,12731.405451066965,12747.811166458205,15345.564251131318,193531207.4901996,15176286.242300025,35233267.594637479,0.0 + 04/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,983278.1537409433,0.0,0.0,0.0,4082001.5803335115,0.0,0.0,18108.15124411414,17824.664758315255,17847.633658182054,21484.630220513438,270954287.5720496,5065279.734074455,14093307.03785499,0.0 + 04/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,8368442.3793372609,0.0,0.0,1087158.6052083816,0.0,0.0,18104.33615013548,17820.909390344535,17843.873451036405,21480.103757138848,279265644.2744962,1087158.6052083816,63419881.67034747,0.0 + 04/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,7089093.845047962,0.0,0.0,2054148.338186446,0.0,0.0,10338.990510863428,10177.131685679089,10190.245958614321,12266.817577608806,161792562.48300428,2054148.338186446,63419881.67034747,69761869.8373822 + 04/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,3645316.441449593,0.0,15544197.292786103,0.0,0.0,0.0,0.0,0.0,10324.082394455938,10162.456958615065,10175.552321666655,12249.129666569106,173669910.56294007,0.0,49326574.63249246,69761869.8373822 + 04/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11698437.840337946,0.0,22218549.312275534,0.0,0.0,0.0,6496643.7741528269,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,117646811.2775872,0.0,35233267.594637479,69761869.8373822 + 04/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15517480.765462619,0.0,25529944.564598346,0.0,0.0,0.0,10959788.051306289,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,129247411.79571942,0.0,35233267.594637479,62010550.96656194 + 04/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23142540.603603834,0.0,32967183.45787715,0.0,7790495.129134373,0.0,18945598.972348699,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,121382781.55311528,0.0,35233267.594637479,46507913.22492146 + 04/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,33267118.910917455,0.0,42822897.593631509,0.0,16748742.580562845,0.0,30254237.262218108,0.0,2577.6160301799825,2537.26297037372,2540.5324926840937,3058.2430261557,161662152.6171465,0.0,21139960.556782485,23253956.61246073 + 04/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1785803.9304215753,0.0,7892323.545773501,0.0,0.0,0.0,0.0,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,28934096.624191055,0.0,14093307.03785499,0.0 + 04/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28884124.949459014,0.0,38243376.39657582,0.0,5741473.595999332,0.0,22832497.859726799,0.0,1280.2206012981017,1260.1785089598625,1261.8023775924037,1518.9328744155099,114857556.50591812,0.0,14093307.03785499,0.0 + 04/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34157105.81131832,0.0,42731032.36349483,0.0,17564841.656826825,0.0,30873514.041106225,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,144503892.12294484,0.0,14093307.03785499,0.0 + 04/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39072620.401117827,0.0,47644375.85235363,0.0,21800313.32125041,0.0,35991715.64137792,0.0,1276.3159186408196,1256.334954837998,1257.9538706587499,1514.3001174935449,163606682.71797178,0.0,14093307.03785499,0.0 + 04/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24563852.43925297,0.0,26862058.560156995,0.0,7879986.355816067,0.0,18176353.817643957,0.0,1280.9427160759508,1260.8893188961543,1262.5141034798492,1519.7896360346122,96649139.96102163,0.0,14093307.03785499,0.0 + 04/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4546525.8242746409,0.0,6362900.991045738,0.0,0.0,0.0,584897.2009702934,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,30745052.062254136,0.0,14093307.03785499,15502637.741640486 + 04/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13344708.102133237,0.0,13545426.021525626,0.0,4654418.705426597,0.0,11614328.692090804,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473418,120425782.706071,0.0,56373228.15141996,38756594.35410121 + 04/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,2581539.1381320457,7739872.307163519,8036996.19041542,0.0,148767.25532528654,0.0,3949543.0961392538,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,208144373.29522015,7739872.307163519,56373228.15141996,38756594.35410121 + 04/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20821896.923972466,0.0,0.0,0.0,0.0,0.0,0.0,12934.06619581777,12731.580976674575,12747.986918248478,15345.775817678286,193533875.6703088,20821896.923972466,28186614.07570998,0.0 + 04/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29491144.001571299,2544011.1608824019,0.0,0.0,0.0,0.0,0.0,12934.149098055606,12731.662581062414,12748.068627791898,15345.874178018907,196079127.30662618,29491144.001571299,28186614.07570998,0.0 + 04/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35637350.564749,2725769.6713855725,0.0,0.0,0.0,606739.4048758755,0.0,7758.226127742089,7636.769650416631,7646.610407580069,9204.839150868207,119419712.28804663,35637350.564749,28186614.07570998,0.0 + 04/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42242040.219757657,45207.30339061701,0.0,0.0,0.0,0.0,0.0,7756.423776271284,7634.995515094329,7644.833986103321,9202.70072964808,116105441.72901188,42242040.219757657,28186614.07570998,0.0 + 04/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45704339.16531512,0.0,0.0,0.0,1282538.3288041757,0.0,0.0,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,116025805.1033544,46986877.4941193,28186614.07570998,0.0 + 04/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43932770.93668899,0.0,11231952.86652871,0.0,13792811.348214603,0.0,11832652.937846676,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,116025805.1033544,80790188.08927897,28186614.07570998,0.0 + 04/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36078306.232381727,0.0,16100360.679000438,0.0,19768589.029793666,0.0,17856800.051696164,18088.728590693165,17805.54617015688,17828.490433771443,21461.585983637713,270663664.2417331,89804055.992872,28186614.07570998,0.0 + 04/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25820537.01088657,0.0,15055754.835443909,0.0,23203627.080076927,0.0,20625320.56925513,23256.936759462646,22892.84507591599,22922.344843420426,27593.46769324849,347996139.7393712,84705239.49566253,35233267.594637479,0.0 + 04/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13504225.80673321,0.0,5546357.25092649,0.0,17199331.947638748,0.0,15043538.665076646,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,51293453.670375097,14093307.03785499,0.0 + 04/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,3433376.580357458,0.0,0.0,0.0,7469459.063259792,0.0,5040127.690999627,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,270951652.9851288,15942963.334616876,63419881.67034747,0.0 + 04/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,799443.7833946106,0.0,0.0,0.0,12217691.218286699,0.0,5003698.338780152,15520.307896210039,15277.33458078429,15297.020985716757,18414.252872278794,232232098.80596359,18020833.34046146,63419881.67034747,69761869.8373822 + 04/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,2230849.3911289635,0.0,0.0,5566429.02410204,0.0,358837.13145736537,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,195658377.0063371,5925266.155559406,49326574.63249246,69761869.8373822 + 04/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,9954179.455616093,0.0,0.0,271713.563572755,0.0,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,164696201.54778264,271713.563572755,35233267.594637479,69761869.8373822 + 04/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4037991.4025057565,0.0,13539471.739965197,0.0,0.0,0.0,0.0,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,133644095.67169339,0.0,35233267.594637479,62010550.96656194 + 04/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12407440.1609931,0.0,20877009.494089355,0.0,0.0,0.0,5722419.583267158,0.0,5166.595767737659,5085.711747166239,5092.265205840268,6129.968657335657,116315218.19943699,0.0,35233267.594637479,46507913.22492146 + 04/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,26299121.373455928,0.0,34858678.48943743,0.0,9530746.339846716,0.0,22363307.790636146,0.0,2579.016623378802,2538.641637024731,2541.912935887802,3059.90477652217,131641967.49550483,0.0,21139960.556782485,23253956.61246073 + 04/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2802807.114875145,0.0,0.0,0.0,0.0,0.0,1289.372801889394,1269.1874301435567,1270.8229076905646,1529.7916110561037,22095836.217681767,0.0,14093307.03785499,0.0 + 04/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15839719.543539595,0.0,25099931.593458296,0.0,0.0,0.0,8635422.073682312,0.0,1288.8080150899912,1268.63148518686,1270.2662463420466,1529.12151307785,68859651.34558849,0.0,14093307.03785499,0.0 + 04/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24213048.693178327,0.0,31247453.17620629,0.0,8085232.468990213,0.0,19946522.68700149,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,102748226.1733723,0.0,14093307.03785499,0.0 + 04/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28099647.7128374,0.0,35009869.35361798,0.0,12939688.460032653,0.0,24205650.24346486,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,119502912.77492778,0.0,14093307.03785499,0.0 + 04/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15038451.162071078,0.0,15898343.810106719,0.0,1796871.7829357745,0.0,8237341.6929363389,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,60219065.4530248,0.0,14093307.03785499,0.0 + 04/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,798220.6952698326,0.0,1020842.4011516183,0.0,0.0,0.0,0.0,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,21137371.64301196,0.0,14093307.03785499,15502637.741640486 + 04/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,10493417.276658101,0.0,11024008.466163727,0.0,1380635.2195860176,0.0,7319005.330635315,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,49563774.88940719,0.0,56373228.15141996,38756594.35410121 + 04/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,16728353.136790522,0.0,0.0,0.0,9375337.009377767,0.0,4162656.7066317198,5173.697994071408,5092.702786821814,5099.265254164,6138.395177772003,77414620.36618522,30266346.852800006,56373228.15141996,38756594.35410121 + 04/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26308678.50595986,0.0,0.0,0.0,1668285.6602960732,0.0,15888.330277934441,7758.716000056018,7637.2518536881,7647.09323221967,9205.420365669108,116094533.22587842,27992852.496533868,28186614.07570998,0.0 + 04/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36647186.779700588,0.0,0.0,0.0,490473.2234371271,0.0,0.0,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,115951877.39581964,37137660.003137718,28186614.07570998,0.0 + 04/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44879665.95240786,0.0,0.0,0.0,1632353.671477633,0.0,0.0,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,46512019.6238855,28186614.07570998,0.0 + 04/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53254693.09916863,0.0,6719022.3598383399,0.0,6095191.47763535,0.0,7641428.597601136,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,73710335.53424345,28186614.07570998,0.0 + 04/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58930234.288896318,0.0,18007534.718417244,0.0,14669755.004467722,0.0,17561911.613611498,7721.081365293064,7600.206396153094,7610.000037831479,9160.76830812519,115531401.98665019,109169435.62539277,28186614.07570998,0.0 + 04/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62457377.61105156,0.0,31295501.207619225,0.0,26585218.932109149,0.0,30333798.978442216,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,150671896.72922216,28186614.07570998,0.0 + 04/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52809008.34477164,0.0,33779047.87034778,0.0,33287332.226375268,0.0,35775696.8943087,12857.652898686623,12656.363943964903,12672.672960714917,15255.114357507055,192390494.9791446,155651085.3358034,28186614.07570998,0.0 + 04/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,42290312.57479738,0.0,32854661.687885263,0.0,36048149.20924528,0.0,37880158.261425379,15437.944184784563,15196.260288626117,15215.842221058057,18316.531472688617,230999681.40176649,149073281.73335327,35233267.594637479,0.0 + 04/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,27200331.77885147,0.0,19187451.168221248,0.0,26450524.66632211,0.0,27871517.263236099,18058.108419097323,17775.405363059555,17798.310787167768,21425.256318883054,270205491.19754776,100709824.87663092,14093307.03785499,0.0 + 04/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,14581406.581317166,0.0,6798922.823794387,0.0,17549800.30525249,0.0,16049774.579378682,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,154692456.46727775,54979904.28974272,63419881.67034747,0.0 + 04/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,16960875.474035015,0.0,7736620.272956502,0.0,22743185.371036754,0.0,20975780.78922432,7756.074890489255,7634.652091184304,7644.490119656535,9202.286789985494,116055014.00873612,68416461.90725258,63419881.67034747,69761869.8373822 + 04/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,9193219.222705154,0.0,1722389.5627384247,0.0,16382661.453956612,0.0,13307946.139429676,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,77396355.48391895,40606216.37882987,49326574.63249246,69761869.8373822 + 04/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4131143.2431272168,0.0,0.0,0.0,11886190.568531165,0.0,8154577.440958209,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,24171911.25261659,35233267.594637479,69761869.8373822 + 04/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,616187.5230278148,0.0,0.0,0.0,8353674.069952835,0.0,4203741.086008096,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,77396355.48391895,13173602.678988748,35233267.594637479,62010550.96656194 + 04/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,712321.2597555773,0.0,0.0,2302522.8147566288,0.0,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,78126367.7180531,2302522.8147566288,35233267.594637479,46507913.22492146 + 04/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,2977289.0947982415,0.0,12905516.007738427,0.0,0.0,0.0,0.0,0.0,2586.8734619270978,2546.3754752998618,2549.6567400029268,3069.226615545758,54590481.35652898,0.0,21139960.556782485,23253956.61246073 + 04/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,19353852.873256897,0.0,14093307.03785499,0.0 + 04/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,7165487.5999674969,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223887,26519365.283685328,0.0,14093307.03785499,0.0 + 04/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11819688.830063254,0.0,18639381.96741165,0.0,0.0,0.0,3431598.539379676,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,53239920.34667229,0.0,14093307.03785499,0.0 + 04/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17481298.556525038,0.0,24153663.188639638,0.0,193671.89974544454,0.0,12120767.948624909,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,73301769.67565963,0.0,14093307.03785499,0.0 + 04/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17246897.669094724,0.0,23278164.208703508,0.0,3675946.8107346824,0.0,12673885.210398123,0.0,1293.4066195817769,1273.1580976674578,1274.7986918248478,1534.5775817678287,76228281.46596192,0.0,14093307.03785499,0.0 + 04/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9475081.768494424,0.0,14417103.140494757,0.0,451042.1281013667,0.0,6659673.898193212,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,108389735.32073993,0.0,14093307.03785499,15502637.741640486 + 04/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13926749.366816929,0.0,15645156.583654244,0.0,13183880.282212915,0.0,16413860.166662645,0.0,20694.50591330843,20370.529562679323,20396.779069197564,24553.241308285258,368823847.4718408,0.0,56373228.15141996,38756594.35410121 + 04/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,19188323.36264946,0.0,28051525.35729335,0.0,13264903.878252062,0.0,24464678.18866504,0.0,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,355920602.06850817,0.0,56373228.15141996,38756594.35410121 + 04/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10731050.895051644,0.0,17877366.246439786,0.0,11848857.10506548,0.0,18856660.777208084,0.0,12932.829801949552,12730.363938783015,12746.768312079374,15344.308883549702,252829310.39466695,0.0,28186614.07570998,0.0 + 04/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1937389.8861157736,0.0,8095712.572805616,0.0,7693771.5157967,0.0,11960691.564213573,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,184434544.77309335,0.0,28186614.07570998,0.0 + 04/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3526437.018274359,0.0,8702354.718604312,0.0,6848707.48781265,0.0,11068051.665035295,0.0,5170.223721121991,5089.282904263544,5095.840964737995,6134.273085538672,107508185.32211054,0.0,28186614.07570998,0.0 + 04/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,747236.2562714813,0.0,5133753.50717268,0.0,4230404.717408441,0.0,7387063.662008013,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,94805257.69832243,0.0,28186614.07570998,0.0 + 04/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1276203.8283198868,0.0,1247441.1826151077,0.0,3476676.211522823,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,83307120.77791964,0.0,28186614.07570998,0.0 + 04/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,4154949.2534072624,0.0,2407948.0436104966,0.0,5476092.317063426,0.0,7753.2451808065729,7631.866681134585,7641.701120321666,9198.92944746365,128051662.3610965,0.0,28186614.07570998,0.0 + 04/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2211265.8058835987,0.0,8064757.094142308,0.0,4027553.9310715219,0.0,7784177.832608525,0.0,12923.538049279316,12721.217650234206,12737.610237604227,15333.284573694473,215464096.50262998,0.0,28186614.07570998,0.0 + 04/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,5352415.902675843,0.0,9794871.335428287,0.0,3720120.6969948869,0.0,7813191.369143782,0.0,12923.538049279316,12721.217650234206,12737.610237604227,15333.284573694473,220056941.1431668,0.0,35233267.594637479,0.0 + 04/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10759188.195429823,0.0,15190241.982692387,0.0,6233661.495350081,0.0,11442885.853651144,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,314433191.18690636,0.0,14093307.03785499,0.0 + 04/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,3946517.8566208586,0.0,8978263.223450207,0.0,0.0,0.0,1050955.9057988139,0.0,18103.11533072459,17819.707683089266,17842.67019525868,21478.65530150937,284854671.6239648,0.0,63419881.67034747,0.0 + 04/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,1799076.2686925168,0.0,0.0,10345.53384467344,10183.572582377647,10196.695155065685,12274.580993399977,154801377.2718603,1799076.2686925168,63419881.67034747,69761869.8373822 + 04/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,3625717.6640649207,0.0,0.0,1652440.2849140377,0.0,0.0,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,158456739.13380755,1652440.2849140377,49326574.63249246,69761869.8373822 + 04/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,6328890.201161622,0.0,13885330.65990182,0.0,0.0,0.0,0.0,0.0,5170.544336471639,5089.598500320083,5096.156967472264,6134.653483412389,97581652.6966984,0.0,35233267.594637479,69761869.8373822 + 04/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13192401.732103419,0.0,19523093.699424477,0.0,0.0,0.0,5127396.861412897,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,115190357.25231475,0.0,35233267.594637479,62010550.96656194 + 04/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17641641.882792944,0.0,23906570.998642416,0.0,2323945.834241446,0.0,12137869.922037468,0.0,2584.8856807667104,2544.4188132243605,2547.697556568629,3066.86818907723,94687961.5004072,0.0,35233267.594637479,46507913.22492146 + 04/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,29080370.001306915,0.0,35467704.79330326,0.0,13742062.626282206,0.0,24876793.79247985,0.0,2581.4758987030097,2541.062411934961,2544.3368302135875,3062.822612818032,141793843.12658275,0.0,21139960.556782485,23253956.61246073 + 04/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3159897.4323085017,0.0,0.0,0.0,0.0,0.0,1289.7724978315119,1269.5808687711379,1271.2168533039747,1530.2658350340947,22458907.23009509,0.0,14093307.03785499,0.0 + 04/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17606576.41032454,0.0,24729747.448737895,0.0,1964964.184963144,0.0,9541945.80962262,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,73151528.94135343,0.0,14093307.03785499,0.0 + 04/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23405606.034767353,0.0,28949938.949541239,0.0,9356308.224411365,0.0,18949834.831190297,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,99954717.14271689,0.0,14093307.03785499,0.0 + 04/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23592361.49306135,0.0,28894333.307548584,0.0,10101551.653017566,0.0,19377604.6706797,0.0,1291.266995454923,1271.0519697554565,1272.6898499520635,1532.0389994157907,101287223.25678882,0.0,14093307.03785499,0.0 + 04/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11370038.148450328,0.0,12068119.920150701,0.0,1262137.6863073642,0.0,5483796.245256237,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,49509802.00637945,0.0,14093307.03785499,0.0 + 04/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.544336471639,5089.598500320083,5096.156967472264,6134.653483412389,77367431.83563496,0.0,14093307.03785499,15502637.741640486 + 04/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,8584976.152938359,0.0,8699892.302133464,0.0,0.0,0.0,4475078.202223412,0.0,20695.029993273303,20371.045438074583,20397.29560935092,24553.86310915822,331421989.59678056,0.0,56373228.15141996,38756594.35410121 + 04/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,17327944.320944609,0.0,0.0,0.0,9654553.481854232,0.0,5344910.353756147,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,270870140.82749876,32327408.15655499,56373228.15141996,38756594.35410121 + 04/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24815607.46352166,0.0,0.0,0.0,264239.40851099617,0.0,0.0,12922.075301344286,12719.777801890974,12736.168533869444,15331.549079106082,193354454.57835884,25079846.87203265,28186614.07570998,0.0 + 04/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35438299.789527367,0.0,0.0,0.0,0.0,0.0,0.0,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,154579486.6577033,35438299.789527367,28186614.07570998,0.0 + 04/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41226803.66075431,0.0,0.0,0.0,0.0,0.0,0.0,5161.909022321121,5081.0983736235079,5087.64588749485,6124.408012803005,77238220.66647294,41226803.66075431,28186614.07570998,0.0 + 04/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45827217.49141192,0.0,0.0,0.0,0.0,0.0,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,45827217.49141192,28186614.07570998,0.0 + 04/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45388060.33487208,0.0,7828431.915191106,0.0,5371682.68675014,0.0,5513115.2354111089,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,64101290.17222445,28186614.07570998,0.0 + 04/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37822067.72655278,0.0,13051165.70969661,0.0,12076995.115340274,0.0,12101683.890919343,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,115690503.11594406,75051912.442509,28186614.07570998,0.0 + 04/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25808066.75639166,0.0,10644260.45279596,0.0,12768821.628928053,0.0,11401018.00081707,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,60622166.838932748,28186614.07570998,0.0 + 04/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19656923.890292936,0.0,10053297.212532808,0.0,14826525.75321059,0.0,13089643.535786804,12886.190426580759,12684.454711536184,12700.799926107378,15288.973045009036,192817505.19324009,57626390.39182313,35233267.594637479,0.0 + 04/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10257428.837172499,0.0,3091964.1738283049,0.0,10725160.598967357,0.0,8913540.667420159,18066.681578123924,17783.844307682273,17806.760606231976,21435.428044810513,270333772.33265528,32988094.277388324,14093307.03785499,0.0 + 04/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,7386456.180269962,0.0,2941722.183288401,0.0,11280469.549055802,0.0,9060119.698931274,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,270629163.3207264,30668767.611545434,63419881.67034747,0.0 + 04/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,8944569.274276697,0.0,3626.23797765991,0.0,15612375.847461287,0.0,12607796.063166805,10344.954666741358,10183.002471584135,10196.124309626226,12273.893820892143,154792710.9678379,37168367.422882448,63419881.67034747,69761869.8373822 + 04/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,937701.2421630439,0.0,0.0,0.0,8359432.398881867,0.0,3852887.345043111,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,154831021.46974264,13150020.986088023,49326574.63249246,69761869.8373822 + 04/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3599475.7311047438,0.0,0.0,1206392.0424337576,0.0,0.0,5172.199343773957,5091.227598174341,5097.788164585387,6136.617086401076,80991671.62566988,1206392.0424337576,35233267.594637479,69761869.8373822 + 04/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2729683.5433722829,0.0,12743588.601952179,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,92860106.5307806,0.0,35233267.594637479,62010550.96656194 + 04/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10371634.389681057,0.0,18477011.18253559,0.0,0.0,0.0,4420278.200466584,0.0,2585.147952284963,2544.6769788330686,2547.956054850074,3067.179364222118,71950781.03336804,0.0,35233267.594637479,46507913.22492146 + 04/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,23462419.87430039,0.0,31432784.427858659,0.0,8813612.504885644,0.0,20311320.214728036,0.0,2581.2505367690716,2540.84057808414,2544.1147105072075,3062.555229486008,122643676.81921987,0.0,21139960.556782485,23253956.61246073 + 04/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2458058.2482250879,0.0,0.0,0.0,0.0,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,21776366.7948156,0.0,14093307.03785499,0.0 + 04/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8874181.308467586,0.0,18566940.965035485,0.0,0.0,0.0,3945073.7181515505,0.0,1290.2735012547228,1270.0740288922962,1271.710648912285,1530.8602564712579,50692702.35956465,0.0,14093307.03785499,0.0 + 04/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15732385.411215082,0.0,21746351.937345316,0.0,3724563.537433632,0.0,12698200.609419635,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,73213271.39413724,0.0,14093307.03785499,0.0 + 04/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18806380.60766604,0.0,24682785.318316755,0.0,7733146.236065481,0.0,16043929.613233109,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,86555113.42905763,0.0,14093307.03785499,0.0 + 04/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9318782.330523778,0.0,10998774.074604297,0.0,881925.0036655023,0.0,5855952.746397483,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,46370541.916246149,0.0,14093307.03785499,0.0 + 04/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,455960.8750749263,0.0,1771191.4158084228,0.0,0.0,0.0,0.0,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,79570209.97842185,0.0,14093307.03785499,15502637.741640486 + 04/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12275336.755773558,0.0,13451178.414554317,0.0,6948350.365875735,0.0,13319725.593950052,0.0,20692.648546925346,20368.701273713457,20394.94842429475,24551.03761397176,355621000.2222128,0.0,56373228.15141996,38756594.35410121 + 04/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4991926.211333842,0.0,8704187.815114052,0.0,4268684.053520873,0.0,7795180.751332247,0.0,18107.211568342558,17823.73979334317,17846.707501298195,21483.51533108009,296700205.92993149,0.0,56373228.15141996,38756594.35410121 + 04/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18536792.748854717,0.0,0.0,0.0,0.0,0.0,0.0,12930.79666480328,12728.362630778049,12744.764425184772,15341.896643935266,193484953.31292496,18536792.748854717,28186614.07570998,0.0 + 04/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13692813.788346906,0.0,0.0,0.0,0.0,0.0,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,154812300.29672153,13692813.788346906,28186614.07570998,0.0 + 04/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,923380.3923382779,0.0,0.0,0.0,0.0,1336032.8187790176,0.0,5172.626752653717,5091.648315888356,5098.2094244371169,6137.124190721711,78734624.08010227,923380.3923382779,28186614.07570998,0.0 + 04/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3325680.8023865835,0.0,0.0,0.0,0.0,431315.60523034716,0.0,5172.318665921312,5091.345052311221,5097.9057700739099,6136.758657574106,77825296.93040033,3325680.8023865835,28186614.07570998,0.0 + 04/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3298059.8879896488,0.0,0.0,0.0,0.0,1625128.0229426719,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,79040183.74041602,3298059.8879896488,28186614.07570998,0.0 + 04/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,5046143.994321072,0.0,0.0,0.0,6937314.303125068,0.0,7760.418037293462,7638.927245215076,7648.7707826596329,9207.439767880578,128103459.29642165,0.0,28186614.07570998,0.0 + 04/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5348551.744671831,0.0,20155499.582578239,0.0,8895524.182073266,0.0,16533586.858027187,0.0,12933.887878621179,12731.405451066965,12747.811166458203,15345.564251131318,244464369.85755009,0.0,28186614.07570998,0.0 + 04/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17279500.895665207,0.0,25126146.74971213,0.0,9877808.668635384,0.0,18837364.033017614,0.0,12933.322456962116,12730.848881189453,12747.253879383597,15344.893399916311,264643567.36985565,0.0,35233267.594637479,0.0 + 04/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20545564.72927923,0.0,26692505.04242851,0.0,11922829.749177648,0.0,20598778.444857118,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,350699905.064373,0.0,14093307.03785499,0.0 + 04/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13060838.817191743,0.0,19566840.223050447,0.0,2515100.978290534,0.0,9492161.195341209,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,315587636.22503057,0.0,63419881.67034747,0.0 + 04/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,2152112.447183047,0.0,8812682.943888892,0.0,0.0,0.0,0.0,0.0,10347.46731810134,10185.475786918345,10198.600812079689,12276.874985816963,165795103.44157077,0.0,63419881.67034747,69761869.8373822 + 04/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,7884981.169732252,0.0,14658674.901045209,0.0,0.0,0.0,0.0,0.0,10344.049616253005,10182.111589830016,10195.232279880034,12272.820013035613,177322824.66717265,0.0,49326574.63249246,69761869.8373822 + 04/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12124047.521126619,0.0,18832789.20672419,0.0,0.0,0.0,6037863.441207322,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,114395958.80409175,0.0,35233267.594637479,69761869.8373822 + 04/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14685620.010311597,0.0,21296692.19941754,0.0,0.0,0.0,8336793.954607563,0.0,5172.364633922442,5091.390300674718,5097.951076744541,6136.813196852741,121713775.31383671,0.0,35233267.594637479,62010550.96656194 + 04/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18410550.62416813,0.0,24913164.799871297,0.0,3380598.278325103,0.0,12493152.803725057,0.0,2586.3337357336406,2545.8441986206487,2549.124778719486,3068.586251019836,97897066.77682659,0.0,35233267.594637479,46507913.22492146 + 04/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,25708037.675417298,0.0,31946918.01925213,0.0,11215820.583750036,0.0,21234177.207335354,0.0,2586.466654568959,2545.9750365868046,2549.255785283716,3068.743954144118,128806542.63585577,0.0,21139960.556782485,23253956.61246073 + 04/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,525944.7982118874,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19878312.880336487,0.0,14093307.03785499,0.0 + 04/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7502500.818527424,0.0,15319427.485575546,0.0,0.0,0.0,1720657.0885960567,0.0,1293.0062020316255,1272.763948728752,1274.4040349850043,1534.1025016294516,43889981.467248428,0.0,14093307.03785499,0.0 + 04/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18301370.056112939,0.0,23503925.311738239,0.0,3583067.4130015776,0.0,13396351.927750882,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,78107567.14721394,0.0,14093307.03785499,0.0 + 04/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22288572.1892231,0.0,27625074.049047106,0.0,8941908.79383942,0.0,18166194.056246506,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,96333518.98707971,0.0,14093307.03785499,0.0 + 04/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9163891.693554609,0.0,9178524.67475841,0.0,592802.6613179244,0.0,3447407.4407398325,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,41706924.871516879,0.0,14093307.03785499,0.0 + 04/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,77399200.541474,0.0,14093307.03785499,15502637.741640486 + 04/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,7910447.2461865949,0.0,8263154.62135525,0.0,0.0,0.0,4465885.318913295,0.0,20694.448099449233,20370.472653906876,20396.722087092352,24553.172714348206,330292823.1837231,0.0,56373228.15141996,38756594.35410121 + 04/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,18573965.451695276,0.0,1866868.2189077708,0.0,10895744.285821839,0.0,7081811.916853376,18087.591831984333,17804.427207617697,17827.37002933482,21460.237262822433,270646654.79433348,38418389.87327826,56373228.15141996,38756594.35410121 + 04/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27295392.496470065,0.0,542068.8679571205,0.0,3032478.040376712,0.0,234326.7977098992,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,31104266.202513797,28186614.07570998,0.0 + 04/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44439976.27147853,0.0,7860094.166750452,0.0,5907620.81757242,0.0,5194821.760190771,10291.962789856376,10130.840192417414,10143.894814038704,12211.02098179241,153999787.60117764,63402513.015992168,28186614.07570998,0.0 + 04/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35162318.34076012,0.0,12521308.250340304,0.0,7412024.191869551,0.0,7914733.857923383,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,63010384.640893358,28186614.07570998,0.0 + 04/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33216471.216505924,0.0,19850416.774510996,0.0,11616224.617709974,0.0,13462518.585582488,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,78145631.19430937,28186614.07570998,0.0 + 04/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34792751.4396922,0.0,24170165.765496229,0.0,14793642.07109017,0.0,17324145.3710353,5131.713784538751,5051.375847921537,5057.885061284797,6088.5825157973099,76786405.95435262,91080704.6473139,28186614.07570998,0.0 + 04/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34280055.96192939,0.0,25588466.840620728,0.0,16836233.285306153,0.0,19621984.133082145,7685.251509223035,7564.937463163894,7574.685657222298,9118.25755160779,114995275.85238128,96326740.22093842,28186614.07570998,0.0 + 04/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28553221.400303388,0.0,21780465.71617002,0.0,16028197.206454777,0.0,18060005.86064478,12815.794811422056,12615.161152865083,12631.417075613283,15205.451334789068,191764167.74888218,84421890.18357297,28186614.07570998,0.0 + 04/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19681245.86510226,0.0,14235098.69172615,0.0,13784413.093489729,0.0,14579448.191948506,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,62280205.84226665,35233267.594637479,0.0 + 04/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11957248.710469503,0.0,7421357.913627816,0.0,9718410.887102941,0.0,9432148.951748725,17964.03750579884,17682.807147457668,17705.593249313773,21313.64477116192,268797897.62543597,38529166.462948989,14093307.03785499,0.0 + 04/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,17255890.522930273,0.0,12606427.64496378,0.0,17976292.48623117,0.0,18654211.52276052,17987.23216211223,17705.638687099516,17728.454209724816,21341.164345483296,269144961.8559115,66492822.17688574,63419881.67034747,0.0 + 04/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,29521624.375799754,0.0,24076011.5734846,0.0,32287428.284640165,0.0,34935642.41531807,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,120820706.6492426,63419881.67034747,69761869.8373822 + 04/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,24719706.894004458,0.0,19785452.339493947,0.0,28607394.663913713,0.0,30337221.597802655,10291.962789856376,10130.840192417414,10143.894814038704,12211.02098179241,153999787.60117764,103449775.49521476,49326574.63249246,69761869.8373822 + 04/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17452358.4734597,0.0,13093632.628350545,0.0,22704513.304814444,0.0,22955989.946064395,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,76206494.35268907,35233267.594637479,69761869.8373822 + 04/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12914587.570156709,0.0,8799998.409062649,0.0,19053683.677560007,0.0,18357898.277267297,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,59126167.934046659,35233267.594637479,62010550.96656194 + 04/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,7254749.104739491,0.0,2316042.6914950378,0.0,13936764.939809565,0.0,12271384.152143464,2577.823628621243,2537.4673188226549,2540.7371044568628,3058.489333781736,38572262.58845699,35778940.88818756,35233267.594637479,46507913.22492146 + 04/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,3358355.9221577246,0.0,302964.8268712572,2578.9401735140979,2538.5663839969208,2541.837585888785,3059.8140716759696,38588969.57427278,3661320.7490289818,21139960.556782485,23253956.61246073 + 04/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 + 04/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 + 04/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 04/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 + 04/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0324579201172,1270.8211039495109,1272.4586866519633,1531.7607295835915,19317862.72117866,0.0,14093307.03785499,0.0 + 04/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1246129.6174859326,0.0,1792402.5423647676,0.0,12207092.971809719,0.0,7135674.184929026,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,22381299.316589446,14093307.03785499,15502637.741640486 + 04/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44217039.94136936,0.0,39071733.94352313,0.0,39811560.90980709,0.0,43445588.48301547,20566.188872141847,20244.221348729723,20270.308094222277,24400.99803710369,307734178.86791118,166545923.2777151,56373228.15141996,38756594.35410121 + 04/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,61740233.55649157,0.0,47410242.57867043,0.0,42580814.87020477,0.0,50020858.322863858,17964.03750579884,17682.807147457668,17705.593249313773,21313.64477116192,268797897.62543597,201752149.32823063,56373228.15141996,38756594.35410121 + 04/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55995311.27928908,0.0,33383994.95993492,0.0,24642743.910377344,0.0,29248032.12510447,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,143270082.2747058,28186614.07570998,0.0 + 04/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61056298.77405704,0.0,34803102.026123698,0.0,23573104.71632147,0.0,28772077.746178304,10203.169913642207,10043.437385244672,10056.3793794279,12105.671623596756,152671169.88688154,148204583.2626805,28186614.07570998,0.0 + 04/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39745423.80067201,0.0,27884210.88242949,0.0,19589257.262878576,0.0,23675310.8645292,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,110894202.81050927,28186614.07570998,0.0 + 04/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26571901.801335914,0.0,19670459.038849895,0.0,16102381.549054316,0.0,17611987.041421337,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,79956729.43066146,28186614.07570998,0.0 + 04/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12265092.298404664,0.0,5575929.971171491,0.0,8136451.744519097,0.0,6235020.075831479,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,32212494.089926728,28186614.07570998,0.0 + 04/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10613883.629910343,0.0,3627214.8194329475,0.0,5724116.185773345,0.0,3111045.7347000709,7707.617967390303,7586.953770256096,7596.730334573344,9144.794500443058,115329947.66158608,23076260.36981671,28186614.07570998,0.0 + 04/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,664709.159887041,0.0,0.0,0.0,440601.2383261533,0.0,0.0,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,1105310.3982131943,28186614.07570998,0.0 + 04/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,375862.4184730257,0.0,0.0,0.0,0.0,0.0,12863.162024167677,12661.786823058826,12678.102827742052,15261.650724594077,192848791.0568985,0.0,35233267.594637479,0.0 + 04/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2668020.980104562,0.0,7983543.26531896,0.0,0.0,0.0,346160.8120836404,0.0,17998.080338354543,17716.31703311903,17739.146315883096,21354.035292494456,280305009.3849712,0.0,14093307.03785499,0.0 + 04/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,1189579.501083967,0.0,0.0,0.0,0.0,0.0,18036.440738195713,17754.076893744557,17776.95483394311,21399.54844259952,271070854.7716224,0.0,63419881.67034747,0.0 + 04/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,16474843.95717867,0.0,6548110.236126555,10313.563994450264,10152.103226123683,10165.185247334177,12236.649986474386,154323008.83577705,23022954.193305229,63419881.67034747,69761869.8373822 + 04/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,0.0,0.0,0.0,12978719.809092239,0.0,6563826.121416551,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,19542545.930508794,49326574.63249246,69761869.8373822 + 04/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,8104165.260292865,0.0,609308.7258203969,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,8713473.986113262,35233267.594637479,69761869.8373822 + 04/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2440633.195871709,0.0,0.0,5202926.368847955,0.0,0.0,5161.909022321121,5081.0983736235079,5087.64588749485,6124.408012803005,79678853.86234465,5202926.368847955,35233267.594637479,62010550.96656194 + 04/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,6500035.668999957,0.0,0.0,420402.4293039277,0.0,0.0,2581.412408442436,2540.999915626261,2544.2742533720149,3062.7472840474345,45125997.570357289,420402.4293039277,35233267.594637479,46507913.22492146 + 04/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,9557596.369818878,0.0,14139857.750842695,0.0,0.0,0.0,0.0,0.0,2581.412408442436,2540.999915626261,2544.2742533720149,3062.7472840474345,62323416.022018898,0.0,21139960.556782485,23253956.61246073 + 04/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 04/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 + 04/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19328052.497917829,0.0,14093307.03785499,0.0 + 04/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,446574.50591163369,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19774627.00382946,0.0,14093307.03785499,0.0 + 04/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,167619.64518207828,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19487041.05225249,0.0,14093307.03785499,0.0 + 04/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,15502637.741640486 + 04/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,5834159.756469125,0.0,9102564.273695026,0.0,0.0,0.0,984426.0983611927,0.0,5159.459548313522,5078.687246588446,5085.231653476505,6121.501805395159,93122719.04211042,0.0,56373228.15141996,38756594.35410121 + 04/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,3706925.785317924,0.0,5569406.3635125,0.0,0.0,0.0,3197341.0457145196,0.0,12881.628723732729,12679.964422997225,12696.303851373325,15283.560758710752,205222921.11907546,0.0,56373228.15141996,38756594.35410121 + 04/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12866.722465640838,12665.291525156525,12681.612046006121,15265.875052491576,192526203.9214622,0.0,28186614.07570998,0.0 + 04/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6796009.812812375,0.0,0.0,0.0,0.0,0.0,0.0,12815.794811422056,12615.161152865083,12631.417075613283,15205.451334789068,191764167.74888218,6796009.812812375,28186614.07570998,0.0 + 04/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18871391.930972455,0.0,5291175.602059171,0.0,4300613.008104604,0.0,2484559.134026148,7685.251509223035,7564.937463163894,7574.685657222298,9118.25755160779,114995275.85238128,30947739.67516237,28186614.07570998,0.0 + 04/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26813280.912197643,0.0,14987743.805703264,0.0,9543531.62476058,0.0,11032961.917207944,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,62377518.25986943,28186614.07570998,0.0 + 04/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33985740.39208263,0.0,20671993.19456831,0.0,14421928.76092602,0.0,17271749.681088557,7673.405499563991,7553.276904995933,7563.010073234968,9104.202713337321,114818022.68807598,86351412.02866553,28186614.07570998,0.0 + 04/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32726833.475239185,0.0,24290162.02547911,0.0,17166560.369120897,0.0,20192450.275240117,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,94376006.14507932,28186614.07570998,0.0 + 04/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25160324.687193358,0.0,19836004.88459007,0.0,15508899.514219489,0.0,17214794.376611186,17942.11273599088,17661.225614011113,17683.983905858593,21287.63186870469,268469834.848435,77720023.4626141,28186614.07570998,0.0 + 04/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9131636.421046518,0.0,4998861.695208591,0.0,8704778.185069867,0.0,7282074.37745093,23108.102997067577,22746.341333836128,22775.652316315573,27416.882115500728,345769123.545792,30117350.678775908,35233267.594637479,0.0 + 04/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,291054.91445201079,0.0,0.0,18023.00247210993,17740.84900622126,17763.70990093659,21383.604452858894,269680196.995656,291054.91445201079,14093307.03785499,0.0 + 04/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,8411996.793931753,0.0,2903393.8739317415,18008.426833834747,17726.501552282356,17749.343958838872,21366.311014431703,269462100.09379568,11315390.667863494,63419881.67034747,0.0 + 04/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,3477170.3819099755,0.0,0.0,0.0,17049441.772084636,0.0,12526933.953934687,15520.665454345415,15277.686541280355,15297.373399749846,18414.677101357585,232237448.98823954,33053546.107929298,63419881.67034747,69761869.8373822 + 04/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,5499180.368658056,0.0,0.0,1197572.626541298,0.0,0.0,12932.333272844795,12729.87518293402,12746.27892641858,15343.719770720589,199007126.1191628,1197572.626541298,49326574.63249246,69761869.8373822 + 04/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11730334.651048612,0.0,18996606.426857816,0.0,0.0,0.0,1295260.5770007563,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,186806593.44403745,0.0,35233267.594637479,69761869.8373822 + 04/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17829693.993893614,0.0,25162014.108883807,0.0,0.0,0.0,10451678.61352586,0.0,7757.472010683286,7636.027339201064,7645.867139820733,9203.944419764355,169519305.99039326,0.0,35233267.594637479,62010550.96656194 + 04/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25063275.859004454,0.0,32706498.911568628,0.0,6109746.643469742,0.0,18080709.546734938,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,159320090.09973333,0.0,35233267.594637479,46507913.22492146 + 04/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,34772358.64475362,0.0,42146404.72962309,0.0,16172948.907194516,0.0,29299668.996367188,0.0,2584.4576936539044,2543.997526329646,2547.2757268027514,3066.360398705158,161062910.12170766,0.0,21139960.556782485,23253956.61246073 + 04/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,729282.9333421191,0.0,4244145.02511311,0.0,0.0,0.0,0.0,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,24308056.09489534,0.0,14093307.03785499,0.0 + 04/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21612604.138859754,0.0,29167876.21255039,0.0,3130392.6864516369,0.0,12061536.807654214,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915205,85300839.93561834,0.0,14093307.03785499,0.0 + 04/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25708509.00730874,0.0,31798191.886784145,0.0,9678320.37225997,0.0,20544134.89032933,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,107054866.16289699,0.0,14093307.03785499,0.0 + 04/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25449820.218944469,0.0,30957531.398368978,0.0,11003537.425558566,0.0,20895501.844569439,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,107632100.89365626,0.0,14093307.03785499,0.0 + 04/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26379191.233921775,0.0,32144828.26756053,0.0,12263507.896853213,0.0,22420735.62598384,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,112535350.26459119,0.0,14093307.03785499,0.0 + 04/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20332623.68526112,0.0,25733426.716644415,0.0,7835388.701282141,0.0,16301483.308477804,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,89541888.84301195,0.0,14093307.03785499,15502637.741640486 + 04/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21367963.9166441,0.0,27891543.355813475,0.0,13662237.890155424,0.0,21184282.972732136,0.0,1292.69588468862,1272.4584894616406,1274.0981821024498,1533.7343219475166,103448780.89686597,0.0,56373228.15141996,38756594.35410121 + 04/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,28635696.344204785,0.0,36444481.43111753,0.0,22818268.207663306,0.0,32546685.431663064,0.0,5172.520676985971,5091.5439008549769,5098.104874854311,6136.9983359910879,197842135.45391954,0.0,56373228.15141996,38756594.35410121 + 04/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18379837.911610348,0.0,27010657.431852469,0.0,16487402.498882682,0.0,24815310.861120255,0.0,7760.35834873224,7638.868491089416,7648.711952823284,9207.368949681142,202812316.57583965,0.0,28186614.07570998,0.0 + 04/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13062809.877350368,0.0,22164059.567870119,0.0,13706296.128167578,0.0,20930306.61178671,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,185986500.94715173,0.0,28186614.07570998,0.0 + 04/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15542314.386215436,0.0,21533003.982231596,0.0,12518653.677542793,0.0,19575961.435026338,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,146582416.47709603,0.0,28186614.07570998,0.0 + 04/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12368076.532624634,0.0,17692055.905886864,0.0,10190491.448446457,0.0,16413184.551699846,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,134072907.24778793,0.0,28186614.07570998,0.0 + 04/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8541727.918106813,0.0,14386578.645558365,0.0,7655492.591306547,0.0,13016823.640811313,0.0,7757.96038905313,7636.508071916422,7646.348492009262,9204.523862057627,159683849.72991423,0.0,28186614.07570998,0.0 + 04/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1661074.5621810726,0.0,654452.7851739549,0.0,3080404.2133109245,0.0,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,160113411.30926086,0.0,28186614.07570998,0.0 + 04/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,6512837.094204524,0.0,2208435.3300343847,0.0,5971524.633410737,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,208079565.29713685,0.0,28186614.07570998,0.0 + 04/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4485881.209832898,0.0,9127826.012074683,0.0,2140981.583112318,0.0,6201946.021064313,0.0,15509.890331505097,15267.080104998198,15286.753295991964,18401.892829419274,254032854.44897659,0.0,35233267.594637479,0.0 + 04/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8375328.94697148,0.0,13040167.72494677,0.0,3851700.214864055,0.0,8630727.715229782,0.0,18099.10389419562,17815.75904634749,17838.716470295436,21473.895885193695,304716835.6677281,0.0,14093307.03785499,0.0 + 04/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,1890213.7921238724,0.0,6661874.957345447,0.0,0.0,0.0,0.0,0.0,10342.773325140062,10180.855279292538,10193.974350458202,12271.305742349134,163312160.0595331,0.0,63419881.67034747,0.0 + 04/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,4307834.788624999,0.0,0.0,7759.15038350508,7637.679436783233,7647.521366299263,9205.935745049985,116101032.95389521,4307834.788624999,63419881.67034747,69761869.8373822 + 04/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,1239902.6233894723,0.0,0.0,3921057.1652257258,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,78642550.21100445,3921057.1652257258,49326574.63249246,69761869.8373822 + 04/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,928060.8995618505,0.0,9366938.007818897,0.0,0.0,400073.973281244,0.0,0.0,5173.019507611572,5092.034922194079,5098.596528924525,6137.590179486829,87699467.00496197,400073.973281244,35233267.594637479,69761869.8373822 + 04/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10058193.518314042,0.0,16871162.47121543,0.0,0.0,0.0,20461.109816606036,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,104364040.50767873,0.0,35233267.594637479,62010550.96656194 + 04/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,16851196.566290067,0.0,23729771.616777444,0.0,0.0,0.0,10834983.23103487,0.0,5173.626478327107,5092.632390669831,5099.194767299391,6138.3103270713149,128829501.6822259,0.0,35233267.594637479,46507913.22492146 + 04/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,27008668.642814835,0.0,33788482.31177642,0.0,9791199.930316743,0.0,21860866.996998129,0.0,2586.6313344745228,2546.1371383977254,2549.4180959793659,3068.93934056585,131153271.15580899,0.0,21139960.556782485,23253956.61246073 + 04/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3294864.198645151,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,22645178.857403555,0.0,14093307.03785499,0.0 + 04/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13131278.94636903,0.0,19847064.342349307,0.0,0.0,0.0,4094974.585987149,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,56420026.47106953,0.0,14093307.03785499,0.0 + 04/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17849175.744107274,0.0,22793234.470112657,0.0,3083492.0855247506,0.0,12873152.22412508,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,75943493.27874017,0.0,14093307.03785499,0.0 + 04/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19624764.48540154,0.0,24454358.82794979,0.0,6660529.2320167659,0.0,15040996.599617966,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,85121577.77532846,0.0,14093307.03785499,0.0 + 04/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8980201.535721116,0.0,9294676.748734814,0.0,371970.81729689377,0.0,3397786.2990537949,0.0,1292.6360841179099,1272.3996250800208,1274.039241868066,1533.6633708530972,41386493.35971536,0.0,14093307.03785499,0.0 + 04/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,77377755.01948162,0.0,14093307.03785499,15502637.741640486 + 04/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,8839615.84970997,0.0,9286633.308420308,0.0,0.0,0.0,3592085.0249289695,0.0,20690.669885869123,20366.753588965188,20392.99822975589,24548.690008158686,331315136.3489552,0.0,56373228.15141996,38756594.35410121 + 04/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,7484432.388540089,0.0,14915390.947867154,0.0,2777312.710452837,0.0,8173045.2866607219,0.0,18106.73880912745,17823.27443526177,17846.24154355541,21482.954420317692,304283334.48326519,0.0,56373228.15141996,38756594.35410121 + 04/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6602675.804959692,0.0,17115487.916787793,0.0,8273556.29921275,0.0,15486460.027439043,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,241015075.03777705,0.0,28186614.07570998,0.0 + 04/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5968494.206634294,0.0,17743298.69691659,0.0,10006109.096787483,0.0,16511760.476601534,0.0,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,205060683.94668255,0.0,28186614.07570998,0.0 + 04/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,629267.5929263057,0.0,11427792.48583595,0.0,7427888.629802028,0.0,12238144.23321436,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,109123781.57770878,0.0,28186614.07570998,0.0 + 04/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,10327270.90331114,0.0,6649810.549450593,0.0,10679200.37654459,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,105058929.41692132,0.0,28186614.07570998,0.0 + 04/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,9326862.549551879,0.0,5407873.655198602,0.0,9679331.956197555,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,101823166.97007817,0.0,28186614.07570998,0.0 + 04/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,4570279.939732911,0.0,1593291.3734839592,0.0,4536795.415506054,0.0,7757.079993855047,7635.6414594694019,7645.480762843652,9203.479306761852,126770420.21127075,0.0,28186614.07570998,0.0 + 04/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5456489.6225604829,0.0,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,193386768.2394872,5456489.6225604829,28186614.07570998,0.0 + 04/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,797091.369892715,0.0,0.0,0.0,378891.03996804918,0.0,0.0,12931.566881634291,12729.120789720886,12745.523561092792,15342.810476804278,193496478.1533081,1175982.4098607642,35233267.594637479,0.0 + 04/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,5812327.793329844,0.0,0.0,0.0,0.0,0.0,18104.193634288007,17820.76910560924,17843.732985529907,21479.934667525984,276707397.20796117,0.0,14093307.03785499,0.0 + 04/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,395883.426587502,0.0,5070674.81292447,0.0,0.0,0.0,0.0,0.0,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,276420498.4651085,0.0,63419881.67034747,0.0 + 04/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3545453.5005856796,0.0,0.0,1674089.9140107947,0.0,0.0,10344.049616253005,10182.111589830016,10195.232279880034,12272.820013035613,158324622.09698088,1674089.9140107947,63419881.67034747,69761869.8373822 + 04/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,1368211.22483295,0.0,8877573.706383922,0.0,0.0,345389.8620213762,0.0,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,165030176.72034718,345389.8620213762,49326574.63249246,69761869.8373822 + 04/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7094859.2537276479,0.0,13775128.549450215,0.0,0.0,0.0,0.0,0.0,5171.64800712219,5090.68489280071,5097.244759880489,6135.9629465095699,98253933.98590453,0.0,35233267.594637479,69761869.8373822 + 04/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11390998.373860956,0.0,18028392.389859994,0.0,0.0,0.0,4118802.1075716859,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,110912644.98966405,0.0,35233267.594637479,62010550.96656194 + 04/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17680259.663141535,0.0,24322470.708280855,0.0,166894.59451155558,0.0,11740432.279916384,0.0,2584.1493316585417,2543.6939917988458,2546.9718011367265,3065.994538968561,92576972.03467596,0.0,35233267.594637479,46507913.22492146 + 04/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,28726252.302047254,0.0,35354896.51372009,0.0,12629960.588251325,0.0,24153510.17277958,0.0,2582.7318516449929,2542.2987026993398,2545.574714064802,3064.312753041024,139510324.4540188,0.0,21139960.556782485,23253956.61246073 + 04/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3098681.2541119179,0.0,0.0,0.0,0.0,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,22403364.715477446,0.0,14093307.03785499,0.0 + 04/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19014132.74322721,0.0,26447105.304785547,0.0,2086560.3240215574,0.0,10464480.241718932,0.0,1289.094955332669,1268.9139333265098,1270.5490584449536,1529.461956722605,77301150.2675295,0.0,14093307.03785499,0.0 + 04/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25758578.24431863,0.0,31570190.52810982,0.0,10656864.608288143,0.0,21068732.180014817,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,108322847.25580698,0.0,14093307.03785499,0.0 + 04/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27941931.573433363,0.0,33677332.12837624,0.0,13123546.09807655,0.0,23782121.48882533,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,117788509.26514967,0.0,14093307.03785499,0.0 + 04/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10622376.004454472,0.0,9209216.682115052,0.0,918155.398091086,0.0,4139799.394059806,0.0,1288.5119921743095,1268.340096565146,1269.9744822363526,1528.770293188283,44169696.18971113,0.0,14093307.03785499,0.0 + 04/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,77273234.18636205,0.0,14093307.03785499,15502637.741640486 + 04/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,8902818.0995396,0.0,8740929.697315608,0.0,0.0,0.0,4312222.507929211,0.0,20680.152981732364,20356.40132892462,20382.632629771626,24536.212102855337,331395406.8606067,0.0,56373228.15141996,38756594.35410121 + 04/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,15115785.243501896,0.0,0.0,0.0,7316194.375170604,0.0,823153.1469529467,18104.33615013548,17820.909390344535,17843.873451036405,21480.103757138848,270897201.895159,23255132.765625448,56373228.15141996,38756594.35410121 + 04/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23924252.706351963,0.0,0.0,0.0,0.0,0.0,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,193538528.73256899,23924252.706351963,28186614.07570998,0.0 + 04/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35774587.63707755,0.0,0.0,0.0,0.0,0.0,0.0,10346.039015223145,10184.069844388157,10197.19305784905,12275.180358973657,154808936.19516246,35774587.63707755,28186614.07570998,0.0 + 04/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43062619.89597479,0.0,0.0,0.0,0.0,0.0,0.0,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,43062619.89597479,28186614.07570998,0.0 + 04/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51600102.00803165,0.0,0.0,0.0,0.0,0.0,0.0,5167.549388277915,5086.650438599038,5093.20510687279,6131.100091704735,77322618.09163612,51600102.00803165,28186614.07570998,0.0 + 04/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57363964.24829754,0.0,12292449.252387438,0.0,10459247.515424332,0.0,10536265.3956539,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,90651926.4117632,28186614.07570998,0.0 + 04/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56413515.50784221,0.0,22387174.861487338,0.0,20896147.65500115,0.0,22356521.24859524,7744.903474527883,7623.655565823832,7633.479424150745,9189.03233138649,115887854.86520022,122053359.27292595,28186614.07570998,0.0 + 04/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48677446.198309209,0.0,27074178.807125886,0.0,28889364.470477377,0.0,29407083.008007979,12898.648870783803,12696.718116471113,12713.079133691264,15303.754513487898,193003922.2839627,134048072.48392044,28186614.07570998,0.0 + 04/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,40429049.37274935,0.0,28760808.991079064,0.0,33728936.83400964,0.0,33992508.218362528,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,136911303.41620059,35233267.594637479,0.0 + 04/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29422822.518979946,0.0,19943058.882321009,0.0,27951553.441180499,0.0,29240382.296747045,18074.45441088164,17791.49545529315,17814.421613127484,21444.65021417028,270450078.0965012,106557817.1392285,14093307.03785499,0.0 + 04/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21942984.861344235,0.0,12780805.692974657,0.0,23499519.405713075,0.0,23351204.179232658,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,270755589.560041,81574514.13926463,63419881.67034747,0.0 + 04/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21342714.789702566,0.0,10517100.746655314,0.0,25639116.258117707,0.0,24278322.776844458,10343.574380486538,10181.64379396813,10194.763881215431,12272.256163939564,154772057.59059478,81777254.57132004,63419881.67034747,69761869.8373822 + 04/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,14508144.15022052,0.0,4855588.66914735,0.0,19892454.064561305,0.0,17426435.083812037,10346.039015223145,10184.069844388157,10197.19305784905,12275.180358973657,154808936.19516246,56682621.96774121,49326574.63249246,69761869.8373822 + 04/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,7190467.466079532,0.0,41096.981549751945,0.0,13807384.978403952,0.0,9968578.946606158,5173.697994071408,5092.702786821814,5099.265254164,6138.395177772003,77414620.36618522,31007528.372639397,35233267.594637479,69761869.8373822 + 04/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1207763.8622544674,0.0,0.0,0.0,8684244.38755319,0.0,3655332.6746997844,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,77410699.60198786,13547340.924507443,35233267.594637479,62010550.96656194 + 04/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,7612801.039555388,0.0,0.0,780177.1537153372,0.0,0.0,2585.722872690404,2545.242898752311,2548.5227040148949,3067.861485337112,46303260.898416388,780177.1537153372,35233267.594637479,46507913.22492146 + 05/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,19114335.825214376,0.0,30496604.727057648,0.0,1906565.2412776778,0.0,12676060.605887598,0.0,2583.9882438566935,2543.5354258565864,2546.813030866066,3065.8034144407677,102858070.8135097,0.0,21139960.556782485,23253956.61246073 + 05/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2629476.9564703789,0.0,0.0,0.0,0.0,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,21947785.503060894,0.0,14093307.03785499,0.0 + 05/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15009648.645541843,0.0,25256045.491848075,0.0,0.0,0.0,7302826.796463285,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,66876816.02155842,0.0,14093307.03785499,0.0 + 05/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22241388.838933566,0.0,29467586.214133506,0.0,3937845.7535358446,0.0,17384511.202504439,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,92336015.47047287,0.0,14093307.03785499,0.0 + 05/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23612389.89173051,0.0,30172167.17555352,0.0,9042903.34813733,0.0,19587256.984280185,0.0,1290.0275642831569,1269.8319421098998,1271.46825017636,1530.5684616424867,101717543.7852644,0.0,14093307.03785499,0.0 + 05/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19454623.764977017,0.0,23888695.29944596,0.0,7363931.536478398,0.0,16042546.814817604,0.0,1290.0275642831569,1269.8319421098998,1271.46825017636,1530.5684616424867,86052623.80128184,0.0,14093307.03785499,0.0 + 05/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4825252.066633416,0.0,7290116.730597597,0.0,188729.12627097395,0.0,2723446.21270778,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,92375009.0955837,0.0,14093307.03785499,15502637.741640486 + 05/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12635037.82131255,0.0,12949652.979957998,0.0,9381057.624294199,0.0,13800303.85770975,0.0,20691.220063831403,20367.29515378883,20393.540492441087,24549.34277330935,358371086.82340899,0.0,56373228.15141996,38756594.35410121 + 05/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,4476161.731872403,1592141.116416478,0.0,0.0,369371.9579578638,0.0,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,272544836.12757316,4845533.689830267,56373228.15141996,38756594.35410121 + 05/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2955542.9399939917,0.0,0.0,0.0,0.0,0.0,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,193537639.29368336,2955542.9399939917,28186614.07570998,0.0 + 05/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8704567.31136912,0.0,0.0,0.0,0.0,2228066.0639568089,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,157011003.67967043,8704567.31136912,28186614.07570998,0.0 + 05/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8945069.903334765,1347019.7640931989,0.0,89159.26656363005,0.0,5368666.283946857,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,84216338.77135527,8945069.903334765,28186614.07570998,0.0 + 05/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6418272.990812327,945087.047364129,0.0,749829.3082761377,0.0,3163783.388413219,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,82232189.36113432,6418272.990812327,28186614.07570998,0.0 + 05/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10565866.53659996,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,10565866.53659996,28186614.07570998,0.0 + 05/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9295839.771667857,0.0,0.0,0.0,0.0,0.0,0.0,7758.226127742089,7636.769650416631,7646.610407580069,9204.839150868207,116087203.2117852,9295839.771667857,28186614.07570998,0.0 + 05/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4404819.72201605,0.0,0.0,0.0,0.0,0.0,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,193478672.01964198,4404819.72201605,28186614.07570998,0.0 + 05/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,914893.4349189538,0.0,0.0,0.0,0.0,0.0,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,193478672.01964198,914893.4349189538,35233267.594637479,0.0 + 05/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1689346.6979115329,0.0,0.0,0.0,0.0,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,272559487.5254103,0.0,14093307.03785499,0.0 + 05/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,122777.23673275032,0.0,0.0,0.0,0.0,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,271075472.2478894,0.0,63419881.67034747,0.0 + 05/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,9202209.6172258,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,154818944.6569968,9202209.6172258,63419881.67034747,69761869.8373822 + 05/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,0.0,0.0,0.0,6321364.515205932,0.0,1094981.0599231977,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,154829515.9915022,7416345.575129129,49326574.63249246,69761869.8373822 + 05/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,4487981.561464459,0.0,0.0,2647870.329919139,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,81897453.88996285,2647870.329919139,35233267.594637479,69761869.8373822 + 05/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,1508169.0491411458,0.0,10720871.448621396,0.0,0.0,0.0,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,89600051.5438458,0.0,35233267.594637479,62010550.96656194 + 05/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9077536.551516073,0.0,16440940.387079528,0.0,0.0,0.0,2288958.880995112,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,66492941.342632349,0.0,35233267.594637479,46507913.22492146 + 05/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,19224806.021080309,0.0,26373185.541560577,0.0,4081066.780665494,0.0,15354929.592366148,0.0,2584.6049648886298,2544.142492005719,2547.4208792818938,3066.535130403471,103707720.4153595,0.0,21139960.556782485,23253956.61246073 + 05/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.69588468862,1272.4584894616406,1274.09818210245,1533.7343219475166,19342752.761520819,0.0,14093307.03785499,0.0 + 05/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3053762.1723234679,0.0,12022742.407229238,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,34407517.165426988,0.0,14093307.03785499,0.0 + 05/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11800506.188141646,0.0,17210965.46264931,0.0,0.0,0.0,5275470.770878839,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,53617955.007544089,0.0,14093307.03785499,0.0 + 05/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18772310.64515115,0.0,25142825.715972134,0.0,4104571.4519147837,0.0,14649934.528611375,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,81992494.78025973,0.0,14093307.03785499,0.0 + 05/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20496844.580805165,0.0,26647798.641396718,0.0,7498708.544635138,0.0,17109734.08728056,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,91075938.29272788,0.0,14093307.03785499,0.0 + 05/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11520194.289354047,0.0,16202857.380860173,0.0,2794969.447361413,0.0,9317255.547593706,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,117159327.00866649,0.0,14093307.03785499,15502637.741640486 + 05/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14367952.144720085,0.0,17856558.11671341,0.0,13396596.249085593,0.0,16327575.215344472,0.0,20687.364114619122,20363.499570180807,20389.74001783617,24544.767836759613,371496019.26768818,0.0,56373228.15141996,38756594.35410121 + 05/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,22030545.128426207,0.0,28030610.71515729,0.0,15304463.941530146,0.0,26558460.28724217,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.280507265226,362722618.7336472,0.0,56373228.15141996,38756594.35410121 + 05/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17660045.76791923,0.0,23366451.30238936,0.0,16154343.125545079,0.0,24086266.975523265,0.0,12929.602571636953,12727.187231363,12743.587511147607,15340.47989797476,274734193.1350173,0.0,28186614.07570998,0.0 + 05/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14027083.18884053,0.0,19413520.438405776,0.0,14063341.404620909,0.0,21202847.322923539,0.0,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,223480461.12570305,0.0,28186614.07570998,0.0 + 05/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10526741.978542697,0.0,15720831.965446465,0.0,11758795.995194672,0.0,17850647.94225056,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,133266490.20993279,0.0,28186614.07570998,0.0 + 05/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16452336.601494112,0.0,23014846.159568166,0.0,13303219.427645196,0.0,21611435.511736618,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,151791310.0289425,0.0,28186614.07570998,0.0 + 05/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24889405.37893139,0.0,32363618.18348038,0.0,16832643.865152554,0.0,27530089.618168,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,179025229.37423069,0.0,28186614.07570998,0.0 + 05/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22586047.45203506,0.0,29199516.47299484,0.0,16410554.371766888,0.0,26131739.34097868,0.0,7760.03091819748,7638.546186540759,7648.38923295232,9206.98046585044,210442066.13052307,0.0,28186614.07570998,0.0 + 05/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19863731.845163455,0.0,25395891.435808608,0.0,13841477.903102119,0.0,22475074.26542227,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,275113814.7431798,0.0,28186614.07570998,0.0 + 05/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11635917.698351331,0.0,15529883.332829033,0.0,3785102.6056300268,0.0,9949975.841073279,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,234438518.771567,0.0,35233267.594637479,0.0 + 05/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11867498.148916785,0.0,14455931.68612599,0.0,2202722.246818265,0.0,7190663.258422076,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,306669510.3514398,0.0,14093307.03785499,0.0 + 05/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,9435349.501729515,0.0,12728287.749346996,0.0,0.0,0.0,2859316.107163674,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,295974606.343369,0.0,63419881.67034747,0.0 + 05/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,2872571.7636732438,0.0,8754569.570946567,0.0,0.0,0.0,0.0,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,166456657.32612206,0.0,63419881.67034747,69761869.8373822 + 05/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,5433238.492736325,0.0,11171878.137035435,0.0,0.0,0.0,0.0,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,171434632.62127397,0.0,49326574.63249246,69761869.8373822 + 05/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9517911.859796089,0.0,15346951.353946595,0.0,0.0,0.0,560750.6031645347,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,102835086.1454056,0.0,35233267.594637479,69761869.8373822 + 05/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12905871.775950149,0.0,18867742.810041775,0.0,0.0,0.0,5953189.069283698,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,115128062.29030922,0.0,35233267.594637479,62010550.96656194 + 05/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18761298.655176537,0.0,24911286.36199261,0.0,1771004.0163951549,0.0,12380186.464870569,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,96509281.0214765,0.0,35233267.594637479,46507913.22492146 + 05/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,27848751.347212588,0.0,34009710.985560979,0.0,11699663.212990955,0.0,22986029.69799266,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,135229660.7667988,0.0,21139960.556782485,23253956.61246073 + 05/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3314515.919884352,0.0,0.0,0.0,0.0,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,22651382.159727839,0.0,14093307.03785499,0.0 + 05/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18795177.161503957,0.0,26528396.85257001,0.0,0.0,0.0,9659503.913583372,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,74319944.16750081,0.0,14093307.03785499,0.0 + 05/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24008277.762086229,0.0,30239393.85693356,0.0,6790133.7651530769,0.0,18587442.049321489,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,98962113.67333783,0.0,14093307.03785499,0.0 + 05/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27918333.072647185,0.0,34268276.9348436,0.0,11835931.45142614,0.0,23026422.156049454,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,116364071.37602146,0.0,14093307.03785499,0.0 + 05/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29928801.08837663,0.0,36379528.66956176,0.0,14459404.275917836,0.0,25975300.46058678,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,126047717.95580852,0.0,14093307.03785499,0.0 + 05/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25191610.62796875,0.0,31624541.257005738,0.0,11379193.852032502,0.0,21757665.670165786,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,167213442.45139314,0.0,14093307.03785499,15502637.741640486 + 05/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,35180662.20762259,0.0,41561395.54889638,0.0,23611933.356861514,0.0,35021583.90049868,0.0,20653.57345802728,20330.23791262154,20356.4354992362,24504.67651258205,444417299.1907606,0.0,56373228.15141996,38756594.35410121 + 05/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,47143165.96322895,0.0,54683326.50258915,0.0,32815748.58126071,0.0,47696719.02255398,0.0,18086.757874954284,17803.606306340524,17826.54807024257,21459.247804640374,452973136.2718727,0.0,56373228.15141996,38756594.35410121 + 05/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41095308.294290248,0.0,48120130.758232507,0.0,29515238.071061408,0.0,42859140.54556242,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,355017345.28435477,0.0,28186614.07570998,0.0 + 05/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29043791.197445647,0.0,36122000.372796628,0.0,23508526.512848569,0.0,34208774.864298928,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,277685610.217457,0.0,28186614.07570998,0.0 + 05/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16229948.64936556,0.0,25051164.97638499,0.0,18691415.38602569,0.0,27002664.33036356,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,164376451.97717343,0.0,28186614.07570998,0.0 + 05/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26584127.707211805,0.0,33575332.20439015,0.0,20559534.382736718,0.0,30643193.982028169,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,188763446.91140045,0.0,28186614.07570998,0.0 + 05/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28865863.51308319,0.0,36142123.26009776,0.0,21120760.253902675,0.0,32185752.329458685,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,195701333.74199847,0.0,28186614.07570998,0.0 + 05/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32003492.86927797,0.0,39262092.12123325,0.0,22670827.869850629,0.0,34420374.90494873,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,244413304.3344355,0.0,28186614.07570998,0.0 + 05/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36175437.974495727,0.0,43605438.75562063,0.0,24782512.54112997,0.0,37652249.27701646,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,335584300.9466976,0.0,28186614.07570998,0.0 + 05/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42416321.19881289,0.0,50368977.0641411,0.0,27082100.10640252,0.0,41483632.07465033,0.0,12919.11276782449,12716.861647386091,12733.248621601833,15328.034146171698,354661156.30274966,0.0,35233267.594637479,0.0 + 05/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50449799.14538517,0.0,58698340.83724255,0.0,32262729.089240675,0.0,48432215.261944647,0.0,18079.122961514946,17796.09091889537,17819.02299845361,21450.189271287163,460363018.474357,0.0,14093307.03785499,0.0 + 05/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,40274119.744864787,0.0,49067915.29321042,0.0,20483061.32708295,0.0,34775552.954658489,0.0,18071.876775773868,17788.958173543844,17811.88106183167,21441.59194850929,415012157.9745878,0.0,63419881.67034747,0.0 + 05/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,28002332.914854364,0.0,37222990.73389323,0.0,7579727.602288713,0.0,19475392.782658794,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,246801306.12213586,0.0,63419881.67034747,69761869.8373822 + 05/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,32141518.498085109,0.0,41462275.325247008,0.0,10968237.40907789,0.0,23905692.235841037,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,262915191.15917529,0.0,49326574.63249246,69761869.8373822 + 05/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37297069.241991449,0.0,46879680.86171171,0.0,15094801.212017045,0.0,29378566.61455983,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,205822234.34150655,0.0,35233267.594637479,69761869.8373822 + 05/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40182687.69931506,0.0,49909111.71201156,0.0,17406111.065032979,0.0,32435097.69819093,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,217105124.58577708,0.0,35233267.594637479,62010550.96656194 + 05/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,44594013.00007836,0.0,54383830.6235135,0.0,21363450.27738095,0.0,37399547.642977248,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,196305602.3451053,0.0,35233267.594637479,46507913.22492146 + 05/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,52977339.06637361,0.0,62670670.407018329,0.0,29465862.405890503,0.0,47237991.568481158,0.0,2577.3222765286884,2536.9738154906365,2540.24296519543,3057.8944986617059,230916624.24891884,0.0,21139960.556782485,23253956.61246073 + 05/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13377459.194670629,0.0,21945310.686740739,0.0,0.0,0.0,5332353.770578321,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,59937504.05256732,0.0,14093307.03785499,0.0 + 05/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37476791.877839509,0.0,45861449.40206386,0.0,14833150.755924184,0.0,30935371.56735372,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,148389144.00375889,0.0,14093307.03785499,0.0 + 05/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37954024.68273866,0.0,45716033.8150452,0.0,18609972.448930496,0.0,32605100.866161549,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,154178160.91568256,0.0,14093307.03785499,0.0 + 05/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37754072.81335791,0.0,45225554.697842609,0.0,19236675.24511276,0.0,32785430.382982848,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,154294762.24210275,0.0,14093307.03785499,0.0 + 05/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35727922.056701708,0.0,42836313.87414043,0.0,18707140.991469519,0.0,31478478.414673948,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,148054538.7983511,0.0,14093307.03785499,0.0 + 05/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29539419.61441715,0.0,36330054.65354639,0.0,14551337.91718917,0.0,25790224.796488577,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,125515720.44300682,0.0,14093307.03785499,15502637.741640486 + 05/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,42903988.633135799,0.0,50252087.10000271,0.0,27668615.703271569,0.0,42183690.85659426,0.0,5157.491207557575,5076.749720574226,5083.291630762258,6119.166444224414,240180498.70423085,0.0,56373228.15141996,38756594.35410121 + 05/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,50505669.76042419,0.0,58531980.97970075,0.0,35499499.723860267,0.0,50831542.97646277,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,388415528.0541032,0.0,56373228.15141996,38756594.35410121 + 05/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48714314.2175653,0.0,56635739.62279384,0.0,33845681.97431558,0.0,49292826.87728446,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,381535397.30561438,0.0,28186614.07570998,0.0 + 05/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46334580.48351784,0.0,54352876.89779563,0.0,31942648.571123095,0.0,47125173.85443383,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,372906357.4174213,0.0,28186614.07570998,0.0 + 05/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44896044.57960985,0.0,52962709.76995522,0.0,30724794.901875836,0.0,45721839.44581874,0.0,7745.09004676023,7623.839217233076,7633.6633122135749,9189.25369221827,290196035.2635902,0.0,28186614.07570998,0.0 + 05/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45396452.02018435,0.0,53500600.94671172,0.0,30285976.754973797,0.0,45438775.948128107,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,290558920.3016597,0.0,28186614.07570998,0.0 + 05/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47496199.792600188,0.0,55677563.1858125,0.0,30669143.835669038,0.0,46282407.02519519,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,296062428.47093859,0.0,28186614.07570998,0.0 + 05/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42419992.3036578,0.0,50376139.60310219,0.0,28136450.017063168,0.0,42713170.367207508,0.0,7751.467660694694,7630.116988431653,7639.9491729611,9196.82048770302,279631827.8062763,0.0,28186614.07570998,0.0 + 05/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41178365.647779639,0.0,48954443.863715257,0.0,27181931.552002178,0.0,41472926.07994233,0.0,18086.757874954284,17803.606306340524,17826.548070242567,21459.247804640374,429421843.3456793,0.0,28186614.07570998,0.0 + 05/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41842773.95273945,0.0,49585372.64029182,0.0,26202772.42459544,0.0,40492881.28711311,0.0,23261.44468399767,22897.282428051465,22926.787913537042,27598.81617363124,506187392.6219225,0.0,35233267.594637479,0.0 + 05/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47604512.08031313,0.0,55593049.62983711,0.0,29646833.377115236,0.0,45126364.425944607,0.0,18092.234754220408,17808.997444040026,17831.946154973255,21465.745912824295,448686886.8710188,0.0,14093307.03785499,0.0 + 05/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38256741.474779527,0.0,46657030.0813152,0.0,19047247.447401808,0.0,32696847.08700912,0.0,18086.757874954284,17803.606306340524,17826.548070242567,21459.247804640374,407292042.2927456,0.0,63419881.67034747,0.0 + 05/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,27023207.10956047,0.0,35939524.08833834,0.0,6938864.600502364,0.0,18452875.444606835,0.0,15490.18009352046,15247.678434466152,15267.326624427149,18378.50738443654,320135764.37566909,0.0,63419881.67034747,69761869.8373822 + 05/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,30854214.65635867,0.0,39887962.514646958,0.0,10168930.624488268,0.0,22642859.895735288,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,296705045.30178007,0.0,49326574.63249246,69761869.8373822 + 05/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34078274.037847418,0.0,43152920.535783518,0.0,12977756.673465524,0.0,26247540.624953748,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,270977353.96049097,0.0,35233267.594637479,69761869.8373822 + 05/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37036585.663785967,0.0,46272801.30628677,0.0,15357858.184082954,0.0,29402927.686955967,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,243898273.6093048,0.0,35233267.594637479,62010550.96656194 + 05/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41374459.21890921,0.0,50727342.29981953,0.0,19174582.892368527,0.0,34241394.98772775,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,222736513.24428714,0.0,35233267.594637479,46507913.22492146 + 05/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,47702925.353281248,0.0,56595893.18227809,0.0,26212017.779369274,0.0,42275427.359416607,0.0,2580.303349104235,2539.908218818894,2543.1811498018848,3061.431427478056,211395630.59707628,0.0,21139960.556782485,23253956.61246073 + 05/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10298169.359478739,0.0,17542583.811018424,0.0,0.0,0.0,3200188.7780009445,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,50345625.40986362,0.0,14093307.03785499,0.0 + 05/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32436073.41741559,0.0,40268327.854460019,0.0,8518199.100720296,0.0,25176481.369495907,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,125703765.20345733,0.0,14093307.03785499,0.0 + 05/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31362980.60517945,0.0,38047138.62896786,0.0,14466058.489422623,0.0,26336930.61877851,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,129528216.10340356,0.0,14093307.03785499,0.0 + 05/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30570558.397194514,0.0,36675042.88482956,0.0,14770855.290896146,0.0,25906516.84734314,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,127238081.18131845,0.0,14093307.03785499,0.0 + 05/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26500389.1391391,0.0,31030073.514866435,0.0,12226506.034199935,0.0,22080922.725310379,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,111152999.17457095,0.0,14093307.03785499,0.0 + 05/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17521521.586834194,0.0,21589750.78024003,0.0,5425337.47808041,0.0,12957964.596248487,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,76817426.8800134,0.0,14093307.03785499,15502637.741640486 + 05/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,20599332.933735834,0.0,26985797.760035799,0.0,13473342.30312122,0.0,20855167.00487771,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,101250506.24161405,0.0,56373228.15141996,38756594.35410121 + 05/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,28127175.202789796,0.0,35963901.70889704,0.0,22696245.15687248,0.0,32569322.788062507,0.0,5170.78353875448,5089.833957846562,5096.392728409799,6134.937287790066,196727655.9027051,0.0,56373228.15141996,38756594.35410121 + 05/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21865312.53547176,0.0,31035745.195561977,0.0,17837420.16401401,0.0,27880163.042048675,0.0,7760.03091819748,7638.546186540759,7648.38923295232,9206.98046585044,214732849.42984403,0.0,28186614.07570998,0.0 + 05/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11929047.466643814,0.0,23602688.972498284,0.0,14646334.651636739,0.0,23110651.712756445,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,189410859.79716195,0.0,28186614.07570998,0.0 + 05/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8550565.028627849,0.0,19588155.05972012,0.0,13524435.301352254,0.0,20470119.143512925,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,139548330.2506865,0.0,28186614.07570998,0.0 + 05/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6262155.117994105,0.0,14571495.675139552,0.0,9569125.456116308,0.0,15153809.988688922,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,122948055.04579568,0.0,28186614.07570998,0.0 + 05/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6421292.494647139,0.0,12128552.997832716,0.0,6589121.3919162959,0.0,11683304.025425336,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,152854331.85351385,0.0,28186614.07570998,0.0 + 05/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3687707.4404961017,0.0,8744088.668069313,0.0,4406114.703765272,0.0,8602934.00477327,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,180187824.05126564,0.0,28186614.07570998,0.0 + 05/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1895098.4243090645,0.0,211738.15618343358,0.0,2273813.3312617398,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,197767418.15124146,0.0,28186614.07570998,0.0 + 05/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3641163.449083693,0.0,9000780.250275955,0.0,0.0,0.0,4306322.984543073,0.0,15509.081827508919,15266.284258282907,15285.956423746948,18400.9335702903,249012388.57128737,0.0,35233267.594637479,0.0 + 05/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8312098.753926175,0.0,12624756.605839393,0.0,745809.8442506426,0.0,5634027.3400786169,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,298058168.07937696,0.0,14093307.03785499,0.0 + 05/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,303795.72245670718,0.0,2035908.968419261,0.0,0.0,0.0,0.0,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,157086683.92503763,0.0,63419881.67034747,0.0 + 05/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,342209.9813981244,0.0,4087058.8426512198,0.0,0.0,848038.9980469104,0.0,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,120546509.00917669,848038.9980469104,63419881.67034747,69761869.8373822 + 05/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,3340187.2780870387,0.0,9785985.15467567,0.0,0.0,305682.8230308079,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,90540930.42851381,305682.8230308079,49326574.63249246,69761869.8373822 + 05/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9386907.73577069,0.0,15144004.302765064,0.0,0.0,0.0,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,101940384.36703415,0.0,35233267.594637479,69761869.8373822 + 05/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15591036.371014558,0.0,21503197.69183637,0.0,0.0,0.0,7564664.580546187,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,121982948.98689425,0.0,35233267.594637479,62010550.96656194 + 05/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,19246726.21860697,0.0,25059449.13806772,0.0,2468925.538970125,0.0,12386624.383455562,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,136548559.6645565,0.0,35233267.594637479,46507913.22492146 + 05/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,28077086.904852414,0.0,33775061.64769691,0.0,12204284.334771499,0.0,22767634.285994173,0.0,2583.822553564898,2543.3723294772187,2546.6497243203668,3065.60682923434,135486092.34506358,0.0,21139960.556782485,23253956.61246073 + 05/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1368076.957790731,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,20699089.543665016,0.0,14093307.03785499,0.0 + 05/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13916037.822461673,0.0,20624595.03287609,0.0,0.0,0.0,2908385.77481143,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,56771871.06875947,0.0,14093307.03785499,0.0 + 05/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22519866.593486437,0.0,27510574.08979559,0.0,7273466.020380448,0.0,17414649.789883619,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,94000936.8941237,0.0,14093307.03785499,0.0 + 05/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24120122.450643906,0.0,27381710.34664648,0.0,10006208.844530583,0.0,19316732.45740071,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,100093255.79429727,0.0,14093307.03785499,0.0 + 05/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13003773.444253304,0.0,11301112.962552069,0.0,1402456.452239945,0.0,7759699.607069753,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,52760071.56892171,0.0,14093307.03785499,0.0 + 05/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7197479.807993005,0.0,9201978.444199099,0.0,462309.10671378098,0.0,3916287.9934166886,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,98069465.10676372,0.0,14093307.03785499,15502637.741640486 + 05/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13443355.646229228,0.0,13321910.184972303,0.0,10981655.172800197,0.0,15125580.37764185,0.0,20683.13415501792,20359.335831386248,20385.570913639196,24539.749151160264,362356545.5659766,0.0,56373228.15141996,38756594.35410121 + 05/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4374677.948789945,0.0,7084595.318698072,0.0,563610.5976012534,0.0,3823634.358447694,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,286798171.2086658,0.0,56373228.15141996,38756594.35410121 + 05/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5693278.46697681,0.0,0.0,0.0,0.0,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193528733.64187894,5693278.46697681,28186614.07570998,0.0 + 05/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17932454.29140015,0.0,0.0,0.0,0.0,782630.3411518922,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,155565567.9568655,17932454.29140015,28186614.07570998,0.0 + 05/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25106723.901878045,0.0,0.0,0.0,0.0,343772.68851022227,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77671388.34403406,25106723.901878045,28186614.07570998,0.0 + 05/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31458574.31378968,0.0,408991.21891182727,0.0,0.0,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,31867565.532701509,28186614.07570998,0.0 + 05/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30594429.72212643,0.0,8786391.893327296,0.0,0.0,0.0,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,39380821.61545373,28186614.07570998,0.0 + 05/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18217531.844882177,0.0,3840331.9567733604,0.0,4629310.037812361,0.0,1061202.8583893495,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,115951877.39581964,27748376.697857247,28186614.07570998,0.0 + 05/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13858183.158005819,0.0,3033480.593742083,0.0,6236129.226768902,0.0,3169685.4979683884,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,26297478.476485194,28186614.07570998,0.0 + 05/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12151920.997033349,0.0,3572371.1441535546,0.0,8793716.195005469,0.0,6327445.367364913,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,30845453.703557288,35233267.594637479,0.0 + 05/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5366678.161700024,0.0,187938.07519130934,0.0,6161118.323909774,0.0,3520620.937985192,18087.591831984333,17804.427207617697,17827.37002933482,21460.237262822433,270646654.79433348,15236355.4987863,14093307.03785499,0.0 + 05/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,7070561.475928673,0.0,1465891.4615398532,0.0,11628633.840932198,0.0,9677754.544707507,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,29842841.32310823,63419881.67034747,0.0 + 05/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,8271199.728109626,0.0,824327.1255489261,0.0,15509732.989013877,0.0,12463995.512688399,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,154822986.91350315,37069255.35536082,63419881.67034747,69761869.8373822 + 05/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,2086912.8915774399,0.0,0.0,0.0,10178448.685898252,0.0,6059211.334979877,10347.454178083566,10185.462852609999,10198.587861104166,12276.85939568746,154830111.43494673,18324572.91245557,49326574.63249246,69761869.8373822 + 05/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,4822163.441038373,0.0,356438.6988666142,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,77409472.3284984,5178602.139904987,35233267.594637479,69761869.8373822 + 05/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,4398604.718201199,0.0,0.0,1512332.7972192835,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,81808077.0466996,1512332.7972192835,35233267.594637479,62010550.96656194 + 05/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2268392.1588766009,0.0,12391762.98480779,0.0,0.0,0.0,0.0,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,53345660.66672602,0.0,35233267.594637479,46507913.22492146 + 05/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,14826425.051686425,0.0,22273735.70805823,0.0,486175.70549278726,0.0,8832710.126938612,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,85112463.78490414,0.0,21139960.556782485,23253956.61246073 + 05/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,19336866.239843489,0.0,14093307.03785499,0.0 + 05/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3060943.270425954,0.0,10084156.678306686,0.0,0.0,0.0,0.0,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,32481966.188576133,0.0,14093307.03785499,0.0 + 05/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11019865.249853867,0.0,16586896.23542256,0.0,0.0,0.0,6856844.331261285,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,53778713.57759279,0.0,14093307.03785499,0.0 + 05/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11740741.177770287,0.0,15545040.116839746,0.0,1174729.6289844234,0.0,8501903.136951888,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,56277521.82160143,0.0,14093307.03785499,0.0 + 05/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2288596.897368698,0.0,1874350.7291298509,0.0,0.0,0.0,520757.2917662939,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,24020571.15810833,0.0,14093307.03785499,0.0 + 05/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.783538754478,5089.833957846562,5096.3927284098,6134.937287790066,77371011.04608327,0.0,14093307.03785499,15502637.741640486 + 05/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,4156962.296200116,0.0,0.0,20694.82876798237,20370.847363003115,20397.097279039514,24553.624363031773,309659031.9830044,4156962.296200116,56373228.15141996,38756594.35410121 + 05/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,20950211.843916887,0.0,7378410.703261035,0.0,19447409.970769835,0.0,17874053.96973937,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,65650086.48768712,56373228.15141996,38756594.35410121 + 05/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27469806.909341944,0.0,7600945.133249193,0.0,8411775.847120205,0.0,6811527.91499208,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,50294055.804703418,28186614.07570998,0.0 + 05/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35976344.97138253,0.0,10796431.060749092,0.0,6913682.413438889,0.0,5678186.890404739,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,59364645.335975248,28186614.07570998,0.0 + 05/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40407116.02483596,0.0,12159184.756135676,0.0,5297454.4409563899,0.0,5541587.519895698,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,63405342.74182372,28186614.07570998,0.0 + 05/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45021326.02198127,0.0,16494513.658075156,0.0,7990049.744714895,0.0,10254845.454838589,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,79760734.8796099,28186614.07570998,0.0 + 05/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48338730.72000543,0.0,23765849.786393219,0.0,15435787.015760243,0.0,18422423.714219046,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,105962791.23637794,28186614.07570998,0.0 + 05/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46299094.88352321,0.0,28089511.948851903,0.0,23366186.303682079,0.0,26063525.377018393,7716.808856023122,7596.000773812809,7605.78899611755,9155.69913896811,115467471.95371773,123818318.51307559,28186614.07570998,0.0 + 05/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39888327.516100738,0.0,29978653.027934787,0.0,29240579.03054309,0.0,30732175.02513209,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,129839734.5997107,28186614.07570998,0.0 + 05/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,36229916.962903279,0.0,30725889.594260806,0.0,34541329.09301674,0.0,37947633.425886329,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,139444769.07606716,35233267.594637479,0.0 + 05/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29416341.445743134,0.0,25480272.655678635,0.0,29665822.395771605,0.0,33602808.173598717,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,118165244.6707921,14093307.03785499,0.0 + 05/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,27407158.301990086,0.0,25760413.626511888,0.0,30129270.10005213,0.0,34310339.81314241,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,117607181.84169652,63419881.67034747,0.0 + 05/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,20929338.19053863,0.0,14516030.699368693,0.0,26663528.061260769,0.0,27106789.10154477,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,89215686.05271286,63419881.67034747,69761869.8373822 + 05/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,13902886.256250959,0.0,7803723.79432801,0.0,20732623.54396758,0.0,19798117.43846859,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,62237351.03301514,49326574.63249246,69761869.8373822 + 05/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10746043.136062615,0.0,5281101.390369313,0.0,17610467.280390074,0.0,16234744.482062653,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,49872356.288884658,35233267.594637479,69761869.8373822 + 05/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3333208.854464558,0.0,497447.83286597786,0.0,10999285.45587911,0.0,7909067.649357065,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,77414757.9957511,22739009.79256671,35233267.594637479,62010550.96656194 + 05/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,4005403.4802034369,0.0,23075.016527451222,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,38707378.99787555,4028478.4967308875,35233267.594637479,46507913.22492146 + 05/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,1650301.815373239,0.0,7167931.252749211,0.0,0.0,0.0,0.0,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,47518862.38563925,0.0,21139960.556782485,23253956.61246073 + 05/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,19322852.438610287,0.0,14093307.03785499,0.0 + 05/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,19331012.58587428,0.0,14093307.03785499,0.0 + 05/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3154651.719278263,0.0,8424218.724974666,0.0,0.0,0.0,0.0,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,30901722.882863214,0.0,14093307.03785499,0.0 + 05/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5764818.596681649,0.0,8475037.145107557,0.0,0.0,0.0,999035.4884657369,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,34553998.99131003,0.0,14093307.03785499,0.0 + 05/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,19331012.58587428,0.0,14093307.03785499,0.0 + 05/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,77386834.38545615,0.0,14093307.03785499,15502637.741640486 + 05/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,2787016.010854777,0.0,1005711.6703291546,0.0,9952125.140386753,0.0,3437556.621810436,20691.59136429894,20367.660641478287,20393.906451098734,24549.783307140675,309610590.35045996,17182409.44338112,56373228.15141996,38756594.35410121 + 05/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29286610.879457445,0.0,20197285.727058747,0.0,20646036.542624434,0.0,20704258.687287097,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,90834191.83642772,56373228.15141996,38756594.35410121 + 05/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32414951.088327778,0.0,18811477.665617005,0.0,11578037.37708671,0.0,11694335.935061306,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,74498802.06609279,28186614.07570998,0.0 + 05/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44752263.80295183,0.0,26310877.530430326,0.0,13798862.606293004,0.0,15269978.680107627,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,100131982.61978278,28186614.07570998,0.0 + 05/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54162693.24042262,0.0,35298953.27517271,0.0,16990805.34216975,0.0,21243252.790885949,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,127695704.64865104,28186614.07570998,0.0 + 05/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57152654.353939618,0.0,37413339.462035339,0.0,18953582.02601715,0.0,24571994.717460138,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,138091570.55945225,28186614.07570998,0.0 + 05/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57493573.68256607,0.0,43022992.37681571,0.0,23902998.929109798,0.0,29911829.900786736,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,154331394.8892783,28186614.07570998,0.0 + 05/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53921540.373647067,0.0,44150922.30683128,0.0,26098099.74061808,0.0,31917609.341711549,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,156088171.76280798,28186614.07570998,0.0 + 05/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42572274.70527572,0.0,36214504.89598939,0.0,23671848.959219926,0.0,27706289.595358746,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,130164918.15584378,28186614.07570998,0.0 + 05/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25413540.21177724,0.0,20840232.61195645,0.0,16880663.36983602,0.0,18556000.248850869,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,81690436.44242057,35233267.594637479,0.0 + 05/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12525066.09881883,0.0,8347160.156636753,0.0,9058958.8829719,0.0,8621733.300235978,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,38552918.43866346,14093307.03785499,0.0 + 05/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,16858367.24091707,0.0,12188939.305873769,0.0,17239519.249198285,0.0,17475540.58118303,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,63762366.37717216,63419881.67034747,0.0 + 05/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21971625.193220516,0.0,16621393.825811092,0.0,25540422.165083335,0.0,26320399.58828283,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,90453840.77239777,63419881.67034747,69761869.8373822 + 05/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,12170497.279958507,0.0,7144688.723581336,0.0,17843842.793649734,0.0,16505595.548938686,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,53664624.346128258,49326574.63249246,69761869.8373822 + 05/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1482912.568952841,0.0,333688.8270910538,0.0,9055816.653325085,0.0,4660118.008533586,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,15532536.057902568,35233267.594637479,69761869.8373822 + 05/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2298778.6924141615,0.0,0.0,2795852.9493847216,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,79701426.28002915,2795852.9493847216,35233267.594637479,62010550.96656194 + 05/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4439031.84452836,0.0,12348378.333564925,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,55488733.971900779,0.0,35233267.594637479,46507913.22492146 + 05/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,15353932.78689003,0.0,21096974.42518592,0.0,0.0,0.0,7621513.089675021,0.0,2586.8635445208917,2546.3657131524998,2549.6469652760417,3069.214848921865,82779948.16048762,0.0,21139960.556782485,23253956.61246073 + 05/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609322,19353763.92936834,0.0,14093307.03785499,0.0 + 05/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2122282.851498286,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,21476046.780866624,0.0,14093307.03785499,0.0 + 05/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4827735.96055067,0.0,10383844.068838288,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,34565269.52832674,0.0,14093307.03785499,0.0 + 05/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7173465.611751339,0.0,10297200.863534868,0.0,0.0,0.0,1674866.129445203,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,38499222.1036692,0.0,14093307.03785499,0.0 + 05/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1647682.1164609779,0.0,2126568.491060083,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,23128014.536889398,0.0,14093307.03785499,0.0 + 05/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,0.0,14093307.03785499,15502637.741640486 + 05/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,3314997.389894596,0.0,3865493.6967931857,0.0,0.0,0.0,27354.142631578725,0.0,20678.775770011893,20355.045677710543,20381.275231662596,24534.578093720396,316626674.4124989,0.0,56373228.15141996,38756594.35410121 + 05/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,1264687.621950204,0.0,0.0,0.0,2075804.5600053967,0.0,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,3340492.1819556008,56373228.15141996,38756594.35410121 + 05/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,0.0,28186614.07570998,0.0 + 05/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8594940.093217332,0.0,0.0,0.0,0.0,0.0,0.0,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,8594940.093217332,28186614.07570998,0.0 + 05/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17867907.641721764,0.0,445991.65949646869,0.0,0.0,0.0,0.0,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,18313899.301218235,28186614.07570998,0.0 + 05/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24689240.52523343,0.0,6151510.474096164,0.0,0.0,0.0,0.0,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,30840750.999329594,28186614.07570998,0.0 + 05/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32851016.085253359,0.0,15621745.087078913,0.0,9332745.62478932,0.0,9170506.705840569,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,66976013.50296216,28186614.07570998,0.0 + 05/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36289195.93028005,0.0,22648315.182182123,0.0,17552924.552974296,0.0,19196630.741100007,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,95687066.40653648,28186614.07570998,0.0 + 05/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38237480.373724598,0.0,30175012.604687126,0.0,26688891.46551104,0.0,28511365.29624738,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,123612749.74017015,28186614.07570998,0.0 + 05/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35606213.05888365,0.0,31315292.430645944,0.0,31907889.191202016,0.0,35423717.88515092,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,134253112.56588254,35233267.594637479,0.0 + 05/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,26272090.058061378,0.0,23307798.293840954,0.0,26007200.880934657,0.0,29391794.18141295,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,104978883.41424993,14093307.03785499,0.0 + 05/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25754635.947359608,0.0,24963310.27735958,0.0,28416361.0595722,0.0,32331953.92943451,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,111466261.2137259,63419881.67034747,0.0 + 05/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,20074488.675936417,0.0,14459319.134603119,0.0,25815531.56293548,0.0,26096297.931004928,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,86445637.30447994,63419881.67034747,69761869.8373822 + 05/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,11174318.42844057,0.0,5674977.376041978,0.0,18600551.148799659,0.0,16887132.96323339,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,154782937.6157136,52336979.916515599,49326574.63249246,69761869.8373822 + 05/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4647834.164909385,0.0,121015.66644812876,0.0,13276157.19931905,0.0,10048534.236435783,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,28093541.267112353,35233267.594637479,69761869.8373822 + 05/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1034523.4915510735,0.0,0.0,0.0,10185347.603488403,0.0,6340441.504659401,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,17560312.59969888,35233267.594637479,62010550.96656194 + 05/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,2882755.2557408886,0.0,111884.14636187027,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,38707378.99787555,2994639.402102758,35233267.594637479,46507913.22492146 + 05/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,3859351.983228879,0.0,11365613.069034357,0.0,0.0,0.0,0.0,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,53932344.05013879,0.0,21139960.556782485,23253956.61246073 + 05/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,19346708.596364038,0.0,14093307.03785499,0.0 + 05/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3118145.3796359107,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,22460898.14115673,0.0,14093307.03785499,0.0 + 05/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4762087.271908752,0.0,9286489.229861739,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,33395285.098134526,0.0,14093307.03785499,0.0 + 05/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5883930.935573896,0.0,7378957.095062932,0.0,0.0,0.0,1446639.9034846985,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,34040540.51999581,0.0,14093307.03785499,0.0 + 05/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 + 05/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.727089041782,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,0.0,14093307.03785499,15502637.741640486 + 05/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,9851580.295178215,0.0,11320930.645771042,0.0,24243581.163059433,0.0,17637323.222157856,20678.775770011893,20355.045677710546,20381.275231662596,24534.578093720396,309418829.18317958,63053415.32616654,56373228.15141996,38756594.35410121 + 05/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,39680420.16845423,0.0,28989122.26499638,0.0,32578353.580468507,0.0,34865795.41074142,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,136113691.42466054,56373228.15141996,38756594.35410121 + 05/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39029985.69773854,0.0,20007823.162935854,0.0,17499396.487003317,0.0,18258426.39209416,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,94795631.73977189,28186614.07570998,0.0 + 05/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48993895.24711507,0.0,23334470.328867545,0.0,15594973.459588994,0.0,16929806.047141617,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,104853145.08271323,28186614.07570998,0.0 + 05/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54035176.22072935,0.0,26246230.752105755,0.0,14856233.203098724,0.0,18220911.183137698,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,113358551.35907153,28186614.07570998,0.0 + 05/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60973061.48211333,0.0,33056603.24144522,0.0,19404418.435233624,0.0,25440702.517827788,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,138874785.67661999,28186614.07570998,0.0 + 05/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66178360.186380479,0.0,42714169.90727117,0.0,28731353.547267658,0.0,36016033.59936194,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,173639917.24028123,28186614.07570998,0.0 + 05/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65921742.59434798,0.0,48730623.70738748,0.0,37794892.73747051,0.0,45237270.10242705,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,197684529.141633,28186614.07570998,0.0 + 05/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61995778.368119109,0.0,53371676.570105839,0.0,45842502.62190193,0.0,52590046.848882768,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,213800004.40900965,28186614.07570998,0.0 + 05/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,58057537.352803099,0.0,53932204.33903235,0.0,50246997.20182542,0.0,58927379.30667272,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,221164118.2003336,35233267.594637479,0.0 + 05/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,48076416.08908097,0.0,45670964.087481338,0.0,43583751.91908074,0.0,52294021.99929115,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,189625154.09493418,14093307.03785499,0.0 + 05/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44547555.62873359,0.0,44747476.249188739,0.0,43291777.66139451,0.0,52027423.582478348,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,184614233.12179519,63419881.67034747,0.0 + 05/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,36273947.223303709,0.0,30834447.56104613,0.0,38288088.10969147,0.0,42484198.911809418,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,147880681.80585075,63419881.67034747,69761869.8373822 + 05/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,24327305.770387398,0.0,18766783.715522008,0.0,28612652.24845289,0.0,30128551.05091732,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,101835292.7852796,49326574.63249246,69761869.8373822 + 05/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18867413.053166894,0.0,13542865.32026757,0.0,24035722.68923001,0.0,24457589.675368396,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,80903590.73803286,35233267.594637479,69761869.8373822 + 05/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13656149.695711222,0.0,8718271.838797823,0.0,19715527.54438569,0.0,19164785.856201874,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,61254734.93509661,35233267.594637479,62010550.96656194 + 05/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6066659.513725858,0.0,1472376.4237120934,0.0,13087435.652147312,0.0,10953692.022669968,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,38663807.82776192,31580163.61225523,35233267.594637479,46507913.22492146 + 05/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,2368707.777209394,0.0,71268.85249295183,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,2439976.629702346,21139960.556782485,23253956.61246073 + 05/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 05/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 05/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 + 05/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 05/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,19343372.40427021,0.0,14093307.03785499,0.0 + 05/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,2288429.190591943,0.0,14157900.500673045,0.0,6513590.302773866,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,22959919.994038855,14093307.03785499,15502637.741640486 + 05/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,28479261.991011755,0.0,29260676.502687389,0.0,36662634.610385868,0.0,38801017.06441974,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,133203590.16850475,56373228.15141996,38756594.35410121 + 05/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,43635123.654561039,0.0,34359139.22166651,0.0,36949420.393679078,0.0,41066801.14474672,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,156010484.41465334,56373228.15141996,38756594.35410121 + 05/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44423670.38291377,0.0,26871260.705210214,0.0,23156354.28997437,0.0,25854650.846949396,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,120305936.22504774,28186614.07570998,0.0 + 05/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53949182.01245037,0.0,30145058.185451975,0.0,20686184.647480035,0.0,23999454.71614576,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,128779879.56152815,28186614.07570998,0.0 + 05/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60123092.926697228,0.0,34236272.82204137,0.0,20012772.77245631,0.0,25620534.07382377,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,139992672.59501869,28186614.07570998,0.0 + 05/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67569727.62541174,0.0,41726494.44622646,0.0,24864974.168248748,0.0,33380389.106113819,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,167541585.34600077,28186614.07570998,0.0 + 05/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74634122.27445859,0.0,53160303.31006754,0.0,35358503.2778869,0.0,45508618.26158207,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,208661547.1239951,28186614.07570998,0.0 + 05/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73328917.03460744,0.0,58671266.94645261,0.0,44036565.238147649,0.0,54175378.6246203,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,230212127.84382803,28186614.07570998,0.0 + 05/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67308274.93789663,0.0,60837363.731610957,0.0,48320216.16012527,0.0,57470209.09833363,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,233936063.92796649,28186614.07570998,0.0 + 05/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,60424446.74476419,0.0,58255587.09437649,0.0,49097982.83717467,0.0,59337426.5364606,22876.254285564693,22518.12225716316,22547.13915606847,27141.80246951196,342299945.4059098,227115443.21277596,35233267.594637479,0.0 + 05/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,46073832.70297766,0.0,45176369.6629469,0.0,38877428.536172877,0.0,47744070.610172729,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,177871701.51227016,14093307.03785499,0.0 + 05/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,39045523.135611709,0.0,38553188.6520396,0.0,36556923.03926709,0.0,43909130.111954618,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,158064764.938873,63419881.67034747,0.0 + 05/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,36244402.742890898,0.0,32173817.513448914,0.0,37708726.726895097,0.0,42583613.123145658,15444.231480126622,15202.449155186701,15222.03906260489,18323.991108611153,231093758.9035057,148710560.10638056,63419881.67034747,69761869.8373822 + 05/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,26325740.045654,0.0,22212947.796512166,0.0,29860186.46959807,0.0,32569624.435417527,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,110968498.74718176,49326574.63249246,69761869.8373822 + 05/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18566886.131979366,0.0,14598279.885497684,0.0,23413505.264423469,0.0,24484250.86701817,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,81062922.14891869,35233267.594637479,69761869.8373822 + 05/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12308106.098992795,0.0,8528537.373983387,0.0,18127266.549274748,0.0,17856091.719251887,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,115897618.43742797,56820001.74150282,35233267.594637479,62010550.96656194 + 05/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4837199.133618571,0.0,1386255.0764938589,0.0,11432916.671854856,0.0,9540752.170018238,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,27197123.05198552,35233267.594637479,46507913.22492146 + 05/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,1766911.4036781318,0.0,0.0,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,38663807.82776192,1766911.4036781318,21139960.556782485,23253956.61246073 + 05/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 05/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 05/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 05/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 05/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 05/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,15502637.741640486 + 05/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,11219929.245837883,0.0,9303850.663487219,0.0,11828938.524258748,0.0,10800445.185878979,1288.0062846777015,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,43153163.61946283,56373228.15141996,38756594.35410121 + 05/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,34135195.955850977,0.0,28421640.12015295,0.0,25470460.608573796,0.0,28751417.669905016,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,116778714.35448274,56373228.15141996,38756594.35410121 + 05/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29779641.398505205,0.0,25625135.163119608,0.0,15147949.296221395,0.0,18285972.135590819,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,88838697.99343702,28186614.07570998,0.0 + 05/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36420434.01262355,0.0,32058908.862492786,0.0,17912176.698419226,0.0,22195445.929377345,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,108586965.5029129,28186614.07570998,0.0 + 05/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26278534.330727318,0.0,20306568.64197552,0.0,13127026.991028492,0.0,14405793.409365302,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,74117923.37309662,28186614.07570998,0.0 + 05/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12479430.411872175,0.0,7224902.3616194049,0.0,6304962.059462607,0.0,5001476.445201248,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,31010771.27815543,28186614.07570998,0.0 + 05/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13337770.881819997,0.0,9130371.171011446,0.0,5812556.983336121,0.0,5216040.849181559,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,33496739.88534912,28186614.07570998,0.0 + 05/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18843468.98710715,0.0,14644575.486004252,0.0,8995844.469577168,0.0,9392074.845755808,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,51875963.78844438,28186614.07570998,0.0 + 05/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7044079.818367831,0.0,3604656.733247831,0.0,4415308.103330057,0.0,2711234.366810868,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,17775279.021756587,28186614.07570998,0.0 + 05/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3496642.8515938075,0.0,186193.64817862886,0.0,4076267.3035456167,0.0,1611274.5429705482,15465.198763467964,15223.088191795892,15242.704694719334,18348.867989925246,231407494.70367036,9370378.3462886,35233267.594637479,0.0 + 05/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1697162.5436309733,0.0,0.0,0.0,3617372.8964096044,0.0,1336414.0132506518,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,6650949.453291229,14093307.03785499,0.0 + 05/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,3565317.3049567628,0.0,1163376.1471768432,0.0,10064407.578688443,0.0,6890824.496529869,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,21683925.527351917,63419881.67034747,0.0 + 05/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,10148182.130794704,0.0,1260906.0347516207,0.0,22134008.518418883,0.0,19180981.460838319,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,115897618.43742797,52724078.144803527,63419881.67034747,69761869.8373822 + 05/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,2411696.7721437897,0.0,0.0,0.0,15515909.911047904,0.0,11442124.372096003,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,29369731.055287694,49326574.63249246,69761869.8373822 + 05/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,1134622.4206285496,0.0,0.0,4309262.493870774,0.0,933558.346573209,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,78546115.87738012,5242820.840443984,35233267.594637479,69761869.8373822 + 05/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,8464836.37353729,0.0,17615077.521458664,0.0,0.0,0.0,0.0,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,103481172.53002957,0.0,35233267.594637479,62010550.96656194 + 05/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22347559.610725337,0.0,30168010.155283158,0.0,1489447.6724470088,0.0,15051815.744434186,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,146427844.22897298,0.0,35233267.594637479,46507913.22492146 + 05/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,34942735.23800019,0.0,42778335.071568448,0.0,15375242.091678456,0.0,28904296.89248944,0.0,2583.822553564898,2543.3723294772187,2546.6497243203668,3065.60682923434,160662634.4654851,0.0,21139960.556782485,23253956.61246073 + 05/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2279090.749057475,0.0,6645629.422487419,0.0,0.0,0.0,0.0,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,28247572.61015518,0.0,14093307.03785499,0.0 + 05/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21045947.04329112,0.0,28262065.485211657,0.0,1430046.5644279577,0.0,10145278.11538006,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,80214349.79418507,0.0,14093307.03785499,0.0 + 05/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24781784.170237774,0.0,30551063.839197287,0.0,9498366.357601894,0.0,19147135.545866118,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,103301202.35151337,0.0,14093307.03785499,0.0 + 05/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24030139.576775485,0.0,27723899.425813736,0.0,9086714.440315105,0.0,18673227.85751089,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,98836833.73902552,0.0,14093307.03785499,0.0 + 05/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14536024.755658579,0.0,13754223.912635789,0.0,1501067.1614446503,0.0,8354982.491572997,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,57469150.759922299,0.0,14093307.03785499,0.0 + 05/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6477010.845625169,0.0,7980827.922824651,0.0,0.0,0.0,1037915.9365642028,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,92819805.04851115,0.0,14093307.03785499,15502637.741640486 + 05/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14103534.178591792,0.0,17676334.24517876,0.0,9611886.967054289,0.0,16092341.088265686,0.0,20670.580428519184,20346.978635817748,20373.197794562933,24524.85463387472,366780297.8530791,0.0,56373228.15141996,38756594.35410121 + 05/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,26789795.08377186,0.0,31728707.20525337,0.0,17401954.35452877,0.0,29318633.46983014,0.0,18092.234754220408,17808.997444040026,17831.946154973255,21465.745912824295,375955217.47119286,0.0,56373228.15141996,38756594.35410121 + 05/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21874785.35514114,0.0,26916986.534404033,0.0,18167316.61775549,0.0,27136524.855113634,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,287523140.9776225,0.0,28186614.07570998,0.0 + 05/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19089085.4948044,0.0,24628543.62548954,0.0,16720611.630608555,0.0,25244108.392715567,0.0,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,240456017.9145304,0.0,28186614.07570998,0.0 + 05/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21515226.800798209,0.0,29550136.62862773,0.0,18198096.416550854,0.0,27502466.581574367,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,174167185.06258477,0.0,28186614.07570998,0.0 + 05/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8959315.361115806,0.0,16778700.294212846,0.0,12933321.17789033,0.0,19157113.253397418,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,135237922.4151148,0.0,28186614.07570998,0.0 + 05/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,169736.99247866754,0.0,5591399.134834221,0.0,6840899.88596819,0.0,10988427.931524938,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,101005221.94055712,0.0,28186614.07570998,0.0 + 05/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,737201.762269772,0.0,1809753.0688256953,0.0,5615950.183822622,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,124285042.00854475,0.0,28186614.07570998,0.0 + 05/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1746349.1117657803,0.0,0.0,0.0,4334471.688329056,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,199617715.78947259,0.0,28186614.07570998,0.0 + 05/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,7216531.096110228,0.0,129600.91428644664,0.0,4984258.807117072,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,205859124.45939268,0.0,35233267.594637479,0.0 + 05/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6596207.937029193,0.0,9067049.363331408,0.0,659937.7507036028,0.0,5163017.986531468,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,292438908.0487523,0.0,14093307.03785499,0.0 + 05/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,270951652.9851288,0.0,63419881.67034747,0.0 + 05/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,4387850.075953102,0.0,0.0,1342451.3296745104,0.0,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,159190367.3460203,1342451.3296745104,63419881.67034747,69761869.8373822 + 05/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,5598482.783942942,0.0,11524944.33615663,0.0,0.0,0.0,0.0,0.0,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,171897095.89101187,0.0,49326574.63249246,69761869.8373822 + 05/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10932097.337500195,0.0,16647287.043710892,0.0,0.0,0.0,1041965.0670214294,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,106008183.83368865,0.0,35233267.594637479,69761869.8373822 + 05/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13372655.548380558,0.0,19035622.83327284,0.0,0.0,0.0,5723059.3560773399,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,115532596.37276435,0.0,35233267.594637479,62010550.96656194 + 05/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,19061221.95328021,0.0,24820301.98432695,0.0,1420881.755711985,0.0,12048752.755655338,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,96036663.97201613,0.0,35233267.594637479,46507913.22492146 + 05/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,28553742.19827636,0.0,34283290.11142014,0.0,11763987.865571676,0.0,23051213.440942535,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,136337739.13925234,0.0,21139960.556782485,23253956.61246073 + 05/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2874525.8002516145,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,22217278.561772434,0.0,14093307.03785499,0.0 + 05/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17537189.62120688,0.0,24414738.68451469,0.0,0.0,0.0,7538905.880491056,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,68827700.4260561,0.0,14093307.03785499,0.0 + 05/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25599180.612414063,0.0,31615734.56419684,0.0,8954516.575808239,0.0,19220760.49707946,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,104705300.0105537,0.0,14093307.03785499,0.0 + 05/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24431766.19562362,0.0,29301860.691089669,0.0,9711568.014506273,0.0,19461891.00416659,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,102238098.49126043,0.0,14093307.03785499,0.0 + 05/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23307041.022276343,0.0,27799939.517653247,0.0,8964040.610376634,0.0,18711604.122060457,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,98113637.85824095,0.0,14093307.03785499,0.0 + 05/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15912149.783145592,0.0,20713168.705930205,0.0,4123235.6740294785,0.0,11830742.245871703,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,129926761.3683509,0.0,14093307.03785499,15502637.741640486 + 05/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,16240975.82572393,0.0,20042860.63827204,0.0,13338568.40726356,0.0,16326473.981648496,0.0,20683.13415501792,20359.335831386248,20385.5709136392,24539.749151160264,375432923.0372411,0.0,56373228.15141996,38756594.35410121 + 05/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13124215.765652093,0.0,20087861.400046179,0.0,9434840.474799648,0.0,17285655.061419518,0.0,18104.817555852474,17821.38325956522,17844.34793088595,21480.674926645683,330836977.92453506,0.0,56373228.15141996,38756594.35410121 + 05/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4722747.959629484,0.0,19162314.99726927,0.0,11049914.706375529,0.0,19052113.332187345,0.0,12929.602571636953,12727.187231363,12743.587511147607,15340.47989797476,247454176.95910198,0.0,28186614.07570998,0.0 + 05/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,478989.72142979598,0.0,16594196.885140012,0.0,12116038.891260025,0.0,19000483.33333108,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,203008653.4881577,0.0,28186614.07570998,0.0 + 05/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1710664.2512972844,0.0,17417517.40702684,0.0,13096265.007548623,0.0,19860128.827637737,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,129485834.12854409,0.0,28186614.07570998,0.0 + 05/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1020291.4220362462,0.0,14133755.897172915,0.0,10357459.858637222,0.0,15846001.0255649,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,118769001.66016285,0.0,28186614.07570998,0.0 + 05/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,8352531.480511166,0.0,5942252.672658021,0.0,10537618.606134905,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,102243896.21605566,0.0,28186614.07570998,0.0 + 05/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,6815762.646533053,0.0,2476088.3053759869,0.0,7435891.753519634,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,132850326.28163868,0.0,28186614.07570998,0.0 + 05/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,5447734.113422066,0.0,187922.20630688536,0.0,4069372.408272716,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,203233762.3698806,0.0,28186614.07570998,0.0 + 05/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,20198.037308949282,0.0,0.0,0.0,0.0,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,193548931.6791879,0.0,35233267.594637479,0.0 + 05/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2968628.453789025,0.0,0.0,0.0,0.0,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,273921323.4649457,0.0,14093307.03785499,0.0 + 05/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,2108086.4478069848,0.0,0.0,18104.817555852474,17821.383259565224,17844.34793088595,21480.674926645683,270904405.2226176,2108086.4478069848,63419881.67034747,0.0 + 05/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,3024053.8535930064,0.0,11650737.00659656,0.0,0.0,222936.87513494225,0.0,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,169195652.9486303,222936.87513494225,63419881.67034747,69761869.8373822 + 05/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,10394838.792391682,0.0,18318339.79038444,0.0,0.0,0.0,1239403.5391090089,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,184535401.6307674,0.0,49326574.63249246,69761869.8373822 + 05/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15127619.404556495,0.0,22603890.423392968,0.0,0.0,0.0,7847709.685295759,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,122839650.5574656,0.0,35233267.594637479,69761869.8373822 + 05/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18232292.52744268,0.0,25492493.765201324,0.0,1310506.0379103004,0.0,11460619.976562143,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,133756343.3513368,0.0,35233267.594637479,62010550.96656194 + 05/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21854062.448224769,0.0,28902444.556144068,0.0,5688084.178743472,0.0,15580411.575436786,0.0,2582.7318516449929,2542.2987026993398,2545.574714064802,3064.312753041024,110670707.63576964,0.0,35233267.594637479,46507913.22492146 + 05/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,34751051.31265251,0.0,42112955.611534599,0.0,17270734.70091214,0.0,30106751.931038694,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,162753431.8521299,0.0,21139960.556782485,23253956.61246073 + 05/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2686952.7271221077,0.0,7818359.670440666,0.0,0.0,0.0,0.0,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.84518687253,29773794.092638375,0.0,14093307.03785499,0.0 + 05/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22150609.361811799,0.0,29584203.935669744,0.0,4264762.476872074,0.0,12358494.509088893,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,87640450.68402012,0.0,14093307.03785499,0.0 + 05/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25079425.46087072,0.0,30999128.119646919,0.0,10024627.191868097,0.0,20288422.400143833,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,105673983.57310719,0.0,14093307.03785499,0.0 + 05/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25006392.24379827,0.0,27796629.27843004,0.0,10593186.11299984,0.0,20204766.48491407,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,102840816.35077885,0.0,14093307.03785499,0.0 + 05/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6258364.349446543,0.0,2677681.867824099,0.0,134824.33502844943,0.0,1998890.791172575,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,30374444.80483719,0.0,14093307.03785499,0.0 + 05/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,77386834.38545615,0.0,14093307.03785499,15502637.741640486 + 05/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,1791238.6280089617,0.0,0.0,0.0,0.0,5017191.081279079,0.0,0.0,20693.415781859945,20369.45649744203,20395.704621206183,24551.947908934504,311429127.94200256,5017191.081279079,56373228.15141996,38756594.35410121 + 05/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,13630108.50968781,0.0,5062355.872839086,0.0,16196120.298552674,0.0,14142885.146706041,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,270909266.55665239,49031469.82778561,56373228.15141996,38756594.35410121 + 05/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19572031.36223197,0.0,939970.9797817486,0.0,4158062.7471813757,0.0,1193100.5899051089,12919.708451417382,12717.448005441212,12733.835735239158,15328.740902016025,193319039.1388096,25863165.6791002,28186614.07570998,0.0 + 05/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30140717.47417588,0.0,5088944.491616118,0.0,3287210.1566596038,0.0,1014656.8221983558,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,39531528.94464995,28186614.07570998,0.0 + 05/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37170775.96544545,0.0,9253137.203217909,0.0,3340991.015553709,0.0,3220309.404414588,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,52985213.58863165,28186614.07570998,0.0 + 05/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46588311.292787808,0.0,18912431.65049773,0.0,9146718.30683713,0.0,12096246.57086951,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,86743707.82099219,28186614.07570998,0.0 + 05/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53170216.11220993,0.0,30378872.813450815,0.0,19360217.185520408,0.0,23905344.971604974,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,126814651.08278613,28186614.07570998,0.0 + 05/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54419121.48328853,0.0,39064954.36441569,0.0,29032966.387135324,0.0,34238118.45459392,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,156755160.68943347,28186614.07570998,0.0 + 05/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48906975.32097478,0.0,41521694.85075288,0.0,34605535.66658163,0.0,39061398.56870228,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,164095604.40701158,28186614.07570998,0.0 + 05/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,45291361.76142396,0.0,42280503.07860233,0.0,39309067.493018988,0.0,45470082.886114168,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,172351015.21915949,35233267.594637479,0.0 + 05/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,35920896.36672901,0.0,34772335.80409883,0.0,33434688.967964535,0.0,39745113.33439918,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,143873034.47319157,14093307.03785499,0.0 + 05/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,31689360.573407107,0.0,32715401.371510738,0.0,33323790.333177546,0.0,39403134.217555698,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,137131686.4956511,63419881.67034747,0.0 + 05/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24022492.196054713,0.0,19640505.61551921,0.0,29219622.791051017,0.0,31016474.67881715,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,103899095.28144209,63419881.67034747,69761869.8373822 + 05/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,15346317.67712504,0.0,11024858.67268711,0.0,22030643.172709727,0.0,21936245.268433535,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,70338064.79095541,49326574.63249246,69761869.8373822 + 05/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,7143030.49974584,0.0,3204025.593505671,0.0,14944178.949483533,0.0,13063029.989697578,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,38354265.032432619,35233267.594637479,69761869.8373822 + 05/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4784248.138259007,0.0,1132917.3329882289,0.0,12554864.557385538,0.0,10355495.126230458,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,28827525.15486323,35233267.594637479,62010550.96656194 + 05/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,401546.4295073935,0.0,0.0,0.0,6691960.867452359,0.0,3523164.9814498599,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,10616672.278409612,35233267.594637479,46507913.22492146 + 05/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,3703493.4521363389,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,42404817.24594383,0.0,21139960.556782485,23253956.61246073 + 05/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 05/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 05/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 05/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,601716.8734689619,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19955480.8028373,0.0,14093307.03785499,0.0 + 05/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 05/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,0.0,14093307.03785499,15502637.741640486 + 05/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,309310462.62209537,0.0,56373228.15141996,38756594.35410121 + 05/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,6263829.737798128,0.0,3497399.6806787836,0.0,10861257.811972805,0.0,4733362.1724680759,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,25355849.402917796,56373228.15141996,38756594.35410121 + 05/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22368285.32000505,0.0,14514928.94996744,0.0,6572466.326444314,0.0,6396419.730962307,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,49852100.327379118,28186614.07570998,0.0 + 05/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29227224.62543275,0.0,18014838.862297138,0.0,8258226.343696617,0.0,8903120.793964824,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,64403410.62539132,28186614.07570998,0.0 + 05/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44061523.39108278,0.0,29245400.134324116,0.0,12902684.401827611,0.0,16723912.057639342,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,102933519.98487385,28186614.07570998,0.0 + 05/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56451808.122244257,0.0,39738189.3659764,0.0,18918604.36940775,0.0,25751527.903231238,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,140860129.76085965,28186614.07570998,0.0 + 05/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59360785.939135108,0.0,42551194.519412707,0.0,25336704.817730778,0.0,32517084.782259309,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,159765770.0585379,28186614.07570998,0.0 + 05/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57252136.94676725,0.0,44377507.60743253,0.0,33079896.78355555,0.0,39758500.657290447,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,174468041.99504576,28186614.07570998,0.0 + 05/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51496386.52655475,0.0,46424402.264658037,0.0,39057237.010321419,0.0,44519880.9269751,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,181497906.7285093,28186614.07570998,0.0 + 05/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44596972.9092762,0.0,43070721.01052206,0.0,40894954.55718297,0.0,47437321.9920681,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,175999970.46904934,35233267.594637479,0.0 + 05/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,34342034.353823129,0.0,33899732.46834746,0.0,33755148.69458588,0.0,39912045.51642845,17957.927986358143,17676.793273683546,17699.571626049474,21306.39605956023,268706480.204345,141908961.03318493,14093307.03785499,0.0 + 05/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,34875529.53460313,0.0,37074924.07021542,0.0,37205729.24521276,0.0,44202675.042165849,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,153358857.89219717,63419881.67034747,0.0 + 05/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,29655350.0496839,0.0,25659329.811590237,0.0,35117726.34156498,0.0,38003997.27826651,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,128436403.48110563,63419881.67034747,69761869.8373822 + 05/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,21639534.3204885,0.0,17719432.285959115,0.0,28433130.73589476,0.0,29685877.90607714,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,97477975.24841951,49326574.63249246,69761869.8373822 + 05/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13585115.792105578,0.0,9835111.299636998,0.0,21518478.151504607,0.0,20991284.695078628,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,65929989.9383258,35233267.594637479,69761869.8373822 + 05/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,8896768.139764527,0.0,5162771.501766548,0.0,17497327.00029176,0.0,15871819.587895029,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,47428686.229717869,35233267.594637479,62010550.96656194 + 05/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2557823.994780471,0.0,7613.302340112596,0.0,11591886.00645904,0.0,8722808.680233308,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,38650625.798606548,22880131.98381293,35233267.594637479,46507913.22492146 + 05/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,214582.93969562604,0.0,0.0,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,214582.93969562604,21139960.556782485,23253956.61246073 + 05/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 05/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 05/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 05/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1231180.512425044,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,20579047.714389244,0.0,14093307.03785499,0.0 + 05/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,836599.0676258574,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,20179971.471896069,0.0,14093307.03785499,0.0 + 05/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,0.0,14093307.03785499,15502637.741640486 + 05/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4991714.94080654,0.0,8088815.275858493,0.0,0.0,0.0,802247.3493132371,0.0,20664.485774700093,20340.979394941154,20367.190823052137,24517.623559765605,323087783.95483067,0.0,56373228.15141996,38756594.35410121 + 05/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,0.0,56373228.15141996,38756594.35410121 + 05/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5814007.291161327,0.0,12340402.65451324,0.0,3990896.070516704,0.0,9553993.380652082,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,225177971.41648535,0.0,28186614.07570998,0.0 + 05/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10466858.787073823,0.0,15064322.9954257,0.0,7323552.172100771,0.0,14114284.314804415,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,201678432.86099447,0.0,28186614.07570998,0.0 + 05/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4400884.252177855,0.0,8275601.378016483,0.0,4223527.249892431,0.0,8553446.968227519,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,102639411.97288499,0.0,28186614.07570998,0.0 + 05/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,329680.8609427274,0.0,447886.0877864149,0.0,2146238.5944872635,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,80059637.11110653,0.0,28186614.07570998,0.0 + 05/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,0.0,28186614.07570998,0.0 + 05/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11084275.534507379,0.0,0.0,0.0,0.0,0.0,0.0,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,11084275.534507379,28186614.07570998,0.0 + 05/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20233383.06409147,0.0,13817928.189636808,0.0,12398703.89580192,0.0,10740151.123630796,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,57190166.27316099,28186614.07570998,0.0 + 05/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26200617.500036368,0.0,25565901.461349317,0.0,27855819.258196076,0.0,30762534.779804775,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,110384872.99938654,35233267.594637479,0.0 + 05/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,22011745.172083409,0.0,22821844.875622736,0.0,25145198.066068755,0.0,29515540.448270628,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,99494328.56204552,14093307.03785499,0.0 + 05/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24130786.3091475,0.0,27272585.4148518,0.0,29752062.89643657,0.0,35065707.33954684,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,116221141.9599827,63419881.67034747,0.0 + 05/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,19825002.253703577,0.0,15896906.305639744,0.0,28292481.09994076,0.0,29128761.959414726,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,93143151.6186988,63419881.67034747,69761869.8373822 + 05/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,11594049.076519162,0.0,7554048.612815604,0.0,21352435.429512144,0.0,20279386.01468402,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,60779919.13353092,49326574.63249246,69761869.8373822 + 05/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5743896.850411047,0.0,1174856.5716605604,0.0,16211043.789441947,0.0,13727329.92172584,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,36857127.133239399,35233267.594637479,69761869.8373822 + 05/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1180585.109838207,0.0,0.0,0.0,12233620.78932917,0.0,8729422.805937557,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,22143628.70510493,35233267.594637479,62010550.96656194 + 05/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,6224307.651217697,0.0,1392046.1699545049,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,7616353.821172202,35233267.594637479,46507913.22492146 + 05/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,2174751.109081921,0.0,7042417.632978426,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,47922915.47043613,0.0,21139960.556782485,23253956.61246073 + 05/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 05/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 05/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1220397.4128823144,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,20574161.342250654,0.0,14093307.03785499,0.0 + 05/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2132893.48983418,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,21483208.148592585,0.0,14093307.03785499,0.0 + 05/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 05/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,15502637.741640486 + 05/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,5094672.766820218,0.0,8087184.188899195,0.0,18520589.55920565,0.0,12847739.169815705,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,44550185.68474077,56373228.15141996,38756594.35410121 + 05/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29139160.832026677,0.0,23568906.37386311,0.0,23494534.69695069,0.0,24650506.98945652,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,100853108.892297,56373228.15141996,38756594.35410121 + 05/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20425213.774229926,0.0,13305861.20661794,0.0,9606368.47203923,0.0,9088376.808787577,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,52425820.26167467,28186614.07570998,0.0 + 05/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24935749.59257333,0.0,17080461.664255695,0.0,10926507.724017619,0.0,11278553.985572387,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,64221272.966419029,28186614.07570998,0.0 + 05/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36267265.77305353,0.0,25929564.669586556,0.0,15004787.625983308,0.0,17871253.31718588,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,95072871.38580926,28186614.07570998,0.0 + 05/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47342074.901346828,0.0,35994031.014400098,0.0,20850143.068263085,0.0,26488466.34914784,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,130674715.33315784,28186614.07570998,0.0 + 05/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62308090.70246919,0.0,45458577.28764739,0.0,29145316.975031385,0.0,37016605.38448073,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,173928590.3496287,28186614.07570998,0.0 + 05/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65560697.33275842,0.0,53275870.37354115,0.0,39502328.446102719,0.0,48056708.13270114,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,206395604.28510345,28186614.07570998,0.0 + 05/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,64206185.562812548,0.0,59649141.99496244,0.0,48715093.990853268,0.0,56994539.25340439,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,229564960.80203266,28186614.07570998,0.0 + 05/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62190508.60168841,0.0,61697607.45428479,0.0,54854089.63420604,0.0,65564190.24444159,22876.254285564693,22518.12225716316,22547.13915606847,27141.80246951196,342299945.4059098,244306395.93462084,35233267.594637479,0.0 + 05/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,54607755.74601863,0.0,55675867.07161057,0.0,49494436.92817185,0.0,60730968.92745693,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,220509028.673258,14093307.03785499,0.0 + 05/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53214869.2450601,0.0,56719043.51414669,0.0,51301694.95411623,0.0,62885387.72391287,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,224120995.4372359,63419881.67034747,0.0 + 05/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47169634.75194303,0.0,43505671.744563687,0.0,48330309.78359024,0.0,55255241.54671922,15392.509702592695,15151.537091728755,15171.061393756692,18262.625193908774,230319840.1751529,194260857.8268162,63419881.67034747,69761869.8373822 + 05/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,37690732.60552505,0.0,34307666.09397708,0.0,40248779.94687039,0.0,45408115.414207439,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,157655294.06057997,49326574.63249246,69761869.8373822 + 05/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,30686889.077069124,0.0,27537161.19034169,0.0,34040253.968524318,0.0,37837320.61940341,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,130101624.85533855,35233267.594637479,69761869.8373822 + 05/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27505879.64795816,0.0,24571359.232089085,0.0,31131662.776537029,0.0,34388164.8391239,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,117597066.49570817,35233267.594637479,62010550.96656194 + 05/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22948224.374958878,0.0,20215997.103918647,0.0,26668542.475602583,0.0,29102625.194167537,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,98935389.14864764,35233267.594637479,46507913.22492146 + 05/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,9828777.458693527,0.0,7269680.022893196,0.0,14552466.91832671,0.0,14336970.96708657,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,45987895.367000009,21139960.556782485,23253956.61246073 + 05/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,41086.86234030808,0.0,0.0,0.0,4806722.7170402579,0.0,2573733.3947370348,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,7421542.974117601,14093307.03785499,0.0 + 05/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2782945.7731436246,0.0,414146.5198236763,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,3197092.2929673006,14093307.03785499,0.0 + 05/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,177877.09863565397,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,177877.09863565397,14093307.03785499,0.0 + 05/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1986404.3457352343,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,1986404.3457352343,14093307.03785499,0.0 + 05/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13420935.621954564,0.0,21157644.498082885,0.0,26751830.343875134,0.0,24371460.906201818,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,85701871.37011439,14093307.03785499,0.0 + 05/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,41769349.45208715,0.0,47676245.18285846,0.0,46147161.9640311,0.0,54205187.73368588,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,189797944.33266259,14093307.03785499,15502637.741640486 + 05/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,68783357.4217071,0.0,68692031.49543035,0.0,64880145.50615939,0.0,77883861.82377611,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,280239396.24707296,56373228.15141996,38756594.35410121 + 05/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,78086794.40269941,0.0,69003811.84868467,0.0,61582759.54609051,0.0,74418926.15589312,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,283092291.9533677,56373228.15141996,38756594.35410121 + 05/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74688840.68500711,0.0,57918213.44028492,0.0,43993885.8487775,0.0,54227945.52967749,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,230828885.50374703,28186614.07570998,0.0 + 05/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86016435.6651598,0.0,62403749.51384269,0.0,42113404.60572988,0.0,53085371.160457868,7578.600145674574,7459.955746607577,7469.568661008936,8991.71977989037,113399439.59945324,243618960.94519026,28186614.07570998,0.0 + 05/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,94975841.285317,0.0,68303084.9435208,0.0,42988232.11211263,0.0,57025360.90472183,5028.15217773648,4949.4355173931539,4955.813370235695,5965.710622515978,75236802.0763727,263292519.2456723,28186614.07570998,0.0 + 05/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,103303244.40751377,0.0,77439395.22402144,0.0,49610865.26979634,0.0,67055795.51028557,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,297409300.41161718,28186614.07570998,0.0 + 05/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,109250873.5111287,0.0,89569450.90094172,0.0,61685582.768539328,0.0,80364987.34253982,7500.277488620052,7382.8592453603209,7392.372813050746,8898.792937054803,112227488.94270933,340870894.5231495,28186614.07570998,0.0 + 05/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,107327698.93848962,0.0,94583579.43175298,0.0,70539173.21426547,0.0,88853600.17048016,10020.620929291608,9863.746239298562,9876.456683099546,11889.0842219879,149939669.06523944,361304051.7549882,28186614.07570998,0.0 + 05/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,98905506.04112497,0.0,94768795.53245434,0.0,74941368.6135706,0.0,91998522.88114535,12474.465270489303,12279.175189570597,12294.998160111716,14800.476863821943,186656815.7423768,360614193.06829527,28186614.07570998,0.0 + 05/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,96053257.47113934,0.0,95955478.22370069,0.0,78589929.22981265,0.0,97865001.25402898,15030.931393937413,14795.619358947839,14814.685024649321,17833.62633298185,224909503.5978591,368463666.1786816,35233267.594637479,0.0 + 05/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,82965887.42987702,0.0,84465974.6691013,0.0,69093460.43749854,0.0,87512254.72192317,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,324037577.25839999,14093307.03785499,0.0 + 05/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,79571132.56509444,0.0,83555793.36880544,0.0,70282229.97325005,0.0,88592219.21759686,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,322001375.1247468,63419881.67034747,0.0 + 05/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,71055949.05063963,0.0,67747540.03868641,0.0,65978111.23569768,0.0,78978079.63471398,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,283759679.9597377,63419881.67034747,69761869.8373822 + 05/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,63552309.19765466,0.0,61002618.72044775,0.0,59457592.26622109,0.0,71311913.82755676,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,255324434.01188026,49326574.63249246,69761869.8373822 + 05/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,57249977.571761909,0.0,55130882.97291025,0.0,53928768.06829485,0.0,64657514.47000334,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,230967143.08297033,35233267.594637479,69761869.8373822 + 05/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50081040.249497327,0.0,47836657.69882959,0.0,48058483.302211608,0.0,57137909.05715518,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,203114090.30769373,35233267.594637479,62010550.96656194 + 05/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,40271866.44029401,0.0,37808212.69805759,0.0,39534938.71815023,0.0,46365748.096224669,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,163980765.9527265,35233267.594637479,46507913.22492146 + 05/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,26098677.02279606,0.0,23633427.08280865,0.0,26404575.1613966,0.0,30231166.91334905,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,106367846.18035037,21139960.556782485,23253956.61246073 + 05/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13641507.34697044,0.0,11153907.262073365,0.0,15010828.532348426,0.0,16129215.696080568,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,55935458.8374728,14093307.03785499,0.0 + 05/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11708714.788429223,0.0,9423950.867676497,0.0,13504860.349285469,0.0,14330306.02812655,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,48967832.03351773,14093307.03785499,0.0 + 05/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10743753.08232444,0.0,8768514.718978603,0.0,12504309.749377877,0.0,13326284.710771697,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,45342862.261452618,14093307.03785499,0.0 + 05/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,9727131.652665645,0.0,8896359.098955676,0.0,11725515.499275398,0.0,12273522.09748349,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,42622528.34838021,14093307.03785499,0.0 + 05/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,18598133.280113765,0.0,21732031.30073835,0.0,19463023.332833876,0.0,21796705.703456988,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,81589893.61714298,14093307.03785499,0.0 + 05/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,40008235.061225067,0.0,44052550.53608855,0.0,38574459.0075306,0.0,45494854.897156078,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,168130099.5020003,14093307.03785499,15502637.741640486 + 05/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,75522040.76561633,0.0,75418728.32885121,0.0,66480308.11952266,0.0,80346889.71918026,20458.30894659192,20138.03030353926,20163.98021103139,24273.002623468627,306119959.5046723,297767966.93317046,56373228.15141996,38756594.35410121 + 05/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,82744972.25049587,0.0,74349395.82667184,0.0,62624015.08969901,0.0,77298948.65014126,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,297017331.81700798,56373228.15141996,38756594.35410121 + 05/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60421767.35603306,0.0,51936556.66878582,0.0,36814055.034294258,0.0,45968027.25761716,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,195140406.31673027,28186614.07570998,0.0 + 05/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67464471.64151076,0.0,55860073.56060934,0.0,37665507.80255096,0.0,47536669.13162794,10135.743846921228,9977.066886176532,9989.923355197416,12025.673169243513,151662266.12713928,208526722.136299,28186614.07570998,0.0 + 05/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,84338229.95004177,0.0,62060382.76716444,0.0,37564850.0537232,0.0,50247663.819995198,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,234211126.59092463,28186614.07570998,0.0 + 05/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,92483797.94616454,0.0,69111021.38666494,0.0,42485550.19559597,0.0,57873449.90400189,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,261953819.43242736,28186614.07570998,0.0 + 05/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75389120.57183558,0.0,58010396.188669178,0.0,42671680.71842105,0.0,53379303.64851107,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,229450501.12743689,28186614.07570998,0.0 + 05/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31630493.445318846,0.0,24874542.086710629,0.0,23651989.45257462,0.0,26539988.499301878,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,106697013.48390597,28186614.07570998,0.0 + 05/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11115360.621642108,0.0,5081751.884731064,0.0,10066873.322462805,0.0,8606899.894742845,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,34870885.72357882,28186614.07570998,0.0 + 05/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4030077.583539844,0.0,409956.41429171,0.0,5096849.30660606,0.0,2404132.3180090074,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,11941015.622446623,35233267.594637479,0.0 + 05/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,0.0,14093307.03785499,0.0 + 05/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,7298224.217844859,0.0,2051746.2112738733,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,9349970.429118732,63419881.67034747,0.0 + 05/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,8852637.976057612,0.0,0.0,0.0,23578121.483650846,0.0,22242447.261336496,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,54673206.72104494,63419881.67034747,69761869.8373822 + 05/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,4844944.309030855,0.0,0.0,0.0,17824259.512699844,0.0,14853599.700293245,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,37522803.522023949,49326574.63249246,69761869.8373822 + 05/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,13260757.583416233,0.0,8695031.67772161,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,21955789.261137844,35233267.594637479,69761869.8373822 + 05/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,10693846.794642978,0.0,4971761.537177446,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,15665608.331820423,35233267.594637479,62010550.96656194 + 05/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5306865.380316303,0.0,0.0,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,5306865.380316303,35233267.594637479,46507913.22492146 + 05/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,979466.8737091267,0.0,6793816.813912859,0.0,0.0,0.0,0.0,0.0,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,46385268.725369628,0.0,21139960.556782485,23253956.61246073 + 05/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 05/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 + 05/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 05/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 05/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 05/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,0.0,14093307.03785499,15502637.741640486 + 05/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,2310820.4872694669,0.0,0.0,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,309310462.62209537,2310820.4872694669,56373228.15141996,38756594.35410121 + 05/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,10135247.127099578,0.0,4560875.35151344,0.0,11645179.086856965,0.0,8588301.104391452,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,34929602.669861439,56373228.15141996,38756594.35410121 + 05/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14392938.978369913,0.0,4400863.757008687,0.0,2903885.627979866,0.0,496558.3661201611,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,22194246.729478629,28186614.07570998,0.0 + 05/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32515802.88445175,0.0,20589604.952753389,0.0,8807119.198414997,0.0,9210765.481282609,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,71123292.51690275,28186614.07570998,0.0 + 05/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41775121.26667475,0.0,31086492.323362166,0.0,11474726.034552377,0.0,14421592.516908348,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,98757932.14149764,28186614.07570998,0.0 + 05/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40532996.05329923,0.0,30382334.17681293,0.0,13650040.791542627,0.0,17842549.28746379,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,102407920.30911859,28186614.07570998,0.0 + 05/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36266914.762238059,0.0,26815452.708755007,0.0,14876588.20878154,0.0,18187299.99339538,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,96146255.67316997,28186614.07570998,0.0 + 05/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22561934.842443967,0.0,16814463.041731504,0.0,10857632.387189748,0.0,11753101.4611627,7732.599381733982,7611.544095897946,7621.352347359667,9174.433994962623,115703747.35183518,61987131.73252791,28186614.07570998,0.0 + 05/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14259897.588049582,0.0,10226125.100043418,0.0,7132009.452324053,0.0,6770501.788492167,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,38388533.92890923,28186614.07570998,0.0 + 05/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9911532.459301068,0.0,6542535.329114801,0.0,6224199.512143245,0.0,5359910.2978403209,12896.03965596058,12694.149749392695,12710.507457009717,15300.658779699996,192964880.31142677,28038177.59839943,35233267.594637479,0.0 + 05/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1328221.1698656986,0.0,50397.96266113991,0.0,1391540.9582012124,0.0,1657.428282819456,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,2771817.5190108709,14093307.03785499,0.0 + 05/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,9433916.61547854,0.0,6785882.983943701,0.0,12967323.967534392,0.0,12352212.752493224,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,41539336.31944986,63419881.67034747,0.0 + 05/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,14605091.508952363,0.0,10991562.23103708,0.0,21299499.573178706,0.0,21122124.917935116,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,68018278.23110326,63419881.67034747,69761869.8373822 + 05/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,7528911.639870315,0.0,3562528.944569774,0.0,15372906.01644067,0.0,13486911.520287887,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,39951258.12116864,49326574.63249246,69761869.8373822 + 05/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3063646.008456063,0.0,0.0,0.0,11460877.09338991,0.0,8650657.291492494,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,23175180.393338469,35233267.594637479,69761869.8373822 + 05/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,7254102.768011251,0.0,3457662.26519325,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,10711765.033204502,35233267.594637479,62010550.96656194 + 05/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,3032194.4525669745,0.0,0.0,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,3032194.4525669745,35233267.594637479,46507913.22492146 + 05/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,1589314.6104436895,0.0,7321769.143011448,0.0,0.0,0.0,0.0,0.0,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,47597828.56199556,0.0,21139960.556782485,23253956.61246073 + 05/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,19343372.40427021,0.0,14093307.03785499,0.0 + 05/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 05/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,809533.7213272111,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,20162407.085515106,0.0,14093307.03785499,0.0 + 05/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,464677.0969224627,0.0,5281472.37804438,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,25099913.40433518,0.0,14093307.03785499,0.0 + 05/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1218363.674776573,0.0,4053771.8990293678,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,24625825.072743715,0.0,14093307.03785499,0.0 + 05/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,0.0,14093307.03785499,15502637.741640486 + 05/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9052678.55361782,0.0,11119190.365056437,0.0,456892.91266621436,0.0,8018159.708709046,0.0,20694.908356167132,20370.925705219997,20397.175722208332,24553.71879137492,338307144.4099429,0.0,56373228.15141996,38756594.35410121 + 05/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,2932238.9815936565,1924854.6199951259,5413987.066261954,0.0,1354747.7923753148,0.0,4323183.572807907,0.0,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,284933423.96969118,1924854.6199951259,56373228.15141996,38756594.35410121 + 05/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1279745.2370246144,0.0,0.0,0.0,0.0,0.0,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,193433724.04270209,1279745.2370246144,28186614.07570998,0.0 + 05/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,1303595.5153026209,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,156013010.1068924,0.0,28186614.07570998,0.0 + 05/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7236882.2218250869,0.0,0.0,0.0,0.0,810860.5413404759,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,78138476.1968643,7236882.2218250869,28186614.07570998,0.0 + 05/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12723785.590658213,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,12723785.590658213,28186614.07570998,0.0 + 05/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13147098.066294399,0.0,584533.4255355845,0.0,0.0,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,13731631.491829982,28186614.07570998,0.0 + 05/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14245645.490811406,0.0,5073484.585211281,0.0,2337941.7791626129,0.0,0.0,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,21657071.8551853,28186614.07570998,0.0 + 05/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17870058.817221304,0.0,12192657.735948358,0.0,11689735.59824007,0.0,10304892.88743835,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,52057345.03884809,28186614.07570998,0.0 + 05/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20689386.65599131,0.0,16696722.274753645,0.0,19395104.604449739,0.0,20435136.295247768,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,77216349.83044246,35233267.594637479,0.0 + 05/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14587135.660716268,0.0,12777885.52127241,0.0,16491417.963293519,0.0,17970602.92306644,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,61827042.06834863,14093307.03785499,0.0 + 05/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,17724924.13865665,0.0,19861013.60149307,0.0,22757449.289157306,0.0,25511647.069541307,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,85855034.09884833,63419881.67034747,0.0 + 05/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,11127639.796456509,0.0,7311256.508328007,0.0,19303579.897837126,0.0,17974706.003790015,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,154782937.6157136,55717182.206411648,63419881.67034747,69761869.8373822 + 05/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,1200716.2607423636,0.0,0.0,0.0,10273107.804377553,0.0,6348260.298995757,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,154829515.9915022,17822084.364115675,49326574.63249246,69761869.8373822 + 05/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,1610252.297689614,0.0,0.0,2159880.919131172,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,78981263.34377289,2159880.919131172,35233267.594637479,69761869.8373822 + 05/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3796662.9622819346,0.0,11534616.213948088,0.0,0.0,0.0,0.0,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,92678744.13560397,0.0,35233267.594637479,62010550.96656194 + 05/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9438680.243984059,0.0,15770213.940006178,0.0,0.0,0.0,1881888.3411160587,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,65791411.8426231,0.0,35233267.594637479,46507913.22492146 + 05/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,19612414.66658084,0.0,25871407.103013115,0.0,3768464.7712757925,0.0,14629424.663304132,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,102567216.7272155,0.0,21139960.556782485,23253956.61246073 + 05/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2052194.2179552399,0.0,0.0,0.0,0.0,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,21375046.656565526,0.0,14093307.03785499,0.0 + 05/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11173994.542356417,0.0,20324029.476831855,0.0,0.0,0.0,4553267.199078909,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,55355974.67963271,0.0,14093307.03785499,0.0 + 05/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21236736.03138519,0.0,27215017.65866038,0.0,6134220.633732191,0.0,16647112.455902942,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,90526115.88248733,0.0,14093307.03785499,0.0 + 05/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20045738.39562636,0.0,20186407.91658662,0.0,5950472.500693399,0.0,14958299.205684634,0.0,1287.7322736075662,1267.5725846380215,1269.2059812917717,1527.8451868725297,80409399.7136666,0.0,14093307.03785499,0.0 + 05/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6058058.772080598,0.0,834245.6690131832,0.0,0.0,0.0,1053290.224802593,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,27227975.066473999,0.0,14093307.03785499,0.0 + 05/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,77172116.4112265,0.0,14093307.03785499,15502637.741640486 + 05/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9503000.486447972,0.0,6826222.446471518,0.0,0.0,0.0,2617692.8537000345,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,328112554.8043841,0.0,56373228.15141996,38756594.35410121 + 05/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,861287.7092554665,0.0,2802433.7207934895,0.0,0.0,0.0,0.0,0.0,18086.757874954284,17803.606306340524,17826.548070242567,21459.247804640374,274297897.6322888,0.0,56373228.15141996,38756594.35410121 + 05/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,5831369.178936972,0.0,0.0,0.0,2411249.1102985686,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,201611280.68767039,0.0,28186614.07570998,0.0 + 05/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2484079.3815581935,4746058.916858589,0.0,0.0,0.0,7844089.075549902,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,167392665.2624757,2484079.3815581935,28186614.07570998,0.0 + 05/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10098224.983777112,1006817.2670054309,0.0,3319651.3989867086,0.0,7363101.393790713,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,89104328.05553395,10098224.983777112,28186614.07570998,0.0 + 05/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16915909.527784897,0.0,0.0,312334.3227325153,0.0,1481364.8761091228,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,79196346.78645662,16915909.527784897,28186614.07570998,0.0 + 05/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22028071.087038548,0.0,0.0,0.0,0.0,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,22028071.087038548,28186614.07570998,0.0 + 05/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26134698.3335109,0.0,9694997.788915337,0.0,9385893.582361069,0.0,5615167.975843168,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,116032060.94369234,50830757.680630479,28186614.07570998,0.0 + 05/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24367882.06076092,0.0,15903991.994235248,0.0,18885336.597849095,0.0,16383739.73035353,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,75540950.38319879,28186614.07570998,0.0 + 05/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19980791.02083485,0.0,13382911.681651745,0.0,22315602.40187114,0.0,21915626.51450088,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,77594931.6188586,35233267.594637479,0.0 + 05/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,16988665.73463371,0.0,13497491.294049984,0.0,20673161.244666775,0.0,21782408.326191136,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,72941726.5995416,14093307.03785499,0.0 + 05/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,17264630.366661464,0.0,18383878.185686917,0.0,24074540.38461651,0.0,25954268.24713996,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,270807213.6597829,85677317.18410485,63419881.67034747,0.0 + 05/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,8772551.489816132,0.0,3998927.4643583216,0.0,18611181.945241777,0.0,15837151.075842925,10347.454178083566,10185.462852609999,10198.587861104166,12276.85939568746,154830111.43494673,47219811.97525915,63419881.67034747,69761869.8373822 + 05/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,1317748.9298209369,0.0,0.0,0.0,11774933.549099554,0.0,7247439.864441459,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,154822986.91350315,20340122.34336195,49326574.63249246,69761869.8373822 + 05/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,4931203.6916151479,0.0,506176.6392218936,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,77401258.63503361,5437380.330837041,35233267.594637479,69761869.8373822 + 05/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,8058716.178341117,0.0,0.0,822268.9027822815,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,85468188.50683952,822268.9027822815,35233267.594637479,62010550.96656194 + 05/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7250504.016314907,0.0,14525006.17052443,0.0,0.0,0.0,0.0,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,60468927.37956741,0.0,35233267.594637479,46507913.22492146 + 05/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,20336450.69488288,0.0,27153431.295116787,0.0,3107007.040691583,0.0,13683307.556240166,0.0,2583.822553564898,2543.3723294772187,2546.6497243203668,3065.60682923434,102942221.75867999,0.0,21139960.556782485,23253956.61246073 + 05/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,370369.2374275328,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386095,1273.3248621601834,1532.80341461717,19701381.823301816,0.0,14093307.03785499,0.0 + 05/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7174868.158698926,0.0,15535493.13812785,0.0,0.0,0.0,1291714.3738010259,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,43317183.431682888,0.0,14093307.03785499,0.0 + 05/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17982396.197475576,0.0,23485481.302962483,0.0,2938186.4489363508,0.0,13061644.415500768,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,76750088.76545279,0.0,14093307.03785499,0.0 + 05/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13835995.030182152,0.0,12884317.557565177,0.0,2418433.397117283,0.0,8553204.307488937,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,56996633.75371908,0.0,14093307.03785499,0.0 + 05/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,610242.2222804192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,19941254.808154704,0.0,14093307.03785499,0.0 + 05/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,77401258.63503361,0.0,14093307.03785499,15502637.741640486 + 05/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,166718.4813777683,0.0,3332400.1016259135,0.0,13030629.021596497,0.0,8354669.924755224,20694.908356167132,20370.925705219997,20397.175722208332,24553.718791374915,309660222.86989346,24884417.529355404,56373228.15141996,38756594.35410121 + 05/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,18275651.175004029,0.0,14474776.561208396,0.0,19672520.75483721,0.0,19019896.015721289,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,270909266.55665239,71442844.50677091,56373228.15141996,38756594.35410121 + 05/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11705813.132170558,0.0,4138472.1843662059,0.0,2979593.6639675667,0.0,346701.04886937208,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,193433724.04270209,19170580.0293737,28186614.07570998,0.0 + 05/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16922586.64662031,0.0,7267465.938438209,0.0,3495939.7824566166,0.0,1005480.5585817727,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,28691472.926096906,28186614.07570998,0.0 + 05/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24562094.311630288,0.0,11909979.512052186,0.0,3785036.602809699,0.0,2621807.7866322586,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,42878918.21312443,28186614.07570998,0.0 + 05/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33304156.769109649,0.0,18768303.088682407,0.0,8073828.865248578,0.0,8927158.18255417,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,69073446.9055948,28186614.07570998,0.0 + 05/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39425548.89986437,0.0,26441055.903342539,0.0,15481244.852625993,0.0,17514702.162354765,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,98862551.81818767,28186614.07570998,0.0 + 05/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32869412.339675815,0.0,24290502.875714303,0.0,16975219.010124387,0.0,18230525.730064908,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,92365659.95557942,28186614.07570998,0.0 + 05/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27427980.46400127,0.0,21306520.444139787,0.0,17423716.31480907,0.0,17852327.266149794,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,84010544.4890999,28186614.07570998,0.0 + 05/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13480690.21398,0.0,7724004.030326366,0.0,10228540.5332627,0.0,8713326.949098554,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,40146561.72666762,35233267.594637479,0.0 + 05/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3367161.0795958426,0.0,117458.73521683968,0.0,3653343.3464484608,0.0,746176.3411686117,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,7884139.5024297549,14093307.03785499,0.0 + 05/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,10252085.181603335,0.0,3272167.9031840299,0.0,13036374.23431001,0.0,10752137.011807098,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,37312764.33090447,63419881.67034747,0.0 + 05/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,11545808.488188414,0.0,4430668.69932291,0.0,20534215.13288823,0.0,17272239.771966507,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,53782932.092366058,63419881.67034747,69761869.8373822 + 05/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,3757337.3385928806,0.0,0.0,0.0,13610048.432830457,0.0,9312858.054618597,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,26680243.826041938,49326574.63249246,69761869.8373822 + 05/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,375457.8902673471,0.0,0.0,0.0,8926640.779964239,0.0,5119800.446177836,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,14421899.116409423,35233267.594637479,69761869.8373822 + 05/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5538855.798919207,0.0,681497.6306219964,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,6220353.429541204,35233267.594637479,62010550.96656194 + 05/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3155645.114764612,0.0,0.0,2236892.1986396948,0.0,0.0,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,41819452.942526537,2236892.1986396948,35233267.594637479,46507913.22492146 + 05/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,9671728.800388575,0.0,19774322.64204713,0.0,0.0,0.0,2075108.4610790925,0.0,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,70198513.55141224,0.0,21139960.556782485,23253956.61246073 + 05/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,19343372.40427021,0.0,14093307.03785499,0.0 + 05/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1025045.118584341,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,20368417.52285455,0.0,14093307.03785499,0.0 + 05/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3702370.079106264,0.0,10219097.015018626,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,33272128.991028634,0.0,14093307.03785499,0.0 + 05/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6687177.763028026,0.0,11100078.72526142,0.0,0.0,0.0,368873.10335873047,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,37506791.48855192,0.0,14093307.03785499,0.0 + 05/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6032035.161451334,0.0,9950322.29218455,0.0,0.0,0.0,2003134.5142544367,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,37333359.16985452,0.0,14093307.03785499,0.0 + 05/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,245469.91524691974,0.0,2566292.179933723,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,22162423.992084385,0.0,14093307.03785499,15502637.741640486 + 05/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12684113.88420723,0.0,13461123.570012337,0.0,3855627.0668892737,0.0,12966706.69393406,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.44582678517,120370218.80265787,0.0,56373228.15141996,38756594.35410121 + 05/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13990422.685820802,0.0,20678252.212269986,0.0,7620592.238314235,0.0,15601869.904130802,0.0,12932.244602686838,12729.787900923926,12746.191531936709,15343.614566962919,251397756.00957323,0.0,56373228.15141996,38756594.35410121 + 05/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5677495.911137907,0.0,9872369.818026226,0.0,6540769.603262664,0.0,11338022.585379215,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,226862381.9605081,0.0,28186614.07570998,0.0 + 05/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1600231.694179363,0.0,5300076.521949854,0.0,4316751.891598611,0.0,7880906.644454068,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,212531690.794884,0.0,28186614.07570998,0.0 + 05/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5426377.601554235,0.0,9714505.683773272,0.0,6312494.491304232,0.0,11096681.314984328,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,148667299.2767434,0.0,28186614.07570998,0.0 + 05/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13351564.46830364,0.0,18627802.80155745,0.0,10025204.252626244,0.0,17033489.5768363,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,175160644.67553366,0.0,28186614.07570998,0.0 + 05/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9102524.28031983,0.0,13952628.264692264,0.0,8426203.175709878,0.0,14223715.812107675,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,161822311.71795703,0.0,28186614.07570998,0.0 + 05/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8667048.658468232,0.0,13177783.994152395,0.0,8143063.52285878,0.0,13657104.882363415,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,159767584.6340528,0.0,28186614.07570998,0.0 + 05/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10669177.686885715,0.0,15239884.964941562,0.0,8310347.9407123909,0.0,14309416.402038355,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,319469054.0932085,0.0,28186614.07570998,0.0 + 05/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,16039113.374691077,0.0,21379337.50270426,0.0,9626726.178518936,0.0,17113300.266063006,0.0,23281.771900688025,22917.291418372493,22946.822687484375,27622.933640296782,412526228.0506073,0.0,35233267.594637479,0.0 + 05/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24300725.17984681,0.0,29840904.5052649,0.0,14303986.71561458,0.0,23416466.086684985,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,362814777.49856796,0.0,14093307.03785499,0.0 + 05/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10254729.719614841,0.0,13236452.910497947,0.0,418443.81389744809,0.0,5154055.222457584,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,300003908.7650983,0.0,63419881.67034747,0.0 + 05/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,1871912.9824724585,0.0,6927124.098053135,0.0,0.0,0.0,0.0,0.0,15521.181267125348,15278.194278914994,15297.88179165625,18415.28909353119,241044204.23294563,0.0,63419881.67034747,69761869.8373822 + 05/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,6347891.648895761,0.0,11950831.53112978,0.0,0.0,0.0,0.0,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,211835618.16940329,0.0,49326574.63249246,69761869.8373822 + 05/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9832593.206673632,0.0,15346796.625549615,0.0,0.0,0.0,1601745.528620761,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,181610651.3523462,0.0,35233267.594637479,69761869.8373822 + 05/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12974574.719837998,0.0,18609013.57941346,0.0,0.0,0.0,6067790.971672642,0.0,7760.03091819748,7638.546186540759,7648.38923295232,9206.98046585044,153765587.7636717,0.0,35233267.594637479,62010550.96656194 + 05/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17098074.04958759,0.0,22722716.135615618,0.0,1330436.9498236513,0.0,10711175.190768717,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,129271874.65429399,0.0,35233267.594637479,46507913.22492146 + 05/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,24680960.889202909,0.0,30122291.578903986,0.0,10084379.20553962,0.0,19791507.149998134,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,123383874.98789385,0.0,21139960.556782485,23253956.61246073 + 05/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 05/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2238315.28383895,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413465,21581687.68810916,0.0,14093307.03785499,0.0 + 05/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2586728.1309415756,0.0,6712949.999612895,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,28643050.53482468,0.0,14093307.03785499,0.0 + 05/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2241704.831801154,0.0,4384112.772221228,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,25969190.008292594,0.0,14093307.03785499,0.0 + 05/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 05/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,15502637.741640486 + 05/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4180366.5775392905,0.0,5034001.595216169,0.0,0.0,0.0,1449109.3559077129,0.0,1292.4234856257434,1272.190354856909,1273.8297019789123,1533.4111308575248,30002154.352611897,0.0,56373228.15141996,38756594.35410121 + 05/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4236896.875234199,0.0,5597714.838919689,0.0,202369.5862141962,0.0,5287566.517701222,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,92652163.47359313,0.0,56373228.15141996,38756594.35410121 + 05/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4357770.167849193,0.0,7733742.731813864,0.0,1780057.8366212459,0.0,5675120.869126923,0.0,7751.825070850429,7630.468803264726,7640.301441143494,9197.244541209617,135538115.088697,0.0,28186614.07570998,0.0 + 05/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6936743.610030291,0.0,9677838.159834948,0.0,4366501.522472722,0.0,8832569.841760755,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,145845714.07779105,0.0,28186614.07570998,0.0 + 05/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2677420.100807343,0.0,4922977.039495679,0.0,2761707.7642626569,0.0,5856299.671669301,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,93546020.23175882,0.0,28186614.07570998,0.0 + 05/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,392115.5786231683,0.0,2628768.1655409105,0.0,1541544.0798864468,0.0,4136305.5009497397,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,86026348.98052411,0.0,28186614.07570998,0.0 + 05/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3829058.996264273,0.0,6146216.863978977,0.0,2970023.5520723045,0.0,6250624.984927703,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,135227985.3409356,0.0,28186614.07570998,0.0 + 05/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7251450.29883611,0.0,10076416.582670115,0.0,4512686.7650212929,0.0,8698466.740130762,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,185285999.62081994,0.0,28186614.07570998,0.0 + 05/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9904361.279292835,0.0,13472032.271660917,0.0,5334850.142475367,0.0,10741385.601528716,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,232931301.3145998,0.0,28186614.07570998,0.0 + 05/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17236377.093827677,0.0,21988593.754927994,0.0,8895483.32532958,0.0,16439628.267241575,0.0,15518.693523224205,15275.745481108712,15295.429838324051,18412.33748035551,296768025.2041717,0.0,35233267.594637479,0.0 + 05/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24251391.871260004,0.0,29451602.226616064,0.0,13927660.073605922,0.0,23121766.214524498,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,361692647.48463699,0.0,14093307.03785499,0.0 + 05/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,18773321.739697309,0.0,24828437.647360956,0.0,5857789.273114951,0.0,14146408.47761371,0.0,10347.454178083566,10185.462852609999,10198.587861104166,12276.85939568746,218436068.5727336,0.0,63419881.67034747,0.0 + 05/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,8409709.434792728,0.0,15102337.674677944,0.0,0.0,0.0,409649.8825560382,0.0,7760.590633562674,7639.097139457497,7648.940895828125,9207.644546765596,140044280.5682367,0.0,63419881.67034747,69761869.8373822 + 05/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,11937450.290994544,0.0,18701781.56666649,0.0,0.0,0.0,4159179.674429615,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,112213467.24956398,0.0,49326574.63249246,69761869.8373822 + 05/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15936823.835933555,0.0,22738781.43144227,0.0,0.0,0.0,8601071.939538956,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,124691435.20266588,0.0,35233267.594637479,69761869.8373822 + 05/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18413382.313378294,0.0,25264004.87600305,0.0,1529065.6142506605,0.0,11317912.737948776,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,133939123.53733188,0.0,35233267.594637479,62010550.96656194 + 05/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21872399.23411325,0.0,28668370.881252558,0.0,5622403.13362614,0.0,15328639.904063775,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,148906571.14880685,0.0,35233267.594637479,46507913.22492146 + 05/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,28335196.372000085,0.0,34604065.86397145,0.0,12721946.443334608,0.0,23339645.641723698,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,137708233.31890539,0.0,21139960.556782485,23253956.61246073 + 05/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1009625.2043755839,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,20361993.286500183,0.0,14093307.03785499,0.0 + 05/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10243183.453899458,0.0,18935051.0280646,0.0,0.0,0.0,3243127.3461454675,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,51773729.91023413,0.0,14093307.03785499,0.0 + 05/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17489278.533314088,0.0,22601737.436980077,0.0,2801548.4524373349,0.0,12479877.3610461,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,74722756.44253601,0.0,14093307.03785499,0.0 + 05/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18489217.54788829,0.0,23437415.296512024,0.0,5859545.991522195,0.0,14039472.224413326,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,81175965.71909423,0.0,14093307.03785499,0.0 + 05/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17926741.792207853,0.0,22676573.836837058,0.0,6192187.969323067,0.0,13889526.992485837,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,80037398.67297842,0.0,14093307.03785499,0.0 + 05/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13899221.641391108,0.0,18525112.25539685,0.0,3194995.893933651,0.0,9785183.577790153,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,122813985.69701016,0.0,14093307.03785499,15502637.741640486 + 05/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,26389432.363350136,0.0,32647345.632168868,0.0,15528446.535580418,0.0,24060675.93184151,0.0,20691.220063831403,20367.29515378883,20393.540492441087,24549.34277330935,408230935.0030753,0.0,56373228.15141996,38756594.35410121 + 05/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,41814261.17002029,0.0,47781395.10881924,0.0,28688000.46511379,0.0,41823774.9469467,0.0,18104.817555852474,17821.38325956522,17844.34793088595,21480.674926645683,431011836.9135176,0.0,56373228.15141996,38756594.35410121 + 05/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32002012.69863949,0.0,37380530.97911995,0.0,23665925.612582856,0.0,34075391.02360964,0.0,12933.384863662466,12730.910310901267,12747.315388253866,15344.967443084064,320647541.1351979,0.0,28186614.07570998,0.0 + 05/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18641519.191920613,0.0,22879074.56200687,0.0,16611669.69143863,0.0,23803103.481577018,0.0,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,236758353.84044627,0.0,28186614.07570998,0.0 + 05/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12990533.447818164,0.0,16789851.090559327,0.0,12462520.248488944,0.0,18265537.655559079,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,137899911.2502823,0.0,28186614.07570998,0.0 + 05/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11979210.955804874,0.0,15898754.793907956,0.0,10772464.723881707,0.0,16406023.603131388,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,132447922.88458273,0.0,28186614.07570998,0.0 + 05/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3708441.572392432,0.0,7361078.359076924,0.0,7017548.365234234,0.0,10785499.731037658,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,106275215.6153562,0.0,28186614.07570998,0.0 + 05/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1148950.8485823172,0.0,4776233.260013946,0.0,4398287.527003045,0.0,7703479.56899956,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,134059012.14829119,0.0,28186614.07570998,0.0 + 05/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4680403.904931576,0.0,7921565.136379112,0.0,4806620.079197228,0.0,8640150.09901447,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,219482463.2622245,0.0,28186614.07570998,0.0 + 05/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3814161.8162433237,0.0,6866286.98183002,0.0,2977575.56032147,0.0,6717427.724181795,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,213854124.10221858,0.0,35233267.594637479,0.0 + 05/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9020460.680232594,0.0,12062061.454768151,0.0,5703424.967810783,0.0,10021370.349541098,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,307677458.27985146,0.0,14093307.03785499,0.0 + 05/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,1647401.3881363557,0.0,5788262.152895649,0.0,0.0,0.0,0.0,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,278305804.36853078,0.0,63419881.67034747,0.0 + 05/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,1137751.9205481625,0.0,0.0,451149.94375918756,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,155956696.57754494,451149.94375918756,63419881.67034747,69761869.8373822 + 05/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,6890677.335207082,0.0,0.0,270639.7671387525,0.0,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,161709621.99220387,270639.7671387525,49326574.63249246,69761869.8373822 + 05/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4238847.268933561,0.0,9625996.089604024,0.0,0.0,0.0,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,91279601.35428868,0.0,35233267.594637479,69761869.8373822 + 05/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,6033956.043926518,0.0,11373251.67270527,0.0,0.0,0.0,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,94821965.71238289,0.0,35233267.594637479,62010550.96656194 + 05/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11617625.689947349,0.0,17037043.216404756,0.0,0.0,0.0,4867650.57774625,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,72222948.80161515,0.0,35233267.594637479,46507913.22492146 + 05/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,20848099.109519118,0.0,26180232.48721444,0.0,5662610.253186658,0.0,16383676.503590644,0.0,2586.4025079789255,2545.911894223604,2549.192561555136,3068.6678466636687,107775247.67102766,0.0,21139960.556782485,23253956.61246073 + 05/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,263069.94405225259,0.0,0.0,0.0,0.0,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,19599936.183895738,0.0,14093307.03785499,0.0 + 05/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6351802.158095273,0.0,13558065.154171495,0.0,0.0,0.0,543904.7891121007,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,39796524.86289968,0.0,14093307.03785499,0.0 + 05/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14666840.277223286,0.0,19161472.52935497,0.0,645819.6826632602,0.0,9862681.10882648,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,63667826.18394229,0.0,14093307.03785499,0.0 + 05/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11724698.883453746,0.0,10291101.759266846,0.0,1970259.6342744858,0.0,6575785.324508655,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,49892858.18737801,0.0,14093307.03785499,0.0 + 05/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,621716.150647288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,19968424.747011328,0.0,14093307.03785499,0.0 + 05/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,208324.80323812049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,77595159.18869427,0.0,14093307.03785499,15502637.741640486 + 05/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13704570.720834077,0.0,11837237.403074865,0.0,1470924.8795407916,0.0,9055713.051710194,0.0,20694.828767982373,20370.84736300312,20397.097279039517,24553.624363031773,345727478.0381643,0.0,56373228.15141996,38756594.35410121 + 05/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9014606.091212396,0.0,10417791.361547782,0.0,4017177.7416933674,0.0,8038774.728947276,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,302295563.5831837,0.0,56373228.15141996,38756594.35410121 + 05/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9303499.455330357,0.0,0.0,0.0,0.0,0.0,0.0,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,9303499.455330357,28186614.07570998,0.0 + 05/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20950047.27768692,0.0,2377440.8136419139,0.0,0.0,0.0,0.0,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,23327488.091328835,28186614.07570998,0.0 + 05/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23799672.643905187,0.0,6922489.45674067,0.0,0.0,0.0,0.0,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,30722162.100645856,28186614.07570998,0.0 + 05/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28736103.814242387,0.0,12176424.3549783,0.0,3925745.6834697995,0.0,3499264.179643441,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,48337538.032333929,28186614.07570998,0.0 + 05/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36305567.80276872,0.0,20757752.751607676,0.0,12655411.986041017,0.0,14402906.63881534,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,84121639.17923276,28186614.07570998,0.0 + 05/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38218310.04027096,0.0,27032384.504625698,0.0,21375731.496923344,0.0,23544471.4472697,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,110170897.4890897,28186614.07570998,0.0 + 05/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37088729.03215869,0.0,31525679.42872569,0.0,27712791.53307978,0.0,29963755.311273833,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,126290955.30523798,28186614.07570998,0.0 + 05/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33375674.544975625,0.0,29499870.792158709,0.0,28819040.369050486,0.0,32515949.299151079,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,124210535.0053359,35233267.594637479,0.0 + 05/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,28644663.122369667,0.0,27545662.0422526,0.0,27057529.60999506,0.0,31778811.08018639,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,115026665.85480371,14093307.03785499,0.0 + 05/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,29915361.146941857,0.0,32079235.196637744,0.0,31590039.536638045,0.0,37028456.3986549,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,130613092.27887255,63419881.67034747,0.0 + 05/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,23499251.30655307,0.0,19863620.307386105,0.0,29087740.751425968,0.0,30711750.687498385,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,103162363.05286353,63419881.67034747,69761869.8373822 + 05/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,10912249.67078325,0.0,6081127.267278677,0.0,19197858.29437168,0.0,17580150.133566407,10345.79568214947,10183.830320739144,10196.953225549367,12274.891653570337,154805295.17522998,53771385.36600001,49326574.63249246,69761869.8373822 + 05/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3267763.6899100735,0.0,0.0,0.0,12935862.86541703,0.0,9554523.985380574,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,25758150.540707675,35233267.594637479,69761869.8373822 + 05/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,664049.1359422135,0.0,0.0,0.0,10427092.450934049,0.0,6642820.722633077,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,17733962.309509338,35233267.594637479,62010550.96656194 + 05/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,3889647.927502243,0.0,336572.86225534157,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,38705746.728375788,4226220.789757584,35233267.594637479,46507913.22492146 + 05/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,2810234.373111414,0.0,8297475.821527226,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,49809033.98844613,0.0,21139960.556782485,23253956.61246073 + 05/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 05/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.426797998898,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 + 05/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3924468.3156714218,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,23278157.814609197,0.0,14093307.03785499,0.0 + 05/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1217074.4250057177,0.0,1926935.7047334023,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,22494324.788497524,0.0,14093307.03785499,0.0 + 05/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 + 05/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,189129.70492746566,0.0,5453184.908072021,0.0,208242.2308062733,5169.693942502973,5088.761419427636,5095.318807915649,6133.644523430099,77354707.29579488,5850556.84380576,14093307.03785499,15502637.741640486 + 05/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,17510814.058267677,0.0,26153413.22720438,0.0,33867615.216033447,0.0,33624200.10091971,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,111156042.60242522,56373228.15141996,38756594.35410121 + 05/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,33924296.836683649,0.0,30642824.58717734,0.0,33132329.260488817,0.0,36251678.08631594,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,133951128.77066575,56373228.15141996,38756594.35410121 + 05/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32037423.32490179,0.0,20976250.00174322,0.0,17668367.710429096,0.0,18911243.707402383,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,89593284.74447647,28186614.07570998,0.0 + 05/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41423841.136130038,0.0,25267035.0339429,0.0,15950511.285267812,0.0,17822522.096253776,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,100463909.55159453,28186614.07570998,0.0 + 05/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47152885.61576323,0.0,29841347.088056096,0.0,14861894.400825182,0.0,18523173.756286194,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,110379300.8609307,28186614.07570998,0.0 + 05/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53536850.571773547,0.0,36041373.12473081,0.0,19239603.457141766,0.0,25419284.113909224,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,134237111.26755537,28186614.07570998,0.0 + 05/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57673634.786726508,0.0,42388034.76788633,0.0,27671779.045976238,0.0,34929323.63642436,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,162662772.23701344,28186614.07570998,0.0 + 05/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58834978.7849667,0.0,48928919.41234765,0.0,37531906.11573058,0.0,44997479.512865219,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,190293283.82591016,28186614.07570998,0.0 + 05/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56583094.79430954,0.0,53558907.3034116,0.0,45238473.35458496,0.0,52586292.48833431,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,207966767.94064043,28186614.07570998,0.0 + 05/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,56277095.85242132,0.0,54925476.620774287,0.0,50037036.236982438,0.0,60131688.26883474,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,221371296.9790128,35233267.594637479,0.0 + 05/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,49536146.02942195,0.0,51189651.90508165,0.0,45535476.03943352,0.0,56485273.41202325,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,202746547.38596038,14093307.03785499,0.0 + 05/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,48632481.73567254,0.0,54949144.29585686,0.0,47582305.755887668,0.0,58928969.96104909,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,210092901.74846614,63419881.67034747,0.0 + 05/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,39995685.27621219,0.0,37915467.16514063,0.0,42452271.42549176,0.0,48506021.544427979,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,168869445.41127257,63419881.67034747,69761869.8373822 + 05/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,33096808.91089611,0.0,29805612.27870941,0.0,36661499.31236513,0.0,41105617.82029261,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,140669538.32226328,49326574.63249246,69761869.8373822 + 05/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26834306.857916275,0.0,23733163.5808034,0.0,30998767.782878058,0.0,34228815.86160267,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,115795054.0832004,35233267.594637479,69761869.8373822 + 05/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20795019.96897799,0.0,17541514.079269019,0.0,25754770.5122841,0.0,27577838.038341308,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,91669142.59887243,35233267.594637479,62010550.96656194 + 05/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13136016.837076219,0.0,9750394.992202454,0.0,18979266.060733208,0.0,19080073.329821834,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,38650625.798606548,60945751.21983371,35233267.594637479,46507913.22492146 + 05/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,749989.5431897206,0.0,0.0,0.0,6811578.972373484,0.0,3973571.931979251,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,11535140.447542455,21139960.556782485,23253956.61246073 + 05/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 05/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 05/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 05/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 05/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,4567085.904593099,0.0,7527499.479822807,0.0,2871017.796375137,1292.4234856257434,1272.190354856909,1273.8297019789123,1533.4111308575248,19338676.82394872,14965603.18079104,14093307.03785499,0.0 + 05/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20875489.532594917,0.0,28312074.399828376,0.0,30567733.422069163,0.0,31360488.151272037,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,111115785.50576447,14093307.03785499,15502637.741640486 + 05/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44214511.547996629,0.0,46433732.52068472,0.0,48542048.87246832,0.0,55532615.09627508,20620.265017957285,20297.450922394528,20323.606259625776,24465.157319900325,308543326.2715605,194722908.03742475,56373228.15141996,38756594.35410121 + 05/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,51298025.61664521,0.0,47171408.68029757,0.0,45566378.87574886,0.0,52901381.149446729,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,196937194.32213835,56373228.15141996,38756594.35410121 + 05/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48560727.93952875,0.0,37403067.54058987,0.0,29050429.04518346,0.0,34251697.8091053,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,149265922.3344074,28186614.07570998,0.0 + 05/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56740404.68318829,0.0,40758416.9901245,0.0,26115929.99649155,0.0,31715043.865291563,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,155329795.5350959,28186614.07570998,0.0 + 05/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61343910.4708836,0.0,44213809.990232277,0.0,24005461.53330415,0.0,31168333.0151281,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,160731515.00954814,28186614.07570998,0.0 + 05/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67497005.88339478,0.0,50188294.999373998,0.0,28102320.98671098,0.0,37725165.701722,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,183512787.57120178,28186614.07570998,0.0 + 05/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69757505.98161009,0.0,55311140.677018519,0.0,35777504.530083779,0.0,46073233.03113144,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,206919384.2198438,28186614.07570998,0.0 + 05/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67785681.41029255,0.0,58614414.249751437,0.0,43314101.42530951,0.0,53174770.34367511,7625.418095188231,7506.0407523877179,7515.713052022824,9047.267489837323,114099981.80196993,222888967.4290286,28186614.07570998,0.0 + 05/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62708827.45670025,0.0,60027414.98013681,0.0,48714779.20898382,0.0,57984146.98328937,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,229435168.62911026,28186614.07570998,0.0 + 05/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,61543435.27788602,0.0,60769017.43683087,0.0,52541070.29134683,0.0,64202877.54101142,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,239056400.54707516,35233267.594637479,0.0 + 05/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,54682435.43474641,0.0,56946446.67976534,0.0,48059636.6644042,0.0,60489700.32141599,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,220178219.10033194,14093307.03785499,0.0 + 05/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,55838946.086829,0.0,62448700.19596989,0.0,52533768.537423,0.0,65636286.77475026,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,236457701.59497214,63419881.67034747,0.0 + 05/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47014413.847277458,0.0,45165962.10066025,0.0,48033662.42046571,0.0,55741584.733677949,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,195955623.10208137,63419881.67034747,69761869.8373822 + 05/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,34339001.343404199,0.0,30996540.500098666,0.0,37685085.70457133,0.0,42250572.52333355,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,145271200.07140775,49326574.63249246,69761869.8373822 + 05/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26224109.90762293,0.0,22897762.198175946,0.0,30911582.630152964,0.0,33730971.507267188,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,113764426.24321902,35233267.594637479,69761869.8373822 + 05/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20123214.16647297,0.0,16785443.399402676,0.0,25907670.849924715,0.0,27426289.6814119,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,90242618.09721226,35233267.594637479,62010550.96656194 + 05/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11834258.663805409,0.0,8479678.750746109,0.0,18709118.60821846,0.0,18430800.93437857,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,57453856.95714855,35233267.594637479,46507913.22492146 + 05/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,1016958.8958030117,0.0,0.0,0.0,8221808.416089196,0.0,5808115.822240467,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,15046883.134132673,21139960.556782485,23253956.61246073 + 05/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1912492.136907323,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,1912492.136907323,14093307.03785499,0.0 + 05/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,214266.98037359667,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,214266.98037359667,14093307.03785499,0.0 + 05/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 05/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 05/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 + 05/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,77401258.63503361,0.0,14093307.03785499,15502637.741640486 + 05/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,13380423.939831663,0.0,4958490.5456533,20694.82876798237,20370.847363003115,20397.097279039514,24553.62436303177,309659031.9830044,18338914.48548496,56373228.15141996,38756594.35410121 + 05/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,15573272.663709393,0.0,6753865.418744324,0.0,17876491.53798022,0.0,15682405.916937596,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,270952695.0111567,55886035.53737152,56373228.15141996,38756594.35410121 + 05/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13698375.117478023,0.0,0.0,0.0,3199670.9959726019,0.0,10480.374627438145,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,193478672.01964198,16908526.48807806,28186614.07570998,0.0 + 05/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23148346.67032347,0.0,4070295.013128957,0.0,1683576.2451626119,0.0,0.0,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,28902217.928615039,28186614.07570998,0.0 + 05/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29753796.682087114,0.0,9148660.219596347,0.0,982157.4308861015,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,39884614.33256956,28186614.07570998,0.0 + 05/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37995528.3520471,0.0,16004154.804074772,0.0,5703396.397650523,0.0,7082385.359269468,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,66785464.91304186,28186614.07570998,0.0 + 05/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43830332.96942605,0.0,24078185.196529155,0.0,15301337.113671488,0.0,17730707.07646311,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,100940562.3560898,28186614.07570998,0.0 + 05/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44476654.76208282,0.0,30267328.270519377,0.0,25113023.748168429,0.0,27593027.674786219,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,127450034.45555684,28186614.07570998,0.0 + 05/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40778890.9116452,0.0,33559196.5461035,0.0,31775182.266427444,0.0,33889643.25533482,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,140002912.97951097,28186614.07570998,0.0 + 05/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,39781681.78197304,0.0,34914278.274031799,0.0,36516578.39112805,0.0,41333481.94122729,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,152546020.38836018,35233267.594637479,0.0 + 05/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,31791153.97913138,0.0,29869312.26914344,0.0,31315468.245403164,0.0,36626669.237054217,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,129602603.73073219,14093307.03785499,0.0 + 05/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,30348848.08486045,0.0,32763394.342465074,0.0,33267085.168409926,0.0,38840917.86365762,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,270573798.44411638,135220245.45939309,63419881.67034747,0.0 + 05/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,23353193.6812154,0.0,18956904.109454678,0.0,29287681.135979266,0.0,30618211.36960234,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154701073.47113923,102215990.29625169,63419881.67034747,69761869.8373822 + 05/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,15398460.848547616,0.0,9908496.34538224,0.0,22448645.7469095,0.0,21853522.114119058,10342.345082397498,10180.433740769997,10193.552268740248,12270.797648682112,154753663.4661235,69609125.05495842,49326574.63249246,69761869.8373822 + 05/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9385072.090692336,0.0,4314018.798953735,0.0,17104733.817429034,0.0,15369621.511757115,5171.787190243269,5090.821896984065,5097.3819406077159,6136.128081969782,77386028.79529739,46173446.21883222,35233267.594637479,69761869.8373822 + 05/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5840341.619221523,0.0,1099964.1518007348,0.0,13984003.681284406,0.0,11471833.380763725,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,32396142.833070388,35233267.594637479,62010550.96656194 + 05/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2819022.1311750088,0.0,0.0,0.0,10640459.219415965,0.0,7675130.6001288979,2583.603097553539,2543.156309090657,2546.4334255694886,3065.3464530540138,38658741.42696372,21134611.95071987,35233267.594637479,46507913.22492146 + 06/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,2573345.244218854,0.0,124984.39664778701,2580.233370648557,2539.839335888994,2543.112178109299,3061.348400711636,38608319.82729055,2698329.640866641,21139960.556782485,23253956.61246073 + 06/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 + 06/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,0.0,14093307.03785499,0.0 + 06/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,0.0,14093307.03785499,0.0 + 06/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 + 06/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 + 06/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,15502637.741640486 + 06/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,20357561.571970419,0.0,17262726.142251269,0.0,27394242.5841161,0.0,23856629.93692977,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,88871160.23526755,56373228.15141996,38756594.35410121 + 06/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29700488.002819044,0.0,26904152.288294227,0.0,28429882.584305657,0.0,31699548.76320438,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,116734071.6386233,56373228.15141996,38756594.35410121 + 06/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16545770.308795857,0.0,13855976.755116605,0.0,11056704.301725092,0.0,11768219.974591533,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,53226671.34022908,28186614.07570998,0.0 + 06/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41850122.46645125,0.0,36497312.81652995,0.0,22376825.674976879,0.0,27613818.038698283,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,128338078.99665636,28186614.07570998,0.0 + 06/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56122990.85740083,0.0,51998508.364848967,0.0,30340131.531465357,0.0,39627829.59238052,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,178089460.34609569,28186614.07570998,0.0 + 06/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47939788.239594589,0.0,45520324.08059731,0.0,31320244.524036249,0.0,39748931.88198639,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,164529288.72621454,28186614.07570998,0.0 + 06/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55781438.39437823,0.0,49433371.599185857,0.0,35976632.90829561,0.0,45322423.79226726,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,186513866.69412697,28186614.07570998,0.0 + 06/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,64750157.69759538,0.0,59565025.84312533,0.0,45872483.23101765,0.0,56475743.9327345,7567.563776939034,7449.092154283424,7458.691069837249,8978.625549669745,113234301.18262604,226663410.70447285,28186614.07570998,0.0 + 06/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57724096.16365878,0.0,57174387.75542059,0.0,44067563.05268201,0.0,53322521.43744939,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,212288568.40921078,28186614.07570998,0.0 + 06/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,52453779.05098854,0.0,52659716.43798168,0.0,39376128.90881772,0.0,48985484.314964357,22805.423655572766,22448.400493897192,22477.327549194186,27057.764630797905,341240098.7860634,193475108.7127523,35233267.594637479,0.0 + 06/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,49746189.13572566,0.0,52636892.86759563,0.0,40678881.45957175,0.0,51798208.35248631,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,194860171.81537936,14093307.03785499,0.0 + 06/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53206203.5572561,0.0,56305072.81376686,0.0,47833904.94652817,0.0,59305863.85985507,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,216651045.1774062,63419881.67034747,0.0 + 06/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,60593401.80868341,0.0,59840444.56168128,0.0,58761855.679176229,0.0,70157946.88390884,15250.836190376462,15012.081504775435,15031.426104045648,18094.534979674645,228199963.60393987,249353648.93344978,63419881.67034747,69761869.8373822 + 06/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,51658615.61220376,0.0,50394209.060977417,0.0,51259955.03133954,0.0,60596930.08987768,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,213909709.7943984,49326574.63249246,69761869.8373822 + 06/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,41336452.09625448,0.0,39854211.962032567,0.0,42661968.60639064,0.0,49655601.36427749,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,173508234.0289552,35233267.594637479,69761869.8373822 + 06/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34180963.844611089,0.0,32468141.10354405,0.0,36877533.11621267,0.0,42252743.33606727,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,145779381.4004351,35233267.594637479,62010550.96656194 + 06/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,28003001.34673413,0.0,26341151.96218171,0.0,30985842.837272299,0.0,35110448.81281007,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,120440444.95899822,35233267.594637479,46507913.22492146 + 06/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15700087.71402943,0.0,14354969.531658739,0.0,18829673.989206833,0.0,20699719.944707715,2562.6938725460224,2522.574421901245,2525.8250165176834,3040.5384557367817,38345874.360126238,69584451.17960271,21139960.556782485,23253956.61246073 + 06/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5651245.192531016,0.0,4414846.415861893,0.0,8884656.711554066,0.0,8834443.12124839,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,27785191.44119536,14093307.03785499,0.0 + 06/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3053503.4017023409,0.0,1361999.308596835,0.0,6923994.757559212,0.0,6325146.595174646,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,17664644.063033035,14093307.03785499,0.0 + 06/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1387587.3598512593,0.0,0.0,0.0,5862967.150643779,0.0,4905641.913387387,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,12156196.423882425,14093307.03785499,0.0 + 06/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1042588.2977782664,0.0,425928.5310276759,0.0,5383980.552090663,0.0,3992690.1241349356,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,10845187.505031541,14093307.03785499,0.0 + 06/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12852628.6356299,0.0,16620212.001831126,0.0,14155787.398510185,0.0,15227691.619232245,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,58856319.65520346,14093307.03785499,0.0 + 06/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,43612588.92174942,0.0,48479836.66042832,0.0,39220985.509281847,0.0,47609906.39851416,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,178923317.48997373,14093307.03785499,15502637.741640486 + 06/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,78557450.35343233,0.0,80064620.06129697,0.0,70685210.66173336,0.0,86736391.58320067,1272.453719511863,1252.533219156898,1254.1472360531896,1509.7177656562424,19039866.985361495,316043672.6596633,56373228.15141996,38756594.35410121 + 06/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,91335780.28195876,0.0,88195765.94582314,0.0,73319455.48332274,0.0,90466108.5688792,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,343317110.2799838,56373228.15141996,38756594.35410121 + 06/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86516932.39988229,0.0,76200171.15179774,0.0,53333222.145701069,0.0,67757599.14813362,7578.600145674574,7459.955746607577,7469.568661008936,8991.71977989037,113399439.59945324,283807924.8455147,28186614.07570998,0.0 + 06/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88473346.7617577,0.0,79148895.94170133,0.0,50479934.890788849,0.0,65207947.68502083,7553.923122536451,7435.665046870175,7445.246660225623,8962.44143391687,113030194.54877684,283310125.2792687,28186614.07570998,0.0 + 06/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,92030187.12210378,0.0,78975867.48422456,0.0,47338022.2871573,0.0,63646465.293333787,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,281990542.18681946,28186614.07570998,0.0 + 06/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,92716203.17036896,0.0,80315343.99372372,0.0,50094042.631357397,0.0,68413580.69962901,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,291539170.49507907,28186614.07570998,0.0 + 06/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,99520324.29213183,0.0,89218222.36347273,0.0,61326231.52010641,0.0,81802793.61331842,7515.465696968707,7397.8096794739199,7407.342512324661,8916.813166490925,112454751.79892956,331867571.78902938,28186614.07570998,0.0 + 06/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,98312895.41486228,0.0,93417067.36290291,0.0,72064974.6167396,0.0,92189612.51178196,10020.620929291608,9863.746239298562,9876.456683099546,11889.0842219879,149939669.06523944,355984549.9062867,28186614.07570998,0.0 + 06/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,92263398.01084762,0.0,93205756.44601575,0.0,75331022.58234892,0.0,90784799.76126215,12570.380444341201,12373.58879348288,12389.53342558924,14914.276556289944,188092005.19093175,351584976.80047449,28186614.07570998,0.0 + 06/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,88010152.45134223,0.0,90322526.7180879,0.0,73771096.26991326,0.0,92084412.90732944,15055.610926944493,14819.91252926173,14839.009499192713,17862.90765681906,225278786.20398478,344188188.3466728,35233267.594637479,0.0 + 06/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,78961132.4086725,0.0,83761194.89878673,0.0,66415394.81492257,0.0,85317010.35005921,17598.53262207768,17323.024310876033,17345.346795824935,20879.98717880592,263328807.26730443,314454732.47244098,14093307.03785499,0.0 + 06/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,81056192.14991385,0.0,88760462.72701508,0.0,72532015.04876384,0.0,91938746.81965867,10090.085035918712,9932.1228723779,9944.921426449666,11971.500732892993,150979068.24350138,334287416.74535146,63419881.67034747,0.0 + 06/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,75452084.84255532,0.0,75489396.1972053,0.0,71339080.58305075,0.0,86386447.23894535,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,308667008.8617567,63419881.67034747,69761869.8373822 + 06/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,62358188.9828735,0.0,61656770.91876181,0.0,60044271.01866118,0.0,72215798.96974448,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,256275029.89004097,49326574.63249246,69761869.8373822 + 06/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,57933038.92818481,0.0,57722399.77143152,0.0,55558085.96142414,0.0,66981180.79697426,5075.891774653108,4996.427742014239,5002.866149134601,6022.351831925111,75951134.99181742,238194705.45801474,35233267.594637479,69761869.8373822 + 06/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,53256541.982470188,0.0,53159620.97527211,0.0,51186098.81168951,0.0,61609731.844029579,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,219211993.61346139,35233267.594637479,62010550.96656194 + 06/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,43422230.74782392,0.0,43139415.715369317,0.0,42564847.58038895,0.0,50806434.22203786,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,179932928.26562,35233267.594637479,46507913.22492146 + 06/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,27889255.29202523,0.0,27585227.541314588,0.0,28158441.36519261,0.0,33203061.819404827,2551.357511998267,2511.4155341926609,2514.651749443322,3027.0882966823558,38176247.132339779,116835986.01793726,21139960.556782485,23253956.61246073 + 06/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13686660.29009961,0.0,13199601.81791922,0.0,15293362.25687672,0.0,17402661.74923589,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,59582286.11413144,14093307.03785499,0.0 + 06/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10587112.44260816,0.0,9826504.009467155,0.0,13239969.573156175,0.0,14549826.95693947,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,48203412.98217097,14093307.03785499,0.0 + 06/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5078215.344679478,0.0,3850973.203058822,0.0,8701753.597663176,0.0,8538607.872267796,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,26169550.01766927,14093307.03785499,0.0 + 06/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4587.485540252112,0.0,0.0,0.0,1561024.1975302068,0.0,808693.3765651439,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,2374305.059635603,14093307.03785499,0.0 + 06/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 06/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,0.0,14093307.03785499,15502637.741640486 + 06/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,1089082.7260755962,0.0,0.0,0.0,10110009.992674293,0.0,4517063.84865085,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,15716156.56740074,56373228.15141996,38756594.35410121 + 06/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,15921572.19575707,0.0,7707194.8634809129,0.0,16581270.5466137,0.0,14582656.323944524,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,54792693.92979621,56373228.15141996,38756594.35410121 + 06/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8172608.70283705,0.0,1121947.459650582,0.0,547206.3013234767,0.0,0.0,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,9841762.463811107,28186614.07570998,0.0 + 06/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19877179.425266096,0.0,12198061.04278448,0.0,5315236.885499116,0.0,3296251.9506752497,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,40686729.30422494,28186614.07570998,0.0 + 06/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16645466.364659388,0.0,8815370.65488172,0.0,3491305.774380507,0.0,2243661.3151805649,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,31195804.109102183,28186614.07570998,0.0 + 06/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11507556.857041359,0.0,5719768.634184584,0.0,2721876.7775695726,0.0,834593.5719208128,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,20783795.84071633,28186614.07570998,0.0 + 06/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18531560.343386987,0.0,13038372.792353403,0.0,5922860.59999143,0.0,5314332.384565612,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,42807126.12029743,28186614.07570998,0.0 + 06/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11129506.85030764,0.0,6730085.108312897,0.0,5048134.351460729,0.0,3337854.6120199274,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,26245580.922101194,28186614.07570998,0.0 + 06/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16417147.704810005,0.0,13169288.195025394,0.0,10325128.861091262,0.0,9811550.036153686,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,49723114.79708035,28186614.07570998,0.0 + 06/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10970774.116768972,0.0,7941511.876949982,0.0,9849054.033401601,0.0,9251491.430470651,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,38012831.457591209,35233267.594637479,0.0 + 06/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5005522.448444983,0.0,2888606.7116309048,0.0,6182053.796268357,0.0,5155868.281788549,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,19232051.238132795,14093307.03785499,0.0 + 06/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,13075096.033521198,0.0,12700800.328834463,0.0,17983821.69695107,0.0,19129422.004494125,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,62889140.06380085,63419881.67034747,0.0 + 06/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,15578266.203432106,0.0,11702252.967985612,0.0,23369014.469111705,0.0,23226914.937672557,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,73876448.57820197,63419881.67034747,69761869.8373822 + 06/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,5539833.856058046,0.0,1011363.0463552449,0.0,14170577.706199212,0.0,11576796.194922567,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,32298570.80353507,49326574.63249246,69761869.8373822 + 06/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,6502862.270031778,0.0,2208720.7593879436,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,8711583.029419722,35233267.594637479,69761869.8373822 + 06/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,1276592.7153874976,0.0,0.0,5173.707191995593,5092.71184075078,5099.274319759878,6138.406090757943,77414757.9957511,1276592.7153874976,35233267.594637479,62010550.96656194 + 06/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3539620.4576632746,0.0,10867532.138819479,0.0,0.0,0.0,0.0,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,53111888.76073195,0.0,35233267.594637479,46507913.22492146 + 06/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,17047843.884125588,0.0,22804723.016347708,0.0,1444935.1775117915,0.0,9446343.93948956,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,89437263.21020271,0.0,21139960.556782485,23253956.61246073 + 06/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,19342752.761520819,0.0,14093307.03785499,0.0 + 06/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4616073.567753319,0.0,11442926.774640222,0.0,0.0,0.0,0.0,0.0,1292.3024824443147,1272.0712460028595,1273.7104396409469,1533.2675652017356,35395866.58223703,0.0,14093307.03785499,0.0 + 06/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10372644.709138086,0.0,15067359.981901385,0.0,0.0,0.0,6148991.172686184,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,50931748.62524647,0.0,14093307.03785499,0.0 + 06/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6868344.449951969,0.0,5408819.001200934,0.0,0.0,0.0,2704434.214059269,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,34312610.25108646,0.0,14093307.03785499,0.0 + 06/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 + 06/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,0.0,14093307.03785499,15502637.741640486 + 06/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,3912306.719681252,0.0,11909788.232628219,0.0,19977194.11368583,0.0,15830651.78725853,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,309310462.62209537,51629940.85325384,56373228.15141996,38756594.35410121 + 06/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,26460430.572054864,0.0,22451343.374977106,0.0,25299255.478500837,0.0,26703622.348588997,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,100914651.7741218,56373228.15141996,38756594.35410121 + 06/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22620434.050930829,0.0,12165082.122218706,0.0,10760252.185860303,0.0,10217085.847799086,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,55762854.206808928,28186614.07570998,0.0 + 06/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32306778.270622877,0.0,17067845.547175714,0.0,9932927.080477165,0.0,9997970.931002472,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,69305521.82927823,28186614.07570998,0.0 + 06/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38064313.344266939,0.0,20699671.08615323,0.0,8655542.265161129,0.0,10114766.861095522,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,77534293.5566768,28186614.07570998,0.0 + 06/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42581388.588265519,0.0,24636574.547868454,0.0,12251374.144753386,0.0,15483912.82360089,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,94953250.10448824,28186614.07570998,0.0 + 06/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47073397.65440692,0.0,31514164.91669677,0.0,20110442.806728297,0.0,24171609.45781911,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,122869614.8356511,28186614.07570998,0.0 + 06/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41815257.70814259,0.0,32936755.493579374,0.0,23724603.833055829,0.0,27418370.481147637,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,125894987.51592542,28186614.07570998,0.0 + 06/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42907581.04174125,0.0,37496686.544716257,0.0,31790712.596925014,0.0,35524269.58994011,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,147719249.77332265,28186614.07570998,0.0 + 06/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37615343.555121798,0.0,33800028.33489798,0.0,31940461.823535615,0.0,36574499.49851055,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,139930333.21206595,35233267.594637479,0.0 + 06/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,21219241.423675743,0.0,17601655.802533438,0.0,18114142.398462237,0.0,19841423.562177369,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,76776463.18684878,14093307.03785499,0.0 + 06/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25483284.741255296,0.0,21970468.808528544,0.0,25255375.503905357,0.0,27660258.68872523,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,100369387.74241442,63419881.67034747,0.0 + 06/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,33032434.02105257,0.0,27654436.957857133,0.0,35690328.86944442,0.0,38778977.14347874,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,135156176.99183286,63419881.67034747,69761869.8373822 + 06/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,25443834.336291627,0.0,19753907.841884246,0.0,29913088.696791896,0.0,31292105.235277796,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,106402936.11024556,49326574.63249246,69761869.8373822 + 06/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16086424.952345098,0.0,10414887.828549598,0.0,22345942.595878576,0.0,21637729.359017783,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,70484984.73579106,35233267.594637479,69761869.8373822 + 06/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12823996.524074076,0.0,7469645.192304301,0.0,19722189.508086619,0.0,18423913.087566254,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,58439744.312031257,35233267.594637479,62010550.96656194 + 06/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9691159.413022254,0.0,5078281.591411006,0.0,16375202.181757676,0.0,14692023.373003707,2579.207931192116,2538.8299498785397,2542.1014914019435,3060.131755939999,38592976.062285359,45836666.55919464,35233267.594637479,46507913.22492146 + 06/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,109623.90466660804,0.0,0.0,0.0,5139118.665773999,0.0,1538598.8088308653,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,6787341.379271472,21139960.556782485,23253956.61246073 + 06/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 06/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 06/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 + 06/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1291607.3134644619,0.0,0.0,1292.4234856257434,1272.190354856909,1273.8297019789123,1533.4111308575248,19338676.82394872,1291607.3134644619,14093307.03785499,0.0 + 06/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3076154.3505914376,0.0,12469701.264821634,0.0,20036647.055547827,0.0,14483069.178733504,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,50065571.8496944,14093307.03785499,15502637.741640486 + 06/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,32522212.866850869,0.0,32826167.664481455,0.0,37681721.86629585,0.0,41116358.83190785,20633.66344953693,20310.639599028316,20336.811931215547,24481.054047519992,308743808.49828287,144146461.229536,56373228.15141996,38756594.35410121 + 06/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,38316866.24687526,0.0,33678008.03307335,0.0,34706705.2481436,0.0,38659476.91972382,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,145361056.447816,56373228.15141996,38756594.35410121 + 06/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34048816.1228721,0.0,23472628.457025507,0.0,18827510.92200611,0.0,20620982.757154269,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,96969938.25905797,28186614.07570998,0.0 + 06/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39712691.53492685,0.0,25920827.737517533,0.0,16244855.413831318,0.0,18274317.592976873,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,100152692.27925256,28186614.07570998,0.0 + 06/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36321227.08123521,0.0,25923470.00984811,0.0,14196379.637132619,0.0,16750299.185168816,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,93191375.91338474,28186614.07570998,0.0 + 06/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35602978.53217611,0.0,27129216.504900576,0.0,15882928.606666467,0.0,19202028.669715886,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,97817152.31345904,28186614.07570998,0.0 + 06/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40163819.12127853,0.0,32131663.13920423,0.0,20992770.645908137,0.0,25286344.935895895,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,118574597.84228678,28186614.07570998,0.0 + 06/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47209904.09994399,0.0,39931813.73845891,0.0,30401566.789409996,0.0,35676216.659960079,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,153219501.28777299,28186614.07570998,0.0 + 06/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29563946.09782779,0.0,25630275.015812626,0.0,25944920.884582379,0.0,26899173.425038067,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,108038315.42326087,28186614.07570998,0.0 + 06/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,8648576.213031225,0.0,4463094.117992615,0.0,11916407.365405372,0.0,9881452.651910052,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,34909530.34833926,35233267.594637479,0.0 + 06/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15382095.952308134,0.0,15962278.585865524,0.0,19514651.057495625,0.0,22089639.671793686,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,72948665.26746297,14093307.03785499,0.0 + 06/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25080597.003940647,0.0,30609066.79951787,0.0,31233470.018071563,0.0,36763160.095428708,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,123686293.91695877,63419881.67034747,0.0 + 06/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,18653362.41022644,0.0,16189408.330240455,0.0,27685474.059909423,0.0,28365566.4379493,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,90893811.23832561,63419881.67034747,69761869.8373822 + 06/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,5792134.415609931,0.0,1716135.831664346,0.0,16373835.609554612,0.0,13743223.129674728,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,154782937.6157136,37625328.98650361,49326574.63249246,69761869.8373822 + 06/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,9792629.38606187,0.0,5776605.549516283,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,15569234.935578153,35233267.594637479,69761869.8373822 + 06/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5541386.660031341,0.0,727009.5360076941,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,6268396.196039035,35233267.594637479,62010550.96656194 + 06/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,5040114.965315771,0.0,0.0,92383.59584122584,0.0,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,43747493.963191319,92383.59584122584,35233267.594637479,46507913.22492146 + 06/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,12196639.83732582,0.0,17504867.86982321,0.0,0.0,0.0,3320134.7859512369,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,71726378.65734947,0.0,21139960.556782485,23253956.61246073 + 06/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 + 06/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1022494.0776797041,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,20374862.159804305,0.0,14093307.03785499,0.0 + 06/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3418526.295296894,0.0,8439074.32017309,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,31209968.697594588,0.0,14093307.03785499,0.0 + 06/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1401384.491408893,0.0,1969143.6572009903,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,22723401.512797778,0.0,14093307.03785499,0.0 + 06/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,0.0,14093307.03785499,15502637.741640486 + 06/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20683.796736723423,20359.98804025155,20386.22396294219,24540.535279061547,309493958.46832337,0.0,56373228.15141996,38756594.35410121 + 06/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,359544.8645598861,0.0,0.0,0.0,3748999.559715119,0.0,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,4108544.4242750054,56373228.15141996,38756594.35410121 + 06/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,0.0,28186614.07570998,0.0 + 06/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6496856.805002453,0.0,0.0,0.0,0.0,0.0,0.0,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,6496856.805002453,28186614.07570998,0.0 + 06/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5515687.767010368,0.0,0.0,0.0,0.0,0.0,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,5515687.767010368,28186614.07570998,0.0 + 06/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6258146.740939019,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,6258146.740939019,28186614.07570998,0.0 + 06/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1642184.103116992,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,1642184.103116992,28186614.07570998,0.0 + 06/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,115951877.39581964,0.0,28186614.07570998,0.0 + 06/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,5246007.96961945,0.0,0.0,0.0,2907186.4284386218,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,201315891.79377137,0.0,28186614.07570998,0.0 + 06/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,1979553.0488586317,0.0,6188893.108278991,0.0,0.0,0.0,2926612.0825375488,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,204257755.63538844,0.0,35233267.594637479,0.0 + 06/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6055790.144812108,0.0,8747409.390968208,0.0,206832.31448912997,0.0,5603440.364525511,0.0,18072.963962696216,17790.028340352106,17812.9526076591,21442.881854292176,291041248.56879356,0.0,14093307.03785499,0.0 + 06/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,0.0,63419881.67034747,0.0 + 06/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,12964787.988294168,0.0,6284153.581080657,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,19248941.569374827,63419881.67034747,69761869.8373822 + 06/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,0.0,0.0,0.0,9174963.977424344,0.0,3392502.196543975,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,12567466.17396832,49326574.63249246,69761869.8373822 + 06/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,73956.80023470777,0.0,0.0,5217165.974843868,0.0,0.0,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77428664.0960296,5217165.974843868,35233267.594637479,69761869.8373822 + 06/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,4202529.064074008,0.0,0.0,2693355.4153579499,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,81576018.68115485,2693355.4153579499,35233267.594637479,62010550.96656194 + 06/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3688418.6975599129,0.0,9798159.268610623,0.0,0.0,0.0,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,52187901.759978029,0.0,35233267.594637479,46507913.22492146 + 06/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,13989933.215983347,0.0,18626673.402991728,0.0,0.0,0.0,5019533.876191128,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,76337464.28897369,0.0,21139960.556782485,23253956.61246073 + 06/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 06/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3636306.5576574185,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,22986968.45456116,0.0,14093307.03785499,0.0 + 06/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1419249.2290831723,0.0,4633898.925950658,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,25403810.051937574,0.0,14093307.03785499,0.0 + 06/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49866.63089637878,0.0,1065644.7539796585,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,20463378.586840236,0.0,14093307.03785499,0.0 + 06/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,0.0,14093307.03785499,15502637.741640486 + 06/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,1803104.7266224402,0.0,2772052.5824703096,0.0,0.0,0.0,0.0,0.0,20671.53352226781,20347.916808705944,20374.13717638265,24525.98544322564,313885619.9311881,0.0,56373228.15141996,38756594.35410121 + 06/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18072.963962696216,17790.028340352106,17812.9526076591,21442.881854292176,270427776.35399857,0.0,56373228.15141996,38756594.35410121 + 06/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,0.0,28186614.07570998,0.0 + 06/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13320313.914727537,0.0,0.0,0.0,0.0,0.0,0.0,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,13320313.914727537,28186614.07570998,0.0 + 06/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26604429.131315225,0.0,11468259.063624599,0.0,0.0,0.0,0.0,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,38072688.19493982,28186614.07570998,0.0 + 06/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34892348.69322405,0.0,19922343.248969806,0.0,7178751.896515876,0.0,7719772.3063146159,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,69713216.14502435,28186614.07570998,0.0 + 06/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41474593.13748219,0.0,28557175.51375678,0.0,17749570.511490603,0.0,21385047.295489134,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,109166386.4582187,28186614.07570998,0.0 + 06/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39456563.09982246,0.0,30957060.08897788,0.0,24089395.98022331,0.0,27473164.359672619,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,121976183.52869627,28186614.07570998,0.0 + 06/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35373141.45443344,0.0,30818704.067987846,0.0,25660947.048944989,0.0,28640948.049893068,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,120493740.62125933,28186614.07570998,0.0 + 06/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,28169622.588086156,0.0,24104312.26161436,0.0,20841173.575022997,0.0,23640787.140961093,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,96755895.56568459,35233267.594637479,0.0 + 06/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11545626.931862662,0.0,6610831.746277553,0.0,11007402.27882377,0.0,9694428.020629295,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,38858288.97759327,14093307.03785499,0.0 + 06/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,14989402.421039634,0.0,10111739.633258827,0.0,19335768.664365423,0.0,18827361.45488969,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,63264272.17355357,63419881.67034747,0.0 + 06/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25053578.55443941,0.0,20405345.649151267,0.0,31145920.181276815,0.0,32756599.338093245,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,109361443.72296074,63419881.67034747,69761869.8373822 + 06/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,18756160.963357718,0.0,14106471.923171064,0.0,25826178.365326134,0.0,26082253.221524575,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,84771064.4733795,49326574.63249246,69761869.8373822 + 06/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12507022.293992438,0.0,7166898.357745557,0.0,20159525.218326704,0.0,19159765.299289548,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,58993211.16935424,35233267.594637479,69761869.8373822 + 06/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,7358245.487304616,0.0,1282509.8208913664,0.0,15955463.921234165,0.0,14068176.514770007,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,38664395.744200158,35233267.594637479,62010550.96656194 + 06/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,629052.3750077932,0.0,0.0,0.0,10514747.47110648,0.0,7410022.72828766,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,18553822.574401935,35233267.594637479,46507913.22492146 + 06/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,177715.4624652391,0.0,0.0,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,177715.4624652391,21139960.556782485,23253956.61246073 + 06/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 06/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 06/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 06/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 + 06/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4132041.8272043827,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,4132041.8272043827,14093307.03785499,15502637.741640486 + 06/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,31339896.12914163,0.0,36124523.986222,0.0,41848281.69872021,0.0,42948987.39047371,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,152261689.20455755,56373228.15141996,38756594.35410121 + 06/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,54106288.21016824,0.0,48330811.385429169,0.0,45926938.79854347,0.0,53409036.77326189,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,201773075.16740275,56373228.15141996,38756594.35410121 + 06/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50414287.47054012,0.0,38606526.46325261,0.0,29612718.880010379,0.0,35097995.14939731,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,153731527.96320046,28186614.07570998,0.0 + 06/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60363227.290781769,0.0,43505709.59098975,0.0,28600485.635730257,0.0,34853464.94703674,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,167322887.4645385,28186614.07570998,0.0 + 06/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66450124.6086707,0.0,48903819.79794285,0.0,28299750.143578657,0.0,36745779.01711564,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,180399473.56730784,28186614.07570998,0.0 + 06/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75195318.32949038,0.0,57087876.77021469,0.0,35104526.34536673,0.0,46769251.677604269,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,214156973.12267608,28186614.07570998,0.0 + 06/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,80904807.55330989,0.0,66598634.026605177,0.0,47140593.34559688,0.0,60019793.40675941,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,254663828.33227135,28186614.07570998,0.0 + 06/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81159495.94338839,0.0,72451971.09892921,0.0,56643481.78811972,0.0,69388701.5395368,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,279643650.3699741,28186614.07570998,0.0 + 06/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78271545.30325426,0.0,75887304.69005195,0.0,62405037.85806066,0.0,74830878.3466487,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,291394766.1980156,28186614.07570998,0.0 + 06/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,78351411.2237261,0.0,77780128.80556381,0.0,67249479.16203818,0.0,82813609.57556261,22774.32844750332,22417.79208711088,22446.679700351593,27020.871353400573,340774817.7181189,306194628.76689067,35233267.594637479,0.0 + 06/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,71092070.055892,0.0,73616450.7640596,0.0,62032098.05539992,0.0,78295418.09881693,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,285036036.9741684,14093307.03785499,0.0 + 06/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,72852464.88389334,0.0,80027783.68488729,0.0,66924994.48755972,0.0,83996969.63113716,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,303802212.6874775,63419881.67034747,0.0 + 06/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,64896925.31116503,0.0,63169825.80844342,0.0,63103035.380469959,0.0,74796735.1603319,15343.731709943939,15103.522727654441,15122.985158273543,18204.75196760147,229589969.62850423,265966521.66041029,63419881.67034747,69761869.8373822 + 06/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,52517072.703221399,0.0,49527567.74444343,0.0,52576555.91463986,0.0,61409083.626861888,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,216030279.98916657,49326574.63249246,69761869.8373822 + 06/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44100398.77444333,0.0,41326414.500416669,0.0,45336836.19647019,0.0,52443553.7061568,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,183207203.17748697,35233267.594637479,69761869.8373822 + 06/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37424146.54674511,0.0,34612002.67406247,0.0,39849094.67751515,0.0,45550117.55411179,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,157435361.45243455,35233267.594637479,62010550.96656194 + 06/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29865901.880375737,0.0,26976236.34305987,0.0,33149461.178240245,0.0,37275926.312779139,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,127267525.71445498,35233267.594637479,46507913.22492146 + 06/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15443519.768091653,0.0,12455832.785152108,0.0,19739882.241408655,0.0,20656219.07648609,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,68295453.8711385,21139960.556782485,23253956.61246073 + 06/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2785561.473469383,0.0,598283.8000422093,0.0,7614294.260909032,0.0,5995746.284167295,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,16993885.818587919,14093307.03785499,0.0 + 06/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,206956.4273214699,0.0,0.0,0.0,5187144.261490386,0.0,3044431.3377600244,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,8438532.026571881,14093307.03785499,0.0 + 06/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3036640.17968978,0.0,615044.8256937084,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,3651685.0053834884,14093307.03785499,0.0 + 06/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4921267.086858109,0.0,11711234.139383575,0.0,13073684.989662152,0.0,11750933.688347014,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,41457119.90425085,14093307.03785499,0.0 + 06/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,28136618.157045757,0.0,43224967.65524317,0.0,31587726.709152704,0.0,35987527.73300285,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,138936840.25444449,14093307.03785499,0.0 + 06/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29940287.595522874,0.0,32303381.592964606,0.0,29048636.16077018,0.0,33475474.918008709,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,124767780.26726637,14093307.03785499,15502637.741640486 + 06/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,49878094.75582323,0.0,50090468.3553336,0.0,46039718.22891401,0.0,53850715.74163866,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,199858997.0817095,56373228.15141996,38756594.35410121 + 06/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,73064606.38719218,0.0,69284557.25988993,0.0,59803738.04159188,0.0,71560672.00107493,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,273713573.68974897,56373228.15141996,38756594.35410121 + 06/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69852314.46598745,0.0,58045280.110931787,0.0,43685081.36836895,0.0,53778698.917941439,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,225361374.86322964,28186614.07570998,0.0 + 06/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79204350.9896136,0.0,62700161.82713622,0.0,42377296.371427599,0.0,53823863.83546744,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,238105673.02364487,28186614.07570998,0.0 + 06/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83622511.45806028,0.0,66998730.40669672,0.0,39538520.42285398,0.0,53009680.47896683,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,243169442.76657779,28186614.07570998,0.0 + 06/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,90067239.86781539,0.0,73679134.32484032,0.0,44812344.46639771,0.0,61514115.06179705,5052.400097116383,4973.303831071719,4979.712440672624,5994.479853260247,75599626.39963551,270072833.72085049,28186614.07570998,0.0 + 06/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,95528549.33331117,0.0,82596445.36879209,0.0,57981369.39355234,0.0,76544752.33352737,7553.923122536451,7435.665046870175,7445.246660225623,8962.44143391687,113030194.54877684,312651116.42918297,28186614.07570998,0.0 + 06/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,92988877.1263979,0.0,86189606.62857576,0.0,69568886.13515404,0.0,84849479.99811593,10071.897496715268,9914.22006249357,9926.995546967497,11949.92191188916,150706926.06503577,333596849.8882436,28186614.07570998,0.0 + 06/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,84183472.62671796,0.0,84229632.8624787,0.0,69883675.92490228,0.0,84069805.94822206,12589.871870894085,12392.77507811696,12408.744433709371,14937.402389861449,188383657.58129473,322366587.36232098,28186614.07570998,0.0 + 06/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,82241205.10465864,0.0,83528604.6206563,0.0,71359076.86154486,0.0,88694603.06991646,15135.127553878068,14898.184308566848,14917.382139674499,17957.25109933949,226468602.36525209,325823489.65677627,35233267.594637479,0.0 + 06/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,74317263.31786469,0.0,78799595.93550959,0.0,65371621.96150587,0.0,83386173.01414071,17713.366570280356,17436.060512197346,17458.528655829014,21016.23327486711,265047080.44742579,301874654.22902086,14093307.03785499,0.0 + 06/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,76013631.29715847,0.0,86160194.93852125,0.0,69942074.16539358,0.0,88965494.69466269,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,321081395.09573599,63419881.67034747,0.0 + 06/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,66911043.25640802,0.0,67030095.76653084,0.0,64666200.7074227,0.0,77698766.90873456,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,276306106.63909617,63419881.67034747,69761869.8373822 + 06/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,56578249.17954386,0.0,55337023.69330425,0.0,55537166.719559449,0.0,66220768.1119606,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,233673207.70436818,49326574.63249246,69761869.8373822 + 06/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,49355364.438779909,0.0,48346521.52008194,0.0,49147490.0083783,0.0,58352756.134576108,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,205202132.10181625,35233267.594637479,69761869.8373822 + 06/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,41834264.00486513,0.0,40647359.04407177,0.0,42943839.2389209,0.0,50414763.73758226,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,175840226.02544008,35233267.594637479,62010550.96656194 + 06/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31331107.10345904,0.0,29869802.650773724,0.0,33969182.40691678,0.0,39062625.61168753,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,134232717.77283708,35233267.594637479,46507913.22492146 + 06/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15898139.328689382,0.0,14352366.812142898,0.0,19921054.542172597,0.0,21670796.699226928,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,71842357.3822318,21139960.556782485,23253956.61246073 + 06/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1862867.1372709796,0.0,986681.1868949859,0.0,6581068.612297595,0.0,5288325.472503182,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,14718942.40896674,14093307.03785499,0.0 + 06/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1478475.6707550134,0.0,212419.53817402398,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,1690895.2089290375,14093307.03785499,0.0 + 06/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 06/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,4248992.57338031,0.0,5209909.848115051,0.0,2354918.929200314,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,11813821.350695676,14093307.03785499,0.0 + 06/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,17203521.66055757,0.0,37799055.673184107,0.0,26795040.494443533,0.0,28705060.16276056,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,110502677.99094576,14093307.03785499,0.0 + 06/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29403867.674020165,0.0,37241131.57656796,0.0,31500929.90134919,0.0,35658416.385660249,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,133804345.53759755,14093307.03785499,15502637.741640486 + 06/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,54594091.698685918,0.0,57884275.071990918,0.0,49312484.86875507,0.0,58339881.94596033,20458.30894659192,20138.03030353926,20163.98021103139,24273.002623468627,306119959.5046723,220130733.58539225,56373228.15141996,38756594.35410121 + 06/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,75299010.2398001,0.0,73121439.77777888,0.0,60042237.694698218,0.0,72949205.9770966,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,281411893.68937376,56373228.15141996,38756594.35410121 + 06/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68373463.4344639,0.0,59036945.3787204,0.0,44259783.70692581,0.0,55898447.09098776,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,227568639.61109788,28186614.07570998,0.0 + 06/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75760419.91122282,0.0,63434405.61506902,0.0,42504518.54598114,0.0,54487259.91290239,10104.800194232766,9946.607662143439,9959.424881345249,11988.959706520494,151199252.79927103,236186603.98517538,28186614.07570998,0.0 + 06/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81187839.9262118,0.0,68114082.38527933,0.0,41048121.82517715,0.0,54840335.58351472,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,245190379.72018297,28186614.07570998,0.0 + 06/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83700446.38554526,0.0,71661170.34081061,0.0,44790116.039134148,0.0,60296612.8145725,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,260448345.5800625,28186614.07570998,0.0 + 06/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,85947101.45482432,0.0,77529468.42088716,0.0,54004187.652760017,0.0,69613809.05346962,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,287094566.5819411,28186614.07570998,0.0 + 06/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86620895.00207943,0.0,82520537.2157477,0.0,61736620.27989103,0.0,77279760.87344048,7527.805463472247,7409.956264630865,7419.504749596356,8931.45382840953,112639393.10199239,308157813.37115868,28186614.07570998,0.0 + 06/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,84668081.58898697,0.0,85747696.66254145,0.0,67237259.92433465,0.0,83073424.91867128,12500.46248103342,12304.765408933868,12320.621355084577,14831.321561758,187045814.9045155,320726463.09453436,28186614.07570998,0.0 + 06/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,82928356.18131553,0.0,84932975.53036449,0.0,69404242.36893834,0.0,87439750.0585426,12546.342439120412,12349.927107718111,12365.84124932726,14885.75638068255,187732321.83665399,324705324.13916096,35233267.594637479,0.0 + 06/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,71655451.92881128,0.0,76571549.36674436,0.0,61217868.015579137,0.0,78974427.03296042,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,288419296.34409525,14093307.03785499,0.0 + 06/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,80062477.61261149,0.0,90329262.17225962,0.0,71850498.59351059,0.0,91752690.57650906,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,333994928.9548907,63419881.67034747,0.0 + 06/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,76450499.38198245,0.0,77575902.06059924,0.0,71824116.5649606,0.0,87396900.85225067,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,313247418.85979297,63419881.67034747,69761869.8373822 + 06/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,63138988.38901116,0.0,62011604.81155432,0.0,60721753.827573698,0.0,72911087.63035976,10193.958236746712,10034.369918869412,10047.30022869672,12094.742320591577,152533334.53765593,258783434.65849895,49326574.63249246,69761869.8373822 + 06/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,54488113.25134641,0.0,53470480.39972848,0.0,53300010.70162786,0.0,63625314.37820965,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,224883918.7309124,35233267.594637479,69761869.8373822 + 06/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,48005274.49259736,0.0,46891875.09980713,0.0,47823095.539746347,0.0,56687213.71037762,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,199407458.84252847,35233267.594637479,62010550.96656194 + 06/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,39186906.85769654,0.0,37999410.67088707,0.0,40040518.6693781,0.0,46978173.932424779,2557.28861832399,2517.2537879424078,2520.497526378924,3034.1253279335785,38264994.938084039,164205010.13038648,35233267.594637479,46507913.22492146 + 06/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,21880981.648546477,0.0,20642608.366512829,0.0,24272046.32128172,0.0,27471614.786164158,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,94267251.12250519,21139960.556782485,23253956.61246073 + 06/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8642763.6037553,0.0,7441676.686657205,0.0,11850257.676394282,0.0,12376103.015130904,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,40310800.98193769,14093307.03785499,0.0 + 06/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4082877.8737286117,0.0,2722507.2887993485,0.0,8010159.218909498,0.0,7505292.532851758,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,22320836.914289219,14093307.03785499,0.0 + 06/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3359796.3442328327,0.0,1902244.0062379817,0.0,7184950.038045881,0.0,6607690.351600291,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,19054680.740116989,14093307.03785499,0.0 + 06/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8202497.529285749,0.0,12643101.06915435,0.0,12132134.365796926,0.0,12461703.493246574,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,45439436.457483608,14093307.03785499,0.0 + 06/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24974384.757675806,0.0,37250585.69047173,0.0,26773983.5330741,0.0,30911238.341464275,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,119910192.32268593,14093307.03785499,0.0 + 06/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,41013429.08625499,0.0,47100959.31965766,0.0,38735623.25939554,0.0,46452986.37204762,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,173302998.0373558,14093307.03785499,15502637.741640486 + 06/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,65778823.82686801,0.0,69410543.44940345,0.0,58365212.67128415,0.0,70609731.24983831,20437.2595953421,20117.31048381001,20143.233691699592,24248.02837171385,305804995.71323606,264164311.19739393,56373228.15141996,38756594.35410121 + 06/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,71619800.46589086,0.0,71686675.13190952,0.0,55607868.885087568,0.0,68258749.79593919,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,267173094.27882717,56373228.15141996,38756594.35410121 + 06/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58009927.997055489,0.0,54320960.24843052,0.0,35001603.67609562,0.0,44467521.52990052,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,191800013.45148216,28186614.07570998,0.0 + 06/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50315459.083654198,0.0,45593039.0184245,0.0,30791271.916811788,0.0,37856739.31440107,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,164556509.33329157,28186614.07570998,0.0 + 06/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36348291.6987038,0.0,33683299.453744437,0.0,23662683.824119957,0.0,28477149.104260595,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,122171424.08082879,28186614.07570998,0.0 + 06/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44407108.1670502,0.0,39960748.54831111,0.0,24197221.83207531,0.0,30762263.826138319,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,139327342.37357495,28186614.07570998,0.0 + 06/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57666603.83409378,0.0,52993139.126522619,0.0,32446671.933452026,0.0,41843491.72386394,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,184949906.61793236,28186614.07570998,0.0 + 06/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70059675.9441619,0.0,66114917.07712464,0.0,47049234.96771574,0.0,59145731.81381971,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,242369559.802822,28186614.07570998,0.0 + 06/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62339348.803774718,0.0,63221152.24475541,0.0,51200479.24985693,0.0,62812858.26379539,12652.404693057399,12454.32893728382,12470.37761130644,15011.595196333652,189319343.17673273,239573838.56218244,28186614.07570998,0.0 + 06/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62855682.23936927,0.0,64592722.068188358,0.0,56961143.3903938,0.0,70351813.95534924,12631.000242790957,12433.259577679297,12449.281101681561,14986.199633150616,188999065.99908877,254761361.65330065,35233267.594637479,0.0 + 06/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,54391349.51896973,0.0,58306745.69129446,0.0,48455255.588881958,0.0,61607472.988363038,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,222760823.7875092,14093307.03785499,0.0 + 06/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,57145804.432744149,0.0,64100248.11595608,0.0,54113519.75695154,0.0,67723977.70216517,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,243083550.0078169,63419881.67034747,0.0 + 06/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,50908421.78049733,0.0,50920512.9405077,0.0,51596425.06080883,0.0,61059059.48626132,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,214484419.2680752,63419881.67034747,69761869.8373822 + 06/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,35776684.2410687,0.0,33752630.552078668,0.0,38313745.17300441,0.0,44119602.80546853,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,151962662.77162034,49326574.63249246,69761869.8373822 + 06/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25458592.31551327,0.0,23337322.000148789,0.0,29262827.33470325,0.0,32803593.316762158,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,110862334.96712747,35233267.594637479,69761869.8373822 + 06/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16876264.95462399,0.0,14378886.755676669,0.0,22224567.333738094,0.0,23676025.78290181,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,77155744.82694055,35233267.594637479,62010550.96656194 + 06/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5833911.064501866,0.0,3048112.072266957,0.0,12833906.748946893,0.0,11710516.249989102,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,33426446.13570482,35233267.594637479,46507913.22492146 + 06/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,506284.7840025435,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,38695734.4039284,506284.7840025435,21139960.556782485,23253956.61246073 + 06/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 06/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 06/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609322,19353763.92936834,0.0,14093307.03785499,0.0 + 06/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,2357718.8772994086,0.0,1986077.7585871968,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,4343796.635886605,14093307.03785499,0.0 + 06/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13002646.95715532,0.0,25841316.067671829,0.0,24780982.602010717,0.0,23427157.630627015,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,87052103.25746487,14093307.03785499,15502637.741640486 + 06/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,40909795.03296377,0.0,45346446.3640128,0.0,44432369.13361749,0.0,51257288.77381998,20578.15694939499,20256.00206350083,20282.103989646796,24415.197703914957,307913258.5432473,181945899.30441407,56373228.15141996,38756594.35410121 + 06/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47030392.95632687,0.0,45895717.489047158,0.0,41637718.4258024,0.0,48695443.71316216,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,183259272.58433859,56373228.15141996,38756594.35410121 + 06/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45751713.0317595,0.0,37960559.22452645,0.0,27423523.99327077,0.0,32752996.963336506,12813.469362730111,12612.872109506223,12629.125082588416,15202.692278683908,191729371.80063118,143888793.21289323,28186614.07570998,0.0 + 06/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51154842.969813268,0.0,38583602.641935188,0.0,24462119.99699039,0.0,29773896.343377666,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,143974461.95211653,28186614.07570998,0.0 + 06/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50788218.84096407,0.0,37730202.063052508,0.0,20962034.481902187,0.0,26505705.29857208,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,135986160.68449084,28186614.07570998,0.0 + 06/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54476464.88531589,0.0,41093936.62591381,0.0,23782295.146166229,0.0,30879258.057747127,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,150231954.71514309,28186614.07570998,0.0 + 06/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60730593.38311607,0.0,49132696.59522073,0.0,31931401.04309849,0.0,40403108.2831307,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,182197799.30456598,28186614.07570998,0.0 + 06/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61679514.43811855,0.0,54087008.3193992,0.0,39468328.89643339,0.0,48033240.27670311,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,203268091.93065424,28186614.07570998,0.0 + 06/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59747006.45685599,0.0,57017635.16776025,0.0,46127787.73817299,0.0,54506674.80157778,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,217399104.16436703,28186614.07570998,0.0 + 06/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,58465637.24164249,0.0,57090668.082854468,0.0,50153935.41082366,0.0,60725772.13459409,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,226436012.8699147,35233267.594637479,0.0 + 06/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,49183126.72861424,0.0,50535557.0825912,0.0,43698689.42774579,0.0,54389062.441187757,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,197806435.680139,14093307.03785499,0.0 + 06/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,48038695.45517247,0.0,53560618.035604167,0.0,45656907.49103379,0.0,56330053.35376316,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,203586274.3355736,63419881.67034747,0.0 + 06/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,38967909.52197313,0.0,37685048.94402889,0.0,40537481.288536619,0.0,46499197.13306884,10310.132508978642,10148.725461197264,10161.803129812888,12232.578659950163,154271663.13578025,163689636.88760747,63419881.67034747,69761869.8373822 + 06/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,28631897.97350223,0.0,24856974.446707138,0.0,31949986.891276264,0.0,35099207.838585648,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,120538067.1500713,49326574.63249246,69761869.8373822 + 06/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21319695.869706125,0.0,17575397.48559534,0.0,25639818.10699379,0.0,27211134.697639355,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,91746046.15993461,35233267.594637479,69761869.8373822 + 06/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12520227.153774688,0.0,8548785.628503802,0.0,18503685.123102335,0.0,18007739.12212407,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,57580437.02750489,35233267.594637479,62010550.96656194 + 06/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2547216.087263487,0.0,289330.3469319624,0.0,9888887.05175764,0.0,7106983.725907414,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,38695734.4039284,19832417.2118605,35233267.594637479,46507913.22492146 + 06/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,111962.08838024462,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,38695734.4039284,111962.08838024462,21139960.556782485,23253956.61246073 + 06/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 06/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 + 06/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1753691.4539005899,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,21106059.53602519,0.0,14093307.03785499,0.0 + 06/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,19352368.0821246,0.0,14093307.03785499,0.0 + 06/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609322,19353763.92936834,0.0,14093307.03785499,0.0 + 06/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3998205.8655984697,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,3998205.8655984697,14093307.03785499,15502637.741640486 + 06/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,7223997.715901386,0.0,16671719.494007556,0.0,26532615.177886703,0.0,20865864.487598748,20683.796736723423,20359.98804025155,20386.22396294219,24540.535279061543,309493958.46832337,71294196.87539439,56373228.15141996,38756594.35410121 + 06/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,25500801.272468367,0.0,21454064.76196241,0.0,26245021.16918397,0.0,26768229.955289347,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,99968117.15890408,56373228.15141996,38756594.35410121 + 06/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20878775.298055937,0.0,9836610.22019462,0.0,10480261.545364548,0.0,8902696.682030008,12919.708451417382,12717.448005441212,12733.835735239158,15328.740902016025,193319039.1388096,50098343.74564511,28186614.07570998,0.0 + 06/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26599337.711605986,0.0,10290042.33771791,0.0,6465700.716616506,0.0,4801816.608334437,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,48156897.374274838,28186614.07570998,0.0 + 06/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28441568.646137958,0.0,11143576.276361954,0.0,3631856.8206098277,0.0,2725489.857348078,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,45942491.60045782,28186614.07570998,0.0 + 06/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35216353.4208654,0.0,17201749.99059996,0.0,7623279.994251582,0.0,8975247.393149479,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,69016630.79886642,28186614.07570998,0.0 + 06/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38963163.48875727,0.0,23009388.43326717,0.0,15342224.8940745,0.0,17604923.669915938,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,94919700.48601486,28186614.07570998,0.0 + 06/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40118159.59340048,0.0,28880975.470769034,0.0,24195019.15611828,0.0,26485132.84190887,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,119679287.06219667,28186614.07570998,0.0 + 06/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40533545.20523253,0.0,35022294.22416975,0.0,32766852.23797001,0.0,35535131.52079055,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,143857823.18816284,28186614.07570998,0.0 + 06/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44501578.00959808,0.0,40600328.27969325,0.0,40137084.78091949,0.0,46410846.37646648,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,171649837.44667734,35233267.594637479,0.0 + 06/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,37026794.79129438,0.0,36104618.01354912,0.0,35624350.77148994,0.0,42520571.190448608,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,151276334.76678206,14093307.03785499,0.0 + 06/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,39707697.31446399,0.0,44671020.09647023,0.0,41055136.01543368,0.0,49261010.804857607,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,174694864.2312255,63419881.67034747,0.0 + 06/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,30928942.03432943,0.0,28564492.158795619,0.0,35612501.20660332,0.0,38969270.48769283,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,134075205.8874212,63419881.67034747,69761869.8373822 + 06/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,16652816.68200314,0.0,11271804.619965148,0.0,23905072.503972457,0.0,23367412.208604877,10345.79568214947,10183.830320739144,10196.953225549367,12274.891653570337,154805295.17522998,75197106.01454562,49326574.63249246,69761869.8373822 + 06/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10124727.14252131,0.0,5105876.219375141,0.0,18211054.45091924,0.0,16366600.035558399,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,49808257.84837408,35233267.594637479,69761869.8373822 + 06/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4534882.788282199,0.0,801404.7331224921,0.0,13252771.410426479,0.0,10333139.07932871,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,28922198.011159876,35233267.594637479,62010550.96656194 + 06/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,6981481.945080228,0.0,2848463.0056892104,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,38701323.79380749,9829944.95076944,35233267.594637479,46507913.22492146 + 06/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,3765136.8274042776,0.0,0.0,0.0,0.0,0.0,2586.8635445208917,2546.3657131524998,2549.6469652760417,3069.214848921865,42472664.686140958,0.0,21139960.556782485,23253956.61246073 + 06/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 + 06/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,19346708.596364038,0.0,14093307.03785499,0.0 + 06/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,834030.0964849098,0.0,5745272.910153485,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,25922055.76815921,0.0,14093307.03785499,0.0 + 06/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,821912.9382034998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,20172227.5969619,0.0,14093307.03785499,0.0 + 06/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 06/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,5458156.775787524,0.0,9349743.092892915,0.0,4045519.771573508,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,18853419.640253948,14093307.03785499,15502637.741640486 + 06/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,22758591.362687854,0.0,29343234.180903175,0.0,33424271.477381536,0.0,35030726.42229307,20633.66344953693,20310.639599028316,20336.811931215547,24481.054047519992,308743808.49828287,120556823.44326563,56373228.15141996,38756594.35410121 + 06/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,37050951.4794117,0.0,35372448.668182659,0.0,35822638.54977851,0.0,40066773.516555,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,148312812.21392787,56373228.15141996,38756594.35410121 + 06/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35613646.434801939,0.0,27404006.1674093,0.0,22511865.371902273,0.0,25427961.91571305,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,110957479.88982657,28186614.07570998,0.0 + 06/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42848872.44145917,0.0,29644399.000249678,0.0,19588368.988572498,0.0,22874703.415031926,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,114956343.84531327,28186614.07570998,0.0 + 06/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46942655.1655392,0.0,31645826.560680193,0.0,17303764.59034455,0.0,21871357.240743095,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,117763603.55730704,28186614.07570998,0.0 + 06/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52338500.62354767,0.0,36676688.59970733,0.0,20437895.684985818,0.0,27265105.236845357,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,136718190.1450862,28186614.07570998,0.0 + 06/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57192854.28855365,0.0,43722415.00093168,0.0,28422321.07864633,0.0,36345644.34243547,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,165683234.71056713,28186614.07570998,0.0 + 06/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55716522.69104188,0.0,47683871.9239613,0.0,36063808.21183191,0.0,43521817.15638183,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,182986019.98321695,28186614.07570998,0.0 + 06/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52774695.35788581,0.0,50608101.50440462,0.0,42465018.95942563,0.0,49699794.661886099,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,195547610.48360215,28186614.07570998,0.0 + 06/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,52723124.07198206,0.0,51951056.15511461,0.0,46888697.54153166,0.0,56741843.31540115,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,208304721.08402948,35233267.594637479,0.0 + 06/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,46640750.92093784,0.0,49213846.041462969,0.0,42878586.8708205,0.0,53796399.42075524,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,192529583.25397656,14093307.03785499,0.0 + 06/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,48579974.99102768,0.0,56979668.38675313,0.0,47313661.05132102,0.0,59378008.963256727,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,212251313.39235858,63419881.67034747,0.0 + 06/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,41577313.83502052,0.0,41952395.81874897,0.0,43909959.57946275,0.0,51118369.50729731,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,178558038.74052958,63419881.67034747,69761869.8373822 + 06/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,31095848.322139104,0.0,28372062.74402725,0.0,35595262.52103825,0.0,39728726.303306858,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,134791899.89051146,49326574.63249246,69761869.8373822 + 06/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21107674.345669196,0.0,18145477.354859406,0.0,27277959.694034455,0.0,29093872.131160499,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,95624983.52572355,35233267.594637479,69761869.8373822 + 06/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11644417.813148376,0.0,8325081.269464954,0.0,19601423.53319101,0.0,19130275.641575979,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,58701198.257380317,35233267.594637479,62010550.96656194 + 06/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3004893.2329213966,0.0,310215.4419256055,0.0,11888507.141071149,0.0,9497093.07108195,2584.8469712514868,2544.3807097138185,2547.6594039578246,3066.8222617150497,38677353.647897448,24700708.887000096,35233267.594637479,46507913.22492146 + 06/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,1976468.8352573915,0.0,0.0,2583.9416902834766,2543.489601088243,2546.7671470478314,3065.748180403205,38663807.82776192,1976468.8352573915,21139960.556782485,23253956.61246073 + 06/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 + 06/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 + 06/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,6620767.526376552,0.0,5967296.33771618,0.0,1256538.0970727127,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,13844601.961165445,14093307.03785499,0.0 + 06/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15499777.265085184,0.0,33339449.935200186,0.0,30959182.879534618,0.0,32678046.30288106,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,112476456.38270104,14093307.03785499,15502637.741640486 + 06/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,51662882.727544147,0.0,56407977.87311123,0.0,54716145.09697758,0.0,63846307.66923993,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,226633313.3668729,56373228.15141996,38756594.35410121 + 06/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,60422878.93772499,0.0,59466874.894384797,0.0,54822222.24380838,0.0,65029027.564380358,12813.469362730111,12612.872109506223,12629.125082588416,15202.692278683908,191729371.80063118,239741003.64029856,56373228.15141996,38756594.35410121 + 06/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56989430.37227741,0.0,49016443.02346833,0.0,38877587.078812967,0.0,46889498.987368229,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,191772959.46192695,28186614.07570998,0.0 + 06/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,64957033.56030515,0.0,52627258.54407878,0.0,36696346.12602164,0.0,45092361.163958299,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,199372999.39436389,28186614.07570998,0.0 + 06/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70443896.93232084,0.0,57918199.541868928,0.0,36868724.8105512,0.0,47131914.935047138,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,212362736.21978808,28186614.07570998,0.0 + 06/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74321332.56488228,0.0,62256743.578744817,0.0,40486938.07236023,0.0,52579918.53538462,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,229644932.75137196,28186614.07570998,0.0 + 06/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78771719.01106228,0.0,68056753.27883926,0.0,47498560.48264122,0.0,60292608.17846038,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,254619640.95100314,28186614.07570998,0.0 + 06/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77915235.20552619,0.0,71837057.1426493,0.0,54280032.34707995,0.0,66832353.48889032,7591.442815834439,7472.597362370292,7482.226566783864,9006.957117800192,113591605.90603963,270864678.1841458,28186614.07570998,0.0 + 06/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77173763.60797806,0.0,75903830.60038254,0.0,60474124.51194818,0.0,73518884.9470638,17657.648812857744,17381.21502666132,17403.612496286914,20950.126282562735,264213369.42612738,287070603.6673726,28186614.07570998,0.0 + 06/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,74386988.41242838,0.0,74249309.39089592,0.0,62028949.75005931,0.0,76703098.85343279,22805.423655572766,22448.400493897192,22477.327549194186,27057.764630797905,341240098.7860634,287368346.40681639,35233267.594637479,0.0 + 06/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,66989134.43076975,0.0,69621137.45357287,0.0,57139485.85191277,0.0,72224622.99202937,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,265974380.72828476,14093307.03785499,0.0 + 06/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,65899693.91107597,0.0,70628631.41889099,0.0,59370194.77688272,0.0,73759596.48645199,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,269658116.59330168,63419881.67034747,0.0 + 06/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,61646546.592134367,0.0,60620607.83579949,0.0,59744789.028509948,0.0,70761448.88054605,15361.81525250411,15121.32316898235,15140.808537286957,18226.207400557858,229860555.6935926,252773392.33698983,63419881.67034747,69761869.8373822 + 06/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,47855093.42566377,0.0,45169153.16063708,0.0,48453046.9390295,0.0,56134505.03940721,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,197611798.56473757,49326574.63249246,69761869.8373822 + 06/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,36360269.672576498,0.0,33566069.54943191,0.0,39014415.43372236,0.0,44195328.480485308,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,153136083.1362161,35233267.594637479,69761869.8373822 + 06/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25637106.00787356,0.0,22204558.794525759,0.0,30663993.95082898,0.0,33275709.49210431,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,115778928.18685605,111781368.24533262,35233267.594637479,62010550.96656194 + 06/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16554744.996038232,0.0,12875228.817276793,0.0,22968465.206702427,0.0,23613326.338476167,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,76011765.35849363,35233267.594637479,46507913.22492146 + 06/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,5303545.021477014,0.0,1999662.004735936,0.0,12105254.946234854,0.0,10408822.037279923,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,29817284.009727729,21139960.556782485,23253956.61246073 + 06/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1612474.3041459425,0.0,19671.593368086695,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,1632145.8975140292,14093307.03785499,0.0 + 06/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 + 06/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 + 06/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 + 06/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5696878.49267872,0.0,1132943.5608004619,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,6829822.053479182,14093307.03785499,0.0 + 06/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29835383.789809206,0.0,38400890.72753744,0.0,35641724.60351604,0.0,39697134.869264949,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,143575133.99012763,14093307.03785499,15502637.741640486 + 06/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,50429521.97118428,0.0,52991998.131962399,0.0,52126325.29393086,0.0,59816548.540671888,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,215364393.93774943,56373228.15141996,38756594.35410121 + 06/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,56068070.657418567,0.0,52551935.87586743,0.0,48518480.950867678,0.0,57008009.27242132,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,214146496.756575,56373228.15141996,38756594.35410121 + 06/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48320185.22350135,0.0,42231969.54439946,0.0,31252722.87922231,0.0,37935064.3944537,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,159739942.0415768,28186614.07570998,0.0 + 06/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46763240.83849001,0.0,39958087.807066258,0.0,27943674.835557458,0.0,33771615.77258468,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,148436619.2536984,28186614.07570998,0.0 + 06/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40097910.98903783,0.0,37340053.00245346,0.0,26437145.40947903,0.0,31988286.918384054,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,135863396.31935437,28186614.07570998,0.0 + 06/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43143055.10017931,0.0,39472850.49378847,0.0,27586655.59059233,0.0,33867977.59804055,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,144070538.78260068,28186614.07570998,0.0 + 06/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44964839.39805552,0.0,42236594.96850443,0.0,30432821.095902549,0.0,37303996.960799608,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,154938252.42326213,28186614.07570998,0.0 + 06/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67774809.9140341,0.0,64677123.482116598,0.0,45064062.87359439,0.0,56063242.592484209,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,233579238.86222933,28186614.07570998,0.0 + 06/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65791539.46690728,0.0,66532221.89333588,0.0,51361283.02514799,0.0,62354921.03997207,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,246039965.42536319,28186614.07570998,0.0 + 06/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,65723157.808127749,0.0,67453722.7738394,0.0,54155955.1702057,0.0,67223096.7854882,15269.444634142357,15030.398629882773,15049.766832638275,18116.61318787491,228478403.82433794,254555932.53766106,35233267.594637479,0.0 + 06/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,58854884.64590868,0.0,62991377.00550786,0.0,50655052.71538358,0.0,64207925.48533164,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,236709239.85213176,14093307.03785499,0.0 + 06/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,65195555.021305728,0.0,73711406.81027965,0.0,60989192.70458404,0.0,76236885.99200915,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,276133040.5281786,63419881.67034747,0.0 + 06/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,59461510.039166349,0.0,59206828.554918687,0.0,59443090.5652111,0.0,70049116.47616118,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,248160545.6354573,63419881.67034747,69761869.8373822 + 06/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,51098204.06327053,0.0,49531589.92394031,0.0,51940626.44883251,0.0,60723340.204095069,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,213293760.6401384,49326574.63249246,69761869.8373822 + 06/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,46291056.72556774,0.0,45132277.05059809,0.0,47506435.250652398,0.0,55510149.0907443,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,194439918.11756254,35233267.594637479,69761869.8373822 + 06/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37684010.425088647,0.0,36253418.4254572,0.0,40483012.43513556,0.0,46533629.59250401,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,160954070.87818546,35233267.594637479,62010550.96656194 + 06/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26050268.590631218,0.0,24150787.926295613,0.0,30620547.434857668,0.0,33981276.66673846,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,114802880.61852297,35233267.594637479,46507913.22492146 + 06/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15756640.725540413,0.0,14104562.802712921,0.0,20570763.14466853,0.0,21790329.772841168,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,72222296.44576304,21139960.556782485,23253956.61246073 + 06/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4315516.235840365,0.0,2951981.802839719,0.0,9100160.909413318,0.0,8057239.175267149,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,24424898.123360553,14093307.03785499,0.0 + 06/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3767895.773965246,0.0,1422750.3152096754,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,5190646.089174922,14093307.03785499,0.0 + 06/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,602142.2910310736,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,602142.2910310736,14093307.03785499,0.0 + 06/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6042434.305054085,0.0,903039.4142811335,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,6945473.719335219,14093307.03785499,0.0 + 06/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,7932179.256712159,0.0,14009370.433347546,0.0,13448748.9027819,0.0,13581203.881268159,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,48971502.47410976,14093307.03785499,0.0 + 06/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24546776.818623086,0.0,26761240.776330957,0.0,23815743.331831494,0.0,27007065.865339947,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,102130826.79212548,14093307.03785499,15502637.741640486 + 06/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,51770574.97786555,0.0,51374752.059603039,0.0,47013153.9715433,0.0,56172383.532415408,20482.420336672145,20161.764225309802,20187.744716382607,24301.609867410472,306480740.9247901,206330864.5414273,56373228.15141996,38756594.35410121 + 06/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,75529351.36630711,0.0,73288477.3441902,0.0,61639020.91834495,0.0,74805831.92018642,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,285262681.54902866,56373228.15141996,38756594.35410121 + 06/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79096205.65065456,0.0,68756800.83377609,0.0,48361293.58622493,0.0,60914798.374168518,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,257129098.4448241,28186614.07570998,0.0 + 06/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82709767.54147694,0.0,70247389.12490374,0.0,46660690.77292373,0.0,60060298.80379081,10121.92375444592,9963.46314982706,9976.302089045152,12009.27615706692,151455474.5413862,259678146.24309523,28186614.07570998,0.0 + 06/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,84895265.54500135,0.0,73167861.19931573,0.0,45344866.108190428,0.0,59760659.49565761,5052.400097116383,4973.303831071719,4979.712440672624,5994.479853260247,75599626.39963551,263168652.3481651,28186614.07570998,0.0 + 06/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86414035.0307222,0.0,75361971.27937491,0.0,47263327.502546619,0.0,62731873.834215689,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,271771207.6468594,28186614.07570998,0.0 + 06/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72459213.68457395,0.0,66340557.923361089,0.0,45974158.818072188,0.0,58656682.88052049,5067.871923460614,4988.533443088266,4994.961677598708,6012.836584621757,75831133.06356964,243430613.3065277,28186614.07570998,0.0 + 06/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46774683.25640012,0.0,43053341.77889849,0.0,34346852.69249609,0.0,41483142.221461597,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,165658019.9492563,28186614.07570998,0.0 + 06/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42351105.6710235,0.0,39200038.13837771,0.0,29006954.623872125,0.0,35049268.86548479,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,145607367.29875813,28186614.07570998,0.0 + 06/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,42240454.967626128,0.0,40808676.45602107,0.0,31652558.60328415,0.0,38679450.74254636,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,153381140.76947773,35233267.594637479,0.0 + 06/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,39046343.83087096,0.0,40132450.37611067,0.0,31194649.79923364,0.0,39288028.9360989,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,149661472.94231419,14093307.03785499,0.0 + 06/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53018253.870910007,0.0,58136447.813050437,0.0,49439760.46120594,0.0,61029032.65445137,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,221623494.79961775,63419881.67034747,0.0 + 06/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,58186928.86722676,0.0,57953737.87925606,0.0,58556611.52340125,0.0,69184895.21364887,10193.958236746712,10034.369918869412,10047.30022869672,12094.742320591577,152533334.53765593,243882173.4835329,63419881.67034747,69761869.8373822 + 06/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,46666282.92037052,0.0,44116698.587294388,0.0,49609429.77741737,0.0,57303319.07776174,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,197695730.36284403,49326574.63249246,69761869.8373822 + 06/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,38800182.799823809,0.0,35975397.44516386,0.0,42790875.11227098,0.0,48878423.35732414,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,166444878.71458278,35233267.594637479,69761869.8373822 + 06/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,36794547.28429301,0.0,34582730.464711029,0.0,40064103.39678416,0.0,45978672.41110363,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,157420053.55689184,35233267.594637479,62010550.96656194 + 06/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,28203926.135137816,0.0,25588718.09379757,0.0,32921410.42790384,0.0,36449094.19037441,2554.6574494177627,2514.6638104762516,2517.904211462449,3031.0035464642317,38225624.464154507,123163148.84721363,35233267.594637479,46507913.22492146 + 06/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15153730.4103625,0.0,12638937.28630229,0.0,19689373.77980271,0.0,20812889.266300188,2557.28861832399,2517.2537879424078,2520.497526378924,3034.1253279335785,38264994.938084039,68294930.74276769,21139960.556782485,23253956.61246073 + 06/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3657093.3475871386,0.0,1124425.84743236,0.0,9358485.8496214,0.0,8424761.2218404,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,22564766.266481304,14093307.03785499,0.0 + 06/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,826436.8553553859,0.0,0.0,0.0,7430699.349013199,0.0,5522131.9426841889,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,13779268.147052773,14093307.03785499,0.0 + 06/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6350388.7085688509,0.0,4168867.96144237,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,10519256.670011219,14093307.03785499,0.0 + 06/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,537900.7439356917,0.0,0.0,0.0,6536205.663245622,0.0,4614585.062463631,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,11688691.469644946,14093307.03785499,0.0 + 06/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6799934.812431029,0.0,3814424.309647834,0.0,9280454.254277502,0.0,8877810.008458214,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,28772623.384814577,14093307.03785499,0.0 + 06/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,23684719.718046626,0.0,23755144.78755631,0.0,21961086.37302789,0.0,25366024.22167051,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,94766975.10030133,14093307.03785499,15502637.741640486 + 06/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,54497193.00250689,0.0,53487983.376122999,0.0,46633826.83456056,0.0,56583397.31288621,20410.860095986136,20091.324273541286,20117.213995546575,24216.706373458845,305409977.0587182,211202400.52607665,56373228.15141996,38756594.35410121 + 06/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,59112169.31854621,0.0,58412243.00789647,0.0,46928366.21105082,0.0,58095345.526992637,17792.64222210587,17514.095088904676,17536.663788053254,21110.290809620412,266233290.87126319,222548124.06448613,56373228.15141996,38756594.35410121 + 06/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47223616.75854279,0.0,45049099.46304213,0.0,30215591.241847114,0.0,38654452.21203603,12669.679808651535,12471.333607720662,12487.40419399677,15032.091461554393,189577832.6589241,161142759.67546807,28186614.07570998,0.0 + 06/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48552164.96697266,0.0,45829055.72066413,0.0,30414857.236670786,0.0,38858776.95617442,10151.783549306216,9992.855484028478,10005.732298269202,12044.703663850221,151902269.98363484,163654854.880482,28186614.07570998,0.0 + 06/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53999937.00330614,0.0,53166140.39954834,0.0,33514812.408956715,0.0,43443812.442385789,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,184124702.25419698,28186614.07570998,0.0 + 06/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57071813.010514799,0.0,54123868.27110003,0.0,34310737.558853309,0.0,44565520.02466169,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,190071938.8651298,28186614.07570998,0.0 + 06/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63028404.8504356,0.0,60519773.36308847,0.0,39567297.016471,0.0,50971227.0776391,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,214086702.30763418,28186614.07570998,0.0 + 06/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71902243.94897792,0.0,70480305.74543527,0.0,47044893.38531802,0.0,59888836.88399194,7527.805463472247,7409.956264630865,7419.504749596356,8931.45382840953,112639393.10199239,249316279.96372316,28186614.07570998,0.0 + 06/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70229749.54970967,0.0,71965427.31778935,0.0,51791791.28812474,0.0,65100569.4955419,12570.380444341201,12373.58879348288,12389.53342558924,14914.276556289944,188092005.19093175,259087537.65116567,28186614.07570998,0.0 + 06/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62417440.39475796,0.0,64396645.635136719,0.0,49381843.25718685,0.0,62493716.26563749,12631.000242790957,12433.259577679297,12449.281101681561,14986.199633150616,188999065.99908877,238689645.552719,35233267.594637479,0.0 + 06/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,46573531.294035289,0.0,48542678.9892357,0.0,37271472.938163179,0.0,46834130.08770645,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,179221813.30914063,14093307.03785499,0.0 + 06/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53880703.26578699,0.0,54301703.98834069,0.0,50240816.13370635,0.0,60622455.901731047,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,219045679.2895651,63419881.67034747,0.0 + 06/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,68242544.00430058,0.0,67998009.44085391,0.0,68317476.22046879,0.0,81955591.54366307,10135.743846921228,9977.066886176532,9989.923355197416,12025.673169243513,151662266.12713928,286513621.20928636,63419881.67034747,69761869.8373822 + 06/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,60086255.950486239,0.0,59309241.682889837,0.0,57370714.22781143,0.0,68778425.86979302,10167.224126917641,10008.05433651696,10020.95073603043,12063.023319783095,152133309.06929327,245544637.73098053,49326574.63249246,69761869.8373822 + 06/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,52188621.76198658,0.0,51327242.10740736,0.0,50484898.10530416,0.0,60240630.02081471,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,214241391.9955128,35233267.594637479,69761869.8373822 + 06/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35034702.52195393,0.0,32728226.57922364,0.0,37771075.760926287,0.0,42835781.91852788,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,148369786.78063176,35233267.594637479,62010550.96656194 + 06/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21009492.929319264,0.0,18139685.644985118,0.0,26683880.65422809,0.0,28704394.936258258,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,94537454.16479072,35233267.594637479,46507913.22492146 + 06/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,9699023.132821583,0.0,7252002.044654465,0.0,14809758.414432668,0.0,14737234.037278589,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,46498017.6291873,21139960.556782485,23253956.61246073 + 06/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,108101.37789856001,0.0,0.0,0.0,4909248.83037439,0.0,2509764.2845558358,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,7527114.4928287849,14093307.03785499,0.0 + 06/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4771043.359762916,0.0,1961043.5840048679,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,6732086.943767783,14093307.03785499,0.0 + 06/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4604825.277520282,0.0,1717205.6719584545,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,6322030.949478736,14093307.03785499,0.0 + 06/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6243464.1302007,0.0,4069592.9040056767,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,10313057.034206376,14093307.03785499,0.0 + 06/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6539281.247283617,0.0,8981725.840291234,0.0,11492588.300288367,0.0,11243450.256216579,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,38257045.6440798,14093307.03785499,0.0 + 06/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,32102799.33608074,0.0,37808989.471704367,0.0,32222253.139642005,0.0,37684360.102855268,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,139818402.05028237,14093307.03785499,15502637.741640486 + 06/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,43456311.72930983,0.0,41976367.118894,0.0,40522530.67559626,0.0,47904631.24708122,20501.550980368178,20180.59537520996,20206.600132141466,24324.307645894252,306766994.8810099,173859840.7708813,56373228.15141996,38756594.35410121 + 06/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,40060792.11388913,0.0,37950342.16245511,0.0,34570658.21309109,0.0,40566491.80400555,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,153148284.29344089,56373228.15141996,38756594.35410121 + 06/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22015269.769821969,0.0,19339837.385098507,0.0,14313425.706665174,0.0,16219895.610963367,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,71888428.47254902,28186614.07570998,0.0 + 06/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19865711.694339973,0.0,16398724.249191482,0.0,11552285.432057996,0.0,12745746.387451539,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,60562467.76304099,28186614.07570998,0.0 + 06/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13889353.422494276,0.0,11740404.069065292,0.0,9066169.24970574,0.0,9547653.266492568,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,44243580.00775787,28186614.07570998,0.0 + 06/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29617927.086836429,0.0,23488560.66311209,0.0,12803302.81718526,0.0,15849471.348747349,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,81759261.91588113,28186614.07570998,0.0 + 06/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53721448.46639706,0.0,43924772.36870338,0.0,25566748.83117349,0.0,33009888.26278188,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,156222857.9290558,28186614.07570998,0.0 + 06/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53700726.3434702,0.0,50702656.05252613,0.0,37620452.47465683,0.0,46023840.85790912,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,188047675.7285623,28186614.07570998,0.0 + 06/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41756166.038782779,0.0,42004534.69229055,0.0,35902059.11610046,0.0,42177596.744933027,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,161840356.59210683,28186614.07570998,0.0 + 06/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37736247.892239797,0.0,38323389.40859859,0.0,34662692.95412904,0.0,41822470.342085387,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,152544800.5970528,35233267.594637479,0.0 + 06/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24452293.74665952,0.0,26213826.28077137,0.0,23676468.906936356,0.0,28980672.27962808,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,103323261.21399534,14093307.03785499,0.0 + 06/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24106288.262866934,0.0,27179889.306129856,0.0,26793580.60947461,0.0,31613124.093204887,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,109692882.27167627,63419881.67034747,0.0 + 06/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21239284.731137419,0.0,19831352.27277986,0.0,27467884.379141604,0.0,29675499.639742607,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,98214021.02280149,63419881.67034747,69761869.8373822 + 06/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,7802066.504149875,0.0,4525594.091779037,0.0,16381882.716461074,0.0,14942774.751661214,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,43652318.064051199,49326574.63249246,69761869.8373822 + 06/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1290234.4071384699,0.0,0.0,0.0,10590742.465546193,0.0,7712067.819451834,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,19593044.692136498,35233267.594637479,69761869.8373822 + 06/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,7221697.406042058,0.0,3690549.1116631187,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,10912246.517705176,35233267.594637479,62010550.96656194 + 06/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3944680.795912822,0.0,0.0,692127.3758290521,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,42640415.199841219,692127.3758290521,35233267.594637479,46507913.22492146 + 06/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,15939820.446581543,0.0,22398860.989930035,0.0,0.0,0.0,5858520.069548534,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,82898525.2998676,0.0,21139960.556782485,23253956.61246073 + 06/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213004,1534.5368093628636,19352873.364187898,0.0,14093307.03785499,0.0 + 06/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,4668018.050936963,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,24020891.41512486,0.0,14093307.03785499,0.0 + 06/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7960067.548015606,0.0,12658395.126326304,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,39972152.17327969,0.0,14093307.03785499,0.0 + 06/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8880363.12740551,0.0,11320168.247686534,0.0,0.0,0.0,4137726.058595496,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,43691946.932625319,0.0,14093307.03785499,0.0 + 06/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5092992.118806384,0.0,5557021.072349399,0.0,0.0,0.0,1667198.419198464,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,31669579.692478844,0.0,14093307.03785499,0.0 + 06/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,0.0,14093307.03785499,15502637.741640486 + 06/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,6296451.2255827919,0.0,4692115.085734732,0.0,0.0,0.0,3806614.9190524264,0.0,20694.908356167132,20370.925705219997,20397.175722208332,24553.71879137492,324455404.10026338,0.0,56373228.15141996,38756594.35410121 + 06/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,379228.5546945395,0.0,2223081.84861491,0.0,0.0,0.0,0.0,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,273553963.3884383,0.0,56373228.15141996,38756594.35410121 + 06/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2247714.40871141,0.0,8210527.298884859,0.0,1915984.0859722838,0.0,7179965.825675019,0.0,12933.722548816115,12731.24270953084,12747.648215213001,15345.368093628636,213082925.26112253,0.0,28186614.07570998,0.0 + 06/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,616468.6128152798,0.0,5991173.7676388849,0.0,3514663.729922392,0.0,8257881.047223019,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,173163124.77331317,0.0,28186614.07570998,0.0 + 06/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,2725711.792871289,0.0,2929802.0007227079,0.0,6435712.956956494,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,89464716.36763133,0.0,28186614.07570998,0.0 + 06/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,752271.3671480189,0.0,1299818.8361910112,0.0,4068584.017351138,0.0,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,83475381.51648507,0.0,28186614.07570998,0.0 + 06/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,655755.355145797,0.0,0.0,0.0,0.0,288057.8199941403,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77553136.77827944,655755.355145797,28186614.07570998,0.0 + 06/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4973967.587149284,0.0,0.0,0.0,0.0,0.0,0.0,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,4973967.587149284,28186614.07570998,0.0 + 06/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1595744.0820246409,0.0,0.0,0.0,0.0,0.0,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,1595744.0820246409,28186614.07570998,0.0 + 06/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12915.303609187558,12713.112121838218,12729.494264407587,15323.514724853505,193253128.99303273,0.0,35233267.594637479,0.0 + 06/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2003222.347076548,0.0,0.0,0.0,0.0,0.0,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,272557602.9373223,0.0,14093307.03785499,0.0 + 06/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,0.0,63419881.67034747,0.0 + 06/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,3001084.9320579248,0.0,0.0,0.0,11531183.772778999,0.0,8580831.115724437,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,23113099.82056136,63419881.67034747,69761869.8373822 + 06/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,0.0,0.0,0.0,8481247.495563049,0.0,5218740.684484748,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,13699988.180047796,49326574.63249246,69761869.8373822 + 06/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,6225802.299240571,0.0,1721727.2906816304,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,7947529.589922202,35233267.594637479,69761869.8373822 + 06/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2667509.484869363,0.0,0.0,2005995.5829242639,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,80079002.94162093,2005995.5829242639,35233267.594637479,62010550.96656194 + 06/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2923012.648258361,0.0,10740533.35161725,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,52369292.7282514,0.0,35233267.594637479,46507913.22492146 + 06/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,15112744.687458225,0.0,20404342.14256578,0.0,0.0,0.0,6836428.13399226,0.0,2586.8635445208917,2546.3657131524998,2549.6469652760417,3069.214848921865,81061042.82275294,0.0,21139960.556782485,23253956.61246073 + 06/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.426797998898,1273.1779601876947,1274.8185799399697,1534.6015226894857,19353689.498937776,0.0,14093307.03785499,0.0 + 06/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1877844.046599843,0.0,6342319.925577393,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,27572532.054301837,0.0,14093307.03785499,0.0 + 06/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9101336.285494445,0.0,13569117.281237338,0.0,0.0,0.0,2533931.6922935077,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,44554699.91778369,0.0,14093307.03785499,0.0 + 06/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3333882.9072244765,0.0,1506398.2754426252,0.0,0.0,0.0,211371.92581498828,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,24404021.19060669,0.0,14093307.03785499,0.0 + 06/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 06/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,77373489.61708084,0.0,14093307.03785499,15502637.741640486 + 06/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,3601882.559692079,0.0,14698319.771092575,0.0,23344421.86810763,0.0,17654892.98435849,20654.815957367104,20331.460960402415,20357.660123038968,24506.150690619634,309060315.8331412,59299517.183250788,56373228.15141996,38756594.35410121 + 06/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,31144569.932121699,0.0,28940001.626462584,0.0,31405518.167320949,0.0,33898769.158842649,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,125388858.88474787,56373228.15141996,38756594.35410121 + 06/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29050470.418105157,0.0,20122853.54157419,0.0,16321472.849386396,0.0,17385522.55314345,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,82880319.36220919,28186614.07570998,0.0 + 06/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38159823.21638231,0.0,25097692.58111321,0.0,15579140.40434719,0.0,17487242.158473206,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,96323898.36031592,28186614.07570998,0.0 + 06/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43418767.82043247,0.0,29257385.404427086,0.0,14796787.811993679,0.0,18254117.887079814,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,105727058.92393305,28186614.07570998,0.0 + 06/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49770151.84922391,0.0,35521335.12326827,0.0,19274774.07804349,0.0,25208777.99749635,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,129775039.04803202,28186614.07570998,0.0 + 06/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56243428.68987502,0.0,43804058.652498,0.0,28725785.939317265,0.0,36066916.82727051,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,164840190.10896079,28186614.07570998,0.0 + 06/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52825776.37956275,0.0,45279858.48829957,0.0,34910495.06660864,0.0,41580577.51944051,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,174596707.45391149,28186614.07570998,0.0 + 06/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50509934.18494087,0.0,47956303.054241139,0.0,38980831.247426729,0.0,45767019.23727619,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,183214087.7238849,28186614.07570998,0.0 + 06/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,49694804.829878319,0.0,48474682.98413466,0.0,42224549.66228819,0.0,50969247.14916557,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,191363284.62546674,35233267.594637479,0.0 + 06/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,41849806.66690354,0.0,43383168.49989754,0.0,37412615.084712598,0.0,46474340.18588169,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,169119930.43739537,14093307.03785499,0.0 + 06/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44971576.676208447,0.0,50030859.066967237,0.0,43327533.64738728,0.0,53216248.94805357,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,191546218.33861653,63419881.67034747,0.0 + 06/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,43862654.0002127,0.0,43313100.710217598,0.0,45761299.0823151,0.0,53046403.929238017,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,185983457.7219834,63419881.67034747,69761869.8373822 + 06/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,32428372.26949445,0.0,29429933.71388649,0.0,36430487.45814131,0.0,40683396.72077821,10289.078474697495,10128.001031750415,10141.051994823398,12207.598851957478,153956629.27162365,138972190.16230048,49326574.63249246,69761869.8373822 + 06/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21591074.611779594,0.0,18471507.98844551,0.0,27311494.998581426,0.0,29156389.104557545,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,96530466.70336408,35233267.594637479,69761869.8373822 + 06/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16473880.410736122,0.0,13322773.83444241,0.0,22950510.852674486,0.0,23685301.443050609,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,76432466.54090363,35233267.594637479,62010550.96656194 + 06/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9191506.574326188,0.0,5940440.3599052359,0.0,16609028.6279061,0.0,15632198.461484874,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,47373174.0236224,35233267.594637479,46507913.22492146 + 06/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,4980977.802125355,0.0,1456451.4259469808,2581.851994670888,2541.432620050302,2544.707515379871,3063.268836327454,38632539.47914265,6437429.228072336,21139960.556782485,23253956.61246073 + 06/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 06/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 + 06/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 06/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 06/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,338228.5328755761,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,338228.5328755761,14093307.03785499,0.0 + 06/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5961640.787272519,0.0,13387941.09006762,0.0,17149633.40481583,0.0,11347903.079939498,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,47847118.36209547,14093307.03785499,15502637.741640486 + 06/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,40632576.55842015,0.0,43672648.82658449,0.0,44106537.5695321,0.0,49306689.896589789,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,177718452.85112653,56373228.15141996,38756594.35410121 + 06/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,49517929.886120859,0.0,46234873.14828618,0.0,41043625.30069082,0.0,48345555.56707278,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,185141983.90217067,56373228.15141996,38756594.35410121 + 06/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46551759.922274868,0.0,39460457.52694369,0.0,28346155.76386044,0.0,34077014.468822438,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,148435387.68190146,28186614.07570998,0.0 + 06/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57864077.97263079,0.0,46280202.09173967,0.0,30379106.42646696,0.0,37459530.089708168,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,171982916.5805456,28186614.07570998,0.0 + 06/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59327045.82003885,0.0,50462244.65102216,0.0,30757324.248299049,0.0,39303372.72298375,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,179849987.44234378,28186614.07570998,0.0 + 06/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60851563.453300569,0.0,50423763.798245918,0.0,31160412.665880439,0.0,40545801.86806944,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,182981541.78549639,28186614.07570998,0.0 + 06/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58994667.49500999,0.0,50838557.73939052,0.0,34759556.19170338,0.0,43771971.14708095,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,188364752.57318483,28186614.07570998,0.0 + 06/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55017927.40678033,0.0,51350481.715067777,0.0,37564770.30638079,0.0,46160173.619198109,7625.418095188231,7506.0407523877179,7515.713052022824,9047.267489837323,114099981.80196993,190093353.047427,28186614.07570998,0.0 + 06/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48977855.47957548,0.0,48224666.03204544,0.0,38047250.540716219,0.0,45829642.10667607,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,181079414.15901319,28186614.07570998,0.0 + 06/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,52404386.73393032,0.0,53296820.23797222,0.0,45042331.45309158,0.0,55307138.99740215,22904.166951213538,22545.597944824163,22574.650248957412,27174.91978181236,342717605.7365069,206050677.4223963,35233267.594637479,0.0 + 06/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,48310288.201194349,0.0,52588669.74014951,0.0,44453249.4266522,0.0,56303648.86410396,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,201655856.2321,14093307.03785499,0.0 + 06/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,49660910.674063388,0.0,58587839.03545363,0.0,48555110.332485299,0.0,60921758.11813842,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,217725618.16014073,63419881.67034747,0.0 + 06/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,45467558.573114957,0.0,47154208.61833584,0.0,47584136.15293817,0.0,56042883.094244379,15376.163235276133,15135.446531407466,15154.9500991061,18243.230734420693,230075246.16075743,196248786.43863336,63419881.67034747,69761869.8373822 + 06/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,33509841.219199778,0.0,31846736.11901949,0.0,37503983.08054338,0.0,42598034.34905222,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,145458594.76781488,49326574.63249246,69761869.8373822 + 06/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25872430.21755181,0.0,24203211.162761317,0.0,30852756.165645318,0.0,34230763.30441465,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,115159160.85037309,35233267.594637479,69761869.8373822 + 06/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18411394.67156244,0.0,16370702.736811532,0.0,24696988.691103426,0.0,26310202.213589409,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,115635490.51975304,85789288.31306681,35233267.594637479,62010550.96656194 + 06/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9530303.037616212,0.0,7195422.630474397,0.0,16837939.754515564,0.0,16381795.06451795,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,49945460.48712412,35233267.594637479,46507913.22492146 + 06/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,4793673.699085785,0.0,1869586.3484335126,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,6663260.047519297,21139960.556782485,23253956.61246073 + 06/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,0.0,14093307.03785499,0.0 + 06/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 06/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 06/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,1787401.850381251,0.0,2870040.2831919819,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.73957133,4657442.133573232,14093307.03785499,0.0 + 06/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15942608.299184725,0.0,31967802.891030954,0.0,30457128.654538074,0.0,29361282.15951948,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,107728822.00427324,14093307.03785499,15502637.741640486 + 06/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,52764180.08241103,0.0,58793867.868007589,0.0,58778557.390953738,0.0,68064566.79964727,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,238401172.14101959,56373228.15141996,38756594.35410121 + 06/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,63352161.48457848,0.0,59700053.87845715,0.0,55118725.10056651,0.0,66031554.695868168,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,244202495.1594703,56373228.15141996,38756594.35410121 + 06/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57314582.93109977,0.0,48667735.086061958,0.0,37592554.959757689,0.0,45468194.36226751,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,189043067.33918695,28186614.07570998,0.0 + 06/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61025290.23775111,0.0,49441451.11815233,0.0,34288319.83884701,0.0,42007323.4572303,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,186762384.65198077,28186614.07570998,0.0 + 06/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60246066.66938298,0.0,48326708.253040257,0.0,30380446.841650536,0.0,38547024.03846812,5096.979118373356,5017.184959434706,5023.65011434836,6047.371160295788,76266667.26882796,177500245.8025419,28186614.07570998,0.0 + 06/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65214418.007771987,0.0,53519778.59802584,0.0,33524614.452190948,0.0,43781063.90459275,5075.891774653108,4996.427742014239,5002.866149134601,6022.351831925111,75951134.99181742,196039874.96258153,28186614.07570998,0.0 + 06/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68088770.93916956,0.0,58255714.39365448,0.0,39114653.97120947,0.0,49965867.31019592,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,215425006.6142294,28186614.07570998,0.0 + 06/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65570950.87903519,0.0,59887896.26634666,0.0,44267114.07661639,0.0,54294504.564917068,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,224020465.78691534,28186614.07570998,0.0 + 06/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63291372.83881241,0.0,62754337.23525065,0.0,51274252.6235155,0.0,61322114.98368032,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,238642077.6812589,28186614.07570998,0.0 + 06/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,64203393.11409139,0.0,65076195.375803459,0.0,56568473.85655533,0.0,69518923.04227765,15227.675323959324,14989.283226042713,15008.598447403805,18067.055495775334,227853404.9754522,255366985.3887278,35233267.594637479,0.0 + 06/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,57503267.64505266,0.0,61522646.71091489,0.0,51972489.99414666,0.0,65711803.34593503,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,236710207.6960492,14093307.03785499,0.0 + 06/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,59182857.96978777,0.0,68004665.72827129,0.0,56167413.748051229,0.0,70559760.07112631,10193.958236746712,10034.369918869412,10047.30022869672,12094.742320591577,152533334.53765593,253914697.51723663,63419881.67034747,0.0 + 06/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,54135317.19307342,0.0,55812402.64558704,0.0,54576065.73282767,0.0,64902388.49420463,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,229426174.06569276,63419881.67034747,69761869.8373822 + 06/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,42484884.78886381,0.0,40790693.80690462,0.0,44859080.94174537,0.0,51901312.72990316,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,180035972.26741696,49326574.63249246,69761869.8373822 + 06/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34292948.237370338,0.0,32611059.92505162,0.0,37833677.72103195,0.0,43126291.5352779,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,147863977.4187318,35233267.594637479,69761869.8373822 + 06/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27226473.834889868,0.0,25214856.38958721,0.0,32173623.080445999,0.0,35776989.28029394,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,120391942.58521702,35233267.594637479,62010550.96656194 + 06/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17690797.417212804,0.0,15442276.941642108,0.0,23944719.155678765,0.0,25393072.532071543,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,82470866.04660522,35233267.594637479,46507913.22492146 + 06/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,3713498.43483959,0.0,1590304.3226939212,0.0,10875034.326704137,0.0,9447249.390635612,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,25626086.47487326,21139960.556782485,23253956.61246073 + 06/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1439639.5380094434,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,1439639.5380094434,14093307.03785499,0.0 + 06/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 06/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 06/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 06/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3152667.9925029065,0.0,20673813.606099748,0.0,18256126.256530879,0.0,12792608.479899403,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,54875216.33503293,14093307.03785499,0.0 + 06/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,28780765.70616471,0.0,38747565.836610499,0.0,35289012.16926039,0.0,38586750.33343491,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,141404094.04547049,14093307.03785499,15502637.741640486 + 06/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,60400626.1913034,0.0,61957086.17358877,0.0,56726509.89350058,0.0,68108449.52317317,20437.2595953421,20117.31048381001,20143.233691699592,24248.02837171385,305804995.71323606,247192671.7815659,56373228.15141996,38756594.35410121 + 06/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,72538410.70546328,0.0,70522909.7596913,0.0,58191334.89735354,0.0,71360541.61850217,17814.352073166083,17535.46506819657,17558.061304744653,21136.04871918739,266558137.79506094,272613196.9810103,56373228.15141996,38756594.35410121 + 06/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66578347.373877767,0.0,61578775.05116586,0.0,41694121.578400868,0.0,52685532.08995585,12669.679808651535,12471.333607720662,12487.40419399677,15032.091461554393,189577832.6589241,222536776.09340034,28186614.07570998,0.0 + 06/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75243912.69355391,0.0,67259065.59628745,0.0,41870570.00521119,0.0,53915347.181097257,10090.085035918712,9932.1228723779,9944.921426449666,11971.500732892993,150979068.24350138,238288895.4761498,28186614.07570998,0.0 + 06/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74135842.47354788,0.0,65407236.438721869,0.0,38416721.85794155,0.0,50797943.03028315,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,228757743.80049444,28186614.07570998,0.0 + 06/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77587159.52803964,0.0,68226071.35581234,0.0,40748153.23394926,0.0,54776194.11486694,5028.15217773648,4949.4355173931539,4955.813370235695,5965.710622515978,75236802.0763727,241337578.23266817,28186614.07570998,0.0 + 06/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83160358.0369385,0.0,76239945.92910055,0.0,49318721.80227501,0.0,64679552.875636029,5010.310464645804,4931.873119649281,4938.228341549773,5944.54211099395,74969834.53261972,273398578.6439501,28186614.07570998,0.0 + 06/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79927787.80995193,0.0,77086406.76989573,0.0,54764039.67029361,0.0,69242798.6951941,7542.22826660472,7424.153276089729,7433.720055353544,8948.565933773967,112855203.11455906,281021032.9453354,28186614.07570998,0.0 + 06/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75520050.4018298,0.0,77742513.6422199,0.0,59025670.67114223,0.0,73038706.56247086,12570.380444341201,12373.58879348288,12389.53342558924,14914.276556289944,188092005.19093175,285326941.27766278,28186614.07570998,0.0 + 06/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,68324539.16876276,0.0,71027807.65805066,0.0,56075435.975415188,0.0,70839013.62224955,12612.606294898389,12415.153590472375,12431.151783062083,14964.375916116242,188723835.30437673,266266796.4244781,35233267.594637479,0.0 + 06/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,61746123.732978779,0.0,67215003.30496036,0.0,52284837.340442899,0.0,67639468.95761232,17683.400339907337,17406.563408751015,17428.993542354183,20980.67948641086,264598692.39872424,248885433.33599437,14093307.03785499,0.0 + 06/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,64327302.730725187,0.0,71943354.10859092,0.0,58158290.357297729,0.0,73661331.00866819,17737.551732112148,17459.867050808924,17482.365871595477,21044.92804617615,265408965.7224937,268090278.205282,63419881.67034747,0.0 + 06/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,63391185.504696007,0.0,64766233.861069,0.0,60981382.689114559,0.0,73725365.28312162,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,262864167.3380012,63419881.67034747,69761869.8373822 + 06/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,53388770.49766805,0.0,53189642.498560618,0.0,52076658.54537899,0.0,62390612.762150797,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,221045684.30375845,49326574.63249246,69761869.8373822 + 06/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,38796615.88991371,0.0,37242004.04893589,0.0,41547972.45656089,0.0,47682392.94737542,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,165268985.3427859,35233267.594637479,69761869.8373822 + 06/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26293857.14729049,0.0,23417158.352888075,0.0,32570539.685639427,0.0,35120875.29455388,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,117402430.48037188,35233267.594637479,62010550.96656194 + 06/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16040546.207196495,0.0,12893668.069642615,0.0,23805704.78783312,0.0,23777946.668706836,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,76517865.73337907,35233267.594637479,46507913.22492146 + 06/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,5213048.264842235,0.0,1670793.0121787277,0.0,12241501.172421949,0.0,10880585.539003129,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,30005927.988446043,21139960.556782485,23253956.61246073 + 06/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2115478.555281,0.0,354930.48081095158,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,2470409.036091952,14093307.03785499,0.0 + 06/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 06/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 06/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 06/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 06/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,77411493.45675157,0.0,14093307.03785499,15502637.741640486 + 06/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,4340268.184385708,0.0,0.0,20678.775770011893,20355.045677710543,20381.275231662596,24534.578093720396,309418829.1831795,4340268.184385708,56373228.15141996,38756594.35410121 + 06/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,5911470.3874198109,0.0,778219.3543682922,0.0,12068760.287653093,0.0,4931168.804625872,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,270870140.82749876,23689618.83406707,56373228.15141996,38756594.35410121 + 06/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,193386768.2394872,0.0,28186614.07570998,0.0 + 06/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6517018.021967964,0.0,0.0,0.0,0.0,0.0,0.0,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,6517018.021967964,28186614.07570998,0.0 + 06/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11246607.127526317,0.0,0.0,0.0,0.0,0.0,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,11246607.127526317,28186614.07570998,0.0 + 06/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16681912.758530166,0.0,4291794.301780972,0.0,0.0,0.0,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,20973707.06031114,28186614.07570998,0.0 + 06/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18388827.5848432,0.0,8331337.161401565,0.0,4189253.850365205,0.0,2093647.6331652543,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,33003066.229775225,28186614.07570998,0.0 + 06/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19469398.447769505,0.0,11834840.666099994,0.0,9475961.774847735,0.0,8459680.88896108,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,49239881.77767831,28186614.07570998,0.0 + 06/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22442787.83657424,0.0,18193566.91698104,0.0,17571273.559687795,0.0,17529204.911162728,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,75736833.22440581,28186614.07570998,0.0 + 06/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,23774871.52577841,0.0,21118650.918499259,0.0,23182863.658574244,0.0,25492651.485768934,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,93569037.58862086,35233267.594637479,0.0 + 06/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,18641621.26643257,0.0,18613292.91590895,0.0,20546978.990154886,0.0,23791471.948884217,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,81593365.12138063,14093307.03785499,0.0 + 06/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,23402504.039379855,0.0,28015304.88776461,0.0,27502469.89016876,0.0,32322354.35221832,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,111242633.16953154,63419881.67034747,0.0 + 06/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,16638992.300521482,0.0,15775451.659862146,0.0,24162254.546861546,0.0,25070755.436198005,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,81647453.94344317,63419881.67034747,69761869.8373822 + 06/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,4526876.689155055,0.0,889865.0043850155,0.0,14268680.259511188,0.0,11546244.387163062,10345.79568214947,10183.830320739144,10196.953225549367,12274.891653570337,154805295.17522998,31231666.34021432,49326574.63249246,69761869.8373822 + 06/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26535.964386015225,0.0,0.0,0.0,9350162.458753299,0.0,5492974.602358484,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,14869673.025497795,35233267.594637479,69761869.8373822 + 06/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5032347.554647252,0.0,692933.6896192087,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,77415055.71747336,5725281.244266461,35233267.594637479,62010550.96656194 + 06/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2822418.752162094,0.0,0.0,1069601.3580643153,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,41523742.54596958,1069601.3580643153,35233267.594637479,46507913.22492146 + 06/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,7917599.542358059,0.0,13782745.875370752,0.0,0.0,0.0,147780.08218719046,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,60555504.49779156,0.0,21139960.556782485,23253956.61246073 + 06/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 + 06/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,597403.853063792,0.0,3988678.821333711,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,23928835.43591832,0.0,14093307.03785499,0.0 + 06/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7116134.377632726,0.0,9857033.984439634,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,36315921.123593177,0.0,14093307.03785499,0.0 + 06/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1758885.019597452,0.0,727131.4566841234,0.0,0.0,0.0,26915.718017698975,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,21859640.79066331,0.0,14093307.03785499,0.0 + 06/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 06/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,77373489.61708084,0.0,14093307.03785499,15502637.741640486 + 06/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,12444948.775013123,0.0,20696932.800396839,0.0,19981675.86814099,0.0,16976457.830063017,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,70100015.27361396,56373228.15141996,38756594.35410121 + 06/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,37724968.7282773,0.0,36200365.844791937,0.0,29967431.34547078,0.0,33742493.29837601,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,137635259.21691603,56373228.15141996,38756594.35410121 + 06/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37275667.2435621,0.0,31712498.735628219,0.0,18626354.342947589,0.0,21865681.494537154,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,109480201.81667507,28186614.07570998,0.0 + 06/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47973672.437791738,0.0,39021913.09262981,0.0,20925268.76524029,0.0,25502943.13081193,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,133423797.42647377,28186614.07570998,0.0 + 06/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54104828.563168998,0.0,41287406.744507137,0.0,20261319.50029809,0.0,26016647.84489413,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,141670202.65286837,28186614.07570998,0.0 + 06/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59716087.31417751,0.0,46267890.51684823,0.0,24010191.233520025,0.0,31662682.57840251,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,161656851.64294828,28186614.07570998,0.0 + 06/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61732267.743243228,0.0,50269008.527799639,0.0,30430936.22735673,0.0,38585789.81144004,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,181018002.30983965,28186614.07570998,0.0 + 06/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61521987.95830345,0.0,54352596.30739333,0.0,38149180.93496119,0.0,46267610.920251909,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,200291376.12090988,28186614.07570998,0.0 + 06/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56534687.337103087,0.0,54172800.69476047,0.0,42077150.36900059,0.0,49813160.86907525,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,202597799.26993943,28186614.07570998,0.0 + 06/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50225274.42140509,0.0,48680068.484360817,0.0,39817430.77087909,0.0,47962402.77594212,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,186685176.45258714,35233267.594637479,0.0 + 06/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,36050823.14358999,0.0,35201637.217291187,0.0,29033572.331567039,0.0,34925819.71698818,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,135211852.40943638,14093307.03785499,0.0 + 06/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,38605982.32250576,0.0,38635372.76882257,0.0,36538646.31260888,0.0,42809417.818456318,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,156589419.2223935,63419881.67034747,0.0 + 06/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,40992732.99253763,0.0,38482840.154176969,0.0,42931678.73758736,0.0,48590463.64336403,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,170997715.52766598,63419881.67034747,69761869.8373822 + 06/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,29268391.34561032,0.0,25321982.810078939,0.0,33349493.358554305,0.0,36133014.81346135,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,124072882.3277049,49326574.63249246,69761869.8373822 + 06/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22880146.82279355,0.0,19040706.510192824,0.0,27853311.452291028,0.0,29319243.23925131,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,99093408.02452871,35233267.594637479,69761869.8373822 + 06/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18873090.399452207,0.0,15121173.795745539,0.0,24393792.60138589,0.0,25040128.945808039,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,83428185.74239168,35233267.594637479,62010550.96656194 + 06/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11524793.978507605,0.0,7808360.810336785,0.0,18131309.04507174,0.0,17223587.909078674,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,54688051.7429948,35233267.594637479,46507913.22492146 + 06/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,304575.71834252736,0.0,0.0,0.0,5174130.253137912,0.0,1260467.6543036437,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,6739173.625784081,21139960.556782485,23253956.61246073 + 06/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 + 06/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 06/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 06/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,619421.427820649,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19962793.83209086,0.0,14093307.03785499,0.0 + 06/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3849240.5282599006,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,23197107.7302241,0.0,14093307.03785499,0.0 + 06/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1663489.9012291218,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,79066137.4888441,0.0,14093307.03785499,15502637.741640486 + 06/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,11692521.130609803,0.0,13998079.28599676,0.0,0.0,0.0,7674733.605745628,0.0,20691.59136429894,20367.660641478287,20393.906451098734,24549.78330714068,342975924.37281218,0.0,56373228.15141996,38756594.35410121 + 06/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,20405187.343090018,0.0,26949789.078035226,0.0,8544592.239595654,0.0,18819657.616427054,0.0,18105.14244376157,17821.703061293498,17844.66814471139,21481.06039374809,345628492.83380028,0.0,56373228.15141996,38756594.35410121 + 06/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19524997.463443106,0.0,24114962.684505445,0.0,12889423.392912174,0.0,21312063.70366258,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,271320119.2641653,0.0,28186614.07570998,0.0 + 06/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18062250.845788924,0.0,22615033.091557433,0.0,12360774.733039387,0.0,20131932.508213696,0.0,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,227916970.41276113,0.0,28186614.07570998,0.0 + 06/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9657283.084623684,0.0,13719700.958817676,0.0,8482379.287430736,0.0,14160094.893348223,0.0,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,123347073.87974414,0.0,28186614.07570998,0.0 + 06/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6276109.469140336,0.0,10072150.641256798,0.0,6186568.713549962,0.0,10862677.72063288,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,110662585.50286529,0.0,28186614.07570998,0.0 + 06/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5641915.220351381,0.0,9360415.221207872,0.0,5298393.945203305,0.0,9724237.076098588,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,107290040.42114647,0.0,28186614.07570998,0.0 + 06/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2675377.6990742047,0.0,4985617.738903556,0.0,2713390.7979684018,0.0,5783371.836019042,0.0,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,131936686.25882125,0.0,28186614.07570998,0.0 + 06/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,0.0,28186614.07570998,0.0 + 06/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,0.0,35233267.594637479,0.0 + 06/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,0.0,14093307.03785499,0.0 + 06/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,8592930.029797823,0.0,8367261.950357852,0.0,13144077.00878854,0.0,11301908.53127931,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,41406177.52022353,63419881.67034747,0.0 + 06/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,14643588.056054946,0.0,12358840.823438302,0.0,23469184.484266513,0.0,23546820.068511525,10327.407978683552,10165.730480201208,10178.830061519484,12253.075345309817,154530157.9165706,74018433.43227127,63419881.67034747,69761869.8373822 + 06/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,6538798.207765041,0.0,1309096.1551100494,0.0,16665966.836328961,0.0,14784348.939652857,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,39298210.1388569,49326574.63249246,69761869.8373822 + 06/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2077552.2718334939,0.0,0.0,0.0,13327152.776801257,0.0,10682203.709171027,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,26086908.75780578,35233267.594637479,69761869.8373822 + 06/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,8402871.041183247,0.0,3658523.676772602,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,77373489.61708084,12061394.71795585,35233267.594637479,62010550.96656194 + 06/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2469268.5018343676,0.0,0.0,533741.1712761622,0.0,0.0,2586.4489205373677,2545.957580184786,2549.2383063873419,3068.7229133925845,41170592.295641858,533741.1712761622,35233267.594637479,46507913.22492146 + 06/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,11546688.398719438,0.0,17742213.97523143,0.0,0.0,0.0,3413937.2913354926,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,71407575.82953556,0.0,21139960.556782485,23253956.61246073 + 06/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,19350314.658758403,0.0,14093307.03785499,0.0 + 06/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2169773.962868366,0.0,0.0,0.0,0.0,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,21522142.044992966,0.0,14093307.03785499,0.0 + 06/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5905642.344743511,0.0,10170548.666972856,0.0,0.0,0.0,0.0,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,35426505.67047477,0.0,14093307.03785499,0.0 + 06/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3111860.1506844505,0.0,1066547.016234972,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,23521159.92844024,0.0,14093307.03785499,0.0 + 06/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 06/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,77373489.61708084,0.0,14093307.03785499,15502637.741640486 + 06/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,19285674.639447169,0.0,26881351.755995819,0.0,30442911.228188136,0.0,29237716.11547546,20643.826563197203,20320.643607248312,20346.828830621223,24493.11219392801,308895880.3019811,105847653.73910658,56373228.15141996,38756594.35410121 + 06/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,35719633.572327937,0.0,34993378.119875777,0.0,34098002.97478847,0.0,38239739.761200908,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,143050754.4281931,56373228.15141996,38756594.35410121 + 06/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32313000.582220809,0.0,24223387.247807545,0.0,19528147.782281318,0.0,21569581.21203273,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,97634116.82434242,28186614.07570998,0.0 + 06/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37723225.384466078,0.0,25149745.027943348,0.0,16945630.90065069,0.0,19020093.6346781,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,98838694.9477382,28186614.07570998,0.0 + 06/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42737578.038547817,0.0,28526129.80309254,0.0,15705135.450937814,0.0,19128378.97793495,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,106097222.2705131,28186614.07570998,0.0 + 06/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46946230.147951569,0.0,32340671.72242218,0.0,18109033.70825735,0.0,23354662.466030655,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,120750598.04466173,28186614.07570998,0.0 + 06/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51497332.53701605,0.0,38967224.490382049,0.0,25786829.545092469,0.0,32023717.476844565,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,148275104.04933513,28186614.07570998,0.0 + 06/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53058694.930842328,0.0,45417263.532638769,0.0,34819305.8520488,0.0,41300357.93890589,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,174595622.25443579,28186614.07570998,0.0 + 06/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50971991.78820061,0.0,48813453.681655678,0.0,41267990.08253149,0.0,47722575.03063126,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,188776010.58301903,28186614.07570998,0.0 + 06/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,51321637.13966935,0.0,50481087.50283773,0.0,46061043.369121577,0.0,55151827.38384872,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,203015595.39547736,35233267.594637479,0.0 + 06/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,43894787.34023186,0.0,45837686.219995457,0.0,40897621.24170486,0.0,50648335.03174278,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,181278429.83367498,14093307.03785499,0.0 + 06/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,45842610.631307628,0.0,53131273.93710257,0.0,45287965.051273617,0.0,56082527.24587208,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,200344376.86555589,63419881.67034747,0.0 + 06/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,39446224.17763762,0.0,40140542.29449028,0.0,41967058.07904406,0.0,48651326.463270518,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,170205151.01444248,63419881.67034747,69761869.8373822 + 06/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,30196003.33863964,0.0,27170328.920766429,0.0,34975537.72630735,0.0,38650728.04265459,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,130992598.028368,49326574.63249246,69761869.8373822 + 06/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24377168.66972044,0.0,21368112.702367695,0.0,30195354.777315108,0.0,32623868.820311674,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,108564504.9697149,35233267.594637479,69761869.8373822 + 06/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18521270.490076014,0.0,15539136.33741504,0.0,24954096.63617777,0.0,26160765.156895587,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,85175268.6205644,35233267.594637479,62010550.96656194 + 06/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10820376.13702185,0.0,7992471.517478695,0.0,17900942.656457087,0.0,17495080.106776529,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,54208870.41773416,35233267.594637479,46507913.22492146 + 06/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,123298.48664097468,0.0,0.0,0.0,5679940.0312310489,0.0,2928733.5686891397,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,8731972.086561162,21139960.556782485,23253956.61246073 + 06/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 06/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 06/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 06/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 06/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,601804.2495731218,0.0,7946397.5341212539,0.0,9018745.671299186,0.0,5060680.435881608,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142676,22627627.890875173,14093307.03785499,15502637.741640486 + 06/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,37321992.78976184,0.0,39099643.85633734,0.0,36191007.88221471,0.0,40718934.053606998,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,153331578.5819209,56373228.15141996,38756594.35410121 + 06/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,54040671.27536187,0.0,51669438.68424281,0.0,42148313.01362818,0.0,50215151.8172386,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,198073574.79047147,56373228.15141996,38756594.35410121 + 06/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55574133.1643168,0.0,49850255.610641989,0.0,32801742.044297778,0.0,40520394.95101604,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,178746525.7702726,28186614.07570998,0.0 + 06/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42812220.48393816,0.0,35184602.76038438,0.0,24315655.23723986,0.0,27997768.20067439,12839.917121808196,12638.905823982113,12655.192344162615,15234.071535257024,192125112.5707558,130310246.68223679,28186614.07570998,0.0 + 06/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15031233.704352504,0.0,10095587.249655216,0.0,11129237.554830039,0.0,9583635.300038401,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,45839693.80887616,28186614.07570998,0.0 + 06/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6726174.4792336919,0.0,1560012.4317597459,0.0,5450872.726622794,0.0,2164034.797657036,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,15901094.435273268,28186614.07570998,0.0 + 06/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12921829.256002844,0.0,6988541.56871493,0.0,6357931.208569907,0.0,3795612.626568276,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,30063914.659855956,28186614.07570998,0.0 + 06/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1007850.7053536949,0.0,0.0,0.0,857559.6588695855,0.0,0.0,7722.115740063311,7601.224577593351,7611.019531302445,9161.995554305577,115546879.45175286,1865410.3642232803,28186614.07570998,0.0 + 06/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18018.270060147723,17736.19068105115,17759.045573039035,21377.989626713006,269609385.3874233,0.0,28186614.07570998,0.0 + 06/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23166.347220189935,22803.673732780055,22833.05859390733,27485.986662916723,346640638.3552586,0.0,35233267.594637479,0.0 + 06/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,4583300.148999624,0.0,0.0,0.0,0.0,0.0,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,274399444.69509008,0.0,14093307.03785499,0.0 + 06/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,0.0,63419881.67034747,0.0 + 06/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,783379.4323718004,0.0,0.0,0.0,19850587.39556528,0.0,10633771.886049819,15465.198763467964,15223.088191795892,15242.704694719334,18348.867989925246,231407494.70367036,31267738.713986897,63419881.67034747,69761869.8373822 + 06/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,5690041.579566231,0.0,0.0,0.0,18612483.01630374,0.0,15697783.665420106,12880.062846777017,12678.423060137373,12694.760502310099,15281.702905475997,192725817.53292174,40000308.26129007,49326574.63249246,69761869.8373822 + 06/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1940579.9891299115,0.0,0.0,0.0,15523249.831900616,0.0,11958089.611662632,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,29421919.432693159,35233267.594637479,69761869.8373822 + 06/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,11410491.682453875,0.0,5999270.090646208,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,115778928.18685605,17409761.77310008,35233267.594637479,62010550.96656194 + 06/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,6449279.692207788,0.0,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,6449279.692207788,35233267.594637479,46507913.22492146 + 06/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,2389558.3212413277,0.0,0.0,0.0,0.0,0.0,2576.0125693554034,2535.6846120274747,2538.9521004620198,3056.3405810951996,40934721.82782567,0.0,21139960.556782485,23253956.61246073 + 06/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.7665636223304,1268.590682649658,1270.225391226611,1529.0723324937704,19283957.89197253,0.0,14093307.03785499,0.0 + 06/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,0.0,14093307.03785499,0.0 + 06/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,0.0,14093307.03785499,0.0 + 06/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,0.0,14093307.03785499,0.0 + 06/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,0.0 + 06/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,15502637.741640486 + 06/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,19705256.762708568,0.0,16456494.695584663,0.0,20923714.12319095,0.0,21126517.583690108,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.65895295,78211983.16517428,56373228.15141996,38756594.35410121 + 06/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,13961496.0156077,0.0,10076965.520269229,0.0,16994941.509429568,0.0,16565845.785374405,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,57599248.83068091,56373228.15141996,38756594.35410121 + 06/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7716.808856023122,7596.000773812809,7605.78899611755,9155.69913896811,115467471.95371773,0.0,28186614.07570998,0.0 + 06/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7716.808856023122,7596.000773812809,7605.78899611755,9155.69913896811,115467471.95371773,0.0,28186614.07570998,0.0 + 06/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39012.92899320833,0.0,0.0,0.0,0.0,0.0,0.0,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,39012.92899320833,28186614.07570998,0.0 + 06/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7750335.327445118,0.0,1769920.2353090214,0.0,3993232.884370406,0.0,0.0,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,13513488.447124545,28186614.07570998,0.0 + 06/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21098735.603530937,0.0,18605912.170199187,0.0,11291577.591048968,0.0,12865491.31687638,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,63861716.68165547,28186614.07570998,0.0 + 06/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20052521.95505887,0.0,17579109.81163331,0.0,12707600.797021199,0.0,13959812.324167157,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,64299044.887880537,28186614.07570998,0.0 + 06/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19080283.906603,0.0,17284215.87666569,0.0,17093387.892713164,0.0,18668354.380112336,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,72126242.05609419,28186614.07570998,0.0 + 06/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,43174860.39926344,0.0,44895321.40546089,0.0,40305099.06505007,0.0,48917004.20003713,15308.145071989604,15068.49320515596,15087.910496659935,18162.529780094137,229057482.79403869,177292285.06981156,35233267.594637479,0.0 + 06/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,34395264.83724631,0.0,37368645.2751768,0.0,33320668.259036516,0.0,41620858.96483447,17839.426914306743,17560.147358021466,17582.77540021926,21165.799061035257,266933335.44089783,146705437.3362941,14093307.03785499,0.0 + 06/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,45340858.82682565,0.0,53844252.00650172,0.0,46933107.76108719,0.0,58613359.850956808,10239.244527044078,10078.947243844024,10091.934996104475,12148.472775345426,153210958.3524168,204731578.44537137,63419881.67034747,0.0 + 06/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,43138964.87042187,0.0,44599217.1512273,0.0,48080217.56033665,0.0,55774388.713872309,7697.570676808126,7577.063771882303,7586.827591927196,9132.873773695965,115179608.93152893,191592788.29585812,63419881.67034747,69761869.8373822 + 06/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,30362000.103955375,0.0,28171152.750621894,0.0,37399578.887013617,0.0,41409839.45260304,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,137342571.19419394,49326574.63249246,69761869.8373822 + 06/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21307909.825316553,0.0,18962310.504576293,0.0,29481027.955644877,0.0,31407326.885014174,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,101158575.17055188,35233267.594637479,69761869.8373822 + 06/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,15424152.58345616,0.0,12883448.884656767,0.0,24257341.932104544,0.0,24697234.046515749,5155.647257242486,5074.9346376453099,5081.474208913725,6116.978667563472,77144525.17691398,77262177.44673322,35233267.594637479,62010550.96656194 + 06/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9717137.710055907,0.0,7267109.576570261,0.0,18403449.23743533,0.0,17633131.811895856,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,53020828.33595735,35233267.594637479,46507913.22492146 + 07/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,290337.74536040649,0.0,0.0,0.0,8008208.059827688,0.0,5805398.406346275,2575.6948680023635,2535.3718843483836,2538.6389698013947,3055.9636405672238,38540409.705789718,14103944.211534368,21139960.556782485,23253956.61246073 + 07/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,611562.1425514526,0.0,0.0,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,611562.1425514526,14093307.03785499,0.0 + 07/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,812095.174761248,0.0,0.0,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,812095.174761248,14093307.03785499,0.0 + 07/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,546262.4736269279,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,546262.4736269279,14093307.03785499,0.0 + 07/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3980.9992936936826,0.0,0.0,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,3980.9992936936826,14093307.03785499,0.0 + 07/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 + 07/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2252312.127996888,0.0,0.0,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,2252312.127996888,14093307.03785499,15502637.741640486 + 07/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,19960815.72405376,0.0,13362915.43450959,0.0,31697273.93737375,0.0,27651337.85922247,20428.597590636127,20108.784084403607,20134.69630515728,24237.75123377926,305675385.17031458,92672342.95515958,56373228.15141996,38756594.35410121 + 07/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,22772728.504208358,0.0,20320163.349276443,0.0,24896531.96534643,0.0,26689199.389515245,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,94678623.20834649,56373228.15141996,38756594.35410121 + 07/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12422853.984029115,0.0,8172497.840054639,0.0,8723299.796488207,0.0,8310665.517015553,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,37629317.13758751,28186614.07570998,0.0 + 07/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53434303.105010639,0.0,39802031.706539209,0.0,23487267.672427164,0.0,29654672.859406376,10169.738930740266,10010.529770616604,10023.429359979575,12066.007038522675,152170938.35949285,146378275.34338338,28186614.07570998,0.0 + 07/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52403591.62761019,0.0,41147288.18071182,0.0,22834185.101874155,0.0,30320051.05388531,5073.251640952366,4993.828940099099,5000.263998397941,6019.219414069279,75911630.37666726,146705115.96408148,28186614.07570998,0.0 + 07/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61547050.280323367,0.0,48470944.92645693,0.0,27748486.16457073,0.0,37787075.97117518,5070.578323020321,4991.197473457986,4997.629140843472,6016.047624389726,75871629.22216141,175553557.3425262,28186614.07570998,0.0 + 07/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65476598.631964799,0.0,55046898.43489833,0.0,33699372.417284097,0.0,43877287.109026048,5063.750523638325,4984.476564549041,4990.899571357408,6007.946701056114,75769464.09816319,198100156.59317328,28186614.07570998,0.0 + 07/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69195758.0962526,0.0,65983702.16051334,0.0,45954808.23610318,0.0,58032003.77286562,7593.54044432593,7474.662152096436,7484.29401720232,9009.445873933944,113622992.95521108,239166272.26573477,28186614.07570998,0.0 + 07/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57138300.08574937,0.0,58795731.90774882,0.0,52532804.00347701,0.0,62598680.05722016,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,231065516.05419538,28186614.07570998,0.0 + 07/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,54849599.2575491,0.0,56575155.6838427,0.0,51636562.52668749,0.0,62989566.24959642,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,226050883.71767576,35233267.594637479,0.0 + 07/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,46976299.19604192,0.0,50877015.23140682,0.0,43820939.548695188,0.0,55439790.84465294,17822.829155621665,17543.80944034491,17566.4164294682,21146.10645393081,266684981.3257161,197114044.82079689,14093307.03785499,0.0 + 07/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53907489.40739518,0.0,63179996.149328518,0.0,52515661.94412413,0.0,66620426.57192487,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,236223574.07277269,63419881.67034747,0.0 + 07/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,49039310.44786385,0.0,50169124.53794239,0.0,50341451.7169752,0.0,59734640.267765808,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,209284526.97054724,63419881.67034747,69761869.8373822 + 07/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,38953740.95722128,0.0,37656913.53181179,0.0,41551591.94703527,0.0,48276197.569327447,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,166438444.00539578,49326574.63249246,69761869.8373822 + 07/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32650043.663030916,0.0,31447326.323786417,0.0,35874298.49263107,0.0,41267846.78869621,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,141239515.2681446,35233267.594637479,69761869.8373822 + 07/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,28237710.59166738,0.0,26933462.717518905,0.0,31945619.580317119,0.0,36331233.46716475,5124.448769282119,5044.224567834035,5050.724566042987,6079.962852517997,76677698.72043769,123448026.35666815,35233267.594637479,62010550.96656194 + 07/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16373038.204402699,0.0,13919351.694270324,0.0,23203360.931663518,0.0,24025537.62407287,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,77521288.45440939,35233267.594637479,46507913.22492146 + 07/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,2365267.87820275,0.0,0.0,0.0,10282858.440731127,0.0,8453208.070762072,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,21101334.38969595,21139960.556782485,23253956.61246073 + 07/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,424586.986959546,0.0,0.0,1285.9511712338049,1265.8193657541859,1267.4505032064568,1525.7319768949192,19241830.86152172,424586.986959546,14093307.03785499,0.0 + 07/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,0.0,14093307.03785499,0.0 + 07/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 + 07/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,0.0,14093307.03785499,0.0 + 07/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2480546.466829297,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,2480546.466829297,14093307.03785499,0.0 + 07/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,13226711.280227879,0.0,18423929.577569274,0.0,14202999.492172499,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692028,45853640.349969658,14093307.03785499,15502637.741640486 + 07/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,14720917.94882645,0.0,14368915.95814417,0.0,23443027.347150025,0.0,22844051.63498909,20622.589028969946,20299.738550581238,20325.8968356549,24467.91467025389,308578100.7076559,75376912.88910975,56373228.15141996,38756594.35410121 + 07/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,11150296.415593762,0.0,8547262.583436739,0.0,16477723.5237685,0.0,14972749.378348327,18059.886981053463,17777.156081296485,17800.063761383837,21427.36651475213,270232104.01854929,51148031.90114733,56373228.15141996,38756594.35410121 + 07/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4885727.031636212,0.0,947784.7732505685,0.0,1097289.965100077,0.0,0.0,12899.919272181049,12697.968629497489,12714.331258131313,15305.261796251525,193022931.44182096,6930801.769986857,28186614.07570998,0.0 + 07/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10377540.92018434,0.0,4919768.408312016,0.0,1883844.130930955,0.0,0.0,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,17181153.459427313,28186614.07570998,0.0 + 07/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13742618.795198018,0.0,8055847.145368917,0.0,2548576.745974619,0.0,669569.6986967091,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,25016612.385238265,28186614.07570998,0.0 + 07/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14997673.074807648,0.0,9233139.35161975,0.0,3388945.07108948,0.0,2395815.219108465,5154.476170632303,5073.7818846144759,5080.319970442952,6115.589218003614,77127002.07729604,30015572.716625349,28186614.07570998,0.0 + 07/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11367160.74492427,0.0,6609923.823692411,0.0,3295737.5927820175,0.0,1741261.2079954404,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,23014083.369394144,28186614.07570998,0.0 + 07/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8570397.322046625,0.0,5524808.520980784,0.0,2970648.922627559,0.0,1105570.6794329365,7736.003585349864,7614.895006071167,7624.707575522667,9178.472952606426,115754684.83038046,18171425.445087904,28186614.07570998,0.0 + 07/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7723473.548444186,0.0,5286174.508251609,0.0,4721866.581112168,0.0,2854562.322910514,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,20586076.960718477,28186614.07570998,0.0 + 07/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,8245198.410681291,0.0,6608544.991906593,0.0,9989023.325953907,0.0,8877288.825302033,12887.665636223304,12685.906826496577,12702.253912266111,15290.723324937702,192839578.9197253,33720055.55384382,35233267.594637479,0.0 + 07/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2011753.5002921164,0.0,0.0,18052.581214598682,17769.96468797844,17792.863101221497,21418.698501731786,270122787.0199095,2011753.5002921164,14093307.03785499,0.0 + 07/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,19064752.8455943,0.0,23389622.75636727,0.0,25591934.37672196,0.0,29533262.63243014,18050.675032483014,17768.08834749939,17790.984342886222,21416.43688941499,270094264.604221,97579572.61111367,63419881.67034747,0.0 + 07/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21186598.69990316,0.0,20437571.700900586,0.0,30286690.708843069,0.0,32147335.19793398,10321.913281598601,10160.321803624156,10173.414415310612,12246.556096964005,154447940.15099056,104058196.3075808,63419881.67034747,69761869.8373822 + 07/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,10782531.09994153,0.0,6922050.090146929,0.0,20897683.37965756,0.0,19643845.50566629,10329.908016296402,10168.191379258846,10181.294131696737,12256.04154450516,154567566.25832574,58246110.0754123,49326574.63249246,69761869.8373822 + 07/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3721095.3834418707,0.0,229361.56786871804,0.0,15043523.527078938,0.0,12371672.335867435,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,77306799.55546183,31365652.81425696,35233267.594637479,69761869.8373822 + 07/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,10331620.026585307,0.0,6348434.9890786739,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,77350536.73556961,16680055.015663978,35233267.594637479,62010550.96656194 + 07/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,3311767.1420655145,0.0,0.0,2585.6933312850158,2545.2138198231348,2548.4935876145507,3067.8264355872836,38690017.827515948,3311767.1420655145,35233267.594637479,46507913.22492146 + 07/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,4971936.810526663,0.0,10086480.255929234,0.0,0.0,0.0,0.0,0.0,2586.5659603899105,2546.0727877566034,2549.3536624158748,3068.8617767099406,53761492.14063628,0.0,21139960.556782485,23253956.61246073 + 07/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4030062155767,1273.1545408691798,1274.795130443272,1534.5732946467629,19353333.499829249,0.0,14093307.03785499,0.0 + 07/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 07/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1010902.2152675144,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,20363775.579455407,0.0,14093307.03785499,0.0 + 07/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,977027.5689416943,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,20324894.770905895,0.0,14093307.03785499,0.0 + 07/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 + 07/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,7652779.099550198,0.0,11911772.86329656,0.0,6123316.274302518,5161.909022321121,5081.0983736235079,5087.64588749485,6124.408012803004,77238220.66647294,25687868.237149277,14093307.03785499,15502637.741640486 + 07/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,32093876.403220804,0.0,38691248.790345769,0.0,44364478.25546685,0.0,47864916.35146388,20615.50804533357,20292.768421064648,20318.917724415,24459.513353467093,308472147.1594091,163014519.8004973,56373228.15141996,38756594.35410121 + 07/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,48855681.862350407,0.0,46121046.931863088,0.0,46548864.984808567,0.0,53699031.104135718,18000.714058161273,17718.909521550864,17741.74214500088,21357.160100509875,269346692.9708024,195224624.88315777,56373228.15141996,38756594.35410121 + 07/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44098582.986695777,0.0,33149155.981957009,0.0,27565974.96866651,0.0,32012135.17559318,12811.121923205299,12610.561419585085,12626.811415107468,15199.907131294993,191694246.80109424,136825849.11291249,28186614.07570998,0.0 + 07/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54741713.54104906,0.0,39118305.203575249,0.0,26511685.623462518,0.0,31942506.54969074,10207.673024775419,10047.86999933304,10060.81770539195,12111.014393061994,152738550.44122467,152314210.91777758,28186614.07570998,0.0 + 07/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57710483.989475447,0.0,41402603.28231677,0.0,23232366.916903426,0.0,29843068.96821265,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,152188523.1569083,28186614.07570998,0.0 + 07/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60483395.20196163,0.0,44387381.16509515,0.0,25502375.28656229,0.0,34324127.522187579,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,164697279.17580665,28186614.07570998,0.0 + 07/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,64829549.23669876,0.0,51648232.78904756,0.0,34757110.999649848,0.0,44495330.40914798,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,195730223.43454416,28186614.07570998,0.0 + 07/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67337112.66939543,0.0,59102198.55862243,0.0,44319219.666438829,0.0,54232649.543463218,7625.418095188231,7506.0407523877179,7515.713052022824,9047.267489837323,114099981.80196993,224991180.4379199,28186614.07570998,0.0 + 07/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60938920.34983863,0.0,58416396.45288901,0.0,46392684.50706752,0.0,55231161.995651189,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,220979163.30544634,28186614.07570998,0.0 + 07/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50069480.97454344,0.0,48360465.06952392,0.0,40515518.70262813,0.0,49023607.18108486,12765.134274640412,12565.29371623747,12581.485379703709,15145.34454172922,191006128.4843189,187969071.9277804,35233267.594637479,0.0 + 07/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,34664875.28421662,0.0,33195767.85679186,0.0,27346792.557205634,0.0,33087711.81809639,17886.3464200077,17606.332330107853,17629.019886356178,21221.4672635218,267635397.2399767,128295147.51631052,14093307.03785499,0.0 + 07/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,38963253.81913203,0.0,36433142.413065139,0.0,35891506.42644876,0.0,41930135.125374358,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,153218037.78402028,63419881.67034747,0.0 + 07/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47388953.30972079,0.0,43850038.3211917,0.0,47979413.48459137,0.0,55297379.76482659,10250.775490184089,10090.29768760498,10103.300066070733,12162.153822947126,153383497.44050495,194515784.88033045,63419881.67034747,69761869.8373822 + 07/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,40509265.52752376,0.0,37142723.51095803,0.0,42036205.7738196,0.0,48000858.36149061,10248.897538564239,10088.44913566807,10101.449132085974,12159.925705035994,153355397.44087539,167689053.173792,49326574.63249246,69761869.8373822 + 07/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33251668.5430087,0.0,30007605.247213909,0.0,35815823.36624735,0.0,40267161.69557183,5133.441639124436,5053.076652621352,5059.588057645065,6090.63254930696,76812260.03531212,139342258.85204179,35233267.594637479,69761869.8373822 + 07/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27058131.931379714,0.0,23665210.275427145,0.0,30852197.358259549,0.0,33852402.213336538,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,115427941.77840294,35233267.594637479,62010550.96656194 + 07/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20705024.112939024,0.0,17104637.027167486,0.0,25391921.343868276,0.0,26892603.88788795,2572.2696186743739,2532.0002579376039,2535.2629987058496,3051.8997129893698,38489157.31790591,90094186.37186273,35233267.594637479,46507913.22492146 + 07/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,8508793.174829837,0.0,5613708.427039669,0.0,13414872.06824166,0.0,12578674.841228318,2573.6937884310216,2533.402132051032,2536.6666792771595,3053.5894360417298,38510467.328883398,40116048.511339489,21139960.556782485,23253956.61246073 + 07/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3635453.385525046,0.0,1289791.5078956036,1286.8468942155108,1266.701066025516,1268.3333396385797,1526.7947180208649,19255233.664441699,4925244.89342065,14093307.03785499,0.0 + 07/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2726469.530142839,0.0,373985.0749455093,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,3100454.605088348,14093307.03785499,0.0 + 07/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1676558.5906979934,0.0,0.0,1286.8468942155108,1266.701066025516,1268.3333396385797,1526.7947180208649,19255233.664441699,1676558.5906979934,14093307.03785499,0.0 + 07/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,173873.53901376128,0.0,0.0,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,173873.53901376128,14093307.03785499,0.0 + 07/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,0.0,14093307.03785499,0.0 + 07/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,0.0,14093307.03785499,15502637.741640486 + 07/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,9163442.74521758,0.0,5163797.768418111,0.0,17241293.915464935,0.0,11649691.843486052,20615.50804533357,20292.768421064648,20318.917724415,24459.513353467093,308472147.1594091,43218226.27258667,56373228.15141996,38756594.35410121 + 07/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,21973038.193139718,0.0,18090335.517543809,0.0,19764527.366718513,0.0,20978537.82351431,17998.080338354543,17716.31703311903,17739.146315883096,21354.035292494456,269307284.32746407,80806438.90091636,56373228.15141996,38756594.35410121 + 07/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4704544.8093941309,0.0,2271260.228452921,0.0,2826790.068145133,0.0,1224777.7094149283,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,11027372.815407113,28186614.07570998,0.0 + 07/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6787402.112200016,0.0,4441454.155655449,0.0,4710034.769009344,0.0,3640141.9771447626,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,19579033.014009578,28186614.07570998,0.0 + 07/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14049695.714905847,0.0,11631646.989066743,0.0,8095703.792194216,0.0,8334054.797299381,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,42111101.29346619,28186614.07570998,0.0 + 07/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26399357.56790805,0.0,24289746.303331075,0.0,13988490.409634825,0.0,16973006.388654598,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,81650600.66952855,28186614.07570998,0.0 + 07/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18902336.799401769,0.0,16533475.013443158,0.0,12569201.222999705,0.0,14325726.318611635,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,62330739.35445627,28186614.07570998,0.0 + 07/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26784438.47781711,0.0,23878304.77333477,0.0,17340650.137680528,0.0,20550577.20910458,7663.972348253287,7543.991431428752,7553.712634387347,9093.010639392696,114676873.39246349,88553970.59793699,28186614.07570998,0.0 + 07/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26624942.27369131,0.0,24780761.65093367,0.0,17463768.18594673,0.0,20960124.961174124,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,89829597.07174583,28186614.07570998,0.0 + 07/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25983995.556913586,0.0,24400677.61166093,0.0,19657319.723499814,0.0,23360424.322812439,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,93402417.21488677,35233267.594637479,0.0 + 07/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,25924438.063344998,0.0,26679309.753339974,0.0,23056634.888062359,0.0,28388498.193735545,17867.322939318095,17587.60666555727,17610.270091875533,21198.896629854487,267350746.77577938,104048880.89848288,14093307.03785499,0.0 + 07/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47765289.805665228,0.0,56312734.93051256,0.0,48392876.094550538,0.0,60783976.2142746,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,213254877.04500295,63419881.67034747,0.0 + 07/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,43609181.58777848,0.0,44144094.756433967,0.0,46970798.61803893,0.0,54648499.61157211,10263.427569077501,10102.751695843073,10115.770122569595,12177.165031594619,153572811.90870524,189372574.57382349,63419881.67034747,69761869.8373822 + 07/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,31054542.004378454,0.0,28344664.962665127,0.0,36743256.92658372,0.0,40859147.26475569,10278.418378349845,10117.507821199726,10130.545262699896,12194.951054561885,153797121.06052087,137001611.15838299,49326574.63249246,69761869.8373822 + 07/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,23138271.834361085,0.0,20413414.839571485,0.0,29869039.92455867,0.0,32215978.37569473,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,105636704.97418596,35233267.594637479,69761869.8373822 + 07/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19561817.63644858,0.0,16858224.699982659,0.0,26105402.765020078,0.0,27801759.04980764,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,90327204.15125896,35233267.594637479,62010550.96656194 + 07/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13555912.589118744,0.0,10950349.524632736,0.0,20330659.39296346,0.0,20895235.73365055,2574.7146388728476,2534.407000888752,2537.6728429909419,3054.8006361226996,38525742.427950877,65732157.24036549,35233267.594637479,46507913.22492146 + 07/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,3076820.13002971,0.0,78386.92385204302,0.0,9866563.542556629,0.0,8536541.035508234,2572.632404833535,2532.3573646117658,2535.6205655484106,3052.330144918815,38494585.727685097,21558311.631946617,21139960.556782485,23253956.61246073 + 07/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3384677.6990676547,0.0,463025.1906150564,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,3847702.889682711,14093307.03785499,0.0 + 07/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1752376.9327467075,0.0,191414.0190018166,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,1943790.951748524,14093307.03785499,0.0 + 07/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,0.0,14093307.03785499,0.0 + 07/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,0.0,14093307.03785499,0.0 + 07/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6278313.753301026,0.0,678732.6787304507,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,6957046.432031477,14093307.03785499,0.0 + 07/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10530909.429073289,0.0,13297292.424561136,0.0,18051688.481374895,0.0,18123213.144206358,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,60003103.479215677,14093307.03785499,15502637.741640486 + 07/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47621048.31288608,0.0,46671565.47937687,0.0,44132646.57928221,0.0,51955903.55824115,20486.31661748556,20165.599509120235,20191.584942347687,24306.23265586541,306539041.409348,190381163.9297863,56373228.15141996,38756594.35410121 + 07/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47463712.28962128,0.0,45264996.161318618,0.0,38533092.05241985,0.0,46174806.59512694,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,177436607.0984867,56373228.15141996,38756594.35410121 + 07/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40081716.79231086,0.0,36022370.949183549,0.0,23094487.844284897,0.0,28252442.025004563,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,127451017.61078385,28186614.07570998,0.0 + 07/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58725982.439916949,0.0,50556424.03030494,0.0,30313244.674608776,0.0,38937310.36581376,10174.718069099641,10015.430959636107,10028.336864681381,12071.914596120678,152245441.7623361,178532961.5106444,28186614.07570998,0.0 + 07/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63204070.318323168,0.0,49550837.37790495,0.0,27010481.777431005,0.0,36359038.10208037,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,176124427.5757395,28186614.07570998,0.0 + 07/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68030912.10076042,0.0,54089497.51272213,0.0,30458942.24931544,0.0,41916174.876775089,5056.717605373321,4977.553747931464,4983.967833984023,5999.602411997681,75664229.75743138,194495526.7395731,28186614.07570998,0.0 + 07/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71989979.45124358,0.0,60338572.69370024,0.0,38250150.51983586,0.0,50389018.42760786,5049.481255246245,4970.430684215568,4976.835591473493,5991.016758800372,75555951.44304845,220967721.09238754,28186614.07570998,0.0 + 07/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66727817.92087723,0.0,59531757.02615475,0.0,43165562.393769938,0.0,54115389.8262529,7585.076408059981,7466.330621897195,7475.951750976034,8999.403617996522,113496344.63614704,223540527.1670548,28186614.07570998,0.0 + 07/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61061867.53002259,0.0,59459017.49054214,0.0,46264185.27972307,0.0,56124299.7876888,12659.376309095811,12461.191411372598,12477.24892839352,15019.866752640284,189423660.24540798,222909370.0879766,28186614.07570998,0.0 + 07/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,54595671.9878372,0.0,54217851.66248263,0.0,45383694.802096899,0.0,56134083.93707817,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,210331302.3894949,35233267.594637479,0.0 + 07/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,41990281.616521108,0.0,42526406.71980951,0.0,36073031.19092804,0.0,45322730.13320335,17797.043128795463,17518.427098579054,17541.001379964255,21115.51231741468,266299142.12911243,165912449.66046203,14093307.03785499,0.0 + 07/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44552825.26822989,0.0,47297145.63472454,0.0,41085713.08072572,0.0,51055260.88586471,17847.54695350369,17568.140276489998,17590.778618379056,21175.433177581483,267054836.4934352,183990944.86954487,63419881.67034747,0.0 + 07/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44284583.73060466,0.0,43561153.750763248,0.0,43758186.12441693,0.0,51780257.90550387,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,183384181.5112887,63419881.67034747,69761869.8373822 + 07/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,31174553.01970235,0.0,28105934.915275739,0.0,33098617.040893184,0.0,37691646.41397787,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,130070751.38984914,49326574.63249246,69761869.8373822 + 07/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22602846.237709207,0.0,19394993.89170275,0.0,26040685.176586585,0.0,28658764.054480427,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,96697289.36047897,35233267.594637479,69761869.8373822 + 07/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16241061.593397577,0.0,12892678.143135909,0.0,20885898.469462456,0.0,21989441.7558316,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692029,72009079.96182753,35233267.594637479,62010550.96656194 + 07/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10796138.351282433,0.0,7695590.8583823,0.0,15766713.891198494,0.0,15823101.202171352,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,50081544.303034577,35233267.594637479,46507913.22492146 + 07/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,1162797.7831640726,0.0,14643.448096838349,0.0,6104795.196759639,0.0,4370913.309503037,2579.729774156761,2539.343623294223,2542.6158267382527,3060.7509026975797,38600784.45679253,11653149.737523588,21139960.556782485,23253956.61246073 + 07/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 + 07/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 + 07/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.121765023421,1273.7610237604227,1533.3284573694473,19337634.183892404,0.0,14093307.03785499,0.0 + 07/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 + 07/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 07/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13737968.262849486,0.0,22228851.047492073,0.0,23241363.7638285,0.0,21374451.00678691,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,80582634.08095697,14093307.03785499,15502637.741640486 + 07/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,43347403.97343115,0.0,46679044.457086879,0.0,44857261.38150541,0.0,51949994.37267685,5154.476170632303,5073.7818846144759,5080.319970442952,6115.589218003614,77127002.07729604,186833704.18470029,56373228.15141996,38756594.35410121 + 07/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,50947622.7138871,0.0,48559966.544103298,0.0,42183798.35451811,0.0,49821329.37947154,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,191512716.99198006,56373228.15141996,38756594.35410121 + 07/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46000267.58997216,0.0,38576726.79077288,0.0,27749369.895310627,0.0,33150206.81129889,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192305042.78522266,145476571.08735455,28186614.07570998,0.0 + 07/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54071049.682447757,0.0,42487701.86105752,0.0,26991141.886880369,0.0,32808704.435106677,12841.977000641575,12640.933455028086,12657.222588018147,15236.515502862421,192155934.7675808,156358597.86549235,28186614.07570998,0.0 + 07/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58199731.61393921,0.0,44548609.38227679,0.0,24891065.493222458,0.0,31571943.022413,7693.583394255568,7573.138910981932,7582.897673442953,9128.143015151287,115119946.77779427,159211349.51185147,28186614.07570998,0.0 + 07/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63062021.53532102,0.0,48290203.83288461,0.0,27418414.236969208,0.0,35770115.55102201,7693.583394255568,7573.138910981932,7582.897673442953,9128.143015151287,115119946.77779427,174540755.15619687,28186614.07570998,0.0 + 07/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66330299.14638612,0.0,52335199.17942194,0.0,33709060.98420138,0.0,42658616.470305729,7686.67315392318,7566.33685175105,7576.086849064481,9119.944278776997,115016548.08065655,195033175.78031517,28186614.07570998,0.0 + 07/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66450539.329230118,0.0,56669475.17076589,0.0,42265699.599043149,0.0,51080803.610346268,7682.368731557086,7562.099815920086,7571.844353380384,9114.83724594953,114952140.5285055,216466517.70938543,28186614.07570998,0.0 + 07/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61751926.0780172,0.0,58394491.62296297,0.0,48342556.619864758,0.0,56428410.618614,17911.70643047574,17631.295324881106,17654.01504849612,21251.555947891018,268014861.90627835,224917384.93945898,28186614.07570998,0.0 + 07/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,61218121.11882019,0.0,60007305.39289639,0.0,53529190.103993248,0.0,64328335.350528348,23015.597564915908,22655.284091481666,22684.477737410314,27307.127951402203,344384954.4427563,239082951.96623818,35233267.594637479,0.0 + 07/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,56049154.05228899,0.0,57659660.14479076,0.0,51028531.40352389,0.0,63026394.87321992,17925.527040299865,17644.899570480204,17667.636824554225,21267.95357388223,268221661.2331795,227763740.4738236,14093307.03785499,0.0 + 07/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,58305054.374134439,0.0,65563331.751115988,0.0,56141101.20042499,0.0,69785028.30785689,17964.03750579884,17682.807147457668,17705.593249313773,21313.64477116192,268797897.62543597,249794515.6335323,63419881.67034747,0.0 + 07/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47519527.18791944,0.0,47233466.443978149,0.0,49626970.81243735,0.0,57349659.99746807,15472.007170699728,15229.790012142334,15249.415151045334,18356.94590521285,231509369.6607609,201729624.441803,63419881.67034747,69761869.8373822 + 07/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,31484375.59246783,0.0,27510384.64522858,0.0,36516218.7836423,0.0,39860486.67310196,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,135371465.6944407,49326574.63249246,69761869.8373822 + 07/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22437445.132637558,0.0,18429511.698913274,0.0,28823431.226866455,0.0,30202075.58426502,10331.482961578737,10169.74166847898,10182.846418622767,12257.910156963293,154591132.3403176,99892463.64268232,35233267.594637479,69761869.8373822 + 07/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17120101.12001878,0.0,13179541.644822928,0.0,24263687.718620436,0.0,24653388.435633705,7748.0285015536769,7626.731669968563,7636.559492169638,9192.740056662979,115934614.99327748,79216718.91909585,35233267.594637479,62010550.96656194 + 07/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14461005.180884283,0.0,10954648.455816312,0.0,21386831.13996778,0.0,21540371.697576435,5155.647257242486,5074.9346376453099,5081.474208913725,6116.978667563472,77144525.17691398,68342856.47424482,35233267.594637479,46507913.22492146 + 07/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,5118779.722408666,0.0,1905351.2081332459,0.0,12053032.281097735,0.0,10333748.142164113,2578.390998612566,2538.025806530921,2541.296311833544,3059.1624966185966,38580752.20894426,29410911.35380376,21139960.556782485,23253956.61246073 + 07/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2487450.988732992,0.0,56902.84256552084,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,2544353.8312985135,14093307.03785499,0.0 + 07/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,98021.46596103588,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,98021.46596103588,14093307.03785499,0.0 + 07/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 07/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,19347204.489021865,0.0,14093307.03785499,0.0 + 07/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,8225823.213854493,0.0,10480621.422549872,0.0,3516346.0690227148,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,22222790.70542708,14093307.03785499,0.0 + 07/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,25107403.174112895,0.0,32569134.37978977,0.0,31868785.232020946,0.0,34563727.93701839,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,124109050.722942,14093307.03785499,15502637.741640486 + 07/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47214747.06779571,0.0,49114572.41332632,0.0,49123591.04029551,0.0,56954908.405235368,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,202407818.92665289,56373228.15141996,38756594.35410121 + 07/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,50784021.31333252,0.0,47819050.79591909,0.0,45562954.295166078,0.0,53219851.99416366,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,197385878.3985814,56373228.15141996,38756594.35410121 + 07/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44882138.26275365,0.0,35442769.131214488,0.0,29152926.02076779,0.0,34195364.42277086,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,143673197.83750678,28186614.07570998,0.0 + 07/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61992642.02803937,0.0,45929591.825950298,0.0,29476754.535306097,0.0,36113630.50422865,7679.433395283059,7559.210432883016,7568.951247078357,9111.354581509071,114908218.76431261,173512618.8935244,28186614.07570998,0.0 + 07/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69182287.98906993,0.0,51729874.59731595,0.0,27813954.17615561,0.0,36156328.48957631,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,184882445.2521178,28186614.07570998,0.0 + 07/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76200083.3365041,0.0,58127413.56816876,0.0,31696895.67624578,0.0,42575478.95795937,5107.149397659032,5027.196021100902,5033.67407628932,6059.437808444815,76418846.29257864,208599871.538878,28186614.07570998,0.0 + 07/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83549585.27708249,0.0,68181358.18280736,0.0,41915100.69033165,0.0,54295899.27369994,7648.948694358726,7529.202975638569,7538.905122162453,9075.185647534923,114452072.78290083,247941943.4239214,28186614.07570998,0.0 + 07/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82083569.71093077,0.0,72146767.40689519,0.0,48791449.071188759,0.0,60945748.72670698,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,263967534.91572169,28186614.07570998,0.0 + 07/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76057763.4485488,0.0,71457967.82069536,0.0,51660981.00590971,0.0,63039378.202748108,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,262216090.47790195,28186614.07570998,0.0 + 07/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,68973959.12484701,0.0,66528647.73766182,0.0,52029804.3978957,0.0,64062377.28998551,15318.161129568494,15078.35245948496,15097.782455644452,18174.413450075066,229207354.18118269,251594788.55039007,35233267.594637479,0.0 + 07/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,57136475.69407394,0.0,56231066.36279174,0.0,45970501.28156634,0.0,57049196.73620112,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,216387240.07463313,14093307.03785499,0.0 + 07/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,59848364.784619588,0.0,61296241.91430367,0.0,52622091.49356869,0.0,64700480.90744727,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,238467179.09993924,63419881.67034747,0.0 + 07/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,60705149.52156314,0.0,58683509.71062129,0.0,57022312.55834266,0.0,67538905.29815696,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,243949877.08868406,63419881.67034747,69761869.8373822 + 07/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,50229829.84470304,0.0,46340040.993957858,0.0,48506900.767503488,0.0,56383788.96068972,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,201460560.56685413,49326574.63249246,69761869.8373822 + 07/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,41536719.68455181,0.0,37794476.215571809,0.0,41363344.6087845,0.0,47484107.11875177,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,168178647.62765987,35233267.594637479,69761869.8373822 + 07/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34911837.55075164,0.0,31210515.97829375,0.0,36044380.23747558,0.0,40794646.66891895,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,142961380.43543995,35233267.594637479,62010550.96656194 + 07/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26752170.770759174,0.0,23040200.783576788,0.0,29060164.98471137,0.0,32050932.40638333,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,110903468.94543067,35233267.594637479,46507913.22492146 + 07/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,13285683.377337005,0.0,9604831.934738977,0.0,16790286.71629703,0.0,16918461.962748808,2576.938505666696,2536.596052633081,2539.864715551875,3057.4391691833868,38559018.39492614,56599263.99112181,21139960.556782485,23253956.61246073 + 07/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,923384.3039505337,0.0,0.0,0.0,5022441.48389979,0.0,2358746.4449046768,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,8304572.232755,14093307.03785499,0.0 + 07/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,796394.5163689829,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,796394.5163689829,14093307.03785499,0.0 + 07/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 07/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,229349.3515489889,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,229349.3515489889,14093307.03785499,0.0 + 07/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11474577.013173154,0.0,22459392.569980645,0.0,23312989.98742362,0.0,17648054.549393096,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,74895014.1199705,14093307.03785499,0.0 + 07/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,37596520.20652216,0.0,48362716.09889465,0.0,43326621.00693323,0.0,48568557.046707998,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,177854414.35905803,14093307.03785499,15502637.741640486 + 07/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,65195155.663059908,0.0,67400072.59824845,0.0,62762995.61663115,0.0,74246276.75796293,20508.95719514884,20187.885644316608,20213.899795503956,24333.094837018914,306877814.89915797,269604500.6359024,56373228.15141996,38756594.35410121 + 07/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,56912980.11991986,0.0,53615123.932455997,0.0,47588530.52754954,0.0,56729686.86977973,17935.570692487418,17654.785987419113,17677.535981150453,21279.869983812987,268371945.52153189,214846321.44970513,56373228.15141996,38756594.35410121 + 07/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44026247.66075225,0.0,39925668.969615209,0.0,30066056.61731021,0.0,35688390.88499021,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,149706364.1326679,28186614.07570998,0.0 + 07/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55640519.85480404,0.0,46132744.26035412,0.0,31475945.46088881,0.0,38046235.28153441,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,171295444.85758139,28186614.07570998,0.0 + 07/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49591476.06733845,0.0,44340875.669417757,0.0,27940183.825847776,0.0,34413040.52436701,5107.149397659032,5027.196021100902,5033.67407628932,6059.437808444815,76418846.29257864,156285576.08697099,28186614.07570998,0.0 + 07/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41636330.652593787,0.0,38599729.2235152,0.0,26297124.960727034,0.0,32053196.850291607,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,138586381.68712766,28186614.07570998,0.0 + 07/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51344803.23902193,0.0,44160846.08915986,0.0,29298320.166773436,0.0,36346345.844381388,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,161150315.3393366,28186614.07570998,0.0 + 07/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52095524.95833918,0.0,48611946.05910581,0.0,32847863.226839305,0.0,40413480.12513164,7645.468677560033,7525.777439152057,7535.47517152254,9071.056740443682,114400000.90324192,173968814.36941595,28186614.07570998,0.0 + 07/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56315501.67645487,0.0,55824860.55714605,0.0,41297875.165957789,0.0,49668585.41654628,12712.173663425332,12513.162213270754,12529.28669997447,15082.508798153343,190213672.94936604,203106822.81610496,28186614.07570998,0.0 + 07/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62183737.246527228,0.0,65082161.905746709,0.0,53146845.530157778,0.0,65154661.99619516,12733.58800452011,12534.241308860852,12550.392958130735,15107.916096426645,190534098.12457804,245567406.67862685,35233267.594637479,0.0 + 07/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,49741903.4949706,0.0,53396789.805140268,0.0,45024645.39347594,0.0,56267222.43426825,17886.3464200077,17606.332330107853,17629.019886356178,21221.4672635218,267635397.2399767,204430561.12785507,14093307.03785499,0.0 + 07/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,45287557.74901721,0.0,47341421.339462328,0.0,44386293.165245089,0.0,53159811.94973349,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,190175084.2034581,63419881.67034747,0.0 + 07/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,52010334.60053297,0.0,50610677.095581177,0.0,53983021.216669287,0.0,62477898.340360108,10248.897538564239,10088.44913566807,10101.449132085974,12159.925705035994,153355397.44087539,219081931.2531435,63419881.67034747,69761869.8373822 + 07/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,41092283.06521707,0.0,38842936.862049628,0.0,44933400.23267846,0.0,50944216.11629025,10268.584520246377,10107.827913979372,10120.852881931081,12183.28355730356,153649975.9444574,175812836.2762354,49326574.63249246,69761869.8373822 + 07/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32341878.96362542,0.0,29917862.31986108,0.0,37418249.53696422,0.0,41592989.4678874,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,141270980.28833813,35233267.594637479,69761869.8373822 + 07/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,30906852.259177016,0.0,28752633.991280725,0.0,35915803.844338539,0.0,40570138.487056728,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,136145428.581853,35233267.594637479,62010550.96656194 + 07/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26143939.671813005,0.0,24157680.783096564,0.0,30952155.043419478,0.0,34445840.92231653,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,115699616.42064557,35233267.594637479,46507913.22492146 + 07/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,10754326.42087743,0.0,8866324.375558095,0.0,16481933.19081653,0.0,16643663.80870736,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,52746247.79595941,21139960.556782485,23253956.61246073 + 07/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,125077.51143048123,0.0,0.0,0.0,4999863.685680832,0.0,2711017.4756362226,1285.194204145847,1265.074249127202,1266.7044264206464,1524.8338643402672,19230504.278522266,7835958.672747536,14093307.03785499,0.0 + 07/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,976950.6845252356,0.0,0.0,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,976950.6845252356,14093307.03785499,0.0 + 07/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.9118143106217,1268.7336594113274,1270.3685522284314,1529.244666890868,19286131.294228496,0.0,14093307.03785499,0.0 + 07/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 + 07/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6121201.7135519119,0.0,29489189.441760094,0.0,26639311.739058056,0.0,22932976.810976134,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.65895295,85182679.70534618,14093307.03785499,0.0 + 07/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,44466979.16199923,0.0,53212627.1203057,0.0,45319163.23723644,0.0,53242184.63243333,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,196240954.15197469,14093307.03785499,15502637.741640486 + 07/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,64761208.11212017,0.0,66131701.68520172,0.0,59822871.90665303,0.0,71777996.3246998,20497.795077128478,20176.89827133614,20202.89826417195,24319.851410071988,306710794.88175079,262493778.0286747,56373228.15141996,38756594.35410121 + 07/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,63135647.54693121,0.0,62455107.126380119,0.0,52615595.30312016,0.0,62557550.26616994,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,240763900.24260143,56373228.15141996,38756594.35410121 + 07/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55094405.5236485,0.0,48457849.86667604,0.0,35177701.64695876,0.0,42951709.66262345,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,181681666.69990678,28186614.07570998,0.0 + 07/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47618824.824936818,0.0,40456968.07980807,0.0,29284785.357756065,0.0,35585170.18540103,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,152945748.447902,28186614.07570998,0.0 + 07/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39612390.15810792,0.0,33541207.66024421,0.0,25272709.66390948,0.0,30511202.1714558,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,128937509.65371743,28186614.07570998,0.0 + 07/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54067580.29655041,0.0,42120826.40180154,0.0,27670351.846052167,0.0,34740423.77131242,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,158599182.31571654,28186614.07570998,0.0 + 07/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30029455.206092623,0.0,23639548.56479596,0.0,18480983.575878648,0.0,20368727.705423159,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,92518715.0521904,28186614.07570998,0.0 + 07/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26128423.44282831,0.0,20545826.691234825,0.0,17537481.803744936,0.0,18109937.72951843,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,82321669.66732648,28186614.07570998,0.0 + 07/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35301242.844832468,0.0,34424238.418337028,0.0,33067611.752941107,0.0,35597131.049187008,12796.576754659349,12596.243958366122,12612.47550437837,15182.649844038442,191476605.82119224,138390224.0652976,28186614.07570998,0.0 + 07/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32254667.517762096,0.0,32249161.097780266,0.0,33883792.058987807,0.0,39291581.735199358,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,137679202.4097295,35233267.594637479,0.0 + 07/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,28009349.77883216,0.0,30088848.096111336,0.0,29773954.606858355,0.0,36076955.16779802,17945.337545755236,17664.399938777027,17687.162321065964,21291.45798239155,268518088.0367632,123949107.64959988,14093307.03785499,0.0 + 07/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,34165609.81325495,0.0,38823757.55148644,0.0,37665147.796560849,0.0,45376091.445490848,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,156030606.60679309,63419881.67034747,0.0 + 07/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,34438964.33535565,0.0,33117525.99212181,0.0,40366685.90304433,0.0,45268662.03257527,10283.094436070924,10122.110674364862,10135.154047111138,12200.499018551845,153867089.43395559,153191838.26309706,63419881.67034747,69761869.8373822 + 07/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,24117756.718267915,0.0,21090907.019205639,0.0,30948549.82518283,0.0,33312931.345185535,10297.515458360307,10136.305932860067,10149.367597645794,12217.609011013938,154082872.79956839,109470144.9078419,49326574.63249246,69761869.8373822 + 07/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13486312.951633875,0.0,10465658.024830325,0.0,21554666.95497093,0.0,21518976.611275428,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,67025614.54271056,35233267.594637479,69761869.8373822 + 07/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4186680.2133028458,0.0,1319412.5875319669,0.0,13738167.41699232,0.0,11404998.299255807,5170.223721121991,5089.282904263544,5095.840964737995,6134.273085538672,77362634.43238393,30649258.517082946,35233267.594637479,62010550.96656194 + 07/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,6992481.014980365,0.0,3099885.4866639899,2585.358296829752,2544.8840303947688,2548.1633732188449,3067.4289299951644,38685004.66957871,10092366.501644355,35233267.594637479,46507913.22492146 + 07/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,2522634.6903504508,0.0,0.0,0.0,0.0,0.0,2586.07537591403,2545.589883472211,2548.870135860023,3068.2797169560687,41218369.09427885,0.0,21139960.556782485,23253956.61246073 + 07/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 + 07/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,19353655.091546306,0.0,14093307.03785499,0.0 + 07/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,19353882.599153796,0.0,14093307.03785499,0.0 + 07/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,370150.8253578358,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,19721267.84975314,0.0,14093307.03785499,0.0 + 07/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.1217650234208,1273.7610237604227,1533.3284573694473,19337634.1838924,0.0,14093307.03785499,0.0 + 07/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,666484.2342456895,0.0,12607900.457244054,0.0,17255584.33858779,0.0,10220490.950630125,5159.967708872418,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,40750459.98070766,14093307.03785499,15502637.741640486 + 07/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,40847642.93947081,0.0,43439780.4121159,0.0,46346677.403236459,0.0,52589767.49931854,20595.030916720614,20272.611865720133,20298.73519529159,24435.218022027875,308165745.59913679,183223868.25414173,56373228.15141996,38756594.35410121 + 07/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,45804041.513722229,0.0,43512033.88712153,0.0,42966252.97578709,0.0,49654796.65414746,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,181937125.0307783,56373228.15141996,38756594.35410121 + 07/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39774179.42193037,0.0,29990783.476392256,0.0,24683439.452506104,0.0,28594661.865372696,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,123043064.21620143,28186614.07570998,0.0 + 07/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48008479.08622165,0.0,32366842.252328949,0.0,21315499.541303986,0.0,25326457.56642405,10268.584520246377,10107.827913979372,10120.852881931081,12183.28355730356,153649975.9444574,127017278.44627863,28186614.07570998,0.0 + 07/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53620683.42845746,0.0,36107553.634029198,0.0,19571296.204843996,0.0,24835799.249289469,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,134135332.51662012,28186614.07570998,0.0 + 07/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60000720.3137548,0.0,41962355.82415781,0.0,23718907.737837659,0.0,31421005.60646121,5113.542114315616,5033.488658585667,5039.97482247976,6067.0225227328569,76514501.22521004,157102989.48221148,28186614.07570998,0.0 + 07/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65602471.934922669,0.0,49504698.54390674,0.0,32593739.33343732,0.0,41471075.76860058,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,189171985.5808673,28186614.07570998,0.0 + 07/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66620272.728794019,0.0,55434158.72513844,0.0,42090619.793925199,0.0,50949814.54508891,7662.354696193528,7542.399104013761,7552.118255095957,9091.091356973366,114652668.28419581,215094865.79294659,28186614.07570998,0.0 + 07/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63827976.8577247,0.0,59431117.465471778,0.0,49623801.606395918,0.0,58061643.85859369,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,230944539.78818608,28186614.07570998,0.0 + 07/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,64153098.755292627,0.0,61772373.98786847,0.0,55398765.16418344,0.0,66691024.90020818,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,248015262.80755273,35233267.594637479,0.0 + 07/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,57541366.55395637,0.0,57850707.10417297,0.0,51238759.79763003,0.0,63291093.17260097,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,229921926.62836034,14093307.03785499,0.0 + 07/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,60375981.37995905,0.0,66097496.67940859,0.0,56868793.052769009,0.0,70606564.82485575,17945.337545755236,17664.399938777027,17687.162321065964,21291.45798239155,268518088.0367632,253948835.93699239,63419881.67034747,0.0 + 07/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,52892012.76755458,0.0,51562299.72601935,0.0,53007667.05682275,0.0,61819227.203324209,10276.823956520404,10115.938360341463,10128.973779431126,12193.059333924075,153773263.54878146,219281206.75372089,63419881.67034747,69761869.8373822 + 07/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,40065719.678363058,0.0,35913591.67669158,0.0,42518978.77291965,0.0,47927650.21942996,10298.85855549139,10137.628003555008,10150.691371963767,12219.202544490798,154102969.7118035,166425940.34740425,49326574.63249246,69761869.8373822 + 07/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31571946.845833988,0.0,27386671.4994117,0.0,35582982.00904745,0.0,39131681.957773659,5156.219173316969,5075.4976002669559,5082.03789697017,6117.657224154467,77153082.82095082,133673282.3120668,35233267.594637479,69761869.8373822 + 07/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25244302.660503169,0.0,20922663.802219646,0.0,30397922.089423956,0.0,32537740.046446496,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,109102628.59859327,35233267.594637479,62010550.96656194 + 07/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20009073.3011932,0.0,15901850.411245853,0.0,25487903.281930008,0.0,26737301.36135071,2577.5331272446608,2537.181365299316,2540.450782453222,3058.1446649875408,38567915.78394506,88136128.35571978,35233267.594637479,46507913.22492146 + 07/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,6261019.330869431,0.0,2488289.3597983296,0.0,12654908.31433807,0.0,11041349.539679584,2582.4770040741007,2542.0478448147116,2545.3235329241845,3064.01038612629,38641891.56458143,32445566.544685414,21139960.556782485,23253956.61246073 + 07/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1567248.1948091174,0.0,0.0,1291.3380835922795,1271.121944994761,1272.7599153616064,1532.1233427771629,19322435.832212915,1567248.1948091174,14093307.03785499,0.0 + 07/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,233535.83003380785,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,233535.83003380785,14093307.03785499,0.0 + 07/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 07/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 + 07/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4330558.567650337,0.0,20010917.14257633,0.0,23163084.764613205,0.0,16408168.59562615,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142676,63912729.07046602,14093307.03785499,0.0 + 07/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,41510969.81692935,0.0,51548815.85439344,0.0,43588601.0235205,0.0,49221308.77386326,5145.26480966707,5064.714729223531,5071.241131096821,6104.66028983763,76989171.45537019,185869695.46870656,14093307.03785499,15502637.741640486 + 07/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,70059948.85355936,0.0,70622015.23617788,0.0,61163577.97239343,0.0,73765237.7322783,20540.535997393403,20218.970074521007,20245.024281169397,24370.561880445093,307350332.040704,275610779.794409,56373228.15141996,38756594.35410121 + 07/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,74123332.3101925,0.0,70706134.26346058,0.0,56900505.79970659,0.0,69423552.53001318,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,271153524.9033729,56373228.15141996,38756594.35410121 + 07/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70115456.72232344,0.0,60720464.813932079,0.0,43354202.650067228,0.0,53625450.17523169,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,227815574.36155445,28186614.07570998,0.0 + 07/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75514357.59708114,0.0,63416298.17768103,0.0,41229321.05057918,0.0,51674619.69115673,10186.870403616089,10027.393047088683,10040.314366504585,12086.332877141316,152427278.4996624,231834596.5164981,28186614.07570998,0.0 + 07/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75652318.10144934,0.0,64435834.17550449,0.0,39310635.25233366,0.0,50491024.23828806,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,229889811.76757557,28186614.07570998,0.0 + 07/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68275981.93298395,0.0,56849229.7061249,0.0,36721737.670206587,0.0,47307866.670955609,5084.869465370133,5005.264885308302,5011.714679989787,6033.003519261338,76085469.17974642,209154815.98027105,28186614.07570998,0.0 + 07/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72159110.3155941,0.0,66137518.47205226,0.0,43246568.28664509,0.0,55161229.8191947,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,236704426.89348618,28186614.07570998,0.0 + 07/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76293962.45586799,0.0,71999179.81223078,0.0,47537581.68467976,0.0,60295757.998252678,7627.304198055199,7507.8973279624519,7517.572019984682,9049.505278892007,114128203.76961963,256126481.9510312,28186614.07570998,0.0 + 07/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78388130.8475296,0.0,76432803.80587456,0.0,51143063.907168868,0.0,64683411.19552328,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,270647409.7560963,28186614.07570998,0.0 + 07/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,57770047.69320394,0.0,55807231.8218199,0.0,41617612.84376837,0.0,51684593.432505939,12699.473833650844,12500.661201700535,12516.769579574891,15067.440934908218,190023643.97940416,206879485.79129813,35233267.594637479,0.0 + 07/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,43876720.24064669,0.0,41544100.49755197,0.0,32877674.881500417,0.0,40138588.190635818,17797.043128795463,17518.427098579054,17541.001379964255,21115.51231741468,266299142.12911243,158437083.8103349,14093307.03785499,0.0 + 07/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,55775671.02661763,0.0,53209453.6332455,0.0,47730944.401401478,0.0,57449734.54488564,17779.26336711118,17500.92568238075,17523.47741140485,21094.417308871503,266033101.5711658,214165803.60615028,63419881.67034747,0.0 + 07/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,67518195.16407947,0.0,64531486.73737536,0.0,62203397.692772749,0.0,74149641.17352678,10198.598259144968,10038.937300851429,10051.873496216604,12100.247530046563,152602763.71053443,268402720.76775433,63419881.67034747,69761869.8373822 + 07/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,60636352.93973492,0.0,57655928.007600959,0.0,56418299.82417035,0.0,66869338.062531109,10207.673024775419,10047.86999933304,10060.81770539195,12111.014393061994,152738550.44122467,241579918.83403734,49326574.63249246,69761869.8373822 + 07/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,54844888.15669808,0.0,51931788.303236547,0.0,51610911.06798451,0.0,60824551.717800069,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,219212139.2457192,35233267.594637479,69761869.8373822 + 07/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50481652.685123,0.0,47426865.56277854,0.0,48066702.43030641,0.0,56143791.04148032,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,202119011.71968828,35233267.594637479,62010550.96656194 + 07/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,41710969.21805799,0.0,38438094.75331159,0.0,40271433.4475548,0.0,46348813.5863911,2561.2722323928589,2521.1750377898858,2524.423829157064,3038.8517339623947,38324602.19988793,166769311.00531549,35233267.594637479,46507913.22492146 + 07/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,28331449.86813871,0.0,25482033.52948411,0.0,27519157.445608394,0.0,31115352.01946064,2559.8111317610198,2519.736810961006,2522.983749026119,3037.1181938363567,38302739.5881042,112447992.86269185,21139960.556782485,23253956.61246073 + 07/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,17113302.134945696,0.0,14754906.14586483,0.0,16810946.28430278,0.0,18440941.625865587,1281.1121923205299,1261.0561419585088,1262.6811415107468,1519.9907131294993,19169424.680109424,67120096.19097889,14093307.03785499,0.0 + 07/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14223372.280503698,0.0,11904234.478853409,0.0,14796242.788346289,0.0,15889415.460251393,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,56813265.00795479,14093307.03785499,0.0 + 07/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12466943.812214267,0.0,9961446.240627716,0.0,13590196.041400774,0.0,14254688.785139436,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,50273274.87938219,14093307.03785499,0.0 + 07/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10846852.649667863,0.0,8325092.283550732,0.0,12151839.590008419,0.0,12449139.718366353,1283.1455361284885,1263.057653389834,1264.685232093841,1522.4031979401373,19199849.830388287,43772924.24159337,14093307.03785499,0.0 + 07/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12401761.375747318,0.0,10300191.560352099,0.0,12061208.456711226,0.0,12615771.953636665,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,47378933.346447307,14093307.03785499,0.0 + 07/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,21331740.557389529,0.0,19751480.791801175,0.0,18210465.853861736,0.0,20525440.989652065,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,79819128.1927045,14093307.03785499,15502637.741640486 + 07/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,41810154.22023654,0.0,40199237.45818784,0.0,36752405.323024708,0.0,43446361.450514879,20540.535997393403,20218.970074521007,20245.024281169397,24370.561880445093,307350332.040704,162208158.45196397,56373228.15141996,38756594.35410121 + 07/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,35042741.90270094,0.0,32824670.958010705,0.0,29742293.21599573,0.0,34702853.39171705,17978.767800898204,17697.30683703932,17720.111623225406,21331.121704007386,269018308.6746131,132312559.46842441,56373228.15141996,38756594.35410121 + 07/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11958024.474897974,0.0,9085877.625877262,0.0,7347195.332440108,0.0,6816696.041651686,12859.51171233805,12658.193657541857,12674.505032064568,15257.319768949194,192418308.61521719,35207793.47486703,28186614.07570998,0.0 + 07/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7249122.024426473,0.0,3666099.240209679,0.0,3739169.1133559846,0.0,1736738.8012734124,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,16391129.17926555,28186614.07570998,0.0 + 07/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6411499.9645195179,0.0,2377978.623130522,0.0,2319805.1389452025,0.0,67906.12312463654,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,11177189.84971988,28186614.07570998,0.0 + 07/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5287026.413929495,0.0,1237404.2266270235,0.0,2213258.717068124,0.0,0.0,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,8737689.357624643,28186614.07570998,0.0 + 07/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1825599.8549491107,0.0,0.0,0.0,1168437.722382293,0.0,0.0,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,2994037.577331404,28186614.07570998,0.0 + 07/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,0.0,28186614.07570998,0.0 + 07/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12848.022972937308,12646.884776499655,12663.18157837487,15243.688818202356,192246401.32565109,0.0,28186614.07570998,0.0 + 07/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12837.834998370876,12636.856296575626,12653.140175730872,15231.601175278183,192093957.52544,0.0,35233267.594637479,0.0 + 07/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17954.826756676088,17673.7405943307,17696.515013007698,21302.716568923686,268660076.15857747,0.0,14093307.03785499,0.0 + 07/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,5516925.405727025,0.0,204683.72534272728,0.0,15422558.576913748,0.0,10733556.664326692,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,31877724.37231019,63419881.67034747,0.0 + 07/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,36645267.47312517,0.0,34276567.56189356,0.0,43261397.86676358,0.0,48285042.92202253,10258.111192340759,10097.518547975913,10110.530231257271,12170.857353535048,153493262.37039239,162468275.82380484,63419881.67034747,69761869.8373822 + 07/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,30583616.97881518,0.0,27403558.054201787,0.0,36116919.92004325,0.0,40035065.650446068,10256.303717812914,10095.739369798985,10108.748760427665,12168.712854003305,153466216.92735435,134139160.60350627,49326574.63249246,69761869.8373822 + 07/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25468866.3309343,0.0,22159757.04216446,0.0,31081055.71138017,0.0,34075772.891029838,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,112785451.97550878,35233267.594637479,69761869.8373822 + 07/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,23497038.208234136,0.0,20189885.72475984,0.0,29178620.904682086,0.0,31861223.32987301,5127.23929878721,5046.971411079152,5053.474948875989,6083.273709254729,76719453.72478949,104726768.16754906,35233267.594637479,62010550.96656194 + 07/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17847145.748559964,0.0,14301138.021664106,0.0,24354691.03263695,0.0,26051056.181530086,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,82554030.9843911,35233267.594637479,46507913.22492146 + 07/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,4059758.893261947,0.0,260473.28650635066,0.0,12778448.411511716,0.0,11284330.428213036,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,28383011.019493056,21139960.556782485,23253956.61246073 + 07/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2657235.6215029035,0.0,0.0,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,2657235.6215029035,14093307.03785499,0.0 + 07/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,667085.848900184,0.0,0.0,1283.1455361284885,1263.057653389834,1264.685232093841,1522.4031979401373,19199849.830388287,667085.848900184,14093307.03785499,0.0 + 07/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,332828.1774068215,0.0,0.0,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,332828.1774068215,14093307.03785499,0.0 + 07/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2037651.308695639,0.0,0.0,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,2037651.308695639,14093307.03785499,0.0 + 07/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6377240.02895094,0.0,1200069.6100377043,1282.7091418827247,1262.6280909773967,1264.255116146391,1521.885432825731,19193320.014596076,7577309.638988644,14093307.03785499,0.0 + 07/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15694919.822113485,0.0,13427147.148691979,0.0,18672881.343550475,0.0,20579814.06546498,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,68374762.37982092,14093307.03785499,15502637.741640486 + 07/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,59970855.32256438,0.0,58938200.83919792,0.0,54178011.246568288,0.0,65497973.963893588,5101.584956821103,5021.718692622336,5028.18968971395,6052.835811798378,76335584.94344077,238585041.37222416,56373228.15141996,38756594.35410121 + 07/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,78549463.23683171,0.0,75457026.6535385,0.0,66480414.12794127,0.0,81839880.59094735,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,302326784.60925886,56373228.15141996,38756594.35410121 + 07/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60433747.11089967,0.0,54292510.50552784,0.0,39791039.27645557,0.0,49986185.57668857,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,204503482.46957166,28186614.07570998,0.0 + 07/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56914162.168229747,0.0,52459168.26074582,0.0,36796192.52783346,0.0,46178738.29950533,12696.246556981328,12497.484448649331,12513.588732953136,15063.611894332564,189975353.8784989,192348261.25631438,28186614.07570998,0.0 + 07/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60990601.94191447,0.0,53690885.89618901,0.0,36946921.77678974,0.0,47256865.296727757,7582.929832576124,7464.21765145298,7473.836057753737,8996.856788124749,113464225.18766733,198885274.91162098,28186614.07570998,0.0 + 07/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50921516.86589309,0.0,39369861.49506737,0.0,26712999.180492589,0.0,33980911.831448029,7694.925752861181,7574.460254713157,7584.220719860442,9129.735672395867,115140032.63939032,150985289.37290109,28186614.07570998,0.0 + 07/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35052169.80643376,0.0,27845929.629124986,0.0,22700637.4185283,0.0,26575949.77300821,7667.168747474859,7547.137790424222,7556.863047787525,9096.80304505503,114724701.4706699,112174686.62709525,28186614.07570998,0.0 + 07/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45606219.891742829,0.0,41790716.74444321,0.0,32130187.415361026,0.0,38749220.19857359,7652.377435231655,7532.578038933501,7542.284534570927,9079.25371769757,114503377.41516115,158276344.25012065,28186614.07570998,0.0 + 07/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37808020.15104532,0.0,36592880.73889202,0.0,31595535.44207757,0.0,36938585.308900568,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,142935021.64091549,28186614.07570998,0.0 + 07/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,45271792.49586128,0.0,45678437.764026109,0.0,41034456.49443432,0.0,49761745.62877624,22853.243802566394,22495.472007568795,22524.459719315644,27114.50140979861,341955636.98129799,181746432.38309796,35233267.594637479,0.0 + 07/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,47358636.91916041,0.0,50459678.533266078,0.0,43551039.317828509,0.0,54763644.0629442,17770.197779954382,17492.002018682073,17514.542248654678,21083.6613357647,265897452.179001,196132998.83319918,14093307.03785499,0.0 + 07/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,57292079.59528818,0.0,65139052.67691282,0.0,55415069.032830897,0.0,69304685.05457005,17805.75662092437,17527.004179363183,17549.58951319242,21125.850543211185,266429523.08408819,247150886.35960195,63419881.67034747,0.0 + 07/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,55652089.44852288,0.0,56551828.72718662,0.0,57148392.92953481,0.0,67368655.4522765,15318.161129568494,15078.35245948496,15097.782455644452,18174.413450075066,229207354.18118269,236720966.5575208,63419881.67034747,69761869.8373822 + 07/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,44537869.15980788,0.0,42142023.53053535,0.0,47519072.45274615,0.0,55109910.67818366,12796.576754659349,12596.243958366122,12612.47550437837,15182.649844038442,191476605.82119224,189308875.82127304,49326574.63249246,69761869.8373822 + 07/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35743889.51799041,0.0,33528113.461647739,0.0,39607290.89177372,0.0,45354718.87667003,10256.303717812914,10095.739369798985,10108.748760427665,12168.712854003305,153466216.92735435,154234012.7480819,35233267.594637479,69761869.8373822 + 07/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27147727.730199256,0.0,24960080.81125217,0.0,32255614.398457938,0.0,35983951.417398478,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,120347374.35730784,35233267.594637479,62010550.96656194 + 07/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21107789.517007397,0.0,19028231.54510997,0.0,26395422.825223004,0.0,28770556.643275355,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,95302000.53061572,35233267.594637479,46507913.22492146 + 07/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,9261534.154881712,0.0,7441515.656247645,0.0,14580382.934007869,0.0,14650782.005579625,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,45934214.75071685,21139960.556782485,23253956.61246073 + 07/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1467900.1811154918,0.0,394049.52813268799,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,1861949.7092481796,14093307.03785499,0.0 + 07/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 + 07/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 + 07/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0324579201172,1270.8211039495109,1272.4586866519633,1531.7607295835915,19317862.72117866,0.0,14093307.03785499,0.0 + 07/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,7911574.06976963,0.0,12964623.898476504,0.0,4407104.479868492,1285.9511712338049,1265.8193657541859,1267.4505032064568,1525.7319768949192,19241830.86152172,25283302.448114627,14093307.03785499,0.0 + 07/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15678689.413593788,0.0,19841422.042515167,0.0,20767263.917887864,0.0,21838798.19587137,1285.194204145847,1265.074249127202,1266.7044264206464,1524.8338643402672,19230504.278522266,78126173.56986818,14093307.03785499,15502637.741640486 + 07/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,37233957.35717375,0.0,36406130.41526465,0.0,35496063.73080534,0.0,40868950.33863256,1283.7834998370877,1263.685629657563,1265.3140175730874,1523.1601175278184,19209395.752544,150005101.84187628,56373228.15141996,38756594.35410121 + 07/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44951096.2978656,0.0,43418747.95020074,0.0,38385670.656940478,0.0,44482473.51445284,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,171237988.41945965,56373228.15141996,38756594.35410121 + 07/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44513392.08128812,0.0,37237934.09287675,0.0,26839281.467599304,0.0,31752811.68941016,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,140343419.3311743,28186614.07570998,0.0 + 07/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52155890.67664339,0.0,42088036.24455991,0.0,27052469.962314138,0.0,32779196.120715508,7667.168747474859,7547.137790424222,7556.863047787525,9096.80304505503,114724701.4706699,154075593.00423295,28186614.07570998,0.0 + 07/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61873155.55386199,0.0,48267904.72377344,0.0,27146552.650344396,0.0,35179583.258760217,5106.0537098561649,5026.117486494988,5032.594151881483,6058.137816691688,76402451.39372756,172467196.18674005,28186614.07570998,0.0 + 07/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71501756.08740089,0.0,56992716.02961773,0.0,33340986.8467906,0.0,45216170.90737066,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,207051629.87117989,28186614.07570998,0.0 + 07/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77980290.78542847,0.0,65387868.99783234,0.0,45036363.32821416,0.0,58328744.50729381,7621.60812797722,7502.290430924143,7511.957897887256,9042.747109176848,114042972.83747567,246733267.6187688,28186614.07570998,0.0 + 07/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71650973.50729111,0.0,64405053.8453661,0.0,51133798.60005042,0.0,62480588.65956191,10143.838247264666,9985.034567172585,9997.901303363677,12035.276866268747,151783383.54265083,249670414.61226953,28186614.07570998,0.0 + 07/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70174489.32506335,0.0,68726749.72689869,0.0,56684181.54035279,0.0,67844583.12620163,12666.265876203297,12467.973121021769,12484.039376967767,15028.04096102237,189526749.60677473,263430003.71851648,28186614.07570998,0.0 + 07/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,76296451.25915435,0.0,77073032.20017644,0.0,65062057.48968224,0.0,80481458.6544432,15182.885631668878,14945.194724740584,14964.453133567727,18013.914235600383,227183211.81207926,298912999.60345628,35233267.594637479,0.0 + 07/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,67061179.04270454,0.0,69945115.60229641,0.0,57852766.90213672,0.0,73294881.4376137,17756.38074333328,17478.401290346843,17500.923994392786,21067.267949242476,265690706.31833539,268153942.98475138,14093307.03785499,0.0 + 07/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,68397220.16988449,0.0,76079117.27767524,0.0,63077427.6334871,0.0,79679589.59161628,10191.61264313458,10032.06104596285,10044.988380571756,12091.959363307597,152498237.15871645,287233354.6726631,63419881.67034747,0.0 + 07/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,58480975.54049628,0.0,57807969.48172866,0.0,57787900.25843898,0.0,68420031.49290958,7694.925752861181,7574.460254713157,7584.220719860442,9129.735672395867,115140032.63939032,242496876.7735735,63419881.67034747,69761869.8373822 + 07/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,44104108.960781339,0.0,40963797.86017494,0.0,45788836.7824952,0.0,52740575.49322952,5141.547218035462,5061.055337182431,5067.577023555569,6100.249509275923,76933544.71697779,183597319.096681,49326574.63249246,69761869.8373822 + 07/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37353851.55626571,0.0,34436828.75153053,0.0,39887703.39904402,0.0,45502877.60741451,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,157181261.31425477,35233267.594637479,69761869.8373822 + 07/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31497382.353685567,0.0,28582488.334549317,0.0,35025282.359129328,0.0,39397838.04556939,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,134502991.0929336,35233267.594637479,62010550.96656194 + 07/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24524959.245059946,0.0,21599645.17912493,0.0,28788408.20851493,0.0,31712156.885485904,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,106625169.5181857,35233267.594637479,46507913.22492146 + 07/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,11918524.990818747,0.0,9029799.872628633,0.0,17022236.75811676,0.0,17196459.40880349,2572.990697464094,2532.7100481043537,2535.973703509676,3052.7552454481026,38499946.90029441,55167021.03036763,21139960.556782485,23253956.61246073 + 07/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1180860.8867402694,0.0,0.0,0.0,6377571.355870031,0.0,4502722.540112973,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,12061154.782723273,14093307.03785499,0.0 + 07/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3387705.7735973929,0.0,1050864.8353261522,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,4438570.608923545,14093307.03785499,0.0 + 07/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1616910.8889206094,0.0,0.0,1287.3573194364238,1267.203500444376,1268.8364214954709,1527.4003180613498,19262871.213975438,1616910.8889206094,14093307.03785499,0.0 + 07/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5050987.479509173,0.0,1290175.8591821793,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,6341163.338691353,14093307.03785499,0.0 + 07/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,22332322.55572641,0.0,45310882.06069022,0.0,32934902.44665104,0.0,36644361.82774769,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,137222468.89081536,14093307.03785499,0.0 + 07/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,49709351.44253355,0.0,57519352.326898369,0.0,51878708.20354533,0.0,61733774.4163167,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,220841186.38929398,14093307.03785499,15502637.741640486 + 07/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,78637841.42763995,0.0,83624045.68399795,0.0,75950186.00176485,0.0,91110262.43123217,20428.597590636127,20108.784084403607,20134.69630515728,24237.75123377926,305675385.17031458,329322335.54463496,56373228.15141996,38756594.35410121 + 07/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,91628277.50567112,0.0,89587700.48050979,0.0,74885806.10587506,0.0,91157076.16094044,17831.187542935295,17552.036975545892,17574.654566688056,21156.023361419175,266810048.8077183,347258860.2529964,56373228.15141996,38756594.35410121 + 07/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77170389.44336772,0.0,66225338.850501749,0.0,50866160.52814062,0.0,63434597.528047408,12699.473833650844,12500.661201700535,12516.769579574891,15067.440934908218,190023643.97940416,257696486.35005749,28186614.07570998,0.0 + 07/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79662567.77848237,0.0,67039414.025873217,0.0,46709872.21787116,0.0,58896417.68316308,10119.110560146859,9960.69399660955,9973.52936749108,12005.938409417315,151413380.4011933,252308271.7053898,28186614.07570998,0.0 + 07/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73592651.00797542,0.0,66620990.9233059,0.0,44467314.6193232,0.0,57303378.35466826,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,241984334.90527279,28186614.07570998,0.0 + 07/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,85890036.01967919,0.0,75321099.65646547,0.0,46341128.30220017,0.0,62135669.676507119,5043.546869045314,4964.5892019376719,4970.986581849453,5983.975836102415,75467154.56016548,269687933.6548519,28186614.07570998,0.0 + 07/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86303810.99148873,0.0,81769105.59581547,0.0,53716485.362307857,0.0,70665802.8921671,5016.907152831924,4938.366535451236,4944.730124780757,5952.368829715711,75068541.51400668,292455204.8417791,28186614.07570998,0.0 + 07/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83329956.47908354,0.0,80568830.29727125,0.0,56223055.17022619,0.0,72542625.11760238,7558.517870641984,7440.187863336966,7449.775304803065,8967.892927151768,113098946.27736163,292664467.06418338,28186614.07570998,0.0 + 07/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58938362.94973553,0.0,57258884.89799626,0.0,43291495.38048356,0.0,53704033.203632939,12673.073129953884,12474.673805944998,12490.748696407445,15036.117507748591,189628607.30419774,213192776.4318483,28186614.07570998,0.0 + 07/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35218312.53778473,0.0,32533035.069110268,0.0,28245397.992614416,0.0,33158842.58731897,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,129155588.18682839,35233267.594637479,0.0 + 07/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,19690815.553254874,0.0,17864788.358549287,0.0,18986246.882445914,0.0,21156987.759400898,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,77698838.55365098,14093307.03785499,0.0 + 07/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,32459323.15705195,0.0,31380228.936094807,0.0,35380323.88137715,0.0,40591601.28030891,17918.677922327137,17638.157676727038,17660.88624318283,21259.827356854494,268119177.11672939,139811477.25483284,63419881.67034747,0.0 + 07/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,46643828.763618569,0.0,43777958.23143441,0.0,51220483.198197659,0.0,58766248.993511479,10245.088929571435,10084.700151159543,10097.695316628256,12155.406935849578,153298408.79955174,200408519.18676213,63419881.67034747,69761869.8373822 + 07/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,40195296.739029217,0.0,37401996.313050728,0.0,43755624.9986998,0.0,50061978.359769459,10247.00201229738,10086.583284218528,10099.580876296397,12157.676735477053,153327034.4698417,171414896.4105492,49326574.63249246,69761869.8373822 + 07/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34349303.322094779,0.0,31650814.954253504,0.0,38275499.609974648,0.0,43335278.09595443,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,147610895.98227737,35233267.594637479,69761869.8373822 + 07/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29862263.98742997,0.0,27172362.835080275,0.0,34722086.02074086,0.0,38836628.95408924,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,130593341.79734037,35233267.594637479,62010550.96656194 + 07/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22012094.695708544,0.0,19354774.17967802,0.0,27800936.41790166,0.0,30230871.573481379,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,99398676.86676961,35233267.594637479,46507913.22492146 + 07/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,9494789.812187136,0.0,6681821.482896936,0.0,15310014.682247187,0.0,15312199.944802419,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,46798825.92213367,21139960.556782485,23253956.61246073 + 07/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4524672.248094259,0.0,1971019.809064328,1285.194204145847,1265.074249127202,1266.7044264206464,1524.8338643402672,19230504.278522266,6495692.0571585879,14093307.03785499,0.0 + 07/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5315013.903821782,0.0,2697483.6791324887,1282.9284461346877,1262.8439619803842,1264.4712653211994,1522.1456289493274,19196601.488588156,8012497.58295427,14093307.03785499,0.0 + 07/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6038165.320542576,0.0,3620201.6523708819,1282.9284461346877,1262.8439619803842,1264.4712653211994,1522.1456289493274,19196601.488588156,9658366.972913459,14093307.03785499,0.0 + 07/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5361339.523723561,0.0,2726072.7598922618,1283.360409781109,1263.269163155338,1264.8970144112664,1522.65813732674,19203065.00882803,8087412.283615824,14093307.03785499,0.0 + 07/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,968605.145765436,0.0,0.0,0.0,6363594.472269939,0.0,4551609.05897685,1283.1455361284885,1263.057653389834,1264.685232093841,1522.4031979401373,19199849.830388287,11883808.677012226,14093307.03785499,0.0 + 07/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14719373.031039607,0.0,10466555.174974338,0.0,15259372.367006604,0.0,16844414.989297905,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,57289715.56231846,14093307.03785499,15502637.741640486 + 07/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,48130723.28371768,0.0,45961393.23034024,0.0,44215280.89520474,0.0,52442588.74903614,20494.00402459476,20173.166568437056,20199.161752592794,24315.353470954105,306654068.9396834,190749986.1582988,56373228.15141996,38756594.35410121 + 07/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,71645136.00870629,0.0,69334342.45145546,0.0,55428830.94949298,0.0,68992573.7144327,17835.322125485516,17556.106830434983,17578.72966600057,21160.92888578829,266871915.02775369,265400883.12408746,56373228.15141996,38756594.35410121 + 07/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60243214.82742892,0.0,52712602.71050059,0.0,36597302.61837767,0.0,46631342.808220248,12699.473833650844,12500.661201700535,12516.769579574891,15067.440934908218,190023643.97940416,196184462.96452744,28186614.07570998,0.0 + 07/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81152743.21097219,0.0,64897756.59481597,0.0,42169879.05313618,0.0,54540452.43478737,10119.110560146859,9960.69399660955,9973.52936749108,12005.938409417315,151413380.4011933,242760831.2937117,28186614.07570998,0.0 + 07/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89387260.46004446,0.0,70405430.64455933,0.0,41703656.07647913,0.0,55546994.33010062,5043.546869045314,4964.5892019376719,4970.986581849453,5983.975836102415,75467154.56016548,257043341.5111835,28186614.07570998,0.0 + 07/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,100517681.89033455,0.0,81287209.44693147,0.0,49020182.54445712,0.0,65757774.55229393,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,296582848.43401709,28186614.07570998,0.0 + 07/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,106950962.54524505,0.0,93599908.8519224,0.0,59801296.210533309,0.0,77382232.69008336,5021.773292475139,4943.156494770559,4949.526256451564,5958.142318650416,75141354.10445166,337734400.2977841,28186614.07570998,0.0 + 07/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,105071047.5959298,0.0,101960381.98166472,0.0,71909266.23409498,0.0,92027441.50005947,7520.436384879032,7402.702550337728,7412.241688151981,8922.710697953704,112529128.7567608,370968137.3117489,28186614.07570998,0.0 + 07/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,98491004.21566777,0.0,97476746.63327,0.0,82806762.14216933,0.0,102607987.70924467,12542.26788207981,12345.916338628087,12361.825311951894,14880.92207428928,187671353.78501667,381382500.7003518,28186614.07570998,0.0 + 07/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,101839671.07416779,0.0,101572360.46004787,0.0,88470640.88553377,0.0,108787285.11404047,12538.173936433974,12341.886484465062,12357.790264910462,14876.064764056007,187610095.6195158,400669957.53378996,35233267.594637479,0.0 + 07/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,95232538.00978536,0.0,97638728.02569692,0.0,80134553.42776996,0.0,101679086.84984583,17587.42440294914,17312.089992990186,17334.398387954447,20866.807700836696,263162593.7450297,374684906.3130981,14093307.03785499,0.0 + 07/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,100139683.32161881,0.0,106905117.47983378,0.0,88420976.9665967,0.0,111633637.57414469,17678.306510202372,17401.54932390033,17423.972996343393,20974.635851909352,264522472.85647962,407099415.34219399,63419881.67034747,0.0 + 07/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,92211434.04716498,0.0,90610595.72520252,0.0,85086863.74512191,0.0,102904920.24667168,10156.997245585064,9997.987558919465,10010.870986362508,12050.889515466051,151980283.10279913,370813813.76416108,63419881.67034747,69761869.8373822 + 07/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,79111808.89254499,0.0,76237056.25511796,0.0,73068674.98293604,0.0,88129859.45174831,10167.224126917641,10008.05433651696,10020.95073603043,12063.023319783095,152133309.06929327,316547399.58234736,49326574.63249246,69761869.8373822 + 07/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,71285041.82416524,0.0,68784234.5071296,0.0,65418294.272233728,0.0,78789780.66087124,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,284277351.26439979,35233267.594637479,69761869.8373822 + 07/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62980942.63742849,0.0,60473820.407799158,0.0,58483157.14964052,0.0,70046707.33618427,5098.143391432224,5018.331005581644,5024.797637292732,6048.752525837101,76284088.41651732,251984627.53105245,35233267.594637479,62010550.96656194 + 07/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,52806752.46088721,0.0,50333181.84716117,0.0,49653099.62722921,0.0,59058186.0400774,2551.357511998267,2511.4155341926609,2514.651749443322,3027.0882966823558,38176247.132339779,211851219.97535504,35233267.594637479,46507913.22492146 + 07/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,37094931.887854579,0.0,34981170.57767701,0.0,35280268.3367241,0.0,41656487.72383038,2554.1182320645095,2514.1330346712545,2517.372751698652,3030.363785657788,38217556.09473193,149012858.52608607,21139960.556782485,23253956.61246073 + 07/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,25643792.590194428,0.0,24151372.011929197,0.0,25251011.5810181,0.0,29556133.417222274,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,104602309.600364,14093307.03785499,0.0 + 07/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24707902.339010657,0.0,23018997.132082754,0.0,24437905.061453724,0.0,28470454.043438555,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,100635258.57598569,14093307.03785499,0.0 + 07/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,19692864.58883591,0.0,17774346.791897388,0.0,20422785.242546567,0.0,23262305.688695715,1281.1121923205299,1261.0561419585088,1262.6811415107468,1519.9907131294993,19169424.680109424,81152302.31197557,14093307.03785499,0.0 + 07/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24574573.99210611,0.0,28446160.499927738,0.0,25197347.396500317,0.0,29072022.86031723,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,107290104.74885139,14093307.03785499,0.0 + 07/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,43528198.47012579,0.0,56026392.18703474,0.0,42330267.10473451,0.0,50829905.22167824,1274.824782393121,1254.8671626064286,1256.4841870270755,1512.5309412558204,19075345.463816804,192714762.98357333,14093307.03785499,0.0 + 07/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,58629698.52633492,0.0,64752648.37368929,0.0,56888925.22902952,0.0,69059248.98106955,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,249330521.11012329,14093307.03785499,15502637.741640486 + 07/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,82729912.3116975,0.0,86360674.02830199,0.0,77155510.57212325,0.0,94164352.60642679,20287.676494529333,19970.06913434517,19995.802606727353,24070.553732537493,303566767.08530166,340410449.51854959,56373228.15141996,38756594.35410121 + 07/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,84461294.60456845,0.0,84239486.75959897,0.0,69839936.71183649,0.0,85961162.66151163,17761.015517681353,17482.963506437874,17505.492089364914,21072.766932086248,265760056.9640534,324501880.7375155,56373228.15141996,38756594.35410121 + 07/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68737823.13738515,0.0,64575700.173345569,0.0,44635145.439869377,0.0,56468103.882978428,12676.445807550801,12477.993683644963,12494.072852108678,15040.119060974315,189679073.05540354,234416772.63357855,28186614.07570998,0.0 + 07/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74861131.52893058,0.0,67265123.97830308,0.0,43130918.6122076,0.0,55081585.937247637,10116.281036530501,9957.908769713255,9970.740551545647,12002.581287656063,151371041.92360369,240338760.0566889,28186614.07570998,0.0 + 07/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,84647411.25686,0.0,74168936.05445114,0.0,45153620.310586649,0.0,58820658.99784951,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,262790626.61974729,28186614.07570998,0.0 + 07/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,94699644.26676435,0.0,81925251.26012641,0.0,51232587.608345057,0.0,68299944.98474325,5018.536975648164,4939.970843087245,4946.3364997309049,5954.3025522730199,75092928.73466161,296157428.1199791,28186614.07570998,0.0 + 07/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,105802349.24304912,0.0,93127236.16908244,0.0,62179610.07020073,0.0,81027285.46420117,5010.310464645804,4931.873119649281,4938.228341549773,5944.54211099395,74969834.53261972,342136480.94653347,28186614.07570998,0.0 + 07/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,103848393.09626538,0.0,101513042.08696249,0.0,70941162.81720986,0.0,89413043.55288542,7500.277488620052,7382.8592453603209,7392.372813050746,8898.792937054803,112227488.94270933,365715641.55332317,28186614.07570998,0.0 + 07/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,94167716.65689427,0.0,96919076.30049137,0.0,69965118.34019564,0.0,88557305.1520698,12578.23625336292,12381.321618348868,12397.276214989337,14923.59717381955,188209552.53787444,349609216.449651,28186614.07570998,0.0 + 07/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,69463440.95026413,0.0,68587476.91425632,0.0,53080563.73609213,0.0,66778473.138337079,12578.23625336292,12381.321618348868,12397.276214989337,14923.59717381955,188209552.53787444,257909954.73894964,35233267.594637479,0.0 + 07/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,28683626.003276167,0.0,25694967.88290201,0.0,23566791.11940187,0.0,27218885.165401676,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,105164270.17098174,14093307.03785499,0.0 + 07/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,27803179.558481557,0.0,23917308.668634628,0.0,31679774.62690437,0.0,34490440.7618012,17928.90562675001,17648.225264529196,17670.96680409945,21271.962137736755,268272215.39921553,117890703.61582175,63419881.67034747,0.0 + 07/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,40612545.58367975,0.0,36739507.46300944,0.0,48621569.33319917,0.0,54263947.541878137,10252.635849137645,10092.128922292068,10105.133660490625,12164.361067831254,153411334.19910575,180237569.9217665,63419881.67034747,69761869.8373822 + 07/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,34417559.31896174,0.0,30841619.85575977,0.0,40612721.29933191,0.0,45108060.86460763,10250.775490184089,10090.29768760498,10103.300066070733,12162.153822947126,153383497.44050495,150979961.33866105,49326574.63249246,69761869.8373822 + 07/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,28437887.76479186,0.0,25287855.896536206,0.0,34654324.39202676,0.0,37733593.922403957,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,126113661.97575878,35233267.594637479,69761869.8373822 + 07/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24512722.384042354,0.0,21281093.134519366,0.0,30996660.350576655,0.0,33302960.73728877,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,110093436.60642715,35233267.594637479,62010550.96656194 + 07/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17984065.19001226,0.0,14252657.907333937,0.0,24761423.042555095,0.0,26135477.63271393,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,83133623.77261523,35233267.594637479,46507913.22492146 + 07/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,3992707.393124108,0.0,283630.1716722896,0.0,12659269.829818657,0.0,11466049.469828185,2566.720819562218,2526.538326310676,2529.7940288225329,3045.31627465348,38406130.01765606,28401656.86444324,21139960.556782485,23253956.61246073 + 07/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1526160.793344779,0.0,0.0,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,1526160.793344779,14093307.03785499,0.0 + 07/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,235116.0746575957,0.0,0.0,1283.9917121808197,1263.8905823982116,1265.5192344162616,1523.4071535257024,19212511.25707558,235116.0746575957,14093307.03785499,0.0 + 07/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,0.0,14093307.03785499,0.0 + 07/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2668880.9811253699,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,2668880.9811253699,14093307.03785499,0.0 + 07/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,18670305.91714456,0.0,34528617.07654238,0.0,34532029.471411127,0.0,31726301.73230117,1282.4876254768636,1262.410042452193,1264.0367866434067,1521.6226120659779,19190005.439898388,119457254.19739923,14093307.03785499,0.0 + 07/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,51248742.38644429,0.0,61251252.38880153,0.0,55281152.93575471,0.0,65627642.90620683,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,233408790.61720736,14093307.03785499,15502637.741640486 + 07/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,70190722.48996692,0.0,69401653.38250193,0.0,67876391.67392183,0.0,81469082.41738262,20437.2595953421,20117.31048381001,20143.233691699592,24248.02837171385,305804995.71323606,288937849.96377328,56373228.15141996,38756594.35410121 + 07/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,75114193.97643887,0.0,72554561.75352393,0.0,62357079.76447669,0.0,75140357.83161871,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,285166193.32605817,56373228.15141996,38756594.35410121 + 07/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73631115.21059235,0.0,62764444.84022,0.0,45124187.87117764,0.0,55822859.26206215,12730.592254015475,12531.292457389221,12547.440306763003,15104.361752807723,190489272.3755115,237342607.18405215,28186614.07570998,0.0 + 07/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72776879.63548067,0.0,60650995.75439776,0.0,40190721.86881973,0.0,50471798.82492177,10189.250024534454,10029.735414597655,10042.659752393174,12089.156206525244,152462885.0329819,224090396.08361996,28186614.07570998,0.0 + 07/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70487234.4501669,0.0,59550251.762740667,0.0,38119582.26568282,0.0,49105223.98545484,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,217262292.46404524,28186614.07570998,0.0 + 07/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78984225.38713378,0.0,66216736.09576605,0.0,42670926.41271271,0.0,56648286.59792987,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,244520174.4935424,28186614.07570998,0.0 + 07/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89729838.95880538,0.0,77075786.30965682,0.0,53722601.81384675,0.0,69238285.53332864,5059.5552800734299,4980.346998304775,4986.76468374554,6002.969204708657,75706690.20059665,289766512.6156376,28186614.07570998,0.0 + 07/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,90420904.09574357,0.0,82829418.67018929,0.0,64490250.03465298,0.0,79127587.60867869,7578.600145674574,7459.955746607577,7469.568661008936,8991.71977989037,113399439.59945324,316868160.40926459,28186614.07570998,0.0 + 07/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89048944.70765965,0.0,87732214.24736005,0.0,71827201.46953577,0.0,86592305.92388919,12631.000242790957,12433.259577679297,12449.281101681561,14986.199633150616,188999065.99908877,335200666.3484446,28186614.07570998,0.0 + 07/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,88362503.21882639,0.0,88623380.42840787,0.0,75360352.76480688,0.0,93270639.08542454,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,345616875.49746569,35233267.594637479,0.0 + 07/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,76658135.85793318,0.0,78895307.75775367,0.0,64712205.65310033,0.0,81777880.41307858,17732.772226684614,17455.162369430476,17477.65512775487,21039.257345431317,265337449.44948466,302043529.68186578,14093307.03785499,0.0 + 07/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,78969951.53140979,0.0,85033009.67609144,0.0,71021102.93368869,0.0,89068226.77941358,17810.06912275614,17531.24916817428,17553.839972104877,21130.967162016263,266494051.53018565,324092290.9206035,63419881.67034747,0.0 + 07/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,73876425.98741593,0.0,72642194.95546007,0.0,70247891.40879217,0.0,83978537.52899902,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,300745049.88066717,63419881.67034747,69761869.8373822 + 07/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,63538398.66118891,0.0,60805993.11198093,0.0,61486135.521180558,0.0,72754732.63536996,10222.891663299812,10062.850387232298,10075.817397050034,12129.07072674004,152966268.62755988,258585259.92972035,49326574.63249246,69761869.8373822 + 07/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,56570125.65137167,0.0,54017065.297610569,0.0,55395176.784942109,0.0,65181013.995302449,5114.57723664798,5034.507575884815,5040.995052757848,6068.250655867157,76529989.87616807,231163381.7292268,35233267.594637479,69761869.8373822 + 07/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,51709938.8147029,0.0,49066977.819802369,0.0,50976013.17260739,0.0,59584470.881686139,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,211337400.6887988,35233267.594637479,62010550.96656194 + 07/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44401081.91810422,0.0,41965516.79742482,0.0,44093677.43058038,0.0,51301698.683305699,2556.771057157808,2516.7443292928335,2519.98741123988,3033.5112613664284,38257250.61260502,181761974.82941509,35233267.594637479,46507913.22492146 + 07/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,29929806.26245941,0.0,27806747.35958438,0.0,30300059.37445952,0.0,34723439.64380967,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,122760052.64031297,21139960.556782485,23253956.61246073 + 07/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20928175.074280029,0.0,19470533.24697937,0.0,21310299.253668176,0.0,24438337.682383866,1276.2373528084357,1256.2576189683767,1257.8764351339667,1514.2069021324635,19096481.912555674,86147345.25731145,14093307.03785499,0.0 + 07/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,22358625.78775511,0.0,21056273.23376939,0.0,22569851.973006015,0.0,26155759.174620868,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,92140510.16915138,14093307.03785499,0.0 + 07/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20956636.461156399,0.0,19598428.212581345,0.0,21394570.522824274,0.0,24644746.05238562,1276.787349414758,1256.7990052752255,1258.41851907233,1514.8594521112039,19104711.57314466,86594381.24894762,14093307.03785499,0.0 + 07/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,23129965.784201929,0.0,24888312.719538079,0.0,23468020.93639898,0.0,27158943.466833638,1275.9591280969274,1255.98374991663,1257.6022131739938,1513.8767991327493,19092318.805153084,98645242.90697262,14093307.03785499,0.0 + 07/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,35335765.08558131,0.0,43012153.70007328,0.0,33237339.357203429,0.0,39727035.60188635,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,151312293.74474437,14093307.03785499,0.0 + 07/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,47163357.5425776,0.0,50100491.097359519,0.0,42309712.927318017,0.0,51407644.70339063,5094.625012267227,5014.867707298828,5021.329876196587,6044.578103262622,76231442.51649095,190981206.27064575,14093307.03785499,15502637.741640486 + 07/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,79754142.83298165,0.0,81202581.46874716,0.0,72492776.96688169,0.0,88678352.88979337,20282.313292081282,19964.789893831945,19990.516563373887,24064.190497558902,303486516.88864567,322127854.1584039,56373228.15141996,38756594.35410121 + 07/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,92614537.94418642,0.0,91766294.0381724,0.0,75762827.79893485,0.0,93969263.0840334,17662.855495135715,17386.340197356927,17408.744271288073,20956.303812334267,264291277.59401394,354112922.8653271,56373228.15141996,38756594.35410121 + 07/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88288656.70812442,0.0,79174307.87069305,0.0,55492699.7446257,0.0,71114870.14540315,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,294070534.4688463,28186614.07570998,0.0 + 07/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,91001735.91515546,0.0,76269802.17242971,0.0,49253098.89762299,0.0,63940913.297409478,10046.759510865646,9889.47561650191,9902.219215231564,11920.096651254495,150330783.57787303,280465550.2826176,28186614.07570998,0.0 + 07/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,99220488.96980417,0.0,82627785.09251192,0.0,49172634.43052921,0.0,64868443.12899795,5010.310464645804,4931.873119649281,4938.228341549773,5944.54211099395,74969834.53261972,295889351.6218432,28186614.07570998,0.0 + 07/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,97885751.09620986,0.0,84346413.50779122,0.0,52224572.032281767,0.0,70189006.08517799,5006.965904196718,4928.580918917953,4934.931898481774,5940.57391769083,74919789.50143418,304645742.7214608,28186614.07570998,0.0 + 07/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,105153019.7151986,0.0,96041067.11689726,0.0,64608371.99617292,0.0,84181568.71962975,4971.856850452331,4894.0215039595209,4900.327950189762,5898.918365618088,74394448.81279093,349984027.54789856,28186614.07570998,0.0 + 07/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,111793757.73269947,0.0,109179907.46006927,0.0,77994950.71785932,0.0,99741609.1836566,7452.273847209521,7335.607109911141,7345.059788402116,8841.838448932851,111509205.10004026,398710225.09428468,28186614.07570998,0.0 + 07/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,107357885.12850298,0.0,109492657.70179424,0.0,86146136.77932126,0.0,108347753.11184949,12438.754608659126,12244.023584813189,12259.801258923728,14758.107526720203,186122473.1248185,411344432.721468,28186614.07570998,0.0 + 07/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,104717923.65656403,0.0,107651050.45588298,0.0,90553337.4364277,0.0,115420761.8018376,12500.46248103342,12304.765408933868,12320.621355084577,14831.321561758,187045814.9045155,418343073.3507123,35233267.594637479,0.0 + 07/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,96389618.75844783,0.0,102293825.4999223,0.0,83547658.42571159,0.0,108955689.03021372,17512.567462617928,17238.40495202441,17260.618396292513,20777.9927985988,262042500.99432115,391186791.7142955,14093307.03785499,0.0 + 07/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,102574915.75834978,0.0,113650388.02734824,0.0,90677399.484776,0.0,118238193.72273103,17553.44351100756,17278.641078251083,17300.906370874643,20826.490669678406,262654133.8673221,425140896.993205,63419881.67034747,0.0 + 07/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,93935479.48946305,0.0,95636872.90813026,0.0,84990941.15276994,0.0,105843298.79186607,10078.023827522646,9920.250484449292,9933.03373973742,11957.190569535689,150798595.03648217,380406592.34222939,63419881.67034747,69761869.8373822 + 07/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,80218252.22155033,0.0,81148897.026668,0.0,73516211.19920668,0.0,90605402.42446728,10090.085035918712,9932.1228723779,9944.921426449666,11971.500732892993,150979068.24350138,325488762.8718923,49326574.63249246,69761869.8373822 + 07/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,70003605.15575123,0.0,70916315.92524342,0.0,64606255.64957933,0.0,79401786.7890039,5060.96187722296,4981.73157491353,4988.151044522576,6004.63807853346,75727737.2706931,284927963.51957789,35233267.594637479,69761869.8373822 + 07/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,59644920.0285474,0.0,60167124.81628978,0.0,56238426.94215019,0.0,68586645.06317389,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,244637116.85016126,35233267.594637479,62010550.96656194 + 07/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,47866060.170756448,0.0,48063844.70355947,0.0,47345416.150582429,0.0,56157984.722516868,2546.118450803095,2506.2584914778456,2509.4880613526,3020.8723505615446,38097854.475102309,199433305.7474152,35233267.594637479,46507913.22492146 + 07/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,33098340.08374212,0.0,32818257.33612194,0.0,34226849.46653959,0.0,40473231.83202626,2549.649564786242,2509.734325212857,2512.968374054151,3025.0618825116409,38150690.927633609,140616678.71842993,21139960.556782485,23253956.61246073 + 07/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,22183132.88623044,0.0,22113793.389248168,0.0,22909956.199681485,0.0,27115414.182580476,1276.2373528084357,1256.2576189683767,1257.8764351339667,1514.2069021324635,19096481.912555674,94322296.65774057,14093307.03785499,0.0 + 07/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,19794988.99723707,0.0,19621454.326130898,0.0,20978290.01653,0.0,24631930.055298009,1277.0591160322547,1257.0665173356272,1258.686375849326,1515.181892828894,19108778.047365965,85026663.39519596,14093307.03785499,0.0 + 07/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,17405281.77607287,0.0,17101151.879059677,0.0,19122849.869921417,0.0,22264194.453390849,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,75893477.97844482,14093307.03785499,0.0 + 07/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,19525036.50078071,0.0,23060693.493518,0.0,22117188.712372833,0.0,25606386.298556024,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,90309305.00522757,14093307.03785499,0.0 + 07/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,42881857.873155448,0.0,57834773.2000766,0.0,45398110.297958,0.0,54205139.180846948,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,200319880.552037,14093307.03785499,0.0 + 07/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,63960803.81448345,0.0,70172774.59808281,0.0,61636946.32656144,0.0,75099671.71649416,1272.7575307898933,1252.8322742126948,1254.4466764719496,1510.0782261404357,19044412.947413904,270870196.45562186,14093307.03785499,15502637.741640486 + 07/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,85593032.32398653,0.0,86195768.3341004,0.0,77573455.9536125,0.0,94826561.14816644,5077.199365701253,4997.714862480594,5004.154928187051,6023.903238789915,75970700.62257174,344188817.7598659,56373228.15141996,38756594.35410121 + 07/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,99467563.66750863,0.0,95658151.39231804,0.0,79371887.67909433,0.0,98169027.25417279,12652.404693057399,12454.32893728382,12470.37761130644,15011.595196333652,189319343.17673273,372666629.9930937,56373228.15141996,38756594.35410121 + 07/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,95636986.00244047,0.0,82383823.70669796,0.0,59119177.40175731,0.0,74937230.21750739,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,312077217.3284031,28186614.07570998,0.0 + 07/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,107506027.69776735,0.0,87957568.31871332,0.0,58463045.00241379,0.0,74632656.14524576,12566.423033413022,12369.693336561038,12385.632948973553,14909.581239287323,188032790.00964577,328559297.1641402,28186614.07570998,0.0 + 07/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,109479309.98424226,0.0,85298330.87969215,0.0,54813799.32253381,0.0,72342931.19712076,7522.904361860385,7405.131890679036,7414.674158946277,8925.638858433605,112566057.3717095,321934371.383589,28186614.07570998,0.0 + 07/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,115190318.66946714,0.0,90317366.30431831,0.0,59596152.77755242,0.0,80236542.96339116,7502.837480538101,7385.379160127326,7394.895974985132,8901.830269744669,112265794.38742283,345340380.71472898,28186614.07570998,0.0 + 07/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,121067229.72562173,0.0,103191972.1493938,0.0,72269759.11722635,0.0,94207469.57079444,7465.969967204082,7349.088814592178,7358.558865635683,8858.088372493356,111714141.67173106,390736430.5630363,28186614.07570998,0.0 + 07/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,120769058.48151198,0.0,112506443.52852898,0.0,83111828.82739397,0.0,104985026.12849033,7449.501721906172,7332.878382746557,7342.327544994064,8838.549428078957,111467725.4798127,421372356.9659252,28186614.07570998,0.0 + 07/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,117969515.00568705,0.0,117940768.12745086,0.0,90627079.01835136,0.0,111864155.3242783,17395.081761473917,17122.758511448745,17144.822933474377,20638.600498896354,260284549.33905626,438401517.4757676,28186614.07570998,0.0 + 07/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,121764191.64485976,0.0,127302089.73220819,0.0,98892966.52084917,0.0,124006422.95198472,22397.909901612245,22047.266443776538,22075.67659690705,26574.265117480063,335142425.0151932,471965670.8499018,35233267.594637479,0.0 + 07/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,108809727.62588945,0.0,116149786.45895982,0.0,88637479.6237163,0.0,114489489.93854803,17451.908856800645,17178.695967997046,17200.83247114486,20706.023678277925,261134859.50719375,428086483.6471136,14093307.03785499,0.0 + 07/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,102956274.86337438,0.0,109651663.6170546,0.0,86897469.60172394,0.0,112236806.20619539,17500.647473446785,17226.671572507414,17248.869897118406,20763.8501864612,261864140.8663217,411742214.2883483,63419881.67034747,0.0 + 07/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,97841429.96171323,0.0,99243006.50466503,0.0,86666320.40230808,0.0,107528336.4832128,15045.80872372077,14810.263781358071,14829.348317892554,17851.27771686721,225132114.743419,391279093.35189917,63419881.67034747,69761869.8373822 + 07/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,86545765.12509039,0.0,87488547.94507997,0.0,78066680.58178781,0.0,95309294.11899963,12546.342439120412,12349.927107718111,12365.84124932726,14885.75638068255,187732321.83665399,347410287.77095779,49326574.63249246,69761869.8373822 + 07/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,78480597.03210506,0.0,79732767.84728636,0.0,72496237.24885778,0.0,88434715.72733486,10037.073951296328,9879.94168617449,9892.672999461809,11908.605104546039,150185857.46932323,319144317.855584,35233267.594637479,69761869.8373822 + 07/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,71517625.82758256,0.0,72827950.95115647,0.0,67566567.51836287,0.0,83082876.06410457,7544.590918151392,7426.478939885685,7436.048716004676,8951.369129646138,112890555.73327641,294995020.3612065,35233267.594637479,62010550.96656194 + 07/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62662273.45154922,0.0,63927948.39355734,0.0,59777728.424220319,0.0,73663650.59718299,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,260031600.86650986,35233267.594637479,46507913.22492146 + 07/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,49815301.8975526,0.0,50134857.7146701,0.0,45931736.41863339,0.0,57027151.516361538,2521.0216045381228,2481.554541022963,2484.752277336077,2991.0959004736725,37722327.564135,202909047.5472176,21139960.556782485,23253956.61246073 + 07/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,38332757.33162294,0.0,39261424.22689102,0.0,34404709.495960827,0.0,43059676.46718536,1263.8216387626874,1244.0362752421639,1245.639342958956,1499.4761313541247,18910704.19794455,155058567.52166016,14093307.03785499,0.0 + 07/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,34734506.51865101,0.0,35556825.65698643,0.0,31596551.479687267,0.0,39328221.27093604,1267.6445807550802,1247.7993683644966,1249.407285210868,1504.0119060974315,18967907.305540354,141216104.92626075,14093307.03785499,0.0 + 07/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,30011442.346492739,0.0,30655040.917058544,0.0,28098975.42387537,0.0,34703489.26040959,1270.9030158647052,1251.00679206462,1252.6188420038039,1507.8779149728869,19016663.633661659,123468947.94783625,14093307.03785499,0.0 + 07/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,28686303.94701961,0.0,31809216.251885278,0.0,27636303.64117253,0.0,33752223.63956404,1273.9515803918226,1254.0076307453563,1255.6235475714696,1511.4949204134496,19062279.644839556,121884047.47964145,14093307.03785499,0.0 + 07/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,45280123.17296505,0.0,55341067.074603769,0.0,41809161.856783729,0.0,51520932.7823779,1270.9030158647052,1251.00679206462,1252.6188420038039,1507.8779149728869,19016663.633661659,193951284.88673044,14093307.03785499,0.0 + 07/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,51018566.32849068,0.0,53680099.80848808,0.0,45245200.47646131,0.0,56017750.0900655,1269.9473833650844,1250.0661201700539,1251.676957957489,1506.7440934908219,19002364.397940417,205961616.70350559,14093307.03785499,15502637.741640486 + 07/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,74305318.7817471,0.0,74472711.08930326,0.0,64961338.86873338,0.0,80006240.86770636,1266.9679808651536,1247.1333607720665,1248.740419399677,1503.2091461554392,18957783.26589241,293745609.6074901,56373228.15141996,38756594.35410121 + 07/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,83594865.63318895,0.0,82852074.2975799,0.0,65370772.31909131,0.0,81661919.94308502,5056.717605373321,4977.553747931464,4983.967833984023,5999.602411997681,75664229.75743138,313479632.1929452,56373228.15141996,38756594.35410121 + 07/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66212975.566758129,0.0,63207573.26588917,0.0,42924634.13632274,0.0,55031271.064515139,7585.076408059981,7466.330621897195,7475.951750976034,8999.403617996522,113496344.63614704,227376454.03348515,28186614.07570998,0.0 + 07/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74727699.2244846,0.0,70964604.63909304,0.0,45326529.09909139,0.0,58452025.86182007,7593.54044432593,7474.662152096436,7484.29401720232,9009.445873933944,113622992.95521108,249470858.82448913,28186614.07570998,0.0 + 07/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77066202.96419335,0.0,71965370.86752087,0.0,45466801.45290674,0.0,59174419.93688779,5048.009725295269,4968.9821913404889,4975.385232067499,5989.27084468529,75533932.77619876,253672795.22150875,28186614.07570998,0.0 + 07/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,94488639.3549889,0.0,84436578.69604843,0.0,49708341.86164817,0.0,66579061.88587407,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,295212621.7985596,28186614.07570998,0.0 + 07/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,100832474.0330697,0.0,90380067.47237686,0.0,57042740.71518524,0.0,77276473.09400325,7546.941752017752,7428.79297100932,7438.365728993603,8954.158304291732,112925731.52272466,325531755.31463506,28186614.07570998,0.0 + 07/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83348209.75421943,0.0,77752857.56209235,0.0,61412145.27196501,0.0,78595905.28068564,10046.759510865646,9889.47561650191,9902.219215231564,11920.096651254495,150330783.57787303,301109117.8689624,28186614.07570998,0.0 + 07/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71162905.227623,0.0,69591998.50504223,0.0,57470703.31046564,0.0,69573374.55098373,12597.529784403307,12400.313105561612,12416.292174671777,14946.488211919612,188498243.79560275,267798981.5941146,28186614.07570998,0.0 + 07/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,65953546.26206052,0.0,66937509.06940773,0.0,56694409.83443036,0.0,69903349.07848437,15148.443765738737,14911.2920526467,14930.506774420479,17973.050276401118,226667854.32914535,259488814.24438299,35233267.594637479,0.0 + 07/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,63680694.692444268,0.0,66099157.44452699,0.0,55315130.0425078,0.0,70009515.3901762,17703.491813928376,17426.34034699819,17448.79596520488,21004.517253398106,264899323.36630637,255104497.56965528,14093307.03785499,0.0 + 07/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,64603095.08927119,0.0,69992416.47012919,0.0,58919179.33699906,0.0,74864640.5408645,10169.738930740266,10010.529770616604,10023.429359979575,12066.007038522675,152170938.35949285,268379331.43726395,63419881.67034747,0.0 + 07/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,57615254.17273481,0.0,56978245.13936049,0.0,55099351.90752572,0.0,66215873.24944349,7657.424116850613,7537.545713810257,7547.258610803801,9085.241412794781,114578891.47533402,235908724.46906448,63419881.67034747,69761869.8373822 + 07/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,48386937.911978308,0.0,46465792.28925505,0.0,47122361.401151198,0.0,55925998.378880809,5106.0537098561649,5026.117486494988,5032.594151881483,6058.137816691688,76402451.39372756,197901089.98126538,49326574.63249246,69761869.8373822 + 07/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,38320731.5223393,0.0,36156087.838659558,0.0,38743257.30653113,0.0,45164835.38856515,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,158384912.05609513,35233267.594637479,69761869.8373822 + 07/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27717894.732669973,0.0,24936873.38632202,0.0,30421533.355035504,0.0,34225767.03125664,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,117302068.50528413,35233267.594637479,62010550.96656194 + 07/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16249503.478714483,0.0,13130459.471000465,0.0,20666691.410369368,0.0,21805116.79869572,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,71851771.15878004,35233267.594637479,46507913.22492146 + 07/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,594196.8113665291,0.0,0.0,0.0,3793291.0310914928,0.0,2003605.3592558816,2585.1118605609956,2544.641452131772,2547.9204823689976,3067.136542769336,38681317.21619196,6391093.201713903,21139960.556782485,23253956.61246073 + 07/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 07/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 + 07/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 + 07/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3534074326945,1273.1057185644959,1274.7462452260655,1534.5144475841749,19352591.34770675,0.0,14093307.03785499,0.0 + 07/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 07/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,5933255.784449538,0.0,14533577.511811089,0.0,9501556.094235972,5164.546505948632,5083.694566952808,5090.245426284242,6127.537286448107,77277685.62828164,29968389.390496598,14093307.03785499,15502637.741640486 + 07/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,31003954.864787,0.0,30830584.855996029,0.0,36748705.35778813,0.0,39937234.88640399,20645.749610713206,20322.53654909671,20348.7242117184,24495.393816398515,308924655.07653656,138520479.96497516,56373228.15141996,38756594.35410121 + 07/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,35938189.6733059,0.0,29679852.495533926,0.0,31769700.376132918,0.0,35097446.37481078,18065.030909374054,17782.219480459615,17805.1336852536,21433.469589348697,270309073.19196948,132485188.9197835,56373228.15141996,38756594.35410121 + 07/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25109204.13207251,0.0,14960462.909827162,0.0,13109776.260725657,0.0,13376338.019643818,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,66555781.32226914,28186614.07570998,0.0 + 07/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25669666.60884837,0.0,14625473.903997137,0.0,10096291.774801182,0.0,10111139.689617789,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,60502571.97726448,28186614.07570998,0.0 + 07/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25570360.824330816,0.0,13671238.111289194,0.0,7762732.526781092,0.0,7907970.820392521,5152.0251387108069,5071.369224054949,5077.904200924039,6112.681162190399,77090327.0131687,54912302.282793629,28186614.07570998,0.0 + 07/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26107453.728228146,0.0,16053560.678273485,0.0,9651595.184345615,0.0,10803829.592985902,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,62616439.18383315,28186614.07570998,0.0 + 07/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35931026.84925322,0.0,23327392.19737891,0.0,14610677.521843804,0.0,17377367.816841149,5128.151858906457,5047.869684899492,5054.374380213832,6084.356427001652,76733108.46367717,91246464.38531709,28186614.07570998,0.0 + 07/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35106605.166173059,0.0,25583199.955796325,0.0,18786258.03854535,0.0,21597556.90070691,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,101073620.06122163,28186614.07570998,0.0 + 07/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33749671.927673097,0.0,27713914.234924124,0.0,23451381.340521277,0.0,25773056.184533158,12831.455361284885,12630.576533898336,12646.852320938411,15224.031979401374,191998498.30388285,110688023.68765165,28186614.07570998,0.0 + 07/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26798498.869029475,0.0,23351797.423538109,0.0,22587510.958432307,0.0,25006344.116932516,12835.730650307973,12634.784892474212,12651.066102413852,15229.104446629452,192062469.93057177,97744151.3679324,35233267.594637479,0.0 + 07/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24826392.658981295,0.0,23185215.44186274,0.0,24144595.342365818,0.0,27848786.0444129,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,100004989.48762274,14093307.03785499,0.0 + 07/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25680075.44105819,0.0,25892848.346817279,0.0,27587433.887127609,0.0,32249855.415364978,18025.321297533203,17743.131529999955,17765.99536598015,21386.3556507086,269714893.8391988,111410213.09036805,63419881.67034747,0.0 + 07/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,22151412.20862448,0.0,18548291.75503892,0.0,27150150.09963704,0.0,28886287.987615006,10323.818044642241,10162.196747247015,10175.2917749897,12248.81602560601,154476441.33294589,96736142.05091544,63419881.67034747,69761869.8373822 + 07/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,12457848.359495869,0.0,7814073.409369666,0.0,19786728.39645578,0.0,18970688.087777623,10337.047499538165,10175.219092558591,10188.330900922372,12264.512268840683,154674395.1426953,59029338.25309894,49326574.63249246,69761869.8373822 + 07/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4269685.0084223239,0.0,563252.4630709702,0.0,12999301.117359037,0.0,10228625.130889586,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,77388817.95608746,28060863.71974192,35233267.594637479,69761869.8373822 + 07/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25916.53939717403,0.0,0.0,0.0,8443673.666859447,0.0,4556265.7728593009,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,77400688.63593015,13025855.97911592,35233267.594637479,62010550.96656194 + 07/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,4463870.039986115,0.0,40341.54013356652,2585.6933312850158,2545.2138198231348,2548.4935876145507,3067.8264355872836,38690017.827515948,4504211.580119681,35233267.594637479,46507913.22492146 + 07/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,1531241.0404738768,0.0,7011316.276682725,0.0,0.0,0.0,0.0,0.0,2586.7775757242359,2546.2810902133935,2549.562233291641,3069.1128502262638,47248798.81519652,0.0,21139960.556782485,23253956.61246073 + 07/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.489339991631,19352274.702282534,0.0,14093307.03785499,0.0 + 07/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 07/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1566881634292,1272.912078972089,1274.5523561092792,1534.2810476804278,19349647.81533081,0.0,14093307.03785499,0.0 + 07/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1566881634292,1272.912078972089,1274.5523561092792,1534.2810476804278,19349647.81533081,0.0,14093307.03785499,0.0 + 07/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3087698752136,1273.0617798163044,1274.7022498583124,1534.4614868261443,19351923.430953508,0.0,14093307.03785499,0.0 + 07/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,4863521.057390995,0.0,10433839.121441152,0.0,5797842.613908396,5164.954008148201,5084.095689629423,5090.647065848369,6128.02077225258,77283783.12916287,21095202.792740544,14093307.03785499,15502637.741640486 + 07/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,38801834.422375667,0.0,41576801.93876766,0.0,44209713.588121619,0.0,49201826.72822359,20597.71711098278,20275.256007110016,20301.382743927534,24438.405088981595,308205939.423607,173790176.67748855,56373228.15141996,38756594.35410121 + 07/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,51079997.20903335,0.0,44550325.54275138,0.0,44048772.19368264,0.0,50844067.8102834,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,269186244.8842656,190523162.75575079,56373228.15141996,38756594.35410121 + 07/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47009198.56795971,0.0,33350616.211513584,0.0,27773378.939625019,0.0,32283168.987072544,12791.553484127195,12591.299328071238,12607.524502422664,15176.689925302064,191401442.0637234,140416362.70617087,28186614.07570998,0.0 + 07/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55494129.81614928,0.0,38618328.99572554,0.0,25939263.02187894,0.0,31221664.374853326,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,151273386.20860709,28186614.07570998,0.0 + 07/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45422278.7003724,0.0,32706903.998812073,0.0,21138764.095697125,0.0,25648333.809125574,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,124916280.60400719,28186614.07570998,0.0 + 07/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46945902.875414218,0.0,35664917.79234092,0.0,23550771.30187237,0.0,29432420.431647228,5087.3590345498209,5007.715479818054,5014.168432340691,6035.957298060339,76122720.88116805,135594012.40127475,28186614.07570998,0.0 + 07/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52844500.36245176,0.0,41098935.026507269,0.0,27262411.35875266,0.0,34116434.219913329,5107.149397659032,5027.196021100902,5033.67407628932,6059.437808444815,76418846.29257864,155322280.967625,28186614.07570998,0.0 + 07/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46136057.93013317,0.0,39689525.91438018,0.0,28276096.060310998,0.0,34459905.49546152,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,148561585.40028588,28186614.07570998,0.0 + 07/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40629917.94568898,0.0,36315301.47077792,0.0,27569761.274218747,0.0,32907177.723420264,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,137422158.4141059,28186614.07570998,0.0 + 07/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35607490.40225867,0.0,32361798.167263979,0.0,25399569.743227759,0.0,30279145.423077339,12783.85528578904,12583.721646464164,12599.937056199402,15167.55630683214,191286253.06302513,123648003.73582776,35233267.594637479,0.0 + 07/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,27876467.468979036,0.0,25165916.416132966,0.0,20470592.457235569,0.0,24183180.72592766,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,97696157.06827525,14093307.03785499,0.0 + 07/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,35912681.63361811,0.0,32593119.434071069,0.0,32981633.848672458,0.0,38144385.433631319,17935.570692487418,17654.785987419113,17677.535981150453,21279.869983812987,268371945.52153189,139631820.34999297,63419881.67034747,0.0 + 07/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44545271.17307535,0.0,39267828.97683701,0.0,47437740.10341285,0.0,53088218.4401796,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,184339058.6935048,63419881.67034747,69761869.8373822 + 07/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,36675183.85821243,0.0,32070251.000114569,0.0,40617812.76305256,0.0,45020625.69517826,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,154383873.31655783,49326574.63249246,69761869.8373822 + 07/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,30923774.954117817,0.0,27085889.97252966,0.0,35061546.454843398,0.0,38808945.39153877,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,131880156.77302963,35233267.594637479,69761869.8373822 + 07/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25105399.990206887,0.0,21400744.293177718,0.0,30731855.479953689,0.0,32865935.66124003,5127.23929878721,5046.971411079152,5053.474948875989,6083.273709254729,76719453.72478949,110103935.42457831,35233267.594637479,62010550.96656194 + 07/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18861421.89727205,0.0,15744970.480113958,0.0,24617407.776474719,0.0,25682300.88276822,2564.0759294532288,2523.934842449746,2527.187190106916,3042.178213500826,38366554.231838587,84906101.03662895,35233267.594637479,46507913.22492146 + 07/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,7807295.098592523,0.0,4535476.8875590269,0.0,13187303.142207502,0.0,12684126.515798269,2564.975250953727,2524.8200849043867,2528.0735732868135,3043.2452241319558,38380010.87979678,38214201.64415732,21139960.556782485,23253956.61246073 + 07/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2983618.6442466445,0.0,704826.60497034,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,3688445.249216985,14093307.03785499,0.0 + 07/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1074963.9520390027,0.0,0.0,1284.6029945650506,1264.4922950426829,1266.1217224288908,1524.1324167405094,19221657.94359768,1074963.9520390027,14093307.03785499,0.0 + 07/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,872660.9084282573,0.0,0.0,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,872660.9084282573,14093307.03785499,0.0 + 07/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3310310.4134629697,0.0,0.0,1283.7834998370877,1263.685629657563,1265.3140175730874,1523.1601175278184,19209395.752544,3310310.4134629697,14093307.03785499,0.0 + 07/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12697360.95651784,0.0,20120551.205915844,0.0,19931673.06103141,0.0,20931953.175829144,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,73681538.39929423,14093307.03785499,0.0 + 07/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,34797502.33152367,0.0,40203692.83762151,0.0,35976271.171161849,0.0,41929555.63300665,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,152907021.97331367,14093307.03785499,15502637.741640486 + 07/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,57836773.15304138,0.0,59426227.32873306,0.0,51853799.28678136,0.0,61429641.731107909,20497.795077128478,20176.89827133614,20202.89826417195,24319.851410071988,306710794.88175079,230546441.4996637,56373228.15141996,38756594.35410121 + 07/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,54760010.69817935,0.0,51992473.215570818,0.0,44206555.880526449,0.0,52286419.28752436,17918.677922327137,17638.157676727038,17660.88624318283,21259.827356854494,268119177.11672939,203245459.08180098,56373228.15141996,38756594.35410121 + 07/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31501137.02994249,0.0,29829957.74178876,0.0,21200875.563450993,0.0,25232546.362008536,12778.614579124765,12578.56298404037,12594.771746312541,15161.33840842505,191207835.78444983,107764516.69719078,28186614.07570998,0.0 + 07/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33705974.93513865,0.0,32779526.401231845,0.0,22464583.88865268,0.0,27301666.281255809,10212.107419712329,10052.234972989976,10065.188303762967,12116.275633383377,152804902.7874551,116251751.50627899,28186614.07570998,0.0 + 07/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22812793.64142281,0.0,20527085.838878056,0.0,14846217.703421707,0.0,16517732.621419589,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,74703829.80514215,28186614.07570998,0.0 + 07/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9569984.427636667,0.0,6217975.423992686,0.0,6149234.323238712,0.0,4534456.505359583,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,26471650.680227646,28186614.07570998,0.0 + 07/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5578871.51344668,0.0,1940459.350860973,0.0,3532377.753775056,0.0,1172819.8409689856,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,12224528.459051695,28186614.07570998,0.0 + 07/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4076978.7613868468,0.0,1399722.5341042672,0.0,3486404.7615382128,0.0,1604791.4286925428,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,10567897.48572187,28186614.07570998,0.0 + 07/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1130827.72457195,0.0,545853.8118190242,0.0,2112890.327614145,0.0,685629.3294856923,12818.098246968028,12617.428527697877,12633.687372189974,15208.184273136822,191798634.31197373,4475201.193490811,28186614.07570998,0.0 + 07/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2893478.6679485228,0.0,0.0,0.0,5627639.419394538,0.0,3084913.875149882,12796.576754659349,12596.243958366122,12612.47550437837,15182.649844038442,191476605.82119224,11606031.962492943,35233267.594637479,0.0 + 07/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3743135.249074123,0.0,2170971.5894504536,0.0,5850806.960342566,0.0,4724673.162795069,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,16489586.96166221,14093307.03785499,0.0 + 07/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21994650.82688099,0.0,20845584.673087598,0.0,26400708.164063787,0.0,29528759.5337501,17932.253521520415,17651.52074738242,17674.266533518694,21275.934287084838,268322310.32222293,98769703.19778246,63419881.67034747,0.0 + 07/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,42049812.48578113,0.0,39624826.2526032,0.0,47202688.57007633,0.0,53990330.64679928,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,182867657.95525999,63419881.67034747,69761869.8373822 + 07/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,30411586.359148716,0.0,28291971.36422484,0.0,35368152.958568368,0.0,39923975.385842997,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,133995686.0677849,49326574.63249246,69761869.8373822 + 07/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,23129476.526843609,0.0,20947809.126318844,0.0,28911614.775619084,0.0,31253825.08201429,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,104242725.5107958,35233267.594637479,69761869.8373822 + 07/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22166509.906291736,0.0,20043050.256093556,0.0,27862141.90846099,0.0,30103334.08764352,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,100175036.1584898,35233267.594637479,62010550.96656194 + 07/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19006706.693497756,0.0,16720787.708481679,0.0,24076162.043807225,0.0,25920332.225091697,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,85723988.67087835,35233267.594637479,46507913.22492146 + 07/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,10087229.720388627,0.0,7949929.232877076,0.0,14672857.557794802,0.0,15243705.093884346,2557.8018331879968,2517.7589683319786,2521.0033577449896,3034.734237779107,38272674.22935866,47953721.604944858,21139960.556782485,23253956.61246073 + 07/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2128897.133733551,0.0,190879.16983802399,0.0,6917827.131686514,0.0,5856797.64050382,1278.9009165939984,1258.8794841659893,1260.5016788724948,1517.3671188895535,19136337.11467933,15094401.075761909,14093307.03785499,0.0 + 07/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1283442.9902087525,0.0,0.0,0.0,6150836.230644109,0.0,4935994.0298689859,1279.6576754659348,1259.6243958366125,1261.247550437837,1518.2649844038443,19147660.582119224,12370273.250721846,14093307.03785499,0.0 + 07/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3894321.482094752,0.0,1930793.3913968134,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,5825114.873491566,14093307.03785499,0.0 + 07/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3506403.4237753397,0.0,1360875.4403543126,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,4867278.864129652,14093307.03785499,0.0 + 07/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4290863.29001838,0.0,5166935.873133176,0.0,8679978.61758092,0.0,8793519.160285073,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,26931296.94101755,14093307.03785499,0.0 + 07/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14030713.824375978,0.0,13458103.1212193,0.0,13511943.74785406,0.0,15360719.836273827,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,56361480.52972317,14093307.03785499,15502637.741640486 + 07/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29431651.354945605,0.0,26964387.11836795,0.0,28942822.34880894,0.0,32685822.609274128,20478.489054088157,20157.89448768805,20183.86999220895,24296.945550690853,306421916.7048336,118024683.43139662,56373228.15141996,38756594.35410121 + 07/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,24740909.97895891,0.0,21853308.032261578,0.0,24423235.500622207,0.0,27154433.75268562,17922.117794588125,17641.543697146077,17664.276626834784,21263.908633984163,268170648.30919136,98171887.26452832,56373228.15141996,38756594.35410121 + 07/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22786492.510996745,0.0,17763968.512079278,0.0,13209153.417672717,0.0,15257354.434126076,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,69016968.8748748,28186614.07570998,0.0 + 07/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42345714.41902961,0.0,30905869.21514133,0.0,18918463.677053159,0.0,23390858.982110569,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,115560906.29333467,28186614.07570998,0.0 + 07/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24066767.44696784,0.0,14297571.515633783,0.0,9264678.037401034,0.0,10030512.352817258,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,57659529.35281992,28186614.07570998,0.0 + 07/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37485072.0105599,0.0,21148805.832192273,0.0,12393797.113955088,0.0,15744609.281586674,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,86772284.23829393,28186614.07570998,0.0 + 07/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63343134.515255209,0.0,44844951.30341227,0.0,25930117.097700977,0.0,34366239.77578578,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,168484442.69215424,28186614.07570998,0.0 + 07/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60453021.323640007,0.0,51582767.15086401,0.0,35312095.98946871,0.0,43881465.29419536,7640.152802712067,7520.544785316511,7530.235774878441,9064.749657855988,114320458.87474683,191229349.7581681,28186614.07570998,0.0 + 07/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42420694.79465304,0.0,40908470.39047631,0.0,35164451.39195465,0.0,41057636.95876491,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,159551253.53584893,28186614.07570998,0.0 + 07/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,40821500.12659415,0.0,40874282.31149974,0.0,38960673.6520529,0.0,45826135.78478616,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,166482591.87493295,35233267.594637479,0.0 + 07/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,33542832.01573588,0.0,33970415.056774768,0.0,32091254.59158853,0.0,39005504.324881378,17893.744082588822,17613.614180901233,17636.31112055755,21230.244307788165,267746089.29060877,138610005.98898057,14093307.03785499,0.0 + 07/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,36761787.92321367,0.0,39113052.884953279,0.0,37737066.32668993,0.0,46049316.341728288,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,159661223.47658516,63419881.67034747,0.0 + 07/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,35484560.13214116,0.0,32918129.12981122,0.0,38847353.136260528,0.0,44099765.52152513,10275.211692084886,10114.35133620645,10127.384710253531,12191.14644371525,153749139.05613644,151349807.919738,63419881.67034747,69761869.8373822 + 07/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,24664272.98627119,0.0,21101344.717149736,0.0,29678943.561202166,0.0,32325540.973151335,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,107770102.23777443,49326574.63249246,69761869.8373822 + 07/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14720784.289437423,0.0,10988517.203707036,0.0,21416239.361144958,0.0,21701894.59910961,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77251923.80271465,68827435.45339903,35233267.594637479,69761869.8373822 + 07/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,8205644.488599548,0.0,4378012.258093934,0.0,16046603.978573252,0.0,14684221.501174115,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,43314482.22644085,35233267.594637479,62010550.96656194 + 07/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2791954.1812937546,0.0,0.0,0.0,10902753.253354608,0.0,8473859.93245383,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,38635725.44235732,22168567.36710219,35233267.594637479,46507913.22492146 + 07/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,315923.88523823066,0.0,0.0,2584.4150602688575,2543.9555603781957,2547.2337067738887,3066.309815821216,38670890.915671769,315923.88523823066,21139960.556782485,23253956.61246073 + 07/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.079666480328,1272.8362630778052,1274.4764425184774,1534.1896643935266,19348495.331292496,0.0,14093307.03785499,0.0 + 07/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 + 07/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604458,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 07/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 07/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.490860958758,1272.256675416517,1273.8961079993304,1533.4910691182725,19339684.96857436,0.0,14093307.03785499,0.0 + 07/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.172541198749,5090.216870384998,5096.776134370124,6135.398824341056,77376831.73306175,0.0,14093307.03785499,15502637.741640486 + 07/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,10547423.148658919,0.0,9570793.525222196,0.0,22106184.090731257,0.0,16590331.121722404,20677.660878846906,20353.94824037473,20380.176380166762,24533.255317911156,309402146.9422784,58814731.88633477,56373228.15141996,38756594.35410121 + 07/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,25011876.249882327,0.0,17805153.23822987,0.0,24223126.94389388,0.0,24828646.307523829,18087.591831984333,17804.427207617697,17827.37002933482,21460.237262822433,270646654.79433348,91868802.7395299,56373228.15141996,38756594.35410121 + 07/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21805384.662701005,0.0,6924110.262413395,0.0,8267229.155468819,0.0,6652322.211441316,12913.380835922795,12711.219449947606,12727.599153616064,15321.233427771629,193224358.32212914,43649046.29202454,28186614.07570998,0.0 + 07/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29558466.242697915,0.0,9048049.928925822,0.0,5454475.291841367,0.0,3965583.720727245,10317.884528992628,10156.356121891793,10169.443623392568,12241.77613578396,154387657.47621943,48026575.184192348,28186614.07570998,0.0 + 07/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32386029.223009189,0.0,9175575.863673613,0.0,2420055.8408759145,0.0,1655462.449633487,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,45637123.3771922,28186614.07570998,0.0 + 07/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32795644.725262677,0.0,10445682.284385652,0.0,3384717.342114104,0.0,3904909.935248234,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692029,50530954.28701067,28186614.07570998,0.0 + 07/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31961707.366464274,0.0,13582681.628172536,0.0,7731446.301869481,0.0,8317707.190697045,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,61593542.48720334,28186614.07570998,0.0 + 07/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23379476.004772068,0.0,11579514.41609793,0.0,9566893.039202765,0.0,9160085.605378494,7730.815517000088,7609.788157899241,7619.594146655626,9172.31750755016,115677055.18477842,53685969.06545125,28186614.07570998,0.0 + 07/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22761333.489523226,0.0,14074343.08787281,0.0,13958492.042067543,0.0,13302445.337031963,12878.474340011817,12676.859421741916,12693.194849006974,15279.818202836119,192702048.52894859,64096613.95649553,28186614.07570998,0.0 + 07/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16616512.431385309,0.0,10538152.62571732,0.0,13253503.118605424,0.0,12644669.772251977,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,53052837.947960037,35233267.594637479,0.0 + 07/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6279291.3825654019,0.0,1701199.0960480434,0.0,5841774.093173773,0.0,3987878.1007618338,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,17810142.67254905,14093307.03785499,0.0 + 07/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,9754441.20548722,0.0,4258329.79210702,0.0,12450062.09561681,0.0,11223717.503718822,18056.2979257371,17773.623213310635,17796.526340936995,21423.108237621927,270178400.583384,37686550.59692987,63419881.67034747,0.0 + 07/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,16121327.289356387,0.0,10436251.083197814,0.0,21433991.523232156,0.0,20910945.353951258,10323.818044642241,10162.196747247015,10175.2917749897,12248.81602560601,154476441.33294589,68902515.2497376,63419881.67034747,69761869.8373822 + 07/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,7756448.908059594,0.0,2243314.627422227,0.0,15022486.609849092,0.0,12535528.241867988,10343.18309248034,10181.258631648661,10194.378222575006,12271.791915656593,154766202.70449818,37557778.3871989,49326574.63249246,69761869.8373822 + 07/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,263639.3467952786,0.0,0.0,0.0,8030267.405688811,0.0,3731126.9243355656,5173.235079500854,5092.247119265218,5098.8089994332499,6137.845947304577,77407693.72381404,12025033.676819656,35233267.594637479,69761869.8373822 + 07/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,4462710.620147731,0.0,6426.763738914341,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,77409098.80913013,4469137.383886646,35233267.594637479,62010550.96656194 + 07/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,5208602.461468879,0.0,0.0,91492.52828815337,0.0,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,43915269.46112738,91492.52828815337,35233267.594637479,46507913.22492146 + 07/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,5924078.9864675509,0.0,13751056.213387654,0.0,0.0,0.0,0.0,0.0,2586.38346116836,2545.8931455944118,2549.1737887664214,3068.6452483499945,58375479.517820287,0.0,21139960.556782485,23253956.61246073 + 07/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621177,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 + 07/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1255521.549368935,0.0,0.0,0.0,0.0,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,20608706.194764586,0.0,14093307.03785499,0.0 + 07/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2676044.9123317606,0.0,8249152.92006722,0.0,0.0,0.0,0.0,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,30276848.400652678,0.0,14093307.03785499,0.0 + 07/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3917429.048734284,0.0,6249992.599342155,0.0,0.0,0.0,0.0,0.0,1293.2333272844795,1272.9875182934023,1274.627892641858,1534.371977072059,29518216.223126916,0.0,14093307.03785499,0.0 + 07/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.705474246016,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 + 07/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,15502637.741640486 + 07/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,22545694.95392118,0.0,24810047.571130255,0.0,35152797.98238613,0.0,32798192.04151643,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,115306732.548954,56373228.15141996,38756594.35410121 + 07/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,42713354.92047172,0.0,35373828.78225535,0.0,38296407.556681808,0.0,42529118.654717508,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,158912709.9141264,56373228.15141996,38756594.35410121 + 07/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39994608.4106052,0.0,24558255.816654326,0.0,21866814.421280464,0.0,24069878.34651826,12848.022972937308,12646.884776499655,12663.18157837487,15243.688818202356,192246401.32565109,110489556.99505824,28186614.07570998,0.0 + 07/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45873711.43527686,0.0,26406825.1279969,0.0,18251793.937339903,0.0,20584921.612605119,12820.379647266142,12619.67421224873,12635.935950534582,15210.891067504132,191832771.15919293,111117252.11321877,28186614.07570998,0.0 + 07/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39549642.41490248,0.0,24561209.019613547,0.0,15935588.402399,0.0,18419115.452222494,7685.251509223035,7564.937463163894,7574.685657222298,9118.25755160779,114995275.85238128,98465555.28913753,28186614.07570998,0.0 + 07/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45064140.017893839,0.0,29127872.29998915,0.0,18183948.079768868,0.0,22588816.7658832,7665.5770371461589,7545.570998617651,7555.294237009792,9094.914541509346,114700884.5314186,114964777.16353506,28186614.07570998,0.0 + 07/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50695411.88597605,0.0,36155722.362158458,0.0,23909747.680263889,0.0,29614625.689614938,7657.424116850613,7537.545713810257,7547.258610803801,9085.241412794781,114578891.47533402,140375507.61801333,28186614.07570998,0.0 + 07/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54448257.04049382,0.0,41885632.0441843,0.0,31108653.91367086,0.0,37402814.35422537,7657.424116850613,7537.545713810257,7547.258610803801,9085.241412794781,114578891.47533402,164845357.35257436,28186614.07570998,0.0 + 07/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51699574.309303607,0.0,44903238.57738513,0.0,37014175.79047736,0.0,42825123.6447673,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,176442112.3219334,28186614.07570998,0.0 + 07/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,45844471.09319566,0.0,42514729.27702721,0.0,38045666.59440659,0.0,44588580.414074409,22987.064088580588,22627.197312041288,22656.35476528787,27273.274070920095,343958004.85258749,170993447.37870384,35233267.594637479,0.0 + 07/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,42045828.72475211,0.0,40722441.996260669,0.0,37587832.12080593,0.0,45344755.03853018,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,165700857.8803489,14093307.03785499,0.0 + 07/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,45503609.896920848,0.0,47676768.38246579,0.0,44326766.85791086,0.0,54285138.95179775,17967.045736935524,17685.768284174726,17708.55820175773,21317.213922574356,268842910.1235924,191792284.08909524,63419881.67034747,0.0 + 07/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,40578952.194075088,0.0,37010437.37887471,0.0,42638000.03455402,0.0,48425953.45072894,15422.330449750163,15180.890989526419,15200.453117047758,18298.006372083208,230766051.3422672,168653343.05823276,63419881.67034747,69761869.8373822 + 07/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,33221058.323289474,0.0,28768406.376815995,0.0,36502013.02693829,0.0,40532958.92851253,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,139024436.6555563,49326574.63249246,69761869.8373822 + 07/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29508226.492498645,0.0,25377412.956905176,0.0,33080926.751192519,0.0,36425152.56955395,10275.211692084886,10114.35133620645,10127.384710253531,12191.14644371525,153749139.05613644,124391718.77015029,35233267.594637479,69761869.8373822 + 07/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22023981.09127144,0.0,17997078.352545375,0.0,26875983.489373447,0.0,28618576.889412695,7730.815517000088,7609.788157899241,7619.594146655626,9172.31750755016,115677055.18477842,95515619.82260296,35233267.594637479,62010550.96656194 + 07/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12997707.88337579,0.0,9088656.053493446,0.0,19114938.90244575,0.0,18906484.061722194,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,60107786.90103717,35233267.594637479,46507913.22492146 + 07/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,1063599.1441217352,0.0,0.0,0.0,7572082.337507843,0.0,4920758.916309175,2579.471132248157,2539.0890304729484,2542.360905848142,3060.44403394599,38596914.369054857,13556440.397938755,21139960.556782485,23253956.61246073 + 07/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 07/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 07/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 + 07/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.490860958758,1272.256675416517,1273.8961079993304,1533.4910691182725,19339684.96857436,0.0,14093307.03785499,0.0 + 07/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 + 07/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2571002.13320673,0.0,4446515.799683142,0.0,11522961.65807493,0.0,6840705.314501453,1289.3339308916439,1269.1491676785279,1270.7845959204443,1529.7454921010706,19292447.47173007,25381184.90546626,14093307.03785499,15502637.741640486 + 07/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,40411021.27796487,0.0,38980661.19988254,0.0,42263638.00893226,0.0,46751299.40426237,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,168406619.89104206,56373228.15141996,38756594.35410121 + 07/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,58206903.67801627,0.0,51065577.60468851,0.0,45906116.280603978,0.0,54309207.35891868,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,209487804.92222745,56373228.15141996,38756594.35410121 + 07/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63018999.32621388,0.0,48775132.74695072,0.0,35041467.694701198,0.0,42738670.03699719,7670.3131714734249,7550.2329878784989,7559.9622337196419,9100.533784099285,114771751.83781508,189574269.804863,28186614.07570998,0.0 + 07/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73949946.61885475,0.0,54095305.630439799,0.0,34792320.12283043,0.0,43236872.94961828,7636.54518473936,7516.993645276167,7526.680058831697,9060.469356842616,114266477.68448343,206074445.32174326,28186614.07570998,0.0 + 07/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68734488.62118276,0.0,48246098.66249446,0.0,29727258.06247344,0.0,38114331.50903327,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,184822176.8551839,28186614.07570998,0.0 + 07/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69411767.63685382,0.0,49550137.68351869,0.0,30998472.344079954,0.0,41247139.817358579,5070.578323020321,4991.197473457986,4997.629140843472,6016.047624389726,75871629.22216141,191207517.48181106,28186614.07570998,0.0 + 07/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73827119.07129097,0.0,56406895.13122958,0.0,37437054.35856174,0.0,48492017.818403739,7609.877461428549,7490.743410148646,7500.395997596909,9028.82912110392,113867445.56500089,216163086.37948603,28186614.07570998,0.0 + 07/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79373104.86569204,0.0,65971718.241434458,0.0,47331367.91316001,0.0,59208018.74778076,10133.012700962638,9974.378496817417,9987.231501574213,12022.432768817896,151621399.6854198,251884209.76806728,28186614.07570998,0.0 + 07/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71330156.56617512,0.0,65175349.46683657,0.0,50315066.73604833,0.0,60961894.86405346,12679.797809080834,12481.293208965728,12497.376629204595,15044.096082835935,189729229.42831353,247782467.6331135,28186614.07570998,0.0 + 07/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,68344026.21573518,0.0,65795945.14235887,0.0,55836026.49578704,0.0,67782685.96463879,15235.495868377595,14996.981338379195,15016.306479543762,18076.334273199078,227970424.65419866,257758683.8185199,35233267.594637479,0.0 + 07/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,60775834.29451397,0.0,59534269.30029137,0.0,50714561.11454763,0.0,62792723.95772757,17843.501870012784,17564.158519535747,17586.79173052456,21170.63384042985,266994309.45781059,233817388.66708056,14093307.03785499,0.0 + 07/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,59769433.53915556,0.0,60348351.78996083,0.0,53362964.03459372,0.0,65853831.943301837,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,239334581.30701197,63419881.67034747,0.0 + 07/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,56138713.94124922,0.0,52376182.541823539,0.0,53455518.54867374,0.0,62776948.69162965,7677.94605279561,7557.746375019672,7567.485302627022,9109.589906423065,114885963.49271533,224747363.72337616,63419881.67034747,69761869.8373822 + 07/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,44891952.07025111,0.0,40595798.68450765,0.0,44236373.474961038,0.0,51013246.07014793,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,180737370.2998677,49326574.63249246,69761869.8373822 + 07/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35657013.610759798,0.0,31228619.28271815,0.0,36751573.472228918,0.0,41418662.65241334,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,145055869.01812024,35233267.594637479,69761869.8373822 + 07/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31986318.031691478,0.0,27529150.701123455,0.0,34021027.17930298,0.0,37864411.06465236,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,131400906.97677028,35233267.594637479,62010550.96656194 + 07/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26505054.08995843,0.0,22345986.792223127,0.0,28996753.626867664,0.0,31841435.853184295,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,109689230.36223352,35233267.594637479,46507913.22492146 + 07/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15882800.761365898,0.0,12099309.301506173,0.0,18386418.164092468,0.0,19152341.767794759,2571.9023424676099,2531.6387315083718,2534.9010064129136,3051.4639537898385,38483661.72304344,65520869.99475929,21139960.556782485,23253956.61246073 + 07/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,7917705.269646099,0.0,4536242.0401291069,0.0,10359557.4508337,0.0,9666052.16677704,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,32479556.92738595,14093307.03785499,0.0 + 07/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3470119.087474268,0.0,956065.4621715656,0.0,7092729.852881748,0.0,5456948.622021369,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,16975863.024548949,14093307.03785499,0.0 + 07/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2718933.717855373,0.0,516440.33550371279,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,3235374.0533590859,14093307.03785499,0.0 + 07/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1567840.4586182149,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,1567840.4586182149,14093307.03785499,0.0 + 07/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4542460.628436795,0.0,1325619.7668581652,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,5868080.395294961,14093307.03785499,0.0 + 07/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6842363.639496639,0.0,4196888.822036446,0.0,10961758.962497594,0.0,9661495.26717076,5147.387576862043,5066.804264102064,5073.333358554319,6107.178872083459,77020934.65776679,31662506.69120144,14093307.03785499,15502637.741640486 + 07/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,34958214.45249848,0.0,32415908.50211249,0.0,37217331.54989547,0.0,41382329.16212997,20526.855138155002,20205.503391686147,20231.54024513919,24354.330063189238,307145623.81741049,145973783.6666364,56373228.15141996,38756594.35410121 + 07/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,69475777.72171559,0.0,62443421.91587257,0.0,53970508.765074897,0.0,65833610.32628158,17886.3464200077,17606.332330107853,17629.019886356178,21221.4672635218,267635397.2399767,251723318.7289446,56373228.15141996,38756594.35410121 + 07/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55916304.11297316,0.0,45246725.45002553,0.0,31248496.761603785,0.0,38935573.58882187,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,171347099.91342435,28186614.07570998,0.0 + 07/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69720276.82386154,0.0,52129121.03636366,0.0,32225599.234854238,0.0,40830022.13945948,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,194905019.2345389,28186614.07570998,0.0 + 07/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74556276.40854861,0.0,56352189.61332972,0.0,31698717.357724534,0.0,41941124.46033196,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,204548307.83993484,28186614.07570998,0.0 + 07/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72758762.1478518,0.0,59134673.49735102,0.0,35032572.3978309,0.0,46643927.04324536,5082.34626605964,5002.781187153718,5009.2277813366249,6030.009839595878,76047714.2669251,213569935.08627907,28186614.07570998,0.0 + 07/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76410347.1106002,0.0,66284942.68633025,0.0,42027266.5249974,0.0,54591750.39416526,5069.229251981554,4989.869522378,4996.299478562977,6014.447003099436,75851442.92167908,239314306.71609313,28186614.07570998,0.0 + 07/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78749813.5681485,0.0,70865662.80355197,0.0,48450467.12067306,0.0,61462284.0306766,7599.759525721978,7480.78387261306,7490.42362618066,9016.824576613424,113716049.76406484,259528227.52305014,28186614.07570998,0.0 + 07/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66687893.446119409,0.0,63075794.46926649,0.0,45824340.06272457,0.0,56922444.463870387,12676.445807550801,12477.993683644963,12494.072852108678,15040.119060974315,189679073.05540354,232510472.44198085,28186614.07570998,0.0 + 07/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,51174422.903379369,0.0,48581533.52792835,0.0,37455713.29200436,0.0,46345619.2885591,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,183557289.0118712,35233267.594637479,0.0 + 07/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,40523420.574674118,0.0,38129030.963980037,0.0,30173102.44424434,0.0,37133836.622128549,17774.745179773858,17496.478228109056,17519.02422613439,21089.05665206559,265965495.4298984,145959390.60502703,14093307.03785499,0.0 + 07/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,49683084.38707982,0.0,46707353.4598579,0.0,43961451.94176597,0.0,52586521.241486068,17827.023206328155,17547.93783240519,17570.550141383028,21151.082534997302,266747737.3744092,192938411.03018976,63419881.67034747,0.0 + 07/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,57364030.70184001,0.0,52889250.151509258,0.0,56967146.76371926,0.0,65795670.68418555,10196.286782864448,10036.662011163287,10049.595274585465,12097.505051674201,152568176.83303464,233016098.30125407,63419881.67034747,69761869.8373822 + 07/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,38565183.203492168,0.0,33518089.35541373,0.0,42053537.06627001,0.0,46371768.284899149,10279.994942274443,10119.059703721976,10132.099144981172,12196.821587477274,153820711.36243753,160508577.91007508,49326574.63249246,69761869.8373822 + 07/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24395937.957424527,0.0,19685923.456838259,0.0,30601459.488728897,0.0,31844079.124367197,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,106527400.02735888,35233267.594637479,69761869.8373822 + 07/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16273682.408172617,0.0,12065845.254151117,0.0,23742828.26685936,0.0,23399673.475047128,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,75482029.40423022,35233267.594637479,62010550.96656194 + 07/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9223584.167684345,0.0,3750103.2639209146,0.0,17505014.127944087,0.0,16420561.473700609,2571.9023424676099,2531.6387315083718,2534.9010064129136,3051.4639537898385,38483661.72304344,46899263.03324996,35233267.594637479,46507913.22492146 + 07/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,7234984.9356831409,0.0,2692874.615592477,2570.773609017731,2530.5276685912156,2533.7885117777848,3050.1247546379615,38466772.358488898,9927859.551275619,21139960.556782485,23253956.61246073 + 07/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.9993677843054,1264.882462965247,1266.5123931226465,1524.6026984346593,19227588.92030469,0.0,14093307.03785499,0.0 + 07/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.1977000641576,1264.093345502809,1265.7222588018147,1523.651550286242,19215593.476758087,0.0,14093307.03785499,0.0 + 07/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,0.0,14093307.03785499,0.0 + 07/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,0.0,14093307.03785499,0.0 + 07/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,0.0,14093307.03785499,0.0 + 07/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,0.0,14093307.03785499,15502637.741640486 + 07/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,11015506.471779274,0.0,2614196.7790672199,0.0,23483493.39006816,0.0,16502675.298516054,20547.16320102652,20225.493528044943,20251.556140829034,24378.42480457987,307449495.62812939,53615871.9394307,56373228.15141996,38756594.35410121 + 07/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,19517214.920466626,0.0,17287626.118244824,0.0,22426613.121381128,0.0,23239411.279088469,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,82470865.43918105,56373228.15141996,38756594.35410121 + 07/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,0.0,28186614.07570998,0.0 + 07/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9531131.676961668,0.0,1326549.0350049677,0.0,4358331.29125557,0.0,1131858.6032130456,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,16347870.60643525,28186614.07570998,0.0 + 07/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32814753.767014427,0.0,25354587.594710228,0.0,12856918.611235349,0.0,16361877.9429993,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,87388137.9159593,28186614.07570998,0.0 + 07/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46967215.19161672,0.0,35301789.658622417,0.0,19137132.1295645,0.0,25861939.67568891,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,127268076.65549258,28186614.07570998,0.0 + 07/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54851740.73026997,0.0,42164828.04448822,0.0,27025874.710593899,0.0,35626108.48476161,5084.869465370133,5005.264885308302,5011.714679989787,6033.003519261338,76085469.17974642,159668551.9701137,28186614.07570998,0.0 + 07/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49726820.877592477,0.0,40459155.07346567,0.0,30520790.357333319,0.0,37548491.65326701,7632.886766895489,7513.3925006461199,7523.074273759234,9056.128783721259,114211736.37007956,158255257.96165846,28186614.07570998,0.0 + 07/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50782366.78482287,0.0,46077521.949143219,0.0,35263400.93139881,0.0,41957313.17971284,12715.296149321439,12516.235816067658,12532.364263422294,15086.213508476461,190260395.0542363,174080602.84507773,28186614.07570998,0.0 + 07/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,47783034.51005244,0.0,46456851.810847047,0.0,40972061.94677108,0.0,48537053.527809698,12778.614579124765,12578.56298404037,12594.771746312541,15161.33840842505,191207835.78444983,183749001.79548026,35233267.594637479,0.0 + 07/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,25814647.58380989,0.0,23858425.9300706,0.0,22175916.321158016,0.0,26029882.177789689,17928.90562675001,17648.225264529196,17670.96680409945,21271.962137736755,268272215.39921553,97878872.0128282,14093307.03785499,0.0 + 07/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,34268028.747530307,0.0,31586509.535150075,0.0,33222090.19025863,0.0,38398225.32818243,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,137474853.80112145,63419881.67034747,0.0 + 07/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,43921050.9947037,0.0,39490961.592191267,0.0,46190908.97510167,0.0,52326592.01684731,10275.211692084886,10114.35133620645,10127.384710253531,12191.14644371525,153749139.05613644,181929513.57884396,63419881.67034747,69761869.8373822 + 07/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,33332575.104723187,0.0,28586179.863962935,0.0,37647446.69150447,0.0,41322922.8608836,10294.775153724086,10133.608528204128,10146.666717108637,12214.357744166919,154041869.31553359,140889124.52107419,49326574.63249246,69761869.8373822 + 07/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25085458.536507876,0.0,20447838.880444819,0.0,30602106.885685669,0.0,32485618.836122969,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,108621023.13876133,35233267.594637479,69761869.8373822 + 07/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18925588.105086037,0.0,14551065.300254472,0.0,25359632.67855564,0.0,25962878.717112084,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,84799164.80100823,35233267.594637479,62010550.96656194 + 07/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11504668.341636634,0.0,7570778.590500393,0.0,18312063.272877598,0.0,17450958.826121838,2579.207931192116,2538.8299498785397,2542.1014914019435,3060.131755939999,38592976.062285359,54838469.03113647,35233267.594637479,46507913.22492146 + 07/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,252232.71179084047,0.0,0.0,0.0,6173101.082764955,0.0,3348133.3987494457,2579.9838544362098,2539.593725899498,2542.8662516262627,3061.052359250305,38604586.28836419,9773467.193305243,21139960.556782485,23253956.61246073 + 07/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,0.0,14093307.03785499,0.0 + 07/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,0.0,14093307.03785499,0.0 + 07/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.9708451417383,1271.7448005441216,1273.3835735239157,1532.8740902016025,19331903.91388096,0.0,14093307.03785499,0.0 + 07/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.052042192369,1271.8247264397774,1273.463602412246,1532.970427402694,19333118.87440951,0.0,14093307.03785499,0.0 + 07/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,1106399.973498124,0.0,5589845.131356961,0.0,943888.0621363589,1290.8172457546473,1270.609260970639,1272.2465706917906,1531.5053885644148,19314642.47753337,7640133.166991443,14093307.03785499,0.0 + 07/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,21701642.79699077,0.0,32398120.901068365,0.0,34594122.08977181,0.0,37854544.613937038,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550074,77071176.45627159,126548430.40176797,14093307.03785499,15502637.741640486 + 07/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,57440827.980234179,0.0,60716673.64349528,0.0,60839629.52762043,0.0,70208397.34343578,20578.15694939499,20256.00206350083,20282.103989646796,24415.197703914957,307913258.5432473,249205528.49478568,56373228.15141996,38756594.35410121 + 07/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,69331049.40081208,0.0,61580822.31571548,0.0,55395908.25446096,0.0,65895537.679877068,17984.441923910705,17702.892130597556,17725.704114004468,21337.853834367128,269103211.21036747,252203317.65086559,56373228.15141996,38756594.35410121 + 07/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57796393.37999576,0.0,43374427.916088368,0.0,33429085.502414545,0.0,40053983.66224584,12833.60409781109,12632.691631553376,12648.970144112664,15226.5813732674,192030650.0882803,174653890.4607445,28186614.07570998,0.0 + 07/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61788640.51193302,0.0,44294599.44286795,0.0,30169221.20393565,0.0,36237376.66751064,10254.47859757442,10093.942822158304,10106.949897751978,12166.547418509457,153438907.44957898,172489837.82624728,28186614.07570998,0.0 + 07/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68415601.13310185,0.0,47246134.20689367,0.0,28317314.44742255,0.0,36081744.83469211,5113.542114315616,5033.488658585667,5039.97482247976,6067.0225227328569,76514501.22521004,180060794.6221102,28186614.07570998,0.0 + 07/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74374888.85469452,0.0,51661516.8378552,0.0,30860707.798006,0.0,41499248.427362199,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,198396361.9179179,28186614.07570998,0.0 + 07/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75319237.4242438,0.0,56206985.813114289,0.0,38627740.93197815,0.0,49479071.14437931,5089.814878047452,5010.132876627592,5016.588944212758,6038.8710626249699,76159467.94144598,219633035.31371556,28186614.07570998,0.0 + 07/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76541546.91741356,0.0,62454284.62319437,0.0,48545714.81080179,0.0,59492408.47952779,7627.304198055199,7507.8973279624519,7517.572019984682,9049.505278892007,114128203.76961963,247033954.83093746,28186614.07570998,0.0 + 07/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,80220493.31360393,0.0,73503671.72030697,0.0,60304585.74655846,0.0,71752440.97750713,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,285781191.7579765,28186614.07570998,0.0 + 07/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,78354388.07522193,0.0,75902345.61666626,0.0,66113220.828901018,0.0,79881385.29991463,12709.030158647052,12510.067920646197,12526.18842003804,15078.779149728869,190166636.33661659,300251339.8207038,35233267.594637479,0.0 + 07/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,70655103.09350425,0.0,69505587.09596709,0.0,60824421.74510952,0.0,75078704.841323,17801.414609050014,17522.730142494718,17545.30996879121,21120.698911867043,266364553.07593075,276063816.7759039,14093307.03785499,0.0 + 07/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,75922651.85144736,0.0,78497580.6174469,0.0,69546274.94973788,0.0,86296353.43135613,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,310262860.8499882,63419881.67034747,0.0 + 07/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,69200194.87238992,0.0,65287356.67041161,0.0,66132025.529013369,0.0,77933336.53168126,10209.898822467485,10050.060951747013,10063.011481071733,12113.655217059708,152771855.30044539,278552913.6034962,63419881.67034747,69761869.8373822 + 07/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,59632872.26934135,0.0,55390659.03301162,0.0,57893854.55720024,0.0,67758047.54710379,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,240675433.40665699,49326574.63249246,69761869.8373822 + 07/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,51594283.20553648,0.0,47757831.333047229,0.0,50960837.23446937,0.0,59224881.05395684,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,209537832.82700993,35233267.594637479,69761869.8373822 + 07/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44369669.23249292,0.0,40676515.185136597,0.0,45046072.72422345,0.0,51760159.962031308,5126.3179245688229,5046.064461146034,5052.566830245312,6082.180533915627,76705667.09955287,181852417.10388429,35233267.594637479,62010550.96656194 + 07/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33802084.221657808,0.0,29817653.43066532,0.0,36128040.662077117,0.0,40362782.28709302,2568.395400128315,2528.186691005618,2531.4445176036294,3047.303100572484,38431186.95351617,140110560.60149325,35233267.594637479,46507913.22492146 + 08/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,12901502.602852449,0.0,8497666.92324944,0.0,18421756.731004199,0.0,17547176.37340507,2572.990697464094,2532.7100481043537,2535.973703509676,3052.7552454481026,38499946.90029441,57368102.63051116,21139960.556782485,23253956.61246073 + 08/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2820657.591354468,0.0,347102.988268756,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,3167760.579623224,14093307.03785499,0.0 + 08/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 + 08/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 + 08/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 + 08/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.8648870783805,1269.6718116471116,1271.3079133691263,1530.3754513487898,19300392.228396268,0.0,14093307.03785499,0.0 + 08/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,0.0,14093307.03785499,15502637.741640486 + 08/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,15724158.1530985,0.0,13604807.639049888,0.0,20713576.497817484,0.0,17623710.189430406,20583.92557971275,20261.680384834828,20287.789628077408,24422.04196358482,307999575.20235529,67666252.47939627,56373228.15141996,38756594.35410121 + 08/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,41284080.58823095,0.0,35012980.97370995,0.0,32998721.535063749,0.0,37397669.80397675,17970.02291043116,17688.698849463897,17711.49254337939,21320.74622528123,268887457.90280047,146693452.90098144,56373228.15141996,38756594.35410121 + 08/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20968987.693885618,0.0,14984311.504151062,0.0,11354819.582520087,0.0,11901173.518729438,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,59209292.299286197,28186614.07570998,0.0 + 08/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32930977.91338156,0.0,22964706.823412453,0.0,15691938.251912434,0.0,17867739.266374716,10196.286782864448,10036.662011163287,10049.595274585465,12097.505051674201,152568176.83303464,89455362.25508116,28186614.07570998,0.0 + 08/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58059953.80685284,0.0,36356282.4364799,0.0,18939103.445434557,0.0,24589049.74691343,5091.030123159573,5011.329096850779,5017.786705887798,6040.3129045617429,76177651.78965561,137944389.43568073,28186614.07570998,0.0 + 08/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57653124.94413121,0.0,40969812.49254511,0.0,22624347.965506115,0.0,30582767.804919516,5077.199365701253,4997.714862480594,5004.154928187051,6023.903238789915,75970700.62257174,151830053.20710195,28186614.07570998,0.0 + 08/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58469115.93202084,0.0,48227721.55199673,0.0,30527666.438296617,0.0,39814481.017393257,5073.251640952366,4993.828940099099,5000.263998397941,6019.219414069279,75911630.37666726,177038984.93970747,28186614.07570998,0.0 + 08/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55082399.950355637,0.0,48221586.1733908,0.0,37888694.58252921,0.0,47227505.80702189,7601.807885190921,7482.800164632396,7492.442516398062,9019.254876932637,113746699.59535447,188420186.51329757,28186614.07570998,0.0 + 08/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54792849.87588815,0.0,51482536.557274978,0.0,41742253.26847969,0.0,50092233.71371515,12702.680213295367,12503.817384873573,12519.929829812094,15071.245181961409,190071621.39579279,198109873.41535796,28186614.07570998,0.0 + 08/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,52075347.55177247,0.0,51028159.63577667,0.0,43927368.06657864,0.0,53243275.96126325,12679.797809080834,12481.293208965728,12497.376629204595,15044.096082835935,189729229.42831353,200274151.21539105,35233267.594637479,0.0 + 08/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,47689175.14176892,0.0,48150866.543671447,0.0,41964828.04066633,0.0,52098822.0928476,17783.75229861351,17505.344338823,17527.90176173693,21099.743254745972,266100269.9541099,189903691.8189543,14093307.03785499,0.0 + 08/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,59334415.31748104,0.0,63879357.296421308,0.0,56884653.59595693,0.0,71127421.58602628,17855.54734887386,17576.01542417817,17598.663913998826,21184.92534129432,267174547.30204267,251225847.79588557,63419881.67034747,0.0 + 08/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53441750.33510635,0.0,50934494.260288167,0.0,54218598.292281109,0.0,63274545.748179439,10250.775490184089,10090.29768760498,10103.300066070733,12162.153822947126,153383497.44050495,221869388.63585506,63419881.67034747,69761869.8373822 + 08/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,43005069.53658429,0.0,39606127.90839693,0.0,45573426.82640298,0.0,52157126.6487778,10263.427569077501,10102.751695843073,10115.770122569595,12177.165031594619,153572811.90870524,180341750.92016203,49326574.63249246,69761869.8373822 + 08/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32783907.147981574,0.0,29327006.499699087,0.0,37247964.786712709,0.0,41434527.66780477,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,140793406.10219813,35233267.594637479,69761869.8373822 + 08/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24419543.37939643,0.0,20917333.96453594,0.0,30409722.343991206,0.0,32737211.52253171,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,108483811.2104553,35233267.594637479,62010550.96656194 + 08/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,15983249.116705265,0.0,12629460.818482964,0.0,22767036.310904746,0.0,23310714.25103327,2576.0125693554034,2535.6846120274747,2538.9521004620198,3056.3405810951996,38545163.50658435,74690460.49712624,35233267.594637479,46507913.22492146 + 08/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,4865565.487816459,0.0,2065195.4307285818,0.0,11121758.962157332,0.0,9775241.225980305,2574.378864590077,2534.0764832150168,2537.3418994114488,3054.4022527534846,38520718.199892099,27827761.106682674,21139960.556782485,23253956.61246073 + 08/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,460287.8482968682,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,460287.8482968682,14093307.03785499,0.0 + 08/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,0.0,14093307.03785499,0.0 + 08/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 + 08/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 + 08/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,782526.3036204412,0.0,9283281.22446024,0.0,14630479.792314027,0.0,9955108.068420615,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713944,19277233.947895606,34651395.38881532,14093307.03785499,0.0 + 08/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,36075919.87628914,0.0,41632312.34619742,0.0,41627884.93616299,0.0,46826147.36268858,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,166162264.5213381,14093307.03785499,15502637.741640486 + 08/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,62579727.72282426,0.0,63733047.83620484,0.0,62337266.320550348,0.0,73248740.98211459,20519.802007629816,20198.56067923509,20224.588586294507,24345.961793055645,307040087.03837427,261898782.86169405,56373228.15141996,38756594.35410121 + 08/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,78399540.86139775,0.0,71383226.68377033,0.0,65911312.393828008,0.0,78055963.22534785,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,293750043.1643439,56373228.15141996,38756594.35410121 + 08/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75576301.63517796,0.0,58239562.251364547,0.0,45841254.00468116,0.0,56406394.446295227,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,236063512.33751888,28186614.07570998,0.0 + 08/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83276894.50056705,0.0,62286972.83399692,0.0,42615026.01605849,0.0,53450037.96245231,10141.156646040641,9982.394946915972,9995.258281686944,12032.095248779451,151743258.44432283,241628931.31307478,28186614.07570998,0.0 + 08/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86577526.10092259,0.0,64459929.23929562,0.0,40419476.86527631,0.0,52823330.52695963,5049.481255246245,4970.430684215568,4976.835591473493,5991.016758800372,75555951.44304845,244280262.73245413,28186614.07570998,0.0 + 08/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83429475.19517219,0.0,64976149.387612,0.0,42913501.06783599,0.0,56734624.39238414,5045.042517959356,4966.06143618895,4972.460713224833,5985.750366446497,75489534.12175069,248053750.0430043,28186614.07570998,0.0 + 08/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88537106.89392814,0.0,72269069.81100741,0.0,50015124.81638342,0.0,64702405.1849418,5032.853830431417,4954.063564838059,4960.447381392109,5971.288953965403,75307153.43025717,275523706.7062608,28186614.07570998,0.0 + 08/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88853173.87395698,0.0,78044502.29457218,0.0,57033927.080258388,0.0,71744485.46234122,7549.280745647126,7431.095347257086,7440.671072088163,8956.933430948106,112960730.14538573,295676088.7111287,28186614.07570998,0.0 + 08/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75736879.67596285,0.0,70969092.82292623,0.0,55527457.74409518,0.0,67897873.63123621,12620.024313238173,12422.45547835122,12438.463080168747,14973.177111713227,188834831.94049693,270131303.8742205,28186614.07570998,0.0 + 08/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,65064238.58003007,0.0,63015177.67711036,0.0,51734859.62838451,0.0,63584212.97059326,12641.794013433302,12443.88436982866,12459.919584960058,14999.006029994203,189160574.3935784,243398488.8561182,35233267.594637479,0.0 + 08/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,50859893.601163599,0.0,49275193.62465796,0.0,40828777.449582498,0.0,50727412.66695144,17703.491813928376,17426.34034699819,17448.79596520488,21004.517253398106,264899323.36630637,191691277.3423555,14093307.03785499,0.0 + 08/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,69514626.25436984,0.0,72568021.47429319,0.0,63185844.675082769,0.0,79028390.06009366,17765.621211285878,17487.497097049833,17510.031521971105,21078.231411737885,265828972.47136093,284296882.4638394,63419881.67034747,0.0 + 08/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,68423046.58513037,0.0,65941672.11433259,0.0,65047322.13435785,0.0,77591593.65130997,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,277003634.4851308,63419881.67034747,69761869.8373822 + 08/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,58107506.2171272,0.0,55328310.15059757,0.0,56336106.40745377,0.0,66708137.62914079,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,236480060.40431933,49326574.63249246,69761869.8373822 + 08/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,49359856.4345895,0.0,46660988.268232319,0.0,48844102.12611384,0.0,57249638.55624007,5111.445831649906,5031.425193616149,5037.908698525017,6064.53536337002,76483134.31377994,202114585.38517574,35233267.594637479,69761869.8373822 + 08/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,41530657.85628331,0.0,38633295.54873541,0.0,42409413.17984218,0.0,48973188.63480356,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,171546555.21966446,35233267.594637479,62010550.96656194 + 08/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33796458.94127147,0.0,31130108.339370803,0.0,35507577.13907263,0.0,40573325.870984349,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,141007470.29069925,35233267.594637479,46507913.22492146 + 08/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,22008042.4798673,0.0,19844546.646359,0.0,23774509.74845956,0.0,26672954.021884867,2558.3106968254389,2518.259865614248,2521.5049004845329,3035.337985060413,38280288.41274467,92300052.89657074,21139960.556782485,23253956.61246073 + 08/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11510800.473813596,0.0,9839651.225552908,0.0,13416347.631897703,0.0,14488737.809607929,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,49255537.140872139,14093307.03785499,0.0 + 08/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8537640.49405993,0.0,6798790.08711737,0.0,11290778.825945523,0.0,11731678.904661809,1281.5794811422057,1261.5161152865085,1263.141707561328,1520.5451334789069,19176416.774888219,38358888.31178463,14093307.03785499,0.0 + 08/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6329883.496835426,0.0,4367883.147186015,0.0,9663096.550261047,0.0,9566936.097646267,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,29927799.291928755,14093307.03785499,0.0 + 08/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6812994.036961008,0.0,5202624.971972358,0.0,10023328.474582194,0.0,10102066.781304557,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,32141014.264820119,14093307.03785499,0.0 + 08/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14660670.01053477,0.0,15927873.345091632,0.0,16106251.229913068,0.0,17641753.904952185,1279.6576754659348,1259.6243958366125,1261.247550437837,1518.2649844038443,19147660.582119224,64336548.49049166,14093307.03785499,0.0 + 08/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,26531190.53315932,0.0,26689702.847660137,0.0,25050747.85611225,0.0,29235231.273768017,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,107506872.51069972,14093307.03785499,15502637.741640486 + 08/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,48103244.52831899,0.0,46941794.380426589,0.0,43737190.709041807,0.0,52388285.36681786,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,191170514.98460523,56373228.15141996,38756594.35410121 + 08/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,45852101.52095264,0.0,44995884.23381542,0.0,40393035.89563752,0.0,48697177.566730957,12736.562530668069,12537.169268247068,12553.324690491469,15111.445258156555,190578606.29122735,179938199.21713654,56373228.15141996,38756594.35410121 + 08/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23640124.403290914,0.0,22338834.83281246,0.0,18086246.958218926,0.0,21176535.540016857,12783.85528578904,12583.721646464164,12599.937056199402,15167.55630683214,191286253.06302513,85241741.73433915,28186614.07570998,0.0 + 08/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26701230.261515365,0.0,24405083.438067479,0.0,18293453.71643538,0.0,21335080.852062234,12791.553484127195,12591.299328071238,12607.524502422664,15176.689925302064,191401442.0637234,90734848.26808048,28186614.07570998,0.0 + 08/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20864637.97758982,0.0,18813583.82369147,0.0,15424795.325820653,0.0,17461653.580226389,7677.94605279561,7557.746375019672,7567.485302627022,9109.589906423065,114885963.49271533,72564670.70732832,28186614.07570998,0.0 + 08/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22447886.50967211,0.0,19845156.812296913,0.0,15789667.956638996,0.0,18258730.655251497,7674.932090476317,7554.779596842741,7564.514701453599,9106.013955181239,114840865.23823402,76341441.93385951,28186614.07570998,0.0 + 08/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34521219.40257739,0.0,29711393.985558638,0.0,20809975.494471589,0.0,25340782.13432325,7670.3131714734249,7550.2329878784989,7559.9622337196419,9100.533784099285,114771751.83781508,110383371.01693088,28186614.07570998,0.0 + 08/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26438183.8424593,0.0,23990021.965071195,0.0,18861993.716091105,0.0,21815016.8487441,7682.368731557086,7562.099815920086,7571.844353380384,9114.83724594953,114952140.5285055,91105216.3723657,28186614.07570998,0.0 + 08/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16690625.455839588,0.0,13883446.629432198,0.0,13683217.116012227,0.0,14270503.841145263,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,58527793.04242927,28186614.07570998,0.0 + 08/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11492577.574997366,0.0,8583627.241431544,0.0,12027305.407509994,0.0,11605015.605307084,23068.430660559705,22707.29007515715,22736.550736103905,27369.81240262032,345175501.94798788,43708525.829245988,35233267.594637479,0.0 + 08/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2252853.807033352,0.0,645380.282642952,0.0,5201807.062920736,0.0,2912554.031583135,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,11012595.184180176,14093307.03785499,0.0 + 08/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,17672319.542117765,0.0,12552702.999528105,0.0,23402075.178524876,0.0,24870904.708393914,17945.337545755236,17664.399938777027,17687.162321065964,21291.45798239155,268518088.0367632,78498002.42856466,63419881.67034747,0.0 + 08/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,37873654.560045409,0.0,35240303.24498229,0.0,44436323.15704687,0.0,50263430.9414413,15397.74643354186,15156.691840678002,15176.222785126094,18268.83837528165,230398197.9646594,167813711.90351589,63419881.67034747,69761869.8373822 + 08/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,28629329.2533238,0.0,25578061.9623433,0.0,34975139.22297351,0.0,38531124.47069201,12841.977000641575,12640.933455028086,12657.222588018147,15236.515502862421,192155934.7675808,127713654.90933264,49326574.63249246,69761869.8373822 + 08/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,22972574.651141585,0.0,19576667.604017848,0.0,29195093.71236937,0.0,31575867.408674677,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,103320203.37620348,35233267.594637479,69761869.8373822 + 08/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20488450.95231203,0.0,16976163.73964085,0.0,26790686.058351749,0.0,28746219.0945514,7703.950273084917,7583.343494389268,7593.115406497569,9140.442921154216,115275067.5424535,93001519.84485603,35233267.594637479,62010550.96656194 + 08/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18062466.34640402,0.0,14659457.142632142,0.0,24157806.50521369,0.0,25928363.294088995,5126.3179245688229,5046.064461146034,5052.566830245312,6082.180533915627,76705667.09955287,82808093.28833884,35233267.594637479,46507913.22492146 + 08/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,6889101.075015997,0.0,3220463.2367842264,0.0,14137034.332130705,0.0,13502391.518130653,2564.0759294532288,2523.934842449746,2527.187190106916,3042.178213500826,38366554.231838587,37748990.16206159,21139960.556782485,23253956.61246073 + 08/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3403916.000630994,0.0,225414.3705556942,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,3629330.371186688,14093307.03785499,0.0 + 08/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2195814.717314818,0.0,0.0,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,2195814.717314818,14093307.03785499,0.0 + 08/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,192895.24537865865,0.0,0.0,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,192895.24537865865,14093307.03785499,0.0 + 08/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,0.0,14093307.03785499,0.0 + 08/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,7107130.792171145,0.0,1830869.388069988,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,8938000.180241134,14093307.03785499,0.0 + 08/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8073876.944396151,0.0,12346715.17565412,0.0,18350410.122001783,0.0,18463222.432133564,1286.8468942155108,1266.701066025516,1268.3333396385797,1526.7947180208649,19255233.664441699,57234224.67418562,14093307.03785499,15502637.741640486 + 08/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,34652701.706909578,0.0,32660565.521353596,0.0,37010316.548263419,0.0,41913954.01876618,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,146237537.79529277,56373228.15141996,38756594.35410121 + 08/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,32328688.246543006,0.0,25896466.859565978,0.0,31163479.811782164,0.0,34017622.12153744,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,123406257.03942856,56373228.15141996,38756594.35410121 + 08/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48646697.67027451,0.0,31557123.501635806,0.0,25504853.17345316,0.0,29165722.760390678,7701.438390184783,7580.870935484527,7590.639661448311,9137.462667977672,115237481.95834306,134874397.10575415,28186614.07570998,0.0 + 08/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55987210.40738235,0.0,37006604.85641239,0.0,22411344.688678199,0.0,27609200.44945746,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,143014360.4019304,28186614.07570998,0.0 + 08/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56341383.38741772,0.0,36140031.66519769,0.0,18735967.27604496,0.0,24648007.211937615,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,135865389.54059799,28186614.07570998,0.0 + 08/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58994805.214437607,0.0,38315991.667800199,0.0,20763871.386884124,0.0,28761797.889070728,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,146836466.15819267,28186614.07570998,0.0 + 08/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60668026.12083055,0.0,42840303.45940112,0.0,27061492.422751935,0.0,35383707.24197535,7652.377435231655,7532.578038933501,7542.284534570927,9079.25371769757,114503377.41516115,165953529.24495895,28186614.07570998,0.0 + 08/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59319149.40069736,0.0,45886470.76032772,0.0,34304824.18355304,0.0,42088064.69287511,10205.430047993068,10045.662136770643,10058.606997773288,12108.353186729422,152704988.5293591,181598509.03745324,28186614.07570998,0.0 + 08/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53826308.473345059,0.0,47535006.921825628,0.0,39688807.195436257,0.0,46336166.452807087,12748.24782393121,12548.671626064284,12564.841870270755,15125.309412558205,190753454.638168,187386289.043414,28186614.07570998,0.0 + 08/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50173341.44301629,0.0,47963702.76831576,0.0,43606496.62586349,0.0,51646287.70983202,15304.75487046331,15065.156077867003,15084.569069141853,18158.50743539514,229006754.8303223,193389828.54702757,35233267.594637479,0.0 + 08/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,42295175.74756004,0.0,41487711.13412279,0.0,38781305.730009388,0.0,47115585.360996309,17890.06041077467,17609.988177656516,17632.680444837562,21225.873771795068,267690970.09822975,169679777.9726885,14093307.03785499,0.0 + 08/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,40231607.43209699,0.0,42084369.836688708,0.0,39981737.38617245,0.0,48842912.14157384,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,171140626.79653199,63419881.67034747,0.0 + 08/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,36073314.73406653,0.0,33090475.101556269,0.0,38915403.925925318,0.0,44153390.59932363,7708.813783762384,7588.130865899792,7597.908947024922,9146.213290921414,115347840.79539064,152232584.36087174,63419881.67034747,69761869.8373822 + 08/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,28668438.168706407,0.0,24941467.238916696,0.0,33059114.833669627,0.0,36504245.643980327,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,123173265.88527306,49326574.63249246,69761869.8373822 + 08/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,23430200.489454427,0.0,19964012.15075492,0.0,28523720.591195417,0.0,30931147.710071207,5141.547218035462,5061.055337182431,5067.577023555569,6100.249509275923,76933544.71697779,102849080.94147596,35233267.594637479,69761869.8373822 + 08/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19252202.897234769,0.0,15967544.588092093,0.0,25016032.333992445,0.0,26521898.111970579,5145.26480966707,5064.714729223531,5071.241131096821,6104.66028983763,76989171.45537019,86757677.93128988,35233267.594637479,62010550.96656194 + 08/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11885686.786294444,0.0,8821725.405152267,0.0,18522123.13967202,0.0,18411544.99655175,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,77080819.41157943,57641080.32767047,35233267.594637479,46507913.22492146 + 08/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,139402.17529041755,0.0,0.0,0.0,5203928.603825906,0.0,2318739.31813825,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,7662070.097254574,21139960.556782485,23253956.61246073 + 08/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5928738006206,1270.3884016014093,1272.025426722721,1531.239179805766,19311285.174949863,0.0,14093307.03785499,0.0 + 08/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 + 08/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.61869296661,1272.382506190439,1274.0221009190478,1533.642736915941,19341597.733171338,0.0,14093307.03785499,0.0 + 08/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 + 08/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.73957133,0.0,14093307.03785499,0.0 + 08/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8731248.806489015,0.0,13868600.851411127,0.0,24571952.048371264,0.0,19384125.598673379,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692028,66555927.30494478,14093307.03785499,15502637.741640486 + 08/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44787312.55190832,0.0,48187689.2204592,0.0,52979870.72211768,0.0,59470780.76674621,20595.030916720614,20272.611865720133,20298.73519529159,24435.218022027875,308165745.59913679,205425653.26123143,56373228.15141996,38756594.35410121 + 08/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,59131585.15425469,0.0,51114857.290768567,0.0,50850898.95693785,0.0,59341142.98075305,17998.080338354543,17716.31703311903,17739.146315883096,21354.035292494456,269307284.32746407,220438484.38271413,56373228.15141996,38756594.35410121 + 08/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48149932.19709633,0.0,32950390.655908005,0.0,27323835.304856946,0.0,31776199.112425075,12824.876254768635,12624.10042452193,12640.36786643407,15216.226120659778,191900054.3989839,140200357.27028636,28186614.07570998,0.0 + 08/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54033128.456353988,0.0,34969922.311335448,0.0,23577250.134163526,0.0,28089086.55123858,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,140669387.45309154,28186614.07570998,0.0 + 08/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57202880.63928327,0.0,36364752.94789453,0.0,21198607.1997021,0.0,27080480.280069248,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,141846721.06694914,28186614.07570998,0.0 + 08/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61946864.726429339,0.0,41110082.147173989,0.0,23704359.81275459,0.0,32240266.26630928,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,159001572.95266719,28186614.07570998,0.0 + 08/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65815405.72752531,0.0,48015167.630481768,0.0,30822620.077500125,0.0,40200797.34334313,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,184853990.77885033,28186614.07570998,0.0 + 08/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67986201.38957654,0.0,54924706.75538066,0.0,40704912.05040947,0.0,50372078.719513598,7617.747934188797,7498.490669189598,7508.153239771881,9038.167136599539,113985212.32709933,213987898.91488029,28186614.07570998,0.0 + 08/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65812361.77627338,0.0,60405710.65010023,0.0,49551814.78639359,0.0,58683173.25785581,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,234453060.47062303,28186614.07570998,0.0 + 08/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,62576075.11851566,0.0,61611468.97806409,0.0,54263905.38652922,0.0,65291354.2466388,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,243742803.72974778,35233267.594637479,0.0 + 08/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,54661985.843608479,0.0,55027629.538148228,0.0,48827124.096391189,0.0,60305401.90215656,17779.26336711118,17500.92568238075,17523.47741140485,21094.417308871503,266033101.5711658,218822141.38030447,14093307.03785499,0.0 + 08/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,54844832.136940699,0.0,57429024.41604482,0.0,51737876.315143559,0.0,63982372.92464029,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,227994105.79276938,63419881.67034747,0.0 + 08/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,51865252.744628999,0.0,48503536.07389571,0.0,52042937.1593854,0.0,60571403.93070401,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,212983129.90861417,63419881.67034747,69761869.8373822 + 08/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,43524146.4454777,0.0,40388191.27362922,0.0,44984533.66237717,0.0,51855113.85633488,10252.635849137645,10092.128922292068,10105.133660490625,12164.361067831254,153411334.19910575,180751985.237819,49326574.63249246,69761869.8373822 + 08/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,39078412.92342833,0.0,36194356.7219636,0.0,41004560.535001117,0.0,47027203.6391414,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,163304533.81953443,35233267.594637479,69761869.8373822 + 08/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33967971.94216931,0.0,31011986.530095407,0.0,37052925.41802443,0.0,41891742.6870404,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,143924626.57732956,35233267.594637479,62010550.96656194 + 08/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25582029.853545984,0.0,22295767.833550946,0.0,30180552.614920554,0.0,33026621.02923228,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,111084971.33124976,35233267.594637479,46507913.22492146 + 08/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,12942361.136142949,0.0,10229364.499776505,0.0,17771434.878682209,0.0,18162568.43558198,2567.983424361639,2527.781164796423,2531.038468832523,3046.8143070514049,38425022.51415116,59105728.950183648,21139960.556782485,23253956.61246073 + 08/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1377483.4731057387,0.0,288405.65662957887,0.0,6079160.738124612,0.0,4352177.837344266,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,12097227.705204193,14093307.03785499,0.0 + 08/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,415699.9306055996,0.0,0.0,0.0,5364752.098155294,0.0,3866822.4784178587,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,9647274.507178752,14093307.03785499,0.0 + 08/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,163845.80186826824,0.0,0.0,0.0,4676857.165873413,0.0,3044340.1149925508,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,7885043.082734232,14093307.03785499,0.0 + 08/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2400617.1975139577,0.0,133416.5533197469,1287.019290010552,1266.8707629322256,1268.503255217074,1526.9992590509292,19257813.241958813,2534033.750833704,14093307.03785499,0.0 + 08/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,7743493.269000845,0.0,5491964.090358756,1285.9511712338049,1265.8193657541859,1267.4505032064568,1525.7319768949192,19241830.86152172,13235457.3593596,14093307.03785499,0.0 + 08/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,17242310.035063697,0.0,18125034.662115925,0.0,21136717.37968333,0.0,22988019.63598323,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,79492081.71284618,14093307.03785499,15502637.741640486 + 08/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,46014045.61477125,0.0,44538949.94221935,0.0,43733920.20627466,0.0,51520979.748046729,20474.522807454956,20153.9903333858,20179.96080700539,24292.239750461507,306362569.31390759,185807895.51131199,56373228.15141996,38756594.35410121 + 08/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,74436235.75645732,0.0,66590358.5803458,0.0,57362217.93970306,0.0,69094512.8690226,17890.06041077467,17609.988177656516,17632.680444837562,21225.873771795068,267690970.09822975,267483325.14552877,56373228.15141996,38756594.35410121 + 08/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68301847.6200504,0.0,53598092.956237148,0.0,39293125.5358869,0.0,49036145.917893428,12736.562530668069,12537.169268247068,12553.324690491469,15111.445258156555,190578606.29122735,210229212.03006787,28186614.07570998,0.0 + 08/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63307135.98975948,0.0,47070898.838645439,0.0,31833997.665333965,0.0,39890170.034198928,10169.738930740266,10010.529770616604,10023.429359979575,12066.007038522675,152170938.35949285,182102202.5279378,28186614.07570998,0.0 + 08/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62605878.34166476,0.0,44860409.443709958,0.0,27400065.60727057,0.0,35662723.157817739,5087.3590345498209,5007.715479818054,5014.168432340691,6035.957298060339,76122720.88116805,170529076.55046303,28186614.07570998,0.0 + 08/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67977006.26363671,0.0,50553834.59982781,0.0,30582636.175964863,0.0,41259361.81957299,5062.360296217287,4983.108101397625,4989.529344801546,6006.297249289296,75748661.97014073,190372838.85900239,28186614.07570998,0.0 + 08/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,66839552.93814668,0.0,53012534.09211564,0.0,35187041.11674101,0.0,45837909.035904679,5055.2865550507499,4976.145100968655,4982.557371835824,5997.9045254164989,75642816.7917782,200877037.182908,28186614.07570998,0.0 + 08/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71128662.14269649,0.0,60862294.88086334,0.0,42976333.40713028,0.0,54286012.03794406,7576.417075801017,7457.806853100142,7467.416998432884,8989.129650818295,113366774.08134842,229253302.4686342,28186614.07570998,0.0 + 08/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65993167.17740391,0.0,61734035.031616147,0.0,46725950.17218081,0.0,57046976.48096003,12648.888200183574,12450.867495761935,12466.911709363852,15007.423011771642,189266725.5014916,231500128.86216093,28186614.07570998,0.0 + 08/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,60449341.80125529,0.0,59819045.157625038,0.0,46940536.5616868,0.0,58169551.60985168,12648.888200183574,12450.867495761935,12466.911709363852,15007.423011771642,189266725.5014916,225378475.13041879,35233267.594637479,0.0 + 08/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,51983313.64940037,0.0,52973982.52703332,0.0,44268488.958541158,0.0,55504633.919898148,17742.302381935435,17464.543328322994,17487.04817497042,21050.564510848024,265480050.22587676,204730419.054873,14093307.03785499,0.0 + 08/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,52094523.15089472,0.0,53785232.670202989,0.0,47276903.94221706,0.0,58650130.21675564,17810.06912275614,17531.24916817428,17553.839972104877,21130.967162016263,266494051.53018565,211806789.9800704,63419881.67034747,0.0 + 08/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53594084.442701969,0.0,51113315.47175401,0.0,52554652.136001069,0.0,62028718.61294459,10209.898822467485,10050.060951747013,10063.011481071733,12113.655217059708,152771855.30044539,219290770.66340164,63419881.67034747,69761869.8373822 + 08/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,46384284.31374362,0.0,44032617.41443982,0.0,46857818.61580077,0.0,54810623.199629429,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,192085343.5436136,49326574.63249246,69761869.8373822 + 08/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,38221952.59601191,0.0,35921093.62832903,0.0,40118634.485676858,0.0,46345013.27012597,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,160606693.98014377,35233267.594637479,69761869.8373822 + 08/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32330661.256328774,0.0,30059908.835505338,0.0,35170878.46369006,0.0,40180129.25412444,5128.151858906457,5047.869684899492,5054.374380213832,6084.356427001652,76733108.46367717,137741577.80964864,35233267.594637479,62010550.96656194 + 08/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24216262.329398335,0.0,21704694.12749315,0.0,28427508.875555148,0.0,31615930.772526504,2569.9987355686109,2529.764925930494,2533.024786245293,3049.2053968693187,38455177.84060938,105964396.10497315,35233267.594637479,46507913.22492146 + 08/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,12164374.14992217,0.0,9975020.338384293,0.0,16643023.772422772,0.0,17386032.691005306,2568.395400128315,2528.186691005618,2531.4445176036294,3047.303100572484,38431186.95351617,56168450.95173454,21139960.556782485,23253956.61246073 + 08/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4029081.3939149666,0.0,2295800.608733274,0.0,7969317.363635301,0.0,7293619.570761187,1283.360409781109,1263.269163155338,1264.8970144112664,1522.65813732674,19203065.00882803,21587818.93704473,14093307.03785499,0.0 + 08/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2034660.8626017925,0.0,469055.25316313948,0.0,6107674.99104874,0.0,5096876.144368161,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,13708267.251181832,14093307.03785499,0.0 + 08/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1479174.1805513814,0.0,509392.97473687145,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,1988567.1552882528,14093307.03785499,0.0 + 08/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 + 08/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2464886.8786361098,0.0,11250007.1798005,0.0,14063713.527337727,0.0,11145830.050091554,1287.3573194364238,1267.203500444376,1268.8364214954709,1527.4003180613498,19262871.213975438,38924437.6358659,14093307.03785499,0.0 + 08/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,30428637.920493895,0.0,34099013.31537388,0.0,33427091.287506738,0.0,38156521.68358105,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,136111264.20695556,14093307.03785499,15502637.741640486 + 08/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,59968888.726992,0.0,60777958.42119262,0.0,57485416.13694738,0.0,67215051.96218279,20540.535997393403,20218.970074521007,20245.024281169397,24370.561880445093,307350332.040704,245447315.2473148,56373228.15141996,38756594.35410121 + 08/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,75864151.68842167,0.0,68128350.9510783,0.0,58109585.469067599,0.0,70110340.43082159,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,272212428.53938916,56373228.15141996,38756594.35410121 + 08/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68443496.75637999,0.0,54033031.9488668,0.0,39322164.847269859,0.0,48864301.411684308,12751.115804261539,12551.49470762752,12567.668589662731,15128.712161742602,190796368.5478598,210662994.96420098,28186614.07570998,0.0 + 08/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76047461.28617364,0.0,57221881.28446973,0.0,36796196.04319354,0.0,46365116.00701959,10174.718069099641,10015.430959636107,10028.336864681381,12071.914596120678,152245441.7623361,216430654.6208565,28186614.07570998,0.0 + 08/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81120206.28008527,0.0,59546610.131870139,0.0,35458539.904497887,0.0,46561939.669763129,5063.750523638325,4984.476564549041,4990.899571357408,6007.946701056114,75769464.09816319,222687295.9862164,28186614.07570998,0.0 + 08/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,87913641.15342188,0.0,66879337.073999729,0.0,40945345.45592056,0.0,55108626.85372712,5049.481255246245,4970.430684215568,4976.835591473493,5991.016758800372,75555951.44304845,250846950.53706933,28186614.07570998,0.0 + 08/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,85588481.90034667,0.0,69272149.06684713,0.0,47548899.762311208,0.0,61552946.01777338,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,263962476.7472784,28186614.07570998,0.0 + 08/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79800211.74603877,0.0,68599471.33187711,0.0,52287915.795982617,0.0,65299697.6332861,7551.60787659644,7433.386046537264,7442.96472316817,8959.69448298742,112995551.26544145,265987296.5071846,28186614.07570998,0.0 + 08/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79428574.2411696,0.0,73942246.92707652,0.0,57657816.48430166,0.0,70442943.41801764,12593.71076875325,12396.553877313994,12412.528102274864,14941.95709563161,188441099.43830539,281471581.07056549,28186614.07570998,0.0 + 08/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,72441748.23695684,0.0,70226420.07442406,0.0,57441859.817876238,0.0,70781023.60211642,12620.024313238173,12422.45547835122,12438.463080168747,14973.177111713227,188834831.94049693,270891051.7313736,35233267.594637479,0.0 + 08/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,54401880.09754612,0.0,51613668.78166395,0.0,43098562.29851389,0.0,53397806.843325007,17718.261036760505,17440.878354891684,17463.35270680541,21022.040372512532,265120316.89549247,202511918.021049,14093307.03785499,0.0 + 08/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,59784608.63826859,0.0,55887185.346271667,0.0,50510011.23710948,0.0,61141475.033962648,17779.26336711118,17500.92568238075,17523.47741140485,21094.417308871503,266033101.5711658,227323280.25561238,63419881.67034747,0.0 + 08/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,73402750.89300919,0.0,69249884.12806833,0.0,66528678.150267157,0.0,79843367.15269874,10124.720592434574,9966.21620279525,9979.058689603093,12012.594498578592,151497323.94028146,289024680.3240434,63419881.67034747,69761869.8373822 + 08/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,66884759.73847323,0.0,63335858.974081758,0.0,60557454.42956082,0.0,72766234.63324511,10143.838247264666,9985.034567172585,9997.901303363677,12035.276866268747,151783383.54265083,263544307.7753609,49326574.63249246,69761869.8373822 + 08/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,60246011.45050586,0.0,56870355.30089473,0.0,54888762.760324489,0.0,65708212.039318088,5079.789533460337,5000.2644806802159,5006.707831829956,6026.976373963287,76009457.59176167,237713341.55104316,35233267.594637479,69761869.8373822 + 08/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,55919650.78175952,0.0,52682566.97160733,0.0,51466726.10194525,0.0,61365655.722595948,5087.3590345498209,5007.715479818054,5014.168432340691,6035.957298060339,76122720.88116805,221434599.57790805,35233267.594637479,62010550.96656194 + 08/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,49267459.78352727,0.0,46162545.26030968,0.0,45737846.0007998,0.0,54250951.374277498,2548.489559186678,2508.592479717353,2511.82505717418,3023.685580147894,38133333.63441398,195418802.41891424,35233267.594637479,46507913.22492146 + 08/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,37048772.286643419,0.0,33919055.15855224,0.0,33756324.189753439,0.0,39661908.15111153,2550.7924784105518,2510.859346311168,2514.094844856975,3026.417905899189,38167792.47172038,144386059.7860606,21139960.556782485,23253956.61246073 + 08/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24121877.042849915,0.0,21282280.191706696,0.0,21643230.251773649,0.0,24981215.563302056,1278.124577327773,1258.1152986358027,1259.7365086112537,1516.4460219848689,19124720.663614915,92028603.04963231,14093307.03785499,0.0 + 08/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,22463139.073358224,0.0,20116467.642767356,0.0,20895500.802064875,0.0,24183449.105939535,1277.596172857693,1257.5951664362754,1259.2157061682986,1515.8190902515574,19116814.088569769,87658556.62412998,14093307.03785499,0.0 + 08/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,16169249.148534026,0.0,12719714.77886127,0.0,17187257.000378007,0.0,18334274.333430467,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,64410495.26120376,14093307.03785499,0.0 + 08/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,4146860.9460611578,0.0,1483844.9063305285,0.0,8623691.114818747,0.0,6719924.390206224,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,20974321.357416657,14093307.03785499,0.0 + 08/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4705574.979552369,0.0,1800571.142251606,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,6506146.121803975,14093307.03785499,0.0 + 08/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,7325257.919808913,0.0,1561985.479581642,0.0,10620049.226222657,0.0,9882547.853089234,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,29389840.478702453,14093307.03785499,15502637.741640486 + 08/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,36525868.18027008,0.0,33982900.87406891,0.0,35128700.83695394,0.0,40354938.260473448,20497.795077128478,20176.89827133614,20202.89826417195,24319.851410071988,306710794.88175079,145992408.15176637,56373228.15141996,38756594.35410121 + 08/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44797966.83914093,0.0,42839335.711617577,0.0,36387361.459439698,0.0,43568027.57394989,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,167592691.58414809,56373228.15141996,38756594.35410121 + 08/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28305833.34277005,0.0,26364004.557214455,0.0,16763484.990808731,0.0,20328750.9462478,12789.009165939984,12588.79484165989,12605.016788724946,15173.671188895534,191363371.1467933,91762073.83704105,28186614.07570998,0.0 + 08/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32762804.920255905,0.0,29956957.82392752,0.0,19704177.359021367,0.0,24033490.171081529,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,106457430.27428633,28186614.07570998,0.0 + 08/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24694815.83416213,0.0,19340711.953146176,0.0,16684629.470804576,0.0,18803954.077617784,5100.446321704616,5020.597883051009,5027.067435865092,6051.48486469704,76318547.41914393,79524111.33573066,28186614.07570998,0.0 + 08/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22507376.630834417,0.0,18900922.872984645,0.0,14036584.161113752,0.0,15685284.249953773,5133.441639124436,5053.076652621352,5059.588057645065,6090.63254930696,76812260.03531212,71130167.91488658,28186614.07570998,0.0 + 08/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11769207.085717377,0.0,6931847.882928077,0.0,8305544.76021417,0.0,7689437.733745513,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,34696037.46260513,28186614.07570998,0.0 + 08/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34702556.44685346,0.0,27093954.874846467,0.0,23623484.923991074,0.0,27412267.290791833,7631.038551824731,7511.573219727078,7521.2526485110379,9053.93594709051,114184081.32175207,112832263.53648283,28186614.07570998,0.0 + 08/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47143981.82000749,0.0,45517664.675496008,0.0,39796603.521297577,0.0,46086282.08816598,12724.53719511863,12525.33219156898,12541.472360531896,15097.177656562424,190398669.85361494,178544532.10496707,28186614.07570998,0.0 + 08/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,36359576.78808516,0.0,36273169.05201032,0.0,37801202.9037785,0.0,43296284.50278885,12742.447795933389,12542.962398586764,12559.1252858709,15118.42790073947,190666668.17206989,153730233.24666284,35233267.594637479,0.0 + 08/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15726486.182627576,0.0,14006646.485369113,0.0,17104332.79642523,0.0,18739097.654413355,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,65576563.11883527,14093307.03785499,0.0 + 08/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44039262.219368938,0.0,47990764.56132217,0.0,47367495.77216618,0.0,58030739.04124522,17875.02289180661,17595.18607385315,17617.85926701262,21208.032329556852,267465962.02402524,197428261.5941025,63419881.67034747,0.0 + 08/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47193692.76993454,0.0,44056805.76641662,0.0,51411941.24401185,0.0,59071926.06270038,10214.298795318064,10054.392042201804,10067.34815257864,12118.87561688963,152837692.58515729,201734365.84306339,63419881.67034747,69761869.8373822 + 08/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,41366136.4949882,0.0,38793862.88957751,0.0,45355019.14343587,0.0,52072209.293258678,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,177587227.82126028,49326574.63249246,69761869.8373822 + 08/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35552655.95693268,0.0,33256730.291085043,0.0,39672669.88171621,0.0,45248676.518200557,5111.445831649906,5031.425193616149,5037.908698525017,6064.53536337002,76483134.31377994,153730732.6479345,35233267.594637479,69761869.8373822 + 08/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31566462.850877249,0.0,29357888.35909841,0.0,36006504.56379196,0.0,40745181.39372537,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,137676037.167493,35233267.594637479,62010550.96656194 + 08/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26189354.186738615,0.0,24197526.237458208,0.0,30620931.330692069,0.0,34324525.54652163,2557.28861832399,2517.2537879424078,2520.497526378924,3034.1253279335785,38264994.938084039,115332337.3014105,35233267.594637479,46507913.22492146 + 08/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,14387963.631287557,0.0,12396977.924891115,0.0,18668631.705895284,0.0,20168110.912568857,2559.3153509318697,2519.248791673225,2522.495100875674,3036.5299688076886,38295321.164238449,65621684.1746428,21139960.556782485,23253956.61246073 + 08/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3709875.304353947,0.0,1404403.4917318207,0.0,9338549.54857548,0.0,8786649.412611902,1279.1553484127194,1259.129932807124,1260.7524502422664,1517.6689925302065,19140144.206372337,23239477.757273154,14093307.03785499,0.0 + 08/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2670678.780467854,0.0,342877.9252826877,0.0,8812274.450985525,0.0,7866267.564975019,1279.4076021768386,1259.378237491508,1261.00107489258,1517.9682819922157,19143918.707591315,19692098.721711086,14093307.03785499,0.0 + 08/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1400845.385838637,0.0,0.0,0.0,7698201.137501152,0.0,6515667.416859997,1279.9055658805099,1259.868405480503,1261.4918745130595,1518.5590969181783,19151369.7940521,15614713.940199789,14093307.03785499,0.0 + 08/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,240323.896654172,0.0,0.0,0.0,6534363.8276919689,0.0,5142309.3739081979,1280.3947885928477,1260.3499693200147,1261.9740588967305,1519.139540991588,19158690.08808425,11916997.098254338,14093307.03785499,0.0 + 08/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,26286855.647534208,0.0,34287025.01626672,0.0,31678958.927282536,0.0,36323535.97698672,1279.1553484127194,1259.129932807124,1260.7524502422664,1517.6689925302065,19140144.206372337,128576375.5680702,14093307.03785499,0.0 + 08/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,40921581.93259949,0.0,44186668.48061879,0.0,44060878.00136784,0.0,51302005.21828402,5109.314898835525,5029.327620952503,5035.808422924898,6062.007092928463,76451248.92830901,180471133.63287015,14093307.03785499,15502637.741640486 + 08/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,38436076.555701319,0.0,35450859.251369658,0.0,37564597.26394305,0.0,43144108.466329548,20470.521634829416,20150.051799864126,20176.01719828128,24287.49251187545,306302699.321461,154595641.53734357,56373228.15141996,38756594.35410121 + 08/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,28453608.623800044,0.0,25621597.349403316,0.0,28531431.47969424,0.0,31858001.55055008,17867.322939318095,17587.60666555727,17610.270091875533,21198.896629854487,267350746.77577938,114464639.00344768,56373228.15141996,38756594.35410121 + 08/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13212197.045549103,0.0,11247235.02705955,0.0,10881134.375152853,0.0,11425792.787306708,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,46766359.23506821,28186614.07570998,0.0 + 08/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18202641.449107708,0.0,15886976.413513869,0.0,13040476.022129525,0.0,14311022.502007379,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,61441116.38675848,28186614.07570998,0.0 + 08/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21277895.649652207,0.0,17026871.133632859,0.0,13789269.537329853,0.0,15308486.039158542,5098.143391432224,5018.331005581644,5024.797637292732,6048.752525837101,76284088.41651732,67402522.35977346,28186614.07570998,0.0 + 08/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29961658.080079054,0.0,20658734.128104677,0.0,14466486.841647983,0.0,17633950.415438855,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,82720829.46527057,28186614.07570998,0.0 + 08/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48979201.83167345,0.0,36868546.833259198,0.0,23705838.3597253,0.0,30738503.4094639,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,140292090.43412186,28186614.07570998,0.0 + 08/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55694312.9137575,0.0,45351753.80211662,0.0,33344366.094265324,0.0,41444499.88587383,7641.937518400841,7522.301560948239,7531.9948142948819,9066.867154893933,114347163.77473642,175834932.69601328,28186614.07570998,0.0 + 08/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50539384.37304882,0.0,46766429.553459119,0.0,37642602.37439086,0.0,45002908.37217107,12727.575307898933,12528.322742126946,12544.466764719496,15100.782261404358,190444129.47413904,179951324.67306984,28186614.07570998,0.0 + 08/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33168432.19092597,0.0,31350333.2731226,0.0,31072961.684026388,0.0,34669937.58052576,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,130261664.72860073,35233267.594637479,0.0 + 08/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20272566.850634979,0.0,19027044.598552899,0.0,23159580.14242603,0.0,25919864.851852813,17855.54734887386,17576.01542417817,17598.663913998826,21184.92534129432,267174547.30204267,88379056.44346673,14093307.03785499,0.0 + 08/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,34498980.42666768,0.0,34102082.135067928,0.0,39219606.92410803,0.0,45631843.080996,17859.50258398787,17579.908739348622,17602.562246103258,21189.618076776485,267233729.92637844,153452512.56683965,63419881.67034747,0.0 + 08/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,37885433.625507798,0.0,33829510.09293742,0.0,44605699.89967935,0.0,49249558.382459688,10239.244527044078,10078.947243844024,10091.934996104475,12148.472775345426,153210958.3524168,165570202.00058425,63419881.67034747,69761869.8373822 + 08/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,31021332.942316139,0.0,27864424.174439685,0.0,37376018.19268275,0.0,41113809.142261449,10241.210168336072,10080.882112654901,10093.872358191304,12150.804933705236,153240370.46239505,137375584.4517,49326574.63249246,69761869.8373822 + 08/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26870753.72270405,0.0,24164379.07427155,0.0,32669952.773926479,0.0,35935450.63423383,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,119640536.20513593,35233267.594637479,69761869.8373822 + 08/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24496403.818792814,0.0,21491850.82693458,0.0,30318586.85798151,0.0,33057559.060021804,5124.448769282119,5044.224567834035,5050.724566042987,6079.962852517997,76677698.72043769,109364400.56373072,35233267.594637479,62010550.96656194 + 08/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17400274.708399103,0.0,13886897.325775411,0.0,23860540.073445407,0.0,25312035.46999765,2567.1461300615944,2526.956978494843,2530.2132204827705,3045.82088932589,38412493.98611435,80459747.57761756,35233267.594637479,46507913.22492146 + 08/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,2374685.094546469,0.0,43320.02351544624,0.0,10963613.662013095,0.0,9341438.438390844,2568.8029230212216,2528.5878340516126,2531.8461775633829,3047.7866109288127,38437284.76403411,22723057.218465855,21139960.556782485,23253956.61246073 + 08/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,62333.849579798676,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,62333.849579798676,14093307.03785499,0.0 + 08/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 + 08/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,0.0,14093307.03785499,0.0 + 08/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 + 08/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.195499306283,1269.0129032654605,1270.648155916772,1529.5812483092983,19290376.10447213,0.0,14093307.03785499,0.0 + 08/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15412492.854439568,0.0,19820329.875405376,0.0,30534757.537867376,0.0,27865131.27042579,1287.3573194364238,1267.203500444376,1268.8364214954709,1527.4003180613498,19262871.213975435,93632711.5381381,14093307.03785499,15502637.741640486 + 08/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,53717640.99155974,0.0,51264250.03414206,0.0,54412408.68226945,0.0,61882770.80866486,5146.688986256335,5066.116610062611,5072.644818402448,6106.35002099663,77010481.56858488,221277070.51663608,56373228.15141996,38756594.35410121 + 08/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,72519609.42115245,0.0,55457258.285533297,0.0,53350738.11561303,0.0,63062492.77468622,12849.993677843053,12648.824629652467,12665.123931226466,15246.026984346594,192275889.2030469,244390098.59698499,56373228.15141996,38756594.35410121 + 08/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,64827409.228095229,0.0,38567662.37121075,0.0,31873966.018354708,0.0,37859086.52346502,12818.098246968028,12617.428527697877,12633.687372189974,15208.184273136822,191798634.31197373,173128124.1411257,28186614.07570998,0.0 + 08/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73582754.95659316,0.0,37661649.95231125,0.0,27989734.456875814,0.0,33750868.80066301,12799.055658805099,12598.68405480503,12614.918745130595,15185.590969181783,191513697.94052104,172985008.16644324,28186614.07570998,0.0 + 08/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76697029.42428203,0.0,35469726.233838688,0.0,23774889.6856026,0.0,30917696.502191016,7671.865854971969,7551.7613638272209,7561.492579136771,9102.375983800735,114794984.81425211,166859341.8459143,28186614.07570998,0.0 + 08/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82924512.99641097,0.0,41795141.136666189,0.0,27174136.681509794,0.0,37713590.27685452,7650.669482556924,7530.896824576512,7540.601153797639,9077.227297045561,114477821.1287159,189607381.09144149,28186614.07570998,0.0 + 08/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88450200.77368483,0.0,53192704.184637378,0.0,36781535.86062793,0.0,48233275.639501918,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,226657716.45845206,28186614.07570998,0.0 + 08/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86867664.23810166,0.0,61244651.26329702,0.0,47019102.15322627,0.0,58295498.38906733,7634.722317071179,7515.199314941387,7524.883416319138,9058.306593937456,114239201.91216897,253426916.0436923,28186614.07570998,0.0 + 08/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77780329.00570175,0.0,63388014.108321469,0.0,53055488.59386034,0.0,63029522.61995107,17810.06912275614,17531.24916817428,17553.839972104877,21130.967162016263,266494051.53018565,257253354.32783468,28186614.07570998,0.0 + 08/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,66246815.07283023,0.0,60661249.48589308,0.0,54182090.78801756,0.0,63454019.87640607,22909.635554218075,22550.980935828502,22580.04017649509,27181.40807052784,342799433.0534502,244544175.22314696,35233267.594637479,0.0 + 08/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,58133641.116928528,0.0,54276620.12880924,0.0,50425623.26880954,0.0,60960221.19011529,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,223796105.70466263,14093307.03785499,0.0 + 08/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,51776709.8974992,0.0,48984695.0455158,0.0,47713299.16444267,0.0,57514827.78990252,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,205989531.8973602,63419881.67034747,0.0 + 08/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44336656.521011929,0.0,37656532.84817278,0.0,44401269.032221827,0.0,50143188.39777091,15440.066958769004,15198.349830187828,15217.934455207345,18319.050062989896,231031444.70575468,176537646.79917748,63419881.67034747,69761869.8373822 + 08/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,35657183.3510873,0.0,29502626.7383064,0.0,37390360.13272439,0.0,41504781.477999258,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,144054951.70011736,49326574.63249246,69761869.8373822 + 08/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,28376494.98829537,0.0,22557514.31562295,0.0,31310327.152933007,0.0,33971810.41130218,10306.537564683265,10145.186796425467,10158.25990511035,12228.313395771156,154217871.58316488,116216146.86815351,35233267.594637479,69761869.8373822 + 08/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26603263.539193456,0.0,21247746.136651543,0.0,29873960.47783839,0.0,32417496.885278785,7713.463002151948,7592.7072999081569,7602.491278235613,9151.729411069056,115417407.56891319,110142467.03896217,35233267.594637479,62010550.96656194 + 08/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17634112.928020248,0.0,12286505.838714835,0.0,22315716.403565363,0.0,22815599.289593046,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,75051934.4598935,35233267.594637479,46507913.22492146 + 08/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,4821239.505769573,0.0,0.0,0.0,10541826.66562153,0.0,8437522.86790549,2578.1095866584848,2537.7488001334779,2541.018948485085,3058.8286120772338,38576541.41047541,23800589.03929659,21139960.556782485,23253956.61246073 + 08/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,398666.0548041503,0.0,0.0,1291.435370197342,1271.2177085598726,1272.8558023278459,1532.2387696204117,19323891.5425397,398666.0548041503,14093307.03785499,0.0 + 08/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 + 08/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 08/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,19338676.823948724,0.0,14093307.03785499,0.0 + 08/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2699760.2596838839,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710606,1531.8843216120268,19319421.40707041,2699760.2596838839,14093307.03785499,0.0 + 08/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20993236.892790006,0.0,23345783.520788079,0.0,33844901.792358089,0.0,32147090.64267525,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.19746307,110331012.84861143,14093307.03785499,15502637.741640486 + 08/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,64295923.29160015,0.0,60742195.47137785,0.0,63090588.85913835,0.0,72345759.37438564,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,260474466.99650199,56373228.15141996,38756594.35410121 + 08/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,81692512.87702511,0.0,64537418.75982841,0.0,60079070.7246059,0.0,72095102.99456147,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,278404105.3560209,56373228.15141996,38756594.35410121 + 08/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76786351.9837189,0.0,50139542.77530788,0.0,40898208.710625249,0.0,49292925.72928367,7660.724096488548,7540.7940316513499,7550.511114433981,9089.156712667225,114628269.43886797,217117029.19893573,28186614.07570998,0.0 + 08/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83785697.66153103,0.0,49633625.53665207,0.0,37335368.73333388,0.0,45686972.116939339,7641.937518400841,7522.301560948239,7531.9948142948819,9066.867154893933,114347163.77473642,216441664.0484563,28186614.07570998,0.0 + 08/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,85604654.62774314,0.0,47289901.23807531,0.0,33100679.122617496,0.0,42813495.37325737,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,208808730.36169333,28186614.07570998,0.0 + 08/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,90925961.14138875,0.0,52383229.62369758,0.0,35435424.32707178,0.0,48074399.91057864,5074.5758621946729,4995.132430410824,5001.569168389975,6020.790552024643,75931444.8468724,226819015.00273676,28186614.07570998,0.0 + 08/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,97891366.37830088,0.0,63830641.455651577,0.0,44750654.006927859,0.0,58415299.805440697,7609.877461428549,7490.743410148646,7500.395997596909,9028.82912110392,113867445.56500089,264887961.646321,28186614.07570998,0.0 + 08/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,100551063.76977931,0.0,74219668.07465352,0.0,56233908.84229934,0.0,70357005.24020836,10133.012700962638,9974.378496817417,9987.231501574213,12022.432768817896,151621399.6854198,301361645.92694059,28186614.07570998,0.0 + 08/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,91717623.4876692,0.0,76637854.9859939,0.0,62987195.615920748,0.0,75821573.27247636,12673.073129953884,12474.673805944998,12490.748696407445,15036.117507748591,189628607.30419774,307164247.3620602,28186614.07570998,0.0 + 08/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,84787037.55826143,0.0,78363082.56403148,0.0,68634559.38820341,0.0,81515429.212266,15215.757370897,14977.551850758871,14996.851955045515,18052.915299403125,227675075.31397624,313300108.72276237,35233267.594637479,0.0 + 08/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,73762281.23835962,0.0,68502605.38304535,0.0,62045456.95399119,0.0,75663571.04028756,17788.211931208738,17509.734155038008,17532.297234678186,21105.034438585564,266166999.93423779,279973914.6156837,14093307.03785499,0.0 + 08/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,66905143.64176637,0.0,62958484.95397399,0.0,58610342.61855456,0.0,71420213.79127403,10212.107419712329,10052.234972989976,10065.188303762967,12116.275633383377,152804902.7874551,259894185.00556899,63419881.67034747,0.0 + 08/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,63854445.89923199,0.0,56702463.367844257,0.0,58539265.494231808,0.0,68617232.78964342,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,247713407.55095149,63419881.67034747,69761869.8373822 + 08/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,54007971.28237289,0.0,47478603.97893491,0.0,50504253.03747431,0.0,58694091.549001287,5132.582144513954,5052.230613559336,5058.740928375364,6089.612791760549,76799399.32155314,210684919.84778343,49326574.63249246,69761869.8373822 + 08/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44158212.835725057,0.0,37622558.8080964,0.0,42576882.18118482,0.0,48628525.17365204,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,172986178.9986583,35233267.594637479,69761869.8373822 + 08/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,42780700.00037216,0.0,36866889.01448086,0.0,41408054.64346749,0.0,47451114.67671846,5122.5444647857179,5042.350075579771,5048.847658314128,6077.703467924789,76649204.39977587,168506758.33503897,35233267.594637479,62010550.96656194 + 08/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,39642048.82666443,0.0,34227440.176756057,0.0,38197632.26717068,0.0,43700738.825540099,5128.151858906457,5047.869684899492,5054.374380213832,6084.356427001652,76733108.46367717,155767860.09613128,35233267.594637479,46507913.22492146 + 08/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,27176308.615758338,0.0,21810396.001152539,0.0,26492616.996393298,0.0,29367490.990841368,2566.720819562218,2526.538326310676,2529.7940288225329,3045.31627465348,38406130.01765606,104846812.60414556,21139960.556782485,23253956.61246073 + 08/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11677255.067555389,0.0,6242052.322637079,0.0,12805659.726918638,0.0,12264670.14553185,1287.1894322950385,1267.0382416075084,1268.6709497057244,1527.2011263767423,19260359.099946049,42989637.26264295,14093307.03785499,0.0 + 08/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5546088.346180512,0.0,557280.823702425,0.0,8217029.753789766,0.0,6510347.310455805,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,20830746.23412851,14093307.03785499,0.0 + 08/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,306798.9514144346,0.0,0.0,0.0,1771813.614430326,0.0,555070.5991405329,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,2633683.1649852937,14093307.03785499,0.0 + 08/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 + 08/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,9365131.48862702,0.0,10734677.781433683,0.0,16006017.34753046,0.0,13023791.279235632,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.2220169729949,19298457.184527428,49129617.896826799,14093307.03785499,0.0 + 08/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,31208257.690014226,0.0,31624964.832111319,0.0,33669893.897210668,0.0,37222023.704502198,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,133725140.1238384,14093307.03785499,15502637.741640486 + 08/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,53902696.045952688,0.0,49688387.06523897,0.0,48573512.0118061,0.0,55741231.34968561,20566.188872141847,20244.221348729723,20270.308094222277,24400.99803710369,307734178.86791118,207905826.47268335,56373228.15141996,38756594.35410121 + 08/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,49061017.52644601,0.0,44203466.62568715,0.0,38934054.03668484,0.0,45015532.130230668,17970.02291043116,17688.698849463897,17711.49254337939,21320.74622528123,268887457.90280047,177214070.3190487,56373228.15141996,38756594.35410121 + 08/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28320835.4242445,0.0,23608676.435049807,0.0,18714612.51079797,0.0,20388627.605209777,12815.794811422056,12615.161152865083,12631.417075613283,15205.451334789068,191764167.74888218,91032751.97530206,28186614.07570998,0.0 + 08/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15033689.497832276,0.0,10527036.365226813,0.0,11594706.633241803,0.0,10744357.906801194,10259.901003814908,10099.280339617546,10112.294293147253,12172.980896527823,153520043.51918713,47899790.403102088,28186614.07570998,0.0 + 08/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14060183.762136665,0.0,8446625.140590817,0.0,8948072.90999511,0.0,7965431.362699872,5126.3179245688229,5046.064461146034,5052.566830245312,6082.180533915627,76705667.09955287,39420313.17542246,28186614.07570998,0.0 + 08/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26193723.339045604,0.0,16225058.18937714,0.0,12292801.191336107,0.0,14193138.116880853,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,68904720.8366397,28186614.07570998,0.0 + 08/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43608750.686117809,0.0,31583127.598900264,0.0,21370004.00541699,0.0,27093541.438340215,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,123655423.72877527,28186614.07570998,0.0 + 08/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61075740.427242297,0.0,48139346.247400369,0.0,33950749.06567131,0.0,42545068.643375869,7613.837661979662,7494.6416130213569,7504.2992237019029,9033.527747887667,113926702.4877261,185710904.38368986,28186614.07570998,0.0 + 08/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63180764.89018517,0.0,54350906.20093696,0.0,43174731.912070367,0.0,51027148.63234038,12712.173663425332,12513.162213270754,12529.28669997447,15082.508798153343,190213672.94936604,211733551.63553287,28186614.07570998,0.0 + 08/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,57805954.923287909,0.0,56917146.30050687,0.0,49932869.3754959,0.0,57556013.41579234,12739.515803918226,12540.07630745356,12556.235475714695,15114.949204134495,190622796.44839553,222211984.015083,35233267.594637479,0.0 + 08/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,40526798.499179918,0.0,39933514.76134032,0.0,39047556.443780157,0.0,46042971.0160623,17875.02289180661,17595.18607385315,17617.85926701262,21208.032329556852,267465962.02402524,165550840.7203627,14093307.03785499,0.0 + 08/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44906366.41299523,0.0,44844030.856596607,0.0,46201312.60903897,0.0,54755654.007768828,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,190707363.88639964,63419881.67034747,0.0 + 08/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,44596147.98171802,0.0,40798921.88294614,0.0,48579318.66718331,0.0,54822662.20178984,10256.303717812914,10095.739369798985,10108.748760427665,12168.712854003305,153466216.92735435,188797050.73363734,63419881.67034747,69761869.8373822 + 08/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,37082754.99184942,0.0,33530543.308209246,0.0,42071286.70587236,0.0,46898718.153158809,10258.111192340759,10097.518547975913,10110.530231257271,12170.857353535048,153493262.37039239,159583303.15908984,49326574.63249246,69761869.8373822 + 08/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29634383.78684954,0.0,26810489.479602137,0.0,35307825.47213999,0.0,39145515.41428363,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,130898214.1528753,35233267.594637479,69761869.8373822 + 08/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26214737.04934524,0.0,23664889.99255678,0.0,31992514.797642717,0.0,35387316.12947759,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,117259457.96902234,35233267.594637479,62010550.96656194 + 08/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18935328.803047219,0.0,16066792.411406022,0.0,25256702.58885675,0.0,26758666.606492059,2572.632404833535,2532.3573646117658,2535.6205655484106,3052.330144918815,38494585.727685097,87017490.40980204,35233267.594637479,46507913.22492146 + 08/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,7135078.389983861,0.0,4114741.4921223118,0.0,13550759.319932124,0.0,12797008.129710578,2569.604594587461,2529.3769552999317,2532.636315674974,3048.7377636404714,38449280.265130218,37597587.33174887,21139960.556782485,23253956.61246073 + 08/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4159217.2461272247,0.0,1506359.0265367209,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,5665576.272663945,14093307.03785499,0.0 + 08/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2262734.6459719699,0.0,0.0,1286.495348732047,1266.3550240521768,1267.986851754838,1526.3776227240513,19249973.450147205,2262734.6459719699,14093307.03785499,0.0 + 08/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,256096.72755963516,0.0,0.0,1287.5229498238005,1267.36653785714,1268.9996689985822,1527.5968321934716,19265349.559942783,256096.72755963516,14093307.03785499,0.0 + 08/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 + 08/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,6380892.528386904,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,6380892.528386904,14093307.03785499,0.0 + 08/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,24365338.779673414,0.0,25669911.680488334,0.0,31766815.78179503,0.0,36423778.704572279,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,118225844.94652906,14093307.03785499,15502637.741640486 + 08/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,51767882.19542296,0.0,48291700.25266938,0.0,49413428.95887263,0.0,57911208.90904917,20486.31661748556,20165.599509120235,20191.584942347687,24306.23265586541,306539041.409348,207384220.31601418,56373228.15141996,38756594.35410121 + 08/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,70337391.39680153,0.0,58357132.97318509,0.0,54204567.42489637,0.0,65058332.1888535,17871.187984496573,17591.411202732455,17614.07953158519,21203.482358420908,267408579.87804646,247957423.98373652,56373228.15141996,38756594.35410121 + 08/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81653242.78382397,0.0,52391846.64919895,0.0,39462650.61982016,0.0,48427855.17492593,12736.562530668069,12537.169268247068,12553.324690491469,15111.445258156555,190578606.29122735,221935595.22776903,28186614.07570998,0.0 + 08/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,95252009.30503638,0.0,56669710.66236142,0.0,37853968.82551694,0.0,47951699.30970648,10141.156646040641,9982.394946915972,9995.258281686944,12032.095248779451,151743258.44432283,237727388.1026212,28186614.07570998,0.0 + 08/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89370404.5825715,0.0,55612762.112570349,0.0,34407265.27964253,0.0,46378092.764677558,5070.578323020321,4991.197473457986,4997.629140843472,6016.047624389726,75871629.22216141,225768524.7394619,28186614.07570998,0.0 + 08/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,91980735.12368477,0.0,59525334.06876893,0.0,37868034.89821343,0.0,53207470.8593174,5059.5552800734299,4980.346998304775,4986.76468374554,6002.969204708657,75706690.20059665,242581574.94998456,28186614.07570998,0.0 + 08/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,95043875.0503869,0.0,70815502.04166037,0.0,48675069.713883098,0.0,65223495.09118591,5039.011913761323,4960.125242224646,4966.51686986871,5978.5952847678449,75399297.51824108,279757941.8971163,28186614.07570998,0.0 + 08/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,97772850.0817269,0.0,79904355.2548807,0.0,61101575.121567498,0.0,77926895.77950682,7537.467601263917,7419.467139852937,7429.0278805519069,8942.917586072872,112783968.74786988,316705676.2376819,28186614.07570998,0.0 + 08/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88976112.96590725,0.0,79825296.07197203,0.0,66135356.792731408,0.0,79057812.8508534,12578.23625336292,12381.321618348868,12397.276214989337,14923.59717381955,188209552.53787444,313994578.6814641,28186614.07570998,0.0 + 08/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,82482512.46374731,0.0,80632022.35251233,0.0,68830146.9034918,0.0,82672754.17927215,12605.108022690612,12407.772705114814,12423.761386680386,14955.479502368362,188611637.82067506,314617435.8990236,35233267.594637479,0.0 + 08/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,68010390.24636865,0.0,66578773.848409067,0.0,57958645.436434689,0.0,71836741.55431757,17708.443480257,17431.214494066706,17453.676393109392,21010.392216480297,264973415.70208825,264384551.0855299,14093307.03785499,0.0 + 08/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,66380322.24184148,0.0,64721554.43378317,0.0,58379129.13824069,0.0,71719124.14182061,17742.302381935435,17464.543328322994,17487.04817497042,21050.564510848024,265480050.22587676,261200129.95568598,63419881.67034747,0.0 + 08/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,71634538.24305317,0.0,67570612.8645208,0.0,67041032.072598177,0.0,79949124.58981458,10154.398731402505,9995.429724961188,10008.309856374102,12047.80647757983,151941401.24514348,286195307.76998677,63419881.67034747,69761869.8373822 + 08/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,66066927.02853922,0.0,62939003.25774742,0.0,61750009.929683048,0.0,73920658.5145806,10143.838247264666,9985.034567172585,9997.901303363677,12035.276866268747,151783383.54265083,264676598.7305503,49326574.63249246,69761869.8373822 + 08/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,58246041.056307289,0.0,55530227.55709711,0.0,54987166.43185581,0.0,65635362.34229448,5083.612063458821,5004.02716825848,5010.475368015215,6031.511659891547,76066654.53464663,234398797.38755466,35233267.594637479,69761869.8373822 + 08/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50097009.74516417,0.0,47384145.7383823,0.0,48489432.59342461,0.0,57295497.918044697,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,203266085.99501578,35233267.594637479,62010550.96656194 + 08/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,39748398.97240563,0.0,36789288.4089298,0.0,39385559.90281062,0.0,45820746.83083986,2555.722915824953,2515.7125968080747,2518.9543492625086,3032.26768168501,38241567.15688997,161743994.11498589,35233267.594637479,46507913.22492146 + 08/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,25312823.53983663,0.0,22884445.107448948,0.0,25873221.243016147,0.0,29568640.104587944,2555.722915824953,2515.7125968080747,2518.9543492625086,3032.26768168501,38241567.15688997,103639129.99488965,21139960.556782485,23253956.61246073 + 08/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12674175.661809832,0.0,10701716.328304844,0.0,14104347.141005109,0.0,15420258.409370939,1280.3947885928477,1260.3499693200147,1261.9740588967305,1519.139540991588,19158690.08808425,52900497.54049072,14093307.03785499,0.0 + 08/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8100190.91567922,0.0,6193383.441212815,0.0,10601594.21198011,0.0,11045864.343633313,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,35941032.912505459,14093307.03785499,0.0 + 08/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5087753.843042348,0.0,3059087.928815794,0.0,8358336.732943883,0.0,8078688.429475073,1283.5730650307972,1263.4784892474216,1265.1066102413852,1522.910444662945,19206246.993057178,24583866.934277096,14093307.03785499,0.0 + 08/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1229106.1251239649,0.0,129790.35323407444,0.0,5316744.563060082,0.0,4131355.2016512809,1285.7652898686623,1265.6363943964908,1267.2672960714916,1525.5114357507053,19239049.49791446,10806996.243069403,14093307.03785499,0.0 + 08/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20377254.952179076,0.0,26610654.654763018,0.0,26378044.11945338,0.0,29074360.521263694,1284.8022972937307,1264.6884776499658,1266.318157837487,1524.3688818202357,19224640.132565109,102440314.24765916,14093307.03785499,0.0 + 08/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,46022866.236563798,0.0,50140754.13370757,0.0,48551499.59853934,0.0,57722262.569533977,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,202437382.53834469,14093307.03785499,15502637.741640486 + 08/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,86634988.93094488,0.0,84287158.4055031,0.0,76277991.17308282,0.0,92407290.91883114,20401.785286818464,20082.391532204038,20108.26974346037,24205.93945878816,305274189.6765757,339607429.4283619,56373228.15141996,38756594.35410121 + 08/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,105535065.34853173,0.0,89491490.62569927,0.0,76773370.62540251,0.0,93813379.39975074,17770.197779954382,17492.002018682073,17514.542248654678,21083.6613357647,265897452.179001,365613305.99938419,56373228.15141996,38756594.35410121 + 08/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,98649400.74193213,0.0,74107075.3376667,0.0,56354707.55114069,0.0,70571337.78512842,12655.900740543218,12457.77025349406,12473.823362003866,15015.74312322324,189371654.9253518,299682521.4158679,28186614.07570998,0.0 + 08/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,104146579.6263788,0.0,72831719.77537388,0.0,52727298.570768747,0.0,67284654.92500861,10096.019450590538,9937.964382680977,9950.770464134997,11978.54168937058,151067865.55239753,296990252.8975301,28186614.07570998,0.0 + 08/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,99939946.98921868,0.0,70442535.79423186,0.0,49399943.37844069,0.0,65022088.24212833,5035.948748357634,4957.110031246785,4963.4977734837489,5974.96095594458,75353463.03251788,284804514.4040196,28186614.07570998,0.0 + 08/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,100949442.21737184,0.0,75261019.11688036,0.0,51836863.527262318,0.0,69613709.72932075,5032.853830431417,4954.063564838059,4960.447381392109,5971.288953965403,75307153.43025717,297661034.5908353,28186614.07570998,0.0 + 08/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,103528401.57757847,0.0,84032713.29826501,0.0,60439229.89296182,0.0,78046328.82532889,4998.47073614475,4920.21874430661,4926.558948354937,5930.49472507767,74792675.35398229,326046673.59413418,28186614.07570998,0.0 + 08/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,104157650.66829975,0.0,88101207.83847924,0.0,66083683.94911462,0.0,83222217.37414715,7492.529256757327,7375.232313512838,7384.736053123113,8889.599955717873,112111551.28480014,341564759.8300407,28186614.07570998,0.0 + 08/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,101287683.98354294,0.0,92459626.41009352,0.0,71589313.88304453,0.0,88540490.52420663,12496.176840361875,12300.546860766523,12316.397370887338,14826.236812694176,186981688.3849557,353877114.8008876,28186614.07570998,0.0 + 08/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,90321266.67465753,0.0,88951278.57632026,0.0,73419574.10664477,0.0,89710872.33450663,12513.205314624603,12317.30875108801,12333.180860615355,14846.44044739008,187236487.345385,342402991.6921292,35233267.594637479,0.0 + 08/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,78996081.95335296,0.0,78527767.30448637,0.0,65833772.469908509,0.0,82629605.58606653,17570.55659584352,17295.486254551495,17317.77325390407,20846.794691589665,262910198.8651995,305987227.31381437,14093307.03785499,0.0 + 08/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,79592380.0186676,0.0,79823086.85235222,0.0,69155612.94720786,0.0,86447047.1884966,17688.46583360053,17411.549601195475,17433.98616001654,20986.689501316054,264674487.94606299,315018127.00672426,63419881.67034747,0.0 + 08/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,76609784.43350382,0.0,72713580.51192069,0.0,70256912.34104634,0.0,84357286.3466798,10172.236919457151,10012.988652854128,10025.891410737835,12068.970806781168,152208316.04338903,303937563.6331507,63419881.67034747,69761869.8373822 + 08/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,66792338.78336218,0.0,63343066.826068099,0.0,62124061.588639508,0.0,74364065.06407444,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,266623532.2621442,49326574.63249246,69761869.8373822 + 08/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,59294647.34287618,0.0,56082872.84101615,0.0,55760690.40756891,0.0,66459225.53474748,5103.836512387709,5023.93499966652,5030.408852695975,6055.507196530997,76369275.22061233,237597436.12620873,35233267.594637479,69761869.8373822 + 08/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,53207629.26556483,0.0,49616317.14543339,0.0,50297867.838703159,0.0,59402445.07140147,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,212524259.32110287,35233267.594637479,62010550.96656194 + 08/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,42298241.29028982,0.0,38682406.62993221,0.0,40965260.500698748,0.0,47806597.60793026,2563.619649393605,2523.485705539576,2526.7374744379947,3041.6368546273645,38359726.86239474,169752506.02885104,35233267.594637479,46507913.22492146 + 08/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,23493416.85882461,0.0,19932586.270782778,0.0,24001228.65256527,0.0,26880927.80378864,2573.3444931281676,2533.0583050313055,2536.322409201224,3053.175010498315,38505240.78429244,94308159.5859613,21139960.556782485,23253956.61246073 + 08/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,9207850.660469372,0.0,5890121.984309457,0.0,11133566.499551896,0.0,11086479.45713337,1287.1894322950385,1267.0382416075084,1268.6709497057244,1527.2011263767423,19260359.099946049,37318018.60146409,14093307.03785499,0.0 + 08/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,5623895.731179983,0.0,1978380.802518643,0.0,8624229.151441042,0.0,7712373.662442869,1287.8474340011817,1267.6859421741918,1269.3194849006973,1527.9818202836119,19270204.852894859,23938879.347582539,14093307.03785499,0.0 + 08/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1125291.2905920419,0.0,0.0,0.0,5216720.717869791,0.0,3059739.3139181549,1288.9118143106217,1268.7336594113274,1270.3685522284314,1529.244666890868,19286131.294228496,9401751.322379988,14093307.03785499,0.0 + 08/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3172234.1314037756,0.0,388765.3600469191,1288.6190426580759,1268.4454711536189,1270.079992610738,1528.8973045009037,19281750.51932401,3560999.4914506946,14093307.03785499,0.0 + 08/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,23566265.52655326,0.0,28155585.0709695,0.0,29706237.05924633,0.0,33181363.637346858,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,114609451.29411593,14093307.03785499,0.0 + 08/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,55794925.46098628,0.0,60337915.24478397,0.0,55030228.66053367,0.0,66322207.076220829,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,237485276.44252474,14093307.03785499,15502637.741640486 + 08/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,90536107.179804,0.0,87848118.1209332,0.0,80258395.60060388,0.0,97154393.72259724,20401.785286818464,20082.391532204038,20108.26974346037,24205.93945878816,305274189.6765757,355797014.6239383,56373228.15141996,38756594.35410121 + 08/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,107497900.65270037,0.0,91751864.45531173,0.0,79039510.62607733,0.0,96344405.72996561,17770.197779954382,17492.002018682073,17514.542248654678,21083.6613357647,265897452.179001,374633681.464055,56373228.15141996,38756594.35410121 + 08/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,102792795.82110928,0.0,77685191.70400568,0.0,59131361.4473888,0.0,73991776.66278923,12645.351295663126,12447.385962141565,12463.425689432059,15003.226609570078,189213802.40450458,313601125.63529297,28186614.07570998,0.0 + 08/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,115073286.26871845,0.0,80119176.79774502,0.0,58139299.74377553,0.0,74716698.24340844,10049.956801685223,9892.622853137253,9905.370507402542,11923.890114763828,150378624.99715985,328048461.0536474,28186614.07570998,0.0 + 08/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,125300534.3715159,0.0,84398990.20931462,0.0,56760838.54222926,0.0,76745457.58915633,5000.184992413368,4921.906163573548,4928.248542033831,5932.528624703201,74818325.96180621,343205820.71221616,28186614.07570998,0.0 + 08/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,135100420.82349218,0.0,95823316.01837294,0.0,63129111.55543037,0.0,87480183.89843177,4989.786108195722,4911.6700758282399,4917.999264044686,5920.190745528777,74662726.29695073,381533032.29572728,28186614.07570998,0.0 + 08/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,131778485.73187077,0.0,102182419.64517135,0.0,72751977.01359084,0.0,93873986.1051096,4979.117403943153,4901.168392130989,4907.484047856107,5907.532735182582,74503089.28480619,400586868.49574258,28186614.07570998,0.0 + 08/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,128699149.21955049,0.0,109263284.53936869,0.0,79561631.98987626,0.0,101264949.66755413,7468.676105914729,7351.752588196481,7361.226071784161,8861.299102773874,111754633.92720929,418789015.41634956,28186614.07570998,0.0 + 08/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,120566258.44894517,0.0,109483617.91317609,0.0,84472306.71903388,0.0,105016078.6887266,12461.21313855377,12266.130522232696,12281.936683388509,14784.753715145407,186458522.61355338,419538261.7698817,28186614.07570998,0.0 + 08/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,111231531.96658476,0.0,108019166.65418859,0.0,87674087.3088061,0.0,107943540.69631541,12478.84522808235,12283.486578110444,12299.31510431575,14805.673516312832,186722353.53655697,414868326.62589487,35233267.594637479,0.0 + 08/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,92886102.34719838,0.0,90725605.96347744,0.0,74987126.79152985,0.0,94372296.36630062,17518.487440474444,17244.23225152321,17266.453204861496,20785.016626346107,262131082.28353895,352971131.4685063,14093307.03785499,0.0 + 08/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,89298520.31418273,0.0,87670644.61459826,0.0,74910910.02501895,0.0,93649899.94221683,17604.045475686577,17328.45085973326,17350.780337344244,20886.52796917432,263411296.71097825,345529974.8960167,63419881.67034747,0.0 + 08/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,90375076.26113896,0.0,85953730.38833307,0.0,79722849.86909762,0.0,96823450.3702842,10093.060282934695,9935.051541346817,9947.853869307472,11975.030749905296,151023587.1965794,352875106.88885387,63419881.67034747,69761869.8373822 + 08/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,82826562.59936038,0.0,79154169.27720143,0.0,73412998.27303222,0.0,89220267.67401469,10121.92375444592,9963.46314982706,9976.302089045152,12009.27615706692,151455474.5413862,324613997.82360878,49326574.63249246,69761869.8373822 + 08/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,77428170.10387378,0.0,74189212.30349708,0.0,68108285.8262957,0.0,82911974.43278726,5059.5552800734299,4980.346998304775,4986.76468374554,6002.969204708657,75706690.20059665,302637642.6664538,35233267.594637479,69761869.8373822 + 08/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,70672990.30954834,0.0,67536135.92129162,0.0,61994797.82474987,0.0,75370539.36808466,5065.132546146588,4985.836951237121,4992.261711042587,6009.586418007126,75790143.45516032,275574463.42367449,35233267.594637479,62010550.96656194 + 08/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,57034089.195900399,0.0,54221366.01991839,0.0,51280936.38159288,0.0,61862766.16371509,2544.295588965163,2504.4641668820406,2507.691424586411,3018.7095945737526,38070578.790026519,224399157.76112677,35233267.594637479,46507913.22492146 + 08/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,41745859.07812615,0.0,39437157.93664431,0.0,37218581.053288917,0.0,44814026.62341529,2541.8060317294105,2502.01358412924,2505.2376840076078,3015.7558299457739,38033327.267323318,163215624.69147469,21139960.556782485,23253956.61246073 + 08/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29577993.80029446,0.0,27931899.10220453,0.0,26369084.032341999,0.0,31720900.514268124,1272.7575307898933,1252.8322742126948,1254.4466764719496,1510.0782261404357,19044412.947413904,115599877.4491091,14093307.03785499,0.0 + 08/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,25962264.518028,0.0,24616907.204057449,0.0,24452223.555001078,0.0,29118215.072756947,1274.824782393121,1254.8671626064286,1256.4841870270755,1512.5309412558204,19075345.463816804,104149610.34984347,14093307.03785499,0.0 + 08/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,23853415.644689867,0.0,22526245.1169653,0.0,22722235.35584918,0.0,26970284.082209968,1274.535847858056,1254.582751395411,1256.199409323183,1512.1881314592752,19071022.10412933,96072180.19971432,14093307.03785499,0.0 + 08/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20406257.879793317,0.0,19194702.75069068,0.0,19980537.25095177,0.0,23526269.957892389,1276.787349414758,1256.7990052752255,1258.41851907233,1514.8594521112039,19104711.57314466,83107767.83932816,14093307.03785499,0.0 + 08/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,29547491.020462797,0.0,33114670.717182816,0.0,29493972.350588185,0.0,34851889.711689967,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,127008023.79992375,14093307.03785499,0.0 + 08/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,43399707.928490418,0.0,44900663.18384009,0.0,41340391.85236696,0.0,49746860.125240508,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,179387623.08993799,14093307.03785499,15502637.741640486 + 08/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,78729112.31123969,0.0,76164634.42739286,0.0,69292178.30210573,0.0,84387713.07690025,20319.15813384135,20001.057922720862,20026.831327319826,24107.90549585315,304037830.36704668,308573638.1176385,56373228.15141996,38756594.35410121 + 08/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,104586893.12162349,0.0,92759842.39531976,0.0,74033041.94557508,0.0,92270565.91970255,17693.50294267762,17416.50785339029,17438.950801425384,20992.665838957742,264749858.77122373,363650343.38222089,56373228.15141996,38756594.35410121 + 08/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,101965051.73432169,0.0,80747599.4742805,0.0,54903843.84495999,0.0,70577388.25018966,12608.867172613285,12411.473004844176,12427.466454623633,14959.939590256037,188667886.4004137,308193883.3037519,28186614.07570998,0.0 + 08/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,105459086.32226329,0.0,80700407.43026929,0.0,52508494.12529708,0.0,68576243.6605132,10049.956801685223,9892.622853137253,9905.370507402542,11923.890114763828,150378624.99715985,307244231.53834286,28186614.07570998,0.0 + 08/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,101785681.49292779,0.0,73152253.64307009,0.0,47684449.79561232,0.0,64406766.514856029,5000.184992413368,4921.906163573548,4928.248542033831,5932.528624703201,74818325.96180621,287029151.4464662,28186614.07570998,0.0 + 08/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,100599067.18628302,0.0,80401713.3443782,0.0,51773164.52341918,0.0,70896422.08259157,4984.485255421508,4906.452208893079,4912.774673355403,5913.901486058164,74583409.04542136,303670367.136672,28186614.07570998,0.0 + 08/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,96696230.80400008,0.0,81579065.17988888,0.0,55046442.59817003,0.0,73680929.52665188,4993.282562248834,4915.111792240888,4921.445415460221,5924.339154794939,74715044.12908158,307002668.1087109,28186614.07570998,0.0 + 08/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86463221.78962729,0.0,78356298.58017919,0.0,55732932.97466788,0.0,72946041.59580806,7517.9568219845209,7400.261805462892,7409.797798128252,8919.768791230099,112492026.78050074,293498494.9402824,28186614.07570998,0.0 + 08/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77311241.25400174,0.0,74612374.55520852,0.0,52882304.53617311,0.0,68730872.8899785,12538.173936433974,12341.886484465062,12357.790264910462,14876.064764056007,187610095.6195158,273536793.2353618,28186614.07570998,0.0 + 08/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,79088218.29146099,0.0,78941152.31677367,0.0,58429524.95557436,0.0,75054074.00262484,12534.060641465054,12337.837583896215,12353.736146919968,14871.184496589505,187548547.92793469,291512969.56643387,35233267.594637479,0.0 + 08/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,72149407.56928717,0.0,73679972.17056604,0.0,58733705.20833412,0.0,75672614.603196,17625.820619251717,17349.885109363742,17372.242207193118,20912.363345806025,263737120.61381258,280235699.5513833,14093307.03785499,0.0 + 08/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,71340554.40454416,0.0,71944463.1332247,0.0,60707826.20081391,0.0,76591886.21055204,17693.50294267762,17416.50785339029,17438.950801425384,20992.665838957742,264749858.77122373,280584729.9491348,63419881.67034747,0.0 + 08/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,79052251.68745618,0.0,77380754.64686165,0.0,70459625.57960697,0.0,86213836.14726927,10113.435210746642,9955.107495862929,9967.935667968046,11999.204823995362,151328459.51486276,313106468.06119409,63419881.67034747,69761869.8373822 + 08/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,67334257.56505385,0.0,65203414.638987418,0.0,62816902.81531309,0.0,75029007.43435033,10124.720592434574,9966.21620279525,9979.058689603093,12012.594498578592,151497323.94028146,270383582.4537047,49326574.63249246,69761869.8373822 + 08/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,46632817.73231961,0.0,43772084.85335781,0.0,49322305.02978982,0.0,55945696.15275572,5120.605084168036,5040.4410563274509,5046.936179095652,6075.402466852618,76620185.23119752,195672903.76822297,35233267.594637479,69761869.8373822 + 08/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34856045.74766755,0.0,31962033.0518158,0.0,39792269.323392119,0.0,44784535.17425576,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,151394883.29713125,35233267.594637479,62010550.96656194 + 08/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,30569801.17376382,0.0,28067220.32461471,0.0,34409697.79466999,0.0,38763759.10362032,2557.8018331879968,2517.7589683319786,2521.0033577449896,3034.734237779107,38272674.22935866,131810478.39666885,35233267.594637479,46507913.22492146 + 08/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,22344020.06076372,0.0,20512560.85432715,0.0,25082636.684914259,0.0,28119947.079155305,2550.223160852308,2510.2989415255049,2513.533717932546,3025.74243234852,38159273.709571968,96059164.67916042,21139960.556782485,23253956.61246073 + 08/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13278071.388234798,0.0,11650868.09500093,0.0,15664101.810486129,0.0,17264129.135868584,1276.5134274640412,1256.529371623747,1258.1485379703709,1514.534454172922,19100612.84843189,57857170.42959044,14093307.03785499,0.0 + 08/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11814518.669408128,0.0,9951515.058614482,0.0,14872174.73381106,0.0,16303639.164463422,1276.5134274640412,1256.529371623747,1258.1485379703709,1514.534454172922,19100612.84843189,52941847.626297097,14093307.03785499,0.0 + 08/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10514437.913309534,0.0,8625247.96865913,0.0,14079838.34590377,0.0,15131882.190862962,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,48351406.41873539,14093307.03785499,0.0 + 08/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10019026.313533377,0.0,8217050.2560772099,0.0,13639850.940175485,0.0,14558112.256708734,1277.0591160322547,1257.0665173356272,1258.686375849326,1515.181892828894,19108778.047365965,46434039.766494799,14093307.03785499,0.0 + 08/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,20323598.92689238,0.0,23711633.14222096,0.0,23704419.153306813,0.0,26770361.24984606,1277.8614579124765,1257.8562984040373,1259.4771746312543,1516.133840842505,19120783.578444985,94510012.4722662,14093307.03785499,0.0 + 08/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,42822850.30479177,0.0,45692571.92967418,0.0,43230730.187221657,0.0,51415537.63981167,1275.6787559991336,1255.7077670963304,1257.325874721661,1513.5441483411779,19088123.566169889,183161690.06149928,14093307.03785499,15502637.741640486 + 08/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,66886335.41493926,0.0,64578876.43387588,0.0,59923118.13901917,0.0,72304376.8771749,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,263692706.8650092,56373228.15141996,38756594.35410121 + 08/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47550252.680931139,0.0,43628197.50397959,0.0,41839506.322487708,0.0,49736027.23645258,12733.58800452011,12534.241308860852,12550.392958130735,15107.916096426645,190534098.12457804,182753983.743851,56373228.15141996,38756594.35410121 + 08/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46926080.45009195,0.0,37777200.02554703,0.0,28810170.59733678,0.0,35325528.8925987,12689.72943663277,12491.069355035595,12507.165372836504,15055.879579812776,189877837.47954355,148838979.96557445,28186614.07570998,0.0 + 08/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67065995.08793916,0.0,47708373.767650488,0.0,31973218.013400336,0.0,40505305.19035126,12692.998414253132,12494.287156201483,12510.387320467627,15059.758096974789,189926751.55642934,187252892.05934123,28186614.07570998,0.0 + 08/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52423810.96264613,0.0,38212530.63022656,0.0,26472392.45443771,0.0,33707688.45622335,7617.747934188797,7498.490669189598,7508.153239771881,9038.167136599539,113985212.32709933,150816422.50353376,28186614.07570998,0.0 + 08/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49937029.97995868,0.0,40460012.43757,0.0,26782395.444516999,0.0,34661161.04196081,7636.54518473936,7516.993645276167,7526.680058831697,9060.469356842616,114266477.68448343,151840598.90400649,28186614.07570998,0.0 + 08/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47602363.397749748,0.0,40968877.212902788,0.0,28646790.064924618,0.0,36531284.49834536,7597.698819219882,7478.755426855679,7488.392566563882,9014.37962701069,113685215.18274048,153749315.17392255,28186614.07570998,0.0 + 08/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,41437718.58659345,0.0,35631813.761232677,0.0,27255605.488625707,0.0,33114535.582848949,7636.54518473936,7516.993645276167,7526.680058831697,9060.469356842616,114266477.68448343,137439673.41930077,28186614.07570998,0.0 + 08/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21674440.671059174,0.0,17172473.590035775,0.0,19362979.999738654,0.0,20816885.668721234,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,79026779.92955484,28186614.07570998,0.0 + 08/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19527043.970712048,0.0,16863634.284618677,0.0,20428752.894033426,0.0,21818653.58301473,22962.217607984407,22602.739807733946,22631.865744989904,27243.7946701412,343586224.19105806,78638084.73237887,35233267.594637479,0.0 + 08/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12182675.454865508,0.0,10783396.311497953,0.0,14676232.023780674,0.0,15552278.692183428,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,53194582.48232756,14093307.03785499,0.0 + 08/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24688468.131823359,0.0,23554463.846759879,0.0,28828070.306292364,0.0,32663349.188661145,17893.744082588822,17613.614180901233,17636.31112055755,21230.244307788165,267746089.29060877,109734351.47353675,63419881.67034747,0.0 + 08/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,38866622.82641806,0.0,36081936.27567893,0.0,45382864.99363065,0.0,51030237.918724048,15349.864180952634,15109.559193685482,15129.029402907197,18212.027910362478,229681730.47646804,171361662.01445169,63419881.67034747,69761869.8373822 + 08/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,29640456.151732375,0.0,26563002.861294237,0.0,36191966.02870683,0.0,39601278.10207532,12831.455361284885,12630.576533898336,12646.852320938411,15224.031979401374,191998498.30388285,131996703.14380877,49326574.63249246,69761869.8373822 + 08/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24039906.860343923,0.0,20599512.096466364,0.0,30431475.08263367,0.0,32700810.87986392,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,107771704.91930788,35233267.594637479,69761869.8373822 + 08/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18341053.968716466,0.0,14433219.585205075,0.0,25248550.769378738,0.0,26511057.04224294,7717.897214500606,7597.072093835295,7606.861696645232,9156.990434756448,115483757.1830553,84533881.36554322,35233267.594637479,62010550.96656194 + 08/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4960870.973056799,0.0,1287911.7291455579,0.0,14480373.785810585,0.0,13014358.608698514,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,33743515.09671146,35233267.594637479,46507913.22492146 + 08/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,855451.3598429543,0.0,0.0,2579.471132248157,2539.0890304729484,2542.360905848142,3060.44403394599,38596914.369054857,855451.3598429543,21139960.556782485,23253956.61246073 + 08/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 08/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 + 08/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.435370197342,1271.2177085598726,1272.8558023278459,1532.2387696204117,19323891.5425397,0.0,14093307.03785499,0.0 + 08/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 + 08/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 + 08/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5411861.46072763,0.0,559811.9528857939,1289.3339308916439,1269.1491676785279,1270.7845959204443,1529.7454921010706,19292447.47173007,5971673.413613424,14093307.03785499,15502637.741640486 + 08/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,35443774.685361068,0.0,32189222.522172098,0.0,45639371.28175491,0.0,48382596.98639754,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,161654965.47568564,56373228.15141996,38756594.35410121 + 08/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,66690973.73604492,0.0,48437673.02565434,0.0,49369010.60792597,0.0,56471225.39979115,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,220968882.7694164,56373228.15141996,38756594.35410121 + 08/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48027433.661406818,0.0,28437583.823415679,0.0,24021271.390207158,0.0,27179145.39738249,7701.438390184783,7580.870935484527,7590.639661448311,9137.462667977672,115237481.95834306,127665434.27241215,28186614.07570998,0.0 + 08/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61935421.40572795,0.0,31180475.53239949,0.0,23431204.683521205,0.0,27483826.647757465,7693.583394255568,7573.138910981932,7582.897673442953,9128.143015151287,115119946.77779427,144030928.26940615,28186614.07570998,0.0 + 08/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69447721.47802279,0.0,30805139.489097638,0.0,20391405.598058579,0.0,26395839.339429764,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,147040105.9046088,28186614.07570998,0.0 + 08/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78125301.35610649,0.0,37471318.060732219,0.0,24181090.31959422,0.0,33896585.161287728,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,173674294.89772064,28186614.07570998,0.0 + 08/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,84477914.15331139,0.0,50364816.66393856,0.0,35350575.58880591,0.0,46173105.80006585,7648.948694358726,7529.202975638569,7538.905122162453,9075.185647534923,114452072.78290083,216366412.20612169,28186614.07570998,0.0 + 08/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83682777.87551967,0.0,58767530.08536943,0.0,45888997.77650574,0.0,56520700.92680297,10182.060246319146,10022.658193701558,10035.573411775596,12080.625809123485,152355303.57931123,244860006.66419784,28186614.07570998,0.0 + 08/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,78850321.86492959,0.0,64298253.390408579,0.0,54548043.38315816,0.0,64460919.19766407,12715.296149321439,12516.235816067658,12532.364263422294,15086.213508476461,190260395.0542363,262157537.83616043,28186614.07570998,0.0 + 08/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,72607658.04788591,0.0,67076675.401681158,0.0,60036397.52790162,0.0,70357078.14438683,15247.038798178919,15008.343561461148,15027.683344009874,18090.029518787633,228143142.8007753,270077809.12185558,35233267.594637479,0.0 + 08/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,60117650.78153719,0.0,55642315.594168428,0.0,51640319.70482708,0.0,62355996.91289735,17831.187542935295,17552.036975545892,17574.654566688056,21156.023361419175,266810048.8077183,229756282.99343003,14093307.03785499,0.0 + 08/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53546900.963306348,0.0,49133206.74002459,0.0,48907520.67861326,0.0,58259335.6920411,10248.897538564239,10088.44913566807,10101.449132085974,12159.925705035994,153355397.44087539,209846964.07398529,63419881.67034747,0.0 + 08/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,50808028.80975173,0.0,43484087.67124278,0.0,50102745.287337329,0.0,56902314.908874239,7707.617967390303,7586.953770256096,7596.730334573344,9144.794500443058,115329947.66158608,201297176.67720608,63419881.67034747,69761869.8373822 + 08/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,42603234.46847017,0.0,36053054.27722301,0.0,43396162.8276913,0.0,48780980.00027639,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,170833431.57366089,49326574.63249246,69761869.8373822 + 08/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33361580.432673515,0.0,26971823.114103848,0.0,35912630.74332779,0.0,39288814.935173969,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,135534849.22527913,35233267.594637479,69761869.8373822 + 08/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26477069.37202832,0.0,20039360.529556518,0.0,30407265.941626349,0.0,32317880.95308128,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,109241576.79629246,35233267.594637479,62010550.96656194 + 08/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,19230957.095554074,0.0,12920076.939150723,0.0,24281720.820998,0.0,24648490.315120654,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,81081245.17082346,35233267.594637479,46507913.22492146 + 08/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,5753407.756580793,0.0,750428.4803730259,0.0,11472119.146300782,0.0,9158842.206848054,2578.6678617832878,2538.2983353570559,2541.5691918408886,3059.490984202141,38584894.943460147,27134797.59010265,21139960.556782485,23253956.61246073 + 08/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,752492.3137882474,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,752492.3137882474,14093307.03785499,0.0 + 08/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 + 08/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,0.0 + 08/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 08/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,8395844.217819553,0.0,3765309.851237779,1288.469252833348,1268.2980263165405,1269.9323577759377,1528.7195845916934,19279509.197463074,12161154.069057333,14093307.03785499,0.0 + 08/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,25317788.470162639,0.0,25625632.38924504,0.0,36174776.88625989,0.0,38683329.61349983,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,125801527.35916738,14093307.03785499,15502637.741640486 + 08/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,58590967.957181129,0.0,53939454.2063348,0.0,55280417.69602921,0.0,63486986.33994295,20530.328578055814,20208.922454237345,20234.963713501456,24358.451167042196,307197597.28621259,231297826.1994881,56373228.15141996,38756594.35410121 + 08/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,82045465.51137533,0.0,64925577.2934773,0.0,61174393.39922659,0.0,71706066.95871066,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,279851503.1627898,56373228.15141996,38756594.35410121 + 08/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75540151.1046105,0.0,53315121.73530026,0.0,41283953.26429164,0.0,50720146.28174675,12721.477944825816,12522.3208344102,12538.457122932055,15093.547972868762,190352893.9501326,220859372.38594917,28186614.07570998,0.0 + 08/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68134741.21319708,0.0,43390330.14978121,0.0,34041436.43727116,0.0,41466541.41303244,10156.997245585064,9997.987558919465,10010.870986362508,12050.889515466051,151980283.10279913,187033049.2132819,28186614.07570998,0.0 + 08/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62554632.02702234,0.0,44280840.60813818,0.0,33190988.419231345,0.0,41332872.54758288,5071.919123632333,4992.517283586292,4998.950651681838,6017.638433134373,75891691.77132541,181359333.6019748,28186614.07570998,0.0 + 08/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74134506.50540698,0.0,60633820.543702397,0.0,40092343.19305599,0.0,52144067.79113917,5065.132546146588,4985.836951237121,4992.261711042587,6009.586418007126,75790143.45516032,227004738.03330455,28186614.07570998,0.0 + 08/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82923007.89180455,0.0,68491481.27877048,0.0,45621670.325064647,0.0,59146647.70249041,5048.009725295269,4968.9821913404889,4975.385232067499,5989.27084468529,75533932.77619876,256182807.1981301,28186614.07570998,0.0 + 08/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72774734.41989127,0.0,63490221.95498534,0.0,46554077.350494939,0.0,58542638.52323548,7553.923122536451,7435.665046870175,7445.246660225623,8962.44143391687,113030194.54877684,241361672.24860705,28186614.07570998,0.0 + 08/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61561589.74287735,0.0,55888290.25216511,0.0,44110785.51626976,0.0,54171788.61160414,12623.703138115614,12426.076710538919,12442.088978683732,14977.541897000929,188889878.6076211,215732454.12291635,28186614.07570998,0.0 + 08/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,59336042.82467806,0.0,56823055.47725354,0.0,46566511.15944896,0.0,56857435.433076608,12605.108022690612,12407.772705114814,12423.761386680386,14955.479502368362,188611637.82067506,219583044.89445717,35233267.594637479,0.0 + 08/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,52452647.20151134,0.0,51485917.97586368,0.0,43625551.67688213,0.0,54120846.45859611,17652.414041658598,17376.062206781844,17398.453036473085,20943.91542635845,264135040.96057914,201684963.31285329,14093307.03785499,0.0 + 08/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,52887880.861859459,0.0,50745001.41388939,0.0,46837864.07943773,0.0,56849262.90357429,17742.302381935435,17464.543328322994,17487.04817497042,21050.564510848024,265480050.22587676,207320009.25876088,63419881.67034747,0.0 + 08/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,63412069.17032707,0.0,60239483.69368203,0.0,59877691.16974832,0.0,71331967.47860076,10167.224126917641,10008.05433651696,10020.95073603043,12063.023319783095,152133309.06929327,254861211.5123582,63419881.67034747,69761869.8373822 + 08/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,56725256.41444409,0.0,54173332.30837433,0.0,53856626.540273409,0.0,64117135.08137688,10164.69253211928,10005.562374307436,10018.455562673249,12060.019679191755,152095428.5338502,228872350.3444687,49326574.63249246,69761869.8373822 + 08/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,46475819.641895759,0.0,43198372.868158709,0.0,46912279.775480087,0.0,54215176.90794577,5092.23690160619,5012.516982955691,5018.9761227052,6041.744701123089,76195708.95020461,190801649.1934803,35233267.594637479,69761869.8373822 + 08/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,35858311.59760249,0.0,32155708.942634264,0.0,38649473.50529393,0.0,43252717.271082598,5118.630701863739,5038.49758334645,5044.990201751348,6073.059937615377,76590642.32847689,149916211.31661327,35233267.594637479,62010550.96656194 + 08/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24479684.728527234,0.0,21380092.354025864,0.0,28855082.85242775,0.0,31312131.690177926,2560.789577185695,2520.6999386400295,2523.948117793461,3038.279081983176,38317380.1761685,106026991.62515877,35233267.594637479,46507913.22492146 + 08/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,13850588.86847436,0.0,11026589.575768102,0.0,18249149.3332971,0.0,18909397.76464149,2559.8111317610198,2519.736810961006,2522.983749026119,3037.1181938363567,38302739.5881042,62035725.54218105,21139960.556782485,23253956.61246073 + 08/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2820328.978950021,0.0,730170.0877528947,0.0,8986840.562690003,0.0,7230598.21673184,1279.6576754659348,1259.6243958366125,1261.247550437837,1518.2649844038443,19147660.582119224,19767937.846124758,14093307.03785499,0.0 + 08/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,230686.16456424155,0.0,0.0,0.0,7646088.032873392,0.0,4749768.523352389,1280.3947885928477,1260.3499693200147,1261.9740588967305,1519.139540991588,19158690.08808425,12626542.720790023,14093307.03785499,0.0 + 08/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5283590.135762954,0.0,1622767.8808890293,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,6906358.016651983,14093307.03785499,0.0 + 08/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3585234.1476113426,0.0,3050.3235166067026,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,3588284.471127949,14093307.03785499,0.0 + 08/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6708183.800611127,0.0,8804063.259533499,0.0,18341306.186778446,0.0,17425534.27482014,1284.4014615106108,1264.2939170258063,1265.9230887816914,1523.8933054644063,19218642.382017055,51279087.52174321,14093307.03785499,0.0 + 08/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,30119851.4473155,0.0,32216558.84944026,0.0,36863338.31408951,0.0,42141821.83101274,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,141341570.441858,14093307.03785499,15502637.741640486 + 08/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,64232478.976963158,0.0,59643409.06677719,0.0,57833988.47031783,0.0,69231301.79937354,20523.346270123595,20202.049455638346,20228.081858342255,24350.166925211695,307093120.2335372,250941178.3134317,56373228.15141996,38756594.35410121 + 08/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,64877642.81006069,0.0,50780848.68491352,0.0,50534038.94064342,0.0,58647506.30128987,17942.11273599088,17661.225614011113,17683.983905858593,21287.63186870469,268469834.848435,224840036.7369075,56373228.15141996,38756594.35410121 + 08/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23026818.748029096,0.0,13963372.271324672,0.0,14464215.876747346,0.0,14951950.76338793,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,66406357.65948904,28186614.07570998,0.0 + 08/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36811336.089638847,0.0,26041720.26529727,0.0,18497864.806855389,0.0,21335810.63140546,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,102686731.79319696,28186614.07570998,0.0 + 08/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44903951.35977577,0.0,27897549.350073548,0.0,17780205.32304948,0.0,22450142.941881908,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,113031848.9747807,28186614.07570998,0.0 + 08/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54596414.34417839,0.0,29480608.929935986,0.0,17932979.076903657,0.0,24639719.870007364,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,126649722.22102539,28186614.07570998,0.0 + 08/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53758052.50151649,0.0,33743918.04380754,0.0,22992822.000990537,0.0,29668839.471476787,5106.0537098561649,5026.117486494988,5032.594151881483,6058.137816691688,76402451.39372756,140163632.01779134,28186614.07570998,0.0 + 08/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53386547.52034217,0.0,39657903.20294259,0.0,29064054.6912352,0.0,35823533.2510543,7652.377435231655,7532.578038933501,7542.284534570927,9079.25371769757,114503377.41516115,157932038.66557426,28186614.07570998,0.0 + 08/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50201324.7992976,0.0,41533705.941424299,0.0,33315053.532859766,0.0,39418639.074710588,12753.962392052756,12554.296731555838,12570.474224284877,15132.089529495946,190838962.35860194,164468723.34829224,28186614.07570998,0.0 + 08/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,44147579.05269335,0.0,40384127.937353368,0.0,35563481.39098048,0.0,41251820.103988829,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,161347008.48501603,35233267.594637479,0.0 + 08/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,35272172.35614839,0.0,32387762.295137537,0.0,30754777.71297201,0.0,36496187.1944791,17911.70643047574,17631.295324881106,17654.01504849612,21251.555947891018,268014861.90627835,134910899.55873705,14093307.03785499,0.0 + 08/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,37156704.38509286,0.0,34200554.85859116,0.0,35488550.3149813,0.0,41736001.69815955,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,148581811.25682489,63419881.67034747,0.0 + 08/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,38648519.81470322,0.0,33174423.323060037,0.0,39683279.55224812,0.0,44598892.9744907,10290.52961933414,10129.429458447063,10142.482262193642,12209.32057967526,153978342.91074039,156105115.66450209,63419881.67034747,69761869.8373822 + 08/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,29630831.225874068,0.0,24380153.318402824,0.0,32321935.090425474,0.0,35376360.56301628,10301.490574943315,10140.218818251411,10153.285525189345,12222.32533510015,154142352.9125432,121709280.19771862,49326574.63249246,69761869.8373822 + 08/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20204943.5732216,0.0,14982547.166286443,0.0,24645957.40865694,0.0,25604973.575902538,5160.466741297114,5079.678671777988,5086.224356218598,6122.696801423272,77216639.6545811,85438421.72406753,35233267.594637479,69761869.8373822 + 08/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13801857.029943722,0.0,8642847.84753421,0.0,19621174.327192509,0.0,19112581.44058554,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,77245140.69979945,61178460.64525598,35233267.594637479,62010550.96656194 + 08/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3396604.5946327236,0.0,504411.9076039924,0.0,10907200.295370976,0.0,8043547.933835333,2585.795773120085,2545.3146579121655,2548.5945556437516,3067.9479789141485,38691550.67612454,22851764.731443027,35233267.594637479,46507913.22492146 + 08/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,38686744.80854042,0.0,21139960.556782485,23253956.61246073 + 08/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 + 08/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,19353877.68371783,0.0,14093307.03785499,0.0 + 08/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,19347396.0745494,0.0,14093307.03785499,0.0 + 08/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3195577.389256929,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,22548252.28975389,0.0,14093307.03785499,0.0 + 08/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.1887077292618,1274.8293413308407,1534.6144770400713,19353852.873256897,0.0,14093307.03785499,0.0 + 08/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2096574.1946685676,0.0,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,77366390.93268533,2096574.1946685676,14093307.03785499,15502637.741640486 + 08/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,22102902.26463705,0.0,19554118.940110327,0.0,38224442.702368918,0.0,33329861.750444633,20647.636089284482,20324.39349449403,20350.5835499794,24497.63205121202,308952882.66589179,113211325.65756092,56373228.15141996,38756594.35410121 + 08/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,51999623.867194648,0.0,35820809.38064332,0.0,39359161.94374509,0.0,43810323.705281037,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,170989918.8968641,56373228.15141996,38756594.35410121 + 08/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47984556.39349488,0.0,21984822.32991468,0.0,20108820.92139556,0.0,21867371.376941727,12870.192900105518,12668.707629322253,12685.032552170744,15269.992590509291,192578132.4195881,111945571.02174685,28186614.07570998,0.0 + 08/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55888301.7675877,0.0,20250833.469600645,0.0,15391225.264632944,0.0,17055179.366305885,10284.617336202597,10123.609733210878,10136.655037647482,12202.305881425405,153889876.7585509,108585539.86812717,28186614.07570998,0.0 + 08/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62300384.56422491,0.0,20258780.822347855,0.0,12893996.164720241,0.0,16180254.011683427,5131.713784538751,5051.375847921537,5057.885061284797,6088.5825157973099,76786405.95435262,111633415.56297642,28186614.07570998,0.0 + 08/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70558243.91555539,0.0,27922062.382266899,0.0,17238106.234734186,0.0,24043528.85619134,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,139761941.3887478,28186614.07570998,0.0 + 08/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77225343.0848499,0.0,40188348.119927559,0.0,27023129.858586629,0.0,35283538.17728647,5112.498309311092,5032.461194543211,5038.946034445014,6065.784087939475,76498882.65445966,179720359.24065054,28186614.07570998,0.0 + 08/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76891270.51855025,0.0,49105425.00619148,0.0,37578083.37623103,0.0,45968635.13953161,7660.724096488548,7540.7940316513499,7550.511114433981,9089.156712667225,114628269.43886797,209543414.0405044,28186614.07570998,0.0 + 08/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70114206.39967187,0.0,53285886.32550908,0.0,45511736.76354552,0.0,52884533.66815624,12775.961728576931,12575.951664362752,12592.157061682987,15158.190902515575,191168140.8856977,221796363.1568827,28186614.07570998,0.0 + 08/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,63011533.517805349,0.0,55614174.90573658,0.0,50795332.10226624,0.0,58403271.89368947,12759.591280969275,12559.837499166297,12576.022131739937,15138.767991327491,190923188.0515308,227824312.41949765,35233267.594637479,0.0 + 08/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,51540685.56133348,0.0,45213878.7686038,0.0,44105846.85464474,0.0,52154920.76469355,17915.207456523087,17634.741541712567,17657.46570612972,21255.709781653815,268067248.14966909,193015331.94927556,14093307.03785499,0.0 + 08/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,48240170.120202299,0.0,41863863.781571399,0.0,43780443.23795472,0.0,51150026.55080731,17951.694586596324,17670.65745895784,17693.427904700224,21299.00036868633,268613209.14818659,185034503.69053573,63419881.67034747,0.0 + 08/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,46526888.313598077,0.0,37793119.36439106,0.0,45578479.54840515,0.0,50926024.84143193,10300.183598590404,10138.93230285712,10151.997351988657,12220.774657547772,154122796.47954227,180824512.0678262,63419881.67034747,69761869.8373822 + 08/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,38493368.52163093,0.0,30512022.115390779,0.0,39165593.623579639,0.0,43101863.3587033,10296.154320084415,10134.966103457804,10148.026041736592,12215.994072407433,154062505.9356705,151272847.61930464,49326574.63249246,69761869.8373822 + 08/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32258871.46659054,0.0,24597353.680972537,0.0,34173667.80363526,0.0,36830744.68350245,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,127860637.6347008,35233267.594637479,69761869.8373822 + 08/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27197883.3427106,0.0,19841983.551219293,0.0,30316548.198968535,0.0,31970719.08804991,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,109327134.18094835,35233267.594637479,62010550.96656194 + 08/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20472244.185800479,0.0,13639816.73818971,0.0,24543117.239663744,0.0,24932573.87105678,2576.3257447465459,2535.992884599446,2539.2607702746647,3056.7121517421508,38549849.5849061,83587752.0347107,35233267.594637479,46507913.22492146 + 08/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,4867139.120406989,0.0,492191.3487339335,0.0,10473860.56623345,0.0,7674432.235895393,2581.185747601241,2540.7768032028186,2544.050853445442,3062.478359611532,38622570.349899727,23507623.27126977,21139960.556782485,23253956.61246073 + 08/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,0.0,14093307.03785499,0.0 + 08/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.435370197342,1271.2177085598726,1272.8558023278459,1532.2387696204117,19323891.5425397,0.0,14093307.03785499,0.0 + 08/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 + 08/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 + 08/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2773993.2048135839,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,2773993.2048135839,14093307.03785499,0.0 + 08/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15575095.846421084,0.0,14696608.56568733,0.0,31379819.949215779,0.0,29429028.256266364,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,91080552.61759055,14093307.03785499,15502637.741640486 + 08/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,61660824.97993676,0.0,55843212.0643931,0.0,59522973.317383248,0.0,67336799.58316915,20597.71711098278,20275.256007110016,20301.382743927534,24438.405088981595,308205939.423607,244363809.94488228,56373228.15141996,38756594.35410121 + 08/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,76970390.52416542,0.0,59414052.338995497,0.0,56093938.657249029,0.0,66430423.000802058,17984.441923910705,17702.892130597556,17725.704114004468,21337.853834367128,269103211.21036747,258908804.521212,56373228.15141996,38756594.35410121 + 08/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,69447886.05982259,0.0,42224030.24562953,0.0,34998278.61906758,0.0,41405643.347614329,12803.947885928475,12603.499693200145,12619.740588967305,15191.39540991588,191586900.88084249,188075838.272134,28186614.07570998,0.0 + 08/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79022840.43918967,0.0,42245296.25509234,0.0,31537370.863935379,0.0,38072602.05373273,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,190878109.6119501,28186614.07570998,0.0 + 08/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83995200.76017547,0.0,42903689.28125443,0.0,29297139.958977194,0.0,38043753.94153605,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,194239783.94194315,28186614.07570998,0.0 + 08/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89260024.84306401,0.0,49497587.52290569,0.0,32833218.56688991,0.0,45161896.1393981,5075.891774653108,4996.427742014239,5002.866149134601,6022.351831925111,75951134.99181742,216752727.0722577,28186614.07570998,0.0 + 08/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,91708900.4011173,0.0,58857781.73744011,0.0,40950925.1778433,0.0,53705834.62215771,5069.229251981554,4989.869522378,4996.299478562977,6014.447003099436,75851442.92167908,245223441.93855844,28186614.07570998,0.0 + 08/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88114677.73912342,0.0,64695709.72266209,0.0,49117579.44442292,0.0,61285186.162281598,7599.759525721978,7480.78387261306,7490.42362618066,9016.824576613424,113716049.76406484,263213153.06849004,28186614.07570998,0.0 + 08/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79933296.91366653,0.0,67299540.9783857,0.0,55246018.50648338,0.0,66199390.943046148,12662.83136536647,12464.5923780928,12480.654277606469,15023.966045017814,189475358.6379008,268678247.34158179,28186614.07570998,0.0 + 08/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,72045817.01767367,0.0,68169191.65810669,0.0,59451058.29371428,0.0,70322362.48033464,12683.129102380915,12484.572350247745,12500.659995994849,15048.048535173199,189779075.94166813,269988429.4498293,35233267.594637479,0.0 + 08/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,59618165.3523684,0.0,56707596.15987225,0.0,51828271.100092049,0.0,63079412.77168952,17788.211931208738,17509.734155038008,17532.297234678186,21105.034438585564,266166999.93423779,231233445.3840222,14093307.03785499,0.0 + 08/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,55343135.34946902,0.0,52224432.87723848,0.0,50639749.63147361,0.0,60910179.7984868,17851.562125966153,17572.092590678527,17594.736025527825,21180.19702643964,267114915.96700374,219117497.6566679,63419881.67034747,0.0 + 08/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,57773724.58489992,0.0,52262408.17608385,0.0,56090836.04329758,0.0,65196840.75959748,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,231323809.56387884,63419881.67034747,69761869.8373822 + 08/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,46676816.63215971,0.0,41633044.86552283,0.0,46909790.72286753,0.0,53816539.61037189,10270.267998696701,10109.485037260503,10122.512140584698,12185.280940222547,153675166.020352,189036191.83092196,49326574.63249246,69761869.8373822 + 08/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37223975.048928569,0.0,32408116.2478923,0.0,39017866.09872131,0.0,43968541.418466549,5137.605846042443,5057.175668103225,5063.6923551267659,6095.573221857625,76874569.52806822,152618498.8140087,35233267.594637479,69761869.8373822 + 08/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31197083.84578344,0.0,26694726.60272109,0.0,33978588.99443556,0.0,37752788.95398953,5139.209189174922,5058.753910599863,5065.272631349948,6097.4755272809429,76898560.53026043,129623188.39692962,35233267.594637479,62010550.96656194 + 08/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20889611.41373915,0.0,16572127.463525396,0.0,25161260.94196219,0.0,26764834.62743978,2575.3726437358288,2535.0547045628529,2538.3213812973365,3055.5813337750375,38535588.2281358,89387834.44666651,35233267.594637479,46507913.22492146 + 08/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,4211242.842549543,0.0,1004469.3749000303,0.0,10238784.795377277,0.0,8215564.9352481239,2579.9838544362098,2539.593725899498,2542.8662516262627,3061.052359250305,38604586.28836419,23670061.948074975,21139960.556782485,23253956.61246073 + 08/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,693349.8202987872,0.0,0.0,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,693349.8202987872,14093307.03785499,0.0 + 08/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,51412.45684306235,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,51412.45684306235,14093307.03785499,0.0 + 08/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 + 08/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.3339308916439,1269.1491676785279,1270.7845959204443,1529.7454921010706,19292447.471730073,0.0,14093307.03785499,0.0 + 08/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.3171955854082,1268.1483495531834,1269.7824881387938,1528.5391744713946,19277233.94789561,0.0,14093307.03785499,0.0 + 08/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,8639477.376074974,0.0,3772869.453744567,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,12412346.82981954,14093307.03785499,15502637.741640486 + 08/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,34085506.39823838,0.0,30211520.25679608,0.0,33328607.965846339,0.0,37178109.27824308,20537.169040492754,20215.655827958744,20241.705763862163,24366.56711460712,307299951.8889148,134803743.89912389,56373228.15141996,38756594.35410121 + 08/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,42891327.81380131,0.0,36301114.99442139,0.0,34081683.846607919,0.0,39016563.83248702,17925.527040299865,17644.899570480204,17667.636824554225,21267.95357388223,268221661.2331795,152290690.48731763,56373228.15141996,38756594.35410121 + 08/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45761081.27247623,0.0,33288729.72193089,0.0,22590775.868011729,0.0,26913181.117164446,12781.245773277731,12581.152986358024,12597.365086112537,15164.460219848688,191247206.6361491,128553767.9795833,28186614.07570998,0.0 + 08/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67119272.07670352,0.0,48779698.58005829,0.0,29062750.231590734,0.0,36548563.32915676,10200.892643409232,10041.195766102019,10054.134871730184,12102.96972939408,152637094.83828787,181510284.21750934,28186614.07570998,0.0 + 08/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63076784.82428193,0.0,41588957.582129728,0.0,25998177.76662806,0.0,33821073.72803853,5104.9494112337429,5025.0304758735069,5031.505740535867,6056.827608529854,76385927.65022269,164484993.90107826,28186614.07570998,0.0 + 08/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59714211.2934118,0.0,41970155.55277255,0.0,26944419.237506603,0.0,35718680.10715586,5108.236464129019,5028.266069342509,5034.745503397304,6060.727571315576,76435112.18946386,164347466.1908468,28186614.07570998,0.0 + 08/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65017464.012999039,0.0,46372065.373201329,0.0,31091205.37030928,0.0,40170397.76270214,5102.715023996534,5022.8310683853219,5029.303498886644,6054.176593364711,76352494.26467955,182651132.51921178,28186614.07570998,0.0 + 08/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54947864.29592213,0.0,43517954.495950508,0.0,32049197.5574983,0.0,39527388.97516774,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,170042405.32453866,28186614.07570998,0.0 + 08/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40923054.85481748,0.0,34571642.07712483,0.0,26936606.61136015,0.0,32273557.561787838,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,134704861.10509033,28186614.07570998,0.0 + 08/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31146591.05808459,0.0,26474728.97130499,0.0,22778940.89130842,0.0,26459133.382645616,12806.361161964294,12605.875188949427,12622.119145785322,15194.25866981197,191623010.99943964,106859394.30334363,35233267.594637479,0.0 + 08/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,16954925.382359018,0.0,12578305.516526176,0.0,13801135.96322392,0.0,15000726.265397897,17992.718858041855,17711.03948778082,17733.86196988905,21347.67410076374,269227059.89931169,58335093.127507019,14093307.03785499,0.0 + 08/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,20710281.670523369,0.0,15662200.980645493,0.0,20653288.76079221,0.0,22226830.524450415,18013.41145189717,17731.40813521913,17754.256864408566,21372.225073488204,269536685.49004706,79252601.93641149,63419881.67034747,0.0 + 08/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24655307.352132288,0.0,17734068.99079553,0.0,30009521.43043744,0.0,30797626.0493065,10301.490574943315,10140.218818251411,10153.285525189345,12222.32533510015,154142352.9125432,103196523.82267177,63419881.67034747,69761869.8373822 + 08/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,11499518.598148559,0.0,4601724.329928212,0.0,20167750.469605134,0.0,17881634.97452175,10315.760694056391,10154.265535987683,10167.35034355514,12239.256286703878,154355878.29709114,54150628.372203659,49326574.63249246,69761869.8373822 + 08/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1453158.7242852764,0.0,0.0,0.0,12595857.299996002,0.0,8433746.256830849,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,22482762.281112128,35233267.594637479,69761869.8373822 + 08/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,8861326.781447726,0.0,2479895.4150283338,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,11341222.196476059,35233267.594637479,62010550.96656194 + 08/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3608458.402315556,0.0,0.0,2774684.6328109495,0.0,0.0,2581.6344915092947,2541.218521941278,2544.4931413835818,3063.0107771288296,42237743.3573823,2774684.6328109495,35233267.594637479,46507913.22492146 + 08/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,8361021.631407979,0.0,16474284.298370077,0.0,0.0,0.0,362791.54400731206,0.0,2582.4770040741007,2542.0478448147116,2545.3235329241845,3064.01038612629,63839989.038366798,0.0,21139960.556782485,23253956.61246073 + 08/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0324579201172,1270.8211039495109,1272.4586866519633,1531.7607295835915,19317862.72117866,0.0,14093307.03785499,0.0 + 08/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 + 08/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1156216.8219004407,0.0,7383310.4624983,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,27882899.688668949,0.0,14093307.03785499,0.0 + 08/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6394386.477879113,0.0,10532776.970776473,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,36276252.319635327,0.0,14093307.03785499,0.0 + 08/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7575527.106618093,0.0,11476303.012109034,0.0,0.0,0.0,2453604.314623971,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,40856551.4577464,0.0,14093307.03785499,0.0 + 08/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3225619.3852976106,0.0,6862461.755047783,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,29439198.164740698,0.0,14093307.03785499,15502637.741640486 + 08/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,15253739.440527223,0.0,18880587.547258296,0.0,6046163.426337976,0.0,15796059.838377364,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,133372905.7364198,0.0,56373228.15141996,38756594.35410121 + 08/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,28288020.500066207,0.0,33159216.288291623,0.0,13463089.670905875,0.0,26214572.640939285,0.0,12931.193333426698,12728.753089480168,12745.155387032783,15342.36727611518,294615787.8100004,0.0,56373228.15141996,38756594.35410121 + 08/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23261331.060042427,0.0,27757672.73251217,0.0,14350250.909000528,0.0,23135951.489495167,0.0,12929.467975608171,12727.054742460157,12743.454851519291,15340.320204924456,281970278.17929378,0.0,28186614.07570998,0.0 + 08/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21710629.162781314,0.0,26317993.248616298,0.0,13413256.157705144,0.0,21693708.689959136,0.0,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,276569311.30176398,0.0,28186614.07570998,0.0 + 08/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16902783.554143255,0.0,22013270.718812169,0.0,11023901.347891812,0.0,18046220.292142247,0.0,7751.825070850429,7630.468803264726,7640.301441143494,9197.244541209617,183977599.3962752,0.0,28186614.07570998,0.0 + 08/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6026356.195400689,0.0,13643981.01394771,0.0,7066705.991345531,0.0,11645305.057477918,0.0,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,154279966.69559983,0.0,28186614.07570998,0.0 + 08/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1139374.309791814,0.0,6431963.670922537,0.0,2421375.4211637519,0.0,5112242.5599989,0.0,7734.328759975453,7613.246400400431,7623.056845455254,9176.485836231703,130834580.19330321,0.0,28186614.07570998,0.0 + 08/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1422644.1523602764,0.0,0.0,0.0,0.0,0.0,0.0,7724.143916618543,7603.221002666253,7613.018528972825,9164.4019083681,115577227.28385259,1422644.1523602764,28186614.07570998,0.0 + 08/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16359790.833049283,0.0,3121010.4550310026,0.0,6070318.932236763,0.0,2253105.0748799766,18010.934882248657,17728.97033673047,17751.81592456773,21369.28671813671,269499628.30206087,27804225.295197026,28186614.07570998,0.0 + 08/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14594203.052453857,0.0,11258863.595652469,0.0,16436597.609421906,0.0,15621653.841758892,23175.41309682841,22812.597681428517,22841.994041974478,27496.74297948249,346776292.07897,57911318.09928712,35233267.594637479,0.0 + 08/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6976896.607794478,0.0,4578721.669749502,0.0,12238196.286611949,0.0,11591187.95667305,18038.56953966687,17756.172368431562,17779.053008863124,21402.0741842837,269913128.7644829,35385002.52082898,14093307.03785499,0.0 + 08/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,4225589.872429493,0.0,2978160.2042070708,0.0,10606405.967080974,0.0,9053341.975554225,18059.886981053463,17777.156081296485,17800.063761383837,21427.36651475213,270232104.01854929,26863498.019271766,63419881.67034747,0.0 + 08/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,5318272.562318653,0.0,0.0,0.0,15258821.410759235,0.0,12649696.162960366,15520.665454345415,15277.686541280355,15297.373399749846,18414.677101357585,232237448.98823954,33226790.13603825,63419881.67034747,69761869.8373822 + 08/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,2676910.2497430124,0.0,0.0,0.0,12939776.11295589,0.0,9830691.58615578,12914.353701973421,12712.177085598723,12728.55802327846,15322.387696204118,193238915.425397,25447377.948854686,49326574.63249246,69761869.8373822 + 08/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,511475.16529276038,0.0,0.0,0.0,10723308.448931238,0.0,7397477.824955409,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,154683563.66268707,18632261.439179407,35233267.594637479,69761869.8373822 + 08/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,7490998.69690062,0.0,3052465.564048337,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,116032060.94369234,10543464.260948956,35233267.594637479,62010550.96656194 + 08/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2227630.3976446154,0.0,0.0,1743876.366258315,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,79619099.2055014,1743876.366258315,35233267.594637479,46507913.22492146 + 08/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,7380316.969625886,0.0,14743122.089628332,0.0,0.0,0.0,165518.91018112654,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,60994704.697811137,0.0,21139960.556782485,23253956.61246073 + 08/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223887,19353877.68371783,0.0,14093307.03785499,0.0 + 08/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2761232.806510806,0.0,0.0,0.0,0.0,0.0,1293.4066195817769,1273.1580976674578,1274.7986918248478,1534.5775817678287,22114620.373541688,0.0,14093307.03785499,0.0 + 08/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4355277.586086181,0.0,8567858.554143928,0.0,0.0,0.0,0.0,0.0,1293.377181994282,1273.1291209308868,1274.7696777487939,1534.5426551939677,32276083.229354659,0.0,14093307.03785499,0.0 + 08/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8091092.305604897,0.0,11887939.223505339,0.0,0.0,0.0,2215297.556958842,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,41544129.22143757,0.0,14093307.03785499,0.0 + 08/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1294634.1980871657,0.0,1177852.158805888,0.0,0.0,0.0,0.0,0.0,1293.2333272844795,1272.9875182934023,1274.627892641858,1534.371977072059,21823280.93194353,0.0,14093307.03785499,0.0 + 08/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3087698752136,1273.0617798163044,1274.7022498583124,1534.4614868261443,19351923.430953508,0.0,14093307.03785499,15502637.741640486 + 08/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,12881362.48279427,0.0,3229155.1563288357,1292.3538049279317,1272.1217650234208,1273.7610237604227,1533.3284573694473,19337634.1838924,16110517.639123105,56373228.15141996,38756594.35410121 + 08/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29853648.753710435,0.0,11919308.178561762,0.0,25221400.514555243,0.0,23859189.000309566,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,90853546.447137,56373228.15141996,38756594.35410121 + 08/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36363735.22954145,0.0,11420203.802077413,0.0,12655250.41259294,0.0,11897386.914006196,7732.599381733982,7611.544095897946,7621.352347359667,9174.433994962623,115703747.35183518,72336576.358218,28186614.07570998,0.0 + 08/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47266132.66516027,0.0,14189445.94484385,0.0,11469715.842778165,0.0,11604339.21305437,7715.70702740283,7594.9161945251139,7604.703019238741,9154.391861369517,115450985.16913033,84529633.66583665,28186614.07570998,0.0 + 08/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49961004.27889618,0.0,14167253.933489582,0.0,9905280.262453553,0.0,11331988.655236984,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,85365527.13007629,28186614.07570998,0.0 + 08/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49538324.723776,0.0,17658323.417463405,0.0,12220672.14860298,0.0,15529657.393193756,5133.441639124436,5053.076652621352,5059.588057645065,6090.63254930696,76812260.03531212,94946977.68303614,28186614.07570998,0.0 + 08/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55316012.237436879,0.0,28029042.32322628,0.0,19464548.90222542,0.0,23982340.31930297,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,126791943.78219155,28186614.07570998,0.0 + 08/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55654943.39335502,0.0,33374025.18764718,0.0,25731250.07920895,0.0,30268592.32251712,10266.883278248872,10106.153305242704,10119.17611529013,12181.26509861392,153624520.07062424,145028810.98272828,28186614.07570998,0.0 + 08/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38742266.21079751,0.0,26793475.4830963,0.0,22424841.57420229,0.0,25145640.337128238,12833.60409781109,12632.691631553376,12648.970144112664,15226.5813732674,192030650.0882803,113106223.60522434,28186614.07570998,0.0 + 08/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29005432.651645587,0.0,20621444.92164123,0.0,19778729.95109103,0.0,21419565.87964607,15415.235934780607,15173.907540512191,15193.460669146689,18289.589000886117,230659895.32317216,90825173.40402392,35233267.594637479,0.0 + 08/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,16880568.212148508,0.0,9395506.354471095,0.0,12647443.235306032,0.0,12455770.918013461,18015.856519017147,17733.81492435722,17756.666754940117,21375.126052292104,269573271.30218377,51379288.7199391,14093307.03785499,0.0 + 08/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,18973290.480023277,0.0,11458178.53944599,0.0,18703191.037390599,0.0,18780974.259662007,10300.183598590404,10138.93230285712,10151.997351988657,12220.774657547772,154122796.47954227,67915634.31652187,63419881.67034747,0.0 + 08/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,28735175.01611148,0.0,21077342.9683184,0.0,30737796.873002404,0.0,32585040.775780765,7729.903173512449,7608.890097319098,7618.694928832762,9171.23504682837,115663403.68737364,113135355.63321308,63419881.67034747,69761869.8373822 + 08/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,21376567.870070153,0.0,14470146.352736902,0.0,25080623.32486112,0.0,25494617.179003858,5158.942264496314,5078.1780609458969,5084.721811696284,6120.88806789198,77193828.73810971,86421954.72667204,49326574.63249246,69761869.8373822 + 08/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14561360.694796268,0.0,8441096.436318499,0.0,19785266.420954843,0.0,18857689.42871809,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,61645412.9807877,35233267.594637479,69761869.8373822 + 08/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,8867794.698539114,0.0,3103242.7584579035,0.0,15358534.65604515,0.0,13388604.601078812,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,40718176.71412098,35233267.594637479,62010550.96656194 + 08/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3487353.5070708335,0.0,0.0,0.0,10470394.591545746,0.0,7643100.648509617,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,21600848.747126197,35233267.594637479,46507913.22492146 + 08/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,944989.7042210272,0.0,0.0,2582.273252974316,2541.847283476404,2545.1227131421217,3063.7686432240536,38638842.81414082,944989.7042210272,21139960.556782485,23253956.61246073 + 08/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19328052.497917829,0.0,14093307.03785499,0.0 + 08/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 + 08/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 + 08/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 08/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 08/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5167.206195107078,5086.312618181314,5092.866851138977,6130.692906108027,77317482.85392744,0.0,14093307.03785499,15502637.741640486 + 08/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,7934809.803603854,0.0,0.0,0.0,15319070.09868645,0.0,9700512.632298449,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,308775314.9524388,32954392.534588756,56373228.15141996,38756594.35410121 + 08/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29209719.273394944,0.0,18313251.165516605,0.0,23720440.981602298,0.0,23247695.289175426,18036.440738195713,17754.076893744557,17776.95483394311,21399.54844259952,269881275.27053847,94491106.70968926,56373228.15141996,38756594.35410121 + 08/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5906445.64949886,0.0,1635142.7694943108,0.0,1163707.2665421463,0.0,662759.3539293157,12897.355661240787,12695.445152364739,12711.804529240711,15302.22016972995,192984571.84527428,9368055.039464634,28186614.07570998,0.0 + 08/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3205046.321881781,0.0,0.0,0.0,0.0,0.0,0.0,10293.37797251267,10132.233220125221,10145.289636804897,12212.70004199326,154020963.13716976,3205046.321881781,28186614.07570998,0.0 + 08/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12241677.981408604,0.0,0.0,0.0,0.0,0.0,0.0,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,12241677.981408604,28186614.07570998,0.0 + 08/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23222019.72452433,0.0,3693975.6525538854,0.0,2641325.9560598118,0.0,0.0,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,29557321.33313803,28186614.07570998,0.0 + 08/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23412991.52441254,0.0,12350169.442451863,0.0,8501546.579894873,0.0,8919144.744109508,5123.50100614869,5043.291642109264,5049.7904381481989,6078.838367738526,76663517.23492085,53183852.29086878,28186614.07570998,0.0 + 08/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29521249.647533046,0.0,20030387.45610201,0.0,16085547.329703695,0.0,17595661.462235623,7659.080564784247,7539.17622974248,7548.891227822226,9087.206725037533,114603677.09059134,83232845.89557436,28186614.07570998,0.0 + 08/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37127491.059518348,0.0,30962263.899509178,0.0,26819088.50137413,0.0,30256912.136186005,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,125165755.59658766,28186614.07570998,0.0 + 08/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,30647517.362892368,0.0,29113251.773367827,0.0,28302976.586725967,0.0,31439235.414637068,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,119502981.13762322,35233267.594637479,0.0 + 08/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,15226840.000046736,0.0,12966318.385258297,0.0,15971505.948008767,0.0,17302397.034136565,17960.99824588563,17679.815467725373,17702.59771449679,21310.03880529058,268752420.84023419,61467061.367450367,14093307.03785499,0.0 + 08/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,12498030.279353677,0.0,9149340.500490308,0.0,16888940.285980449,0.0,17046897.464583834,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,55583208.530408259,63419881.67034747,0.0 + 08/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,20180770.46353458,0.0,15322723.274968792,0.0,26945353.77129609,0.0,27739074.16592223,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,90187921.67572168,63419881.67034747,69761869.8373822 + 08/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,11319076.810172463,0.0,6795269.271168893,0.0,18994157.004958627,0.0,17951817.460112037,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,154692456.46727775,55060320.54641201,49326574.63249246,69761869.8373822 + 08/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3574208.9913439687,0.0,0.0,0.0,12152383.351747696,0.0,9378447.386548842,5169.963443835032,5089.026701666068,5095.584431997321,6133.96427647309,77358739.87429744,25105039.729640508,35233267.594637479,69761869.8373822 + 08/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5387349.174634144,0.0,1598393.485478795,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,77415154.02524942,6985742.660112939,35233267.594637479,62010550.96656194 + 08/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,270396.25428368468,0.0,0.0,672482.0994537225,0.0,0.0,2586.38346116836,2545.8931455944118,2549.1737887664214,3068.6452483499945,38970740.57224876,672482.0994537225,35233267.594637479,46507913.22492146 + 08/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,6043496.012878582,0.0,13222813.396731642,0.0,0.0,0.0,343028.0119328526,0.0,2586.8535959977969,2546.35592037539,2549.637159879939,3069.2030453789718,58316716.41941863,0.0,21139960.556782485,23253956.61246073 + 08/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 08/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19353838.12699616,0.0,14093307.03785499,0.0 + 08/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,4751821.659597381,0.0,0.0,0.0,0.0,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,24103472.22785108,0.0,14093307.03785499,0.0 + 08/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6348623.031287738,0.0,9479189.47261242,0.0,0.0,0.0,0.0,0.0,1293.0498359434892,1272.8068995435854,1274.4470411463468,1534.154271600269,35175861.47754145,0.0,14093307.03785499,0.0 + 08/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1186103.440207243,0.0,1183660.5721981349,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,21712516.773926196,0.0,14093307.03785499,0.0 + 08/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,0.0,14093307.03785499,15502637.741640486 + 08/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,4524869.559237074,0.0,2299780.144732328,0.0,13388593.632928519,0.0,7187809.845117671,20676.50911254276,20352.814505186943,20379.04118404546,24531.88879115691,309384912.9345555,27401053.18201559,56373228.15141996,38756594.35410121 + 08/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,39791256.92399612,0.0,25043154.883664974,0.0,25533234.86370664,0.0,28230715.515813523,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,270573798.44411638,118598362.18718127,56373228.15141996,38756594.35410121 + 08/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39677522.39972957,0.0,15734008.62327081,0.0,12178494.311646413,0.0,12243477.295260666,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,193146424.77533374,79833502.62990746,28186614.07570998,0.0 + 08/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51809855.25416055,0.0,16997384.769866785,0.0,11038249.655726865,0.0,11513385.390743964,10311.294514484973,10149.869275290619,10162.94841782745,12233.957335126945,154289050.35382796,91358875.07049816,28186614.07570998,0.0 + 08/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53415206.397094029,0.0,13629108.992603183,0.0,8175137.332108733,0.0,9684354.664678872,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,84903807.38648482,28186614.07570998,0.0 + 08/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,60748973.41036388,0.0,20284631.00905304,0.0,12432128.606128492,0.0,17006842.398998675,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,110472575.42454408,28186614.07570998,0.0 + 08/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67830875.3309372,0.0,31720479.365433754,0.0,21483905.078554345,0.0,27305362.565031426,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,148340622.33995674,28186614.07570998,0.0 + 08/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71349665.30976922,0.0,42701742.66776736,0.0,32072918.50380367,0.0,38486380.162447299,7700.162458686654,7579.614978932025,7589.382086467599,9135.948823960442,115218390.0529682,184610706.64378754,28186614.07570998,0.0 + 08/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59699901.44625992,0.0,42003259.49987653,0.0,36017844.78658454,0.0,40776307.14729629,12837.834998370876,12636.856296575626,12653.140175730872,15231.601175278183,192093957.52544,178497312.88001729,28186614.07570998,0.0 + 08/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50884100.35179767,0.0,40718878.245296899,0.0,36117058.454556558,0.0,40533583.333312127,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192305042.78522266,168253620.38496325,35233267.594637479,0.0 + 08/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,32372158.283443236,0.0,23555300.472199177,0.0,24661949.270665789,0.0,27197221.319187639,18040.66659721306,17758.23659615066,17781.119896550328,21404.56226301265,269944507.2705361,107786629.34549584,14093307.03785499,0.0 + 08/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,27656226.348058136,0.0,18544882.14837365,0.0,24908324.13278974,0.0,26294696.82010179,18036.440738195713,17754.076893744557,17776.95483394311,21399.54844259952,269881275.27053847,97404129.44932331,63419881.67034747,0.0 + 08/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,30232369.89433655,0.0,20575237.727409886,0.0,30794845.41519452,0.0,32137193.708871306,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,154683563.66268707,113739646.74581225,63419881.67034747,69761869.8373822 + 08/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,20782354.603093428,0.0,11827636.604697716,0.0,23469322.264667028,0.0,22942405.08457216,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154701073.47113923,79021718.55703035,49326574.63249246,69761869.8373822 + 08/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,15159235.514528502,0.0,7157892.638304803,0.0,18934564.852575505,0.0,17513869.709982214,5167.549388277915,5086.650438599038,5093.20510687279,6131.100091704735,77322618.09163612,58765562.71539102,35233267.594637479,69761869.8373822 + 08/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11416726.112399511,0.0,4347513.448562922,0.0,15982539.343151058,0.0,14055329.77700794,5166.8538043474459,5085.965744164762,5092.519530139849,6130.274807923305,77312209.99167131,45802108.681121427,35233267.594637479,62010550.96656194 + 08/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6066932.340256432,0.0,237683.73765980637,0.0,11206733.946086627,0.0,8440655.778440485,2583.7746941389575,2543.325219299519,2546.602553436395,3065.5500458523677,38661309.04581806,25952005.802443349,35233267.594637479,46507913.22492146 + 08/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,1815246.5839011095,0.0,0.0,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,38675268.367784809,1815246.5839011095,21139960.556782485,23253956.61246073 + 08/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.679148414876,1272.4420151973844,1274.0816866094224,1533.7144649975822,19342502.334789356,0.0,14093307.03785499,0.0 + 08/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 + 08/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 + 08/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 08/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 08/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,0.0,14093307.03785499,15502637.741640486 + 08/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,1951641.242793432,0.0,0.0,20665.968877521078,20342.4392795108,20368.65258883206,24519.383204649188,309227198.2218473,1951641.242793432,56373228.15141996,38756594.35410121 + 08/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,4442472.698909739,0.0,0.0,0.0,0.0,0.0,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,275154271.5166457,0.0,56373228.15141996,38756594.35410121 + 08/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14561280.744120282,0.0,23054076.7752749,0.0,0.0,0.0,11856890.031971446,0.0,12923.538049279316,12721.217650234206,12737.610237604225,15333.284573694473,242848589.39029063,0.0,28186614.07570998,0.0 + 08/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11125876.273644472,0.0,16041822.816541437,0.0,7242044.859479914,0.0,13524203.359148974,0.0,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,202626403.77609254,0.0,28186614.07570998,0.0 + 08/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15794672.221846838,0.0,20406513.562643909,0.0,9023325.120353772,0.0,16445307.559796343,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,139016046.69827975,0.0,28186614.07570998,0.0 + 08/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15769512.194253114,0.0,20028893.560705786,0.0,9018640.037708627,0.0,16016886.943535209,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,138140732.29166455,0.0,28186614.07570998,0.0 + 08/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12523311.822158808,0.0,16215379.662020632,0.0,6907934.82719565,0.0,12715843.71105996,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,125548422.14700575,0.0,28186614.07570998,0.0 + 08/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12027502.496307716,0.0,15303991.657645997,0.0,5940009.339554807,0.0,11168820.440309037,0.0,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,160130827.04976163,0.0,28186614.07570998,0.0 + 08/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9146562.91578682,0.0,11946481.684332418,0.0,4257399.135495637,0.0,8502014.927238809,0.0,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,226505954.26228146,0.0,28186614.07570998,0.0 + 08/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,6537812.018563689,0.0,9080007.780048566,0.0,1747477.260351379,0.0,5139823.6912166,0.0,12859.51171233805,12658.193657541857,12674.505032064568,15257.319768949194,214923429.36539743,0.0,35233267.594637479,0.0 + 08/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6001564.752919501,0.0,8089642.412843139,0.0,2002547.6510975017,0.0,4952653.1648644269,0.0,17987.23216211223,17705.638687099516,17728.454209724816,21341.164345483296,290191369.83763608,0.0,14093307.03785499,0.0 + 08/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,0.0,63419881.67034747,0.0 + 08/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,18172735.217881297,0.0,11937765.604135253,0.0,27277650.726402847,0.0,28052340.818527759,10276.823956520404,10115.93836034146,10128.973779431126,12193.059333924075,153773263.54878146,85440492.36694715,63419881.67034747,69761869.8373822 + 08/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,25995242.97979054,0.0,22041633.268155934,0.0,31604277.00152432,0.0,35422624.62574771,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,115063777.87521851,49326574.63249246,69761869.8373822 + 08/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26645575.05488217,0.0,23542625.11622855,0.0,31583148.75185847,0.0,35435095.385514188,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,117206444.30848338,35233267.594637479,69761869.8373822 + 08/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25615093.387554528,0.0,22484190.126397633,0.0,30746937.72761955,0.0,34260609.47932129,5117.630408707354,5037.512949966032,5044.00429957032,6071.873127968863,76575674.83036526,113106830.72089301,35233267.594637479,62010550.96656194 + 08/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,17429103.59278136,0.0,13399800.247327935,0.0,24553970.563701668,0.0,25957612.9598642,2563.619649393605,2523.485705539576,2526.7374744379947,3041.6368546273645,38359726.86239474,81340487.36367515,35233267.594637479,46507913.22492146 + 08/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,2118703.4117108716,0.0,0.0,0.0,11495547.371822276,0.0,9179260.333976672,2565.8568922693755,2525.6879239607685,2528.9425306423988,3044.2912578986549,38393202.97717631,22793511.11750982,21139960.556782485,23253956.61246073 + 08/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,867261.2670668088,0.0,0.0,1282.4876254768636,1262.4100424521933,1264.0367866434067,1521.6226120659779,19190005.43989839,867261.2670668088,14093307.03785499,0.0 + 08/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5156664.240357181,0.0,63441.14456147455,1277.3287247088813,1257.3319052381258,1258.9521057312246,1515.5017732321158,19112812.232077253,5220105.384918656,14093307.03785499,0.0 + 08/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,7554512.224703029,0.0,5904118.356944226,1278.124577327773,1258.1152986358027,1259.7365086112537,1516.4460219848689,19124720.663614915,13458630.581647255,14093307.03785499,0.0 + 08/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,5820565.53655826,0.0,3158984.3215727207,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,8979549.85813098,14093307.03785499,0.0 + 08/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,4224225.682122661,0.0,1140214.693480996,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,5364440.375603656,14093307.03785499,0.0 + 08/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,8374285.882682094,0.0,4602755.8450348549,0.0,13850412.993915748,0.0,14502817.874287559,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,41330272.59592026,14093307.03785499,15502637.741640486 + 08/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,36663714.73276932,0.0,33419414.35714025,0.0,33812970.45538777,0.0,39546376.58357523,20533.766556497743,20212.306610485408,20238.35223058026,24362.53019722784,307249040.14124849,143442476.12887258,56373228.15141996,38756594.35410121 + 08/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,28917607.23928411,0.0,26387528.69097163,0.0,25931248.528165927,0.0,29895341.641732336,17972.968997719225,17691.598815205874,17714.39624602322,21324.241645389455,268931540.535616,111131726.10015399,56373228.15141996,38756594.35410121 + 08/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1507783.9959281423,0.0,0.0,0.0,1487034.7570812684,0.0,0.0,12837.834998370876,12636.856296575626,12653.140175730872,15231.601175278183,192093957.52544,2994818.753009411,28186614.07570998,0.0 + 08/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20010691.600559147,0.0,5310970.298640471,0.0,4722077.429581739,0.0,4063228.4099906946,10276.823956520404,10115.938360341463,10128.973779431126,12193.059333924075,153773263.54878146,34106967.73877205,28186614.07570998,0.0 + 08/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33566864.6987564,0.0,4432534.303687091,0.0,2605153.645524929,0.0,2869895.6677203786,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,43474448.3156888,28186614.07570998,0.0 + 08/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22948759.08092778,0.0,5722516.459522314,0.0,3563085.861967901,0.0,3920252.496878598,5139.209189174922,5058.753910599863,5065.272631349948,6097.4755272809429,76898560.53026043,36154613.8992966,28186614.07570998,0.0 + 08/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37386635.39361625,0.0,14901823.0408347,0.0,9842495.647963096,0.0,12070221.990491314,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,74201176.07290536,28186614.07570998,0.0 + 08/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56492041.94089326,0.0,32826187.424075813,0.0,24095881.50363809,0.0,29421078.425838837,7674.932090476317,7554.779596842741,7564.514701453599,9106.013955181239,114840865.23823402,142835189.294446,28186614.07570998,0.0 + 08/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53792158.6855616,0.0,42094996.434373278,0.0,35797774.68140128,0.0,41215808.00013608,12783.85528578904,12583.721646464164,12599.937056199402,15167.55630683214,191286253.06302513,172900737.80147226,28186614.07570998,0.0 + 08/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,41107034.67309132,0.0,37892706.07007648,0.0,37306964.95242361,0.0,41238869.62635751,12791.553484127195,12591.299328071238,12607.524502422664,15176.689925302064,191401442.0637234,157545575.32194893,35233267.594637479,0.0 + 08/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14063527.575651713,0.0,9383193.846232906,0.0,14239699.465147298,0.0,14552685.560691337,17925.527040299865,17644.899570480204,17667.636824554225,21267.95357388223,268221661.2331795,52239106.447723258,14093307.03785499,0.0 + 08/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25070941.051861407,0.0,19144401.476367695,0.0,25943511.784995639,0.0,27889938.00569749,17948.531506172596,17667.543897148218,17690.310330748413,21295.24749450578,268565879.62287,98048792.31892222,63419881.67034747,0.0 + 08/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,32727430.956659188,0.0,25260860.904708435,0.0,37354004.43439597,0.0,39555287.06984675,10304.050277421613,10142.738448109898,10155.808401848079,12225.362324380798,154180654.0263374,134897583.36561034,63419881.67034747,69761869.8373822 + 08/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,21330469.897981429,0.0,15315047.992724244,0.0,28427427.01262381,0.0,28462417.765755219,10302.779472009453,10141.487537393534,10154.555879205578,12223.854562268894,154161638.82315887,93535362.6690847,49326574.63249246,69761869.8373822 + 08/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,15051826.995326467,0.0,10090662.935741835,0.0,22755905.860868567,0.0,22065935.945609489,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,69964331.73754636,35233267.594637479,69761869.8373822 + 08/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9967593.017953897,0.0,4049184.899248818,0.0,18078126.77798504,0.0,17112216.288964359,5156.219173316969,5075.4976002669559,5082.03789697017,6117.657224154467,77153082.82095082,49207120.98415211,35233267.594637479,62010550.96656194 + 08/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,872028.6099644703,0.0,0.0,0.0,10393761.542201927,0.0,7373097.796620406,2581.6344915092947,2541.218521941278,2544.4931413835818,3063.0107771288296,38629284.95506674,18638887.948786804,35233267.594637479,46507913.22492146 + 08/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,481710.0056498778,0.0,0.0,0.0,0.0,0.0,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,39132335.804256428,0.0,21139960.556782485,23253956.61246073 + 08/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 08/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.490860958758,1272.256675416517,1273.8961079993304,1533.4910691182725,19339684.96857436,0.0,14093307.03785499,0.0 + 08/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.121765023421,1273.7610237604227,1533.3284573694473,19337634.183892404,0.0,14093307.03785499,0.0 + 08/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 08/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.1309374422706,1271.9023865698239,1273.5413626152966,1533.0640336050854,19334299.392836915,0.0,14093307.03785499,0.0 + 08/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5163.703989341776,5082.865240100604,5089.415030759742,6126.537672654908,77265078.9582853,0.0,14093307.03785499,15502637.741640486 + 08/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,7923132.015740085,0.0,2731027.0532444298,0.0,13836477.350155823,0.0,7411581.823701264,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,308775314.95243886,31902218.2428416,56373228.15141996,38756594.35410121 + 08/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,28910841.766946306,0.0,19078914.325236747,0.0,20705720.58030013,0.0,21646612.178654486,18027.608506150802,17745.382931939967,17768.249669081353,21389.06933642526,269749117.59695056,90342088.85113766,56373228.15141996,38756594.35410121 + 08/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21341757.587693849,0.0,7057264.262514081,0.0,5862261.971426418,0.0,4464254.491743058,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,38725538.3133774,28186614.07570998,0.0 + 08/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43477781.512131657,0.0,13512211.817972092,0.0,10105317.026827058,0.0,10272465.182180975,10266.883278248872,10106.153305242704,10119.17611529013,12181.26509861392,153624520.07062424,77367775.53911178,28186614.07570998,0.0 + 08/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49078401.8605841,0.0,11722379.300347927,0.0,9670874.585303572,0.0,11492768.379659392,5116.6213936508779,5036.519731228496,5043.0098009690659,6070.675970120826,76560576.82548934,81964424.125895,28186614.07570998,0.0 + 08/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58487914.24127081,0.0,23164204.74779764,0.0,16117532.220695654,0.0,22234268.364388016,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,120003919.57415211,28186614.07570998,0.0 + 08/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79119276.39377052,0.0,46832691.819274,0.0,30916400.106689566,0.0,41761993.969483498,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,198630362.28921757,28186614.07570998,0.0 + 08/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75195657.9277311,0.0,50080130.467760767,0.0,38880838.946371939,0.0,48600277.037307899,7619.684300190506,7500.39672102032,7510.061747744935,9040.464560944933,114014186.3876425,212756904.37917174,28186614.07570998,0.0 + 08/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63900434.68534433,0.0,48941315.65124976,0.0,40532959.05408212,0.0,48201438.81635763,12721.477944825816,12522.3208344102,12538.457122932055,15093.547972868762,190352893.9501326,201576148.20703385,28186614.07570998,0.0 + 08/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,48895172.66331423,0.0,42173494.794568788,0.0,37960909.84679099,0.0,43306827.07234934,12756.787559991335,12557.077670963303,12573.258747216612,15135.441483411778,190881235.6616989,172336404.37702338,35233267.594637479,0.0 + 08/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,31260861.898600446,0.0,26123128.553045364,0.0,25744662.62574127,0.0,29532294.487097894,17901.020328267925,17620.77651559685,17643.482684652467,21238.87729553505,267854964.56658826,112660947.56448496,14093307.03785499,0.0 + 08/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,33066007.959956133,0.0,26979395.807783,0.0,30705906.203209703,0.0,34660086.00811368,17915.207456523087,17634.741541712567,17657.46570612972,21255.709781653815,268067248.14966909,125411395.97906253,63419881.67034747,0.0 + 08/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,47411334.49881871,0.0,41235628.41998851,0.0,47157194.222057867,0.0,53858388.06637789,10247.00201229738,10086.583284218528,10099.580876296397,12157.676735477053,153327034.4698417,189662545.20724298,63419881.67034747,69761869.8373822 + 08/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,38602217.42073344,0.0,33122238.84127926,0.0,39614962.923743698,0.0,44661395.29980121,10263.427569077501,10102.751695843073,10115.770122569595,12177.165031594619,153572811.90870524,156000814.4855576,49326574.63249246,69761869.8373822 + 08/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27471894.65032009,0.0,22115191.2990876,0.0,30576835.60875041,0.0,33150063.30069619,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,113313984.8588543,35233267.594637479,69761869.8373822 + 08/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,20100792.014115305,0.0,14643764.360477876,0.0,24844437.637871189,0.0,25765479.35925097,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,85354473.37171534,35233267.594637479,62010550.96656194 + 08/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12766365.716331464,0.0,7731365.718909743,0.0,18609712.581413248,0.0,17823848.180280679,2577.823628621243,2537.4673188226549,2540.7371044568628,3058.489333781736,38572262.58845699,56931292.19693513,35233267.594637479,46507913.22492146 + 08/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,341742.55304387767,0.0,0.0,0.0,5444030.936875976,0.0,2235185.788383329,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,8020959.278303182,21139960.556782485,23253956.61246073 + 08/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.3593506695755,1270.1585343185444,1271.7952632324,1530.9621135249072,19307790.942283535,0.0,14093307.03785499,0.0 + 08/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 + 08/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 08/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.6230548450674,1271.402454969425,1273.0407868020039,1532.4614502905743,19326699.888865457,0.0,14093307.03785499,0.0 + 08/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 08/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2038082.8017360736,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,2038082.8017360736,14093307.03785499,15502637.741640486 + 08/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,18144006.186346905,0.0,4335908.4693292309,0.0,25436014.868999795,0.0,21081246.76545823,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,68997176.29013416,56373228.15141996,38756594.35410121 + 08/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,66436419.8281914,0.0,37142436.87000003,0.0,40152833.618632938,0.0,44430905.38830903,12893.33930891644,12691.49167678528,12707.845959204444,15297.454921010707,192924474.71730075,188162595.7051334,56373228.15141996,38756594.35410121 + 08/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57157491.939115088,0.0,22581712.23624806,0.0,19715136.551697025,0.0,21859368.021037237,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,121313708.7480974,28186614.07570998,0.0 + 08/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37785779.20331415,0.0,16945819.750222774,0.0,12808399.348146003,0.0,13726661.759830358,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,81266660.06151329,28186614.07570998,0.0 + 08/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16062797.914844919,0.0,2148584.089681388,0.0,5984798.186424457,0.0,4414996.73870417,7720.033479384502,7599.174915093914,7608.967227603673,9159.525031494948,115515722.35287734,28611176.929654939,28186614.07570998,0.0 + 08/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21326726.012145208,0.0,6557804.749585607,0.0,8183386.204257315,0.0,8061267.65905058,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,44129184.62503871,28186614.07570998,0.0 + 08/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30635987.940883019,0.0,13077566.481079001,0.0,12174633.041605082,0.0,13490508.662736102,7702.700999022526,7582.113777945375,7591.884105438524,9138.960705166912,115256374.515264,69378696.1263032,28186614.07570998,0.0 + 08/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35966614.61660276,0.0,19427617.16860777,0.0,17673865.352283095,0.0,19884669.431114526,7692.227788359685,7571.804527349237,7581.5615703207499,9126.53464050248,115099662.69551574,92952766.56860815,28186614.07570998,0.0 + 08/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40491242.75296418,0.0,27964397.521775135,0.0,24625099.692368758,0.0,27648197.62681088,17951.694586596324,17670.65745895784,17693.427904700224,21299.00036868633,268613209.14818659,120728937.59391897,28186614.07570998,0.0 + 08/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34444340.56254226,0.0,27839944.95031374,0.0,26231681.559064654,0.0,28616515.43583449,23100.487376059962,22738.844936796082,22768.146259402794,27407.84647188132,345655170.15890458,117132482.50775515,35233267.594637479,0.0 + 08/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,21584802.778011696,0.0,15904467.94621102,0.0,20104958.27301343,0.0,21165755.747751308,18003.31639727327,17721.4711205586,17744.307044890393,21360.247676528867,269385632.0613041,78759984.74498746,14093307.03785499,0.0 + 08/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,18914618.274595586,0.0,11666387.238391955,0.0,20158242.60277991,0.0,20123065.27777052,18054.45551834481,17771.80964914977,17794.710439813603,21420.92229157999,270150832.4359974,70862313.39353797,63419881.67034747,0.0 + 08/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,30741273.639188179,0.0,22514852.07557212,0.0,34320218.93043314,0.0,36195947.981722269,15482.869922397902,15240.482705436229,15260.121622965919,18369.83414544601,231671910.2264858,123772292.6269157,63419881.67034747,69761869.8373822 + 08/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,23299248.365106197,0.0,15636981.003033989,0.0,27965366.19784455,0.0,28463353.793508494,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,193146424.77533374,95364949.35949321,49326574.63249246,69761869.8373822 + 08/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,15876476.348816764,0.0,8456183.180208082,0.0,21788071.126411708,0.0,20766444.579881528,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,154579486.6577033,66887175.23531808,35233267.594637479,69761869.8373822 + 08/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,11112673.255620748,0.0,4010907.6586096996,0.0,17904207.02472459,0.0,15953075.88042022,7749.738329070404,7628.414729816549,7638.244720812024,9194.768701743447,115960199.33319272,48980863.81937526,35233267.594637479,62010550.96656194 + 08/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5009410.434119192,0.0,0.0,0.0,12482827.008390744,0.0,9322166.658128873,5166.8538043474459,5085.965744164762,5092.519530139849,6130.274807923305,77312209.99167131,26814404.100638808,35233267.594637479,46507913.22492146 + 09/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,1531417.799078223,0.0,0.0,2583.4269021737229,2542.982872082381,2546.2597650699246,3065.1374039616528,38656104.995835658,1531417.799078223,21139960.556782485,23253956.61246073 + 09/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.5303609187559,1271.3112121838222,1272.9494264407586,1532.3514724853504,19325312.899303274,0.0,14093307.03785499,0.0 + 09/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.3380835922795,1271.121944994761,1272.7599153616064,1532.1233427771629,19322435.832212915,0.0,14093307.03785499,0.0 + 09/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 09/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 09/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 09/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,0.0,14093307.03785499,15502637.741640486 + 09/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,10536113.217015444,0.0,909037.4958088087,0.0,14975453.493315734,0.0,7669482.973137131,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,34090087.17927712,56373228.15141996,38756594.35410121 + 09/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,58270928.85045865,0.0,35136669.11963983,0.0,36036912.44819918,0.0,39697003.16985121,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,169141513.58814887,56373228.15141996,38756594.35410121 + 09/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71941177.86257759,0.0,35928772.69563157,0.0,28468300.908109234,0.0,33406809.536515487,7682.368731557086,7562.099815920086,7571.844353380384,9114.83724594953,114952140.5285055,169745061.0028339,28186614.07570998,0.0 + 09/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,88879295.91863963,0.0,38786217.31433757,0.0,29182688.890916435,0.0,35807116.41260206,7654.072535994802,7534.24660257798,7543.955248329968,9081.264890047069,114528741.39701934,192655318.5364957,28186614.07570998,0.0 + 09/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,96024123.70803245,0.0,40445418.4390201,0.0,28269437.62021029,0.0,38095977.104820858,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,202834956.8720837,28186614.07570998,0.0 + 09/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,106159157.2282368,0.0,52212635.516684729,0.0,35286130.05864282,0.0,49777864.488135699,5069.229251981554,4989.869522378,4996.299478562977,6014.447003099436,75851442.92167908,243435787.2917,28186614.07570998,0.0 + 09/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,111955030.41418812,0.0,66655807.05860886,0.0,47467881.7101049,0.0,62590547.943494219,7593.54044432593,7474.662152096436,7484.29401720232,9009.445873933944,113622992.95521108,288669267.12639608,28186614.07570998,0.0 + 09/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,109881068.83813524,0.0,76047926.90912408,0.0,58063861.31423116,0.0,72856915.2583064,10116.281036530501,9957.908769713255,9970.740551545647,12002.581287656063,151371041.92360369,316849772.3197968,28186614.07570998,0.0 + 09/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,102226411.14306073,0.0,81799510.35526677,0.0,66104297.618780408,0.0,80182661.38666094,12620.024313238173,12422.45547835122,12438.463080168747,14973.177111713227,188834831.94049693,330312880.5037688,28186614.07570998,0.0 + 09/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,87261743.26677431,0.0,79190616.5569638,0.0,67786006.95839782,0.0,80029498.8800331,15178.665840220288,14941.040994914321,14960.294051236622,18008.907614125972,227120070.60178996,314267865.66216906,35233267.594637479,0.0 + 09/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,66198451.857541259,0.0,60262904.79214913,0.0,54816461.63538428,0.0,66055360.23527118,17788.211931208738,17509.734155038008,17532.297234678186,21105.034438585564,266166999.93423779,247333178.52034585,14093307.03785499,0.0 + 09/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,53827515.10338702,0.0,45842538.605618018,0.0,46283952.524919439,0.0,54252242.114795837,10216.472928258037,10056.532138685017,10069.491006794608,12121.455142631152,152870224.3789277,200206248.3487203,63419881.67034747,0.0 + 09/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,64937272.4751117,0.0,56227850.44393108,0.0,59872262.67488299,0.0,69218934.28560695,7680.907626252055,7560.661584491175,7570.404268643479,9113.103700278929,114930277.8467963,250256319.87953273,63419881.67034747,69761869.8373822 + 09/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,55230864.37838522,0.0,46757794.000318918,0.0,51624862.76533371,0.0,59081177.88297866,5125.3877450920449,5045.14884380249,5051.6500330353669,6081.076911473563,76691748.72025247,212694699.02701653,49326574.63249246,69761869.8373822 + 09/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,45645746.81129218,0.0,37783343.662369538,0.0,43810285.83306742,0.0,49456948.29857589,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,176696324.60530503,35233267.594637479,69761869.8373822 + 09/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,37739162.86847963,0.0,30393133.243345,0.0,37656547.09561146,0.0,41745414.87388483,5138.411978260202,5057.969180170731,5064.486889715563,6096.5296669620379,76886631.77439073,147534258.0813209,35233267.594637479,62010550.96656194 + 09/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,30384426.419483954,0.0,23692402.725448796,0.0,31207654.370476467,0.0,33973822.269605059,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,119258305.78501426,35233267.594637479,46507913.22492146 + 09/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,15618388.849960477,0.0,10358454.812003088,0.0,17485845.58910652,0.0,17726361.725006857,2572.2696186743739,2532.0002579376039,2535.2629987058496,3051.8997129893698,38489157.31790591,61189050.97607694,21139960.556782485,23253956.61246073 + 09/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3491915.405462077,0.0,0.0,0.0,6452270.422727678,0.0,4436556.570619801,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,14380742.398809556,14093307.03785499,0.0 + 09/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,868304.235404359,0.0,0.0,0.0,4623796.552243675,0.0,2029199.102419152,1286.6722465640838,1266.5291525156527,1268.161204600612,1526.5875052491575,19252620.39214622,7521299.890067187,14093307.03785499,0.0 + 09/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3454229.135567487,0.0,509731.34079475878,1286.1348093371869,1266.0001289688019,1267.6314993529248,1525.9498564946849,19244578.658952957,3963960.476362246,14093307.03785499,0.0 + 09/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2261406.5725262037,0.0,0.0,1286.3162024167676,1266.1786823058829,1267.8102827742053,1526.1650724594077,19247292.863842548,2261406.5725262037,14093307.03785499,0.0 + 09/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1322642.532881,0.0,0.0,0.0,9108120.827864383,0.0,5520056.62650963,1285.3868045088655,1265.2638342956078,1266.8942558888924,1525.0623773189807,19233386.179244449,15950819.98725501,14093307.03785499,0.0 + 09/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,33862713.99748789,0.0,30153655.112097056,0.0,34447944.95790003,0.0,39038583.8002395,5131.713784538751,5051.375847921537,5057.885061284797,6088.5825157973099,76786405.95435262,137502897.86772449,14093307.03785499,15502637.741640486 + 09/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,81846712.03402406,0.0,70503883.63459017,0.0,65894801.446190688,0.0,79423982.99802232,20470.521634829416,20150.051799864126,20176.01719828128,24287.49251187545,306302699.321461,297669380.1128272,56373228.15141996,38756594.35410121 + 09/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,91445037.8045852,0.0,64270065.06594696,0.0,58778712.65794252,0.0,69839805.9969788,17875.02289180661,17595.18607385315,17617.85926701262,21208.032329556852,267465962.02402524,284333621.52545347,56373228.15141996,38756594.35410121 + 09/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,87183284.0690903,0.0,49585180.74449029,0.0,39008754.920451197,0.0,47371480.22259375,12721.477944825816,12522.3208344102,12538.457122932055,15093.547972868762,190352893.9501326,223148699.95662553,28186614.07570998,0.0 + 09/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81719201.34055865,0.0,51852710.8460782,0.0,35707305.93468094,0.0,44527524.72834657,10179.629756094904,10020.265753255184,10033.177888425516,12077.742125249939,152318935.88289196,213806742.84966437,28186614.07570998,0.0 + 09/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57859585.67431804,0.0,49095770.14293444,0.0,32954461.16690743,0.0,41423457.5918744,5073.251640952366,4993.828940099099,5000.263998397941,6019.219414069279,75911630.37666726,181333274.5760343,28186614.07570998,0.0 + 09/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65189881.14935846,0.0,51014668.022706869,0.0,33440520.495860708,0.0,43247069.42395818,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,192892139.09188424,28186614.07570998,0.0 + 09/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62379224.38972688,0.0,50771980.88513101,0.0,33295942.559759685,0.0,42650721.339670199,5086.1184597285759,5006.494326427064,5012.9457053689179,6034.485403390584,76104158.02169451,189097869.17428778,28186614.07570998,0.0 + 09/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43882336.536990199,0.0,37241342.01726041,0.0,27599298.511717686,0.0,33092505.99060705,7647.215087148336,7527.496508372463,7537.196455939098,9073.128788755654,114426132.62477598,141815483.05657534,28186614.07570998,0.0 + 09/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26766890.076253017,0.0,21330630.758894139,0.0,19546027.968763245,0.0,22010954.02986171,12786.443091619949,12586.268939712036,12602.487631894619,15170.626639667891,191324974.69042019,89654502.8337721,28186614.07570998,0.0 + 09/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,15871202.968828833,0.0,12565999.095787287,0.0,15816684.809149348,0.0,16750997.266169232,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,61004884.1399347,35233267.594637479,0.0 + 09/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12532998.711062208,0.0,10334639.083099906,0.0,13323624.938670999,0.0,14074048.641649329,17882.602145924335,17602.646673333755,17625.329480237142,21217.024825249617,267579371.24908144,50265311.37448244,14093307.03785499,0.0 + 09/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,29788282.908178759,0.0,27356862.94746979,0.0,33238062.513799337,0.0,37650709.931682068,17878.827624451565,17598.931242698774,17621.609261890564,21212.546499604516,267522892.66312353,128033918.30112994,63419881.67034747,0.0 + 09/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,48745648.0733322,0.0,45413687.40643321,0.0,53696264.746536958,0.0,61546305.99270642,10218.62979767105,10058.655241905006,10071.616845849796,12124.014185856926,152902497.85661803,209401906.2190088,63419881.67034747,69761869.8373822 + 09/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,37779131.849451798,0.0,34473211.4047217,0.0,42850346.3701154,0.0,48197950.1098236,10233.242787301755,10073.039462456993,10086.019601938131,12141.351940241651,153121153.65097869,163300639.7341125,49326574.63249246,69761869.8373822 + 09/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,31578177.24920345,0.0,28667309.09614609,0.0,36946102.87882435,0.0,40918029.308495718,5110.384691430772,5030.380665745101,5036.862824673194,6063.276361006229,76467256.35427907,138109618.5326696,35233267.594637479,69761869.8373822 + 09/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29375805.496969753,0.0,26795203.654123859,0.0,34366953.94365078,0.0,38108334.31346214,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,128646297.40820652,35233267.594637479,62010550.96656194 + 09/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24124853.068950356,0.0,21610575.58457289,0.0,28554704.960033448,0.0,31501173.191353363,2561.2722323928589,2521.1750377898858,2524.423829157064,3038.8517339623947,38324602.19988793,105791306.80491007,35233267.594637479,46507913.22492146 + 09/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,11941619.425009026,0.0,8894535.559592903,0.0,16932773.531100908,0.0,17715961.440952794,2560.302542084018,2520.2205281637254,2523.468089547826,3037.701233426309,38310092.61559876,55484889.95665563,21139960.556782485,23253956.61246073 + 09/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1065718.427032278,0.0,0.0,0.0,7535349.3822188009,0.0,5661858.075260088,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,14262925.884511166,14093307.03785499,0.0 + 09/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,7397.839492558218,0.0,0.0,0.0,6156101.520346639,0.0,3674569.5158155655,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,9838068.875654763,14093307.03785499,0.0 + 09/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,3303155.194550878,0.0,484396.07520927456,1282.9284461346877,1262.8439619803842,1264.4712653211994,1522.1456289493274,19196601.488588156,3787551.2697601525,14093307.03785499,0.0 + 09/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,2346877.1866740148,0.0,0.0,1282.2638990425949,1262.1898184969892,1263.816278907159,1521.357169191881,19186657.796299049,2346877.1866740148,14093307.03785499,0.0 + 09/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,7221236.43875977,0.0,4594561.129350916,1281.3469362730112,1261.2872109506225,1262.9125082588417,1520.2692278683908,19172937.180063119,11815797.568110686,14093307.03785499,0.0 + 09/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,19868763.814510645,0.0,15524943.839428649,0.0,24703440.409109136,0.0,27654816.55884879,5121.57915437139,5041.399877280059,5047.896235586922,6076.558163966352,76634760.352337,87751964.62189722,14093307.03785499,15502637.741640486 + 09/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,42313477.53600455,0.0,39327937.82092344,0.0,40149247.06699957,0.0,47246075.805917147,20470.521634829416,20150.051799864126,20176.01719828128,24287.49251187545,306302699.321461,169036738.2298447,56373228.15141996,38756594.35410121 + 09/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47799487.64318911,0.0,41610287.84533936,0.0,38438341.79495053,0.0,45789341.123956728,17897.397400104655,17617.21030504983,17639.911878679162,21234.578829564995,267800754.28823514,173637458.40743573,56373228.15141996,38756594.35410121 + 09/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40408970.826794039,0.0,26689936.577455686,0.0,19943519.896659528,0.0,24197760.24253839,12748.24782393121,12548.671626064284,12564.841870270755,15125.309412558205,190753454.638168,111240187.54344765,28186614.07570998,0.0 + 09/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72030338.10565917,0.0,35818518.75162122,0.0,25194106.63446538,0.0,31858112.82234589,10189.250024534454,10029.735414597655,10042.659752393174,12089.156206525244,152462885.0329819,164901076.31409166,28186614.07570998,0.0 + 09/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62528643.25681429,0.0,31883699.923850597,0.0,21498603.909674586,0.0,28392347.27824606,5091.030123159573,5011.329096850779,5017.786705887798,6040.3129045617429,76177651.78965561,144303294.36858554,28186614.07570998,0.0 + 09/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,85271486.48568438,0.0,41007485.83143084,0.0,24753003.524552853,0.0,36046205.68945965,5078.498622792532,4998.993779459733,5005.435493181254,6025.444757733026,75990141.55139956,187078181.53112773,28186614.07570998,0.0 + 09/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89054908.0924657,0.0,52505211.422433849,0.0,32924462.93868417,0.0,45715664.190570939,5093.435201808044,5013.696523544341,5020.157183252292,6043.166438570658,76213639.2498312,220200246.64415468,28186614.07570998,0.0 + 09/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83263551.0284237,0.0,57837556.43024814,0.0,41806916.27749055,0.0,53506817.212377469,7659.080564784247,7539.17622974248,7548.891227822226,9087.206725037533,114603677.09059134,236414840.94853986,28186614.07570998,0.0 + 09/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,71569452.86096072,0.0,54841947.778223838,0.0,49269554.79177755,0.0,57735558.71750225,12781.245773277731,12581.152986358024,12597.365086112537,15164.460219848688,191247206.6361491,233416514.14846436,28186614.07570998,0.0 + 09/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,55207639.99032646,0.0,48734222.80953963,0.0,47010366.71424886,0.0,51896116.07993458,12818.098246968028,12617.428527697877,12633.687372189974,15208.184273136822,191798634.31197373,202848345.59404955,35233267.594637479,0.0 + 09/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,33251952.388209028,0.0,27958886.74202292,0.0,30693296.097857868,0.0,34424772.38368181,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,126328907.61177165,14093307.03785499,0.0 + 09/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,23633504.172552363,0.0,16280661.286067289,0.0,23512824.65368395,0.0,24781879.06118421,18027.608506150802,17745.382931939967,17768.249669081353,21389.06933642526,269749117.59695056,88208869.17348781,63419881.67034747,0.0 + 09/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,33042182.724981756,0.0,24950325.442301625,0.0,35595018.281597319,0.0,38222811.00198035,10318.919096627043,10157.374493176892,10170.46330695301,12243.003610790318,154403137.82717014,131810337.45086105,63419881.67034747,69761869.8373822 + 09/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,21329635.2750655,0.0,13633210.586381674,0.0,25991811.640906194,0.0,26106423.827839383,10333.707608694891,10171.931488329525,10185.039060279698,12260.54961584661,154624419.98334263,87061081.33019275,49326574.63249246,69761869.8373822 + 09/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12122059.024484529,0.0,4796262.442475478,0.0,18608479.869545096,0.0,16637524.81407349,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,52164326.150578599,35233267.594637479,69761869.8373822 + 09/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4391992.731771498,0.0,0.0,0.0,12574619.54209614,0.0,8949903.270189733,5171.59154624017,5090.629315824331,5097.189111287503,6135.895957828297,77383101.35224909,25916515.544057367,35233267.594637479,62010550.96656194 + 09/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,4282978.003987314,0.0,217187.90652037468,2586.5659603899105,2546.0727877566034,2549.3536624158748,3068.8617767099406,38703075.07418038,4500165.910507688,35233267.594637479,46507913.22492146 + 09/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,481262.2476893243,0.0,6866903.755617796,0.0,0.0,0.0,0.0,0.0,2586.706814865389,2546.2114371289919,2549.492490452131,3069.0288951683498,46053348.69872062,0.0,21139960.556782485,23253956.61246073 + 09/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4030062155769,1273.1545408691798,1274.795130443272,1534.5732946467629,19353333.499829249,0.0,14093307.03785499,0.0 + 09/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,19353882.599153796,0.0,14093307.03785499,0.0 + 09/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1240663.4610802695,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,20594516.334337169,0.0,14093307.03785499,0.0 + 09/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3393811.9839681086,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,22747467.075514415,0.0,14093307.03785499,0.0 + 09/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1579737.5975026866,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,20933427.09644046,0.0,14093307.03785499,0.0 + 09/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,0.0,14093307.03785499,15502637.741640486 + 09/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,707304.503330245,0.0,0.0,892084.0062149671,0.0,0.0,20687.148760973076,20363.287587936255,20389.527762430862,24544.51232787913,310251419.68451979,892084.0062149671,56373228.15141996,38756594.35410121 + 09/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,23798822.029212595,0.0,1396473.9746046893,0.0,17855424.445279484,0.0,7689191.643655001,18085.221682874773,17802.094163634596,17825.03397898642,21457.425171378094,270611189.988746,50739912.09275177,56373228.15141996,38756594.35410121 + 09/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40403628.397204268,0.0,4937758.220369112,0.0,6641734.131159649,0.0,4233770.988431707,12907.062042212181,12704.999578131303,12721.371266860075,15313.736420237172,193129809.50678665,56216891.737164739,28186614.07570998,0.0 + 09/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52966551.526215668,0.0,3641772.2107442866,0.0,4958341.156150445,0.0,3471886.686151509,10313.563994450264,10152.103226123683,10165.185247334177,12236.649986474386,154323008.83577705,65038551.579261917,28186614.07570998,0.0 + 09/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55574811.3695344,0.0,4425548.901417198,0.0,3543252.3462074429,0.0,4206260.50738401,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885578,77108935.79158244,67749873.12454307,28186614.07570998,0.0 + 09/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68439129.56632757,0.0,11663027.982698478,0.0,7333511.440205886,0.0,11804236.612004366,5147.387576862043,5066.804264102064,5073.333358554319,6107.178872083459,77020934.65776679,99239905.60123632,28186614.07570998,0.0 + 09/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75282212.76819065,0.0,23861817.82888095,0.0,16799942.724042778,0.0,22233494.690269874,5145.981394928188,5065.420096208707,5071.947407019352,6105.510490896205,76999893.80058882,138177468.01138426,28186614.07570998,0.0 + 09/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,75755524.27389626,0.0,35310070.49120422,0.0,28125359.678347038,0.0,33913708.83783071,7701.438390184783,7580.870935484527,7590.639661448311,9137.462667977672,115237481.95834306,173104663.28127823,28186614.07570998,0.0 + 09/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68551464.39223509,0.0,41570295.82994313,0.0,36817562.759667437,0.0,41814017.83927205,12831.455361284885,12630.576533898336,12646.852320938411,15224.031979401374,191998498.30388285,188753340.8211177,28186614.07570998,0.0 + 09/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,58553408.38412118,0.0,44232875.397872287,0.0,42476499.08399639,0.0,46424420.46746791,12822.638990425949,12621.898184969888,12638.162789071588,15213.57169191881,191866577.96299044,191687203.33345778,35233267.594637479,0.0 + 09/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,40836930.452808108,0.0,29400270.161810109,0.0,32869798.63570156,0.0,36245330.719046037,18003.31639727327,17721.4711205586,17744.307044890393,21360.247676528867,269385632.0613041,139352329.9693658,14093307.03785499,0.0 + 09/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,32101132.070527477,0.0,19195853.024391328,0.0,27423358.1681999,0.0,28693810.243648,18034.28021322582,17751.950192196116,17774.82539192265,21396.98506219505,269848947.0943427,107414153.5067667,63419881.67034747,0.0 + 09/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,42005952.31290914,0.0,29219843.750372966,0.0,39715117.7861422,0.0,42843892.59864022,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,153784806.44806455,63419881.67034747,69761869.8373822 + 09/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,32508074.68805863,0.0,20539303.368666047,0.0,32008997.21542901,0.0,33327057.618422606,10332.242887350047,10170.489697470577,10183.595411526068,12258.811779882803,154602503.19442619,118383432.8905763,49326574.63249246,69761869.8373822 + 09/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,26960634.845772908,0.0,15569635.593463893,0.0,27619044.99127807,0.0,27874112.798737516,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,98023428.2292524,35233267.594637479,69761869.8373822 + 09/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,23492990.903694229,0.0,12675672.01497091,0.0,25176877.662825176,0.0,24790805.85636882,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,77245140.69979945,86136346.43785915,35233267.594637479,62010550.96656194 + 09/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,16752645.100381216,0.0,6518555.106593435,0.0,19701853.336979018,0.0,18016172.102447109,2581.185747601241,2540.7768032028186,2544.050853445442,3062.478359611532,38622570.349899727,60989225.64640077,35233267.594637479,46507913.22492146 + 09/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,3932471.966288806,0.0,0.0,0.0,7956666.618549511,0.0,3903263.3035409979,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,38635725.44235732,15792401.888379315,21139960.556782485,23253956.61246073 + 09/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.1309374422706,1271.9023865698239,1273.5413626152966,1533.0640336050854,19334299.392836915,0.0,14093307.03785499,0.0 + 09/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,19347204.489021865,0.0,14093307.03785499,0.0 + 09/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 09/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19353838.12699616,0.0,14093307.03785499,0.0 + 09/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,19353877.68371783,0.0,14093307.03785499,0.0 + 09/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,880344.8746016482,0.0,0.0,0.0,9023084.82658021,0.0,1495684.678521892,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,11399114.37970375,14093307.03785499,15502637.741640486 + 09/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,62613933.16681959,0.0,37964899.86321837,0.0,54069733.412649828,0.0,56360622.9090902,20610.605957972366,20287.943076795567,20314.086162197316,24453.697213937205,308398796.6792488,211009189.35177798,56373228.15141996,38756594.35410121 + 09/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,84384998.9077568,0.0,51982259.32841642,0.0,52810735.0307781,0.0,60741615.80017378,18013.41145189717,17731.40813521913,17754.256864408566,21372.225073488204,269536685.49004706,249919609.06712515,56373228.15141996,38756594.35410121 + 09/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79678883.7584331,0.0,34748698.882189508,0.0,31543609.84464896,0.0,36507348.42947462,12820.379647266142,12619.67421224873,12635.935950534582,15210.891067504132,191832771.15919293,182478540.91474618,28186614.07570998,0.0 + 09/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,91278123.64273784,0.0,35405110.778422269,0.0,29212299.275256818,0.0,34761054.035527657,10220.769382861545,10060.761331490203,10073.725649346388,12126.552722012459,152934512.70855815,190656587.7319446,28186614.07570998,0.0 + 09/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,96400773.459672,0.0,35512728.33130714,0.0,26859578.357280155,0.0,35306957.536576729,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,194080037.68483604,28186614.07570998,0.0 + 09/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,103722647.86477466,0.0,43801961.56290823,0.0,31003630.1522135,0.0,43429215.48310464,5094.625012267227,5014.867707298828,5021.329876196587,6044.578103262622,76231442.51649095,221957455.063001,28186614.07570998,0.0 + 09/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,110114973.51809037,0.0,58623165.433143008,0.0,42904328.45723448,0.0,56248543.833191368,5077.199365701253,4997.714862480594,5004.154928187051,6023.903238789915,75970700.62257174,267891011.24165923,28186614.07570998,0.0 + 09/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,107725833.8699829,0.0,69341953.44243479,0.0,54092474.11289714,0.0,67409058.82779867,7599.759525721978,7480.78387261306,7490.42362618066,9016.824576613424,113716049.76406484,298569320.2531135,28186614.07570998,0.0 + 09/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,98074102.46939607,0.0,73844249.29895354,0.0,60720693.892046589,0.0,72971809.56829527,12669.679808651535,12471.333607720662,12487.40419399677,15032.091461554393,189577832.6589241,305610855.22869148,28186614.07570998,0.0 + 09/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,84527005.92383667,0.0,72759604.41297454,0.0,63494933.53853092,0.0,74155610.62862405,12686.439655486682,12487.831076027056,12503.92292097494,15051.97638006161,189828612.11718104,294937154.5039662,35233267.594637479,0.0 + 09/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,63737331.31424895,0.0,54432525.63114284,0.0,50844498.495667468,0.0,60511459.32826438,17831.187542935295,17552.036975545892,17574.654566688056,21156.023361419175,266810048.8077183,229525814.76932363,14093307.03785499,0.0 + 09/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,55072456.121511,0.0,44068819.20525098,0.0,45796218.79755832,0.0,53058552.72241251,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,197996046.84673283,63419881.67034747,0.0 + 09/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,68406353.99400847,0.0,58047177.92734545,0.0,61623938.72803183,0.0,71620795.54450257,10231.207332751987,10071.035873327914,10084.013430979958,12138.936951116428,153090696.91743464,259698266.1938883,63419881.67034747,69761869.8373822 + 09/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,60928728.468816477,0.0,51778555.62121639,0.0,55201328.74394517,0.0,64055183.748540978,10229.15447329596,10069.01515176963,10081.990105515695,12136.501311734313,153059979.75233615,231963796.582519,49326574.63249246,69761869.8373822 + 09/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,51446608.71613499,0.0,42323042.9982395,0.0,47366941.76179291,0.0,54054029.07608414,5134.2922601231889,5053.913956989686,5060.426440965541,6091.64177865178,76824987.9722287,195190622.55225156,35233267.594637479,69761869.8373822 + 09/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,45877480.29763206,0.0,36041856.345168787,0.0,42560615.55299434,0.0,47563988.801154438,5129.950501907454,5049.640169808773,5056.147146573627,6086.490448263911,76760021.75959356,172043940.9969496,35233267.594637479,62010550.96656194 + 09/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,38517800.58081636,0.0,29612705.88174004,0.0,36094173.561834398,0.0,39892766.35474948,2565.4182837654495,2525.256181954793,2528.510232292782,3043.770865651462,38386640.02919215,144117446.3791403,35233267.594637479,46507913.22492146 + 09/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,24326172.487733704,0.0,16940868.18662753,0.0,22996493.14551928,0.0,24359565.54312349,2566.291072256977,2526.115306779668,2529.370464187682,3044.8063958802747,38399699.66077657,88623099.363004,21139960.556782485,23253956.61246073 + 09/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14569166.803645174,0.0,8916980.469020281,0.0,13916232.05532749,0.0,14184474.003312529,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,51586853.33130547,14093307.03785499,0.0 + 09/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14336110.467484713,0.0,8742415.942718763,0.0,13993828.376187733,0.0,14192794.046484687,1281.8098246968025,1261.742852769788,1263.3687372189973,1520.8184273136822,19179863.43119737,51265148.83287589,14093307.03785499,0.0 + 09/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,12932561.348487042,0.0,7547511.843819035,0.0,13061255.560813815,0.0,12997517.245703115,1282.0379647266144,1261.967421224873,1263.593595053458,1521.089106750413,19183277.115919293,46538845.99882301,14093307.03785499,0.0 + 09/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,13780572.092921816,0.0,8817641.340075864,0.0,13939617.341490692,0.0,14277559.706439974,1279.9055658805099,1259.868405480503,1261.4918745130595,1518.5590969181783,19151369.7940521,50815390.48092835,14093307.03785499,0.0 + 09/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,14775887.549531138,0.0,10179414.722152228,0.0,14564239.345749543,0.0,15276576.664374866,1280.151271042009,1260.1102640818627,1261.734044773913,1518.8506167131546,19155046.30779938,54796118.281807769,14093307.03785499,0.0 + 09/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,21441149.700824135,0.0,16653188.036712047,0.0,20955067.698675589,0.0,22658406.586876774,5115.603666375993,5035.517936663957,5042.006715489979,6069.468475558214,76545348.45871732,81707812.02308855,14093307.03785499,15502637.741640486 + 09/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44195711.17571933,0.0,40053129.962863478,0.0,42063850.773785028,0.0,48392289.56451639,20462.414665503973,20142.071746655827,20168.026861959916,24277.873902232855,306181393.83486929,174704981.47688423,56373228.15141996,38756594.35410121 + 09/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,38976091.1945593,0.0,35415945.127281878,0.0,35010365.004964787,0.0,40378233.88956831,17904.612832315976,17624.312778323845,17647.023504214925,21243.13966445375,267908719.6055106,149780635.21637426,56373228.15141996,38756594.35410121 + 09/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9631082.695753549,0.0,6062810.639896221,0.0,7624369.810805086,0.0,6849830.303621782,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,30168093.45007664,28186614.07570998,0.0 + 09/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14805192.849687087,0.0,9781874.970314499,0.0,8149111.651187796,0.0,7590563.031176356,10258.111192340759,10097.518547975913,10110.530231257271,12170.857353535048,153493262.37039239,40326742.50236574,28186614.07570998,0.0 + 09/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14966410.495300144,0.0,9451361.936814042,0.0,7238727.160629857,0.0,6620304.330015112,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,38276803.92275915,28186614.07570998,0.0 + 09/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10603521.161002255,0.0,5301619.166308437,0.0,4012992.2972241465,0.0,3004608.782367068,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,22922741.406901905,28186614.07570998,0.0 + 09/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5140.776816583388,5060.296996508808,5066.817705682585,6099.335457361069,76922017.11408906,0.0,28186614.07570998,0.0 + 09/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7713.463002151948,7592.7072999081569,7602.491278235613,9151.729411069056,115417407.56891319,0.0,28186614.07570998,0.0 + 09/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1208612.4029984635,0.0,0.0,0.0,0.0,0.0,12859.51171233805,12658.193657541857,12674.505032064568,15257.319768949194,193626921.01821567,0.0,28186614.07570998,0.0 + 09/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,203694.15031627863,0.0,0.0,0.0,0.0,0.0,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192508736.93553893,0.0,35233267.594637479,0.0 + 09/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,838385.6282614755,0.0,3774556.3058303787,0.0,0.0,0.0,0.0,0.0,17989.991148980273,17708.354481513452,17731.17350371705,21344.437778085226,273799186.81835749,0.0,14093307.03785499,0.0 + 09/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,6143314.829331793,0.0,0.0,18003.31639727327,17721.4711205586,17744.307044890393,21360.247676528867,269385632.0613041,6143314.829331793,63419881.67034747,0.0 + 09/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,19580728.965712169,0.0,13827395.667869937,0.0,33242401.312451535,0.0,32585964.165013169,10294.775153724086,10133.608528204128,10146.666717108637,12214.357744166919,154041869.31553359,99236490.11104682,63419881.67034747,69761869.8373822 + 09/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,18966666.010756818,0.0,13826706.508164484,0.0,27506383.057376516,0.0,28821070.75464434,10283.094436070924,10122.110674364862,10135.154047111138,12200.499018551845,153867089.43395559,89120826.33094216,49326574.63249246,69761869.8373822 + 09/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14342692.759769952,0.0,9014615.418502232,0.0,23703250.174763025,0.0,23805438.29572448,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,70865996.6487597,35233267.594637479,69761869.8373822 + 09/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12021374.673681956,0.0,6659306.3152264249,0.0,21663326.73286583,0.0,21294003.134703444,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,61638010.856477659,35233267.594637479,62010550.96656194 + 09/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5543037.842795271,0.0,480612.3166211719,0.0,16122890.610417996,0.0,14436296.493848324,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,36582837.26368276,35233267.594637479,46507913.22492146 + 09/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,3758912.4902144556,0.0,0.0,2574.038580021104,2533.741525864451,2537.006510434148,3053.9985181018585,38515626.483917627,3758912.4902144556,21139960.556782485,23253956.61246073 + 09/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.4700867570489,1269.2831919984604,1270.9187929443925,1529.9070358379848,19294484.78713639,0.0,14093307.03785499,0.0 + 09/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,0.0,14093307.03785499,0.0 + 09/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 + 09/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,19353120.74901996,0.0,14093307.03785499,0.0 + 09/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,19353184.64539565,0.0,14093307.03785499,0.0 + 09/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.705474246016,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,15502637.741640486 + 09/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,17028561.998934509,0.0,1553803.6247576283,0.0,24123843.17435787,0.0,17749670.668504806,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,77346228.23363887,60455879.466554809,56373228.15141996,38756594.35410121 + 09/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,58122621.14255679,0.0,24381529.03158636,0.0,34403712.989471029,0.0,35867869.09138264,12921.309374422706,12719.023865698236,12735.413626152967,15330.640336050854,193342993.92836917,152775732.25499685,56373228.15141996,38756594.35410121 + 09/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53321664.166882317,0.0,10163962.90637788,0.0,13930803.116717272,0.0,13291559.664400019,12904.772555802803,12702.745934058768,12719.114718737126,15311.020032007513,193095551.66618235,90707989.85437748,28186614.07570998,0.0 + 09/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,62958010.34470584,0.0,8916348.290430833,0.0,9878466.959488295,0.0,9447003.921461843,12899.919272181049,12697.968629497489,12714.331258131313,15305.261796251525,193022931.44182096,91199829.5160868,28186614.07570998,0.0 + 09/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68693458.30895593,0.0,8899113.56228481,0.0,7613624.415035069,0.0,9756765.330841354,7728.977234239637,7607.978653798336,7617.7823108239949,9170.136455226453,115649548.75471832,94962961.61711717,28186614.07570998,0.0 + 09/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,74355616.27306085,0.0,16529780.591760833,0.0,11765553.363185788,0.0,17533091.509258175,7721.081365293064,7600.206396153094,7610.000037831479,9160.76830812519,115531401.98665019,120184041.73726565,28186614.07570998,0.0 + 09/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72920145.92726699,0.0,25444493.822218494,0.0,19657858.347983995,0.0,25112191.616783259,7715.70702740283,7594.9161945251139,7604.703019238741,9154.391861369517,115450985.16913033,143134689.7142527,28186614.07570998,0.0 + 09/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70314073.62019482,0.0,33236578.086908394,0.0,27690321.428159678,0.0,32715586.443758284,7720.033479384502,7599.174915093914,7608.967227603673,9159.525031494948,115515722.35287734,163956559.57902117,28186614.07570998,0.0 + 09/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55850091.80185367,0.0,31384586.244240278,0.0,29778177.708642477,0.0,32752180.030816989,18027.608506150802,17745.382931939967,17768.249669081353,21389.06933642526,269749117.59695056,149765035.78555344,28186614.07570998,0.0 + 09/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,34775606.46666703,0.0,20444553.316564606,0.0,23583517.713361443,0.0,23796911.494598807,23202.98627992636,22839.7392012013,22869.170536365764,27529.4575086951,347188872.6942787,102600588.9911919,35233267.594637479,0.0 + 09/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,17731234.54077283,0.0,5987660.7615478769,0.0,13658253.03176744,0.0,12097157.136767948,18063.34824279755,17780.56315634227,17803.47522679357,21431.473169687008,270283895.26423349,49474305.47085609,14093307.03785499,0.0 + 09/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,15287221.395075079,0.0,3874929.8807449156,0.0,14920407.054611627,0.0,12827949.02173663,18075.91277082021,17792.930984334824,17815.85899199485,21446.380502568372,270471899.6989857,46910507.35216825,63419881.67034747,0.0 + 09/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24536805.382618246,0.0,13012542.940744622,0.0,26772886.367420034,0.0,26309505.07992817,15504.624506308428,15261.896717277323,15281.563228946952,18395.64512883233,231997426.4929141,90631739.77071108,63419881.67034747,69761869.8373822 + 09/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,17382141.089734325,0.0,7130506.420224667,0.0,21110935.7306374,0.0,19381747.26583158,12921.309374422706,12719.023865698236,12735.413626152967,15330.640336050854,193342993.92836917,65005330.50642797,49326574.63249246,69761869.8373822 + 09/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10504743.959159222,0.0,1156784.5579422357,0.0,15544488.723658286,0.0,12471456.290950079,10340.447442243982,10178.565808527088,10191.68192947599,12268.546171077343,154725268.86476786,39677473.53170982,35233267.594637479,69761869.8373822 + 09/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5992717.577327041,0.0,0.0,0.0,12015998.029062499,0.0,8241552.793152475,7754.945165752549,7633.540052499099,7643.376647995982,9200.946414709637,116038109.81144618,26250268.399542016,35233267.594637479,62010550.96656194 + 09/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,176952.7612960675,0.0,0.0,0.0,5875400.284486415,0.0,1044758.8109027476,5171.59154624017,5090.629315824331,5097.189111287503,6135.895957828297,77383101.35224909,7097111.8566852309,35233267.594637479,46507913.22492146 + 09/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,7581300.501433032,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,46287047.22980882,0.0,21139960.556782485,23253956.61246073 + 09/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223884,19353877.68371783,0.0,14093307.03785499,0.0 + 09/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,19353689.498937776,0.0,14093307.03785499,0.0 + 09/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1435581.3040867716,0.0,10376866.438857384,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,31165122.643441116,0.0,14093307.03785499,0.0 + 09/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9602183.050541785,0.0,16586374.883101263,0.0,0.0,0.0,4951734.3054296099,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,50487688.31362206,0.0,14093307.03785499,0.0 + 09/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9228835.296651222,0.0,13852526.743035514,0.0,0.0,0.0,5050042.7656096699,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,47477391.35097806,0.0,14093307.03785499,0.0 + 09/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4178662433677,1273.1691682604633,1274.8097766834422,1534.5909255024945,19353555.852083167,0.0,14093307.03785499,15502637.741640486 + 09/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,5748723.963990838,345598.2749073329,8074441.923209621,0.0,0.0,0.0,3591831.034770718,0.0,1293.3087698752136,1273.0617798163049,1274.7022498583124,1534.4614868261443,36766920.35292469,345598.2749073329,56373228.15141996,38756594.35410121 + 09/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,23138180.691012358,0.0,0.0,0.0,9262736.660584264,0.0,3926266.897705947,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,36327184.249302569,56373228.15141996,38756594.35410121 + 09/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25147267.161678547,0.0,0.0,0.0,180456.34655069153,0.0,0.0,7757.079993855047,7635.6414594694019,7645.480762843652,9203.479306761852,116070053.48254782,25327723.508229235,28186614.07570998,0.0 + 09/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15175977.143724688,0.0,0.0,0.0,0.0,0.0,0.0,7754.945165752549,7633.540052499099,7643.376647995982,9200.946414709637,116038109.81144618,15175977.143724688,28186614.07570998,0.0 + 09/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9083524.1318908,0.0,0.0,0.0,0.0,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,77350536.73556961,9083524.1318908,28186614.07570998,0.0 + 09/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9479320.174203545,0.0,0.0,0.0,0.0,0.0,0.0,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,9479320.174203545,28186614.07570998,0.0 + 09/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4396365.850054065,0.0,0.0,0.0,0.0,0.0,0.0,7753.2451808065729,7631.866681134585,7641.701120321666,9198.92944746365,116012672.7470153,4396365.850054065,28186614.07570998,0.0 + 09/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1627520.8080771992,1116949.6505113403,0.0,0.0,0.0,0.0,0.0,10338.25455627138,10176.407252593472,10189.52059202273,12265.944395578455,155809406.1177891,1627520.8080771992,28186614.07570998,0.0 + 09/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,2997643.453901913,0.0,0.0,0.0,0.0,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,196384411.69338913,0.0,28186614.07570998,0.0 + 09/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,4546601.995903291,0.0,0.0,0.0,817779.2811066697,0.0,15509.081827508919,15266.284258282907,15285.956423746948,18400.9335702903,237428503.16439463,0.0,35233267.594637479,0.0 + 09/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,10723963.133244917,0.0,0.0,0.0,5948158.142366458,0.0,18100.570411840596,17817.202605385155,17840.16188950626,21475.635852399035,287512976.0084832,0.0,14093307.03785499,0.0 + 09/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,6886856.488813439,0.0,0.0,0.0,0.0,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,161699156.78553499,0.0,63419881.67034747,0.0 + 09/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,3566594.3170388808,0.0,0.0,7760.638218499067,7639.143979442833,7648.987796171564,9207.701004476197,116123295.59492278,3566594.3170388808,63419881.67034747,69761869.8373822 + 09/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,2996990.7647951187,0.0,0.0,2457695.414270057,0.0,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,80403593.03780991,2457695.414270057,49326574.63249246,69761869.8373822 + 09/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,9149304.798844308,0.0,0.0,0.0,0.0,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,86557411.34665005,0.0,35233267.594637479,69761869.8373822 + 09/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3712526.966724209,0.0,11695345.50549961,0.0,0.0,0.0,0.0,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,92814474.7452386,0.0,35233267.594637479,62010550.96656194 + 09/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7574089.579701682,0.0,14710970.401727582,0.0,0.0,0.0,2213006.741965469,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,101912290.1317274,0.0,35233267.594637479,46507913.22492146 + 09/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,17932299.563434535,0.0,24904067.19218719,0.0,3546234.5735856399,0.0,15013543.035649732,0.0,2585.9205143273909,2545.4374462726007,2548.7175022295216,3068.0959795949518,100089561.55758517,0.0,21139960.556782485,23253956.61246073 + 09/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.69588468862,1272.4584894616406,1274.09818210245,1533.7343219475166,19342752.761520819,0.0,14093307.03785499,0.0 + 09/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2151170.803109716,0.0,11360150.54573901,0.0,0.0,0.0,0.0,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,32854074.11036954,0.0,14093307.03785499,0.0 + 09/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9777658.958804844,0.0,15117166.954095565,0.0,0.0,0.0,3983186.5414913536,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,48222451.20926216,0.0,14093307.03785499,0.0 + 09/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12176659.349644039,0.0,17162115.0379702,0.0,1108481.2287937413,0.0,8900252.993264812,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,58686475.04101926,0.0,14093307.03785499,0.0 + 09/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11655406.303724532,0.0,15964509.768699013,0.0,2085883.3915150287,0.0,7930170.077263665,0.0,1292.3738138579286,1272.1414607098862,1273.7807448267902,1533.3521972011009,56973903.12094678,0.0,14093307.03785499,0.0 + 09/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,280568.06431634767,0.0,1044309.980947609,0.0,0.0,0.0,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,78724078.58673795,0.0,14093307.03785499,15502637.741640486 + 09/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9397899.751137587,0.0,11648669.164758306,0.0,2691871.2710118617,0.0,7957685.284670498,0.0,20694.791976285633,20370.811147287255,20397.061016656,24553.580711088012,341354606.9363191,0.0,56373228.15141996,38756594.35410121 + 09/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,14288601.133735564,5536234.453926751,0.0,712559.7099129692,0.0,3043808.729039666,0.0,18100.570411840596,17817.202605385155,17840.16188950626,21475.635852399035,280133457.62575116,14288601.133735564,56373228.15141996,38756594.35410121 + 09/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25436550.09967631,0.0,0.0,0.0,0.0,0.0,0.0,12925.559302804977,12723.207260658859,12739.602411844986,15335.682713846678,193406586.0809598,25436550.09967631,28186614.07570998,0.0 + 09/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31374457.04187899,0.0,0.0,0.0,0.0,0.0,0.0,10333.707608694891,10171.931488329525,10185.039060279698,12260.54961584661,154624419.98334263,31374457.04187899,28186614.07570998,0.0 + 09/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31314086.508660444,0.0,0.0,0.0,0.0,0.0,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,77295566.1701588,31314086.508660444,28186614.07570998,0.0 + 09/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38411015.756986837,0.0,0.0,0.0,0.0,0.0,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,77295566.1701588,38411015.756986837,28186614.07570998,0.0 + 09/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39236256.728802237,0.0,3197948.282179868,0.0,928354.1918684869,0.0,0.0,5164.954008148201,5084.095689629423,5090.647065848369,6128.02077225258,77283783.12916287,43362559.202850598,28186614.07570998,0.0 + 09/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32363147.939904378,0.0,7330112.324662131,0.0,6988004.44557054,0.0,5824123.098023218,7741.434961198951,7620.241352718114,7630.060811482959,9184.917072723005,115835955.1132429,52505387.80816026,28186614.07570998,0.0 + 09/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22604155.38323736,0.0,5224815.943262559,0.0,8463532.681967389,0.0,6013230.580411879,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,42305734.58887918,28186614.07570998,0.0 + 09/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5286393.496212845,0.0,0.0,0.0,2726612.002551747,0.0,352494.23202719187,12916.230548450674,12714.02454969425,12730.40786802004,15324.614502905742,193266998.88865454,8365499.730791784,35233267.594637479,0.0 + 09/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,797283.5446032317,0.0,0.0,0.0,0.0,0.0,18088.728590693165,17805.54617015688,17828.490433771443,21461.585983637713,271460947.7863363,0.0,14093307.03785499,0.0 + 09/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,5289.3845480284639,0.0,0.0,1312711.9021405285,0.0,0.0,18096.66170153254,17813.355086666143,17836.309412866667,21470.998316823174,270787657.6489467,1312711.9021405285,63419881.67034747,0.0 + 09/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,6415602.727070281,0.0,0.0,0.0,14039976.66885546,0.0,7689925.130805035,10343.574380486538,10181.64379396813,10194.763881215431,12272.256163939564,154772057.59059478,28145504.526730777,63419881.67034747,69761869.8373822 + 09/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,4709775.934909463,0.0,0.0,0.0,11283139.078757678,0.0,7502847.451612661,10343.18309248034,10181.258631648661,10194.378222575006,12271.791915656593,154766202.70449818,23495762.4652798,49326574.63249246,69761869.8373822 + 09/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,383515.19147472406,0.0,0.0,0.0,7191478.3655297909,0.0,2681686.288705564,5173.019507611572,5092.034922194079,5098.596528924525,6137.590179486829,77404468.09758123,10256679.84571008,35233267.594637479,69761869.8373822 + 09/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,1039379.0315184214,0.0,0.0,3101110.453523009,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,78454434.74899177,3101110.453523009,35233267.594637479,62010550.96656194 + 09/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,7455208.437212396,0.0,0.0,0.0,0.0,0.0,2586.6644913924235,2546.169776237891,2549.4507758767197,3068.9786799832625,46159757.84177746,0.0,35233267.594637479,46507913.22492146 + 09/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,6541962.9308113199,0.0,15872816.496628887,0.0,0.0,0.0,2703385.5437660736,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,63824831.97086478,0.0,21139960.556782485,23253956.61246073 + 09/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,19352674.90049696,0.0,14093307.03785499,0.0 + 09/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,19353852.873256897,0.0,14093307.03785499,0.0 + 09/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,254349.29770517635,0.0,7922362.9131099539,0.0,0.0,0.0,0.0,0.0,1293.3156672372614,1273.0685691988627,1274.7090479896829,1534.469670282925,27528738.847766568,0.0,14093307.03785499,0.0 + 09/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2709948.0545890138,0.0,7201089.558529447,0.0,0.0,0.0,0.0,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,29263312.31540099,0.0,14093307.03785499,0.0 + 09/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1315796.7838613955,0.0,5463852.906464314,0.0,0.0,0.0,0.0,0.0,1293.4030062155769,1273.1545408691798,1274.795130443272,1534.5732946467629,26132983.19015496,0.0,14093307.03785499,0.0 + 09/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,77400688.63593015,0.0,14093307.03785499,15502637.741640486 + 09/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,7969160.874671824,0.0,10248976.011786746,0.0,0.0,0.0,7315002.434174752,0.0,20677.660878846906,20353.948240374735,20380.176380166762,24533.255317911156,334935286.26291176,0.0,56373228.15141996,38756594.35410121 + 09/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,1556048.1681023599,0.0,0.0,0.0,0.0,0.0,18083.98831521606,17800.880104576663,17823.81835548947,21455.961827731564,272148783.1389519,0.0,56373228.15141996,38756594.35410121 + 09/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12904.772555802803,12702.745934058768,12719.114718737126,15311.020032007513,193095551.66618235,0.0,28186614.07570998,0.0 + 09/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10298.85855549139,10137.628003555008,10150.691371963767,12219.202544490798,154102969.7118035,0.0,28186614.07570998,0.0 + 09/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25282487.93484553,0.0,0.0,0.0,0.0,0.0,0.0,5144.5392373487479,5064.000515875207,5070.525997411699,6103.799425978739,76978314.63581182,25282487.93484553,28186614.07570998,0.0 + 09/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19569706.068004148,0.0,4277527.786158654,0.0,0.0,0.0,0.0,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,23847233.854162806,28186614.07570998,0.0 + 09/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8813601.035365178,0.0,954579.5563838179,0.0,0.0,0.0,0.0,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,9768180.591748996,28186614.07570998,0.0 + 09/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7723.13659377023,7602.229449645048,7612.025698234345,9163.206758260454,115562154.59967628,0.0,28186614.07570998,0.0 + 09/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,5713053.296663891,0.0,0.0,0.0,1889811.5121205999,0.0,12890.547933292422,12688.744000667388,12705.094742425425,15294.143060386168,200485571.86116157,0.0,28186614.07570998,0.0 + 09/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7087191.666260913,0.0,11694945.336353487,0.0,913588.9070187955,0.0,6566918.003024264,0.0,12896.03965596058,12694.149749392695,12710.507457009717,15300.658779699996,219227524.2240842,0.0,35233267.594637479,0.0 + 09/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16882969.93247075,0.0,21668049.514147689,0.0,8545541.459024866,0.0,15886747.822678741,0.0,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,333738898.2883631,0.0,14093307.03785499,0.0 + 09/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,9933244.977141772,0.0,15171451.505723138,0.0,0.0,0.0,5608658.69004418,0.0,18104.193634288007,17820.76910560924,17843.732985529907,21479.934667525984,301608424.5875404,0.0,63419881.67034747,0.0 + 09/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,648447.2509470622,0.0,5929861.53012768,0.0,0.0,0.0,0.0,0.0,10347.46731810134,10185.475786918345,10198.600812079689,12276.874985816963,161408616.83157359,0.0,63419881.67034747,69761869.8373822 + 09/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,8647548.176491153,0.0,14450461.63357822,0.0,0.0,0.0,0.0,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,177853519.84903259,0.0,49326574.63249246,69761869.8373822 + 09/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14387329.133018349,0.0,20443077.60663215,0.0,0.0,0.0,7374357.765983584,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,119579216.62400548,0.0,35233267.594637479,69761869.8373822 + 09/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17116805.20217086,0.0,23177898.16155644,0.0,1252979.8384404772,0.0,10323050.594174523,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,129245185.9147137,0.0,35233267.594637479,62010550.96656194 + 09/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22101081.70670797,0.0,28264140.74694393,0.0,6471866.539156298,0.0,15805133.13517389,0.0,2584.747627715857,2544.2829214197724,2547.5614896535805,3066.7043944022018,111318089.28747116,0.0,35233267.594637479,46507913.22492146 + 09/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,30836626.225776979,0.0,36938142.52816861,0.0,14860577.771291936,0.0,25866516.377984469,0.0,2585.0191227165457,2544.5501661155778,2547.8290787214534,3067.026512856917,147181792.47269977,0.0,21139960.556782485,23253956.61246073 + 09/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2562123.3978465979,0.0,0.0,0.0,0.0,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,21896751.534286716,0.0,14093307.03785499,0.0 + 09/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16948556.54781799,0.0,23620202.049458609,0.0,0.0,0.0,8263203.184636866,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915205,68160391.87201582,0.0,14093307.03785499,0.0 + 09/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21949357.82733484,0.0,26982910.847490465,0.0,6866536.9350284379,0.0,16739250.59639671,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,91865143.44652228,0.0,14093307.03785499,0.0 + 09/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24519085.17932856,0.0,29530085.12716748,0.0,10611926.340586717,0.0,19801305.94493887,0.0,1290.7379493515048,1270.5312059674805,1272.1684151067937,1531.411306409016,103775858.5486269,0.0,14093307.03785499,0.0 + 09/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22936407.212408034,0.0,27259480.407762749,0.0,9060237.581045388,0.0,17703241.531486758,0.0,1290.2735012547228,1270.0740288922964,1271.710648912285,1530.8602564712579,96265873.10061294,0.0,14093307.03785499,0.0 + 09/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1712331.765051477,0.0,2489489.4618641145,0.0,0.0,0.0,0.0,0.0,5171.445745380808,5090.485797504622,5097.0454080297899,6135.722970674224,81582740.94463758,0.0,14093307.03785499,15502637.741640486 + 09/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9823269.630653097,0.0,11533059.013558353,0.0,2089004.9184592323,0.0,7044665.934532365,0.0,20694.288929952643,20370.31597623845,20396.565207528758,24552.98386581638,340140953.8235335,0.0,56373228.15141996,38756594.35410121 + 09/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,11631118.196690955,2645961.18090265,0.0,0.0,0.0,0.0,0.0,18106.322778252987,17822.86491742826,17845.83149801637,21482.460815566017,273572889.2142517,11631118.196690955,56373228.15141996,38756594.35410121 + 09/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18491922.949487598,1738506.3210337859,0.0,0.0,0.0,0.0,0.0,12927.931352996873,12725.542175962495,12741.94033592531,15338.49706085264,195180585.65368814,18491922.949487598,28186614.07570998,0.0 + 09/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22558304.14359689,4946835.916655121,0.0,0.0,0.0,2189149.372858423,0.0,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,161791216.60056124,22558304.14359689,28186614.07570998,0.0 + 09/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22120714.53110399,5405640.311728319,0.0,0.0,0.0,3794052.389325082,0.0,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,86500944.2982665,22120714.53110399,28186614.07570998,0.0 + 09/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15633084.223761859,1413132.9485977155,0.0,0.0,0.0,665362.3553657468,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,79330419.1066781,15633084.223761859,28186614.07570998,0.0 + 09/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11586391.921430912,0.0,0.0,0.0,0.0,0.0,0.0,5158.415862384232,5077.659899757079,5084.202982803887,6120.263511879998,77185952.12457071,11586391.921430912,28186614.07570998,0.0 + 09/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21045311.718892464,0.0,0.0,0.0,0.0,0.0,0.0,7739.189322470282,7618.030869882667,7627.847480214758,9182.25270809274,115802353.3703776,21045311.718892464,28186614.07570998,0.0 + 09/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3495624.023926853,0.0,0.0,0.0,0.0,0.0,0.0,12901.166853242785,12699.196679444969,12715.560890546494,15306.74200355818,193041599.13645274,3495624.023926853,28186614.07570998,0.0 + 09/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,584615.3319184171,0.0,0.0,0.0,0.0,0.0,0.0,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,584615.3319184171,35233267.594637479,0.0 + 09/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2319551.3359375649,0.0,0.0,0.0,0.0,0.0,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,272893349.7800539,0.0,14093307.03785499,0.0 + 09/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,5214417.229178831,0.0,0.0,0.0,0.0,0.0,18105.568276640504,17822.12222767927,17845.087851235836,21481.565628203898,276130055.57071307,0.0,63419881.67034747,0.0 + 09/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,269437.071462327,0.0,0.0,0.0,8795902.171620556,0.0,2441251.432843817,10343.574380486538,10181.64379396813,10194.763881215431,12272.256163939564,154772057.59059478,11506590.6759267,63419881.67034747,69761869.8373822 + 09/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,1748646.6589621367,0.0,0.0,0.0,9523690.944500644,0.0,4900437.603814438,10341.898368361712,10179.994020125774,10193.111981471095,12270.267639530774,154746979.23416168,16172775.207277216,49326574.63249246,69761869.8373822 + 09/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5326198.465513998,0.0,253067.9162194814,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,77402647.58761499,5579266.381733479,35233267.594637479,69761869.8373822 + 09/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,6982018.310104452,0.0,0.0,484779.1473667551,0.0,0.0,5173.626478327107,5092.632390669831,5099.194767299391,6138.3103270713149,84395568.57822797,484779.1473667551,35233267.594637479,62010550.96656194 + 09/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4075437.4507968018,0.0,14005981.52941686,0.0,0.0,0.0,0.0,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,56786768.78120759,0.0,35233267.594637479,46507913.22492146 + 09/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,16377053.060898949,0.0,23358635.21707178,0.0,1813007.998496998,0.0,11168852.738742928,0.0,2586.466654568959,2545.9750365868046,2549.255785283716,3068.743954144118,91419138.1653116,0.0,21139960.556782485,23253956.61246073 + 09/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.0911584806107,1272.8475751686795,1274.4877691861353,1534.2032992131854,19348667.287374997,0.0,14093307.03785499,0.0 + 09/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2618010.815839255,0.0,9569949.807438313,0.0,0.0,0.0,0.0,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,31528889.25361997,0.0,14093307.03785499,0.0 + 09/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9007431.947187517,0.0,14287613.455317716,0.0,0.0,0.0,4452732.426336242,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,47093764.37452313,0.0,14093307.03785499,0.0 + 09/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11926431.490464103,0.0,16985398.895355286,0.0,1346549.9871471548,0.0,8808279.098105323,0.0,1291.826131186492,1271.602352112841,1273.240941533292,1532.702392617774,58396398.01389329,0.0,14093307.03785499,0.0 + 09/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10453169.949655772,0.0,14966996.33893832,0.0,1870925.2372971327,0.0,7533544.784532356,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,54172032.38497299,0.0,14093307.03785499,0.0 + 09/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,420074.8007215095,0.0,2885147.311166738,0.0,0.0,0.0,0.0,0.0,5173.508727977128,5092.516483723547,5099.078710995175,6138.170620775871,80717010.46838644,0.0,14093307.03785499,15502637.741640486 + 09/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12563890.962552552,0.0,13684655.413384039,0.0,7055022.770941376,0.0,12834116.56688176,0.0,20687.894370808346,20364.021525110464,20390.26264535803,24545.396965487,355692957.53810957,0.0,56373228.15141996,38756594.35410121 + 09/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,5985324.697779011,0.0,10236136.75206393,0.0,3887609.713765494,0.0,7006301.911209686,0.0,18085.221682874773,17802.094163634596,17825.033978986423,21457.425171378094,297726563.06356409,0.0,56373228.15141996,38756594.35410121 + 09/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1937867.1956670334,528124.2127095291,0.0,0.0,0.0,0.0,0.0,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193690821.6084228,1937867.1956670334,28186614.07570998,0.0 + 09/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,8121551.286547663,0.0,1398216.8726265806,0.0,5814106.010559914,0.0,10329.908016296402,10168.191379258846,10181.294131696737,12256.04154450516,169901440.42805989,0.0,28186614.07570998,0.0 + 09/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,829184.3330608563,0.0,100284.79318997414,0.0,1339904.5062954189,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,79500537.40168041,0.0,28186614.07570998,0.0 + 09/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6353521.608004035,0.0,0.0,0.0,0.0,0.0,0.0,5159.459548313522,5078.687246588446,5085.231653476505,6121.501805395159,77201568.91358507,6353521.608004035,28186614.07570998,0.0 + 09/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21767289.651219883,0.0,0.0,0.0,0.0,0.0,0.0,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,21767289.651219883,28186614.07570998,0.0 + 09/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36725285.5691172,0.0,7812218.330559748,0.0,5843992.778448662,0.0,5895822.570940463,7725.137698942803,7604.199227142838,7613.998013991493,9165.580993160831,115592097.35965666,56277319.24906608,28186614.07570998,0.0 + 09/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33470531.06741192,0.0,16381752.420719112,0.0,16375253.411239643,0.0,16078067.473214485,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,82305604.37258516,28186614.07570998,0.0 + 09/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,24284623.41574984,0.0,15908734.005269457,0.0,20232983.847022535,0.0,18948513.40811879,12876.863218679146,12675.273522814263,12691.606906486682,15277.906668875186,192677941.140679,79374854.67616062,35233267.594637479,0.0 + 09/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,10379894.766096276,0.0,4815885.772094484,0.0,11966550.411918473,0.0,9862363.846088963,18074.45441088164,17791.49545529315,17814.421613127484,21444.65021417028,270450078.0965012,37024694.7961982,14093307.03785499,0.0 + 09/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,5799290.422928102,0.0,0.0,0.0,9691550.97922054,0.0,6410643.453165993,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,21901484.855314636,63419881.67034747,0.0 + 09/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,17812696.590875247,0.0,7622921.5270729879,0.0,23698578.101334037,0.0,22284204.76481317,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154709414.59158979,71418400.98409543,63419881.67034747,69761869.8373822 + 09/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,16024176.510779378,0.0,8261469.455162128,0.0,21651281.97732558,0.0,20228541.08949775,10325.649633769744,10163.999662505044,10177.097013488059,12250.989136189737,154503847.6054293,66165469.03276484,49326574.63249246,69761869.8373822 + 09/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10095397.162917218,0.0,2677577.017471233,0.0,16799905.087785625,0.0,14040293.778779053,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,77354707.29579489,43613173.04695313,35233267.594637479,69761869.8373822 + 09/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5821965.855373723,0.0,0.0,0.0,13538723.021107624,0.0,9918693.28159406,5167.883380566953,5086.979202176486,5093.5342940956629,6131.49636080641,77327615.65552384,29279382.158075409,35233267.594637479,62010550.96656194 + 09/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2073172.5338852455,0.0,0.0,0.0,9768293.325271849,0.0,5831772.024518354,2582.870740394684,2542.435417119745,2545.7116046556918,3064.4775392408234,38647783.0850794,17673237.88367545,35233267.594637479,46507913.22492146 + 09/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,740035.8021068327,0.0,0.0,15517.805025974367,0.0,0.0,2585.474592090428,2544.9985050314437,2548.2779953677738,3067.5669098826936,39426780.610647249,15517.805025974367,21139960.556782485,23253956.61246073 + 09/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.1309374422706,1271.9023865698239,1273.5413626152966,1533.0640336050854,19334299.392836915,0.0,14093307.03785499,0.0 + 09/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 09/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 + 09/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.7054742460162,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 + 09/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.737296045214,1272.4992525157218,1274.1389976838869,1533.7834549413468,19343372.40427021,0.0,14093307.03785499,0.0 + 09/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5169.415219711726,5088.487060093683,5095.0440950416909,6133.313829477789,77350536.7355696,0.0,14093307.03785499,15502637.741640486 + 09/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,26833467.600657066,0.0,6020215.737088811,0.0,28527133.013526236,0.0,21518833.101362684,20647.636089284482,20324.39349449403,20350.5835499794,24497.632051212015,308952882.66589179,82899649.45263478,56373228.15141996,38756594.35410121 + 09/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,62360785.98060052,0.0,36164712.45659095,0.0,37846774.335067678,0.0,41236485.150912839,18020.652052130536,17738.53538250511,17761.393295880138,21380.815769274388,269645027.3992446,177608757.923172,56373228.15141996,38756594.35410121 + 09/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56764786.6442322,0.0,26593498.81509143,0.0,20995690.964382478,0.0,23500095.19284866,12835.730650307973,12634.784892474212,12651.066102413852,15229.104446629452,192062469.93057177,127854071.61655477,28186614.07570998,0.0 + 09/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63546827.13459349,0.0,30362899.89728191,0.0,21076999.39397172,0.0,24614848.407686443,10261.673135061797,10101.024727819173,10114.040929171128,12175.083462605848,153546560.1167686,139601574.83353357,28186614.07570998,0.0 + 09/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67539178.1183525,0.0,33309672.656576776,0.0,21773745.468205856,0.0,27818299.445193776,5113.542114315616,5033.488658585667,5039.97482247976,6067.0225227328569,76514501.22521004,150440895.6883289,28186614.07570998,0.0 + 09/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81693639.53364207,0.0,39778341.18199824,0.0,26180062.02774627,0.0,35928178.2536873,5098.143391432224,5018.331005581644,5024.797637292732,6048.752525837101,76284088.41651732,183580220.99707387,28186614.07570998,0.0 + 09/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,85246912.19741655,0.0,52090930.89767983,0.0,35652925.45797614,0.0,46147615.40303529,5095.80632156729,5016.030522981425,5022.494190285878,6045.979681653798,76249118.57935822,219138383.9561078,28186614.07570998,0.0 + 09/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79620797.77456135,0.0,56073673.78938291,0.0,41301741.29899017,0.0,51052129.48774066,7643.709482350936,7524.045784472135,7533.741285428817,9068.969522480698,114373677.86903732,228048342.3506751,28186614.07570998,0.0 + 09/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68297852.81235697,0.0,52548823.7632972,0.0,42830486.092932078,0.0,50701428.03136783,12748.24782393121,12548.671626064284,12564.841870270755,15125.309412558205,190753454.638168,214378590.69995407,28186614.07570998,0.0 + 09/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,50904452.35833517,0.0,42581088.404995348,0.0,38491039.33854169,0.0,43870921.16261886,12773.287247088812,12573.319052381255,12589.521057312246,15155.017732321157,191128122.3207725,175847501.26449109,35233267.594637479,0.0 + 09/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,31493432.978809559,0.0,24471773.217370433,0.0,25796101.12470133,0.0,28812391.647906584,17938.857107822154,17658.02095330871,17680.77511562378,21283.76919015747,268421120.52088363,110573698.9687879,14093307.03785499,0.0 + 09/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,33981364.30626144,0.0,26157362.878531275,0.0,31465365.7098659,0.0,34697526.489957619,17957.927986358143,17676.793273683546,17699.571626049474,21306.39605956023,268706480.204345,126301619.38461623,63419881.67034747,0.0 + 09/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,48532189.44098215,0.0,40385978.97392612,0.0,48016634.87685884,0.0,53775800.48032398,10271.933697446557,10111.124659185693,10124.153875330092,12187.257228205619,153700090.05660466,190710603.7720911,63419881.67034747,69761869.8373822 + 09/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,38553008.532228428,0.0,31763434.495458925,0.0,39725636.61535798,0.0,44490972.24798249,10281.553633166775,10120.593993017616,10133.63541136517,12198.670914722137,153844034.2281781,154533051.8910278,49326574.63249246,69761869.8373822 + 09/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,29210319.678919864,0.0,22396338.213292619,0.0,32027478.58020659,0.0,34586099.52150225,5148.077160042208,5067.483051728902,5074.013020868296,6107.997036203717,77031252.96783525,118220235.99392133,35233267.594637479,69761869.8373822 + 09/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21284149.083381744,0.0,14514495.008874268,0.0,26080735.599039157,0.0,26400184.786988416,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,88279564.47828359,35233267.594637479,62010550.96656194 + 09/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12333872.582106462,0.0,6501824.16588962,0.0,18420038.90009679,0.0,16895473.010254943,2578.9401735140979,2538.5663839969208,2541.837585888785,3059.8140716759696,38588969.57427278,54151208.658347818,35233267.594637479,46507913.22492146 + 09/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,1549883.8853007556,0.0,0.0,0.0,7336149.175773716,0.0,4363890.854664301,2576.6343911708165,2536.2966991063669,2539.5649762775876,3057.078348942789,38554467.89579122,13249923.915738773,21139960.556782485,23253956.61246073 + 09/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.1628723732729,1267.996442299723,1269.6303851373323,1528.3560758710754,19274924.79245305,0.0,14093307.03785499,0.0 + 09/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1287.6863218679144,1267.5273522814264,1269.1606906486682,1527.7906668875187,19267794.1140679,0.0,14093307.03785499,0.0 + 09/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.0062846777017,1267.8423060137373,1269.4760502310099,1528.1702905475998,19272581.753292175,0.0,14093307.03785499,0.0 + 09/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 + 09/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 09/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5928738006206,1270.3884016014093,1272.025426722721,1531.239179805766,19311285.174949863,0.0,14093307.03785499,15502637.741640486 + 09/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,1951828.9864670849,0.0,0.0,5156.781997225132,5076.051613061842,5082.592623667088,6118.324993237193,77161504.41788852,1951828.9864670849,56373228.15141996,38756594.35410121 + 09/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,3527759.049940601,0.0,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,3527759.049940601,56373228.15141996,38756594.35410121 + 09/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6122019.786437318,0.0,12601087.305549082,0.0,0.0,0.0,2811361.669496948,0.0,12897.355661240787,12695.445152364739,12711.804529240711,15302.22016972995,214519040.6067576,0.0,28186614.07570998,0.0 + 09/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7069015.705440868,0.0,10079147.645082806,0.0,0.0,0.0,5281368.703917344,0.0,12890.547933292422,12688.744000667388,12705.094742425425,15294.143060386168,215312239.10681809,0.0,28186614.07570998,0.0 + 09/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5445868.063592305,0.0,8090162.111224225,0.0,427475.1676172367,0.0,4212804.01789406,0.0,7728.03770806621,7607.053836082421,7616.856301386059,9169.021743285599,133811799.88008088,0.0,28186614.07570998,0.0 + 09/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6536104.751118376,0.0,9146171.480368313,0.0,1098323.068361613,0.0,4920933.583755451,0.0,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,137392035.9995478,0.0,28186614.07570998,0.0 + 09/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7921145.3392308,0.0,10613977.971444374,0.0,2336412.326887128,0.0,6362226.782647806,0.0,7737.623793576347,7616.489849635616,7626.304474205831,9180.395267819998,143012690.60706616,0.0,28186614.07570998,0.0 + 09/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7975675.441710096,0.0,10672627.469143259,0.0,2736673.5807504856,0.0,6702136.397790231,0.0,7736.820520542294,7615.699151990761,7625.512757666354,9179.44221502791,143854021.61221243,0.0,28186614.07570998,0.0 + 09/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6452484.98873844,0.0,9025576.316335505,0.0,2235839.2244178859,0.0,5775973.7824004809,0.0,18050.675032483014,17768.08834749939,17790.984342886222,21416.43688941499,293584138.9161133,0.0,28186614.07570998,0.0 + 09/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7609233.996667335,0.0,10356704.807674336,0.0,1973642.6578427058,0.0,5702385.563657637,0.0,23208.010756049593,22844.685018213506,22874.122726568,27535.41885781927,372906021.51698336,0.0,35233267.594637479,0.0 + 09/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10262888.581304178,0.0,13001761.206397415,0.0,4085259.762027289,0.0,8303508.738615476,0.0,18044.7654003487,17762.27123175858,17785.159731198037,21409.42533647215,305659256.40754327,0.0,14093307.03785499,0.0 + 09/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,1419636.1056674736,0.0,0.0,0.0,0.0,0.0,18040.66659721306,17758.23659615066,17781.119896550328,21404.56226301265,271364143.3762036,0.0,63419881.67034747,0.0 + 09/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,8666122.322407186,0.0,5275970.082749939,15475.247587152695,15232.979699271233,15252.60894841166,18360.790535639997,231557856.3737121,13942092.405157125,63419881.67034747,69761869.8373822 + 09/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,47138.380906748105,0.0,0.0,0.0,15187293.966797356,0.0,10904572.643169025,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,26139004.99087313,49326574.63249246,69761869.8373822 + 09/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,8098437.027875811,0.0,2697587.873672024,10335.09877655583,10173.300877198077,10186.41021374558,12262.20018340947,154645236.18327225,10796024.901547837,35233267.594637479,69761869.8373822 + 09/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,10023.330336977957,0.0,0.0,3211115.850121076,0.0,0.0,7755.335581682986,7633.924356395314,7643.761447106992,9201.409628308009,116053974.97891286,3211115.850121076,35233267.594637479,62010550.96656194 + 09/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2035105.812110144,0.0,8659236.090781635,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,88095030.53882194,0.0,35233267.594637479,46507913.22492146 + 09/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,12673694.926079933,0.0,17160963.327521758,0.0,0.0,0.0,4079844.0493359507,0.0,2585.9867963510434,2545.502690638808,2548.782830669754,3068.174620685875,72608911.28098136,0.0,21139960.556782485,23253956.61246073 + 09/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.705474246016,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 + 09/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1762739.7334295882,0.0,0.0,0.0,0.0,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,21115860.482449548,0.0,14093307.03785499,0.0 + 09/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4893724.916080146,0.0,9301728.41528775,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,33549142.830305678,0.0,14093307.03785499,0.0 + 09/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7533796.190429397,0.0,10837997.288561009,0.0,0.0,0.0,1579337.6054812424,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,39305008.768189478,0.0,14093307.03785499,0.0 + 09/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6004825.36081977,0.0,8658416.056181713,0.0,0.0,0.0,2038367.947265596,0.0,1293.377181994282,1273.1291209308868,1274.7696777487939,1534.5426551939677,36054556.45339163,0.0,14093307.03785499,0.0 + 09/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2829801949552,1273.0363938783017,1274.676831207937,1534.4308883549703,19351537.53709019,0.0,14093307.03785499,15502637.741640486 + 09/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,134872.96926493877,0.0,0.0,3168255.5066704808,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19479080.902530374,3168255.5066704808,56373228.15141996,38756594.35410121 + 09/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,38765215.043384339,0.0,6724233.593443822,0.0,21930807.270657828,0.0,14668152.545026638,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,82088408.45251262,56373228.15141996,38756594.35410121 + 09/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40191795.432833608,0.0,0.0,0.0,6563163.408936441,0.0,3429873.7453831008,7743.557242803722,7622.330409608453,7632.152560336326,9187.435078834598,115867711.04969916,50184832.58715315,28186614.07570998,0.0 + 09/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36008374.4113663,0.0,536296.6734325034,0.0,3153858.628999529,0.0,737570.3596440451,7743.557242803722,7622.330409608453,7632.152560336326,9187.435078834598,115867711.04969916,40436100.07344238,28186614.07570998,0.0 + 09/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21657921.11661192,0.0,0.0,0.0,631046.656160764,0.0,0.0,5159.459548313522,5078.687246588446,5085.231653476505,6121.501805395159,77201568.91358507,22288967.772772686,28186614.07570998,0.0 + 09/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17088208.699050167,0.0,0.0,0.0,147246.91230284296,0.0,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,17235455.611353008,28186614.07570998,0.0 + 09/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10879453.688298533,0.0,0.0,0.0,544050.1781829475,0.0,0.0,7742.156104017453,7620.951205911264,7630.771579394401,9185.772681149443,115846745.65370122,11423503.86648148,28186614.07570998,0.0 + 09/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5666104.323254944,0.0,0.0,0.0,51243.530860928855,0.0,0.0,10326.537966037178,10164.874087765113,10177.972565534326,12252.043108515318,154517139.82026697,5717347.854115873,28186614.07570998,0.0 + 09/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2624865.318103113,0.0,0.0,0.0,96162.11581366089,0.0,0.0,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,193146424.77533374,2721027.433916774,28186614.07570998,0.0 + 09/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4649542.39639721,0.0,0.0,0.0,7480769.20862078,0.0,0.0,15489.806949055766,15247.311131647664,15266.95884830149,18378.06466277298,231775709.73040045,12130311.60501799,35233267.594637479,0.0 + 09/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,1984260.6283369773,0.0,0.0,18089.833124191788,17806.633411977527,17829.57907661415,21462.896470471194,270680191.49971678,1984260.6283369773,14093307.03785499,0.0 + 09/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,13702.266542130385,0.0,0.0,1144703.4624063373,0.0,0.0,10337.047499538165,10175.219092558591,10188.330900922372,12264.512268840683,154688097.40923745,1144703.4624063373,63419881.67034747,0.0 + 09/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,2290806.487768785,0.0,0.0,0.0,14751617.279337066,0.0,8896745.092091034,7757.96038905313,7636.508071916422,7646.348492009262,9204.523862057627,116083226.93413119,25939168.859196884,63419881.67034747,69761869.8373822 + 09/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,1444523.5609092983,0.0,0.0,0.0,12101527.257930872,0.0,8118326.219698988,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,77337197.57134766,21664377.038539158,49326574.63249246,69761869.8373822 + 09/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,9636994.87880439,0.0,5167945.867868679,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,77332475.49763805,14804940.74667307,35233267.594637479,69761869.8373822 + 09/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,7190813.230242452,0.0,1667207.0507030355,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,77341781.83134353,8858020.280945488,35233267.594637479,62010550.96656194 + 09/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,2057891.003730416,0.0,0.0,2520201.8030797478,0.0,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,79404119.23736929,2520201.8030797478,35233267.594637479,46507913.22492146 + 09/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,3876216.1580561038,0.0,11943293.176353082,0.0,0.0,0.0,0.0,0.0,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,54494777.70219399,0.0,21139960.556782485,23253956.61246073 + 09/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,19349088.870979739,0.0,14093307.03785499,0.0 + 09/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,387179.8993611444,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19741018.026357306,0.0,14093307.03785499,0.0 + 09/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2903972.808310529,0.0,8591364.824626008,0.0,0.0,0.0,0.0,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,30848522.27833219,0.0,14093307.03785499,0.0 + 09/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7269159.397407971,0.0,11302389.317026202,0.0,0.0,0.0,1104222.8203301549,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,39028446.435261297,0.0,14093307.03785499,0.0 + 09/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5200217.159342198,0.0,8305241.733427056,0.0,0.0,0.0,1716142.3903957038,0.0,1293.4334147626676,1273.1844733647932,1274.825101509961,1534.6093732271204,34575389.78947731,0.0,14093307.03785499,0.0 + 09/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277615,5097.565661339508,6136.34924137175,77388817.95608746,0.0,14093307.03785499,15502637.741640486 + 09/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,3350547.106006069,201293.8459400204,0.0,0.0,7557097.105664121,0.0,0.0,20672.832675077905,20349.195623036438,20375.417638595936,24527.526838443104,309531195.8364922,10907644.21167019,56373228.15141996,38756594.35410121 + 09/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,44980183.70765048,0.0,13870154.201826835,0.0,26171317.55697898,0.0,23501892.883786587,18074.45441088164,17791.49545529315,17814.421613127484,21444.65021417028,270450078.0965012,108523548.35024289,56373228.15141996,38756594.35410121 + 09/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38532418.54938313,0.0,154888.31600515423,0.0,5899246.976158907,0.0,3009980.368291517,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205006,193059925.18873818,47596534.20983871,28186614.07570998,0.0 + 09/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45417014.44693293,0.0,411271.9121519729,0.0,3701701.129787596,0.0,1177620.3104432398,10311.294514484973,10149.869275290619,10162.94841782745,12233.957335126945,154289050.35382796,50707607.799315739,28186614.07570998,0.0 + 09/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47934877.768565479,0.0,1257705.6819747582,0.0,2270408.086530663,0.0,1752625.5613854333,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,53215617.09845633,28186614.07570998,0.0 + 09/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54332315.35713978,0.0,7905085.362893391,0.0,5465861.369335432,0.0,8256866.39802099,5143.8046849352199,5063.277463016743,5069.802012825827,6102.927907579677,76967323.44608689,75960128.4873896,28186614.07570998,0.0 + 09/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55787478.19660768,0.0,16418115.04728575,0.0,12253055.508330267,0.0,15262794.107304935,5141.547218035462,5061.055337182431,5067.577023555569,6100.249509275923,76933544.71697779,99721442.85952863,28186614.07570998,0.0 + 09/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54284912.2718225,0.0,23067421.945263465,0.0,19587767.10275969,0.0,22480525.350343005,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,119420626.67018865,28186614.07570998,0.0 + 09/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44250818.00266041,0.0,23842760.15903665,0.0,23765011.76428332,0.0,25167474.495253795,12861.34809337187,12660.001289688016,12676.31499352925,15259.498564946847,192445786.58952955,117026064.42123418,28186614.07570998,0.0 + 09/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32210635.31915059,0.0,21617075.908324064,0.0,25501173.844158856,0.0,25102008.889280708,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,104430893.96091423,35233267.594637479,0.0 + 09/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11980032.308226003,0.0,5026567.277680241,0.0,12792799.579935192,0.0,10732891.773128512,18066.681578123924,17783.844307682273,17806.760606231976,21435.428044810513,270333772.33265528,40532290.93896995,14093307.03785499,0.0 + 09/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,5025234.581525351,0.0,0.0,0.0,8910167.32803409,0.0,5218138.20868871,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,270711798.817736,19153540.118248155,63419881.67034747,0.0 + 09/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,18326886.884228365,0.0,5112264.41204975,0.0,24176897.084237867,0.0,22678607.69352674,10332.984438760539,10171.2196397554,10184.32629441603,12259.691602324594,154613599.11092366,70294656.07404273,63419881.67034747,69761869.8373822 + 09/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,13071304.263927672,0.0,4188532.5063014195,0.0,19803141.89610879,0.0,17489583.145809067,10336.416337538953,10174.597811518219,10187.708819297968,12263.763419221552,154664950.9952761,54552561.81214695,49326574.63249246,69761869.8373822 + 09/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9090989.352934052,0.0,174683.64072527039,0.0,16566258.692275759,0.0,13615096.62022806,5164.129831680469,5083.2844157980439,5089.834746607853,6127.042918334366,77271450.88471464,39447028.30616313,35233267.594637479,69761869.8373822 + 09/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6151834.037920625,0.0,0.0,0.0,14309201.051076359,0.0,10984848.247603877,5164.546505948632,5083.694566952808,5090.245426284243,6127.537286448107,77277685.62828164,31445883.336600856,35233267.594637479,62010550.96656194 + 09/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,150811.35148694737,0.0,0.0,0.0,8431636.220095728,0.0,3631484.034382688,2583.0607218375118,2542.6224243676444,2545.898852881517,3064.7029449707008,38650625.798606548,12213931.605965361,35233267.594637479,46507913.22492146 + 09/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,3638461.643732665,0.0,0.0,0.0,0.0,0.0,2583.603097553539,2543.156309090657,2546.4334255694886,3065.3464530540138,42297203.07069638,0.0,21139960.556782485,23253956.61246073 + 09/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411906,1273.1298825349623,1532.5687019808264,19328052.497917829,0.0,14093307.03785499,0.0 + 09/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 + 09/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.61869296661,1272.382506190439,1274.0221009190478,1533.642736915941,19341597.733171338,0.0,14093307.03785499,0.0 + 09/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.7931352996873,1272.5542175962497,1274.194033592531,1533.849706085264,19344207.933265438,0.0,14093307.03785499,0.0 + 09/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8466656425079,1272.6069099115674,1274.2467938072753,1533.9132177936418,19345008.913757974,0.0,14093307.03785499,0.0 + 09/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5165.352334369118,5084.487779979044,5091.039661446424,6128.493371108651,77289743.32885166,0.0,14093307.03785499,15502637.741640486 + 09/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,24356434.19187708,0.0,5918331.245174117,0.0,32892502.803124697,0.0,24320407.931373087,20620.265017957285,20297.450922394528,20323.606259625776,24465.157319900325,308543326.2715605,87487676.17154898,56373228.15141996,38756594.35410121 + 09/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,67210527.88237474,0.0,34540963.23855511,0.0,41156671.41895568,0.0,44457507.09436607,18020.652052130536,17738.53538250511,17761.393295880138,21380.815769274388,269645027.3992446,187365669.6342516,56373228.15141996,38756594.35410121 + 09/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56621059.43212101,0.0,15931033.32289982,0.0,18831636.97037767,0.0,19416879.701326178,12846.029945650505,12644.922950426826,12661.217224288906,15241.324167405095,192216579.4359768,110800609.42672467,28186614.07570998,0.0 + 09/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65461987.68921064,0.0,16269155.57119134,0.0,16037430.32760514,0.0,17043013.80413533,10252.635849137645,10092.128922292068,10105.133660490625,12164.361067831254,153411334.19910575,114811587.39214245,28186614.07570998,0.0 + 09/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73123551.44303982,0.0,18606696.952595034,0.0,14352064.54036557,0.0,18536095.14546078,5119.622263522039,5039.473621922012,5045.967498052238,6074.236387672713,76605479.1762084,124618408.08146119,28186614.07570998,0.0 + 09/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81704678.44960465,0.0,28114783.52522554,0.0,18790063.980816138,0.0,27912935.310885248,5104.9494112337429,5025.0304758735069,5031.505740535867,6056.827608529854,76385927.65022269,156522461.2665316,28186614.07570998,0.0 + 09/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,83917862.59160015,0.0,41905478.91706412,0.0,30176543.299325549,0.0,40291346.12315983,5099.299129572484,5019.468650425714,5025.936748108302,6050.1237650232819,76301381.85526721,196291230.93114967,28186614.07570998,0.0 + 09/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,77625517.58916725,0.0,47143971.72241637,0.0,38401218.22848542,0.0,46980835.31159355,7650.669482556924,7530.896824576512,7540.601153797639,9077.227297045561,114477821.1287159,210151542.8516626,28186614.07570998,0.0 + 09/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,64929962.48832917,0.0,46876532.39814481,0.0,41929376.65646987,0.0,48451475.3193609,12762.373528084356,12562.576189683765,12578.764351339667,15142.069021324634,190964819.1255567,202187346.86230476,28186614.07570998,0.0 + 09/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,49758774.61820055,0.0,42684831.9988859,0.0,41705531.98191776,0.0,46022559.79891712,12789.009165939984,12588.79484165989,12605.016788724946,15173.671188895534,191363371.1467933,180171698.39792133,35233267.594637479,0.0 + 09/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,26579363.46629526,0.0,21072744.998223206,0.0,25329998.279591975,0.0,27714478.99742714,17954.826756676088,17673.7405943307,17696.515013007698,21302.716568923686,268660076.15857747,100696585.74153759,14093307.03785499,0.0 + 09/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,22789529.94434629,0.0,16280203.280019237,0.0,23968663.89383188,0.0,25357441.909279918,17972.968997719225,17691.598815205874,17714.39624602322,21324.241645389455,268931540.535616,88395839.02747733,63419881.67034747,0.0 + 09/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,35140312.874327529,0.0,28842578.16372991,0.0,38544297.18038425,0.0,42389466.04370159,10286.122318949298,10125.091155171925,10138.138368571932,12204.091486005642,153912395.98331569,144916654.26214329,63419881.67034747,69761869.8373822 + 09/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,25334842.409417418,0.0,19850962.232882456,0.0,30301119.027113018,0.0,32233137.307393545,10300.183598590404,10138.93230285712,10151.997351988657,12220.774657547772,154122796.47954227,107720060.97680643,49326574.63249246,69761869.8373822 + 09/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18143737.244309866,0.0,13300041.84065454,0.0,24311123.614182727,0.0,24741664.41956834,5150.745287471657,5070.1094091257059,5076.642762594673,6111.162667550075,77071176.4562716,80496567.11871547,35233267.594637479,69761869.8373822 + 09/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13123431.384412755,0.0,8135113.053718314,0.0,20177141.32175904,0.0,19584720.119616599,5154.476170632303,5073.7818846144759,5080.319970442952,6115.589218003614,77127002.07729604,61020405.87950671,35233267.594637479,62010550.96656194 + 09/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6920463.73592424,0.0,1376621.2207485766,0.0,14794040.666197077,0.0,13056620.971874599,2576.938505666696,2536.596052633081,2539.864715551875,3057.4391691833868,38559018.39492614,36147746.594744499,35233267.594637479,46507913.22492146 + 09/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,3408974.242569941,0.0,327722.7788504969,2578.390998612566,2538.025806530921,2541.296311833544,3059.1624966185966,38580752.20894426,3736697.021420438,21139960.556782485,23253956.61246073 + 09/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,0.0,14093307.03785499,0.0 + 09/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 + 09/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.603965596058,1269.4149749392698,1271.0507457009717,1530.0658779699996,19296488.031142679,0.0,14093307.03785499,0.0 + 09/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 + 09/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.0547933292424,1268.8744000667389,1270.5094742425425,1529.4143060386169,19288270.705237707,0.0,14093307.03785499,0.0 + 09/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1510257.0117006836,0.0,0.0,0.0,7208177.482060265,0.0,2957108.888983243,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885577,77108935.79158244,11675543.382744194,14093307.03785499,15502637.741640486 + 09/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,63765525.93980415,0.0,37699028.133866179,0.0,46441062.7222264,0.0,50372834.058268938,20572.244637898595,20250.18231034385,20276.276737143864,24408.182972011284,307824791.96663138,198278450.85416565,56373228.15141996,38756594.35410121 + 09/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,90551260.70944172,0.0,46592878.40875639,0.0,48595615.58889517,0.0,55074718.46106212,17967.045736935524,17685.768284174726,17708.55820175773,21317.213922574356,268842910.1235924,240814473.1681554,56373228.15141996,38756594.35410121 + 09/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,79882136.92653492,0.0,31403865.63767362,0.0,26784726.141400685,0.0,31331491.95052191,12801.512710420091,12601.102640818626,12617.34044773913,15188.506167131547,191550463.0779938,169402220.65613113,28186614.07570998,0.0 + 09/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86968189.32348572,0.0,28962992.917752178,0.0,22121676.125743018,0.0,26481071.656022178,10222.891663299812,10062.850387232298,10075.817397050034,12129.07072674004,152966268.62755988,164533930.0230031,28186614.07570998,0.0 + 09/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82517610.0544206,0.0,20321429.705734549,0.0,14797821.367408198,0.0,19760151.253506975,5130.836567530899,5050.512363909586,5057.020464585564,6087.541731302924,76773280.0583843,137397012.38107033,28186614.07570998,0.0 + 09/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,87986781.7290606,0.0,29639460.856989467,0.0,19864182.314002739,0.0,29929915.6376844,5094.625012267227,5014.867707298828,5021.329876196587,6044.578103262622,76231442.51649095,167420340.5377372,28186614.07570998,0.0 + 09/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,93363095.10841209,0.0,44499420.57417384,0.0,31364626.550353163,0.0,42252227.38545667,5088.591177930326,5008.928333764081,5015.382849172822,6037.419189147505,76141157.58005303,211479369.61839576,28186614.07570998,0.0 + 09/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,89026564.1159288,0.0,49624018.38495184,0.0,38554888.86907546,0.0,48243855.27005066,7648.948694358726,7529.202975638569,7538.905122162453,9075.185647534923,114452072.78290083,225449326.64000679,28186614.07570998,0.0 + 09/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70586002.71845944,0.0,46306344.86137615,0.0,39972694.08189851,0.0,47165436.52305045,12745.358478580561,12545.827513954106,12561.994093231831,15121.881314592752,190710221.0412933,204030478.18478454,28186614.07570998,0.0 + 09/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,47210564.36977394,0.0,36483062.50749658,0.0,34501561.16161694,0.0,38586457.59225808,12789.009165939984,12588.79484165989,12605.016788724946,15173.671188895534,191363371.1467933,156781645.63114555,35233267.594637479,0.0 + 09/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,21910219.408998204,0.0,15556272.965233362,0.0,17686489.1941691,0.0,18855937.54757977,17908.17487777807,17627.81905929973,17650.534303391727,21247.36589542289,267962018.8892127,74008919.11598043,14093307.03785499,0.0 + 09/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,19802585.138929499,0.0,12400078.71264999,0.0,21821489.55998733,0.0,21949624.777949595,17932.253521520415,17651.52074738242,17674.266533518694,21275.934287084838,268322310.32222293,75973778.18951641,63419881.67034747,0.0 + 09/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,24942247.046486685,0.0,17806512.03914275,0.0,31431241.9926546,0.0,31982196.070130964,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,106162197.14841502,63419881.67034747,69761869.8373822 + 09/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,14499256.575412948,0.0,6973689.148614184,0.0,23299320.018187617,0.0,21498782.44424111,10311.294514484973,10149.869275290619,10162.94841782745,12233.957335126945,154289050.35382796,66271048.18645586,49326574.63249246,69761869.8373822 + 09/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6779910.233830217,0.0,100286.33380778149,0.0,17354012.153557619,0.0,14292281.89298092,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,38526490.614176537,35233267.594637479,69761869.8373822 + 09/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2185938.305342828,0.0,0.0,0.0,13784000.444193142,0.0,9981099.746566598,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,25951038.49610257,35233267.594637479,62010550.96656194 + 09/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,8589511.119003492,0.0,4047650.953111269,2579.729774156761,2539.343623294223,2542.6158267382527,3060.7509026975797,38600784.45679253,12637162.07211476,35233267.594637479,46507913.22492146 + 09/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,2900422.497205328,0.0,0.0,0.0,0.0,0.0,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,41536147.93956265,0.0,21139960.556782485,23253956.61246073 + 09/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,19347204.489021865,0.0,14093307.03785499,0.0 + 09/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.3722548816116,1273.1242709530844,1274.7648215213,1534.5368093628636,19352873.364187894,0.0,14093307.03785499,0.0 + 09/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,233753.58524697083,0.0,5445607.688472712,0.0,0.0,0.0,0.0,0.0,1293.3589913508366,1273.1112150653576,1274.7517488097297,1534.5210726898993,25032036.174216644,0.0,14093307.03785499,0.0 + 09/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9837395.571308822,0.0,13957849.984929886,0.0,0.0,0.0,329934.8173317586,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,43474431.38338818,0.0,14093307.03785499,0.0 + 09/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14933068.55420423,0.0,19833105.58244875,0.0,0.0,0.0,11182328.928701563,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,65285369.30519803,0.0,14093307.03785499,0.0 + 09/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10849566.99264247,0.0,16034383.54588295,0.0,660379.7269736125,0.0,7406552.786027975,0.0,5166.954743829851,5086.06510342074,5092.61901743037,6130.394568766083,112264603.41193637,0.0,14093307.03785499,15502637.741640486 + 09/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,18541894.14312427,0.0,25479769.794864246,0.0,13461031.06999704,0.0,19930715.959141226,0.0,20661.854813159942,20338.389621594717,20364.597712518414,24514.50202432819,386579049.9848913,0.0,56373228.15141996,38756594.35410121 + 09/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,28795215.73493026,0.0,39688813.12371627,0.0,23302600.04839571,0.0,34975331.5412674,0.0,18085.565836610887,17802.43292957977,17825.37318146609,21457.833496648836,397378300.0478097,0.0,56373228.15141996,38756594.35410121 + 09/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17371455.368106475,0.0,30578891.541809307,0.0,19023066.73187113,0.0,28709497.647594014,0.0,12926.958846886198,12724.584894616404,12740.981821024498,15337.343219475166,289110438.90458908,0.0,28186614.07570998,0.0 + 09/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9840567.081526228,0.0,27664366.43372859,0.0,17880463.85033066,0.0,26905703.607978796,0.0,10339.542723066841,10177.675252897441,10190.790226274516,12267.47275630892,237002832.42433606,0.0,28186614.07570998,0.0 + 09/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11769838.101673492,0.0,28622971.17633933,0.0,18973992.947959477,0.0,27941224.015564056,0.0,5167.645107129796,5086.744658954437,5093.299448640733,6131.21365846868,164632076.58503349,0.0,28186614.07570998,0.0 + 09/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9833313.621834763,0.0,26182078.903098216,0.0,17583917.158742366,0.0,25500400.36456732,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,156463424.56961227,0.0,28186614.07570998,0.0 + 09/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5697587.615795026,0.0,21439455.420300899,0.0,13754211.740172577,0.0,20765563.793743846,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,139064925.1178181,0.0,28186614.07570998,0.0 + 09/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54942.92028447962,0.0,18392504.355280464,0.0,10669618.576492267,0.0,17166706.59798509,0.0,7758.299015660935,7636.84139726151,7646.68224687808,9204.925629601616,162372066.29189004,0.0,28186614.07570998,0.0 + 09/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4796104.929616494,0.0,18872071.37404597,0.0,8943610.720158913,0.0,16170808.311133199,0.0,12932.90534182834,12730.43829607091,12746.842765184221,15344.39850873235,242299101.01749153,0.0,28186614.07570998,0.0 + 09/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10252224.263113926,0.0,20701340.65921224,0.0,7499301.212716257,0.0,15857291.969718369,0.0,12928.085613428424,12725.694021418214,12742.092377049397,15338.680084966194,247754545.6534648,0.0,35233267.594637479,0.0 + 09/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25355141.456960076,0.0,34635943.35152693,0.0,16345438.304467403,0.0,27241624.242142388,0.0,18094.19976536697,17810.931692570517,17833.8828959804,21468.07732354061,374323677.39394739,0.0,14093307.03785499,0.0 + 09/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,22956747.012733137,0.0,32983644.6579468,0.0,10768272.91658409,0.0,21298817.594010079,0.0,18070.33129092107,17787.436883544724,17810.357811495112,21439.758289726222,358395865.57374778,0.0,63419881.67034747,0.0 + 09/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,14076502.211163089,0.0,23973618.151499075,0.0,894691.8447802775,0.0,9165118.948983949,0.0,10316.066493515207,10154.566548098925,10167.651743551209,12239.61910608868,202470385.16494087,0.0,63419881.67034747,69761869.8373822 + 09/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,19544700.390188815,0.0,29178596.572370177,0.0,4999679.982820908,0.0,14591766.541545727,0.0,10310.46412071993,10149.05188149488,10162.129970736374,12232.9721046228,222591368.56619195,0.0,49326574.63249246,69761869.8373822 + 09/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25349727.79327247,0.0,34971244.43131836,0.0,9391450.158945892,0.0,20432045.30931466,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,167227999.02578265,0.0,35233267.594637479,69761869.8373822 + 09/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30394680.736933449,0.0,40036859.29925886,0.0,13069975.558766289,0.0,25313038.828177856,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,185817466.6069903,0.0,35233267.594637479,62010550.96656194 + 09/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36493656.99655476,0.0,46116215.75213029,0.0,18167772.336001524,0.0,31759247.030978815,0.0,2570.498179023578,2530.2565505050026,2533.517044328245,3049.797967463708,170999543.18441934,0.0,35233267.594637479,46507913.22492146 + 09/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,45476323.03950972,0.0,54733640.34643795,0.0,26592774.529630048,0.0,41914146.734241638,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,207185280.520113,0.0,21139960.556782485,23253956.61246073 + 09/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7013829.87250001,0.0,13011278.051943122,0.0,0.0,0.0,1024852.6403223366,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,40320843.39799829,0.0,14093307.03785499,0.0 + 09/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31996424.735194874,0.0,40296610.59658666,0.0,13190874.976756504,0.0,25970657.071482418,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,130667956.72399745,0.0,14093307.03785499,0.0 + 09/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32989903.756018294,0.0,40271885.98127898,0.0,16847455.85733375,0.0,28944318.998601218,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,138319611.328255,0.0,14093307.03785499,0.0 + 09/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30893456.88373045,0.0,37678329.94979902,0.0,15789619.356845372,0.0,26972730.253056509,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,130627165.54623798,0.0,14093307.03785499,0.0 + 09/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30906338.36265487,0.0,37577939.89732603,0.0,15755990.600883276,0.0,26879383.30067113,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,130370380.20749878,0.0,14093307.03785499,0.0 + 09/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4506497.952308884,0.0,10115814.547263485,0.0,369838.05846643805,0.0,2173306.176431955,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,94438690.9208328,0.0,14093307.03785499,15502637.741640486 + 09/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,11099254.210445285,0.0,13631791.558233845,0.0,7683317.815976827,0.0,13304965.640811442,0.0,20675.661549231234,20351.980210637168,20378.20581442201,24530.883189641263,355091559.9756214,0.0,56373228.15141996,38756594.35410121 + 09/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,14264013.961242373,10548441.904788966,0.0,2293459.5717493609,0.0,5778576.101253779,0.0,18107.02587891171,17823.557010915007,17846.524483336216,21483.295017658587,289557926.18474957,14264013.961242373,56373228.15141996,38756594.35410121 + 09/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15318396.436807314,10909415.770467818,0.0,620716.0773173586,0.0,5884687.349409698,0.0,12933.589913508365,12731.112150653576,12747.517488097297,15345.210726898993,210941568.20216454,15318396.436807314,28186614.07570998,0.0 + 09/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,309264.0836243982,15959795.056943685,0.0,9047246.785818518,0.0,14867644.387100619,0.0,10347.46731810134,10185.475786918345,10198.600812079689,12276.874985816963,194704994.28036166,309264.0836243982,28186614.07570998,0.0 + 09/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,12859360.607853571,0.0,7530196.994975331,0.0,13043966.59315077,0.0,5173.612024862307,5092.618163476719,5099.180521773088,6138.293178587051,110846858.19529666,0.0,28186614.07570998,0.0 + 09/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,10917613.935071463,0.0,6558505.442281795,0.0,11118145.878030535,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,106005758.71213538,0.0,28186614.07570998,0.0 + 09/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,15390443.350357594,0.0,7532264.738845869,0.0,13083676.763643522,0.0,5173.131920779821,5092.1455755132069,5098.707324831749,6137.723553419881,113412535.00120774,0.0,28186614.07570998,0.0 + 09/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5620641.38506058,0.0,17407636.44740738,0.0,8191980.612130791,0.0,14348630.575774702,0.0,7759.852619251282,7638.370678897825,7648.213499149874,9206.768920956867,161680429.6060945,0.0,28186614.07570998,0.0 + 09/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7291225.473302275,0.0,16581778.36104337,0.0,7422405.939889941,0.0,13433720.629497163,0.0,12933.534074326944,12731.057185644957,12747.462452260655,15345.14447584175,238255043.88080026,0.0,28186614.07570998,0.0 + 09/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11093546.147789613,0.0,19365318.1943187,0.0,7185074.131192651,0.0,13955696.507459896,0.0,12931.566881634291,12729.120789720886,12745.523561092792,15342.810476804278,245096113.13406898,0.0,35233267.594637479,0.0 + 09/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16707819.760916332,0.0,23986502.01712869,0.0,10107097.151220868,0.0,17995057.62826627,0.0,18101.25516585144,17817.876639444217,17840.836792127004,21476.448286894236,339647577.341073,0.0,14093307.03785499,0.0 + 09/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10514986.096257709,0.0,18615543.93833997,0.0,702668.0327816635,0.0,7614817.28690273,0.0,18103.670666797374,17820.254325272235,17843.217541845897,21479.31418656125,308335259.54799839,0.0,63419881.67034747,0.0 + 09/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,592707.6848872308,0.0,7073346.570586357,0.0,0.0,0.0,0.0,0.0,10345.253505307433,10183.296631776711,10196.418848874233,12274.248381443422,162463236.77812005,0.0,63419881.67034747,69761869.8373822 + 09/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,568074.0790459534,0.0,7488919.480032577,0.0,0.0,0.0,0.0,0.0,10344.30150365612,10182.359533888844,10195.480543440091,12273.118867824274,162839931.1747921,0.0,49326574.63249246,69761869.8373822 + 09/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4735416.57916033,0.0,10935577.408562892,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,93071682.62365337,0.0,35233267.594637479,69761869.8373822 + 09/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,6063312.766396465,0.0,11895295.938377906,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,95347426.66086182,0.0,35233267.594637479,62010550.96656194 + 09/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9042415.627132798,0.0,14603256.874979167,0.0,0.0,0.0,2237605.0868299298,0.0,2586.159332960656,2545.6725261556105,2548.9528850369549,3068.379328787053,64580268.25152688,0.0,35233267.594637479,46507913.22492146 + 09/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,18710742.54544995,0.0,24178173.95652601,0.0,2815271.5128960318,0.0,14231153.781764456,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,98642008.79629496,0.0,21139960.556782485,23253956.61246073 + 09/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.156688163429,1272.912078972089,1274.5523561092792,1534.2810476804276,19349647.81533081,0.0,14093307.03785499,0.0 + 09/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2501614.674141835,0.0,0.0,0.0,0.0,0.0,1293.156688163429,1272.912078972089,1274.5523561092792,1534.2810476804278,21851262.489472648,0.0,14093307.03785499,0.0 + 09/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2573640.495984588,0.0,7072091.97482624,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,28991507.808873103,0.0,14093307.03785499,0.0 + 09/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5984571.20223286,0.0,9941252.41457991,0.0,0.0,0.0,0.0,0.0,1292.9933981755217,1272.751345319404,1274.391415334877,1534.0873103429377,35273028.10583463,0.0,14093307.03785499,0.0 + 09/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7046799.120063383,0.0,10785001.805822999,0.0,0.0,0.0,2828462.2400875149,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,40012537.868256438,0.0,14093307.03785499,0.0 + 09/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,376043.64634295649,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19726705.5432467,0.0,14093307.03785499,15502637.741640486 + 09/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,8700911.827447165,0.0,11287789.009964263,0.0,1966653.2240655798,0.0,9321372.376862605,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,108613924.00968728,0.0,56373228.15141996,38756594.35410121 + 09/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,34559858.107559207,0.0,2470811.6232232546,0.0,8794699.941442363,0.0,6341547.157825021,12907.06204221218,12704.999578131303,12721.371266860075,15313.736420237172,193129809.50678665,52166916.83004984,56373228.15141996,38756594.35410121 + 09/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32515179.860091315,0.0,4298855.545459502,0.0,2889154.145638259,0.0,939031.2710862778,12871.894322950384,12670.382416075081,12686.709497057243,15272.011263767421,192603590.99946047,40642220.82227535,28186614.07570998,0.0 + 09/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48648345.4330013,0.0,1841953.8360814059,0.0,3558913.6057815176,0.0,1762758.4139343226,12851.94204145847,12650.742491272016,12667.044264206465,15248.338643402672,192305042.78522266,55811971.288798559,28186614.07570998,0.0 + 09/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56951534.346114989,0.0,9359262.30987425,0.0,6244545.37906401,0.0,7157200.134886142,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,79712542.16993939,28186614.07570998,0.0 + 09/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49214787.63147946,0.0,20450386.648902894,0.0,12560619.161300434,0.0,16273554.279666197,7694.925752861181,7574.460254713157,7584.220719860442,9129.735672395867,115140032.63939032,98499347.72134897,28186614.07570998,0.0 + 09/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,70698839.12796295,0.0,30322600.246407816,0.0,20869170.40724128,0.0,27001429.3858694,7690.858948180817,7570.457116618725,7580.212423313984,9124.910563882095,115079180.58718422,148892039.16748146,28186614.07570998,0.0 + 09/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52283407.92279555,0.0,28433953.61309672,0.0,22164373.26010371,0.0,26086017.696832189,7702.700999022526,7582.113777945375,7591.884105438524,9138.960705166912,115256374.515264,128967752.49282818,28186614.07570998,0.0 + 09/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22455914.4999322,0.0,11978005.933212065,0.0,12412989.23920194,0.0,12591918.144182336,17975.88397053147,17694.46815357496,17717.26928182766,21327.700149359833,268975157.5990581,59438827.816528547,28186614.07570998,0.0 + 09/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,13769562.330186643,0.0,5125250.636301348,0.0,9580171.958038498,0.0,8372336.63567297,23133.495674625246,22771.336484289634,22800.679675571635,27447.00955812481,346149077.0134008,36847321.560199458,35233267.594637479,0.0 + 09/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1950564.1978576007,0.0,0.0,0.0,1318838.7304811723,0.0,297118.4927551575,18032.087985487822,17749.792284192317,17772.664703234135,21394.384067666393,269816144.5460904,3566521.42109393,14093307.03785499,0.0 + 09/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,7656325.3844750919,0.0,0.0,0.0,10718003.933683992,0.0,6781659.827712358,18058.108419097323,17775.405363059555,17798.310787167768,21425.256318883054,270205491.19754776,25155989.145871447,63419881.67034747,0.0 + 09/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,22242605.742484698,0.0,12625290.125873302,0.0,27188121.727249,0.0,26800980.67587763,15488.474450654618,15245.999493757563,15265.64552023209,18376.48370428461,231755771.40814395,88856998.27148462,63419881.67034747,69761869.8373822 + 09/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,16769608.11579359,0.0,9376649.215247177,0.0,22799123.807144047,0.0,21544339.85308525,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,70489720.99127005,49326574.63249246,69761869.8373822 + 09/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9341942.71409988,0.0,1873973.8668524952,0.0,16502317.908025772,0.0,13907967.74115298,10333.707608694891,10171.931488329525,10185.039060279698,12260.54961584661,154624419.98334263,41626202.23013112,35233267.594637479,69761869.8373822 + 09/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,4513971.285623761,0.0,0.0,0.0,12269052.249661524,0.0,8957190.115119869,7751.825070850429,7630.468803264726,7640.301441143494,9197.244541209617,115991423.48328577,25740213.650405155,35233267.594637479,62010550.96656194 + 09/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5883902.537518697,0.0,1419893.0734179784,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,7303795.610936676,35233267.594637479,46507913.22492146 + 09/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,3762576.4817781208,0.0,0.0,0.0,0.0,0.0,2585.6933312850158,2545.2138198231348,2548.4935876145507,3067.8264355872836,42452594.30929407,0.0,21139960.556782485,23253956.61246073 + 09/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.9467975608173,1272.7054742460162,1274.3454851519289,1534.0320204924456,19346507.198824347,0.0,14093307.03785499,0.0 + 09/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2829801949552,1273.0363938783017,1274.6768312079374,1534.4308883549703,19351537.53709019,0.0,14093307.03785499,0.0 + 09/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4149098055607,1273.1662581062417,1274.80686277919,1534.5874178018908,19353511.61457438,0.0,14093307.03785499,0.0 + 09/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2722156.426094153,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,22076034.10981198,0.0,14093307.03785499,0.0 + 09/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,4672272.379600911,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,24026125.252857809,0.0,14093307.03785499,0.0 + 09/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,19353882.599153796,0.0,14093307.03785499,15502637.741640486 + 09/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,7677115.153760381,0.0,10670126.952308935,0.0,0.0,0.0,5370164.032222748,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,43069680.84057459,0.0,56373228.15141996,38756594.35410121 + 09/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,30451617.417410088,881765.3189118079,0.0,0.0,4622742.347124255,0.0,577669.5044318845,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765386,78255254.93599265,35652029.26896623,56373228.15141996,38756594.35410121 + 09/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50594424.98174163,0.0,0.0,0.0,2356851.7107980467,0.0,987036.5419467258,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,115976224.28089114,53938313.23448639,28186614.07570998,0.0 + 09/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54069700.91996146,0.0,0.0,0.0,260670.89311960108,0.0,0.0,7748.612221184052,7627.306251359233,7637.134813967075,9193.432617722472,115943349.25523819,54330371.81308106,28186614.07570998,0.0 + 09/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51015663.18883374,0.0,0.0,0.0,0.0,0.0,0.0,5166.121443675023,5085.2448487352889,5091.797705763034,6129.405889941401,77301251.59721309,51015663.18883374,28186614.07570998,0.0 + 09/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42699563.6699663,0.0,0.0,0.0,0.0,0.0,0.0,5164.129831680469,5083.2844157980439,5089.834746607853,6127.042918334366,77271450.88471464,42699563.6699663,28186614.07570998,0.0 + 09/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46531295.61030564,0.0,7482153.496525863,0.0,5700330.053071836,0.0,5595352.7099842899,7742.863533481682,7621.647560435259,7631.468831242276,9186.61201920451,115857330.99970941,65309131.86988763,28186614.07570998,0.0 + 09/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45661752.443413678,0.0,13715697.54861591,0.0,11625210.395509575,0.0,12158504.184684484,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,83161164.57222365,28186614.07570998,0.0 + 09/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39539594.016521748,0.0,13490346.644232773,0.0,15093039.779487789,0.0,14333478.828957182,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,82456459.26919949,28186614.07570998,0.0 + 09/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,25178569.518361197,0.0,8419406.533467802,0.0,14645228.581161265,0.0,11544466.28275877,15506.490361613145,15263.73336226917,15283.402240643332,18397.8588949273,232025345.4940306,59787670.91574902,35233267.594637479,0.0 + 09/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2510987.00585041,804769.2221880714,0.0,0.0,1934397.4531328246,0.0,160782.99100943833,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,271755940.5038363,4606167.449992673,14093307.03785499,0.0 + 09/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3657304.1942688205,0.0,0.0,0.0,0.0,0.0,10347.34292994694,10185.353346083706,10198.478213467537,12276.727404019955,158485751.01093415,0.0,63419881.67034747,0.0 + 09/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,4743970.631498864,0.0,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,116066632.52922243,4743970.631498864,63419881.67034747,69761869.8373822 + 09/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,4546196.992753885,0.0,0.0,3075646.9581772058,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,81945397.53422788,3075646.9581772058,49326574.63249246,69761869.8373822 + 09/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,10003050.159055308,0.0,0.0,0.0,0.0,0.0,5170.783538754479,5089.833957846562,5096.3927284098,6134.937287790066,87374061.20513858,0.0,35233267.594637479,69761869.8373822 + 09/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4014630.3784778558,0.0,15394060.315920307,0.0,0.0,0.0,604107.36205836,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,97360263.01583046,0.0,35233267.594637479,62010550.96656194 + 09/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12433019.813482652,0.0,22495553.44287467,0.0,0.0,0.0,10231141.851329357,0.0,5165.850243891007,5084.977894634483,5091.530407664623,6129.084121749998,122456908.71227108,0.0,35233267.594637479,46507913.22492146 + 09/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,24040440.290107185,0.0,33811769.00203101,0.0,11092937.204440356,0.0,22728095.081896727,0.0,2581.2505367690716,2540.84057808414,2544.1147105072075,3062.555229486008,130296781.37592241,0.0,21139960.556782485,23253956.61246073 + 09/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1701891.0547016019,0.0,0.0,0.0,0.0,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,21006574.51606713,0.0,14093307.03785499,0.0 + 09/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11906712.773642894,0.0,22585610.64691285,0.0,0.0,0.0,7500311.411179686,0.0,1289.6415440962365,1269.4519651410179,1271.08778356837,1530.110463426002,61289685.15416928,0.0,14093307.03785499,0.0 + 09/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19925355.01288994,0.0,27624691.49327273,0.0,6503009.859635142,0.0,17383911.40225877,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,90721545.90296486,0.0,14093307.03785499,0.0 + 09/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23019676.01212156,0.0,30497714.639803459,0.0,10832987.103151726,0.0,20830088.466147685,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,104458349.30878547,0.0,14093307.03785499,0.0 + 09/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23299093.80011678,0.0,30375942.97652134,0.0,11030750.403219667,0.0,20726502.39272165,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,104703172.40581225,0.0,14093307.03785499,0.0 + 09/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1671394.7684376878,0.0,5410568.811588895,0.0,0.0,0.0,731244.3610952558,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,85039233.41276193,0.0,14093307.03785499,15502637.741640486 + 09/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,8898476.637870985,0.0,13368395.831110519,0.0,5603412.806434779,0.0,11464951.80163628,0.0,20679.085446133682,20355.350505794882,20381.58045254903,24534.94551261784,348758699.97859618,0.0,56373228.15141996,38756594.35410121 + 09/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,29727300.95504959,4127257.9605947688,0.0,0.0,0.0,0.0,0.0,18106.06747855967,17822.61361449927,17845.57987125791,21482.157912225288,275050365.91614648,29727300.95504959,56373228.15141996,38756594.35410121 + 09/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39845313.0756624,2090048.0777610969,0.0,0.0,0.0,0.0,0.0,12934.244985178519,12731.756967054533,12748.16313541,15345.98794443001,195626598.99322415,39845313.0756624,28186614.07570998,0.0 + 09/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51405294.147763419,5466872.558320153,0.0,0.0,0.0,2992839.400867018,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,163272012.2559087,51405294.147763419,28186614.07570998,0.0 + 09/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57933398.87981565,6184093.079369981,0.0,562213.0197505582,0.0,4229439.0762402559,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,88372100.65927975,57933398.87981565,28186614.07570998,0.0 + 09/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65166851.60820688,1210854.5358497329,0.0,28336.005479696905,0.0,0.0,0.0,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,78609199.88048683,65166851.60820688,28186614.07570998,0.0 + 09/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68413952.53911573,0.0,0.0,0.0,0.0,0.0,0.0,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,68413952.53911573,28186614.07570998,0.0 + 09/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,65689453.40382307,0.0,9136034.023275495,0.0,9063411.703600444,0.0,9228982.925176427,7752.312253154214,7630.948358638661,7640.781614473476,9197.822564416165,115998713.24645706,93117882.05587545,28186614.07570998,0.0 + 09/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53086215.02577795,0.0,13972478.071208764,0.0,17402322.008393554,0.0,16358802.160965328,12920.52042192369,12718.24726439777,12734.63602412246,15329.704274026939,193331188.74409513,100819817.26634559,28186614.07570998,0.0 + 09/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,33513932.871173897,0.0,9310897.326218166,0.0,17675719.610946739,0.0,14000856.863490293,12928.466656425078,12726.069099115672,12742.467938072752,15339.132177936419,193450089.1375797,74501406.67182909,35233267.594637479,0.0 + 09/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,6062991.763784956,0.0,0.0,0.0,3370695.042035382,0.0,779575.8543043104,18103.11533072459,17819.707683089266,17842.67019525868,21478.65530150937,270878934.6380949,10213262.660124649,14093307.03785499,0.0 + 09/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,1185890.9260250247,1387583.1670360699,0.0,0.0,151330.09995642649,0.0,0.0,18106.419341321656,17822.95996878407,17845.92667185556,21482.57538396095,272315956.08435609,1337221.0259814512,63419881.67034747,0.0 + 09/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,6763982.41597035,318662.83864742718,0.0,0.0,10281030.563059114,0.0,829235.2053522976,10343.682057309563,10181.749785090402,10194.870008918086,12272.383918379806,155092331.6095597,17874248.18438176,63419881.67034747,69761869.8373822 + 09/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,2635933.515450941,364730.86292032667,0.0,0.0,6927007.417937595,0.0,1010488.9592683234,10346.52533789809,10184.548553590901,10197.672383917463,12275.7573622634,155180943.9585318,10573429.892656859,49326574.63249246,69761869.8373822 + 09/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,5329541.501965557,0.0,0.0,2805453.2792884039,0.0,0.0,5172.024808126503,5091.055794915008,5097.616139940017,6136.410006517806,82719125.80016317,2805453.2792884039,35233267.594637479,69761869.8373822 + 09/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,9467126.589774596,0.0,0.0,23626.366992801188,0.0,0.0,5171.445745380808,5090.485797504622,5097.0454080297899,6135.722970674224,86848046.30749659,23626.366992801188,35233267.594637479,62010550.96656194 + 09/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,13212771.216394512,0.0,0.0,0.0,0.0,0.0,2586.182316961221,2545.695150337359,2548.9755383722706,3068.4065984263709,51910105.791144508,0.0,35233267.594637479,46507913.22492146 + 09/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,10593700.017002119,0.0,23011616.089974934,0.0,874442.5139208352,0.0,11167899.177593675,0.0,2584.747627715857,2544.2829214197724,2547.5614896535805,3066.7043944022018,84323524.95798065,0.0,21139960.556782485,23253956.61246073 + 09/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.141208321138,19310049.603588046,0.0,14093307.03785499,0.0 + 09/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3186666.498278482,0.0,17270755.34262306,0.0,0.0,0.0,2394870.962884091,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323995,1526.4374564776468,42103020.849749099,0.0,14093307.03785499,0.0 + 09/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13293647.782569766,0.0,23659885.26052462,0.0,0.0,0.0,13150380.107542089,0.0,1288.0509527375028,1267.8862747867293,1269.5200756622535,1528.2232874954689,69377163.2770915,0.0,14093307.03785499,0.0 + 09/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16799704.882468769,0.0,26123970.23691771,0.0,8516496.344423518,0.0,16961923.17199583,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,87647446.97387514,0.0,14093307.03785499,0.0 + 09/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17367785.218490248,0.0,26083493.26268485,0.0,9017376.849251263,0.0,17114538.768592799,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,88831251.10399404,0.0,14093307.03785499,0.0 + 09/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,438778.6171491287,0.0,2538073.5280238438,0.0,0.0,0.0,0.0,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,80180592.7784569,0.0,14093307.03785499,15502637.741640486 + 09/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,5076972.980617814,0.0,12770915.12317647,0.0,2828505.287888751,0.0,8936630.984455698,0.0,20688.797375095826,20364.910392697366,20391.152658341547,24546.468345604306,339181807.9543992,0.0,56373228.15141996,38756594.35410121 + 09/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,39256080.708158317,2647714.136931791,0.0,0.0,3607212.17087741,0.0,0.0,18106.65143974696,17823.18843366523,17846.155431137035,21482.850759882833,273579559.9688872,42863292.879035729,56373228.15141996,38756594.35410121 + 09/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50821712.856931079,0.0,0.0,0.0,1330175.7887244337,0.0,1037081.6822517607,12927.37296045214,12724.992525157217,12741.38997683887,15337.834549413468,193433724.04270209,53188970.32790728,28186614.07570998,0.0 + 09/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61324675.24866756,0.0,0.0,0.0,0.0,0.0,0.0,10334.412390214156,10172.625236362628,10185.733702277954,12261.385812216055,154634965.70785488,61324675.24866756,28186614.07570998,0.0 + 09/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,68587559.93536684,0.0,0.0,0.0,0.0,0.0,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77251923.80271465,68587559.93536684,28186614.07570998,0.0 + 09/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76827628.60592169,0.0,936398.3511808389,0.0,1536967.7521519156,0.0,2289680.106079825,5155.066254489321,5074.362730598632,5080.901564906444,6116.289329975081,77135831.56789012,81590674.81533426,28186614.07570998,0.0 + 09/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82176872.23714295,0.0,17401525.473843945,0.0,12642480.335555152,0.0,16450951.49804976,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,77080819.41157943,128671829.54459182,28186614.07570998,0.0 + 09/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,76080425.34183322,0.0,25745183.572754917,0.0,21012058.928981369,0.0,24331430.407933587,7727.08460400709,7606.115653045149,7615.9169094041849,9167.890921701672,115621229.11736915,147169098.2515031,28186614.07570998,0.0 + 09/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61691026.67916621,0.0,26393781.538869494,0.0,25147619.721809593,0.0,26862856.682778457,12881.628723732729,12679.964422997227,12696.303851373325,15283.560758710753,192749247.9245305,140095284.62262375,28186614.07570998,0.0 + 09/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,42281406.16292095,0.0,20734622.514816595,0.0,24383943.048284618,0.0,23783074.780207576,12886.190426580759,12684.454711536184,12700.799926107378,15288.973045009036,192817505.19324009,111183046.50622972,35233267.594637479,0.0 + 09/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,11931688.455155379,0.0,2373412.8063172546,0.0,6489751.650627138,0.0,4899944.097998015,18081.42505286258,17798.356970573503,17821.29197017062,21452.920614794904,270554380.5902458,25694797.010097788,14093307.03785499,0.0 + 09/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,12630355.00913233,0.0,0.0,0.0,9893668.281833647,0.0,5557869.170145173,18077.3390285187,17794.334913702976,17817.26473046929,21448.07270288403,270493240.95207,28081892.461111148,63419881.67034747,0.0 + 09/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,23128828.01181522,0.0,8407291.155839395,0.0,22685993.7947698,0.0,21515489.231997104,10329.093011897265,10167.389133905615,10180.490852568486,12255.074572896214,154555371.25656329,75737602.19442153,63419881.67034747,69761869.8373822 + 09/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,12212475.532639314,0.0,1800978.9479394234,0.0,14653169.966134347,0.0,11532110.204344539,10346.978039052892,10184.994167624674,10198.1185721704,12276.294474902908,154822986.91350315,40198734.65105762,49326574.63249246,69761869.8373822 + 09/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2769900.2990492174,0.0,0.0,0.0,7650028.339346295,0.0,2979331.738138916,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,77412482.99607985,13399260.376534429,35233267.594637479,69761869.8373822 + 09/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,2617507.676567102,0.0,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,77408106.54780574,2617507.676567102,35233267.594637479,62010550.96656194 + 09/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,10219004.674137311,0.0,0.0,0.0,0.0,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,48924354.47513123,0.0,35233267.594637479,46507913.22492146 + 09/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,6106195.990144682,0.0,18599949.735096147,0.0,0.0,0.0,4833781.242567351,0.0,2586.676972732493,2546.1820621802537,2549.463077650773,3068.993488616813,68244663.13205737,0.0,21139960.556782485,23253956.61246073 + 09/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2288468269522,1271.998763164823,1273.6378634013755,1533.1801993525788,19335764.421884628,0.0,14093307.03785499,0.0 + 09/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,8342664.71984466,0.0,0.0,0.0,0.0,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,27692464.855213159,0.0,14093307.03785499,0.0 + 09/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6314082.557908328,0.0,12964024.622523712,0.0,0.0,0.0,2486753.5551318756,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,41111569.331927958,0.0,14093307.03785499,0.0 + 09/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7581507.537733639,0.0,13822520.94578537,0.0,0.0,0.0,5103383.784958501,0.0,1293.2630874441214,1273.0168125521933,1274.6572246492913,1534.4072863654588,45858652.14811734,0.0,14093307.03785499,0.0 + 09/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7690796.180597027,0.0,13337188.011228303,0.0,0.0,0.0,5330041.7738408199,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,45707276.975483868,0.0,14093307.03785499,0.0 + 09/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1060125.8581579398,0.0,0.0,0.0,0.0,0.0,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,78475279.88340736,0.0,14093307.03785499,15502637.741640486 + 09/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,7460413.805889763,0.0,11947082.662914478,0.0,2983287.4294593238,0.0,8815460.313313317,0.0,20692.527683119282,20368.582302052826,20394.829299326993,24550.894213679523,340830844.8050199,0.0,56373228.15141996,38756594.35410121 + 09/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,532692.4778866173,8106057.767810554,6666763.088358958,0.0,2681910.7050657046,0.0,5196591.862176487,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,285707121.45421418,8106057.767810554,56373228.15141996,38756594.35410121 + 09/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34175455.72316434,0.0,0.0,0.0,0.0,0.0,0.0,12905.928738006205,12703.88401601409,12720.25426722721,15312.39179805766,193112851.7494986,34175455.72316434,28186614.07570998,0.0 + 09/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46291922.50448022,0.0,0.0,0.0,0.0,0.0,0.0,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,46291922.50448022,28186614.07570998,0.0 + 09/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43716519.787020388,0.0,0.0,0.0,0.0,0.0,0.0,5153.877011333392,5073.192105266162,5079.72943110375,6114.878338366773,77118036.78985228,43716519.787020388,28186614.07570998,0.0 + 09/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38846472.19404719,0.0,6199983.526541594,0.0,3042782.443874593,0.0,2838031.281133573,5139.9974711372219,5059.529851860988,5066.049572490586,6098.410793738637,76910355.68121876,50927269.44559695,28186614.07570998,0.0 + 09/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58238521.61786908,0.0,15836601.248254518,0.0,10876391.58500199,0.0,13243493.513884984,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,98195007.96501057,28186614.07570998,0.0 + 09/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49028648.0078446,0.0,17434005.293344756,0.0,14652098.247218389,0.0,16282969.683981736,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,97397721.23238947,28186614.07570998,0.0 + 09/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25489722.61231851,0.0,10572328.386487976,0.0,10423096.698597745,0.0,10055005.32296919,12846.029945650505,12644.922950426826,12661.217224288906,15241.324167405095,192216579.4359768,56540153.02037342,28186614.07570998,0.0 + 09/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,18486631.312175398,0.0,6056275.963808973,0.0,10287998.714213549,0.0,8430626.986544658,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,43261532.97674257,35233267.594637479,0.0 + 09/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,1779792.9883629573,0.0,0.0,0.0,566328.917811098,0.0,0.0,18042.731890712625,17760.269557095206,17783.155477172553,21407.01265491278,269975410.4876154,2346121.9061740555,14093307.03785499,0.0 + 09/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,9990612.01728012,0.0,0.0,0.0,10733763.807334343,0.0,6794114.901842382,18046.76710660939,17764.24160093434,17787.132639395593,21411.800284540634,270035789.87332788,27518490.726456848,63419881.67034747,0.0 + 09/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25503457.115708855,0.0,15179804.980802356,0.0,28727933.132782334,0.0,29166223.35019309,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,98577418.57948663,63419881.67034747,69761869.8373822 + 09/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,16708162.68651574,0.0,8003804.423555459,0.0,21757545.679136129,0.0,20551858.236393405,10329.093011897265,10167.389133905615,10180.490852568486,12255.074572896214,154555371.25656329,67021371.02560073,49326574.63249246,69761869.8373822 + 09/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12366688.134625815,0.0,3653063.377693342,0.0,18103076.089237274,0.0,16321167.877551847,5157.8803470281959,5077.132767993841,5083.67517177757,6119.628143351939,77177939.14854557,50443995.479108277,35233267.594637479,69761869.8373822 + 09/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9197038.851604939,0.0,826018.2282608004,0.0,15295258.866917968,0.0,13233485.0372859,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,77223970.07549528,38551800.9840696,35233267.594637479,62010550.96656194 + 09/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2544138.3427312199,0.0,0.0,0.0,9857406.617681105,0.0,6646618.283700183,2580.4783203996505,2540.080450906039,2543.353603827653,3061.639024241001,38611985.03774764,19048163.244112508,35233267.594637479,46507913.22492146 + 09/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,419020.0817632945,0.0,0.0,2579.207931192116,2538.8299498785397,2542.1014914019435,3060.131755939999,38592976.062285359,419020.0817632945,21139960.556782485,23253956.61246073 + 09/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 + 09/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8015487767696,1271.5781545453286,1273.2167127847443,1532.6732265270069,19329370.71348186,0.0,14093307.03785499,0.0 + 09/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 09/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 09/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,19351117.024395307,0.0,14093307.03785499,0.0 + 09/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277615,5097.565661339508,6136.34924137175,77388817.95608746,0.0,14093307.03785499,15502637.741640486 + 09/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,20455792.959888814,0.0,0.0,0.0,17556286.82956696,0.0,7265224.156421071,20672.83267507791,20349.195623036438,20375.417638595936,24527.526838443104,309329901.9905522,45277303.94587684,56373228.15141996,38756594.35410121 + 09/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,58570098.36310265,0.0,18409283.485643094,0.0,26750629.958983825,0.0,26638248.099541874,18077.3390285187,17794.334913702973,17817.26473046929,21448.07270288403,270493240.95207,130368259.90727145,56373228.15141996,38756594.35410121 + 09/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48909228.366669047,0.0,2259981.989548902,0.0,6601722.582834213,0.0,4069990.9598299337,12896.03965596058,12694.149749392695,12710.507457009717,15300.658779699996,192964880.31142677,61840923.8988821,28186614.07570998,0.0 + 09/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53387368.80025264,0.0,809607.2327124022,0.0,3068594.875451409,0.0,907119.2252199026,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,58172690.133636359,28186614.07570998,0.0 + 09/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44161169.880936179,0.0,877755.1628187401,0.0,1945112.8257790693,0.0,541669.8814431498,5148.757729180154,5068.152966430033,5074.683798822897,6108.804505506969,77041436.39978419,47525707.750977139,28186614.07570998,0.0 + 09/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38801658.6521158,0.0,5516269.496531213,0.0,4489288.969079126,0.0,5287511.495988129,5143.061159474649,5062.545577585963,5069.069184285966,6102.045743002821,76956197.99165784,54094728.61371427,28186614.07570998,0.0 + 09/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,44403910.05458729,0.0,10673736.819680827,0.0,8200605.620781255,0.0,9515613.702185013,5142.308668101298,5061.804866605439,5068.327518823741,6101.152940712703,76944938.37927546,72793866.19723438,28186614.07570998,0.0 + 09/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48177101.9062028,0.0,15190445.546097717,0.0,13213057.855531112,0.0,14658065.079943248,7717.897214500606,7597.072093835295,7606.861696645232,9156.990434756448,115483757.1830553,91238670.38777489,28186614.07570998,0.0 + 09/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42782294.14592072,0.0,17179551.574604356,0.0,17992260.525305917,0.0,18479899.45639598,12868.468942155107,12667.010660255159,12683.333396385799,15267.947180208648,192552336.64441697,96434005.70222697,28186614.07570998,0.0 + 09/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27644446.36355305,0.0,13326905.915367013,0.0,18149460.138086387,0.0,16683041.735386445,12878.474340011817,12676.859421741916,12693.194849006974,15279.818202836119,192702048.52894859,75803854.1523929,35233267.594637479,0.0 + 09/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2615770.693899733,0.0,0.0,0.0,2301918.657922541,0.0,966583.3416828418,18092.95326899104,17809.704710327886,17832.654332645918,21466.59840317226,270726878.5744936,5884272.693505116,14093307.03785499,0.0 + 09/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,615505.2448562727,0.0,0.0,18105.568276640504,17822.12222767927,17845.087851235836,21481.565628203898,270915638.34153428,615505.2448562727,63419881.67034747,0.0 + 09/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,5021730.145738022,0.0,0.0,0.0,12612150.694153315,0.0,6117392.02594007,10344.637331842623,10182.690104622441,10195.811540147819,12273.517315148212,154787962.65033997,23751272.865831406,63419881.67034747,69761869.8373822 + 09/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,2197380.393747709,0.0,0.0,0.0,8787672.82628822,0.0,4547596.7573372269,10347.395988142816,10185.405573643628,10198.530508328,12276.790355544006,154829240.73237045,15532649.977373155,49326574.63249246,69761869.8373822 + 09/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,1855985.0810880773,0.0,0.0,2409563.0880423469,0.0,0.0,5172.933309137918,5091.950073173609,5098.511570567432,6137.487908288236,79259163.38128998,2409563.0880423469,35233267.594637479,69761869.8373822 + 09/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,7317337.149373621,0.0,0.0,0.0,0.0,0.0,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,84728036.75136148,0.0,35233267.594637479,62010550.96656194 + 09/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,1843699.9318443416,0.0,11114266.905164276,0.0,0.0,0.0,0.0,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,51663316.638002548,0.0,35233267.594637479,46507913.22492146 + 09/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,12005055.625792254,0.0,19809119.15541797,0.0,0.0,0.0,7767821.847733498,0.0,2586.581068365668,2546.087659214182,2549.3685530368445,3068.87970174647,78285297.76545112,0.0,21139960.556782485,23253956.61246073 + 09/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.0062020316255,1272.763948728752,1274.4040349850043,1534.1025016294516,19347396.0745494,0.0,14093307.03785499,0.0 + 09/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1924405.6388383983,0.0,8180255.912311219,0.0,0.0,0.0,0.0,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,29427513.9897599,0.0,14093307.03785499,0.0 + 09/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9600465.087238627,0.0,16635543.528004818,0.0,0.0,0.0,7343581.198575817,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,52903888.214965369,0.0,14093307.03785499,0.0 + 09/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11959830.552471683,0.0,17889518.55931575,0.0,2304963.4386732738,0.0,9574299.181739083,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,61055698.972471628,0.0,14093307.03785499,0.0 + 09/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12547708.727593149,0.0,18032488.26808879,0.0,4034070.4619334049,0.0,9956249.554914576,0.0,1290.7379493515048,1270.5312059674805,1272.1684151067937,1531.411306409016,63883972.96913518,0.0,14093307.03785499,0.0 + 09/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,643085.7224696141,0.0,0.0,0.0,0.0,0.0,5170.544336471639,5089.598500320083,5096.156967472263,6134.653483412389,78010517.55810458,0.0,14093307.03785499,15502637.741640486 + 09/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,2143480.787000907,5024485.369482862,8157355.994361013,0.0,0.0,0.0,3755563.7103779816,0.0,20690.50701061487,20366.593263553423,20392.837697748466,24548.496762886843,323650765.53703287,5024485.369482862,56373228.15141996,38756594.35410121 + 09/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,47631967.61951321,0.0,2613488.7872064069,0.0,12234764.405735176,0.0,10217078.513999483,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,270711798.817736,72697299.32645428,56373228.15141996,38756594.35410121 + 09/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54208934.71245198,0.0,1629075.6436850937,0.0,4901652.3618354969,0.0,2910868.788006808,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,63650531.505979377,28186614.07570998,0.0 + 09/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,67002097.268985677,0.0,2693369.0819811418,0.0,4066442.360068267,0.0,2652608.14973879,10301.490574943315,10140.218818251411,10153.285525189345,12222.32533510015,154142352.9125432,76414516.86077386,28186614.07570998,0.0 + 09/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,73973823.51222314,0.0,3577393.4058141915,0.0,3443999.855690727,0.0,4239929.369811659,5145.26480966707,5064.714729223531,5071.241131096821,6104.66028983763,76989171.45537019,85235146.1435397,28186614.07570998,0.0 + 09/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,81198616.87006253,0.0,10666140.778389229,0.0,7158319.684127458,0.0,12000463.288119257,5140.776816583388,5060.296996508808,5066.817705682585,6099.335457361069,76922017.11408906,111023540.62069847,28186614.07570998,0.0 + 09/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,86491318.10237226,0.0,23576134.154191156,0.0,16920902.793827565,0.0,22679085.9332379,5129.055596170379,5048.7592739879569,5055.265115628636,6085.428676767524,76746631.18519619,149667440.98362888,28186614.07570998,0.0 + 09/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,82919006.21572532,0.0,33150096.79429821,0.0,26713202.935391088,0.0,32431727.533731596,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,175214033.4791462,28186614.07570998,0.0 + 09/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,72243808.07825026,0.0,37500759.47672087,0.0,34157328.401504609,0.0,38772005.301358278,12808.752515371725,12608.229105273158,12624.476095370494,15197.095919346315,191658793.0873021,182673901.257834,28186614.07570998,0.0 + 09/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,51038790.83300076,0.0,31596217.826418979,0.0,32901621.416705178,0.0,35049384.9290933,12827.091418827245,12626.280909773965,12642.551161463909,15218.85432825731,191933200.14596076,150586015.0052182,35233267.594637479,0.0 + 09/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,18985635.26770315,0.0,5934237.800688651,0.0,11729545.983192122,0.0,10279388.1937729,17995.415263124112,17713.6936801385,17736.519582444493,21350.873282465727,269267406.5094222,46928807.24535683,14093307.03785499,0.0 + 09/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,21017518.06154485,0.0,7152871.465485795,0.0,17692979.705481028,0.0,16588872.316087183,18052.581214598682,17769.96468797844,17792.863101221497,21418.698501731786,270122787.0199095,62452241.548598859,63419881.67034747,0.0 + 09/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,33324552.31949567,0.0,20014893.643616339,0.0,32661298.479002187,0.0,33990025.68356363,10314.67144713315,10153.193341428223,10166.276767363554,12237.963936808565,154339579.77384059,119990770.12567781,63419881.67034747,69761869.8373822 + 09/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,28165510.908666545,0.0,16637027.60432094,0.0,28883377.22577224,0.0,29610770.278819838,10307.754022666784,10146.384210532324,10159.4588622075,12229.756676733547,154236073.57970456,103296686.01757956,49326574.63249246,69761869.8373822 + 09/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,21583333.023274959,0.0,11482309.104307838,0.0,23921602.34262757,0.0,23550772.066921869,5156.219173316969,5075.4976002669559,5082.03789697017,6117.657224154467,77153082.82095082,80538016.53713224,35233267.594637479,69761869.8373822 + 09/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,14197863.04548694,0.0,4506121.817247922,0.0,18544646.250301485,0.0,16687747.413141752,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,53936378.5261781,35233267.594637479,62010550.96656194 + 09/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2498721.062102884,0.0,0.0,0.0,8753586.015227605,0.0,4404799.002759995,2585.5862705993747,2545.108435192499,2548.388067185062,3067.699412170528,38688415.86653087,15657106.080090484,35233267.594637479,46507913.22492146 + 09/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,1640332.8533403667,0.0,0.0,0.0,0.0,0.0,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,40315601.22112517,0.0,21139960.556782485,23253956.61246073 + 09/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.3538049279317,1272.121765023421,1273.7610237604227,1533.3284573694473,19337634.183892404,0.0,14093307.03785499,0.0 + 09/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.5559302804978,1272.320726065886,1273.9602411844988,1533.568271384668,19340658.60809598,0.0,14093307.03785499,0.0 + 09/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8978865600425,1272.6573289560827,1274.2972778218758,1533.9739894570742,19345775.33806227,0.0,14093307.03785499,0.0 + 09/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 09/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.1398584780343,19347867.2019642,0.0,14093307.03785499,0.0 + 09/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.61869296661,1272.382506190439,1274.0221009190478,1533.642736915941,19341597.733171338,0.0,14093307.03785499,15502637.741640486 + 09/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,4220078.815419733,0.0,0.0,0.0,0.0,0.0,5168.208168769476,5087.298905759109,5093.854409648984,6131.881709610776,81552554.31305778,0.0,56373228.15141996,38756594.35410121 + 09/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,22349199.625391749,0.0,1800481.751156513,0.0,9952210.509685155,0.0,3940535.86327386,12902.391601998252,12700.402254530192,12716.768019138264,15308.195121205004,193059925.18873818,38042427.74950728,56373228.15141996,38756594.35410121 + 09/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22226968.94242602,0.0,3016095.1857789566,0.0,2625821.259645254,0.0,0.0,12883.17195585408,12681.483495531831,12697.824881387936,15285.391744713947,192772339.47895608,27868885.38785023,28186614.07570998,0.0 + 09/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11530994.93200587,0.0,2491206.9031472785,0.0,2720973.4797883348,0.0,377711.4187948838,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,17120886.733736367,28186614.07570998,0.0 + 09/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20510476.460884118,0.0,10910048.107709121,0.0,7186636.999841171,0.0,6642332.750995461,7717.897214500606,7597.072093835295,7606.861696645232,9156.990434756448,115483757.1830553,45249494.31942987,28186614.07570998,0.0 + 09/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19182439.848731385,0.0,11514209.984138351,0.0,8646006.239681492,0.0,8391957.642992422,7711.165224875082,7590.445494763209,7600.226558523879,9149.003186041604,115383025.6711336,47734613.71554365,28186614.07570998,0.0 + 09/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14058750.94011855,0.0,7960715.715005101,0.0,8024988.154958418,0.0,7088483.180164493,7709.996206705832,7589.29477779148,7599.07435873588,9147.616190607958,115365533.52182813,37132937.990246567,28186614.07570998,0.0 + 09/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12457592.538568277,0.0,6601381.199765389,0.0,7497870.839547847,0.0,6335166.790391792,7712.320827053192,7591.583005773644,7601.365535333353,9150.374263913885,115400317.07546667,32892011.368273308,28186614.07570998,0.0 + 09/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4214697.778895257,0.0,610588.0454968762,0.0,3568504.765198017,0.0,1393846.6795863978,18015.856519017147,17733.81492435722,17756.666754940117,21375.126052292104,269573271.30218377,9787637.269176547,28186614.07570998,0.0 + 09/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,179285.6467403638,0.0,0.0,0.0,1196755.59904951,0.0,0.0,23184.11312419863,22821.16150824727,22850.568904158175,27507.065229856795,346906471.5592592,1376041.2457898737,35233267.594637479,0.0 + 09/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18046.76710660939,17764.24160093434,17787.132639395593,21411.800284540634,270035789.87332788,0.0,14093307.03785499,0.0 + 09/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,3823997.9056263866,0.0,0.0,18048.736990287958,17766.18064571644,17789.074182834807,21414.137476330172,270065265.46260979,3823997.9056263866,63419881.67034747,0.0 + 09/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,13465490.091679316,0.0,6428186.149850316,0.0,24092541.93099337,0.0,21776738.225310856,15481.400223891342,15239.036015333962,15258.673068655793,18368.09040426982,231649918.9637433,65762956.397833857,63419881.67034747,69761869.8373822 + 09/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,11185684.021766942,0.0,5255611.777316838,0.0,19801090.344787845,0.0,18143982.82490437,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,54386368.968776,49326574.63249246,69761869.8373822 + 09/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6074839.563566143,0.0,398848.2114492214,0.0,15333248.685767403,0.0,12937506.464447178,10324.742990404964,10163.107212811274,10176.203413781768,12249.913438446129,154490281.3995989,34744442.92522995,35233267.594637479,69761869.8373822 + 09/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2890552.1593617845,0.0,0.0,0.0,12766036.263588708,0.0,9751633.3223945,7743.557242803722,7622.330409608453,7632.152560336326,9187.435078834598,115867711.04969916,25408221.74534499,35233267.594637479,62010550.96656194 + 09/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,8220223.663111364,0.0,4051685.9872119075,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77251923.80271465,12271909.650323272,35233267.594637479,46507913.22492146 + 09/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2581.412408442436,2540.999915626261,2544.2742533720149,3062.7472840474345,38625961.90135732,0.0,21139960.556782485,23253956.61246073 + 09/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 + 09/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 09/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 + 09/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.3380835922795,1271.121944994761,1272.7599153616064,1532.1233427771629,19322435.832212915,0.0,14093307.03785499,0.0 + 09/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.136626487158,1270.923641738202,1272.5613565710608,1531.8843216120268,19319421.40707041,0.0,14093307.03785499,0.0 + 09/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.4772555802802,1270.2745934058769,1271.9114718737126,1531.1020032007512,19309555.166618237,0.0,14093307.03785499,15502637.741640486 + 09/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.8648870783805,1269.6718116471116,1271.3079133691263,1530.3754513487898,19300392.228396268,0.0,56373228.15141996,38756594.35410121 + 09/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,0.0,0.0,0.0,0.0,4733927.84996821,0.0,0.0,5158.942264496314,5078.1780609458969,5084.721811696284,6120.88806789198,77193828.73810971,4733927.84996821,56373228.15141996,38756594.35410121 + 09/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7735.172995837697,7614.07741959276,7623.888935500633,9177.48748985579,115742256.62683277,0.0,28186614.07570998,0.0 + 09/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7731.714255948455,7610.672826921711,7620.4799556644279,9173.383827005422,115690503.11594406,0.0,28186614.07570998,0.0 + 09/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5150.091799295202,5069.46615142856,5075.998675994329,6110.387328773886,77061398.23977113,0.0,28186614.07570998,0.0 + 09/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3148784.425197944,0.0,0.0,0.0,0.0,0.0,0.0,5146.688986256335,5066.116610062611,5072.644818402448,6106.35002099663,77010481.56858488,3148784.425197944,28186614.07570998,0.0 + 09/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5097792.542726587,0.0,0.0,0.0,379593.0084309454,0.0,0.0,7720.033479384502,7599.174915093914,7608.967227603673,9159.525031494948,115515722.35287734,5477385.551157532,28186614.07570998,0.0 + 09/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5582186.615762241,0.0,0.0,0.0,1965056.7563140346,0.0,0.0,10293.37797251267,10132.233220125221,10145.289636804897,12212.70004199326,154020963.13716976,7547243.372076276,28186614.07570998,0.0 + 09/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6554661.186851848,0.0,0.0,0.0,2702969.1861166779,0.0,0.0,12889.118143106216,12687.336594113272,12703.685522284311,15292.446668908682,192861312.94228495,9257630.372968527,28186614.07570998,0.0 + 09/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15496.057003107353,15253.463339937127,15273.118984339277,18385.480113325957,231869229.98655496,0.0,35233267.594637479,0.0 + 09/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4235881.575328771,0.0,8674096.184102973,0.0,0.0,0.0,3087957.0748834956,0.0,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,286709733.65205129,0.0,14093307.03785499,0.0 + 09/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3510686.8599947679,0.0,0.0,0.0,0.0,0.0,10342.345082397498,10180.433740769997,10193.552268740248,12270.797648682112,158264350.32611824,0.0,63419881.67034747,0.0 + 09/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,7325724.494617618,0.0,2022267.623881452,7758.477998881968,7637.017578466828,7646.858655110864,9205.13798636116,116090971.98775496,9347992.11849907,63419881.67034747,69761869.8373822 + 09/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,0.0,0.0,0.0,8052446.098264031,0.0,2178581.388465902,5172.626752653717,5091.648315888356,5098.2094244371169,6137.124190721711,77398591.26132325,10231027.486729935,49326574.63249246,69761869.8373822 + 09/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,1110367.3949837392,0.0,0.0,3834764.4603805968,0.0,0.0,5172.626752653717,5091.648315888356,5098.2094244371169,6137.124190721711,78508958.65630698,3834764.4603805968,35233267.594637479,69761869.8373822 + 09/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,6183940.082871876,0.0,0.0,375684.6312708721,0.0,0.0,5173.413629730778,5092.4228742579839,5098.984980904262,6138.057790336699,83594305.47369887,375684.6312708721,35233267.594637479,62010550.96656194 + 09/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,5262304.967455575,0.0,11282589.28153531,0.0,0.0,0.0,0.0,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,93956387.70574245,0.0,35233267.594637479,46507913.22492146 + 09/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,14665788.746188585,0.0,19963461.72174599,0.0,0.0,0.0,8089982.82056055,0.0,2586.8060124311539,2546.3090817383597,2549.590260886544,3069.1465892935259,81425900.28815364,0.0,21139960.556782485,23253956.61246073 + 09/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4393745795815,1273.1903398796613,1274.8309755844326,1534.6164443223884,19353877.68371783,0.0,14093307.03785499,0.0 + 09/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1793435.4708142779,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,21147273.597810437,0.0,14093307.03785499,0.0 + 09/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3772334.978323825,0.0,9531355.65319386,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,32657543.504774579,0.0,14093307.03785499,0.0 + 09/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7285645.07411224,0.0,11109291.227224945,0.0,0.0,0.0,2226186.7337845789,0.0,1293.4267979988984,1273.177960187695,1274.8185799399697,1534.6015226894859,39974812.53405954,0.0,14093307.03785499,0.0 + 09/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8373061.501731131,0.0,12076149.983721763,0.0,0.0,0.0,4755668.082038554,0.0,1293.4178662433677,1273.1691682604633,1274.8097766834422,1534.5909255024945,44558435.4195746,0.0,14093307.03785499,0.0 + 09/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3557297.666920963,0.0,7032935.038330619,0.0,0.0,0.0,571344.3298712868,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,88577107.43173808,0.0,14093307.03785499,15502637.741640486 + 09/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13804869.962097628,0.0,14711823.82688291,0.0,8901719.154797154,0.0,16094984.177458737,0.0,20694.638556888967,20370.660129699867,20396.90980446704,24553.398684830252,363169582.9544265,0.0,56373228.15141996,38756594.35410121 + 09/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,16503063.830887841,0.0,23153125.242555638,0.0,10214293.874851563,0.0,18028604.23625969,0.0,18104.68422817852,17821.252019160875,17844.216521364942,21480.51673844996,338801497.41031017,0.0,56373228.15141996,38756594.35410121 + 09/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10302021.311011147,0.0,14725794.857092675,0.0,9655906.756825,0.0,15011283.171856653,0.0,12926.791484148758,12724.42015197384,12740.816866094225,15337.144649975822,243120029.44467897,0.0,28186614.07570998,0.0 + 09/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10557040.74490492,0.0,14204195.446561506,0.0,8381491.3569867969,0.0,13390088.369950369,0.0,10334.412390214156,10172.625236362628,10185.733702277954,12261.385812216055,201167781.62625844,0.0,28186614.07570998,0.0 + 09/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4917327.878186052,0.0,11255122.510320312,0.0,6078268.555693544,0.0,9993588.850665182,0.0,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,109502877.70499857,0.0,28186614.07570998,0.0 + 09/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4923135.991521965,4955216.9068637699,0.0,2506256.336193324,0.0,3411466.333519283,0.0,5153.268782341633,5072.5933982127339,5079.129952555175,6114.156697885577,87981875.36815879,4923135.991521965,28186614.07570998,0.0 + 09/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57911381.217496957,0.0,0.0,0.0,0.0,0.0,0.0,5141.547218035461,5061.05533718243,5067.577023555569,6100.249509275923,76933544.71697779,57911381.217496957,28186614.07570998,0.0 + 09/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,59459304.182425979,0.0,17801812.87069696,0.0,10632467.332460676,0.0,14514913.46411334,7688.081617638067,7567.723265703733,7577.47504955305,9121.615367210346,115037623.08037871,102408497.84969694,28186614.07570998,0.0 + 09/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47684186.06811565,0.0,24740602.45308519,0.0,23405150.160192074,0.0,25771475.38020208,12813.469362730111,12612.872109506223,12629.125082588416,15202.692278683908,191729371.80063118,121601414.061595,28186614.07570998,0.0 + 09/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,32276710.543850345,0.0,19890584.912268334,0.0,23786730.85717094,0.0,23538967.730513503,12848.022972937308,12646.884776499655,12663.18157837487,15243.688818202356,192246401.32565109,99492994.04380311,35233267.594637479,0.0 + 09/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,3781906.26759124,0.0,391743.3849541331,0.0,2748299.858723578,0.0,1429308.3851562928,18005.887330720616,17724.00180556322,17746.840990940946,21363.297990925585,269424101.2253413,8351257.8964252439,14093307.03785499,0.0 + 09/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,11197962.418484349,0.0,0.0,0.0,12669752.991465472,0.0,8708578.800207489,18050.675032483014,17768.08834749939,17790.984342886222,21416.43688941499,270094264.604221,32576294.210157314,63419881.67034747,0.0 + 09/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,25320225.001861007,0.0,14198977.650953778,0.0,29405156.17718485,0.0,28996043.391713159,10316.831724768464,10155.319799514158,10168.405965607773,12240.527023759996,154371904.24914143,97920402.22171279,63419881.67034747,69761869.8373822 + 09/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,19045602.39712325,0.0,10049256.693600228,0.0,24551548.73849853,0.0,23208715.731819266,10318.919096627043,10157.374493176892,10170.46330695301,12243.003610790318,154403137.82717014,76855123.56104127,49326574.63249246,69761869.8373822 + 09/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12880004.718258467,0.0,4300905.337310955,0.0,19429489.1193901,0.0,17191889.24202659,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,53802288.416986118,35233267.594637479,69761869.8373822 + 09/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,9421718.859351017,0.0,1000329.0841386002,0.0,16448135.304059446,0.0,13799420.0004808,5159.967708872419,5079.187451798996,5085.732503252525,6122.10471850061,77209172.57672838,40669603.24802986,35233267.594637479,62010550.96656194 + 09/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,3974826.499883662,0.0,0.0,0.0,11464082.380937543,0.0,8091728.537802912,2579.9838544362098,2539.593725899498,2542.8662516262627,3061.052359250305,38604586.28836419,23530637.418624116,35233267.594637479,46507913.22492146 + 10/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,0.0,0.0,0.0,1365693.207162154,0.0,0.0,2579.729774156761,2539.343623294223,2542.6158267382527,3060.7509026975797,38600784.45679253,1365693.207162154,21139960.556782485,23253956.61246073 + 10/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.7355661240786,1269.5445152364742,1271.180452924071,1530.222016972995,19298457.184527428,0.0,14093307.03785499,0.0 + 10/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1289.9919272181049,1269.796862949749,1271.4331258131313,1530.5261796251526,19302293.144182095,0.0,14093307.03785499,0.0 + 10/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 10/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.706204221218,1270.4999578131306,1272.1371266860074,1531.3736420237172,19312980.95067866,0.0,14093307.03785499,0.0 + 10/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.925997335444,1270.716310025151,1272.3537576899356,1531.634418163727,19316269.739571327,0.0,14093307.03785499,0.0 + 10/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5161.437402678302,5080.634137274177,5087.1810529296,6123.848454099629,77231163.76913414,0.0,14093307.03785499,15502637.741640486 + 10/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,989163.5070136078,0.0,0.0,0.0,4384172.754693158,0.0,0.0,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,308775314.95243886,5373336.261706766,56373228.15141996,38756594.35410121 + 10/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,17291148.886035108,0.0,0.0,0.0,13003507.679791268,0.0,6969325.090078632,18038.56953966687,17756.172368431562,17779.053008863124,21402.0741842837,269913128.7644829,37263981.65590501,56373228.15141996,38756594.35410121 + 10/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51271722.2385503,0.0,943076.6313347269,0.0,5927828.696551778,0.0,3309113.0308511659,12875.229498238004,12673.665378571399,12689.996689985821,15275.968321934717,192653495.5994278,61451740.59728797,28186614.07570998,0.0 + 10/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43155526.0752103,0.0,1202004.3173825127,0.0,2915070.822287684,0.0,692246.679866287,10290.52961933414,10129.429458447063,10142.482262193642,12209.32057967526,153978342.91074039,47964847.89474679,28186614.07570998,0.0 + 10/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39501301.69447874,0.0,3911714.7671081556,0.0,4037980.8866268929,0.0,3464000.212068919,5135.133999348351,5054.742518630252,5061.256070292349,6092.640470111273,76837583.010176,50914997.56028271,28186614.07570998,0.0 + 10/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,52777927.744148578,0.0,14732341.085982724,0.0,8878800.992031288,0.0,12558847.655048736,5136.79080025663,5056.373382011236,5062.8890352072589,6094.606201144968,76862373.90703234,88947917.47721133,28186614.07570998,0.0 + 10/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,55576424.50520972,0.0,20904532.4077677,0.0,14359393.10649385,0.0,18517686.01230569,5135.966848723278,5055.562329592846,5062.076937665046,6093.6286141028099,76850045.02830233,109358036.03177695,28186614.07570998,0.0 + 10/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,56212474.35195105,0.0,26666778.37331978,0.0,21235321.67060877,0.0,25263964.62531982,7696.254851296348,7575.768545864377,7585.530696878346,9131.312596954387,115159920.08757645,129378539.0211994,28186614.07570998,0.0 + 10/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46305474.03083414,0.0,25743943.61492407,0.0,23326795.7864549,0.0,25838636.350402349,12841.977000641575,12640.933455028086,12657.222588018147,15236.515502862421,192155934.7675808,121214849.78261546,28186614.07570998,0.0 + 10/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,27616106.4926043,0.0,15767362.184650487,0.0,18354595.099228279,0.0,18136382.129685895,12866.722465640838,12665.291525156525,12681.612046006121,15265.875052491576,192526203.9214622,79874445.90616896,35233267.594637479,0.0 + 10/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,2793690.0661439688,0.0,0.0,0.0,1610423.9363821126,0.0,797127.9428036851,18068.300233208687,17785.437622419722,17808.355974118094,21437.348517280723,270357992.449298,5201241.945329766,14093307.03785499,0.0 + 10/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,5919000.340879663,0.0,0.0,0.0,7350167.038665805,0.0,3526499.4924421708,18072.963962696216,17790.028340352106,17812.9526076591,21442.881854292176,270427776.35399857,16795666.871987638,63419881.67034747,0.0 + 10/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,19217737.377338977,0.0,6817622.8861682829,0.0,23484744.694999849,0.0,22353381.179599897,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,154717479.74859489,71873486.138107,63419881.67034747,69761869.8373822 + 10/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,13105200.488998175,0.0,4527854.428508488,0.0,18420243.07339415,0.0,16420233.910898982,10336.416337538953,10174.597811518219,10187.708819297968,12263.763419221552,154664950.9952761,52473531.9017998,49326574.63249246,69761869.8373822 + 10/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5644587.615329395,0.0,0.0,0.0,12238913.23607879,0.0,8781779.791911973,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,77391468.8078568,26665280.643320159,35233267.594637479,69761869.8373822 + 10/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,174703.9358116921,0.0,0.0,0.0,7175063.312763466,0.0,2509823.4641921625,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,77409098.80913013,9859590.712767322,35233267.594637479,62010550.96656194 + 10/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5070626.234824874,0.0,467035.2919066814,2584.707609855863,2544.243530046842,2547.5220475208454,3066.6569147388947,38675268.367784809,5537661.526731556,35233267.594637479,46507913.22492146 + 10/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,4852725.3855577199,0.0,0.0,0.0,0.0,0.0,2586.744509763223,2546.2485419061688,2549.5296430426,3069.073618725727,43558472.1139335,0.0,21139960.556782485,23253956.61246073 + 10/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4317722604456,1273.1828565762499,1274.8234826380208,1534.6074244609325,19353763.92936834,0.0,14093307.03785499,0.0 + 10/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.079666480328,1272.8362630778052,1274.4764425184774,1534.1896643935266,19348495.331292496,0.0,14093307.03785499,0.0 + 10/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,19350661.896903747,0.0,14093307.03785499,0.0 + 10/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.8466656425079,1272.6069099115674,1274.2467938072753,1533.9132177936418,19345008.913757974,0.0,14093307.03785499,0.0 + 10/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,285340.3213506943,0.0,0.0,0.0,0.0,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,19636457.345746,0.0,14093307.03785499,0.0 + 10/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,786685.2888294496,0.0,0.0,0.0,0.0,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,78178154.09668625,0.0,14093307.03785499,15502637.741640486 + 10/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,6787571.30181334,0.0,12194415.25742221,0.0,0.0,0.0,4186024.402107031,0.0,20687.894370808346,20364.021525110464,20390.26264535803,24545.396965487,332723282.7856924,0.0,56373228.15141996,38756594.35410121 + 10/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9463524.672757082,0.0,17145289.35968236,0.0,2090776.4909460024,0.0,10482041.50895554,0.0,18101.25516585144,17817.876639444217,17840.836792127004,21476.448286894236,310032732.8158818,0.0,56373228.15141996,38756594.35410121 + 10/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,9664922.744573115,0.0,16129004.542941925,0.0,7535130.402362,0.0,14376378.967818223,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,241092204.89718247,0.0,28186614.07570998,0.0 + 10/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6369642.088900723,0.0,12158782.25085023,0.0,7141984.659315303,0.0,12272109.644325093,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,192651933.23498113,0.0,28186614.07570998,0.0 + 10/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4238077.408474285,0.0,9045349.208629517,0.0,6234733.486447503,0.0,10230476.686183028,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,107099173.52530395,0.0,28186614.07570998,0.0 + 10/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8676396.682341272,0.0,13818628.738506198,0.0,7353367.700931264,0.0,12660389.754985685,0.0,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,119850564.70810797,0.0,28186614.07570998,0.0 + 10/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14965210.971266969,0.0,20136043.1552664,0.0,9487392.523318803,0.0,16355167.282933612,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,138281011.50413347,0.0,28186614.07570998,0.0 + 10/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19132414.13204512,0.0,24182478.456887388,0.0,11810352.405693213,0.0,19504955.4398009,0.0,7756.758811798124,7635.325305577496,7645.164201555187,9203.098236511585,190695448.03401924,0.0,28186614.07570998,0.0 + 10/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17948085.480199923,0.0,22744809.03925173,0.0,11520876.87662283,0.0,18653449.961545513,0.0,12926.1869296661,12723.825061904388,12740.221009190478,15336.427369159412,264283198.68933339,0.0,28186614.07570998,0.0 + 10/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13840186.020063082,0.0,18279596.90224026,0.0,8019441.6891604899,0.0,14064447.405007819,0.0,12924.234856257432,12721.903548569091,12738.297019789123,15334.111308575248,247590440.25595889,0.0,35233267.594637479,0.0 + 10/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24834860.81258848,0.0,29199600.441404858,0.0,14948558.49280272,0.0,23144141.05552777,0.0,18106.651439746962,17823.188433665233,17846.155431137035,21482.850759882833,363059006.63427928,0.0,14093307.03785499,0.0 + 10/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,14205456.969581623,0.0,19080025.20761786,0.0,3414395.6565621106,0.0,9490347.085073818,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,317130452.01746585,0.0,63419881.67034747,0.0 + 10/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,1842540.224419456,0.0,7025764.268056785,0.0,0.0,0.0,0.0,0.0,10347.501731769487,10185.509661834096,10198.634730646727,12276.91581632057,163699127.47853143,0.0,63419881.67034747,69761869.8373822 + 10/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,3946444.3986602688,0.0,9087767.920941459,0.0,0.0,0.0,0.0,0.0,10347.224049724615,10185.236326953438,10198.361043546176,12276.586357174103,167860880.31823574,0.0,49326574.63249246,69761869.8373822 + 10/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,6270155.843228232,0.0,11321233.425269138,0.0,0.0,0.0,0.0,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,95000488.07762751,0.0,35233267.594637479,69761869.8373822 + 10/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7449061.333680948,0.0,12428518.584524813,0.0,0.0,0.0,0.0,0.0,5172.76692233672,5091.786291188823,5098.3475775328429,6137.290496699989,97278268.5541359,0.0,35233267.594637479,62010550.96656194 + 10/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14816871.242923508,0.0,20024942.415061717,0.0,0.0,0.0,8441623.59105277,0.0,2585.824003561095,2545.342446400355,2548.6223799402448,3067.9814732547849,81975410.34040132,0.0,35233267.594637479,46507913.22492146 + 10/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,23037980.365168133,0.0,28195920.703949989,0.0,8860132.174784624,0.0,18646644.00399965,0.0,2586.717982701673,2546.222430130715,2549.5034976194594,3069.0421453797987,117446027.04889632,0.0,21139960.556782485,23253956.61246073 + 10/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.426797998898,1273.1779601876947,1274.8185799399697,1534.6015226894857,19353689.498937776,0.0,14093307.03785499,0.0 + 10/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,3958996.414376702,0.0,0.0,0.0,0.0,0.0,1293.1917305841799,1272.9465727972057,1274.5868943832107,1534.3226241749972,23309168.57335924,0.0,14093307.03785499,0.0 + 10/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5467781.259829877,0.0,9062915.156973754,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,33884351.50834993,0.0,14093307.03785499,0.0 + 10/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5888341.295088124,0.0,9103104.548812785,0.0,0.0,0.0,928696.6248598502,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,35270804.365664508,0.0,14093307.03785499,0.0 + 10/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5076668.071136439,0.0,7995036.347392052,0.0,0.0,0.0,1179207.286113419,0.0,1293.19173058418,1272.9465727972059,1274.5868943832107,1534.3226241749972,33601083.863624449,0.0,14093307.03785499,0.0 + 10/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1344820.9672902595,0.0,4129192.65441611,0.0,0.0,0.0,0.0,0.0,5172.897841074735,5091.915160369572,5098.476612774683,6137.445826785169,82876661.20932135,0.0,14093307.03785499,15502637.741640486 + 10/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13838620.604191438,0.0,14682999.49956035,0.0,6009857.5839659529,0.0,14048718.123348324,0.0,20693.315931139383,20369.358209903126,20395.606207013756,24551.829439866095,358216591.0475866,0.0,56373228.15141996,38756594.35410121 + 10/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9489546.291935755,0.0,15144241.740407998,0.0,6271290.948888048,0.0,10606876.293499208,0.0,18099.10389419562,17815.75904634749,17838.716470295436,21473.895885193695,312330866.34044709,0.0,56373228.15141996,38756594.35410121 + 10/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,4751305.100602575,0.0,1294412.664972525,0.0,4669305.251324978,0.0,12921.309374422706,12719.023865698236,12735.413626152967,15330.640336050854,204058016.94526924,0.0,28186614.07570998,0.0 + 10/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6917779.712187229,1978736.6592144853,0.0,1343658.315245897,0.0,3801737.7424449536,0.0,10328.259663360937,10166.568831596087,10179.669493215706,12254.085836668732,161667034.48633457,6917779.712187229,28186614.07570998,0.0 + 10/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20863929.716188957,4289480.856553206,0.0,2102990.395357175,0.0,4060207.6044533459,0.0,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,87697819.55616316,20863929.716188957,28186614.07570998,0.0 + 10/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10617431.89558401,0.0,0.0,0.0,0.0,76853.58280148939,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,77328777.38551614,10617431.89558401,28186614.07570998,0.0 + 10/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7541615.183764977,0.0,0.0,0.0,0.0,0.0,0.0,5163.268983018589,5082.437043882556,5088.986282767163,6126.021554257659,77258569.91013348,7541615.183764977,28186614.07570998,0.0 + 10/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2621852.689622031,0.0,0.0,0.0,0.0,0.0,0.0,7745.555984012664,7624.297860150903,7634.122546139615,9189.806508982365,115897618.43742797,2621852.689622031,28186614.07570998,0.0 + 10/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,4003447.9395519199,0.0,0.0,0.0,3974613.136064435,0.0,12918.015487767696,12715.781545453281,12732.167127847442,15326.732265270068,201271768.2104349,0.0,28186614.07570998,0.0 + 10/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,5616078.288345984,0.0,14937077.065600444,0.0,4466966.77076227,0.0,9948465.789599136,0.0,12918.873470694787,12716.626096497594,12733.012767181974,15327.75022926184,228275133.14339815,0.0,35233267.594637479,0.0 + 10/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16838666.31324412,0.0,23431329.91254678,0.0,10000358.746852652,0.0,17417005.866500919,0.0,18096.66170153254,17813.355086666143,17836.309412866667,21470.998316823174,338469729.10354319,0.0,14093307.03785499,0.0 + 10/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,7484664.191173794,0.0,13691081.541918533,0.0,0.0,0.0,4253505.017548302,0.0,18097.50807780826,17814.188212763376,17837.143612531912,21472.002509966147,296224283.43769159,0.0,63419881.67034747,0.0 + 10/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3822317.241246605,0.0,0.0,0.0,0.0,0.0,10344.954666741358,10183.002471584135,10196.124309626226,12273.893820892143,158615028.2090845,0.0,63419881.67034747,69761869.8373822 + 10/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,764268.8143932113,0.0,7588718.109033765,0.0,0.0,0.0,0.0,0.0,10343.947185404173,10182.010762555232,10195.131322679015,12272.6984827435,163130622.83560188,0.0,49326574.63249246,69761869.8373822 + 10/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4593543.312598031,0.0,10415659.886454966,0.0,0.0,0.0,0.0,0.0,5171.787190243269,5090.821896984065,5097.3819406077159,6136.128081969782,92395231.99435038,0.0,35233267.594637479,69761869.8373822 + 10/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7035207.408451373,0.0,12593374.602054887,0.0,0.0,0.0,0.0,0.0,5172.318665921312,5091.345052311221,5097.9057700739099,6136.758657574106,97022563.33567624,0.0,35233267.594637479,62010550.96656194 + 10/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9077251.193182156,0.0,14317816.458467432,0.0,0.0,0.0,2128384.8156553816,0.0,2584.981721917516,2544.513350833034,2547.7922159986608,3066.982138236545,64202822.40445368,0.0,35233267.594637479,46507913.22492146 + 10/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,15495545.260974629,0.0,20322319.876456348,0.0,0.0,0.0,10760508.735917893,0.0,2585.1118605609956,2544.641452131772,2547.9204823689976,3067.136542769336,85259691.08954084,0.0,21139960.556782485,23253956.61246073 + 10/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.037687957015,1272.7949417361056,1274.4350679300115,1534.139858478034,19347867.2019642,0.0,14093307.03785499,0.0 + 10/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1015592.6238265587,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,20364681.494806298,0.0,14093307.03785499,0.0 + 10/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2624975.3207171687,0.0,7542908.432106555,0.0,0.0,0.0,0.0,0.0,1293.2244602686838,1272.978790092393,1274.6191531936709,1534.3614566962922,29518545.649727469,0.0,14093307.03785499,0.0 + 10/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4417419.651948343,0.0,7476081.842282508,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,31242590.365210587,0.0,14093307.03785499,0.0 + 10/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4585413.116780801,0.0,7440900.061431248,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,31375402.049191789,0.0,14093307.03785499,0.0 + 10/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,229100.9514403646,0.0,1939116.595516042,0.0,0.0,0.0,0.0,0.0,5171.172541198749,5090.216870384998,5096.776134370124,6135.398824341056,79545049.28001815,0.0,14093307.03785499,15502637.741640486 + 10/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12752440.274554342,0.0,13414106.965806922,0.0,3564715.7612760679,0.0,11827207.77349311,0.0,20679.85377534013,20356.106806664277,20382.337727989285,24535.857105892355,350993430.2723202,0.0,56373228.15141996,38756594.35410121 + 10/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,10651624.153252848,0.0,16312363.832228188,0.0,4947006.318309554,0.0,10344012.087113459,0.0,18092.95326899104,17809.704710327886,17832.654332645918,21466.59840317226,312981884.96539768,0.0,56373228.15141996,38756594.35410121 + 10/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1210749.08318175,0.0,9838713.774086453,0.0,5102908.879863331,0.0,9734018.133024469,0.0,12918.015487767696,12715.781545453281,12732.167127847442,15326.732265270068,219180097.00497455,0.0,28186614.07570998,0.0 + 10/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,8158989.224021372,0.0,4834974.647050677,0.0,8425792.316472758,0.0,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,175999242.8452481,0.0,28186614.07570998,0.0 + 10/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,5951674.506816804,0.0,3488996.835179353,0.0,6197449.9072471749,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,92890045.051958,0.0,28186614.07570998,0.0 + 10/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,3954282.518546021,0.0,2180121.460046695,0.0,4107568.6674828117,0.0,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,87487113.34587497,0.0,28186614.07570998,0.0 + 10/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,4237707.36578994,0.0,1946295.1054837008,0.0,4245545.948659334,0.0,5165.352334369118,5084.487779979044,5091.039661446425,6128.493371108651,87719291.74878463,0.0,28186614.07570998,0.0 + 10/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,6658967.576224517,0.0,3604676.590984594,0.0,6647896.380794774,0.0,7755.71215779966,7634.2950371426309,7644.132605514287,9201.856421495648,132961126.94703189,0.0,28186614.07570998,0.0 + 10/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10230647.203474049,0.0,19174081.71484746,0.0,9066535.80513526,0.0,15426515.10760648,0.0,12932.548769028932,12730.087305485195,12746.491322311313,15343.975448717072,247408950.07501627,0.0,28186614.07570998,0.0 + 10/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21115517.07123862,0.0,28248834.484909957,0.0,12719491.97225262,0.0,21369822.354747375,0.0,12933.887878621179,12731.405451066965,12747.811166458205,15345.564251131318,276984873.3733482,0.0,35233267.594637479,0.0 + 10/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30526216.912178764,0.0,37597027.1129189,0.0,18766206.56360475,0.0,29571916.679317539,0.0,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,387415307.49361649,0.0,14093307.03785499,0.0 + 10/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,20741671.31883535,0.0,27937180.061618225,0.0,7383128.774033806,0.0,16306326.344957818,0.0,18108.067806677343,17824.5826271071,17847.551421139455,21484.531225179686,343321345.5878181,0.0,63419881.67034747,0.0 + 10/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10622607.637605299,0.0,18150511.572449726,0.0,0.0,0.0,3047873.0160245818,0.0,10346.324273462673,10184.350636856729,10197.474212147377,12275.51880698588,186634196.77210919,0.0,63419881.67034747,69761869.8373822 + 10/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,16451259.542521067,0.0,24162663.115193488,0.0,0.0,0.0,8894791.637009085,0.0,10345.041353971941,10183.087801709953,10196.20974970862,12273.996671982175,204302722.37326534,0.0,49326574.63249246,69761869.8373822 + 10/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21726906.92700836,0.0,29606553.111711924,0.0,3775563.3076784817,0.0,14330044.500246875,0.0,5172.024808126503,5091.055794915008,5097.616139940017,6136.410006517806,146828652.14484326,0.0,35233267.594637479,69761869.8373822 + 10/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25229594.9018827,0.0,33267404.114068536,0.0,6950549.533101809,0.0,17881430.531255075,0.0,5171.64800712219,5090.68489280071,5097.244759880489,6135.9629465095699,160712925.2630348,0.0,35233267.594637479,62010550.96656194 + 10/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,28402041.64664231,0.0,36115035.403325829,0.0,10537522.255819159,0.0,21861947.003143334,0.0,2585.147952284963,2544.6769788330686,2547.956054850074,3067.179364222118,135598403.5696154,0.0,35233267.594637479,46507913.22492146 + 10/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,35453754.22066452,0.0,42555580.04605442,0.0,18358258.319099174,0.0,30732646.20677178,0.0,2584.305815424775,2543.8480257825269,2547.1260336089178,3066.1802009838449,165769495.06547017,0.0,21139960.556782485,23253956.61246073 + 10/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2542796.396538059,0.0,6805573.517959418,0.0,0.0,0.0,0.0,0.0,1291.556899978458,1271.3373357695937,1272.975583689437,1532.3829600666289,28674079.9207123,0.0,14093307.03785499,0.0 + 10/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23123555.083166847,0.0,30152470.74488458,0.0,4815012.296258108,0.0,12866985.817279119,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.141208321138,90268073.54517669,0.0,14093307.03785499,0.0 + 10/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25890128.06660779,0.0,31513253.95119623,0.0,10590119.721964298,0.0,20837486.173516796,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,108149296.45987563,0.0,14093307.03785499,0.0 + 10/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26490057.672015579,0.0,31991510.140306117,0.0,12192617.562862218,0.0,22048293.55536774,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,112037586.69160675,0.0,14093307.03785499,0.0 + 10/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27677161.408585084,0.0,33107691.631321834,0.0,13616583.912643319,0.0,23477834.711920859,0.0,1290.3930432220234,1270.1916994077984,1271.8284710582566,1531.0020884522626,117187566.7521763,0.0,14093307.03785499,0.0 + 10/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20110658.813829159,0.0,25898975.650005185,0.0,8508889.469341608,0.0,16671866.627616503,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,90500440.16438049,0.0,14093307.03785499,15502637.741640486 + 10/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,25022497.003283744,0.0,34417011.89091331,0.0,18395412.263694005,0.0,27721167.60088067,0.0,5163.8257706036279,5082.985114854083,5089.535059984077,6126.682161473418,182822989.94366647,0.0,56373228.15141996,38756594.35410121 + 10/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,16264026.56727615,0.0,34013211.118392188,0.0,20111300.989946378,0.0,29318431.174718758,0.0,12921.529077123876,12719.240128912632,12735.630168044589,15330.901004919224,293053251.2147346,0.0,56373228.15141996,38756594.35410121 + 10/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2742741.631426909,0.0,28494849.898801663,0.0,16270491.247057278,0.0,25235798.418018979,0.0,12919.941219283466,12717.67712928293,12734.065154330332,15329.017072203838,266066403.2656669,0.0,28186614.07570998,0.0 + 10/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7167873.496800255,0.0,29030361.492409387,0.0,17413852.08580572,0.0,26721875.90139612,0.0,12923.738138579285,12721.414607098857,12737.807448267902,15333.521972011007,273713298.7738569,0.0,28186614.07570998,0.0 + 10/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3265496.374118276,0.0,26972610.103788746,0.0,16431147.80194879,0.0,24552592.254747023,0.0,7757.168618071212,7635.72869625693,7645.568112044684,9203.584456011338,187293226.11118583,0.0,28186614.07570998,0.0 + 10/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,23574637.21227666,0.0,14376214.858709824,0.0,20608751.12340821,0.0,7759.207523936776,7637.73568267081,7647.577684665408,9206.003539991007,174661491.1469451,0.0,28186614.07570998,0.0 + 10/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15794180.51369017,0.0,30527949.10111496,0.0,16445431.751512096,0.0,25697591.845446178,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,204521669.78088833,0.0,28186614.07570998,0.0 + 10/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15712074.134606958,0.0,28562356.107234125,0.0,15367268.032332443,0.0,24376252.35154505,0.0,7755.816504707458,7634.397750480122,7644.235451208397,9201.980225118585,200069098.379171,0.0,28186614.07570998,0.0 + 10/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22233010.38061396,0.0,33695218.94529789,0.0,17109858.58610262,0.0,27463497.894096964,0.0,18092.234754220408,17808.997444040026,17831.946154973255,21465.745912824295,371217713.16392019,0.0,28186614.07570998,0.0 + 10/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26850843.861526945,0.0,36835414.04562495,0.0,17521134.124942665,0.0,28860359.865912327,0.0,23244.586664804934,22880.688324294053,22910.172426583213,27578.81477736921,457879095.7929919,0.0,35233267.594637479,0.0 + 10/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39829428.78537845,0.0,48776084.765458058,0.0,25865491.03890775,0.0,39405746.01182438,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,424192881.8294418,0.0,14093307.03785499,0.0 + 10/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,30770370.21378289,0.0,39518427.80552618,0.0,15977411.436699612,0.0,27462136.199096346,0.0,18060.385899964193,17777.64718953859,17800.55550246904,21427.958462994808,383967915.0529849,0.0,63419881.67034747,0.0 + 10/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,16594013.046000988,0.0,25069776.250337908,0.0,2025324.2033001937,0.0,10225364.11025466,0.0,15490.18009352046,15247.678434466152,15267.326624427149,18378.50738443654,285695770.74255487,0.0,63419881.67034747,69761869.8373822 + 10/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,19638985.174515256,0.0,27936753.314160594,0.0,4683308.255781688,0.0,13583090.473374326,0.0,12900.275642831568,12698.319421098995,12714.682501763602,15305.684616424864,258870401.07346035,0.0,49326574.63249246,69761869.8373822 + 10/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23370912.347013974,0.0,31713953.993936995,0.0,7842510.1441976749,0.0,17779545.927698245,0.0,10320.220514265255,10158.655536879198,10171.74600141088,12244.547693139893,235129533.4973497,0.0,35233267.594637479,69761869.8373822 + 10/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,24136740.144019858,0.0,32370834.959169873,0.0,8635487.611519818,0.0,18800231.091283695,0.0,7745.738655905442,7624.477672281122,7634.302589976116,9190.02324221013,199843645.58333538,0.0,35233267.594637479,62010550.96656194 + 10/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26895497.905581997,0.0,34913969.30686642,0.0,11173771.179090117,0.0,21906518.686173656,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,172175245.60763876,0.0,35233267.594637479,46507913.22492146 + 10/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,36751317.30616358,0.0,45206682.83845335,0.0,19253249.501090528,0.0,32552032.24616217,0.0,2583.9882438566935,2543.5354258565864,2546.813030866066,3065.8034144407677,172427786.30594207,0.0,21139960.556782485,23253956.61246073 + 10/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1391576.9532688629,0.0,6508013.211224469,0.0,0.0,0.0,0.0,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,27244028.91936373,0.0,14093307.03785499,0.0 + 10/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17485454.37929855,0.0,24911070.785280199,0.0,0.0,0.0,7940515.662907552,0.0,1293.0062020316255,1272.763948728752,1274.4040349850043,1534.1025016294516,69684436.9020357,0.0,14093307.03785499,0.0 + 10/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21016956.315591627,0.0,26630346.95006697,0.0,7369640.056457166,0.0,15991828.103055805,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,90347737.85651805,0.0,14093307.03785499,0.0 + 10/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25552274.56582168,0.0,31645377.88909557,0.0,10804119.055727996,0.0,20969788.288264969,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915207,108299989.88901256,0.0,14093307.03785499,0.0 + 10/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28813742.982893107,0.0,35203071.384544137,0.0,13431093.821637143,0.0,24313003.17763748,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,121083763.80532216,0.0,14093307.03785499,0.0 + 10/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22963746.49624695,0.0,29650664.32899364,0.0,9151274.483679908,0.0,18578336.81806698,0.0,1291.165770819287,1270.9523298103748,1272.5900816107426,1531.9189002495903,99663879.62395147,0.0,14093307.03785499,15502637.741640486 + 10/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,36089325.77758231,0.0,45233112.608843039,0.0,22781857.158181784,0.0,34676504.2123129,0.0,1291.165770819287,1270.952329810375,1272.5900816107426,1531.9189002495903,158100657.253884,0.0,56373228.15141996,38756594.35410121 + 10/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,41778856.6067008,0.0,54435058.24339227,0.0,30595924.652448086,0.0,45084667.99311295,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,249154938.53987447,0.0,56373228.15141996,38756594.35410121 + 10/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23446251.458130689,0.0,43452732.547780368,0.0,25159414.362712645,0.0,37453631.011101808,0.0,7749.341399870748,7628.02401461756,7637.853502136622,9194.297760399775,245466289.41701449,0.0,28186614.07570998,0.0 + 10/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34924256.86854736,0.0,50777849.1748852,0.0,28566007.228161944,0.0,42566995.55817711,0.0,7748.775365836511,7627.466841951723,7637.295611496935,9193.626182625,272780899.2366482,0.0,28186614.07570998,0.0 + 10/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34082141.2399177,0.0,50401814.938503269,0.0,28860900.80876658,0.0,42713644.7945848,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,233298700.19612456,0.0,28186614.07570998,0.0 + 10/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33154813.93682836,0.0,49162532.82253723,0.0,28349936.277476666,0.0,41729075.42875752,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,229650182.29202084,0.0,28186614.07570998,0.0 + 10/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26756349.796667424,0.0,42395759.25386166,0.0,24990037.65234678,0.0,37237167.990076538,0.0,7745.09004676023,7623.839217233076,7633.6633122135749,9189.25369221827,247269961.25928296,0.0,28186614.07570998,0.0 + 10/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30353828.16153598,0.0,43862709.51925179,0.0,25136953.278277603,0.0,37962534.923525128,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,291753493.5735147,0.0,28186614.07570998,0.0 + 10/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39041728.28827623,0.0,49683139.31512139,0.0,27874439.100721279,0.0,42177947.30478491,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,351727821.51954689,0.0,28186614.07570998,0.0 + 10/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42820165.97024958,0.0,53225988.3738008,0.0,28248182.20727016,0.0,43537771.96253303,0.0,15462.143906091713,15220.081158781748,15239.69378683623,18345.243518259398,399193893.0457423,0.0,35233267.594637479,0.0 + 10/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52237325.72607201,0.0,62228644.210190538,0.0,34327432.04510988,0.0,51337559.429886687,0.0,18030.498417656025,17748.227601341463,17771.098004129723,21392.498106111503,469923321.0765185,0.0,14093307.03785499,0.0 + 10/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,43030733.51725665,0.0,53199756.48308334,0.0,24091511.515290977,0.0,39275393.66330091,0.0,10299.23642473815,10137.99995718822,10151.0638048972,12219.650871927923,313706018.99043729,0.0,63419881.67034747,0.0 + 10/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,30254362.234497046,0.0,40524839.08813825,0.0,10942132.396361296,0.0,23470798.7524984,0.0,7723.423837393386,7602.512196415697,7612.308809353069,9163.547561854564,220758585.1295552,0.0,63419881.67034747,69761869.8373822 + 10/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,33389018.679068299,0.0,43413921.13283784,0.0,13613697.564830877,0.0,26764523.638065638,0.0,5148.949224928924,5068.341464277133,5074.8725395687129,6109.031707903042,194225462.78684277,0.0,49326574.63249246,69761869.8373822 + 10/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37092731.102028798,0.0,47017814.60207165,0.0,16722372.883264259,0.0,30711816.82084071,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,208568612.00018934,0.0,35233267.594637479,69761869.8373822 + 10/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38946460.41683224,0.0,48810781.72321501,0.0,18277521.674096798,0.0,32696952.185824209,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,215786027.90572093,0.0,35233267.594637479,62010550.96656194 + 10/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43622871.39238703,0.0,53504231.99781393,0.0,22402185.03338322,0.0,37886398.12115533,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,234375055.46728603,0.0,35233267.594637479,46507913.22492146 + 10/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,52594360.10293575,0.0,62334197.19384314,0.0,30871273.824131796,0.0,48212366.50344469,0.0,2571.26156417546,2531.0079847199228,2534.2694468428487,3050.703694806214,232486271.31031538,0.0,21139960.556782485,23253956.61246073 + 10/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12766644.73215465,0.0,21285277.776570549,0.0,0.0,0.0,5317713.366415417,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,58620363.92110408,0.0,14093307.03785499,0.0 + 10/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36961649.842358078,0.0,45168453.38647997,0.0,16020222.69602846,0.0,31167116.81129174,0.0,1286.7220385646115,1266.5781650131235,1268.2102802556884,1526.646581557106,148570808.1715641,0.0,14093307.03785499,0.0 + 10/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38476572.235942069,0.0,46080507.27786932,0.0,20189560.416796615,0.0,33842048.38847293,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,157836745.32405589,0.0,14093307.03785499,0.0 + 10/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39893070.09953484,0.0,47301345.879667658,0.0,21843982.802914129,0.0,35466404.82398781,0.0,1285.8182690045815,1265.6885441341538,1267.3195130094146,1525.5742934731357,163744645.83674107,0.0,14093307.03785499,0.0 + 10/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43600939.24086504,0.0,51131943.31256032,0.0,25093493.468896554,0.0,39403216.13745462,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,178406990.40997515,0.0,14093307.03785499,0.0 + 10/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26025497.82568688,0.0,35456084.61448465,0.0,12547286.147522016,0.0,23511873.598990039,0.0,5133.683938970434,5053.315159218059,5059.826871581867,6090.920028825082,174356627.78162719,0.0,14093307.03785499,15502637.741640486 + 10/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21136114.884023806,0.0,36207901.575673799,0.0,17467820.704323338,0.0,27211246.099196227,0.0,20616.19187478895,20293.441545042337,20319.591715781644,24460.324691012527,410505462.6390687,0.0,56373228.15141996,38756594.35410121 + 10/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,11440873.374915492,231819.32716198494,34420300.673619758,0.0,15575636.498189824,0.0,27557824.006768049,0.0,18067.144190297884,17784.299677576353,17807.21656291664,21435.976916495933,359335329.00372567,231819.32716198494,56373228.15141996,38756594.35410121 + 10/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8609083.031643255,29400513.740156805,0.0,14862275.31801175,0.0,24124495.796417778,0.0,12912.66995454923,12710.51969755456,12726.898499520636,15320.389994157906,261601006.17940275,8609083.031643255,28186614.07570998,0.0 + 10/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11369333.5331942,32251935.43025291,0.0,17959101.868379766,0.0,28043744.465978348,0.0,10337.2232616991,10175.392103130107,10188.50413443567,12264.720803935379,232931806.85613198,11369333.5331942,28186614.07570998,0.0 + 10/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,19299226.963703455,31884725.153460735,0.0,18595216.171384645,0.0,26871097.685908617,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,154728794.0302356,19299226.963703455,28186614.07570998,0.0 + 10/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25318685.269498,24582003.972807934,0.0,15049061.01533445,0.0,19779782.925289599,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,136810048.454906,25318685.269498,28186614.07570998,0.0 + 10/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27281336.3257737,13454705.796365887,0.0,7513991.138585425,0.0,11338819.088508398,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,109722927.51648729,27281336.3257737,28186614.07570998,0.0 + 10/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22941354.016159629,8910397.22738178,0.0,1534764.8662296967,0.0,5945021.49723319,0.0,7760.439717490662,7638.948586004744,7648.792150949086,9207.465490606974,132510508.99302995,22941354.016159629,28186614.07570998,0.0 + 10/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2388507.1323124805,13676410.327070067,0.0,2285717.6913395149,0.0,8888047.248308609,0.0,12934.178662433676,12731.69168260463,12748.097766834422,15345.909255024946,218385733.78754983,2388507.1323124805,28186614.07570998,0.0 + 10/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,16063051.455902275,0.0,1502132.7361894805,0.0,9021863.89233695,0.0,12933.77181994282,12731.291209308865,12747.69677748794,15345.426551939678,220116518.97567416,0.0,35233267.594637479,0.0 + 10/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11690921.340084484,0.0,31910218.96554759,0.0,13315895.29823745,0.0,23172572.88770093,0.0,18108.128030596603,17824.64190820966,17847.61077863177,21484.602678560994,351043548.717167,0.0,14093307.03785499,0.0 + 10/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,8597063.225700768,0.0,21817228.53432815,0.0,2625916.0669470059,0.0,10245477.228205076,0.0,18106.73880912745,17823.27443526177,17846.24154355541,21482.954420317692,314218838.20492538,0.0,63419881.67034747,0.0 + 10/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,11014233.421438883,0.0,0.0,0.0,0.0,0.0,10345.041353971941,10183.087801709953,10196.20974970862,12273.996671982175,165808241.4999806,0.0,63419881.67034747,69761869.8373822 + 10/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,4491564.822115408,0.0,15444171.564744872,0.0,0.0,0.0,572280.0906936347,0.0,10345.041353971941,10183.087801709953,10196.20974970862,12273.996671982175,175302024.5560956,0.0,49326574.63249246,69761869.8373822 + 10/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,8312969.066034885,0.0,18171816.163662226,0.0,0.0,0.0,4676908.5280415019,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,108571166.086237,0.0,35233267.594637479,69761869.8373822 + 10/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10713148.356129256,0.0,19739281.199896229,0.0,0.0,0.0,6731703.89261979,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,114592239.99645102,0.0,35233267.594637479,62010550.96656194 + 10/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,16314734.978754759,0.0,24868212.91468334,0.0,2244418.508118612,0.0,12412665.16730206,0.0,2586.0124040632515,2545.527897457504,2548.8080699700087,3068.205003258903,94534823.71795759,0.0,35233267.594637479,46507913.22492146 + 10/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,24550426.663531517,0.0,32525649.204325119,0.0,11094965.73943046,0.0,21609834.72240226,0.0,2586.581068365668,2546.087659214182,2549.3685530368445,3068.87970174647,128484177.46619676,0.0,21139960.556782485,23253956.61246073 + 10/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1782243.4932732369,0.0,0.0,0.0,0.0,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,21132043.62864174,0.0,14093307.03785499,0.0 + 10/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6250722.738556688,0.0,15347579.066923915,0.0,0.0,0.0,1456108.6349677207,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,42406778.52257292,0.0,14093307.03785499,0.0 + 10/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12271668.427945562,0.0,18078519.35004398,0.0,0.0,0.0,8952476.314254333,0.0,1293.3384863662466,1273.0910310901268,1274.7315388253865,1534.4967443084066,58655032.17436847,0.0,14093307.03785499,0.0 + 10/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10566169.381343466,0.0,15458370.489766188,0.0,611741.0369323567,0.0,6707287.755376176,0.0,1293.254876902893,1273.0087305485197,1274.6491322311313,1534.3975448717072,52694685.68781348,0.0,14093307.03785499,0.0 + 10/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8550912.943469957,0.0,12840807.447177854,0.0,0.0,0.0,4793036.945486366,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,45533846.20711391,0.0,14093307.03785499,0.0 + 10/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1121027.4628646498,0.0,2129825.4910366118,0.0,0.0,0.0,161849.1624703951,0.0,5172.766922336719,5091.786291188822,5098.3475775328429,6137.290496699989,80813390.75230181,0.0,14093307.03785499,15502637.741640486 + 10/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,2509155.7405508055,1620407.6483721382,8646683.039321382,0.0,2001052.7391765866,0.0,5898349.709720572,0.0,20681.89908746576,20358.120099047024,20384.353614704763,24538.283790655056,328520804.95951077,1620407.6483721382,56373228.15141996,38756594.35410121 + 10/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,7902746.153547155,0.0,0.0,0.0,0.0,0.0,0.0,18093.928798760404,17810.664967996723,17833.615827704773,21467.755832005347,270741475.5352821,7902746.153547155,56373228.15141996,38756594.35410121 + 10/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5387120.431923481,1084981.3610670502,0.0,0.0,0.0,0.0,0.0,12899.919272181049,12697.968629497489,12714.331258131313,15305.261796251525,194107912.802888,5387120.431923481,28186614.07570998,0.0 + 10/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9233172.540855648,949096.68440737,0.0,0.0,0.0,1223276.644057888,0.0,10320.933482594228,10159.357343555976,10172.448712437195,12245.393602846543,156605652.63762746,9233172.540855648,28186614.07570998,0.0 + 10/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3325131.237028797,2512312.7482532525,0.0,0.0,0.0,2647234.7453464579,0.0,5158.942264496314,5078.1780609458969,5084.721811696284,6120.88806789198,82353376.23170942,3325131.237028797,28186614.07570998,0.0 + 10/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3267924.51689005,985015.1004490587,0.0,0.0,0.0,1297731.4916139239,0.0,5160.956640799301,5080.160901812078,5086.707207655306,6123.278048482002,79506716.66755826,3267924.51689005,28186614.07570998,0.0 + 10/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,10330727.8796912,0.0,3838594.9414390616,0.0,8828542.868998204,0.0,5170.949184180856,5089.997010062887,5096.555990735547,6135.133819765387,100371355.3072093,0.0,28186614.07570998,0.0 + 10/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12594239.640180424,0.0,22264038.33793175,0.0,10344311.192562849,0.0,17896298.96251318,0.0,7759.697881169731,7638.218363269808,7648.060987247623,9206.585330129823,179208113.35572935,0.0,28186614.07570998,0.0 + 10/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21607293.569979945,0.0,28851541.26554081,0.0,13853402.196980343,0.0,22855686.774419436,0.0,12932.244602686838,12729.787900923928,12746.191531936709,15343.61456696292,280674542.77595797,0.0,28186614.07570998,0.0 + 10/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23664749.401463324,0.0,30028683.41856095,0.0,13857275.636839373,0.0,22818663.577309718,0.0,12930.376879570149,12727.949417361053,12744.350679300114,15341.398584780343,283848044.05381539,0.0,35233267.594637479,0.0 + 10/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26496986.67862674,0.0,31978003.87639868,0.0,16190797.191702754,0.0,25242588.481140164,0.0,18102.527631398207,17819.12918430547,17842.09095102016,21477.95801869248,370778517.0553671,0.0,14093307.03785499,0.0 + 10/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,12862799.17348722,0.0,18211972.0394184,0.0,2555897.0525795689,0.0,8634182.00293342,0.0,18101.907574457302,17818.518834471648,17841.479814688282,21477.222344801125,313125713.1147247,0.0,63419881.67034747,0.0 + 10/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3336783.616276865,0.0,0.0,0.0,0.0,0.0,10341.433187319008,10179.536121579074,10192.653492875379,12269.715719980657,158076802.2945917,0.0,63419881.67034747,69761869.8373822 + 10/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,3997036.107255088,0.0,0.0,1259060.9470315264,0.0,0.0,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,158680599.76994214,1259060.9470315264,49326574.63249246,69761869.8373822 + 10/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,345949.79690050249,0.0,5781730.508335713,0.0,0.0,282338.3195584641,0.0,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,83473908.53887508,282338.3195584641,35233267.594637479,69761869.8373822 + 10/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2579326.226853474,0.0,7297488.202175755,0.0,0.0,0.0,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,87227351.16459884,0.0,35233267.594637479,62010550.96656194 + 10/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4819721.706458083,0.0,9262760.17924679,0.0,0.0,0.0,0.0,0.0,2583.7746941389575,2543.325219299519,2546.602553436395,3065.5500458523677,52743790.931522939,0.0,35233267.594637479,46507913.22492146 + 10/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,11308471.01608286,0.0,15445736.753031854,0.0,0.0,0.0,3887295.6973950958,0.0,2583.4269021737229,2542.982872082381,2546.2597650699246,3065.1374039616528,69297608.46234545,0.0,21139960.556782485,23253956.61246073 + 10/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.8873470694787,1271.6626096497597,1273.3012767181975,1532.7750229261838,19330654.52290903,0.0,14093307.03785499,0.0 + 10/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1355109.7086422812,0.0,0.0,0.0,0.0,0.0,1293.1193333426698,1272.875308948017,1274.5155387032783,1534.2367276115179,20704198.579622017,0.0,14093307.03785499,0.0 + 10/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5227118.668112209,0.0,11464302.299091354,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,36045273.840460468,0.0,14093307.03785499,0.0 + 10/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16218268.952323946,0.0,21091031.702393865,0.0,0.0,0.0,9352211.758155153,0.0,1292.3024824443149,1272.0712460028595,1273.7104396409469,1533.2675652017356,65998378.65271644,0.0,14093307.03785499,0.0 + 10/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23429400.216956729,0.0,29022277.09646719,0.0,8667929.24155277,0.0,18747216.26663844,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,99191121.22276125,0.0,14093307.03785499,0.0 + 10/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20056803.927892586,0.0,26431780.282236339,0.0,7014039.854534017,0.0,16230008.020961198,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,146986455.91204519,0.0,14093307.03785499,15502637.741640486 + 10/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,20818300.072840226,0.0,30775322.27130188,0.0,13820905.224171073,0.0,21791515.846702845,0.0,20684.93698148548,20361.11043426914,20387.347803279037,24541.88813594591,396717063.49294248,0.0,56373228.15141996,38756594.35410121 + 10/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12943801.466612069,0.0,34112023.60133496,0.0,17290877.605481946,0.0,26851742.04472404,0.0,18094.199765366968,17810.931692570517,17833.8828959804,21468.07732354061,361943974.75700357,0.0,56373228.15141996,38756594.35410121 + 10/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16129861.208378315,0.0,37036181.84076622,0.0,21716670.649818988,0.0,32810126.156393105,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,301061502.25379148,0.0,28186614.07570998,0.0 + 10/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20423282.999816996,0.0,37215191.52771184,0.0,22609256.42454662,0.0,33735343.66502728,0.0,10338.990510863428,10177.131685679089,10190.245958614321,12266.817577608806,268686543.25505909,0.0,28186614.07570998,0.0 + 10/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18878987.167821878,0.0,36069204.27685963,0.0,22164343.36697847,0.0,32829055.251541947,0.0,5169.7713615334209,5088.837626448721,5095.395113137258,6133.73637815446,187297455.7885878,0.0,28186614.07570998,0.0 + 10/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17842111.344174554,0.0,34906528.20612773,0.0,21608104.93804678,0.0,31467664.72223167,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,183167466.8981192,0.0,28186614.07570998,0.0 + 10/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18064108.322664989,0.0,34085739.663306917,0.0,21241853.17484333,0.0,31327132.41087327,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,182004322.10161508,0.0,28186614.07570998,0.0 + 10/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21921993.571386629,0.0,36542557.13199899,0.0,21766656.32886678,0.0,32679411.586200917,0.0,7746.994624915723,7625.713978862246,7635.540489664457,9191.513401497543,228829763.60023723,0.0,28186614.07570998,0.0 + 10/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27782963.3504717,0.0,40724496.883834477,0.0,22659111.460529198,0.0,34625845.294220227,0.0,12914.625609727518,12712.444736586205,12728.826019161559,15322.710304374998,319035401.0005166,0.0,28186614.07570998,0.0 + 10/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,32360475.756249314,0.0,44234915.258568819,0.0,23095429.109943279,0.0,36165276.005406368,0.0,12899.011716387015,12697.075281658717,12713.436759122667,15304.185015945439,328865447.7133776,0.0,35233267.594637479,0.0 + 10/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46182627.81918236,0.0,56693933.65983042,0.0,31905652.05582928,0.0,47420841.671382118,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,452125137.16009429,0.0,14093307.03785499,0.0 + 10/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,35468513.28685756,0.0,45995713.78229993,0.0,19946077.06341193,0.0,33303367.524640494,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,404571841.3855971,0.0,63419881.67034747,0.0 + 10/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,25493104.040523318,0.0,36222547.276516977,0.0,8693899.035780844,0.0,20083055.81246792,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,244433518.73487709,0.0,63419881.67034747,69761869.8373822 + 10/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,31605051.13246738,0.0,42355098.749185059,0.0,13266485.657470627,0.0,26126839.661084035,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,267180832.5460598,0.0,49326574.63249246,69761869.8373822 + 10/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36310606.10613263,0.0,46984065.34310854,0.0,16895307.843176679,0.0,30872767.033302428,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,207988048.4632281,0.0,35233267.594637479,69761869.8373822 + 10/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39987789.257688898,0.0,50682135.55993371,0.0,19696675.198083726,0.0,34589769.45122893,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,221809926.84284318,0.0,35233267.594637479,62010550.96656194 + 10/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45862549.77165334,0.0,56533900.64545431,0.0,24703715.865834129,0.0,40909507.836034949,0.0,2564.204613739438,2524.061512159449,2527.314023043469,3042.3308924942327,206378153.86814849,0.0,35233267.594637479,46507913.22492146 + 10/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,54563596.10182795,0.0,64916097.62227771,0.0,32948519.431468063,0.0,50862844.63844104,0.0,2565.543206263963,2525.3791487682885,2528.633357561567,3043.9190814273636,241679567.052491,0.0,21139960.556782485,23253956.61246073 + 10/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20117500.762028219,0.0,28962013.811926426,0.0,3068146.1836019887,0.0,12483580.500178619,0.0,1275.75854085953,1255.7863029098535,1257.4045117365959,1513.6388100324628,83720558.65367364,0.0,14093307.03785499,0.0 + 10/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49003078.894178349,0.0,58896838.724260199,0.0,26981424.680802835,0.0,44170454.900241959,0.0,1274.3275985246117,1254.3777622441303,1255.9941560224584,1511.9410515745092,198119703.2455999,0.0,14093307.03785499,0.0 + 10/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52086263.18271615,0.0,61496907.37591629,0.0,30605058.36163126,0.0,47981006.11923609,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,211228352.9745632,0.0,14093307.03785499,0.0 + 10/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55051390.28598443,0.0,64450173.27981002,0.0,33321612.630884928,0.0,51156573.04680252,0.0,1271.3061930939646,1251.4036574791426,1253.0162188199204,1508.356269365182,223002445.66301144,0.0,14093307.03785499,0.0 + 10/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56397564.359454978,0.0,65704747.910413239,0.0,34633950.50736479,0.0,52569134.80099688,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,228346557.8781337,0.0,14093307.03785499,0.0 + 10/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27984576.43890607,0.0,42884899.70691307,0.0,16765981.510747996,0.0,29583483.058169426,0.0,5114.86941092339,5034.795176117439,5041.283023592727,6068.597309491954,193753302.42718844,0.0,14093307.03785499,15502637.741640486 + 10/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14118961.973852888,0.0,35219541.94526587,0.0,13975768.49399813,0.0,22903501.015788888,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,393532076.74420037,0.0,56373228.15141996,38756594.35410121 + 10/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,5771510.616818664,5468455.592182042,38013915.908844728,0.0,18120523.40494919,0.0,28820214.38886356,0.0,18039.167890440334,17756.761351912035,17779.64275130893,21402.784104635954,360648246.27334627,5468455.592182042,56373228.15141996,38756594.35410121 + 10/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21032091.511687228,34601396.21915073,0.0,18519010.234506057,0.0,29297486.02235034,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,275368459.9866502,21032091.511687228,28186614.07570998,0.0 + 10/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31452094.357051437,35656656.0768474,0.0,21021336.713911795,0.0,32093152.79270345,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,243208613.27438683,31452094.357051437,28186614.07570998,0.0 + 10/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38058993.69518676,36852226.09963156,0.0,22571687.43028601,0.0,32672463.117696585,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,169315110.4930763,38058993.69518676,28186614.07570998,0.0 + 10/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46000316.68965034,29117967.575228163,0.0,19131888.033249115,0.0,23876409.571259619,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,149380089.00615794,46000316.68965034,28186614.07570998,0.0 + 10/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,53112793.81895671,15635057.955373764,0.0,9741169.679424985,0.0,13313652.39300954,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,116028392.57356875,53112793.81895671,28186614.07570998,0.0 + 10/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49942545.35033165,7045151.870681815,0.0,1096374.9388611089,0.0,4229869.49180036,0.0,7753.373080961713,7631.992578988937,7641.827180408253,9199.081196115474,128385982.83265102,49942545.35033165,28186614.07570998,0.0 + 10/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35785897.17049494,4996295.001059921,0.0,0.0,0.0,472174.2814128286,0.0,12922.28846826952,12719.987631648228,12736.378634013756,15331.801993525789,198826113.50131903,35785897.17049494,28186614.07570998,0.0 + 10/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,10536460.680343362,14738767.397201766,0.0,0.0,0.0,7978670.145408449,0.0,12901.516745521174,12699.54109409447,12715.905749009424,15307.15713739028,215764272.15626548,10536460.680343362,35233267.594637479,0.0 + 10/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8174729.640320583,0.0,43877631.279912289,0.0,18652095.094171809,0.0,34303953.544875647,0.0,18004.049195088508,17722.192446287336,17745.029300120957,21361.117113164037,374405006.55605939,0.0,14093307.03785499,0.0 + 10/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13960172.134120048,0.0,37068308.01083897,0.0,12302139.117637862,0.0,23882201.90363878,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,356410696.5214779,0.0,63419881.67034747,0.0 + 10/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,6459917.886346797,0.0,27538232.818511614,0.0,2075577.0561448066,0.0,11555218.076844871,0.0,10274.046014931173,10113.203907946036,10126.235803414687,12189.763412269001,201360642.73666734,0.0,63419881.67034747,69761869.8373822 + 10/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,12345431.455039617,0.0,32435124.162315638,0.0,5715421.024796635,0.0,16413923.230379932,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,220737257.21838454,0.0,49326574.63249246,69761869.8373822 + 10/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21573085.46856624,0.0,41018171.945660259,0.0,11718083.40337738,0.0,24881361.403835063,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,175829574.97596545,0.0,35233267.594637479,69761869.8373822 + 10/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25177396.273654388,0.0,43282985.434985969,0.0,13554211.257292998,0.0,27291701.118372758,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,186231596.22181393,0.0,35233267.594637479,62010550.96656194 + 10/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31466980.554494509,0.0,48451135.34443572,0.0,18103849.17727046,0.0,32960393.789094006,0.0,2564.655229660886,2524.5050736045848,2527.7581560628,3042.8655310839637,169357581.23077876,0.0,35233267.594637479,46507913.22492146 + 10/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,40351844.06055063,0.0,56230139.65055936,0.0,25719032.50929513,0.0,42123637.91473837,0.0,2572.3730302024148,2532.1020505388817,2535.364922477284,3052.0224068199288,202915358.8112821,0.0,21139960.556782485,23253956.61246073 + 10/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5341203.707817086,0.0,17104405.70574589,0.0,0.0,0.0,3357406.036267482,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,45016404.79380743,0.0,14093307.03785499,0.0 + 10/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31464103.23739218,0.0,45483724.00613354,0.0,11464247.142930607,0.0,29889012.59749908,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,137488698.16669745,0.0,14093307.03785499,0.0 + 10/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35277867.43136865,0.0,47298619.6259409,0.0,20090053.92265056,0.0,34558546.67966181,0.0,1283.2067404418513,1263.1178995382534,1264.7455558755719,1522.4758145216302,156425853.29698024,0.0,14093307.03785499,0.0 + 10/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37674175.92127697,0.0,49022216.51606831,0.0,22301866.35887766,0.0,36683604.91211136,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,164869474.8910763,0.0,14093307.03785499,0.0 + 10/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40948609.70421718,0.0,51909704.635150779,0.0,24849860.3760916,0.0,39681279.37635542,0.0,1280.7042032962764,1260.65454007854,1262.279022125765,1519.506649726121,176552773.98663116,0.0,14093307.03785499,0.0 + 10/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17878649.057986443,0.0,33484099.101172359,0.0,10129081.24473095,0.0,20913740.477778507,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,159259127.25757618,0.0,14093307.03785499,15502637.741640486 + 10/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13786890.975083862,0.0,26545099.45283692,0.0,13757452.87085497,0.0,16802203.497126495,0.0,20611.310367154736,20288.63645832078,20314.7804372154,24454.53296854313,379300983.6283448,0.0,56373228.15141996,38756594.35410121 + 10/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,835499.7471658975,12507296.979118236,26956968.774529816,0.0,8881582.70519816,0.0,17485788.000204125,0.0,18071.876775773868,17788.95817354384,17811.88106183167,21441.59194850929,324571347.8818692,12507296.979118236,56373228.15141996,38756594.35410121 + 10/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26780949.06721219,26363016.17106248,0.0,12274693.594317217,0.0,21549634.02997671,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,253556006.19379125,26780949.06721219,28186614.07570998,0.0 + 10/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40702480.128424409,23738137.515204178,0.0,12642254.088546228,0.0,20766935.391016693,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,211976842.9862693,40702480.128424409,28186614.07570998,0.0 + 10/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50378879.65814301,19823858.241603003,0.0,10696124.848888256,0.0,16725400.976600534,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,124641739.55101073,50378879.65814301,28186614.07570998,0.0 + 10/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58519544.81763574,11148142.30024975,0.0,6793310.2639901819,0.0,7390023.935204054,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,102720294.45553145,58519544.81763574,28186614.07570998,0.0 + 10/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,63034803.57120344,1183365.181532383,0.0,544641.329308928,0.0,533661.3408333272,0.0,5169.963443835032,5089.026701666068,5095.584431997321,6133.96427647309,79620407.72597209,63034803.57120344,28186614.07570998,0.0 + 10/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,57942580.947697449,0.0,0.0,0.0,0.0,0.0,0.0,7757.079993855047,7635.6414594694019,7645.480762843652,9203.479306761852,116070053.48254782,57942580.947697449,28186614.07570998,0.0 + 10/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39890226.82958751,0.0,0.0,0.0,1887246.6293449864,0.0,0.0,12930.79666480328,12728.362630778049,12744.764425184772,15341.896643935266,193484953.31292496,41777473.458932507,28186614.07570998,0.0 + 10/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,12764007.856729866,1434094.4737231178,0.0,0.0,1368652.35778593,0.0,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,194972623.2062921,14132660.214515794,35233267.594637479,0.0 + 10/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4017411.8907126134,0.0,30302395.10957499,0.0,4479247.75908904,0.0,17296624.09545196,0.0,18092.234754220408,17808.997444040026,17831.94615497325,21465.74591282429,326811806.2126373,0.0,14093307.03785499,0.0 + 10/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,6950833.6106344279,0.0,22731276.524918017,0.0,3544429.674582028,0.0,11144034.809508892,0.0,18091.20385557733,17807.982684307517,17830.930087619257,21464.522790936102,315071276.5260281,0.0,63419881.67034747,0.0 + 10/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,10000829.765334445,0.0,0.0,0.0,0.0,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,164756339.80429767,0.0,63419881.67034747,69761869.8373822 + 10/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,15141874.182189763,0.0,0.0,0.0,0.0,0.0,10335.952975426773,10174.141703426345,10187.252123464265,12263.21365776307,169799891.8384794,0.0,49326574.63249246,69761869.8373822 + 10/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10887655.545141044,0.0,24452922.21475769,0.0,0.0,0.0,10680997.000070494,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,123201801.76422645,0.0,35233267.594637479,69761869.8373822 + 10/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17351080.64785313,0.0,30710097.4470807,0.0,5797345.571863946,0.0,16507299.2420121,0.0,5156.379821330676,5075.65573330604,5082.196233779815,6117.84782689042,147521309.52391488,0.0,35233267.594637479,62010550.96656194 + 10/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22024256.727372189,0.0,34471442.683309469,0.0,9500507.105406514,0.0,20874154.961414946,0.0,2580.0551285663138,2539.6638842197996,2542.93650035272,3061.1369232849735,125476014.2486288,0.0,35233267.594637479,46507913.22492146 + 10/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,29846934.560598349,0.0,41396330.03440002,0.0,16752736.32998376,0.0,29410488.751625118,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,156036705.19871743,0.0,21139960.556782485,23253956.61246073 + 10/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,4180466.046925514,0.0,0.0,0.0,0.0,0.0,1290.737949351505,1270.5312059674805,1272.1684151067937,1531.411306409016,23493922.003530779,0.0,14093307.03785499,0.0 + 10/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15888693.964636263,0.0,27879556.72812281,0.0,3032187.96969825,0.0,11247175.450441879,0.0,1290.2735012547228,1270.0740288922962,1271.710648912285,1530.8602564712579,77354120.48080923,0.0,14093307.03785499,0.0 + 10/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21302561.253113599,0.0,29985042.90510754,0.0,9118410.928965766,0.0,19305179.19654891,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,99021243.88732386,0.0,14093307.03785499,0.0 + 10/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22275192.381582098,0.0,30343693.63024661,0.0,10646707.87199616,0.0,20337855.283415304,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.277614743004,102915219.06596375,0.0,14093307.03785499,0.0 + 10/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23852246.41790986,0.0,31543490.903849357,0.0,12214188.320501354,0.0,21876079.0376723,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,108790688.14129839,0.0,14093307.03785499,0.0 + 10/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7371868.991648909,0.0,17518841.78239464,0.0,2712504.0987896157,0.0,8503005.752877258,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,55416270.22929846,0.0,14093307.03785499,15502637.741640486 + 10/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13291858.413538725,0.0,16687882.998309436,0.0,12811951.375564082,0.0,16456397.857491166,0.0,5169.495255431713,5088.5658428395449,5095.122979307161,6133.408788804403,136599824.96388156,0.0,56373228.15141996,38756594.35410121 + 10/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,3774390.3305676567,0.0,22727274.654756976,0.0,9039232.871578867,0.0,18114905.061797464,0.0,12930.911584806105,12728.47575168679,12744.877691861351,15342.032992131853,247142475.7924509,0.0,56373228.15141996,38756594.35410121 + 10/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1270945.5418310534,10936299.059194908,0.0,5704331.275506507,0.0,11325200.93239165,0.0,12934.397030831778,12731.906632404723,12748.312993619273,15346.16834079366,221504657.25863103,1270945.5418310534,28186614.07570998,0.0 + 10/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15703269.457505066,3921348.9515160156,0.0,2732404.2893015367,0.0,6254812.89224807,0.0,12929.933981755217,12727.513453194037,12743.914153348771,15340.873103429376,206380611.02328427,15703269.457505066,28186614.07570998,0.0 + 10/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22527048.579661345,1312272.143809244,0.0,1299716.1520955852,0.0,3834091.407544663,0.0,7757.680785364903,7636.232845476094,7646.072910911575,9204.192122954677,122525122.89639558,22527048.579661345,28186614.07570998,0.0 + 10/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22742162.160741286,0.0,0.0,71022.70896934206,0.0,237511.07695759845,0.0,7755.71215779966,7634.2950371426309,7644.132605514287,9201.856421495648,116358120.18495494,22742162.160741286,28186614.07570998,0.0 + 10/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24784879.437759494,0.0,0.0,0.0,0.0,0.0,0.0,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,115976224.28089114,24784879.437759494,28186614.07570998,0.0 + 10/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34265330.30632145,0.0,0.0,0.0,0.0,0.0,0.0,7754.540913754459,7633.142129141454,7642.978211873474,9200.46678514515,116032060.94369234,34265330.30632145,28186614.07570998,0.0 + 10/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6513475.48827367,0.0,0.0,0.0,0.0,0.0,0.0,18100.570411840596,17817.202605385155,17840.16188950626,21475.635852399035,270840854.7328718,6513475.48827367,28186614.07570998,0.0 + 10/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,9779400.718986888,0.0,0.0,0.0,2778068.7465691955,0.0,23278.04028483631,22913.61822166307,22943.144757486076,27618.506220533254,360869383.60982349,0.0,35233267.594637479,0.0 + 10/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7528540.890329276,0.0,21616540.55717272,0.0,5029987.020757211,0.0,14734665.809312942,0.0,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,319860905.5592204,0.0,14093307.03785499,0.0 + 10/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,3309241.5816595626,0.0,13426560.57376285,0.0,0.0,0.0,4265013.36353185,0.0,18108.155843164488,17824.669285366614,17847.63819106698,21484.63567711112,291955171.90710738,0.0,63419881.67034747,0.0 + 10/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,347257.39592306796,0.0,0.0,1096324.1725508189,0.0,0.0,15520.240889192333,15277.268622773947,15296.954942712786,18414.1733710101,232578353.56840409,1096324.1725508189,63419881.67034747,69761869.8373822 + 10/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,1761823.5971481945,0.0,0.0,3980011.1855814035,0.0,0.0,12933.087698752137,12730.617798163044,12747.022498583125,15344.614868261442,195281057.90668328,3980011.1855814035,49326574.63249246,69761869.8373822 + 10/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,6263826.8638259,0.0,0.0,576187.9063578304,0.0,0.0,10347.395988142816,10185.405573643628,10198.530508328,12276.790355544006,161093067.59619633,576187.9063578304,35233267.594637479,69761869.8373822 + 10/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,9361625.61605496,0.0,0.0,0.0,0.0,0.0,7760.63624747749,7639.142039277966,7648.985853506596,9207.698665934333,125484891.71836195,0.0,35233267.594637479,62010550.96656194 + 10/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,5991532.135313711,0.0,13858729.764443633,0.0,0.0,0.0,519900.53368558877,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,97785573.92647052,0.0,35233267.594637479,46507913.22492146 + 10/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,14147890.727189232,0.0,21493469.55130311,0.0,671067.3337233052,0.0,11545450.599490103,0.0,2586.8298196111215,2546.3325162124835,2549.61372555838,3069.1748356037817,86564901.44085449,0.0,21139960.556782485,23253956.61246073 + 10/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,19353655.091546306,0.0,14093307.03785499,0.0 + 10/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1364895.6716418123,0.0,0.0,0.0,0.0,0.0,1293.3534074326945,1273.1057185644959,1274.7462452260652,1534.5144475841749,20717487.01934856,0.0,14093307.03785499,0.0 + 10/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,578658.4573742669,0.0,7553579.447392547,0.0,0.0,0.0,0.0,0.0,1293.3322456962117,1273.0848881189455,1274.7253879383598,1534.4893399916312,27484512.607049347,0.0,14093307.03785499,0.0 + 10/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3129277.206589206,0.0,7749492.9277733699,0.0,0.0,0.0,0.0,0.0,1293.3087698752136,1273.0617798163046,1274.7022498583124,1534.4614868261443,30230693.565316086,0.0,14093307.03785499,0.0 + 10/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6519801.4028073609,0.0,11341260.369683259,0.0,0.0,0.0,2558437.5350131567,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,39772620.05652373,0.0,14093307.03785499,0.0 + 10/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5809053.397442496,0.0,10559920.037524272,0.0,0.0,0.0,2271865.5658816394,0.0,1293.4393745795815,1273.1903398796615,1274.8309755844326,1534.6164443223887,37994716.68456624,0.0,14093307.03785499,15502637.741640486 + 10/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,16903149.512825993,0.0,21302203.779908446,0.0,8496405.587387668,0.0,16356584.273053939,0.0,1293.424498517852,1273.1756967054535,1274.816313541,1534.5987944430008,82411998.24472234,0.0,56373228.15141996,38756594.35410121 + 10/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,28223620.179899504,0.0,34538701.90370544,0.0,15984820.249360083,0.0,29787568.657153448,0.0,5173.555151448472,5092.562180426787,5099.124466583282,6138.225700452527,185947193.9861983,0.0,56373228.15141996,38756594.35410121 + 10/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,20428200.43426706,0.0,26499855.631268335,0.0,14683105.315505622,0.0,23260523.196692759,0.0,7759.852619251282,7638.370678897825,7648.213499149874,9206.768920956867,200983225.16345484,0.0,28186614.07570998,0.0 + 10/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17572726.297503786,0.0,23743191.531644606,0.0,13287303.777239066,0.0,21100202.294401479,0.0,7759.3467616121029,7637.872740554356,7647.714919162026,9206.168740177754,191807395.2822114,0.0,28186614.07570998,0.0 + 10/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14967390.922134174,0.0,20495998.670472064,0.0,11583198.849820655,0.0,18390632.60226258,0.0,5172.15075182806,5091.179766944422,5097.740271720046,6136.559433912137,142828689.85254628,0.0,28186614.07570998,0.0 + 10/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8283376.309665691,0.0,13551105.175233216,0.0,8224369.001393052,0.0,13123567.961674942,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,120548809.38065222,0.0,28186614.07570998,0.0 + 10/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5515850.180082148,0.0,10170928.056564825,0.0,5594694.600460704,0.0,9657020.143524548,0.0,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,146914717.26152338,0.0,28186614.07570998,0.0 + 10/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6295144.253733905,0.0,10538181.930439627,0.0,4897686.575553403,0.0,8982339.077606924,0.0,10335.09877655583,10173.300877198077,10186.41021374558,12262.20018340947,185358588.0206061,0.0,28186614.07570998,0.0 + 10/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8989785.95264012,0.0,13160720.956205378,0.0,5558857.948317772,0.0,10209181.096926094,0.0,12920.52042192369,12718.24726439777,12734.63602412246,15329.704274026939,231249734.6981845,0.0,28186614.07570998,0.0 + 10/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,11006793.112483718,0.0,15167393.551408638,0.0,5247575.687232465,0.0,10282325.845753447,0.0,15502.648164833743,15259.95131579711,15279.61532061837,18393.30027511421,273671942.4717866,0.0,35233267.594637479,0.0 + 10/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14896499.182508497,0.0,19035753.72291799,0.0,7801664.11280195,0.0,13625409.495287279,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,325988489.8342421,0.0,14093307.03785499,0.0 + 10/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,4665971.8444441859,0.0,8997554.522727143,0.0,0.0,0.0,1029078.7502454886,0.0,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,169410084.86601169,0.0,63419881.67034747,0.0 + 10/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,2716776.9617770768,0.0,0.0,7753.2451808065729,7631.866681134585,7641.701120321666,9198.92944746365,116012672.7470153,2716776.9617770768,63419881.67034747,69761869.8373822 + 10/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,942842.1827686576,0.0,0.0,5101833.970310516,0.0,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,78280039.75411631,5101833.970310516,49326574.63249246,69761869.8373822 + 10/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3957196.6157512355,0.0,0.0,2495985.064652356,0.0,0.0,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,81298978.44709477,2495985.064652356,35233267.594637479,69761869.8373822 + 10/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,4876577.022435775,0.0,0.0,1114846.0557285883,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,82227113.75800538,1114846.0557285883,35233267.594637479,62010550.96656194 + 10/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3549295.50642634,0.0,8377332.533983993,0.0,0.0,0.0,0.0,0.0,5169.693942502973,5088.761419427637,5095.318807915649,6133.644523430099,89281335.33620522,0.0,35233267.594637479,46507913.22492146 + 10/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,11249553.452970982,0.0,15461332.608994756,0.0,0.0,0.0,2062964.0538971727,0.0,2584.563639067845,2544.101813148368,2547.3801480056829,3066.486098894614,67446964.23268235,0.0,21139960.556782485,23253956.61246073 + 10/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,19335445.457835884,0.0,14093307.03785499,0.0 + 10/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2818195339226,1272.050906574184,1273.6900740028414,1533.243049447307,19336557.058409718,0.0,14093307.03785499,0.0 + 10/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1292.2818195339226,1272.050906574184,1273.6900740028414,1533.243049447307,19336557.058409718,0.0,14093307.03785499,0.0 + 10/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,884305.6615861538,0.0,0.0,0.0,0.0,0.0,1292.2075301344287,1271.9777801890978,1273.6168533869443,1533.154907910608,20219751.119422039,0.0,14093307.03785499,0.0 + 10/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1883149.0519442685,0.0,0.0,0.0,0.0,0.0,1292.4234856257434,1272.1903548569092,1273.8297019789123,1533.4111308575248,21221825.87589299,0.0,14093307.03785499,0.0 + 10/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5169.12727813569,5088.203626296736,5094.760296011365,6132.972197789228,77346228.23363887,0.0,14093307.03785499,15502637.741640486 + 10/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9142540.076713315,0.0,11815775.53360483,0.0,0.0,0.0,4295972.355091944,0.0,20653.075932074356,20329.748175530225,20355.945131068653,24504.086217030635,334288567.60594406,0.0,56373228.15141996,38756594.35410121 + 10/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,9056970.122381142,0.0,13601105.926393576,0.0,1246496.4565827307,0.0,5808424.00591006,0.0,18065.030909374054,17782.219480459615,17805.1336852536,21433.469589348697,300022069.703237,0.0,56373228.15141996,38756594.35410121 + 10/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13510438.430161404,0.0,16569884.682281759,0.0,5412598.845156705,0.0,12937513.504526608,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,241508344.8849618,0.0,28186614.07570998,0.0 + 10/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12156100.691547275,0.0,15120144.214487823,0.0,6863797.3052851,0.0,12072718.133457743,0.0,10319.935417744839,10158.374903597993,10171.46500650505,12244.20943700122,200631105.4982347,0.0,28186614.07570998,0.0 + 10/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5357698.523085454,0.0,8176719.687169049,0.0,3828769.8437899069,0.0,7244839.639586259,0.0,5155.647257242486,5074.9346376453099,5081.474208913725,6116.978667563472,101752552.87054464,0.0,28186614.07570998,0.0 + 10/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,272925.7428835465,0.0,2585106.04189267,0.0,1131746.3820128153,0.0,2897688.3467375568,0.0,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,83968285.92510602,0.0,28186614.07570998,0.0 + 10/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1238122.3033072339,0.0,47512.12541310523,0.0,842780.5808916978,0.0,5147.387576862043,5066.804264102064,5073.333358554319,6107.178872083459,79149349.66737882,0.0,28186614.07570998,0.0 + 10/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,1849970.1488557244,0.0,0.0,0.0,932779.0183375185,0.0,7723.13659377023,7602.229449645048,7612.025698234345,9163.206758260454,118344903.76686952,0.0,28186614.07570998,0.0 + 10/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,276232.13762695106,0.0,6473187.983782973,0.0,926336.8114987534,0.0,4012079.015089499,0.0,12898.648870783803,12696.718116471113,12713.079133691264,15303.754513487898,204691758.2319609,0.0,28186614.07570998,0.0 + 10/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9215739.221830098,0.0,13892144.089903128,0.0,3473031.1031367576,0.0,8583666.713337085,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,228242490.55104245,0.0,35233267.594637479,0.0 + 10/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18378617.701565878,0.0,22788247.282048726,0.0,9867898.527863907,0.0,16661995.109006746,0.0,18082.722767830943,17799.634369571948,17822.571015228055,21454.460304068038,338270557.06460157,0.0,14093307.03785499,0.0 + 10/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,5382918.185715933,0.0,9506931.96125435,0.0,0.0,0.0,1002868.3111827325,0.0,18083.98831521606,17800.880104576663,17823.81835548947,21455.961827731564,286485453.4290025,0.0,63419881.67034747,0.0 + 10/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,0.0,0.0,0.0,2484415.058207997,0.0,0.0,10339.926887670064,10178.053403332136,10191.168863994642,12267.92855294618,154717479.74859489,2484415.058207997,63419881.67034747,69761869.8373822 + 10/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,3686002.287879609,0.0,0.0,1614058.4945261155,0.0,0.0,10346.263841559641,10184.291151026413,10197.414649663498,12275.447106839762,158498302.58460114,1614058.4945261155,49326574.63249246,69761869.8373822 + 10/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,5076512.652719319,0.0,11202978.272062347,0.0,0.0,0.0,0.0,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,93694546.64225501,0.0,35233267.594637479,69761869.8373822 + 10/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9499086.206174184,0.0,14702228.981899096,0.0,0.0,0.0,335103.0159470449,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,101951770.71200495,0.0,35233267.594637479,62010550.96656194 + 10/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15601529.751291587,0.0,20978709.253208285,0.0,0.0,0.0,8961212.085197898,0.0,2586.581068365668,2546.087659214182,2549.3685530368445,3068.87970174647,84244752.22620517,0.0,35233267.594637479,46507913.22492146 + 10/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,25416537.3189939,0.0,30840430.5315172,0.0,9508132.860742346,0.0,20064895.96152336,0.0,2586.5261748882428,2546.0336251043866,2549.3144492985827,3068.8145727309176,124532476.43205647,0.0,21139960.556782485,23253956.61246073 + 10/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2008256.5516955073,0.0,0.0,0.0,0.0,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,21354965.148059545,0.0,14093307.03785499,0.0 + 10/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12596815.389312884,0.0,19444632.494727725,0.0,0.0,0.0,4383780.628210147,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,55758685.90666357,0.0,14093307.03785499,0.0 + 10/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20201383.046542456,0.0,24967098.677542874,0.0,5469882.874081941,0.0,14899635.336760907,0.0,1291.911276782449,1271.6861647386093,1273.3248621601834,1532.80341461717,84869012.52080246,0.0,14093307.03785499,0.0 + 10/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23331884.262065926,0.0,28154981.102841993,0.0,9300889.904964963,0.0,18413606.77089036,0.0,1291.0622528868574,1270.8504324704884,1272.4880529657335,1531.7960801742848,98519670.58735377,0.0,14093307.03785499,0.0 + 10/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26275016.799047445,0.0,31232643.266106897,0.0,11984789.565352943,0.0,21546598.393952066,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,110349097.62804739,0.0,14093307.03785499,0.0 + 10/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11090136.16662295,0.0,19550762.522532986,0.0,3219583.8682901419,0.0,9555279.82897482,0.0,5164.249011547429,5083.4017298819539,5089.952211862934,6127.184320697139,120688996.57278294,0.0,14093307.03785499,15502637.741640486 + 10/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13447683.355999118,0.0,20070424.191120194,0.0,12781393.58533727,0.0,16119253.284869053,0.0,20670.580428519184,20346.978635817748,20373.197794562933,24524.85463387472,371714955.7913141,0.0,56373228.15141996,38756594.35410121 + 10/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,18584301.510078115,0.0,38135561.76113867,0.0,18023471.494405129,0.0,30473789.90655261,0.0,18096.905177650733,17813.594751120287,17836.549386152925,21471.287191943356,376003136.09689679,0.0,56373228.15141996,38756594.35410121 + 10/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19949891.810692043,0.0,33635849.564321469,0.0,20190160.357744926,0.0,30140146.584232447,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,297408558.4151679,0.0,28186614.07570998,0.0 + 10/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16064806.270464518,0.0,29957630.445506578,0.0,18470697.87792227,0.0,27662036.945720748,0.0,10346.324273462673,10184.350636856729,10197.474212147377,12275.51880698588,246968376.08564369,0.0,28186614.07570998,0.0 + 10/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12624666.852963433,0.0,28492214.929517729,0.0,17716657.76246163,0.0,26319680.95769088,0.0,5173.262668949045,5092.2742767954509,5098.836191958731,6137.8786811317,162561327.0504394,0.0,28186614.07570998,0.0 + 10/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8656019.114413128,0.0,28289902.83130982,0.0,17217679.839656306,0.0,24797097.297902097,0.0,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,156371398.68526919,0.0,28186614.07570998,0.0 + 10/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8285365.084869694,0.0,24820035.215400019,0.0,14192989.844902199,0.0,21411220.478306299,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,146123657.08177573,0.0,28186614.07570998,0.0 + 10/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,13855412.270493044,0.0,6866742.339622461,0.0,11741549.23346488,0.0,7760.6262988271159,7639.13224637557,7648.976047985045,9207.68686224043,148586821.08312179,0.0,28186614.07570998,0.0 + 10/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2069678.8692695313,0.0,25117942.880457123,0.0,12411028.796737804,0.0,20335133.59002175,0.0,12933.156672372612,12730.685691988623,12747.090479896826,15344.696702829253,253454050.50600059,0.0,28186614.07570998,0.0 + 10/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23165148.183795506,0.0,33843181.68737415,0.0,16379486.868141786,0.0,26477791.703094566,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,293358118.5405831,0.0,35233267.594637479,0.0 + 10/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36658211.663571,0.0,46388395.42339675,0.0,25186918.909062126,0.0,37909592.0582457,0.0,18071.876775773868,17788.958173543844,17811.88106183167,21441.59194850929,416554626.70904687,0.0,14093307.03785499,0.0 + 10/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,28476583.67132234,0.0,38142182.806126248,0.0,15239113.226503183,0.0,26335953.52392234,0.0,18054.981617347312,17772.327511974247,17795.228969957185,21421.546487964028,378352537.74194809,0.0,63419881.67034747,0.0 + 10/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,15833498.457435955,0.0,25342137.734170218,0.0,2345213.726240417,0.0,10708885.315771679,0.0,10322.188010037782,10160.592231138371,10173.68519129828,12246.882051770062,208681786.17689843,0.0,63419881.67034747,69761869.8373822 + 10/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,18439366.299592467,0.0,27595408.242960354,0.0,4374091.106025447,0.0,13331981.197625392,0.0,10325.903594812038,10164.249647739844,10177.34732085435,12251.290451272129,218248494.49904574,0.0,49326574.63249246,69761869.8373822 + 10/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21728541.25016916,0.0,30529890.715458953,0.0,7033497.092867695,0.0,16684283.587747213,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,153230036.4726641,0.0,35233267.594637479,69761869.8373822 + 10/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,24015885.97020866,0.0,32621770.771011458,0.0,8781834.013223282,0.0,18944826.18546404,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,161624747.98412783,0.0,35233267.594637479,62010550.96656194 + 10/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27870530.902615295,0.0,36281524.74439082,0.0,12189800.215076857,0.0,23151354.99716337,0.0,2581.4758987030097,2541.062411934961,2544.3368302135875,3062.822612818032,138120122.77245686,0.0,35233267.594637479,46507913.22492146 + 10/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,35959271.92409621,0.0,44095108.94357621,0.0,19851774.285562964,0.0,32454666.44832646,0.0,2581.912885301814,2541.4925574270416,2544.7675299920385,3063.3410807367097,170994272.19400919,0.0,21139960.556782485,23253956.61246073 + 10/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2175602.8588598587,0.0,7346184.677478434,0.0,0.0,0.0,0.0,0.0,1290.6252683845358,1270.42028904207,1272.0573552536037,1531.2776147430043,28833557.43506186,0.0,14093307.03785499,0.0 + 10/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23284780.10239423,0.0,31242100.311477826,0.0,6884279.352842698,0.0,17294747.647667186,0.0,1289.094955332669,1268.91393332651,1270.5490584449536,1529.461956722605,97994779.06815818,0.0,14093307.03785499,0.0 + 10/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26993957.40717346,0.0,33554571.48938508,0.0,12336491.283119355,0.0,23141719.461681315,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,115319768.74416583,0.0,14093307.03785499,0.0 + 10/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27440047.06957587,0.0,33832183.87920579,0.0,13551746.428372574,0.0,23862462.397817527,0.0,1289.9011716387016,1269.707528165872,1271.3436759122668,1530.4185015945439,117987374.93329273,0.0,14093307.03785499,0.0 + 10/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28120065.92171003,0.0,34326620.84978834,0.0,14559213.663334087,0.0,24755005.84827196,0.0,1289.508311689401,1269.3208185123656,1270.956467943901,1529.952388261085,121055963.03416872,0.0,14093307.03785499,0.0 + 10/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23970758.055717548,0.0,29879834.79252022,0.0,11614808.136159689,0.0,20627572.720521816,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,163281174.99465472,0.0,14093307.03785499,15502637.741640486 + 10/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,34847933.006797287,0.0,40861706.36857721,0.0,24066875.59686845,0.0,34270206.06112816,0.0,20642.42679283388,20319.265750551152,20345.44919841508,24491.451419824447,442921656.41521957,0.0,56373228.15141996,38756594.35410121 + 10/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40574506.8522077,0.0,48449187.98244928,0.0,30534994.81968131,0.0,43495484.56802163,0.0,18074.871540416003,17791.90605458683,17814.832741520266,21445.145122439986,433510493.874627,0.0,56373228.15141996,38756594.35410121 + 10/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34584308.55108657,0.0,46975128.45284553,0.0,28927422.086712246,0.0,41369938.59477656,0.0,12917.386859574628,12715.162758551849,12731.547543575927,15325.986421915206,345141098.5864443,0.0,28186614.07570998,0.0 + 10/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23926828.234376197,0.0,38813701.46343769,0.0,24865026.95154647,0.0,35781089.900800649,0.0,10338.419859554519,10176.569968022875,10189.683517127574,12266.140521613885,278081576.4689089,0.0,28186614.07570998,0.0 + 10/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17905765.68679696,0.0,35270384.465325798,0.0,23026398.39291423,0.0,33012196.735076548,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,186562210.23948748,0.0,28186614.07570998,0.0 + 10/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6635934.385872603,0.0,30130050.981034854,0.0,19961510.02604273,0.0,27619124.886294474,0.0,5171.841028654781,5090.874892545201,5097.435004459043,6136.191959189903,161733454.6647008,0.0,28186614.07570998,0.0 + 10/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,22437160.118931056,0.0,14736737.955802136,0.0,20848487.590107304,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,135419389.70411135,0.0,28186614.07570998,0.0 + 10/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7392920.779384268,0.0,27844320.216313214,0.0,15781967.957494768,0.0,24118799.011212838,0.0,7758.546950883663,7637.0854510120739,7646.926615116812,9205.219795279112,191230011.68865506,0.0,28186614.07570998,0.0 + 10/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12785051.829825161,0.0,28939943.56847533,0.0,14393060.179206934,0.0,23219146.416961977,0.0,12932.012539894626,12729.559471118018,12745.962807775679,15343.339233318344,272840348.5820534,0.0,28186614.07570998,0.0 + 10/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,20775822.68025552,0.0,32712408.798988336,0.0,15718496.733167304,0.0,25550082.166068458,0.0,12928.085613428424,12725.694021418214,12742.092377049397,15338.680084966194,288201197.9271836,0.0,35233267.594637479,0.0 + 10/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32466527.421794695,0.0,42780152.141532149,0.0,23104761.381248956,0.0,34948439.30928956,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,403984674.164027,0.0,14093307.03785499,0.0 + 10/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,21376034.466415164,0.0,31414374.620569379,0.0,11035191.251654122,0.0,20526537.67880814,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,354931359.3812525,0.0,63419881.67034747,0.0 + 10/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,8396381.654396443,0.0,18051310.392289398,0.0,0.0,0.0,4455942.253703781,0.0,10335.290214259592,10173.489317908874,10186.598897281467,12262.42731693736,185551734.9873839,0.0,63419881.67034747,69761869.8373822 + 10/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,10854099.464997644,0.0,20213100.40312832,0.0,0.0,0.0,6922958.00032485,0.0,10338.419859554519,10176.569968022875,10189.683517127574,12266.140521613885,192685087.78719867,0.0,49326574.63249246,69761869.8373822 + 10/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14349165.8940228,0.0,23445675.595172075,0.0,1723238.4910981898,0.0,10289821.114700294,0.0,5169.495255431714,5088.5658428395449,5095.122979307161,6133.408788804403,127159635.41397152,0.0,35233267.594637479,69761869.8373822 + 10/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18221816.3007438,0.0,27198163.13314566,0.0,5109633.827846259,0.0,14047168.670170257,0.0,5166.227599913832,5085.349343078375,5091.902334757748,6129.531840266515,141879621.95676524,0.0,35233267.594637479,62010550.96656194 + 10/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23296286.09886034,0.0,32177879.258623374,0.0,9332788.420158402,0.0,19424298.17872712,0.0,2582.9251219455038,2542.4889473172418,2545.7652038323119,3064.542060874999,122879848.75866144,0.0,35233267.594637479,46507913.22492146 + 10/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,34259425.62484469,0.0,43043626.28565021,0.0,19085373.849703909,0.0,31539765.457672966,0.0,2579.2830881924735,2538.9039302820358,2542.1755671367407,3060.220926852004,166522291.86273948,0.0,21139960.556782485,23253956.61246073 + 10/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,444832.86829039858,0.0,5615639.800863912,0.0,0.0,0.0,0.0,0.0,1290.848341126705,1270.6398695388464,1272.2772187022625,1531.542282036378,25375580.430209407,0.0,14093307.03785499,0.0 + 10/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18195712.894238939,0.0,27109023.28912677,0.0,2640116.2461209546,0.0,10801379.520884499,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,78062957.24659485,0.0,14093307.03785499,0.0 + 10/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24154138.93453989,0.0,31190633.763201316,0.0,10749455.284259044,0.0,20571955.500057047,0.0,1289.6415440962367,1269.4519651410179,1271.0877835683703,1530.110463426002,105963233.80449116,0.0,14093307.03785499,0.0 + 10/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26230678.813909845,0.0,33076720.24153418,0.0,12691585.824872736,0.0,22957843.369979707,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,114261511.71166198,0.0,14093307.03785499,0.0 + 10/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28401308.60757397,0.0,35169086.712457958,0.0,14651625.622595858,0.0,25184492.715355927,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,122695385.31175998,0.0,14093307.03785499,0.0 + 10/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17050769.884959159,0.0,26371947.458740228,0.0,7648443.853608139,0.0,16184815.671422696,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,144428093.27995674,0.0,14093307.03785499,15502637.741640486 + 10/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,15734899.824381784,0.0,30486770.149881048,0.0,14120320.05918944,0.0,22568954.350144179,0.0,20642.42679283388,20319.265750551152,20345.44919841508,24491.451419824443,391785879.76544496,0.0,56373228.15141996,38756594.35410121 + 10/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,32706122.664191877,0.0,46569495.28891219,0.0,29076059.914972664,0.0,41665392.33462456,0.0,18070.33129092107,17787.436883544724,17810.357811495112,21439.758289726222,420405453.5951749,0.0,56373228.15141996,38756594.35410121 + 10/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29978382.175993913,0.0,41607535.21525873,0.0,26437734.694754013,0.0,38374150.412742588,0.0,12913.659258224963,12711.493513496695,12727.873570324007,15321.563765205117,329626326.88485208,0.0,28186614.07570998,0.0 + 10/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11089079.373230968,0.0,31212974.704722193,0.0,20592677.69619079,0.0,30396430.159909477,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,248046671.97301669,0.0,28186614.07570998,0.0 + 10/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,144055.7108013891,0.0,27690031.022486248,0.0,18434183.90666227,0.0,26716410.675907397,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,150383881.8573313,0.0,28186614.07570998,0.0 + 10/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5153556.812047113,26905690.738767156,0.0,17436253.465782476,0.0,23006326.894986959,0.0,5173.052349776485,5092.067250208773,5098.628898597165,6137.629145461835,144753230.6180959,5153556.812047113,28186614.07570998,0.0 + 10/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13150233.970376933,18675765.155916349,0.0,12166453.695813448,0.0,17136122.696519648,0.0,5173.052349776485,5092.067250208773,5098.628898597165,6137.629145461835,125383301.06680876,13150233.970376933,28186614.07570998,0.0 + 10/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,2027959.3188102297,18999836.414038928,0.0,10564985.945986143,0.0,16750817.9654386,0.0,7759.399963706876,7637.925109760411,7647.767355851148,9206.231862432354,162420407.7757665,2027959.3188102297,28186614.07570998,0.0 + 10/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,24031435.115066798,0.0,11686352.83367409,0.0,19633614.762902269,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,248831892.44805599,0.0,28186614.07570998,0.0 + 10/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12433958.471024096,0.0,29114387.84842969,0.0,12690483.247005979,0.0,22284833.540001207,0.0,12925.739761424817,12723.38489416534,12739.780274250372,15335.896821110588,269932949.409885,0.0,35233267.594637479,0.0 + 10/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30909163.3763216,0.0,44562185.14302496,0.0,23360987.70652329,0.0,36070017.712950948,0.0,18087.917706996854,17804.7479809961,17827.691216062463,21460.62390108537,405553884.8373276,0.0,14093307.03785499,0.0 + 10/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,20115574.162036167,0.0,32679729.46037776,0.0,11020780.299705947,0.0,21194014.81517889,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,355694892.64746037,0.0,63419881.67034747,0.0 + 10/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,8765549.605012715,0.0,20433790.428843537,0.0,0.0,0.0,6129080.551528835,0.0,10333.909487659703,10172.13020684148,10185.23803486074,12260.789137532165,189955861.30620379,0.0,63419881.67034747,69761869.8373822 + 10/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,12414821.090581246,0.0,23374525.39080628,0.0,745182.4210485441,0.0,9433289.89135376,0.0,10337.2232616991,10175.392103130107,10188.50413443567,12264.720803935379,200644843.88531078,0.0,49326574.63249246,69761869.8373822 + 10/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,19283750.63330634,0.0,29983405.805745916,0.0,6216635.174717016,0.0,16005346.554928357,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,148715163.64033775,0.0,35233267.594637479,69761869.8373822 + 10/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27031276.893704758,0.0,37780470.38204685,0.0,11775800.240282704,0.0,23405053.883033664,0.0,5150.27817098033,5069.649605430191,5076.1823663951649,6110.608451664047,177056788.339159,0.0,35233267.594637479,62010550.96656194 + 10/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33010755.4047004,0.0,43288926.24464295,0.0,16717078.567024172,0.0,29411359.76590579,0.0,2574.474612464462,2534.1707321385667,2537.4362697843564,3054.515853951521,160950270.86829338,0.0,35233267.594637479,46507913.22492146 + 10/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,43586952.33180803,0.0,53622575.22013098,0.0,26162982.908170787,0.0,41074236.13709533,0.0,2570.498179023578,2530.2565505050026,2533.517044328245,3049.797967463708,202909397.66595904,0.0,21139960.556782485,23253956.61246073 + 10/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9126985.624867741,0.0,16798724.7930554,0.0,0.0,0.0,3570677.9290170788,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,48709777.6909172,0.0,14093307.03785499,0.0 + 10/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34244472.34848243,0.0,43849906.35923224,0.0,12899649.145185203,0.0,29458234.57149893,0.0,1283.4209847426085,1263.3287898045147,1264.9567178954667,1522.7300072062706,139656233.8231347,0.0,14093307.03785499,0.0 + 10/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36460378.96474046,0.0,45071823.26531383,0.0,19792336.606478029,0.0,33247879.93225772,0.0,1284.6597814213297,1264.5481928901334,1266.1776923064227,1524.199792177797,153794926.4204545,0.0,14093307.03785499,0.0 + 10/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39376390.37239321,0.0,47859663.73820969,0.0,22528481.096737565,0.0,36300038.03411052,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,165248813.11603684,0.0,14093307.03785499,0.0 + 10/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44038820.16086018,0.0,52741870.914486508,0.0,26300369.432100648,0.0,41087841.85751088,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,183302492.7930712,0.0,14093307.03785499,0.0 + 10/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29210326.341289008,0.0,41843300.132973168,0.0,17163935.25730131,0.0,29563559.76213043,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,194375987.65428064,0.0,14093307.03785499,15502637.741640486 + 10/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14170532.12916183,0.0,32595341.564120395,0.0,13951512.591264509,0.0,20971149.028369957,0.0,20570.09251340368,20248.06387775938,20274.15557474279,24405.629558449713,389481124.8005967,0.0,56373228.15141996,38756594.35410121 + 10/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4775150.112072384,5818231.096283213,32659373.149871157,0.0,12555285.99656227,0.0,23661799.956538354,0.0,18049.290223950382,17766.725218402673,17789.61945725853,21414.793866952412,343725152.77467456,5818231.096283213,56373228.15141996,38756594.35410121 + 10/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24430911.110032124,29471804.900868574,0.0,15893758.33170353,0.0,25165670.67211529,0.0,12908.48341126705,12706.398695388461,12722.772187022625,15315.42282036378,263682311.51523829,24430911.110032124,28186614.07570998,0.0 + 10/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34952231.44827104,29710563.75670787,0.0,17485605.296124165,0.0,26989575.363512789,0.0,10334.609049491935,10172.818816902727,10185.927532266336,12261.619140942192,228823652.75891633,34952231.44827104,28186614.07570998,0.0 + 10/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37074968.93447824,29730168.805958015,0.0,17726951.4944259,0.0,26330028.844923114,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,151147008.2842626,37074968.93447824,28186614.07570998,0.0 + 10/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46763871.70118094,22230233.7711384,0.0,14634029.530147093,0.0,18092773.562202388,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,132316896.00244347,46763871.70118094,28186614.07570998,0.0 + 10/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,54526813.00086676,11086156.413014178,0.0,6423981.034003641,0.0,8993998.814558523,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,103901140.3008472,54526813.00086676,28186614.07570998,0.0 + 10/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48321913.108991067,4392559.452479119,0.0,183283.85771231846,0.0,1497972.1090599253,0.0,7759.743205097005,7638.262977642545,7648.105659110533,9206.639105239412,122183718.82877355,48321913.108991067,28186614.07570998,0.0 + 10/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30960054.245381047,4873126.456977124,0.0,0.0,0.0,83978.62870926909,0.0,12931.301692464927,12728.85975213744,12745.262187135777,15342.49583997772,198449615.1838635,30960054.245381047,28186614.07570998,0.0 + 10/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,5384602.404761747,17108909.715326936,0.0,0.0,0.0,10562125.903459143,0.0,12916.489419344149,12714.279367915595,12730.663014600672,15324.921643339141,220941908.0215045,5384602.404761747,35233267.594637479,0.0 + 10/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9835962.47316892,0.0,40855115.71173316,0.0,17952465.005380718,0.0,31426712.033269407,0.0,18058.61640294182,17775.905394322202,17798.811462771733,21425.859022323613,370283347.44004598,0.0,14093307.03785499,0.0 + 10/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10308531.128431637,0.0,29894963.67404181,0.0,7785851.493234551,0.0,17611059.76788956,0.0,18074.871540416,17791.90605458683,17814.832741520266,21445.145122439986,336056725.71586468,0.0,63419881.67034747,0.0 + 10/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,16539862.918238217,0.0,0.0,0.0,1870416.5069817885,0.0,10333.191535475318,10171.423494332477,10184.530411680536,12259.937314671313,173026977.3473947,0.0,63419881.67034747,69761869.8373822 + 10/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,3888436.8604627118,0.0,20262431.955440359,0.0,0.0,0.0,5878422.535902966,0.0,10330.927406579971,10169.194810797359,10182.298856259207,12257.251012164095,184612110.86068834,0.0,49326574.63249246,69761869.8373822 + 10/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12489392.240346361,0.0,28127473.6628282,0.0,2759706.0493676776,0.0,13774862.211686869,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,134289746.70386229,0.0,35233267.594637479,69761869.8373822 + 10/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,19096142.92284315,0.0,34130242.5706205,0.0,8123580.595756901,0.0,19646180.19164881,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,158098480.48898003,0.0,35233267.594637479,62010550.96656194 + 10/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,24436956.08315967,0.0,38537567.0636398,0.0,12155249.602705395,0.0,24500383.648966079,0.0,2577.905242483881,2537.547655005048,2540.8175441606265,3058.586165514363,138203640.18426106,0.0,35233267.594637479,46507913.22492146 + 10/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,33645915.73092307,0.0,46734192.173957448,0.0,20246124.643782155,0.0,34232969.28621074,0.0,2578.189910665338,2537.82786665302,2541.0981168899077,3058.92391344521,173436945.14242596,0.0,21139960.556782485,23253956.61246073 + 10/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1193667.5734510967,0.0,9270384.744100122,0.0,0.0,0.0,0.0,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,29752923.971327478,0.0,14093307.03785499,0.0 + 10/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,23301868.36447028,0.0,35416111.55264083,0.0,8746266.841502933,0.0,20405103.801197813,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,107132928.53625003,0.0,14093307.03785499,0.0 + 10/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29061221.425647409,0.0,38871705.787235308,0.0,14772841.775529692,0.0,27213207.06100805,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,129182554.02585864,0.0,14093307.03785499,0.0 + 10/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31529326.061735106,0.0,40719260.605240877,0.0,17115634.837331326,0.0,29429553.411645473,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,138052314.07470338,0.0,14093307.03785499,0.0 + 10/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34106565.80308454,0.0,42848337.369028668,0.0,19192963.59386059,0.0,31725180.440104046,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,147121104.21105273,0.0,14093307.03785499,0.0 + 10/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21387218.362241888,0.0,32773547.94157521,0.0,11050639.955326599,0.0,21258365.731828795,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,105730847.43398255,0.0,14093307.03785499,15502637.741640486 + 10/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14021482.791875478,0.0,27632040.004798306,0.0,13771869.93385634,0.0,18038397.24607957,0.0,5159.604686554806,5078.830112663488,5085.374703649068,6121.674006378175,150667530.60989363,0.0,56373228.15141996,38756594.35410121 + 10/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,5047429.991994206,3365219.6181259469,30059684.390059424,0.0,10845734.748998916,0.0,22391992.852947706,0.0,12916.48941934415,12714.279367915595,12730.663014600672,15324.921643339141,261615714.38671867,3365219.6181259469,56373228.15141996,38756594.35410121 + 10/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,25061760.70377059,23172420.358805464,0.0,9898352.927898514,0.0,18270102.70920347,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,244814836.74140144,25061760.70377059,28186614.07570998,0.0 + 10/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38184038.1094194,20832541.40534391,0.0,10515744.109955198,0.0,17824568.64130182,0.0,12934.367309635489,12731.877376499306,12748.283700014634,15346.13307772879,242711235.4265625,38184038.1094194,28186614.07570998,0.0 + 10/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,45430541.08194143,18556976.94003422,0.0,9702300.970485386,0.0,15354744.249342833,0.0,7759.3467616121029,7637.872740554356,7647.714919162026,9206.168740177754,159717993.5412849,45430541.08194143,28186614.07570998,0.0 + 10/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,50944432.037762258,8757805.060809376,0.0,4687960.761347349,0.0,5072335.174134324,0.0,7753.690917203536,7632.305439445101,7642.140444017049,9199.458296683842,134537443.34674938,50944432.037762258,28186614.07570998,0.0 + 10/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49171195.89452191,275665.9503478032,0.0,0.0,0.0,0.0,0.0,7749.182165512535,7627.86727310293,7637.696558644552,9194.108834912104,116227543.34616745,49171195.89452191,28186614.07570998,0.0 + 10/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35646716.1602749,0.0,0.0,0.0,0.0,0.0,0.0,7744.903474527883,7623.655565823832,7633.479424150745,9189.03233138649,115887854.86520022,35646716.1602749,28186614.07570998,0.0 + 10/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26834279.97131466,0.0,0.0,0.0,0.0,0.0,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,270629163.3207264,26834279.97131466,28186614.07570998,0.0 + 10/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,6877933.88806075,1831501.1369447369,0.0,0.0,667895.5754457013,0.0,0.0,23276.148000168057,22911.755561064303,22941.27969665901,27616.26109700732,350115100.8145801,7545829.463506452,35233267.594637479,0.0 + 10/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4084956.7977864767,0.0,26612513.00705642,0.0,1881798.6719937502,0.0,14089750.34809189,0.0,18102.697703208847,17819.29659361019,17842.25857604885,21478.159802403763,317541704.4559065,0.0,14093307.03785499,0.0 + 10/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10807118.476824787,0.0,23910610.491461804,0.0,4837310.992984669,0.0,12557367.457434744,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,322797201.32886758,0.0,63419881.67034747,0.0 + 10/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,9025158.150578147,0.0,0.0,0.0,0.0,0.0,15521.121575986781,15278.135522252336,15297.822959279636,18415.218272273833,241269432.13783146,0.0,63419881.67034747,69761869.8373822 + 10/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,10358977.2093885,0.0,0.0,0.0,0.0,0.0,12933.9305812204,12731.447485149029,12747.853254705475,15345.614916135237,203890823.66334505,0.0,49326574.63249246,69761869.8373822 + 10/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4607771.3435031049,0.0,14932581.538965475,0.0,0.0,0.0,329365.3614518058,0.0,10346.871930806692,10184.88972052286,10198.013990477837,12276.168581519194,174691117.44789607,0.0,35233267.594637479,69761869.8373822 + 10/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,9318618.445457099,0.0,18415483.352584024,0.0,0.0,0.0,5826191.355782057,0.0,7759.399963706876,7637.925109760411,7647.767355851148,9206.231862432354,149665060.604126,0.0,35233267.594637479,62010550.96656194 + 10/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14838765.761708225,0.0,23381199.242214804,0.0,753259.6071356151,0.0,11225183.311039569,0.0,5172.520676985971,5091.5439008549769,5098.10487485431,6136.9983359910879,127595411.96136905,0.0,35233267.594637479,46507913.22492146 + 10/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,24450112.70368393,0.0,32460704.579375887,0.0,11213677.449080354,0.0,21869108.828984716,0.0,2585.722872690404,2545.242898752311,2548.5227040148949,3067.861485337112,128684063.41998588,0.0,21139960.556782485,23253956.61246073 + 10/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2083226.1503745567,0.0,0.0,0.0,0.0,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,21427664.90524496,0.0,14093307.03785499,0.0 + 10/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7489414.818696633,0.0,16902151.221610954,0.0,0.0,0.0,2640825.6011892857,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,46376830.39636727,0.0,14093307.03785499,0.0 + 10/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13682775.971169688,0.0,19483023.11491358,0.0,1667076.1815601465,0.0,10156470.018026863,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,64335331.83135193,0.0,14093307.03785499,0.0 + 10/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18673610.709884444,0.0,24506918.176769627,0.0,7114494.840952479,0.0,15568233.762296468,0.0,1290.7379493515048,1270.5312059674805,1272.1684151067937,1531.411306409016,85176713.44650828,0.0,14093307.03785499,0.0 + 10/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22652060.606996344,0.0,28553241.22401938,0.0,10699366.660680559,0.0,19615006.93821404,0.0,1290.2735012547228,1270.0740288922964,1271.710648912285,1530.8602564712579,100826181.79782036,0.0,14093307.03785499,0.0 + 10/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,13191795.438060932,0.0,21385320.446411238,0.0,5155546.7037771199,0.0,12323716.139355135,0.0,1289.7724978315119,1269.5808687711379,1271.2168533039747,1530.2658350340947,71355388.52539101,0.0,14093307.03785499,15502637.741640486 + 10/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13793067.197864717,0.0,18010359.038354555,0.0,13573281.801364443,0.0,16503717.980225714,0.0,1291.4625609727519,1271.2444736586209,1272.8826019161559,1532.2710304374996,81204724.41895554,0.0,56373228.15141996,38756594.35410121 + 10/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,3513461.2996216535,2716492.1888935726,15073627.088029458,0.0,8198896.360887444,0.0,13403736.490955135,0.0,5172.520676985971,5091.5439008549769,5098.104874854311,6136.9983359910879,117586725.27876455,2716492.1888935726,56373228.15141996,38756594.35410121 + 10/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18526369.272716226,11927731.360079535,0.0,4719114.75987384,0.0,9217370.35157514,0.0,7760.1539481050199,7638.667290392145,7648.510492858379,9207.126436139397,141980265.8745103,18526369.272716226,28186614.07570998,0.0 + 10/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38200506.39125261,9759213.402970585,0.0,5335654.090911162,0.0,9993636.319457885,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,141211532.57531659,38200506.39125261,28186614.07570998,0.0 + 10/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,31045693.023861164,7894517.990101373,0.0,4371039.259750378,0.0,7949002.827643886,0.0,5172.477333370679,5091.501235792068,5098.062154813113,6136.946910446071,97610915.56141459,31045693.023861164,28186614.07570998,0.0 + 10/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43832360.04406245,2405866.6865361884,0.0,1079691.5167582485,0.0,1101163.9647843757,0.0,5169.963443835032,5089.026701666068,5095.584431997321,6133.96427647309,81945462.04237625,43832360.04406245,28186614.07570998,0.0 + 10/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47582861.43706924,0.0,0.0,0.0,0.0,0.0,0.0,7752.785624653624,7631.414319418941,7641.2481756917809,9198.384201630513,116005796.35702148,47582861.43706924,28186614.07570998,0.0 + 10/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26354404.598914818,0.0,0.0,0.0,0.0,0.0,0.0,10335.766761133906,10173.958404352972,10187.068588191325,12262.99272161282,154655231.31104768,26354404.598914818,28186614.07570998,0.0 + 10/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13329146.75214324,0.0,0.0,0.0,0.0,0.0,0.0,12923.538049279316,12721.217650234206,12737.610237604227,15333.284573694473,193376341.83892403,13329146.75214324,28186614.07570998,0.0 + 10/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,2063691.1559965874,6857677.552512751,0.0,0.0,0.0,0.0,0.0,15517.88025796115,15274.944947665063,15294.628273311351,18411.372572165135,239053451.33648248,2063691.1559965874,35233267.594637479,0.0 + 10/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2800404.1395840838,0.0,22017996.44400377,0.0,2924951.476745091,0.0,14733798.016472742,0.0,18108.15124411414,17824.664758315255,17847.63365818205,21484.630220513438,313431437.64885529,0.0,14093307.03785499,0.0 + 10/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,3201270.8447366955,0.0,14082343.805891145,0.0,0.0,0.0,4283853.460160881,0.0,10347.514996636652,10185.522719037292,10198.64780467546,12276.931554579109,176398489.58053134,0.0,63419881.67034747,0.0 + 10/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3437389.3764706978,0.0,0.0,0.0,0.0,0.0,7760.439717490662,7638.948586004744,7648.792150949086,9207.465490606974,119557714.77865598,0.0,63419881.67034747,69761869.8373822 + 10/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,9510476.058128255,0.0,0.0,0.0,0.0,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,86909676.59960225,0.0,49326574.63249246,69761869.8373822 + 10/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,2404759.164021484,0.0,13814312.314072844,0.0,0.0,0.0,0.0,0.0,5173.353945464986,5092.364124360507,5098.926155301546,6137.986977233626,93628543.80659274,0.0,35233267.594637479,69761869.8373822 + 10/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7188965.082727334,0.0,16518883.95771033,0.0,0.0,0.0,3231808.4267247847,0.0,5173.052349776485,5092.067250208773,5098.628898597165,6137.629145461835,104344616.98572177,0.0,35233267.594637479,62010550.96656194 + 10/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12607469.412905483,0.0,21443303.65022929,0.0,0.0,0.0,9277654.588661103,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,120727628.19326988,0.0,35233267.594637479,46507913.22492146 + 10/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,22721355.56950195,0.0,31096743.686713805,0.0,9533686.631202912,0.0,20408497.85448787,0.0,2585.617122685685,2545.138804283643,2548.4184754098798,3067.7360169932387,122449161.25164733,0.0,21139960.556782485,23253956.61246073 + 10/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2527333.579520069,0.0,0.0,0.0,0.0,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,21860790.973932886,0.0,14093307.03785499,0.0 + 10/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8368403.621371871,0.0,18461527.086972573,0.0,0.0,0.0,3617669.835419564,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,49782228.680204119,0.0,14093307.03785499,0.0 + 10/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11068909.641402703,0.0,17273714.80468023,0.0,441650.81093265317,0.0,7844614.664813057,0.0,1293.377181994282,1273.1291209308868,1274.7696777487939,1534.5426551939677,55981837.01095318,0.0,14093307.03785499,0.0 + 10/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11730109.124037844,0.0,17354467.776528654,0.0,2294544.253411164,0.0,8960708.278548528,0.0,1293.0911584806107,1272.8475751686795,1274.4877691861353,1534.2032992131854,59688496.71990119,0.0,14093307.03785499,0.0 + 10/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11239565.799458078,0.0,16408122.767786056,0.0,2393979.1258612854,0.0,8418286.618607156,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,57813836.91086638,0.0,14093307.03785499,0.0 + 10/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7286310.0348686859,0.0,12567061.18144127,0.0,0.0,0.0,4177756.5011729106,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,101446183.43495623,0.0,14093307.03785499,15502637.741640486 + 10/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,18164361.52435146,0.0,22603593.034617559,0.0,12556952.985335146,0.0,16819984.34125584,0.0,20694.791976285633,20370.811147287255,20397.061016656,24553.580711088012,379803373.3503009,0.0,56373228.15141996,38756594.35410121 + 10/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,33098034.68814661,0.0,38234385.637727778,0.0,20610123.319745117,0.0,32961126.61880378,0.0,18107.94297924993,17824.459753876345,17847.428389574,21484.38312220201,395854841.5460715,0.0,56373228.15141996,38756594.35410121 + 10/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30124493.927562156,0.0,35462700.6118827,0.0,21186022.476644689,0.0,30994527.856727665,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,311306273.60538616,0.0,28186614.07570998,0.0 + 10/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30677818.35384724,0.0,36312710.72860615,0.0,21109158.455176295,0.0,31335215.400209384,0.0,10347.517624665423,10185.525305923782,10198.650394895418,12276.934672634929,274265963.73106947,0.0,28186614.07570998,0.0 + 10/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28311225.610604377,0.0,33549689.72759408,0.0,19566023.962994115,0.0,29097580.17401109,0.0,5173.697994071408,5092.702786821814,5099.265254164,6138.395177772003,187939139.84138889,0.0,28186614.07570998,0.0 + 10/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25728741.04936102,0.0,30414200.669067328,0.0,17916752.467863189,0.0,26594105.938994349,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,178066283.12136574,0.0,28186614.07570998,0.0 + 10/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21351019.44974791,0.0,27479600.552843378,0.0,15675304.755777499,0.0,23591127.17179099,0.0,5172.318665921312,5091.345052311221,5097.9057700739099,6136.758657574106,165491033.25532977,0.0,28186614.07570998,0.0 + 10/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5640907.226301723,0.0,18747490.177139924,0.0,10120747.460000035,0.0,16026385.181356427,0.0,7758.716000056018,7637.2518536881,7647.09323221967,9205.420365669108,166630063.27067653,0.0,28186614.07570998,0.0 + 10/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,11374012.854566519,0.0,3510643.4368782148,0.0,8477628.564997692,0.0,12929.467975608171,12727.054742460157,12743.454851519291,15340.320204924456,216827356.84468589,0.0,28186614.07570998,0.0 + 10/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,8664034.115528718,0.0,20485014.368141999,0.0,7699990.053076332,0.0,14723120.397670817,0.0,12933.887878621179,12731.405451066965,12747.811166458205,15345.564251131318,245103366.42461748,0.0,35233267.594637479,0.0 + 10/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26099894.98457753,0.0,33160741.01635956,0.0,16592371.146342952,0.0,26037131.08209333,0.0,18107.211568342558,17823.73979334317,17846.7075012982,21483.51533108009,372830365.3280038,0.0,14093307.03785499,0.0 + 10/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13625565.585760683,0.0,20319250.170401567,0.0,3724914.841322086,0.0,10454775.176081617,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,319078239.5515121,0.0,63419881.67034747,0.0 + 10/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,4978836.410501907,0.0,12000370.55390907,0.0,0.0,0.0,0.0,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,171734717.0033742,0.0,63419881.67034747,69761869.8373822 + 10/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,11515023.85972974,0.0,18654786.15771683,0.0,0.0,0.0,5165543.2574083129,0.0,10340.076490866182,10178.20066446231,10191.316314885813,12268.106051427669,190055071.552766,0.0,49326574.63249246,69761869.8373822 + 10/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17746695.852920005,0.0,25001052.816475154,0.0,2395825.761892737,0.0,11992439.492990528,0.0,5163.39336450682,5082.5594781553859,5089.10887480905,6126.169128145512,134396444.9684988,0.0,35233267.594637479,69761869.8373822 + 10/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,20407117.087584497,0.0,27510046.297673245,0.0,5875657.048182308,0.0,14909174.33351538,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,145987483.296882,0.0,35233267.594637479,62010550.96656194 + 10/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23205840.15896706,0.0,30137884.877252044,0.0,8579144.788323572,0.0,18016351.653184154,0.0,2583.652262372984,2543.204704225682,2546.481883066584,3065.404785235548,118598698.56336972,0.0,35233267.594637479,46507913.22492146 + 10/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,31046628.783319054,0.0,37741456.12393635,0.0,16084760.366004682,0.0,27036880.5650452,0.0,2583.4773719149259,2543.03255171037,2546.309508715185,3065.1972843830415,150566586.01850993,0.0,21139960.556782485,23253956.61246073 + 10/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2441930.537259342,0.0,0.0,0.0,0.0,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915207,21770360.62736168,0.0,14093307.03785499,0.0 + 10/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19251156.42577701,0.0,26989059.205965148,0.0,4740049.414200311,0.0,11611473.575978786,0.0,1287.4045530922688,1267.2499946485276,1268.88297561215,1527.4563589909904,81855316.59835944,0.0,14093307.03785499,0.0 + 10/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25348082.66466985,0.0,31145949.222228387,0.0,11247696.595671762,0.0,21266664.0417794,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,108292970.65925768,0.0,14093307.03785499,0.0 + 10/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22786543.160100409,0.0,28060645.99738986,0.0,10451750.824108752,0.0,19217684.379933943,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,99833349.65775664,0.0,14093307.03785499,0.0 + 10/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21606647.084649519,0.0,26565451.177037125,0.0,10205154.56130842,0.0,18385132.71295222,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,96079110.83217097,0.0,14093307.03785499,0.0 + 10/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17097283.563573377,0.0,22706266.69259623,0.0,7029386.438099339,0.0,14189739.677061754,0.0,5162.951797406019,5082.124823869922,5088.673660427175,6125.645225636064,138276500.19775177,0.0,14093307.03785499,15502637.741640486 + 10/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,16395351.711681519,0.0,26239171.883369306,0.0,13627394.821674167,0.0,19034477.012442545,0.0,20670.580428519184,20346.978635817748,20373.197794562933,24524.85463387472,384592596.803156,0.0,56373228.15141996,38756594.35410121 + 10/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12299528.00970533,0.0,28153846.719953918,0.0,15066929.840841948,0.0,23132718.473612548,0.0,18100.76802492766,17817.397124802483,17840.35665958171,21475.87031278349,349496834.68365696,0.0,56373228.15141996,38756594.35410121 + 10/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1370495.8877050088,21955913.098315427,0.0,11803615.425957712,0.0,18603821.8187167,0.0,12933.722548816115,12731.24270953084,12747.648215213,15345.368093628635,245892083.98486877,1370495.8877050088,28186614.07570998,0.0 + 10/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37307139.58144846,12986193.72243694,0.0,7600642.7745708939,0.0,12344641.320708557,0.0,10340.447442243982,10178.565808527088,10191.68192947599,12268.546171077343,187656746.68248425,37307139.58144846,28186614.07570998,0.0 + 10/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51347676.74595156,10220234.201142747,0.0,6181990.64541703,0.0,9231911.395618439,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,102929702.41233702,51347676.74595156,28186614.07570998,0.0 + 10/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,58302362.74559082,3045421.395596559,0.0,2286135.0356776707,0.0,1087245.6049919828,0.0,5162.824816884872,5081.999831252522,5088.5485067440299,6125.494568094869,83670725.83898086,58302362.74559082,28186614.07570998,0.0 + 10/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,46354895.86100778,0.0,0.0,0.0,0.0,0.0,0.0,5157.335723566575,5076.5966707141119,5083.138383681777,6118.981968404282,77169789.88692029,46354895.86100778,28186614.07570998,0.0 + 10/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29921791.841135399,0.0,0.0,0.0,0.0,0.0,0.0,7736.820520542294,7615.699151990761,7625.512757666354,9179.44221502791,115766908.72281835,29921791.841135399,28186614.07570998,0.0 + 10/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,5751237.0007131439,0.0,0.0,0.0,0.0,0.0,0.0,12903.593506695755,12701.585343185441,12717.952632324,15309.621135249072,193077909.42283536,5751237.0007131439,28186614.07570998,0.0 + 10/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,6599462.280784328,0.0,0.0,0.0,783316.2254893858,0.0,12918.873470694787,12716.626096497594,12733.012767181974,15327.75022926184,200689323.73536403,0.0,35233267.594637479,0.0 + 10/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,960062.5982704138,0.0,15387618.448978618,0.0,3478860.698819772,0.0,9990232.595466346,0.0,18085.221682874773,17802.094163634596,17825.03397898642,21457.425171378094,300427964.33028116,0.0,14093307.03785499,0.0 + 10/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,2886450.93621774,0.0,0.0,0.0,0.0,0.0,18086.422858972695,17803.27653509663,17826.217874054768,21458.850320966572,273515614.2569441,0.0,63419881.67034747,0.0 + 10/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,2177744.4452348637,0.0,0.0,0.0,4381190.580186591,0.0,716792.3438237027,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154701073.4711392,7275727.369245158,63419881.67034747,69761869.8373822 + 10/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,4687268.124953016,0.0,0.0,0.0,9284799.180925396,0.0,6400319.823350644,10340.94954373288,10179.060049523512,10192.176807352382,12269.141895327528,154732781.8653707,20372387.129229059,49326574.63249246,69761869.8373822 + 10/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,0.0,0.0,0.0,5712934.471872927,0.0,241679.66795798334,5170.716593659504,5089.768060789537,5096.3267464376899,6134.8578599903289,77370009.33915742,5954614.139830911,35233267.594637479,69761869.8373822 + 10/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,1339901.3796377434,0.0,0.0,3748821.953991557,0.0,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,78706292.3123231,3748821.953991557,35233267.594637479,62010550.96656194 + 10/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3584914.762385847,0.0,0.0,1873049.9363983996,0.0,0.0,2582.4770040741007,2542.0478448147116,2545.3235329241845,3064.01038612629,42226806.32696728,1873049.9363983996,35233267.594637479,46507913.22492146 + 10/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,0.0,0.0,9629798.161945712,0.0,0.0,0.0,0.0,0.0,2582.0649158402345,2541.6422078990219,2544.9173733039267,3063.521459167183,48265523.60430302,0.0,21139960.556782485,23253956.61246073 + 10/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.5928738006206,1270.3884016014093,1272.025426722721,1531.239179805766,19311285.174949863,0.0,14093307.03785499,0.0 + 10/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.2385020370503,1271.0239224073558,1272.6617664620922,1532.005193063145,19320945.782290717,0.0,14093307.03785499,0.0 + 10/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.8172457546473,1270.609260970639,1272.2465706917909,1531.5053885644148,19314642.47753337,0.0,14093307.03785499,0.0 + 10/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.1166853242785,1269.919667944497,1271.5560890546495,1530.674200355818,19304159.913645276,0.0,14093307.03785499,0.0 + 10/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1290.2391601998252,1270.0402254530196,1271.6768019138265,1530.8195121205006,19305992.51887382,0.0,14093307.03785499,0.0 + 10/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5165.741480789368,5084.87083423949,5091.423209311383,6128.9550784816469,77295566.1701588,0.0,14093307.03785499,15502637.741640486 + 10/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,799998.5220298987,0.0,6311986.003318224,0.0,0.0,0.0,0.0,0.0,20635.769057985257,20312.712243783586,20338.887246785136,24483.552271567918,315887299.47778698,0.0,56373228.15141996,38756594.35410121 + 10/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,0.0,20023774.8359424,0.0,0.0,0.0,7611639.072123349,0.0,819655.6153481364,18056.2979257371,17773.623213310635,17796.526340936995,21423.108237621927,270178400.583384,28455069.52341388,56373228.15141996,38756594.35410121 + 10/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42395202.512446958,0.0,0.0,0.0,0.0,0.0,337621.85172083068,12909.259973354441,12707.163100251506,12723.537576899356,15316.344181637272,193162697.39571328,42732824.36416779,28186614.07570998,0.0 + 10/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4467993.969216955,3163570.061364239,0.0,0.0,0.0,1399214.7980937444,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,159272199.45104779,4467993.969216955,28186614.07570998,0.0 + 10/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9669496.58624621,9869173.347676056,0.0,3703204.1291599778,0.0,9790182.671903478,0.0,5173.131920779821,5092.1455755132069,5098.707324831749,6137.723553419881,100768710.29710029,9669496.58624621,28186614.07570998,0.0 + 10/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11763891.006824637,11505460.010661327,0.0,6782527.392728661,0.0,10127679.354390523,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,105829713.21607803,11763891.006824637,28186614.07570998,0.0 + 10/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12266.906300777917,13325501.484439597,0.0,7393869.055220794,0.0,12151146.062227965,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,110284563.06018587,12266.906300777917,28186614.07570998,0.0 + 10/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,15524694.176575769,0.0,7879782.564010188,0.0,13293645.571091893,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,152821151.07365478,0.0,28186614.07570998,0.0 + 10/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,715817.8326679017,0.0,17643089.543867768,0.0,7838442.279748037,0.0,14129733.452237027,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,233863978.09789849,0.0,28186614.07570998,0.0 + 10/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13940158.950334752,0.0,25065215.68387989,0.0,10878257.61237546,0.0,18893119.25563924,0.0,12933.9305812204,12731.447485149029,12747.853254705475,15345.614916135237,262308597.95618589,0.0,35233267.594637479,0.0 + 10/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26045421.054096376,0.0,36242288.389259409,0.0,18657225.82844193,0.0,29068226.987614454,0.0,18099.319858799794,17815.971629985495,17838.929327869155,21474.15211895267,380835304.82759776,0.0,14093307.03785499,0.0 + 10/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,17306249.169877415,0.0,27078574.560608489,0.0,8256273.746844277,0.0,16698265.27527119,0.0,18090.140707973424,17806.936180477685,17829.882235262423,21463.26140688691,340024156.66276296,0.0,63419881.67034747,0.0 + 10/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,6130582.115113143,0.0,15537242.460496575,0.0,0.0,0.0,2218669.3415888848,0.0,10337.830774615617,10175.990105318584,10189.102907211005,12265.441594820632,178572609.2922756,0.0,63419881.67034747,69761869.8373822 + 10/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,9594895.4701819,0.0,18471135.006101319,0.0,0.0,0.0,5516899.884131072,0.0,10337.2232616991,10175.392103130107,10188.50413443567,12264.720803935379,188259955.45193524,0.0,49326574.63249246,69761869.8373822 + 10/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,16157946.006624282,0.0,24960603.563680445,0.0,2803427.766574826,0.0,12116858.956145412,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,133264861.76466505,0.0,35233267.594637479,69761869.8373822 + 10/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22973144.620504574,0.0,32012287.271817857,0.0,8912072.474536483,0.0,18922880.005786849,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,159903915.70557703,0.0,35233267.594637479,62010550.96656194 + 10/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29553244.25806731,0.0,38531649.703568909,0.0,14398626.565342915,0.0,25825118.92698948,0.0,2573.0915582793365,2532.8093299247177,2536.0731132647995,3052.8749129552936,146810095.54589553,0.0,35233267.594637479,46507913.22492146 + 10/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,37989284.26393527,0.0,46686338.34570698,0.0,22339510.757370719,0.0,35440326.21524881,0.0,2574.8091061845377,2534.499989297055,2537.7659512243,3054.9127179819809,180982615.53513814,0.0,21139960.556782485,23253956.61246073 + 10/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3944604.260546332,0.0,10807904.478487347,0.0,0.0,0.0,0.0,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,33977989.10362671,0.0,14093307.03785499,0.0 + 10/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27257472.313465176,0.0,35810063.11481932,0.0,11393317.386743315,0.0,22446889.33905655,0.0,1285.4410549833106,1265.317235468755,1266.9477258749017,1525.126743436042,116141940.08923118,0.0,14093307.03785499,0.0 + 10/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30127319.47603559,0.0,37470246.88794267,0.0,15963612.648871135,0.0,27370293.269831018,0.0,1284.858450856674,1264.7437521184057,1266.373503532721,1524.4355058791544,130156952.64727344,0.0,14093307.03785499,0.0 + 10/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31151037.54817262,0.0,38244392.19519158,0.0,17161189.89020754,0.0,28481893.45101043,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,134281127.15578068,0.0,14093307.03785499,0.0 + 10/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30877296.339374715,0.0,37774201.86500801,0.0,17166869.672668704,0.0,28189850.178525796,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,133274264.79059997,0.0,14093307.03785499,0.0 + 10/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26164041.557463834,0.0,33742478.65545304,0.0,13609335.016493598,0.0,23695245.925964025,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,174265413.0611272,0.0,14093307.03785499,15502637.741640486 + 10/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,26771745.82214309,0.0,40492469.84491106,0.0,21586831.36121486,0.0,32158747.925323439,0.0,20620.92824143986,20298.103762989762,20324.25994147275,24465.9442092456,429563045.1121251,0.0,56373228.15141996,38756594.35410121 + 10/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,18259885.77439928,0.0,42975379.40195892,0.0,25863089.056131126,0.0,37365970.25527342,0.0,18065.502605108322,17782.68379170917,17805.598594815587,21434.02923833167,394780455.71563586,0.0,56373228.15141996,38756594.35410121 + 10/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18570179.361938877,0.0,42749382.94575351,0.0,26400312.08153768,0.0,38559886.97045556,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,319269859.3375515,0.0,28186614.07570998,0.0 + 10/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10384789.056362523,0.0,39994509.858022477,0.0,25429136.94286799,0.0,37122929.459932807,0.0,10325.002147076286,10163.36231233656,10176.45884202883,12250.220917944032,267425524.50697435,0.0,28186614.07570998,0.0 + 10/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2695907.4960205799,0.0,36139166.06821395,0.0,23222904.039979254,0.0,33370259.52235524,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,172766749.6723295,0.0,28186614.07570998,0.0 + 10/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7207989.629173377,28389149.034101778,0.0,19559844.590072264,0.0,25315813.69579995,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,150603319.86573447,7207989.629173377,28186614.07570998,0.0 + 10/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18700303.07253959,20198828.45053273,0.0,13596114.366509932,0.0,18678441.268986148,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,129837098.60739842,18700303.07253959,28186614.07570998,0.0 + 10/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27345070.948123896,12450967.69367471,0.0,5676222.109189556,0.0,10486443.9744096,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,144670150.34639878,27345070.948123896,28186614.07570998,0.0 + 10/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14541118.568028339,12794275.383984713,0.0,2349267.5643725,0.0,8936060.58026572,0.0,12923.02482444315,12720.712460028592,12737.104396409468,15332.675652017357,217448265.92705778,14541118.568028339,28186614.07570998,0.0 + 10/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,897485.8267186617,0.0,28222033.04954979,0.0,11393693.877468132,0.0,21075685.466716663,0.0,12899.011716387015,12697.075281658717,12713.436759122667,15304.185015945439,254598249.80366308,0.0,35233267.594637479,0.0 + 10/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27601180.982718149,0.0,48197504.29554446,0.0,24796076.781887678,0.0,38623681.91203113,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,409140525.92605158,0.0,14093307.03785499,0.0 + 10/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,20852601.98412279,0.0,37973159.78691672,0.0,13712061.385020907,0.0,25365008.89520462,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,367761001.77965226,0.0,63419881.67034747,0.0 + 10/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13682745.671323743,0.0,29660471.23932433,0.0,4415276.824713458,0.0,14036087.89244121,0.0,10275.671048922764,10114.80350172734,10127.837458435844,12191.691453068664,215550594.09155933,0.0,63419881.67034747,69761869.8373822 + 10/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,21381330.11301854,0.0,36825927.21909908,0.0,9486430.116388293,0.0,21124354.818081079,0.0,10270.74251485777,10109.952124782549,10122.979829996691,12185.84393553426,242500308.52520354,0.0,49326574.63249246,69761869.8373822 + 10/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26539684.028896046,0.0,41005846.37732697,0.0,13145053.297016858,0.0,25747178.012179264,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,183266337.5442428,0.0,35233267.594637479,69761869.8373822 + 10/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29686445.001691287,0.0,43327603.08672851,0.0,15432714.573407874,0.0,28473992.506428586,0.0,5133.683938970434,5053.315159218059,5059.826871581867,6090.920028825082,193736640.76319988,0.0,35233267.594637479,62010550.96656194 + 10/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36250358.81342623,0.0,49643586.69687173,0.0,20468491.412907166,0.0,34996214.414867948,0.0,2562.8263075072566,2522.7047835684554,2525.9555461692077,3040.695584762933,179706507.3373013,0.0,35233267.594637479,46507913.22492146 + 10/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,45967755.494070697,0.0,58856867.59710724,0.0,29247047.376439997,0.0,45692739.4660984,0.0,2562.3580673018097,2522.243873750775,2525.4940424221829,3040.1400356329975,218105259.60250429,0.0,21139960.556782485,23253956.61246073 + 10/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8210815.923707021,0.0,18006260.50676731,0.0,0.0,0.0,3674451.0302570678,0.0,1283.2067404418513,1263.1178995382534,1264.7455558755719,1522.4758145216302,49092293.0980897,0.0,14093307.03785499,0.0 + 10/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31705008.830745955,0.0,43082223.59680271,0.0,12833283.065474814,0.0,28941360.001025738,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,135749486.67679126,0.0,14093307.03785499,0.0 + 10/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38011924.5037291,0.0,48549026.73916623,0.0,22489530.21101538,0.0,36787236.68784836,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,164931221.66213838,0.0,14093307.03785499,0.0 + 10/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42289731.37715929,0.0,52701678.38628033,0.0,26279327.059203689,0.0,41201889.43679754,0.0,1274.6180615412266,1254.6636780080342,1256.2804402180069,1512.2856748560676,181544878.53608487,0.0,14093307.03785499,0.0 + 10/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43586072.288244049,0.0,53853571.61642044,0.0,27209744.21635928,0.0,42269341.61855086,0.0,1277.1358476833853,1257.142047738445,1258.762003580777,1515.2729320039335,186028655.93119816,0.0,14093307.03785499,0.0 + 10/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32257017.134323539,0.0,44495858.748849648,0.0,19248357.93781811,0.0,32275607.4201991,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,204915713.9957169,0.0,14093307.03785499,15502637.741640486 + 10/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14146915.074952545,0.0,31203861.91603995,0.0,13846094.007661153,0.0,20347069.657969636,0.0,20593.084860315725,20270.696275191294,20296.81713632884,24432.909100389013,387680567.1966328,0.0,56373228.15141996,38756594.35410121 + 10/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,4800978.129874407,8602207.610384888,30036259.84262467,0.0,10926273.712913996,0.0,21161791.751528115,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,337241434.6648143,8602207.610384888,56373228.15141996,38756594.35410121 + 10/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21585275.527741508,29739402.93250776,0.0,14663030.973650009,0.0,24744527.72767795,0.0,12916.489419344149,12714.279367915595,12730.663014600672,15324.921643339141,262417834.03655414,21585275.527741508,28186614.07570998,0.0 + 10/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34369523.970358017,27229238.376990025,0.0,14894502.504430099,0.0,23894901.0349832,0.0,10346.707890929973,10184.728248721014,10197.852310603092,12275.973954467252,220837586.5734001,34369523.970358017,28186614.07570998,0.0 + 10/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42399057.47646028,25077607.32534586,0.0,14132036.62405915,0.0,21415304.11802283,0.0,5173.758812332711,5092.762652961891,5099.325197447709,6138.467336317464,138040478.46404303,42399057.47646028,28186614.07570998,0.0 + 10/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,49737144.085698749,16892465.15427174,0.0,10323018.517893952,0.0,12318425.321532913,0.0,5173.328982784847,5092.339552475782,5098.901551753439,6137.957359966525,116943007.80282875,49737144.085698749,28186614.07570998,0.0 + 10/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,51769562.335363548,6801732.88739257,0.0,3202019.135795624,0.0,4698833.339051338,0.0,5173.131920779821,5092.1455755132069,5098.707324831749,6137.723553419881,92108735.5106003,51769562.335363548,28186614.07570998,0.0 + 10/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42574766.820371057,1717852.4551974494,0.0,0.0,0.0,150430.88210774878,0.0,7759.5292614173599,7638.052383291116,7647.894793386788,9206.385269230244,117974985.48367702,42574766.820371057,28186614.07570998,0.0 + 10/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,22472146.72189351,4915498.918840304,0.0,0.0,0.0,279645.851569806,0.0,12934.317722604457,12731.828565762497,12748.234826380209,15346.074244609325,198732784.06409348,22472146.72189351,28186614.07570998,0.0 + 10/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,1145007.2483369937,18499283.819967323,0.0,1977357.112973911,0.0,12001825.532432234,0.0,12933.589913508364,12731.112150653576,12747.517488097295,15345.210726898993,226005215.47034309,1145007.2483369937,35233267.594637479,0.0 + 10/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16329328.157627309,0.0,34819075.335890557,0.0,15138044.940334864,0.0,26169523.348625367,0.0,18102.086828442756,17818.695282202523,17841.65648979006,21477.43502281232,363319516.82616969,0.0,14093307.03785499,0.0 + 10/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,11571342.118721795,0.0,27163160.084415728,0.0,6566570.3533971239,0.0,15484055.754464915,0.0,18081.79659969841,17798.72270077431,17821.658171652118,21453.3614409328,331345068.39800706,0.0,63419881.67034747,0.0 + 10/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,4056834.4688057817,0.0,18300203.36461334,0.0,0.0,0.0,3712398.8567081869,0.0,10326.78672901364,10165.118956310771,10178.2177496181,12252.338256291025,180590298.77856804,0.0,63419881.67034747,69761869.8373822 + 10/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,10154760.758687638,0.0,23739568.797851515,0.0,96622.76986071957,0.0,9274401.753774114,0.0,10321.21339641694,10159.632875275576,10172.724599207539,12245.725709912223,197702821.7710982,0.0,49326574.63249246,69761869.8373822 + 10/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,14982793.76366786,0.0,27795697.9601954,0.0,4506634.152404079,0.0,13605666.167704028,0.0,5162.501073538143,5081.68115616828,5088.229421014415,6125.110458972016,138137871.63886563,0.0,35233267.594637479,69761869.8373822 + 10/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18482642.925493204,0.0,30653665.075324686,0.0,6623459.161518643,0.0,16602981.930149895,0.0,5161.094005018891,5080.2961155691859,5086.84259564914,6123.441025885031,149588774.5641265,0.0,35233267.594637479,62010550.96656194 + 10/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25481635.97782132,0.0,37315718.25023124,0.0,12064784.086645972,0.0,23578799.048430943,0.0,2577.023984348619,2536.680193130292,2539.948964472705,3057.540586376566,137001234.78511093,0.0,35233267.594637479,46507913.22492146 + 10/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,35900759.36412732,0.0,47292941.29794123,0.0,21255319.933073138,0.0,34894708.59788948,0.0,2576.7211565019408,2536.382106110046,2539.650493336908,3057.1812926961317,177899495.36815328,0.0,21139960.556782485,23253956.61246073 + 10/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1892040.1274722415,0.0,9064440.90020836,0.0,0.0,0.0,0.0,0.0,1289.094955332669,1268.91393332651,1270.5490584449538,1529.461956722605,30245352.68145686,0.0,14093307.03785499,0.0 + 10/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21611979.478951135,0.0,32129319.846721963,0.0,7139466.934046557,0.0,17857730.41921595,0.0,1288.9526212419406,1268.773827502524,1270.4087720803132,1529.2930827571816,98025238.57183066,0.0,14093307.03785499,0.0 + 10/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25449980.45924161,0.0,34091203.92139679,0.0,12308049.98114183,0.0,23304579.982032803,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,114436194.74439067,0.0,14093307.03785499,0.0 + 10/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,27549451.576107507,0.0,35734065.77942932,0.0,14727193.476270862,0.0,25508874.337230915,0.0,1287.5695427450826,1267.4124013575477,1269.0455915987912,1527.6521129160117,122785631.90406138,0.0,14093307.03785499,0.0 + 10/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29473440.031425168,0.0,37408945.91187017,0.0,16516615.171122499,0.0,27442161.190723167,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,130102237.74815104,0.0,14093307.03785499,0.0 + 10/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22407983.224753385,0.0,32337996.950746359,0.0,11912055.445736254,0.0,21781189.570332197,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,107689953.23753166,0.0,14093307.03785499,15502637.741640486 + 10/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13925854.728068304,0.0,26523907.03362116,0.0,13657861.199541307,0.0,18205953.998922338,0.0,5157.491207557575,5076.749720574226,5083.291630762258,6119.166444224415,149485693.3713796,0.0,56373228.15141996,38756594.35410121 + 10/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,6631207.009124857,0.0,33857311.317092347,0.0,17826005.071261985,0.0,30190686.235117027,0.0,12917.386859574628,12715.162758551849,12731.547543575927,15325.986421915206,281789510.53361967,0.0,56373228.15141996,38756594.35410121 + 10/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,26946709.451207837,0.0,15313937.756599743,0.0,24115259.294404977,0.0,12919.11276782449,12716.861647386091,12733.248621601833,15328.034146171698,259686032.3609554,0.0,28186614.07570998,0.0 + 10/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,24142561.79116984,0.0,14388280.257571759,0.0,22804021.29728181,0.0,12928.61436345202,12726.21449376155,12742.613520074474,15339.30742668556,254787162.6403284,0.0,28186614.07570998,0.0 + 10/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6208594.180355512,19638639.842462019,0.0,11854545.010964349,0.0,18636785.319698708,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,166252107.16675175,6208594.180355512,28186614.07570998,0.0 + 10/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7297945.579520664,15795234.923143534,0.0,9300247.448803576,0.0,13824859.124772802,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,155043370.25869686,7297945.579520664,28186614.07570998,0.0 + 10/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4644680.4208015999,11644988.899668316,0.0,6036296.235795124,0.0,10457970.270712559,0.0,7759.852619251282,7638.370678897825,7648.213499149874,9206.768920956867,144250795.99189706,4644680.4208015999,28186614.07570998,0.0 + 10/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12768011.826526132,7921247.087566549,0.0,2186333.365144708,0.0,6251500.185794457,0.0,7760.233529289669,7638.745625718503,7648.588929127801,9207.220856177182,132476320.82363309,12768011.826526132,28186614.07570998,0.0 + 10/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,18020172.561207847,0.0,6748869.64079754,0.0,13187421.614900195,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,308908116.8020344,0.0,28186614.07570998,0.0 + 10/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7380855.638529125,0.0,24710329.153763135,0.0,9181681.358704206,0.0,17460187.24447093,0.0,23278.199891120632,22913.775329281238,22943.302067553443,27618.695587297058,407047355.74637588,0.0,35233267.594637479,0.0 + 10/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22550012.87168569,0.0,35894953.075999449,0.0,17049415.246913185,0.0,27692292.777793927,0.0,18102.086828442756,17818.695282202523,17841.65648979006,21477.43502281232,374050219.01608386,0.0,14093307.03785499,0.0 + 10/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,15202842.83861902,0.0,27458135.86496815,0.0,7688507.822985875,0.0,16585299.30117264,0.0,18097.742385640675,17814.418852462964,17837.374549434295,21472.28050726523,337733324.4890371,0.0,63419881.67034747,0.0 + 10/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,5478227.693620234,0.0,17035045.11947396,0.0,0.0,0.0,3157620.886011361,0.0,15505.834892548652,15263.088154695157,15282.756201653507,18397.081205903072,257686431.33638696,0.0,63419881.67034747,69761869.8373822 + 10/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,16085584.758906415,0.0,28147811.909146735,0.0,1729861.4090618734,0.0,12583767.357053502,0.0,12912.66995454923,12710.51969755456,12726.898499520636,15320.389994157906,251760746.75898493,0.0,49326574.63249246,69761869.8373822 + 10/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26192260.974670836,0.0,37968025.68403056,0.0,8698645.260364546,0.0,21393832.60966032,0.0,10325.903594812038,10164.249647739844,10177.34732085435,12251.290451272129,248760412.18156836,0.0,35233267.594637479,69761869.8373822 + 10/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33619092.62886076,0.0,44813147.48912208,0.0,13788701.515698558,0.0,27878432.434144144,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,235857548.68466527,0.0,35233267.594637479,62010550.96656194 + 10/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40189113.10965825,0.0,50884331.62494182,0.0,18875476.014060249,0.0,34287424.059813518,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,221408461.21970038,0.0,35233267.594637479,46507913.22492146 + 10/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,49784843.77966684,0.0,59977662.53143166,0.0,27620315.960807526,0.0,44896691.3619677,0.0,2577.905242483881,2537.547655005048,2540.8175441606265,3058.586165514363,220852997.41966383,0.0,21139960.556782485,23253956.61246073 + 10/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11853362.794858743,0.0,20562917.16985351,0.0,0.0,0.0,4164997.702609584,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,55863658.06789946,0.0,14093307.03785499,0.0 + 10/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36399240.454299,0.0,45047029.36388205,0.0,12169565.811527335,0.0,29485427.041427494,0.0,1288.8080150899912,1268.63148518686,1270.2662463420466,1529.12151307785,142385840.80604417,0.0,14093307.03785499,0.0 + 10/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37658551.182540077,0.0,45574599.08503639,0.0,18468024.148054698,0.0,32573352.39704333,0.0,1288.9526212419406,1268.773827502524,1270.4087720803132,1529.2930827571816,153561268.70556955,0.0,14093307.03785499,0.0 + 10/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37374123.18509028,0.0,44895465.15606439,0.0,19064949.51493584,0.0,32568464.8522986,0.0,1289.6415440962367,1269.4519651410179,1271.0877835683703,1530.110463426002,153200053.03082297,0.0,14093307.03785499,0.0 + 10/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35917800.18814619,0.0,43015964.583444479,0.0,18577542.32406055,0.0,31334577.46438024,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,148155934.16361953,0.0,14093307.03785499,0.0 + 10/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30354236.44242616,0.0,37044450.65640913,0.0,14254608.012691124,0.0,25437975.849206933,0.0,1291.3659258224964,1271.1493513496699,1272.787357032401,1532.156376520512,126414123.39934364,0.0,14093307.03785499,15502637.741640486 + 10/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40255178.09373929,0.0,46687112.5315114,0.0,25110743.97784745,0.0,38074948.31185755,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,169466949.34630219,0.0,56373228.15141996,38756594.35410121 + 10/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,42800585.16323347,0.0,48839952.53015788,0.0,29870309.839849667,0.0,42425105.46786789,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,241313708.0205905,0.0,56373228.15141996,38756594.35410121 + 10/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40250927.117089729,0.0,46725161.76134649,0.0,27532224.964077169,0.0,40051911.79579137,0.0,7758.0372121897539,7636.583692372509,7646.424209910027,9204.615009776711,270644602.08560118,0.0,28186614.07570998,0.0 + 10/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38088443.27581183,0.0,44770731.22779387,0.0,25551265.540694909,0.0,37910812.94684321,0.0,7759.00120720092,7637.532595861943,7647.374336158459,9205.758753059508,262420053.8033548,0.0,28186614.07570998,0.0 + 10/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,31508048.143366293,0.0,37467840.42028899,0.0,21560502.79019411,0.0,32083932.620673215,0.0,5173.67146497347,5092.676673041853,5099.2391067337689,6138.363702009978,200034547.38285525,0.0,28186614.07570998,0.0 + 10/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30420601.19453644,0.0,36565382.4495077,0.0,20590771.497605716,0.0,31049852.28413775,0.0,5173.435965403346,5092.44486026143,5099.0069952389189,6138.084290759597,196037307.02777548,0.0,28186614.07570998,0.0 + 10/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33442047.477229485,0.0,39644476.743118409,0.0,21194155.285258425,0.0,32466938.941613195,0.0,7760.507197460206,7639.015009562778,7648.858660100654,9207.545553014968,242868953.5597185,0.0,28186614.07570998,0.0 + 10/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33155891.23152947,0.0,39305498.554213929,0.0,20759605.283260697,0.0,31932597.795624108,0.0,10347.34292994694,10185.353346083706,10198.478213467537,12276.727404019955,279982039.68129357,0.0,28186614.07570998,0.0 + 10/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37430321.01182088,0.0,43795846.58935426,0.0,23022482.90325281,0.0,35194642.81546709,0.0,12930.498359434892,12728.068995435851,12744.470411463466,15341.54271600269,332923783.0563079,0.0,28186614.07570998,0.0 + 10/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39255796.01415152,0.0,45928631.090181309,0.0,23431207.496642017,0.0,36124914.24224758,0.0,15515.523085964345,15272.6246776356,15292.305013377128,18408.575877569714,376901051.9995909,0.0,35233267.594637479,0.0 + 10/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40926895.42901762,0.0,47273108.39221796,0.0,25369050.456762338,0.0,38147396.21919911,0.0,18100.768024927664,17817.397124802483,17840.35665958171,21475.87031278349,422560262.13674029,0.0,14093307.03785499,0.0 + 10/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,27543995.177083114,0.0,33577689.40649352,0.0,12981829.96654674,0.0,22658681.3152719,0.0,10342.46849074274,10180.555217134572,10193.673901639519,12270.944067972954,251517705.9043585,0.0,63419881.67034747,0.0 + 10/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13017572.767646339,0.0,19210925.289542706,0.0,0.0,0.0,5545075.735242284,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,153840206.32165376,0.0,63419881.67034747,69761869.8373822 + 10/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,15184337.501311595,0.0,21369480.469582298,0.0,502558.56673816448,0.0,8132754.757877392,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,122566886.31499106,0.0,49326574.63249246,69761869.8373822 + 10/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18342183.16484016,0.0,24603821.38164766,0.0,3560262.8037872517,0.0,11571812.763621349,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,135455835.13337804,0.0,35233267.594637479,69761869.8373822 + 10/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22601695.01620684,0.0,29597078.904544955,0.0,6227973.956860047,0.0,15733108.80979833,0.0,5171.23424537137,5090.277608567286,5096.836950819759,6135.472033986477,151537611.70689179,0.0,35233267.594637479,62010550.96656194 + 10/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26717878.119690226,0.0,33960688.898156139,0.0,9651124.443613483,0.0,20257165.73238426,0.0,5171.64800712219,5090.68489280071,5097.244759880489,6135.9629465095699,167970803.37657077,0.0,35233267.594637479,46507913.22492146 + 10/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,34637594.00087362,0.0,41748811.173922117,0.0,17376153.32383622,0.0,29620015.860659824,0.0,2585.617122685685,2545.138804283643,2548.4184754098798,3067.7360169932387,162071451.86903257,0.0,21139960.556782485,23253956.61246073 + 10/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,508130.5773653175,0.0,4067236.671587485,0.0,0.0,0.0,0.0,0.0,1292.7533772808147,1272.5150819965798,1274.1548475626462,1533.8025347135286,23918980.27854565,0.0,14093307.03785499,0.0 + 10/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17056884.51696795,0.0,23914278.713204117,0.0,0.0,0.0,8308480.209586874,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,68624082.19462934,0.0,14093307.03785499,0.0 + 10/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18924070.448773385,0.0,23787479.324115956,0.0,4184159.87614833,0.0,14271145.816597455,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,80511294.22050554,0.0,14093307.03785499,0.0 + 10/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21093494.598567457,0.0,26190843.269700264,0.0,8053841.328874097,0.0,16689841.837996586,0.0,1292.7533772808147,1272.5150819965796,1274.1548475626462,1533.8025347135286,91371634.06473126,0.0,14093307.03785499,0.0 + 10/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21056628.356825919,0.0,25922973.14551157,0.0,8671061.91117417,0.0,16906886.99120447,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,91901989.15958655,0.0,14093307.03785499,0.0 + 10/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16837260.576902048,0.0,21331755.437073567,0.0,5651462.378371174,0.0,12538094.911482184,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,133733025.42220037,0.0,14093307.03785499,15502637.741640486 + 10/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,29420872.305099749,0.0,34431042.078925509,0.0,19039096.805660804,0.0,28043020.66967662,0.0,20684.054036493035,20360.24131194527,20386.477561002335,24540.840555416456,420431840.33284828,0.0,56373228.15141996,38756594.35410121 + 10/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,35128931.48595658,0.0,41266623.20669545,0.0,26689979.76273509,0.0,37260089.56388599,0.0,18103.276218728544,17819.866052361507,17842.82876860589,21478.846188984593,411226966.042523,0.0,56373228.15141996,38756594.35410121 + 10/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21120735.237890863,0.0,32749987.677926687,0.0,21069292.340451585,0.0,29993460.589723164,0.0,12933.589913508365,12731.112150653576,12747.517488097297,15345.210726898993,298460224.850962,0.0,28186614.07570998,0.0 + 10/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11899768.433412299,0.0,25951608.309816459,0.0,17042649.31353594,0.0,24676084.18892013,0.0,10347.319278444485,10185.330064849933,10198.45490223352,12276.699342415126,234398203.16227988,0.0,28186614.07570998,0.0 + 10/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,12514403.903356895,0.0,25909791.146192377,0.0,16412043.268306213,0.0,24064931.407624727,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,156316581.21850778,0.0,28186614.07570998,0.0 + 10/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15688959.38850831,0.0,24054592.957200797,0.0,15024153.831467005,0.0,22325482.872686928,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,154508541.55784769,0.0,28186614.07570998,0.0 + 10/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18593918.94293462,0.0,26305701.495391117,0.0,14903909.263044367,0.0,22774495.364311447,0.0,5173.489019526446,5092.497083812337,5099.0592860852,6138.147237451454,159989518.52243314,0.0,28186614.07570998,0.0 + 10/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16729553.017350287,0.0,26929730.352372707,0.0,14914982.099570049,0.0,22953908.19661519,0.0,7760.439717490662,7638.948586004744,7648.792150949086,9207.465490606974,197648499.06809355,0.0,28186614.07570998,0.0 + 10/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25723196.3440224,0.0,33005428.477778999,0.0,18059658.656748948,0.0,27574236.909763345,0.0,12933.384863662466,12730.910310901267,12747.315388253866,15344.967443084064,297886201.2095597,0.0,28186614.07570998,0.0 + 10/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29384686.099048258,0.0,36156395.37771198,0.0,18860701.514454064,0.0,29023500.657644396,0.0,12932.630874441214,12730.16812552193,12746.572246492913,15344.072863654588,306937682.445257,0.0,35233267.594637479,0.0 + 10/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33683377.17757091,0.0,40220795.42163321,0.0,21994501.659012736,0.0,33021373.41881237,0.0,18105.26658198271,17821.825256107626,17844.79049698601,21481.20767900882,399831171.7277358,0.0,14093307.03785499,0.0 + 10/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,20719340.858754055,0.0,27278236.711335806,0.0,8619880.901179487,0.0,16983050.758790677,0.0,18105.683224217697,17822.2353757307,17845.20114509008,21481.70200911642,344517867.5450177,0.0,63419881.67034747,0.0 + 10/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,7216656.08207239,0.0,13780552.133831902,0.0,0.0,0.0,722233.6211732122,0.0,10345.610031915701,10183.647576894416,10196.770246220543,12274.671386654674,176521959.1071447,0.0,63419881.67034747,69761869.8373822 + 10/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,12151317.795014464,0.0,18759892.417379537,0.0,0.0,0.0,5661051.655723465,0.0,10341.567077508958,10179.667915693124,10192.7854568196,12269.874575580132,191314283.960284,0.0,49326574.63249246,69761869.8373822 + 10/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17438142.67835215,0.0,24224953.797250175,0.0,1718411.660364561,0.0,10992300.697307829,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,131733667.97223029,0.0,35233267.594637479,69761869.8373822 + 10/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,19814152.4231983,0.0,26588223.07968712,0.0,4719241.913145045,0.0,13471633.17388628,0.0,5170.038245433091,5089.100332231155,5095.6581574429069,6134.053025713834,141953109.7288723,0.0,35233267.594637479,62010550.96656194 + 10/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23391484.206778237,0.0,30084054.30746106,0.0,8048075.020804414,0.0,17455341.79708615,0.0,2585.147952284963,2544.6769788330686,2547.956054850074,3067.179364222118,117660812.59281466,0.0,35233267.594637479,46507913.22492146 + 10/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,32146829.046696716,0.0,38738999.30093914,0.0,16300447.628566273,0.0,27509869.428972357,0.0,2584.4576936539044,2543.997526329646,2547.2757268027514,3066.360398705158,153367674.24894376,0.0,21139960.556782485,23253956.61246073 + 10/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,1808961.9711868116,0.0,0.0,0.0,0.0,0.0,1292.861436345202,1272.6214493761555,1274.2613520074474,1533.930742668556,21154191.90061731,0.0,14093307.03785499,0.0 + 10/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12245852.28302303,0.0,20412627.439566416,0.0,0.0,0.0,4817429.713022131,0.0,1292.6360841179099,1272.3996250800208,1274.0392418680659,1533.6633708530972,56817767.39452031,0.0,14093307.03785499,0.0 + 10/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16829794.42219851,0.0,21694475.411939745,0.0,4158341.9885788757,0.0,12239539.435954914,0.0,1293.1301692464927,1272.8859752137442,1274.5262187135775,1534.2495839977719,74271402.26848975,0.0,14093307.03785499,0.0 + 10/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16071718.403402782,0.0,20560531.135650696,0.0,4871020.91908651,0.0,11955929.656055782,0.0,1293.2012539894627,1272.955947111802,1274.596280777568,1534.3339233318343,72809514.77295417,0.0,14093307.03785499,0.0 + 10/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16065305.426397706,0.0,20349893.64856001,0.0,5348070.6724273529,0.0,12099995.596101918,0.0,1293.290534182834,1273.043829607091,1274.6842765184222,1534.439850873235,73214915.91174069,0.0,14093307.03785499,0.0 + 10/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11292012.379572699,0.0,16314596.08457926,0.0,2200642.4043191277,0.0,7770495.062166558,0.0,5172.805015957851,5091.823788447208,5098.385123110272,6137.335693327337,114979004.56567125,0.0,14093307.03785499,15502637.741640486 + 10/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13768214.74617936,0.0,17512835.636195937,0.0,13264066.089952864,0.0,16306456.340500175,0.0,20693.743861613384,20369.77944104572,20396.027980955674,24552.337163038388,370494371.2207797,0.0,56373228.15141996,38756594.35410121 + 10/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,3706206.9889787149,27793670.35147928,13081287.196078746,0.0,6531087.825916808,0.0,11114177.663328017,0.0,18103.670666797374,17820.254325272235,17843.217541845894,21479.31418656125,305320003.86801859,27793670.35147928,56373228.15141996,38756594.35410121 + 10/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,47402162.32788588,4047805.4342532234,0.0,0.0,0.0,628677.130126924,0.0,12918.873470694787,12716.626096497594,12733.012767181974,15327.75022926184,197983027.79347048,47402162.32788588,28186614.07570998,0.0 + 10/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,33937847.233361449,6176889.639754305,0.0,1298861.5854238072,0.0,6166877.1133899469,0.0,10328.259663360937,10166.568831596087,10179.669493215706,12254.085836668732,168185530.1079973,33937847.233361449,28186614.07570998,0.0 + 10/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,42416417.169639978,2777983.58874569,0.0,583553.5763671476,0.0,2623200.5804541197,0.0,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,83084436.91537917,42416417.169639978,28186614.07570998,0.0 + 10/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,61398179.01959043,0.0,0.0,0.0,0.0,0.0,0.0,5151.389736004727,5070.743768696767,5077.277939602789,6111.927281134447,77080819.41157943,61398179.01959043,28186614.07570998,0.0 + 10/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,48189524.90098277,0.0,0.0,0.0,0.0,0.0,0.0,5152.6514894930919,5071.985769198892,5078.521540549329,6113.424303484301,77099699.1698122,48189524.90098277,28186614.07570998,0.0 + 10/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,17392509.463127808,0.0,0.0,0.0,0.0,0.0,0.0,7729.903173512449,7608.890097319098,7618.694928832762,9171.23504682837,115663403.68737364,17392509.463127808,28186614.07570998,0.0 + 10/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,865340.3500566135,5943769.950087102,0.0,0.0,0.0,1918381.6423834693,0.0,12908.172457546472,12706.09260970639,12722.465706917908,15315.05388564415,201008576.3678043,865340.3500566135,28186614.07570998,0.0 + 10/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,7058816.697012905,0.0,19646619.844915093,0.0,5341158.021362577,0.0,12279510.167054046,0.0,12924.908609587581,12722.566754165167,12738.961079993303,15334.910691182726,237722954.41608823,0.0,35233267.594637479,0.0 + 10/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18143858.32762056,0.0,27145677.615296008,0.0,11846527.559663212,0.0,20040385.13851285,0.0,18099.10389419562,17815.75904634749,17838.716470295436,21473.895885193695,347995359.7068087,0.0,14093307.03785499,0.0 + 10/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,8037340.71575026,0.0,15635936.894902936,0.0,0.0,0.0,5668672.600664713,0.0,18098.32214463299,17814.989535220102,17837.945967574415,21472.968369178852,300149163.87110087,0.0,63419881.67034747,0.0 + 10/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,3382161.612068572,0.0,0.0,0.0,0.0,0.0,10343.18309248034,10181.258631648661,10194.378222575006,12271.791915656593,158148364.31656675,0.0,63419881.67034747,69761869.8373822 + 10/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,7045200.145126917,0.0,0.0,0.0,0.0,0.0,10343.947185404173,10182.010762555232,10195.131322679015,12272.6984827435,161822836.05730183,0.0,49326574.63249246,69761869.8373822 + 10/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4424204.757303296,0.0,10552786.627511323,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,92365809.34090209,0.0,35233267.594637479,69761869.8373822 + 10/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,6807467.340456774,0.0,12560826.866253842,0.0,0.0,0.0,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,96757112.16279808,0.0,35233267.594637479,62010550.96656194 + 10/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,12605541.683981512,0.0,18265993.910047007,0.0,0.0,0.0,5740595.444100737,0.0,2586.875432942372,2546.377415458524,2549.6586826616819,3069.2289540801427,75319836.78464306,0.0,35233267.594637479,46507913.22492146 + 10/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,21509846.78138902,0.0,26909016.626463728,0.0,6584618.879429883,0.0,17065886.878474878,0.0,2586.866829525335,2546.3689467295864,2549.650203019922,3069.2187464542409,110776946.17838222,0.0,21139960.556782485,23253956.61246073 + 10/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.2333272844795,1272.9875182934023,1274.6278926418582,1534.371977072059,19350794.575050475,0.0,14093307.03785499,0.0 + 10/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7587032.464875449,0.0,14991601.9685443,0.0,0.0,0.0,2060494.4773121745,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,43981881.672252748,0.0,14093307.03785499,0.0 + 10/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17754985.026793377,0.0,22729267.36239105,0.0,3253679.0402033396,0.0,12955863.533838058,0.0,1291.7386859574629,1271.516275855185,1273.1547543575926,1532.5986421915207,76022225.05332817,0.0,14093307.03785499,0.0 + 10/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21556136.9356623,0.0,26717024.261911677,0.0,8351766.753930337,0.0,17510207.267172994,0.0,1290.956442650907,1270.7462787135208,1272.3837649960192,1531.6705403683548,93451860.51490098,0.0,14093307.03785499,0.0 + 10/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25611328.32272365,0.0,31017667.178105199,0.0,12062328.699715175,0.0,21786733.88513566,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,109771087.18848631,0.0,14093307.03785499,0.0 + 10/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25384476.48246488,0.0,31478438.65371982,0.0,11808106.233281356,0.0,21535114.812140004,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,167308470.3897167,0.0,14093307.03785499,15502637.741640486 + 10/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,36941828.17826429,0.0,46283577.19473247,0.0,25433066.358955116,0.0,37553332.224197458,0.0,20613.769252015525,20291.05684888037,20317.203946695263,24457.450341569052,454657933.35712608,0.0,56373228.15141996,38756594.35410121 + 10/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,41903557.27279759,0.0,54994892.66610302,0.0,33703243.60704657,0.0,48211354.66218946,0.0,18028.251830505924,17746.016184932298,17768.8837380848,21389.83261621541,448571791.939195,0.0,56373228.15141996,38756594.35410121 + 10/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27797806.627119334,0.0,48637809.562689829,0.0,30756271.735440568,0.0,44232207.06650485,0.0,12890.94955332669,12689.139333265099,12705.490584449537,15294.61956722605,344312811.5295172,0.0,28186614.07570998,0.0 + 10/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1123357.7205309789,0.0,42103594.18242645,0.0,27298154.90607553,0.0,39562153.858004529,0.0,10319.209373109612,10157.660225326976,10170.749407298134,12243.34801275635,264494741.93360535,0.0,28186614.07570998,0.0 + 10/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,41919866.94864409,0.0,26929873.05721069,0.0,38573735.40083429,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,184708963.93661566,0.0,28186614.07570998,0.0 + 10/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,8025340.300420138,0.0,40938004.62714082,0.0,26379323.834233494,0.0,36552608.87630266,0.0,5159.089991326047,5078.323475084551,5084.8674132158989,6121.063340136378,189091316.82924346,0.0,28186614.07570998,0.0 + 10/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18859165.713814148,0.0,42168357.64180354,0.0,25995911.18275413,0.0,37739472.63092561,0.0,5160.110257132627,5079.327768439599,5085.87300070544,6122.273846569947,201974212.71154884,0.0,28186614.07570998,0.0 + 10/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14245538.441233479,0.0,41389736.220373738,0.0,24084228.018009668,0.0,35914479.3908446,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,231392156.68730123,0.0,28186614.07570998,0.0 + 10/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17578651.09548518,0.0,43009868.42871854,0.0,23457183.59452888,0.0,36271709.487670417,0.0,12882.068979471711,12680.397786450487,12696.737773259625,15284.08310533946,313073248.12667968,0.0,28186614.07570998,0.0 + 10/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36977845.8629825,0.0,54227249.91798902,0.0,28959524.66715402,0.0,44376389.085520047,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,357273510.79819598,0.0,35233267.594637479,0.0 + 10/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50440855.4769672,0.0,64746895.72018554,0.0,36623543.24746843,0.0,54160535.77855361,0.0,17998.83094922822,17717.055893039455,17739.88612789994,21354.925863643497,475290346.02489486,0.0,14093307.03785499,0.0 + 10/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,42843381.18332159,0.0,56823843.672234509,0.0,26830360.598785648,0.0,42881793.07770625,0.0,17939.784152550794,17658.933484979185,17681.688823184453,21284.869093340527,437814370.5266459,0.0,63419881.67034747,0.0 + 10/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,36367914.28674601,0.0,50304093.99852309,0.0,18104583.18281403,0.0,32937703.11951351,0.0,10194.620788196893,10035.022097953042,10047.953248179667,12095.528412596073,290257542.9565291,0.0,63419881.67034747,69761869.8373822 + 10/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,43594530.0494932,0.0,57225367.390958148,0.0,23477892.159510808,0.0,39913912.910452339,0.0,10185.155658565136,10025.705146691389,10038.62429107535,12084.298397594204,316613323.0885484,0.0,49326574.63249246,69761869.8373822 + 10/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46985295.13013418,0.0,60100306.987024,0.0,26088157.57829183,0.0,43152253.85036929,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,252666410.22068323,0.0,35233267.594637479,69761869.8373822 + 10/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,48946991.171444389,0.0,61717494.363113928,0.0,27392246.49775341,0.0,44843450.23326519,0.0,5105.263674563278,5025.339819351992,5031.815482634999,6057.200469974179,259290812.2730649,0.0,35233267.594637479,62010550.96656194 + 10/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52868418.21503367,0.0,65282565.727089349,0.0,30759018.725352106,0.0,48949083.45025791,0.0,2552.631837281639,2512.669909675996,2515.9077413174998,3028.6002349870898,236054401.1214771,0.0,35233267.594637479,46507913.22492146 + 10/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,64178161.082873638,0.0,76487684.87472987,0.0,40839521.92813595,0.0,61481756.066793639,0.0,2542.612386187929,2502.807314958285,2506.0324376398409,3016.712538730364,281032516.79159227,0.0,21139960.556782485,23253956.61246073 + 10/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31987466.836025545,0.0,42141591.01985007,0.0,10419285.653892175,0.0,26705412.16445008,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,130257484.80275321,0.0,14093307.03785499,0.0 + 10/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52846021.490530807,0.0,63762384.44749421,0.0,31449871.350885758,0.0,49079607.29086857,0.0,1272.843363925855,1252.916763614901,1254.531274747374,1510.1800638798023,216183581.85798393,0.0,14093307.03785499,0.0 + 10/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54785476.42096524,0.0,65313302.69485535,0.0,33150926.807454967,0.0,51448918.2958756,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,223716625.8982499,0.0,14093307.03785499,0.0 + 10/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56625914.624527398,0.0,66752086.08445868,0.0,35175581.14945802,0.0,53452437.79295775,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,231004928.6388233,0.0,14093307.03785499,0.0 + 10/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58678627.85745286,0.0,68730518.8765491,0.0,36956405.384209368,0.0,55533309.70245081,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,238883123.15946228,0.0,14093307.03785499,0.0 + 10/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51538324.85847521,0.0,63801450.74803341,0.0,32295293.711642468,0.0,49887557.86039713,0.0,5078.865819030884,4999.355227172474,5005.797406656265,6025.880422053089,273518263.1282339,0.0,14093307.03785499,15502637.741640486 + 10/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,23843835.683143937,0.0,55417167.041560318,0.0,28233202.135971555,0.0,43815522.170847717,0.0,20425.462122379406,20105.697702487363,20131.605946122916,24234.031120380845,456938195.84045746,0.0,56373228.15141996,38756594.35410121 + 10/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12247311.87688809,0.0,56730042.35536151,0.0,32738568.076354796,0.0,48120002.16276751,0.0,17936.50647111266,17655.70711625542,17678.45829695528,21280.98024943098,418221872.1528876,0.0,56373228.15141996,38756594.35410121 + 10/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6515040.517461572,51169541.509602379,0.0,30151618.8487268,0.0,45004094.95041386,0.0,12825.507142980903,12624.721436061543,12640.989678210439,15216.97464544115,318234749.75844159,6515040.517461572,28186614.07570998,0.0 + 10/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,20940768.95318433,51546531.39037707,0.0,31925242.328560879,0.0,46936333.56414054,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,284211950.1998228,20940768.95318433,28186614.07570998,0.0 + 10/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30384184.499174999,50778551.872809,0.0,31872280.74129956,0.0,45294203.85569252,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,204937264.48970066,30384184.499174999,28186614.07570998,0.0 + 10/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38634831.0172805,41803868.046706419,0.0,27206752.27158211,0.0,34635831.8144691,0.0,5153.442313003881,5072.764212220092,5079.300986673816,6114.362585392263,180757984.48300184,38634831.0172805,28186614.07570998,0.0 + 10/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,40938674.822665799,30758734.092394137,0.0,19375565.54686,0.0,26344938.23119884,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,153651354.28167949,40938674.822665799,28186614.07570998,0.0 + 10/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32746267.193952037,25160133.323076589,0.0,13114665.836583119,0.0,20704162.311447227,0.0,7738.634986989071,7617.485212626825,7627.301119823849,9181.59501020457,174773020.25782649,32746267.193952037,28186614.07570998,0.0 + 10/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,11274469.420240732,28542368.263794774,0.0,12347916.637654866,0.0,22046784.147305743,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561035,255867360.07682164,11274469.420240732,28186614.07570998,0.0 + 10/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10220263.023701176,0.0,47404515.670632887,0.0,22746948.388837227,0.0,36646449.10568858,0.0,12882.068979471711,12680.397786450485,12696.737773259625,15284.083105339458,309774011.7091365,0.0,35233267.594637479,0.0 + 10/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33292284.810766587,0.0,57983805.92615343,0.0,30316263.5014128,0.0,46508542.019543018,0.0,18030.498417656025,17748.227601341463,17771.098004129723,21392.498106111503,437893255.9231352,0.0,14093307.03785499,0.0 + 10/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,23998058.806682886,0.0,46022073.5678585,0.0,18001481.556105883,0.0,31675703.95822749,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,389555487.61726197,0.0,63419881.67034747,0.0 + 10/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,13991250.463190526,0.0,33550404.802891829,0.0,5387233.746610079,0.0,16300028.56397681,0.0,10308.095937394475,10146.720772521168,10159.79585789082,12230.162345506264,223470107.26459507,0.0,63419881.67034747,69761869.8373822 + 10/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,19432327.967516789,0.0,37033581.06322837,0.0,8453044.043315858,0.0,20198018.860608415,0.0,10309.289106114753,10147.895261962545,10160.97186078172,12231.577994646823,239376015.13929046,0.0,49326574.63249246,69761869.8373822 + 10/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,25103660.945921638,0.0,41057629.07946895,0.0,11908624.524975393,0.0,24604821.743046576,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,179804257.8957231,0.0,35233267.594637479,69761869.8373822 + 10/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29239909.759424509,0.0,43816875.7547663,0.0,14287523.80578463,0.0,27586750.298917839,0.0,5154.047968697238,5073.360386260584,5079.89792894541,6115.081172753132,192051654.46285618,0.0,35233267.594637479,62010550.96656194 + 10/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34543227.60293797,0.0,47922061.41125381,0.0,18230519.277497628,0.0,32376382.31132883,0.0,2576.413795894342,2536.0795572900976,2539.347554651925,3056.8166210678916,171623357.7070735,0.0,35233267.594637479,46507913.22492146 + 11/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,44175136.47137576,0.0,56637640.227829027,0.0,26733279.391556864,0.0,42682983.4279671,0.0,2575.4645472151325,2535.145169276043,2538.4119625835435,3055.6903737450595,208766002.90887995,0.0,21139960.556782485,23253956.61246073 + 11/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8276826.752486987,0.0,17453010.489660559,0.0,0.0,0.0,3371999.725040747,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,48362912.410198319,0.0,14093307.03785499,0.0 + 11/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32193565.820239746,0.0,43128474.06802329,0.0,10843736.78836992,0.0,28134301.18781709,0.0,1286.7220385646115,1266.5781650131235,1268.2102802556884,1526.646581557106,133553443.29985595,0.0,14093307.03785499,0.0 + 11/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35008524.645540568,0.0,44623896.706523139,0.0,18871518.20126702,0.0,32456418.359475946,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,150208414.9177816,0.0,14093307.03785499,0.0 + 11/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37164579.51194717,0.0,46391762.23826994,0.0,20937072.149754906,0.0,34497963.29272267,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,158233991.2638932,0.0,14093307.03785499,0.0 + 11/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38602805.91131746,0.0,47497604.46731827,0.0,22298881.746355796,0.0,35880656.7215048,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.351847403107,163516985.6894763,0.0,14093307.03785499,0.0 + 11/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31808421.622753174,0.0,41657805.1041466,0.0,17691313.828713009,0.0,29840347.20503361,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,198011349.50226999,0.0,14093307.03785499,15502637.741640486 + 11/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,21464317.93457767,0.0,42342540.40885893,0.0,21298820.27885385,0.0,32643649.13365705,0.0,20620.92824143986,20298.103762989762,20324.25994147275,24465.9442092456,426302577.9144801,0.0,56373228.15141996,38756594.35410121 + 11/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37541347.08696859,0.0,53769259.800657737,0.0,31783756.37217867,0.0,46313391.36608581,0.0,18076.320791470018,17793.33261734524,17816.261142550396,21446.86460349426,439885759.58338657,0.0,56373228.15141996,38756594.35410121 + 11/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26449299.029538365,0.0,42926126.419008,0.0,25898929.73636198,0.0,37907122.35937926,0.0,12933.384863662466,12730.910310901267,12747.315388253866,15344.967443084064,326705158.3655336,0.0,28186614.07570998,0.0 + 11/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11533795.22918218,0.0,33011878.09264987,0.0,19646569.032076826,0.0,29385411.74793909,0.0,10345.53384467344,10183.572582377647,10196.695155065685,12274.580993399977,248379031.37370829,0.0,28186614.07570998,0.0 + 11/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15375541.836981606,23015700.53152199,0.0,14652206.087463642,0.0,21007950.339709227,0.0,5170.47477186644,5089.530024761756,5096.088403676191,6134.570947663764,136042247.8913802,15375541.836981606,28186614.07570998,0.0 + 11/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30316098.713441254,14748025.384465084,0.0,10350983.05923595,0.0,12118669.71682021,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,114568214.89609087,30316098.713441254,28186614.07570998,0.0 + 11/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,30791039.126598039,5005854.408071827,0.0,4193864.1191650789,0.0,5406503.015899833,0.0,5168.523749769082,5087.6095462792959,5094.165450461186,6132.256134420341,91943419.1144844,30791039.126598039,28186614.07570998,0.0 + 11/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13539897.836310424,6265804.8340699509,0.0,2763955.9213653265,0.0,5518860.213069929,0.0,7754.12282956759,7632.730590140523,7642.566142562537,9199.970744216684,130574426.0718596,13539897.836310424,28186614.07570998,0.0 + 11/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,15197357.887724478,0.0,6173835.615162071,0.0,11286152.615962925,0.0,12924.908609587581,12722.566754165167,12738.961079993303,15334.910691182726,226054195.8045931,0.0,28186614.07570998,0.0 + 11/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,8617522.360707589,0.0,22159819.685020478,0.0,8980258.660720505,0.0,15705828.030475526,0.0,12925.559302804977,12723.207260658859,12739.602411844986,15335.682713846678,248870014.8178839,0.0,35233267.594637479,0.0 + 11/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16160894.584102001,0.0,25996257.256992885,0.0,12172895.40235755,0.0,19708068.650560917,0.0,18095.783023926968,17812.4901649224,17835.44337658298,21469.95579938535,344807336.4073571,0.0,14093307.03785499,0.0 + 11/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,4368669.695531892,0.0,12874245.993496225,0.0,0.0,0.0,3724622.809761445,0.0,18094.872053422612,17811.593455831233,17834.545511990622,21468.87496765581,291723128.05883058,0.0,63419881.67034747,0.0 + 11/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,89383.16840177578,0.0,0.0,896060.0681388662,0.0,0.0,10339.387885005946,10177.522838855273,10190.637615831298,12267.289046860198,154798797.75999157,896060.0681388662,63419881.67034747,69761869.8373822 + 11/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,5188603.69350885,0.0,0.0,2343962.601585183,0.0,0.0,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,159872167.35619594,2343962.601585183,49326574.63249246,69761869.8373822 + 11/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,7362037.542700103,0.0,0.0,876738.7630294209,0.0,0.0,5166.4922193802699,5085.6098198777,5092.163147208015,6129.845801162297,84668837.09816192,876738.7630294209,35233267.594637479,69761869.8373822 + 11/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,1576182.785045507,0.0,8687391.809801685,0.0,0.0,278799.0352466371,0.0,0.0,5162.371495202482,5081.553606405637,5088.101706890884,6124.956719223064,87508715.29464662,278799.0352466371,35233267.594637479,62010550.96656194 + 11/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,4092940.573479328,0.0,10027057.495193597,0.0,0.0,0.0,0.0,0.0,2581.185747601241,2540.7768032028186,2544.050853445442,3062.478359611532,52742568.41857265,0.0,35233267.594637479,46507913.22492146 + 11/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,13874988.713632942,0.0,19373642.813156375,0.0,0.0,0.0,5611979.078398852,0.0,2584.104084384738,2543.6494528795549,2546.927204824492,3065.940854805388,77526848.35400719,0.0,21139960.556782485,23253956.61246073 + 11/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.7134510868614,1271.4914360411904,1273.1298825349623,1532.568701980826,19328052.497917825,0.0,14093307.03785499,0.0 + 11/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2302720.6261440615,0.0,6451728.924691927,0.0,0.0,0.0,0.0,0.0,1293.3156672372614,1273.0685691988627,1274.7090479896829,1534.469670282925,28106476.18778742,0.0,14093307.03785499,0.0 + 11/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15024586.499845913,0.0,20674750.786565804,0.0,0.0,0.0,8005058.804153973,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,63050382.63624735,0.0,14093307.03785499,0.0 + 11/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20185717.06327074,0.0,25556722.97886475,0.0,5370386.026876375,0.0,15322134.161832639,0.0,1292.2288468269522,1271.998763164823,1273.6378634013757,1533.180199352579,85770724.65272914,0.0,14093307.03785499,0.0 + 11/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25945298.669790955,0.0,31410686.02810952,0.0,11079173.256028582,0.0,21363611.743440197,0.0,1289.6415440962367,1269.4519651410179,1271.0877835683703,1530.110463426002,109095820.0198031,0.0,14093307.03785499,0.0 + 11/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24934213.905198859,0.0,32186670.51142791,0.0,10933760.914353494,0.0,21196944.58594978,0.0,1288.206897947171,1268.0397786450488,1269.6737773259625,1528.4083105339458,108527173.46895767,0.0,14093307.03785499,15502637.741640486 + 11/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,14037918.25629906,0.0,33360787.25455141,0.0,13547146.836313159,0.0,22790830.156260149,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,160820213.83635504,0.0,56373228.15141996,38756594.35410121 + 11/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,11054970.401559417,0.0,44036643.86237505,0.0,23659821.45935694,0.0,35388909.94193575,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561033,307070636.6932934,0.0,56373228.15141996,38756594.35410121 + 11/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,39394608.33656475,0.0,21256546.179873755,0.0,33146631.297659529,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,286748353.3247411,0.0,28186614.07570998,0.0 + 11/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14942251.441462,39872014.64976396,0.0,23075461.886206278,0.0,35063547.0366148,0.0,12900.275642831568,12698.319421098995,12714.682501763602,15305.684616424864,291039287.42821356,14942251.441462,28186614.07570998,0.0 + 11/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,15168184.436960435,43842287.56833381,0.0,26060254.534044528,0.0,37893834.535892378,0.0,7734.5697319960149,7613.483599959058,7623.294350669723,9176.771740335631,223529606.56092827,15168184.436960435,28186614.07570998,0.0 + 11/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,12261091.622602642,41018864.288856048,0.0,25231485.809785099,0.0,33856514.9375252,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,215865039.65300609,12261091.622602642,28186614.07570998,0.0 + 11/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9091360.934113555,35924668.649727437,0.0,21283253.119809085,0.0,30572248.368023304,0.0,7737.049870136405,7615.924911074191,7625.738807663407,9179.714329566512,203550510.64394567,9091360.934113555,28186614.07570998,0.0 + 11/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9536493.63581285,33500441.877473877,0.0,17806931.296851428,0.0,27560998.98821542,0.0,7726.393641645397,7605.435507828127,7615.235887750629,9167.071121235178,194479262.3329943,9536493.63581285,28186614.07570998,0.0 + 11/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1568328.477866482,0.0,42602178.66760874,0.0,20626380.15695598,0.0,33508154.478693993,0.0,18018.949252776256,17736.859240792382,17759.714994287733,21378.795462840386,367924590.0036335,0.0,28186614.07570998,0.0 + 11/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36854711.92363407,0.0,58140618.566700328,0.0,29615824.690731974,0.0,46142864.24091259,0.0,23148.063250828087,22785.676002369437,22815.037671584087,27464.293431210906,517121072.703552,0.0,35233267.594637479,0.0 + 11/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48622513.107117209,0.0,67511623.28171806,0.0,36708365.414153609,0.0,55100433.18685918,0.0,17985.236939898612,17703.674700461863,17726.48769228992,21338.797090489155,477058042.11315038,0.0,14093307.03785499,0.0 + 11/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41494010.114245157,0.0,58899553.12727457,0.0,27112832.473761985,0.0,43618710.36408811,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,440025121.4802526,0.0,63419881.67034747,0.0 + 11/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,31611612.750317538,0.0,47843214.38066068,0.0,15244187.757535587,0.0,29626563.694941038,0.0,15385.227682436629,15144.369072956692,15163.884138260817,18253.9853549654,354536457.0784852,0.0,63419881.67034747,69761869.8373822 + 11/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,37419772.721682999,0.0,52855736.31696737,0.0,19165703.49025028,0.0,34719744.28188991,0.0,12816.45074137696,12615.80681411418,12632.063568862799,15206.229570642176,335934939.31277659,0.0,49326574.63249246,69761869.8373822 + 11/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,44637752.21247805,0.0,59149680.855839807,0.0,24281227.533695304,0.0,41240769.46834182,0.0,10223.490790048865,10063.44013454033,10076.407904307664,12129.781567757718,322284663.4983114,0.0,35233267.594637479,69761869.8373822 + 11/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51177577.147042769,0.0,65295424.16621943,0.0,28873226.262471737,0.0,47302268.750629838,0.0,7647.708369247359,7527.9820680482039,7537.682641308041,9073.714049136406,307082009.9862278,0.0,35233267.594637479,62010550.96656194 + 11/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57057298.6890776,0.0,70711114.0295184,0.0,33534484.889192977,0.0,53172595.42352667,0.0,5097.3103940984469,5017.511048976521,5023.976624089833,6047.764206298037,290747117.21578189,0.0,35233267.594637479,46507913.22492146 + 11/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,65070843.9045427,0.0,78222861.19196417,0.0,41064772.397468868,0.0,62255365.196994978,0.0,2552.0766076463407,2512.1233722642166,2515.3604996364808,3027.941476219226,284800849.7317292,0.0,21139960.556782485,23253956.61246073 + 11/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30897886.78899917,0.0,42080659.539290759,0.0,11295270.205367767,0.0,24550429.83794388,0.0,1273.4434303364224,1253.5074358738687,1255.1227081478363,1510.8920197699973,127878922.51046282,0.0,14093307.03785499,0.0 + 11/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54396673.59397432,0.0,65844538.7587505,0.0,31965828.1241839,0.0,50570205.732199687,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,221813837.8900061,0.0,14093307.03785499,0.0 + 11/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54077613.1751495,0.0,64769897.97332749,0.0,32333275.297836875,0.0,50474977.66274008,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,220749267.62943328,0.0,14093307.03785499,0.0 + 11/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56357306.200789708,0.0,66871466.25401547,0.0,34380377.83066736,0.0,52805554.0067033,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,229455864.5920797,0.0,14093307.03785499,0.0 + 11/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61408220.47781193,0.0,72089061.47499249,0.0,38447573.92295399,0.0,57979121.06642465,0.0,1266.3808134439633,1246.5553855663907,1248.161699413956,1502.5124944237553,248872974.35643608,0.0,14093307.03785499,0.0 + 11/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55333682.81084092,0.0,67683169.94391883,0.0,34678945.21867417,0.0,53220424.56742491,0.0,1267.7399174552944,1247.8932125508839,1249.5012503250678,1504.1250194530099,229885556.38008217,0.0,14093307.03785499,15502637.741640486 + 11/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,27381987.417804365,0.0,58573222.49805918,0.0,29911312.664425576,0.0,45520195.52430666,0.0,1277.1358476833853,1257.142047738445,1258.762003580777,1515.2729320039333,180496644.29621936,0.0,56373228.15141996,38756594.35410121 + 11/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13374001.956591456,0.0,58084133.741121519,0.0,31874248.336034366,0.0,48207997.04502635,0.0,5134.5320402368229,5054.14998330091,5060.662771420757,6091.926268603637,228368956.90759737,0.0,56373228.15141996,38756594.35410121 + 11/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7697308.890862135,48746361.86677218,0.0,27353793.82982936,0.0,41610394.75643719,0.0,7710.329325090653,7589.622681145843,7599.4026846271849,9148.011422855636,233081068.46242828,7697308.890862135,28186614.07570998,0.0 + 11/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24455606.18106718,47753771.80446516,0.0,28453013.483005048,0.0,42551221.92030004,0.0,7723.423837393386,7602.512196415697,7612.308809353069,9163.547561854564,234324459.86583043,24455606.18106718,28186614.07570998,0.0 + 11/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,32348286.441003838,48238362.79422778,0.0,29033581.342612119,0.0,41862654.63173112,0.0,5150.27817098033,5069.649605430191,5076.1823663951649,6110.608451664047,196198785.70866204,32348286.441003838,28186614.07570998,0.0 + 11/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39698199.41836757,39808497.923776987,0.0,24889663.499412016,0.0,31833995.859077123,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,173670469.8218993,39698199.41836757,28186614.07570998,0.0 + 11/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,37526593.15358129,30488266.530328674,0.0,17953343.49490563,0.0,24963487.2136743,0.0,7736.236811336361,7615.1245808613389,7624.937446143387,9178.749666336622,189163271.85574837,37526593.15358129,28186614.07570998,0.0 + 11/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,38721580.96032513,21077433.235653588,0.0,9840250.80977696,0.0,16457746.222810602,0.0,10323.144345776187,10161.533595262386,10174.627768466053,12248.0167076181,201841790.96988295,38721580.96032513,28186614.07570998,0.0 + 11/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16469639.046463697,24344653.92163906,0.0,9295397.63305026,0.0,17860368.31141615,0.0,12890.94955332669,12689.139333265099,12705.490584449537,15294.61956722605,244389136.40386803,16469639.046463697,28186614.07570998,0.0 + 11/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,3724174.021292652,0.0,44416109.85987193,0.0,20252828.223993668,0.0,33266027.454274015,0.0,15462.143906091713,15220.081158781748,15239.69378683623,18345.243518259398,333020924.091321,0.0,35233267.594637479,0.0 + 11/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26402692.602410735,0.0,53931487.73160447,0.0,27057357.43725702,0.0,42322892.97484752,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,419072221.97503259,0.0,14093307.03785499,0.0 + 11/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,21191615.369759166,0.0,46293692.92415884,0.0,18545850.320000866,0.0,32266967.569814184,0.0,10275.671048922764,10114.80350172734,10127.837458435844,12191.691453068664,272054138.64748969,0.0,63419881.67034747,0.0 + 11/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10772293.950559224,0.0,33489393.02054691,0.0,5831661.034413124,0.0,16613952.967622426,0.0,7717.119090607243,7596.306151616642,7606.094767431852,9156.067220459789,182179415.00155757,0.0,63419881.67034747,69761869.8373822 + 11/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,15435344.795475405,0.0,36752856.879405889,0.0,8526687.90450386,0.0,20179105.822192003,0.0,5144.014055739574,5063.4835560820979,5070.008371463131,6103.176318046869,157864451.68637116,0.0,49326574.63249246,69761869.8373822 + 11/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,21350450.57415358,0.0,41477092.10349029,0.0,12313599.512897959,0.0,25140516.08010154,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,177229805.6425634,0.0,35233267.594637479,69761869.8373822 + 11/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,26002064.868849528,0.0,44974157.19559492,0.0,15051114.741985735,0.0,28709455.348038548,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,191662094.29197658,0.0,35233267.594637479,62010550.96656194 + 11/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33873858.85886177,0.0,51897798.54992063,0.0,20934709.397627936,0.0,36162327.739781569,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,219564406.54464848,0.0,35233267.594637479,46507913.22492146 + 11/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,43688846.34142425,0.0,60672909.854228738,0.0,29282904.03374615,0.0,46351284.82640542,0.0,2567.6856287144426,2527.488031195637,2530.744957499173,3046.460983883565,218416511.6204587,0.0,21139960.556782485,23253956.61246073 + 11/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9118183.182763156,0.0,22386448.32909088,0.0,0.0,0.0,6045283.876057117,0.0,1280.942716075951,1260.8893188961543,1262.5141034798492,1519.7896360346122,56716804.17606279,0.0,14093307.03785499,0.0 + 11/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34566205.39706862,0.0,49298275.498126018,0.0,18822289.909412784,0.0,34684073.51561279,0.0,1280.2206012981017,1260.1785089598625,1261.8023775924037,1518.9328744155099,156526928.02437736,0.0,14093307.03785499,0.0 + 11/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38762723.352046538,0.0,52199455.39625013,0.0,24011304.07428487,0.0,39245707.7520737,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,173345022.63529475,0.0,14093307.03785499,0.0 + 11/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38766956.20598169,0.0,51424893.333351697,0.0,24163001.325955135,0.0,38919046.56296788,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,172464846.87322627,0.0,14093307.03785499,0.0 + 11/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38201219.84922054,0.0,49987629.48913628,0.0,23926877.56017109,0.0,38004702.318465929,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,169311378.66196365,0.0,14093307.03785499,0.0 + 11/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31285595.250287728,0.0,44503076.09995148,0.0,19233458.91286462,0.0,32072185.490984158,0.0,5132.826961767405,5052.4715981530139,5058.9822235022879,6089.9032580865209,203897378.30352123,0.0,14093307.03785499,15502637.741640486 + 11/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13996489.762614076,0.0,33836299.06600031,0.0,13809134.165605195,0.0,22005495.441096918,0.0,20620.92824143986,20298.103762989762,20324.25994147275,24465.9442092456,392200668.5938492,0.0,56373228.15141996,38756594.35410121 + 11/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,3844358.960696905,11006343.182964109,33173980.293309977,0.0,12022142.110011135,0.0,23176449.183673584,0.0,18077.73793636892,17794.727576576384,17817.65789932889,21448.54599182107,342716140.40243449,11006343.182964109,56373228.15141996,38756594.35410121 + 11/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26931268.583136679,30049591.283977137,0.0,15442413.730114999,0.0,24804666.61378243,0.0,12930.062020316256,12727.639487287515,12744.040349850044,15341.025016294516,263770632.37336857,26931268.583136679,28186614.07570998,0.0 + 11/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,39456091.367607537,28191026.75837352,0.0,15681862.784503108,0.0,24835977.662158695,0.0,10347.144464976322,10185.157988119225,10198.282603764379,12276.49193290819,223534344.36820055,39456091.367607537,28186614.07570998,0.0 + 11/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,43240832.64089796,27690531.120495194,0.0,15771159.838628097,0.0,23592993.624974174,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,144469740.3015708,43240832.64089796,28186614.07570998,0.0 + 11/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,35463516.502179387,22760039.496317228,0.0,13229234.973736978,0.0,17003144.905430754,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,130404902.3715648,35463516.502179387,28186614.07570998,0.0 + 11/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24520193.574353514,16886305.202124195,0.0,9685258.996195399,0.0,14039668.871596681,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,118026644.56294385,24520193.574353514,28186614.07570998,0.0 + 11/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,1652845.6779892378,21042280.847361585,0.0,10583889.822931832,0.0,17108628.816194714,0.0,7760.620385781293,7639.1264258995829,7648.97022000878,9207.679846637275,164857828.2484651,1652845.6779892378,28186614.07570998,0.0 + 11/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3381129.9073013237,0.0,28798939.68187263,0.0,13756625.082705385,0.0,22424093.022347727,0.0,12934.334147626676,12731.844733647928,12748.25101509961,15346.093732271205,261898672.75735057,0.0,28186614.07570998,0.0 + 11/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17977460.302601194,0.0,33131906.346844526,0.0,15464083.821961163,0.0,25045794.547325184,0.0,12934.37716471186,12731.887077292618,12748.293413308409,15346.144770400711,285157773.75130107,0.0,35233267.594637479,0.0 + 11/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22335285.797054009,0.0,35964897.27518803,0.0,18106478.551150446,0.0,28217390.753418566,0.0,18108.04481164624,17824.559992067494,17847.52875693229,21484.50394245305,375576747.3879677,0.0,14093307.03785499,0.0 + 11/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,16834262.116663889,0.0,30483775.956960508,0.0,7505444.861310016,0.0,17273709.72051815,0.0,18108.15124411414,17824.664758315255,17847.633658182054,21484.630220513438,343051480.2275022,0.0,63419881.67034747,0.0 + 11/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,10427077.121698775,0.0,23082530.987973319,0.0,0.0,0.0,5834674.181959068,0.0,10346.52533789809,10184.548553590901,10197.672383917463,12275.7573622634,194160495.38724263,0.0,63419881.67034747,69761869.8373822 + 11/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,17756096.42779778,0.0,28945874.049960898,0.0,1195035.1912552664,0.0,12108886.453617897,0.0,10344.398687547913,10182.455196348683,10195.576329170774,12273.234172802153,214790283.9117621,0.0,49326574.63249246,69761869.8373822 + 11/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23628534.493695488,0.0,33722961.725685928,0.0,6372500.063571004,0.0,17621863.900259314,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,158709574.70458133,0.0,35233267.594637479,69761869.8373822 + 11/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27063356.628486579,0.0,36378934.91340017,0.0,9237334.819962116,0.0,20866345.978413289,0.0,5168.9153873078089,5087.995052659292,5094.5514536055029,6132.720797410316,170889030.02780069,0.0,35233267.594637479,62010550.96656194 + 11/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30687465.518854388,0.0,39414637.63407723,0.0,12518981.068324335,0.0,24722821.11212591,0.0,2584.747627715857,2544.2829214197724,2547.5614896535805,3066.7043944022018,146019772.49287094,0.0,35233267.594637479,46507913.22492146 + 11/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,37605634.71699086,0.0,45730601.65697966,0.0,19459662.03544509,0.0,32862433.76927883,0.0,2585.2721682358198,2544.7992501600417,2548.078483736132,3067.3267417061945,174342048.0965119,0.0,21139960.556782485,23253956.61246073 + 11/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,1486411.1344724806,0.0,6020420.512598373,0.0,0.0,0.0,0.0,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,26851270.401941256,0.0,14093307.03785499,0.0 + 11/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18745991.04301037,0.0,26027852.72559571,0.0,903592.9921117261,0.0,8998046.758620348,0.0,1292.861436345202,1272.6214493761555,1274.2613520074474,1533.930742668556,74020713.44876865,0.0,14093307.03785499,0.0 + 11/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21126080.56483004,0.0,26737991.25356698,0.0,7543511.438983576,0.0,16138493.014766457,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,90892062.81782872,0.0,14093307.03785499,0.0 + 11/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21007969.41325259,0.0,26274523.466057727,0.0,7929083.804220735,0.0,16653021.394238014,0.0,1293.0062020316257,1272.763948728752,1274.4040349850043,1534.1025016294516,91211994.15231848,0.0,14093307.03785499,0.0 + 11/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20610559.38676146,0.0,25612879.17479264,0.0,8222570.916306935,0.0,16496622.251579535,0.0,1293.0911584806107,1272.8475751686795,1274.4877691861353,1534.2032992131854,90291299.01681558,0.0,14093307.03785499,0.0 + 11/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,16834292.417591305,0.0,21687595.11780128,0.0,5183349.047495301,0.0,12392762.202400094,0.0,5172.667471467281,5091.688397241297,5098.249557438972,6137.172502039672,133497199.32676199,0.0,14093307.03785499,15502637.741640486 + 11/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,30613845.578151596,0.0,35955609.93849408,0.0,18889737.218428933,0.0,28431299.306649027,0.0,20691.220063831403,20367.29515378883,20393.540492441087,24549.34277330935,423495526.5818581,0.0,56373228.15141996,38756594.35410121 + 11/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40154322.146183628,0.0,45987602.90057369,0.0,27849122.601145295,0.0,40300916.00625138,0.0,18106.419341321656,17822.95996878407,17845.92667185556,21482.57538396095,425220336.5714741,0.0,56373228.15141996,38756594.35410121 + 11/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32697175.450002195,0.0,38876852.38732334,0.0,23764170.117715207,0.0,34325549.15421389,0.0,12934.267979988985,12731.779601876948,12748.185799399696,15346.015226894859,323200642.0986324,0.0,28186614.07570998,0.0 + 11/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28988577.27341684,0.0,35527479.88369815,0.0,21595820.12015017,0.0,31620197.292733294,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,272561590.56150069,0.0,28186614.07570998,0.0 + 11/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26696085.155143463,0.0,33554132.24338354,0.0,20252947.03638001,0.0,29913851.627610595,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,187832427.5555452,0.0,28186614.07570998,0.0 + 11/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27612453.821729848,0.0,34045243.51849455,0.0,19990657.44347059,0.0,29721244.82586766,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,188785011.1025902,0.0,28186614.07570998,0.0 + 11/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27425763.497146507,0.0,33661542.25802968,0.0,19218844.309192789,0.0,28905470.934772269,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,186625667.45743875,0.0,28186614.07570998,0.0 + 11/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29810989.14069798,0.0,35572813.87996751,0.0,19622492.295302016,0.0,29705877.04766471,0.0,7760.546991107112,7639.054180232718,7648.897881246001,9207.592766658006,230834102.91291,0.0,28186614.07570998,0.0 + 11/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32988222.55670271,0.0,38545974.02213759,0.0,20703158.256112908,0.0,31382808.657420786,0.0,12934.244985178519,12731.756967054533,12748.16313541,15345.98794443001,317156714.40783706,0.0,28186614.07570998,0.0 + 11/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,32422710.20506363,0.0,37828294.93431957,0.0,19622679.004577869,0.0,29972773.64480447,0.0,12934.367309635489,12731.877376499306,12748.283700014634,15346.13307772879,313384839.05872717,0.0,35233267.594637479,0.0 + 11/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33788522.14067446,0.0,38785345.719040099,0.0,21340387.58986345,0.0,31707406.86313138,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,396575396.09065559,0.0,14093307.03785499,0.0 + 11/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,19329032.77371798,0.0,24519568.962207289,0.0,7197637.631974063,0.0,14589205.50140292,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,336589178.64724847,0.0,63419881.67034747,0.0 + 11/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,7838713.511728644,0.0,13824531.408367917,0.0,0.0,0.0,366264.89928416858,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,176859025.81088297,0.0,63419881.67034747,69761869.8373822 + 11/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,11137694.641475179,0.0,17186765.141860766,0.0,0.0,0.0,3820721.29555846,0.0,10347.144464976322,10185.157988119225,10198.282603764379,12276.49193290819,186970658.2420596,0.0,49326574.63249246,69761869.8373822 + 11/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13899509.727697503,0.0,19703729.304383495,0.0,0.0,0.0,7114914.118599967,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,118124755.42369575,0.0,35233267.594637479,69761869.8373822 + 11/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,18286400.327939709,0.0,24359038.44984114,0.0,2600463.422735407,0.0,11570324.875627609,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,134190679.19451526,0.0,35233267.594637479,62010550.96656194 + 11/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,22955619.556870294,0.0,29325632.230479096,0.0,7527848.583211886,0.0,16887897.804217984,0.0,2585.3917693772398,2544.916978923281,2548.1963642049,3067.468643895033,115382503.69782089,0.0,35233267.594637479,46507913.22492146 + 11/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,31270333.824961239,0.0,37514618.56708833,0.0,15575298.151619532,0.0,26625288.43993426,0.0,2585.0191227165457,2544.5501661155778,2547.8290787214534,3067.026512856917,149665468.5530811,0.0,21139960.556782485,23253956.61246073 + 11/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,2945863.4199737568,0.0,0.0,0.0,0.0,0.0,1292.0746658292708,1271.8469958994229,1273.4859005683632,1532.9972694842805,22279320.814386574,0.0,14093307.03785499,0.0 + 11/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18365642.61427269,0.0,25188406.191559517,0.0,2024860.640219026,0.0,9621828.183082352,0.0,1291.3659258224962,1271.1493513496699,1272.787357032401,1532.156376520512,74523590.06774387,0.0,14093307.03785499,0.0 + 11/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,26667303.728787915,0.0,32337315.475823989,0.0,11595620.582387479,0.0,21693466.757507668,0.0,1288.5119921743095,1268.340096565146,1269.9744822363526,1528.770293188283,111573855.25549776,0.0,14093307.03785499,0.0 + 11/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31611521.770066658,0.0,37558729.95842537,0.0,15870941.516492458,0.0,27062583.261346707,0.0,1286.8960473311816,1266.7494496399916,1268.3817856002809,1526.8530363163184,131359745.65432719,0.0,14093307.03785499,0.0 + 11/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33537337.025278324,0.0,39562546.836856838,0.0,17869558.87552676,0.0,29321500.759880835,0.0,1286.7220385646115,1266.5781650131235,1268.2102802556884,1526.646581557106,139544308.93294866,0.0,14093307.03785499,0.0 + 11/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28071288.085386166,0.0,34445015.04706766,0.0,13847036.820113736,0.0,24010970.86316157,0.0,5155.232060359965,5074.52594074744,5081.064985368187,6116.4860523114,177512623.3553623,0.0,14093307.03785499,15502637.741640486 + 11/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,32379507.432033849,0.0,42950108.28619529,0.0,23524198.962355839,0.0,34349108.043731559,0.0,20634.264705539783,20311.231442256285,20337.404537093924,24481.767414816033,441955727.8832582,0.0,56373228.15141996,38756594.35410121 + 11/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40828589.79374816,0.0,53245890.693843189,0.0,32058547.491598678,0.0,46154788.91433565,0.0,18056.814969641164,17774.132162795926,17797.035946255644,21423.721690477323,442473954.0625379,0.0,56373228.15141996,38756594.35410121 + 11/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33972236.33261366,0.0,48972853.48531756,0.0,30372903.709481829,0.0,43471038.93711638,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,349956285.4267663,0.0,28186614.07570998,0.0 + 11/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,14552121.233048849,0.0,41106766.18712092,0.0,26016579.264075526,0.0,37639461.874157357,0.0,10336.597326634166,10174.775967195383,10187.887204546905,12263.978155874243,273982587.7137051,0.0,28186614.07570998,0.0 + 11/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,36333621.1022445,0.0,23713046.328508986,0.0,33500520.26435243,0.0,5169.7713615334209,5088.837626448721,5095.395113137258,6133.73637815446,170903053.4204918,0.0,28186614.07570998,0.0 + 11/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,32367214.936750294,0.0,21304115.49293951,0.0,28538396.08497693,0.0,5170.295904569926,5089.353957666137,5095.912109700148,6134.358728444236,159573441.03603638,0.0,28186614.07570998,0.0 + 11/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,3365712.0319870647,0.0,33118811.598340494,0.0,20213174.37728434,0.0,29123918.62739673,0.0,5168.61163084955,5087.6960515650539,5094.252067217835,6132.3604019676899,163160129.1807691,0.0,28186614.07570998,0.0 + 11/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,11183778.173063316,0.0,36057642.071155387,0.0,20182629.57267903,0.0,30338985.449245916,0.0,7751.96473157008,7630.606277569757,7640.439092598199,9197.410243322305,213756548.50836087,0.0,28186614.07570998,0.0 + 11/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27197487.74597274,0.0,44195358.84658436,0.0,24307075.37844378,0.0,36698168.08928389,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,325565343.0225216,0.0,28186614.07570998,0.0 + 11/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37247861.20192221,0.0,51017309.507955458,0.0,27735830.814936144,0.0,41668150.742540199,0.0,12896.415440962366,12694.519651410177,12710.877835683705,15301.10463426002,350639655.49169257,0.0,35233267.594637479,0.0 + 11/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44533316.49773772,0.0,57418947.571381229,0.0,32551715.619059504,0.0,47951507.6056214,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,452377569.24767008,0.0,14093307.03785499,0.0 + 11/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,34157728.5050626,0.0,46622798.43071197,0.0,20604674.571784978,0.0,33893857.692921977,0.0,18025.973598431156,17743.77361900566,17766.638282383075,21387.129580824163,405003713.4908001,0.0,63419881.67034747,0.0 + 11/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,24745721.882665934,0.0,37081649.95788472,0.0,9556928.420719598,0.0,20973043.456486416,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,246161186.63450099,0.0,63419881.67034747,69761869.8373822 + 11/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,32793636.528716297,0.0,45202681.268232148,0.0,15263364.144557815,0.0,28720455.70055761,0.0,10256.818454957753,10096.246048637797,10109.256092173877,12169.32356997693,275454056.63875076,0.0,49326574.63249246,69761869.8373822 + 11/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41055213.27863261,0.0,53577711.596835408,0.0,21299654.709333376,0.0,36836116.34711737,0.0,5114.86941092339,5034.795176117439,5041.283023592727,6068.597309491954,229303057.6443706,0.0,35233267.594637479,69761869.8373822 + 11/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47130384.7631888,0.0,59732725.91793445,0.0,25689277.553751887,0.0,42773454.19672112,0.0,5105.263674563278,5025.339819351992,5031.815482634999,6057.200469974179,251716472.43908427,0.0,35233267.594637479,62010550.96656194 + 11/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53296050.773921679,0.0,65862756.26592198,0.0,30593997.304977679,0.0,49115510.14912211,0.0,2551.51708171906,2511.572605819707,2514.8090234731919,3027.2776200649257,237046949.28582023,0.0,35233267.594637479,46507913.22492146 + 11/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,63807528.03936699,0.0,76095122.830056,0.0,40001409.400315169,0.0,60677186.47507811,0.0,2546.8868606728449,2507.0148717477375,2510.2454162956726,3021.784039539995,278690599.0225387,0.0,21139960.556782485,23253956.61246073 + 11/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30745339.184189049,0.0,41267062.80195394,0.0,11180239.3847416,0.0,24248546.891697356,0.0,1271.9273904594755,1252.0151298840124,1253.6284791693955,1509.0932963267997,126473179.72760478,0.0,14093307.03785499,0.0 + 11/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54525046.691484067,0.0,65538912.281335208,0.0,31969901.81980169,0.0,50540832.32352987,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,221578422.24468617,0.0,14093307.03785499,0.0 + 11/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57187160.95696682,0.0,67876951.95326747,0.0,34474283.45640619,0.0,53480153.08903557,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,232017458.4430975,0.0,14093307.03785499,0.0 + 11/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59123779.5916065,0.0,69562830.3462289,0.0,36402876.59715509,0.0,55516986.09123818,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,239590733.96502877,0.0,14093307.03785499,0.0 + 11/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62955813.6424274,0.0,73430216.03969626,0.0,39620182.23494284,0.0,59462864.92685224,0.0,1263.2029112816309,1243.4272340552466,1245.029516960306,1498.7420348161314,254370522.95352669,0.0,14093307.03785499,0.0 + 11/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57303952.42995575,0.0,69615120.66723463,0.0,36273110.51596848,0.0,55210716.47036959,0.0,5049.89739158272,4970.840305860066,4977.245740957288,5991.5104886786989,293965078.221012,0.0,14093307.03785499,15502637.741640486 + 11/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,27559405.836814237,0.0,60811274.36851794,0.0,31193619.851725043,0.0,47569143.311112377,0.0,20365.49382281368,20046.668217838414,20072.500395957984,24162.881022076836,471864599.8194425,0.0,56373228.15141996,38756594.35410121 + 11/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13736628.626770718,0.0,63931205.60502346,0.0,34607330.71432927,0.0,52597361.10264986,0.0,17856.67285407985,17577.123309390197,17599.773226834033,21186.26071025806,432063914.41079708,0.0,56373228.15141996,38756594.35410121 + 11/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,60399426.221269119,0.0,35487155.62736608,0.0,52679782.17739426,0.0,12789.733429949742,12589.507767181463,12605.730632923822,15174.530500496256,339940572.4160141,0.0,28186614.07570998,0.0 + 11/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8302639.812325007,60482395.36725795,0.0,37113937.98250448,0.0,54406727.25453947,0.0,10251.305230029026,10090.819134273821,10103.82218467683,12162.782339051731,305394484.601215,8302639.812325007,28186614.07570998,0.0 + 11/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18201206.67440918,60343585.83323098,0.0,37096241.14764004,0.0,53006213.64731461,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,227324046.86006395,18201206.67440918,28186614.07570998,0.0 + 11/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,24039354.52985062,53152071.49964198,0.0,33511712.02905052,0.0,43940954.49130551,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,207530040.15750585,24039354.52985062,28186614.07570998,0.0 + 11/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,23763415.937106983,43301337.92917764,0.0,26581565.762309839,0.0,36874219.33564444,0.0,5145.469082990373,5064.91580460985,5071.442465589298,6104.902652338137,183749351.04703147,23763415.937106983,28186614.07570998,0.0 + 11/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14487255.921041483,38831795.97858082,0.0,21338985.74218906,0.0,32212061.22106546,0.0,7716.021083609361,7595.225334123144,7605.012557194697,9154.764477070305,207838527.36902637,14487255.921041483,28186614.07570998,0.0 + 11/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,654593.7412884927,44891373.734189327,0.0,22562335.96956339,0.0,36191187.33870187,0.0,12842.557518663965,12641.504884932543,12657.79475426836,15237.204265336253,295809518.16597869,654593.7412884927,28186614.07570998,0.0 + 11/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37330927.29117338,0.0,67761237.85641763,0.0,36259387.22481595,0.0,54954103.31149608,0.0,12787.173527308476,12586.987940293597,12603.207558981816,15171.493273729886,387641559.9650326,0.0,35233267.594637479,0.0 + 11/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54500544.13332111,0.0,78279368.78800074,0.0,44170106.053511258,0.0,65218455.24368514,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,509418917.7616557,0.0,14093307.03785499,0.0 + 11/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,46377616.31629021,0.0,68135916.93414803,0.0,32950600.27128415,0.0,51959530.43738754,0.0,17840.58637934456,17561.28867141782,17583.918184314414,21167.174722043124,466374348.60474166,0.0,63419881.67034747,0.0 + 11/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,34634242.88737103,0.0,54603477.84940599,0.0,19398315.611137779,0.0,35498891.42316043,0.0,10214.917545629783,10055.001105861964,10067.958001079496,12119.609740515334,296981878.7861869,0.0,63419881.67034747,69761869.8373822 + 11/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,40562563.933946888,0.0,59264974.17229898,0.0,23279732.37532226,0.0,40469354.364767108,0.0,10189.922240835967,10030.397107227565,10043.322297681576,12089.953765506914,316049568.3268425,0.0,49326574.63249246,69761869.8373822 + 11/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45759090.80987361,0.0,63434740.7329778,0.0,26783343.18828988,0.0,44941988.71537686,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,257259560.12138213,0.0,35233267.594637479,69761869.8373822 + 11/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46955342.611372198,0.0,63499294.57749004,0.0,27414755.727911187,0.0,45485035.736483808,0.0,5110.686712121091,5030.677958245172,5037.160500264995,6063.634697026455,259826204.17682497,0.0,35233267.594637479,62010550.96656194 + 11/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49091454.736222658,0.0,64606208.82259919,0.0,29400259.942934615,0.0,47542791.09255314,0.0,2558.957584326311,2518.896625970617,2522.142481371614,3036.1054923869839,228930682.45690949,0.0,35233267.594637479,46507913.22492146 + 11/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,58542317.90276046,0.0,73543991.773588,0.0,37881916.40279717,0.0,57928889.553829889,0.0,2554.809686971846,2514.813664723026,2518.054258811716,3031.1841705108874,266125018.0446384,0.0,21139960.556782485,23253956.61246073 + 11/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20845425.079851346,0.0,33118153.930131757,0.0,4288275.8022634959,0.0,14566729.412719399,0.0,1276.5913826487129,1256.6061064054603,1258.2253716326823,1514.6269450238029,91920363.52552435,0.0,14093307.03785499,0.0 + 11/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47271078.51117079,0.0,60282368.30737646,0.0,28181461.05251406,0.0,45671094.152245309,0.0,1275.75854085953,1255.7863029098535,1257.4045117365959,1513.6388100324628,200495319.419245,0.0,14093307.03785499,0.0 + 11/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53580837.96986834,0.0,66139643.648053128,0.0,33537637.757349336,0.0,52051732.077180627,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642634,224253687.74680025,0.0,14093307.03785499,0.0 + 11/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57123572.02075015,0.0,69401994.95812202,0.0,36759853.94924367,0.0,55742814.23503566,0.0,1266.3808134439633,1246.5553855663907,1248.161699413956,1502.5124944237553,237977232.5774045,0.0,14093307.03785499,0.0 + 11/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55303366.732706729,0.0,66977039.89877805,0.0,35543923.642106968,0.0,53710126.4767918,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,230575617.0502874,0.0,14093307.03785499,0.0 + 11/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47644991.33371626,0.0,60854432.191040698,0.0,30362372.497902574,0.0,47125357.61191718,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,262059160.35097165,0.0,14093307.03785499,15502637.741640486 + 11/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,25448601.29252016,0.0,57006015.50319224,0.0,29856830.969070347,0.0,45361307.79305061,0.0,20365.49382281368,20046.668217838414,20072.500395957984,24162.881022076836,462403912.0091063,0.0,56373228.15141996,38756594.35410121 + 11/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,12464936.41492822,0.0,52613808.67881707,0.0,30748811.78983185,0.0,45034576.55350603,0.0,17988.018311993434,17706.412529657668,17729.229049458096,21342.09708230816,410018858.5413857,0.0,56373228.15141996,38756594.35410121 + 11/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10677075.659823042,43897009.37451698,0.0,25636847.681108077,0.0,38753290.726381469,0.0,12865.45779139668,12664.046649623586,12680.365566323997,15264.374564776468,300794428.24164119,10677075.659823042,28186614.07570998,0.0 + 11/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,21291091.248934449,45647572.37476862,0.0,27546919.867884526,0.0,41253539.423844117,0.0,10304.407621900022,10143.090198293834,10156.160605298028,12225.786299963751,268634032.67813757,21291091.248934449,28186614.07570998,0.0 + 11/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,26914025.290821464,42681806.17286809,0.0,26498082.246299648,0.0,38479628.11514856,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,184839743.53857354,26914025.290821464,28186614.07570998,0.0 + 11/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,28976029.16532161,36392803.31323027,0.0,23422268.12813343,0.0,30832686.039386047,0.0,5158.566176384947,5077.807860564071,5084.351134273481,6120.441853704008,167835958.77048517,28976029.16532161,28186614.07570998,0.0 + 11/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,10626239.126402468,33893991.050822068,0.0,20542095.367271048,0.0,29657000.710668986,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,161265203.53998865,10626239.126402468,28186614.07570998,0.0 + 11/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,37783644.30741054,0.0,21070028.21204447,0.0,32210835.34848399,0.0,7733.715727451642,7612.642965015142,7622.45263248188,9175.75849654309,206784959.2253093,0.0,28186614.07570998,0.0 + 11/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,10542032.444489126,0.0,43323493.84603073,0.0,22500402.752262609,0.0,35341160.07060446,0.0,12888.080150899912,12686.314851868598,12702.662463420469,15291.2151307785,304552870.4624698,0.0,28186614.07570998,0.0 + 11/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30114904.413132136,0.0,53806707.88159308,0.0,27896056.853415185,0.0,43030401.25090824,0.0,12877.322736075663,12675.725846380214,12692.059812917716,15278.451868725297,347532887.34980466,0.0,35233267.594637479,0.0 + 11/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39203373.45689908,0.0,60652086.38667165,0.0,33275174.610284926,0.0,49885519.80170711,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,452373945.4844755,0.0,14093307.03785499,0.0 + 11/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,27976597.324081985,0.0,47482018.917832378,0.0,20007212.59892504,0.0,33793937.32366379,0.0,18025.973598431156,17743.77361900566,17766.638282383075,21387.129580824163,398984420.45482179,0.0,63419881.67034747,0.0 + 11/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,17093237.59109938,0.0,35291404.69502831,0.0,7369650.364383883,0.0,18583419.30951216,0.0,10289.492120809658,10128.408202155526,10141.459689909136,12208.089627279714,232300530.6645783,0.0,63419881.67034747,69761869.8373822 + 11/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,23221629.46370487,0.0,40523389.027665387,0.0,11353548.331036702,0.0,23877011.05734582,0.0,10285.04625670184,10124.03193887969,10137.077787371394,12202.814779224856,252871872.62359277,0.0,49326574.63249246,69761869.8373822 + 11/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,28784830.13492989,0.0,45012172.58208166,0.0,15133076.961079654,0.0,28668555.121434194,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,194512313.47245176,0.0,35233267.594637479,69761869.8373822 + 11/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,32239568.277237357,0.0,47593969.86522059,0.0,17475314.809239065,0.0,31580035.732200814,0.0,5138.6391256853189,5058.192771560533,5064.7107692256909,6096.799168711188,205778919.29055567,0.0,35233267.594637479,62010550.96656194 + 11/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36890901.72929908,0.0,51534555.054395187,0.0,20948944.086777159,0.0,35983313.9204517,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,183826110.6612168,0.0,35233267.594637479,46507913.22492146 + 11/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,44688927.69737517,0.0,58409301.21564727,0.0,28161423.195855738,0.0,44605840.81707099,0.0,2572.3730302024148,2532.1020505388817,2535.364922477284,3052.0224068199288,214356197.6020878,0.0,21139960.556782485,23253956.61246073 + 11/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,6243498.22692151,0.0,16175828.59489439,0.0,0.0,0.0,2803913.2057669165,0.0,1287.8927441182876,1267.730542952962,1269.3641431521233,1528.0355790079646,44494122.86081563,0.0,14093307.03785499,0.0 + 11/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28389927.74853059,0.0,40063794.62987231,0.0,8730582.844596789,0.0,25394276.408619666,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,121856464.7191804,0.0,14093307.03785499,0.0 + 11/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30328747.596010828,0.0,40356342.013599257,0.0,15894208.819766246,0.0,28512154.504800179,0.0,1288.8080150899912,1268.63148518686,1270.2662463420468,1529.12151307785,134376031.0690848,0.0,14093307.03785499,0.0 + 11/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30629984.653078464,0.0,39906574.594696078,0.0,16750707.024491873,0.0,28730841.405866118,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,135309075.07524897,0.0,14093307.03785499,0.0 + 11/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,31220310.930330568,0.0,39935537.039776939,0.0,17426025.910457016,0.0,29157099.971488775,0.0,1289.235015996456,1269.051801314477,1270.6871040898953,1529.6281333537439,137029941.24916975,0.0,14093307.03785499,0.0 + 11/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28001084.712532958,0.0,36570777.44886969,0.0,14575808.71499983,0.0,25410323.65048325,0.0,1289.3728018893938,1269.1874301435567,1270.8229076905646,1529.7916110561035,123851023.62969235,0.0,14093307.03785499,15502637.741640486 + 11/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37976493.55745818,0.0,48456718.52678211,0.0,26428025.725600486,0.0,39586799.4525395,0.0,5159.604686554806,5078.830112663488,5085.374703649067,6121.674006378175,229651777.89566422,0.0,56373228.15141996,38756594.35410121 + 11/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46121502.57063203,0.0,56613197.47163673,0.0,34707486.63349519,0.0,48987164.629455309,0.0,12895.083116894008,12693.208185123653,12709.564679439012,15299.52388261085,379379918.8158623,0.0,56373228.15141996,38756594.35410121 + 11/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32210586.495605045,0.0,47696247.10918565,0.0,29062420.723068406,0.0,41965512.910910937,0.0,12912.66995454923,12710.51969755456,12726.898499520636,15320.389994157906,344148488.5635864,0.0,28186614.07570998,0.0 + 11/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25003700.98209223,0.0,41389252.94981561,0.0,25365618.859776405,0.0,37097524.51505889,0.0,12919.941219283466,12717.67712928293,12734.065154330332,15329.017072203838,322178619.3771052,0.0,28186614.07570998,0.0 + 11/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26848212.876791955,0.0,37884989.015982497,0.0,22928205.687301414,0.0,33900964.21696729,0.0,7755.057368149637,7633.65049834673,7643.48723616436,9201.079538570753,237602160.5054765,0.0,28186614.07570998,0.0 + 11/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25104248.25627183,0.0,35323323.5222,0.0,20970505.778201425,0.0,31259037.01367327,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,228713631.13947145,0.0,28186614.07570998,0.0 + 11/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,25633620.95879172,0.0,35274862.7038353,0.0,20236423.66873089,0.0,30605736.23876542,0.0,7756.175308131719,7634.750936769841,7644.5890926146989,9202.4059316851,227807160.13924826,0.0,28186614.07570998,0.0 + 11/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27692835.403970209,0.0,36651276.89760049,0.0,20217181.436250207,0.0,30874065.686132507,0.0,7756.851368057055,7635.416412850927,7645.255426229639,9203.208050979718,231501991.9531758,0.0,28186614.07570998,0.0 + 11/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38138954.7793304,0.0,47775710.709627788,0.0,24858688.78224622,0.0,38511529.10414544,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,419864104.73915556,0.0,28186614.07570998,0.0 + 11/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,44109475.785255569,0.0,53484961.05514462,0.0,27618766.247278818,0.0,42485536.32712671,0.0,23227.074777996422,22863.450589340366,22892.91247904862,27558.037592140725,515248050.9934999,0.0,35233267.594637479,0.0 + 11/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47313650.62916223,0.0,55812704.87765602,0.0,30690563.921653633,0.0,45797950.976248268,0.0,18065.502605108322,17782.68379170917,17805.59859481559,21434.029238331674,449931001.6325933,0.0,14093307.03785499,0.0 + 11/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,40188225.92850308,0.0,49640421.025104578,0.0,21133227.085297347,0.0,35507919.95188534,0.0,18062.123443729644,17779.357531732254,17802.26804861319,21430.019992346388,416735362.44990769,0.0,63419881.67034747,0.0 + 11/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,29697110.092790516,0.0,39676619.314719539,0.0,9223507.670065,0.0,21776881.872418994,0.0,15472.473622672722,15230.249161722677,15249.874892286774,18357.499332673244,331890468.1836735,0.0,63419881.67034747,69761869.8373822 + 11/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,32364889.071756893,0.0,42030427.03682138,0.0,11497394.270305509,0.0,24582404.796887123,0.0,12905.10299306992,12703.071198268826,12719.440402083319,15311.412083211382,303575611.21165129,0.0,49326574.63249246,69761869.8373822 + 11/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,32830324.71836008,0.0,41718748.26074987,0.0,12865660.19010261,0.0,25600092.46376771,0.0,10323.144345776187,10161.533595262386,10174.627768466053,12248.0167076181,267481186.33462207,0.0,35233267.594637479,69761869.8373822 + 11/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31010459.34066974,0.0,38970577.20308268,0.0,12534054.78824818,0.0,24280823.514602595,0.0,7746.994624915723,7625.713978862246,7635.540489664457,9191.513401497543,222715059.82838709,0.0,35233267.594637479,62010550.96656194 + 11/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,31154771.54907268,0.0,38786044.920154679,0.0,13225996.988727583,0.0,24840748.99808456,0.0,5170.544336471639,5089.598500320083,5096.156967472264,6134.653483412389,185374994.29167445,0.0,35233267.594637479,46507913.22492146 + 11/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,39999866.191049139,0.0,48061149.93389574,0.0,20766740.455109303,0.0,34673438.1586014,0.0,2585.2721682358198,2544.7992501600417,2548.078483736132,3067.3267417061945,182184910.65647305,0.0,21139960.556782485,23253956.61246073 + 11/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,3318524.800631928,0.0,9258525.916311048,0.0,0.0,0.0,0.0,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,31917979.347285376,0.0,14093307.03785499,0.0 + 11/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24065957.079475546,0.0,31503527.142780298,0.0,4750634.055240911,0.0,14069941.828611417,0.0,1292.1529077123876,1271.9240128912634,1273.5630168044589,1533.0901004919224,93724688.24254829,0.0,14093307.03785499,0.0 + 11/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25702544.24562327,0.0,31844956.92724514,0.0,9856601.682786797,0.0,20674018.5588817,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,107417087.84588339,0.0,14093307.03785499,0.0 + 11/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25090626.63259647,0.0,30849155.99059272,0.0,10670862.737362523,0.0,20545801.320682389,0.0,1292.5739761424816,1272.3384894165343,1273.978027425037,1533.589682111059,106497375.31157649,0.0,14093307.03785499,0.0 + 11/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24071959.348568694,0.0,29485736.928434254,0.0,10586889.062050853,0.0,19826767.34590199,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,103315791.43982619,0.0,14093307.03785499,0.0 + 11/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19956623.878349335,0.0,25192536.912845285,0.0,7234426.101923993,0.0,15325034.815606526,0.0,1292.9602571636954,1272.7187231363003,1274.3587511147608,1534.0479897974759,87055330.30508915,0.0,14093307.03785499,15502637.741640486 + 11/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,32773514.02268254,0.0,37813781.985207069,0.0,19942051.26156483,0.0,29764141.308976979,0.0,1293.0911584806107,1272.8475751686793,1274.4877691861353,1534.2032992131854,139642155.8658064,0.0,56373228.15141996,38756594.35410121 + 11/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40795749.85382963,0.0,46710296.339170318,0.0,28206424.100267255,0.0,40489599.93657436,0.0,5172.933309137918,5091.950073173608,5098.511570567432,6137.487908288236,233605248.53004346,0.0,56373228.15141996,38756594.35410121 + 11/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34266530.408230859,0.0,40736714.79293058,0.0,23872703.34515123,0.0,34964403.04959048,0.0,7759.743205097005,7638.262977642545,7648.105659110533,9206.639105239412,249950255.00542534,0.0,28186614.07570998,0.0 + 11/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27202321.39615466,0.0,34001683.165165279,0.0,20149500.112466478,0.0,29829805.974483923,0.0,7760.5607879933909,7639.067761126168,7648.911479639818,9207.609136136916,227305447.641897,0.0,28186614.07570998,0.0 + 11/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21527637.407658537,0.0,28060304.3052388,0.0,16894825.020440978,0.0,25132620.78796787,0.0,5173.727089041783,5092.731426304999,5099.293930552083,6138.42969784373,169030443.2387795,0.0,28186614.07570998,0.0 + 11/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22295053.119355576,0.0,29283581.678588768,0.0,16376484.63591772,0.0,25055194.462045339,0.0,5173.659639222243,5092.665032424967,5099.22745111676,6138.349671207563,170424360.3542049,0.0,28186614.07570998,0.0 + 11/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,24907005.177241908,0.0,31716031.202826099,0.0,16989545.95303849,0.0,26366698.139609286,0.0,7760.63624747749,7639.142039277966,7648.985853506596,9207.698665934333,216102546.5750228,0.0,28186614.07570998,0.0 + 11/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29362172.31083879,0.0,35559779.92538885,0.0,18641347.03559165,0.0,28871000.88073014,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,267263816.14405168,0.0,28186614.07570998,0.0 + 11/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32754026.69370891,0.0,38857238.84818377,0.0,20078798.87819707,0.0,31022717.565574297,0.0,12934.06619581777,12731.580976674575,12747.986918248478,15345.775817678286,316246657.65597286,0.0,28186614.07570998,0.0 + 11/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33943719.12290959,0.0,40078458.880367819,0.0,19775980.945898687,0.0,30971012.84458581,0.0,15520.879434981323,15277.897172009489,15297.584301898172,18414.930981213947,357009822.5981325,0.0,35233267.594637479,0.0 + 11/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36128139.437953878,0.0,42142695.099179718,0.0,21780743.173132004,0.0,33388326.050877669,0.0,18107.975171984577,17824.491442627725,17847.460119159572,21484.4213176528,404391556.7462721,0.0,14093307.03785499,0.0 + 11/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,24165032.50464237,0.0,30348484.99422603,0.0,9897806.416903234,0.0,19087813.292466888,0.0,10347.414383991187,10185.42368150156,10198.548639519757,12276.812181515887,238328653.19974075,0.0,63419881.67034747,0.0 + 11/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,9543799.61047703,0.0,15903586.302832239,0.0,0.0,0.0,1785443.8008450056,0.0,7760.63624747749,7639.142039277966,7648.985853506596,9207.698665934333,143356095.81646127,0.0,63419881.67034747,69761869.8373822 + 11/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,10469758.897181958,0.0,16615277.927240979,0.0,0.0,0.0,3091009.725376818,0.0,5173.555151448471,5092.562180426787,5099.124466583282,6138.225700452527,107588529.5458796,0.0,49326574.63249246,69761869.8373822 + 11/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,13184700.159921099,0.0,19278952.699136747,0.0,0.0,0.0,6260345.9010989409,0.0,5173.757498318326,5092.761359518646,5099.32390233773,6138.465777289554,116139509.4950281,0.0,35233267.594637479,69761869.8373822 + 11/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,15632003.925879963,0.0,21819725.022633774,0.0,5974.579700664614,0.0,8942542.29558363,0.0,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,123815399.84904742,0.0,35233267.594637479,62010550.96656194 + 11/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,17882352.770418727,0.0,23769186.234052544,0.0,3840749.7691713718,0.0,11860060.872118704,0.0,5173.73365905067,5092.7378934591729,5099.300406039844,6138.4374929084819,134767503.67101077,0.0,35233267.594637479,46507913.22492146 + 11/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,24087534.075046399,0.0,29460244.4034376,0.0,10499256.26709403,0.0,19555286.330280819,0.0,2586.8794061663559,2546.3813264809457,2549.6625987238546,3069.233668158732,122310086.27416645,0.0,21139960.556782485,23253956.61246073 + 11/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4267979988984,1273.1779601876947,1274.8185799399697,1534.6015226894857,19353689.498937776,0.0,14093307.03785499,0.0 + 11/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,5444671.813821981,0.0,11511122.280503665,0.0,0.0,0.0,0.0,0.0,1293.4397030831779,1273.1906632404728,1274.8312993619273,1534.616834079366,36309676.69347944,0.0,14093307.03785499,0.0 + 11/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,9700747.620851277,0.0,13593672.970325564,0.0,0.0,0.0,3520848.822365267,0.0,1293.4149098055607,1273.1662581062417,1274.80686277919,1534.5874178018908,46168781.02811649,0.0,14093307.03785499,0.0 + 11/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11135782.379734889,0.0,15165283.938019483,0.0,0.0,0.0,6648090.146168102,0.0,1293.3887878621179,1273.1405451066967,1274.7811166458205,1534.5564251131319,52302277.21294244,0.0,14093307.03785499,0.0 + 11/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12580571.804822458,0.0,16732907.884071622,0.0,1566994.3068329739,0.0,8254174.027632158,0.0,1293.4149098055607,1273.1662581062417,1274.80686277919,1534.5874178018908,58488159.63793358,0.0,14093307.03785499,0.0 + 11/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10901129.66301994,0.0,15125476.287502718,0.0,450774.94506611846,0.0,6260999.351494972,0.0,5173.750865884744,5092.754830917048,5099.317365323363,6138.457908160285,110153791.74011132,0.0,14093307.03785499,15502637.741640486 + 11/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,22295215.0391498,0.0,27796680.525607628,0.0,13421311.388926244,0.0,20173171.694494346,0.0,20695.029993273303,20371.04543807458,20397.29560935092,24553.86310915822,393348421.58766326,0.0,56373228.15141996,38756594.35410121 + 11/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37008844.76101394,0.0,41952815.856600519,0.0,24188661.63163912,0.0,35599752.90151924,0.0,18108.114233489683,17824.628327099024,17847.597180020486,21484.5863088203,409703808.928719,0.0,56373228.15141996,38756594.35410121 + 11/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33867081.02933077,0.0,38938412.83837323,0.0,22691305.175053844,0.0,33204707.94871365,0.0,12934.244985178519,12731.756967054533,12748.16313541,15345.98794443001,322238057.9069345,0.0,28186614.07570998,0.0 + 11/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32544868.244456516,0.0,37671913.994694899,0.0,21505217.49018717,0.0,31856183.48923452,0.0,10347.224049724615,10185.236326953438,10198.361043546176,12276.586357174103,278404851.2172071,0.0,28186614.07570998,0.0 + 11/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32750958.2732523,0.0,37959341.87375594,0.0,21401778.920327147,0.0,31861698.741480434,0.0,5173.757498318326,5092.761359518646,5099.32390233773,6138.465777289554,201389288.5436871,0.0,28186614.07570998,0.0 + 11/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35733359.6822298,0.0,41312615.81913837,0.0,23081304.553442643,0.0,34386513.11525465,0.0,5173.162136731336,5092.175318428364,5098.737106073689,6137.75940349294,211920395.44308023,0.0,28186614.07570998,0.0 + 11/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38714055.26171055,0.0,44749061.51272916,0.0,25197154.997068325,0.0,37474836.5518166,0.0,5171.013509123259,5090.060327986318,5096.619390250585,6135.210138854114,223509560.44169603,0.0,28186614.07570998,0.0 + 11/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42541031.15511301,0.0,49068067.24127356,0.0,27329923.369361547,0.0,40692178.7065471,0.0,7755.443856854889,7634.030936499203,7643.868164550223,9201.538092666355,275676772.2543496,0.0,28186614.07570998,0.0 + 11/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45036674.16815732,0.0,51893339.07614778,0.0,28591808.42751269,0.0,42661807.69336246,0.0,12925.09561358273,12722.750830577885,12739.145393607267,15335.132564284586,361583277.2125692,0.0,28186614.07570998,0.0 + 11/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45420568.575636129,0.0,52407382.65841327,0.0,28460532.75384536,0.0,42601342.07027401,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.02392617774,362187211.4863831,0.0,35233267.594637479,0.0 + 11/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47789554.905677,0.0,54618208.262042749,0.0,31050774.951303465,0.0,45546356.69923136,0.0,18083.085187081804,17799.99111508183,17822.92822044094,21454.890300674797,449584116.18206039,0.0,14093307.03785499,0.0 + 11/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,33429924.069500224,0.0,40545632.917162019,0.0,16833612.543797714,0.0,28446418.274365128,0.0,18087.917706996854,17804.7479809961,17827.691216062463,21460.62390108537,389907118.70333197,0.0,63419881.67034747,0.0 + 11/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,21433611.421173444,0.0,29274947.73583492,0.0,3832658.934376281,0.0,13404779.127664913,0.0,10334.609049491935,10172.818816902727,10185.927532266336,12261.619140942192,222583905.56162108,0.0,63419881.67034747,69761869.8373822 + 11/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,25547887.54365035,0.0,33704640.976893197,0.0,6926865.521433111,0.0,17686501.32731855,0.0,10333.909487659703,10172.13020684148,10185.23803486074,12260.789137532165,238493336.09011395,0.0,49326574.63249246,69761869.8373822 + 11/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29521347.719054905,0.0,37821393.36259905,0.0,10255800.04709106,0.0,22044564.28735348,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,176934515.17053963,0.0,35233267.594637479,69761869.8373822 + 11/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30752685.261829698,0.0,38905710.22507245,0.0,11800028.830544303,0.0,23726333.164017098,0.0,5164.663083277148,5083.809319241499,5090.36032644297,6127.675600998361,182464187.46931947,0.0,35233267.594637479,62010550.96656194 + 11/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,32987196.00435689,0.0,40818758.035498987,0.0,14643441.620307528,0.0,26807891.969034073,0.0,2581.912885301814,2541.4925574270416,2544.7675299920385,3063.3410807367097,153890738.22164483,0.0,35233267.594637479,46507913.22492146 + 11/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,43352333.36753674,0.0,51558506.58556071,0.0,23476552.45829504,0.0,38215239.26791388,0.0,2581.69668225341,2541.2797390776929,2544.554437404525,3063.084564072756,195232847.20141656,0.0,21139960.556782485,23253956.61246073 + 11/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,7764120.733636364,0.0,13211037.500083216,0.0,0.0,0.0,917422.9239150183,0.0,1290.5102993069923,1270.307119826883,1271.944040208332,1531.1412083211383,41202630.761222649,0.0,14093307.03785499,0.0 + 11/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,30410549.95121318,0.0,38048795.82757696,0.0,10654107.27044106,0.0,23136022.21347756,0.0,1290.2735012547228,1270.0740288922962,1271.710648912285,1530.8602564712579,121555981.6306188,0.0,14093307.03785499,0.0 + 11/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32506768.01209058,0.0,39453403.83214935,0.0,15099421.606077418,0.0,27480778.88912676,0.0,1290.1516745521176,1269.954109409447,1271.5905749009424,1530.715713739028,133845055.80080962,0.0,14093307.03785499,0.0 + 11/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33695481.34735294,0.0,40522608.3660904,0.0,16678362.275433638,0.0,28995995.44299657,0.0,1289.9011716387016,1269.707528165872,1271.3436759122668,1530.4185015945439,139193382.59019456,0.0,14093307.03785499,0.0 + 11/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33207859.948380095,0.0,39651449.302041169,0.0,17136951.628126578,0.0,28859147.208383569,0.0,1289.9011716387016,1269.707528165872,1271.3436759122668,1530.4185015945439,138156343.2452524,0.0,14093307.03785499,0.0 + 11/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28123980.95770869,0.0,33999627.49683873,0.0,13525133.63111252,0.0,23587238.583095824,0.0,5160.60669820847,5079.816437637788,5086.362299603769,6122.862854956112,176454714.51421789,0.0,14093307.03785499,15502637.741640486 + 11/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44142402.69342252,0.0,51126316.594447519,0.0,27776240.549886038,0.0,41803159.702989149,0.0,20648.164788911876,20324.91391723013,20351.10464333331,24498.259333138212,473808913.1981539,0.0,56373228.15141996,38756594.35410121 + 11/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,41085734.77289278,0.0,50007828.71353978,0.0,28221520.96625951,0.0,40484189.806438039,0.0,18067.144190297888,17784.299677576353,17807.216562916645,21435.976916495933,430139968.7093626,0.0,56373228.15141996,38756594.35410121 + 11/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53722881.56455567,0.0,61335966.918088387,0.0,36257863.74576207,0.0,52249466.41335405,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,396733431.603997,0.0,28186614.07570998,0.0 + 11/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52806561.25114383,0.0,60508443.94366455,0.0,35449855.59506427,0.0,51584712.575307,0.0,10327.651541207257,10165.970229708166,10179.070119968153,12253.364322946838,354883375.73496916,0.0,28186614.07570998,0.0 + 11/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50284061.27371151,0.0,58104881.689291167,0.0,34035953.71967606,0.0,49810218.24939223,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473419,269502016.1169657,0.0,28186614.07570998,0.0 + 11/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51936030.49593247,0.0,59820099.5853681,0.0,34330797.327124249,0.0,50556257.9950981,0.0,5163.825770603628,5082.985114854083,5089.535059984077,6126.682161473419,273910086.58841767,0.0,28186614.07570998,0.0 + 11/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54342249.563294839,0.0,62493172.56016034,0.0,35323575.03822306,0.0,52181849.19198963,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,281581044.76802006,0.0,28186614.07570998,0.0 + 11/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55997031.85623525,0.0,64322475.67755732,0.0,36233693.00656395,0.0,53554582.91886383,0.0,7740.165385698941,7618.991652659396,7628.809501058161,9183.41076985492,325924741.77259746,0.0,28186614.07570998,0.0 + 11/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57741112.865003529,0.0,66251466.541231278,0.0,37147450.054720539,0.0,54942218.20045832,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,409072345.6392796,0.0,28186614.07570998,0.0 + 11/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57489628.50921035,0.0,66142758.40769936,0.0,36296248.66327652,0.0,54112835.58126805,0.0,12897.724978315118,12695.808687711376,12712.168533039747,15302.658350340947,407031569.13932016,0.0,35233267.594637479,0.0 + 11/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61542322.05628418,0.0,70362237.33188465,0.0,39707164.134084168,0.0,58503655.11719081,0.0,18037.048095513583,17754.674742770316,17777.553453358356,21400.269048872917,500005741.8652984,0.0,14093307.03785499,0.0 + 11/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,50067307.145016279,0.0,59559754.42214936,0.0,27384522.89820279,0.0,44176360.461078558,0.0,18023.66374329176,17741.499925079377,17764.3616585701,21384.389025873865,450878036.59658136,0.0,63419881.67034747,0.0 + 11/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38419432.08735566,0.0,48595852.329166468,0.0,14930946.772614867,0.0,29662075.50945364,0.0,10290.938165980746,10129.8316092197,10142.884931178596,12209.805304676274,285592762.73838976,0.0,63419881.67034747,69761869.8373822 + 11/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,43647421.36739938,0.0,54199007.66931697,0.0,19021873.992584807,0.0,35176287.34926508,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,305871947.72441896,0.0,49326574.63249246,69761869.8373822 + 11/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46644156.2316631,0.0,57059194.662909317,0.0,22230477.439803438,0.0,38914843.19733271,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,241702228.90761645,0.0,35233267.594637479,69761869.8373822 + 11/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47645326.21594794,0.0,57769731.8773581,0.0,23925118.065076639,0.0,40603270.02524405,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,246733552.99895875,0.0,35233267.594637479,62010550.96656194 + 11/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52076394.320029888,0.0,62219000.79870046,0.0,28004083.525522878,0.0,45629555.84522047,0.0,2563.2901482753925,2523.161362822836,2526.4127137725597,3041.245914128435,226283830.98987089,0.0,35233267.594637479,46507913.22492146 + 11/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,59727001.70420353,0.0,69519674.86976177,0.0,35695271.28068443,0.0,54736002.61656146,0.0,2563.7495851555797,2523.6136071329567,2526.865540845633,3041.7910184489935,258039621.57691057,0.0,21139960.556782485,23253956.61246073 + 11/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20819698.686882959,0.0,28825195.956133367,0.0,2756061.632154134,0.0,11938011.705258046,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642173,83516366.2306271,0.0,14093307.03785499,0.0 + 11/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45510012.125373158,0.0,54249163.02266965,0.0,24280238.42174811,0.0,40436991.89217557,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,183653803.71216507,0.0,14093307.03785499,0.0 + 11/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,47101379.43206702,0.0,55489831.200833369,0.0,26209663.56397919,0.0,42257238.07862729,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,190228537.10990084,0.0,14093307.03785499,0.0 + 11/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48450911.076353657,0.0,56747514.235614728,0.0,27857808.71943137,0.0,43931820.295611519,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,196147772.51564289,0.0,14093307.03785499,0.0 + 11/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49186360.55965376,0.0,57393251.99380962,0.0,28858441.32137323,0.0,44877952.614746239,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,199475724.6782145,0.0,14093307.03785499,0.0 + 11/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45598918.82016182,0.0,53493729.919433,0.0,26064465.28208297,0.0,40983856.52662018,0.0,5119.902066879404,5039.7490449056199,5046.243275946471,6074.568363675475,242750636.45336307,0.0,14093307.03785499,15502637.741640486 + 11/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,47477130.41981324,0.0,56749640.38769869,0.0,31628034.100036265,0.0,44644689.410490799,0.0,20475.65193947734,20155.101788635726,20181.073694478855,24293.579422504437,486878958.96038588,0.0,56373228.15141996,38756594.35410121 + 11/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60267361.37961987,0.0,70476791.23837313,0.0,39840503.108627367,0.0,58077596.9588663,0.0,17912.703090284176,17632.276381794316,17654.997369601297,21252.738446708885,496692027.7236859,0.0,56373228.15141996,38756594.35410121 + 11/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63858997.80740414,0.0,74185299.55199069,0.0,46876633.410306889,0.0,66424296.5640285,0.0,12804.634976004549,12604.1760267529,12620.417794044875,15192.210616063301,442942409.2200465,0.0,28186614.07570998,0.0 + 11/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63698105.60845432,0.0,73865454.27462235,0.0,46088343.35014875,0.0,65702621.680714149,0.0,10239.804133758807,10079.498089811239,10092.486551892942,12149.13672735095,402573856.7240697,0.0,28186614.07570998,0.0 + 11/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59723984.850213278,0.0,70573698.18669582,0.0,44181096.53568857,0.0,63207827.68033041,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,314325480.00745466,0.0,28186614.07570998,0.0 + 11/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58138707.04554034,0.0,69257040.7378435,0.0,43112798.165862377,0.0,61842973.24708803,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,308990391.95086076,0.0,28186614.07570998,0.0 + 11/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56296203.75428781,0.0,67805532.02397275,0.0,41799889.55063079,0.0,60297415.68584003,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,302894753.01318797,0.0,28186614.07570998,0.0 + 11/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57731158.807538937,0.0,68783454.29360737,0.0,41624886.73024611,0.0,60318837.483618099,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,343501905.3126954,0.0,28186614.07570998,0.0 + 11/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61760611.40110497,0.0,72218912.62651229,0.0,42711394.85420607,0.0,62116405.48320733,0.0,12814.131537536283,12613.523917842276,12629.777730846037,15203.477923814664,430546604.361172,0.0,28186614.07570998,0.0 + 11/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63843764.41454109,0.0,73756726.9361579,0.0,42542296.954586017,0.0,62150212.20871743,0.0,12811.790336509048,12611.219368753873,12627.470212110915,15200.700178164989,433997248.8579421,0.0,35233267.594637479,0.0 + 11/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66351277.182098899,0.0,76004121.05431223,0.0,44914186.410700697,0.0,64927440.13328945,0.0,17929.85884614787,17649.163561099558,17671.90630976071,21273.093096165692,520483503.307827,0.0,14093307.03785499,0.0 + 11/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52424244.19511994,0.0,62279418.07017835,0.0,31056441.541847797,0.0,48237700.734835889,0.0,17926.488966406367,17645.84643745406,17668.584911662827,21269.09486248862,462233859.1828247,0.0,63419881.67034747,0.0 + 11/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,39270633.25310347,0.0,49751528.42559773,0.0,17230603.957392225,0.0,32015800.983928965,0.0,10253.16059310157,10092.645451291344,10105.650855090238,12164.98365651374,291687752.6216112,0.0,63419881.67034747,69761869.8373822 + 11/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,43388376.10468628,0.0,54328182.763164978,0.0,20380337.00926235,0.0,36409247.12498997,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,307812702.1606326,0.0,49326574.63249246,69761869.8373822 + 11/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47829395.9154055,0.0,58952793.01189084,0.0,24006582.2293018,0.0,41176138.06245309,0.0,5120.882405192407,5040.71403583945,5047.209510369615,6075.731497662039,248589244.03567986,0.0,35233267.594637479,69761869.8373822 + 11/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51273420.48261087,0.0,62386896.59626734,0.0,26883386.350087968,0.0,44817324.879939857,0.0,5111.745395024433,5031.720067270165,5038.203952153832,6064.890783878859,261848645.02288426,0.0,35233267.594637479,62010550.96656194 + 11/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54808626.49551622,0.0,65835811.15782441,0.0,30164569.630107088,0.0,48825567.5953381,0.0,2559.4564924346675,2519.3877235794659,2522.634211809857,3036.6974278130549,237932007.95907919,0.0,35233267.594637479,46507913.22492146 + 11/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,63017316.24300921,0.0,74058175.04446213,0.0,37956190.82709304,0.0,58394849.99088176,0.0,2558.957584326311,2518.896625970617,2522.142481371614,3036.1054923869839,271716499.96804609,0.0,21139960.556782485,23253956.61246073 + 11/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28967489.46362998,0.0,38522022.25865904,0.0,7412164.038808556,0.0,21179079.85084862,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,115221974.29748732,0.0,14093307.03785499,0.0 + 11/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49700945.06136207,0.0,59534739.300427887,0.0,27307804.11262676,0.0,44759940.127654839,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,200444647.28761266,0.0,14093307.03785499,0.0 + 11/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51092632.89190891,0.0,60389810.720273848,0.0,29169169.608576593,0.0,46493809.49302706,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,206271254.77442596,0.0,14093307.03785499,0.0 + 11/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51828171.74089876,0.0,60595167.463526289,0.0,30559287.35792246,0.0,47520401.09606621,0.0,1277.404843485923,1257.406832361513,1259.027129405858,1515.5920852554437,209616978.86424519,0.0,14093307.03785499,0.0 + 11/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54039520.3076841,0.0,62839330.91363095,0.0,32635865.45172272,0.0,49951643.40842305,0.0,1274.9063900393338,1254.947492669716,1256.5646206038485,1512.6277656128967,218542926.64959369,0.0,14093307.03785499,0.0 + 11/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52799707.44133845,0.0,63007214.9645218,0.0,31716875.26896162,0.0,49118927.514672119,0.0,5080.1543588076979,5000.6235946187039,5007.067408523409,6027.40922531169,272657641.70363536,0.0,14093307.03785499,15502637.741640486 + 11/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,41405156.981647718,0.0,67293136.69803927,0.0,35485097.2171238,0.0,53788306.19985667,0.0,20340.899089503433,20022.45851966628,20048.259501118726,24133.700309842912,502334839.8091403,0.0,56373228.15141996,38756594.35410121 + 11/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,20942342.466533629,0.0,69807058.80132038,0.0,40021417.83997545,0.0,59311141.9221417,0.0,17836.490052871486,17557.25647369985,17579.880790698124,21162.314587049215,456971351.8855184,0.0,56373228.15141996,38756594.35410121 + 11/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,64888402.81119907,0.0,37989220.494681257,0.0,56388130.37547734,0.0,12774.04843485923,12574.068323615127,12590.271294058579,15155.920852554436,350405265.7396722,0.0,28186614.07570998,0.0 + 11/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,64655150.76145259,0.0,39539261.75622099,0.0,57906713.50647466,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,315407685.18267729,0.0,28186614.07570998,0.0 + 11/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9122579.774251156,64477379.87441553,0.0,39875325.404648948,0.0,56806701.58978311,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,237936425.3858001,9122579.774251156,28186614.07570998,0.0 + 11/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16742853.717103553,56162312.23277789,0.0,35747868.1513329,0.0,46793321.16261236,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,215617180.21964953,16742853.717103553,28186614.07570998,0.0 + 11/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18913736.07198028,45450454.70546159,0.0,27992661.63813846,0.0,38753650.13956219,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,189199678.6670161,18913736.07198028,28186614.07570998,0.0 + 11/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,9237689.774613668,41013217.981780428,0.0,22350024.799530429,0.0,33797897.57474893,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,212696955.24403567,9237689.774613668,28186614.07570998,0.0 + 11/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,46304037.69936675,0.0,23249113.166786683,0.0,37359256.24712985,0.0,12861.865151012073,12660.510252694405,12676.82461238642,15260.112034099644,299365930.4939764,0.0,28186614.07570998,0.0 + 11/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39024634.76961185,0.0,66571886.561043139,0.0,35385814.95223015,0.0,53826101.32579561,0.0,12827.716031319813,12626.89574384144,12643.166787807837,15219.595407136816,386750983.901062,0.0,35233267.594637479,0.0 + 11/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52966942.31609511,0.0,75040386.3169891,0.0,42000782.68847671,0.0,62265626.0370056,0.0,17929.85884614787,17649.163561099558,17671.90630976071,21273.093096165692,500560215.8859922,0.0,14093307.03785499,0.0 + 11/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,45810862.07183634,0.0,66099390.62320612,0.0,31809741.348424719,0.0,50282670.421228099,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,461253108.00783279,0.0,63419881.67034747,0.0 + 11/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,36427046.200790438,0.0,55604147.27506063,0.0,20098107.65434352,0.0,36516014.34734248,0.0,10208.306430585362,10048.493489056866,10061.441998545923,12111.765904876904,301393343.64057126,0.0,63419881.67034747,69761869.8373822 + 11/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,42700329.850815799,0.0,60737960.44683327,0.0,24370893.525551689,0.0,41953152.882987197,0.0,10182.74691140684,10023.334108919207,10036.250197978992,12081.440511038418,322127914.9318244,0.0,49326574.63249246,69761869.8373822 + 11/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50033387.79226471,0.0,67235885.20000783,0.0,29607186.097312657,0.0,48684007.60150446,0.0,5078.865819030884,4999.355227172474,5005.797406656265,6025.880422053089,271556102.6407754,0.0,35233267.594637479,69761869.8373822 + 11/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,55623408.15629451,0.0,72319684.86678903,0.0,33280838.854731006,0.0,53600543.29714858,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,290721837.92652067,0.0,35233267.594637479,62010550.96656194 + 11/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,58819590.48032855,0.0,74664800.45913857,0.0,35837598.58064986,0.0,56587273.34465551,0.0,2544.4696551515264,2504.635508029784,2507.862986524712,3018.9161174593575,263982446.2265678,0.0,35233267.594637479,46507913.22492146 + 11/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,66900759.7604904,0.0,81948923.43989818,0.0,43353817.77967233,0.0,65548211.552548687,0.0,2542.612386187929,2502.807314958285,2506.0324376398409,3016.712538730364,295797105.37166878,0.0,21139960.556782485,23253956.61246073 + 11/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34734782.09636328,0.0,47193600.780467618,0.0,13434856.168091314,0.0,30349493.067561889,0.0,1268.4070713236397,1248.5499220009629,1250.1588060123023,1504.916572050973,144692048.6494805,0.0,14093307.03785499,0.0 + 11/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55981970.954713027,0.0,69111700.67195776,0.0,33530748.880878584,0.0,52965060.69936404,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,230630641.50681723,0.0,14093307.03785499,0.0 + 11/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57196998.98602079,0.0,69537429.82673249,0.0,34904037.585253167,0.0,54429035.67999691,0.0,1270.676584786525,1250.7839058072094,1252.395668534701,1507.6092631420316,235080777.59817703,0.0,14093307.03785499,0.0 + 11/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57870004.15128692,0.0,69577360.37808514,0.0,35957064.76870594,0.0,55147282.3853423,0.0,1271.9273904594755,1252.0151298840124,1253.6284791693955,1509.0932963267997,237583703.14844314,0.0,14093307.03785499,0.0 + 11/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58610107.9120602,0.0,70021258.44540915,0.0,36506393.68025211,0.0,55643025.64287543,0.0,1273.144457320642,1253.2131433364237,1254.8280363844188,1510.5372996992756,239830988.25286366,0.0,14093307.03785499,0.0 + 11/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52661157.39624212,0.0,64579271.592034,0.0,31926660.293331367,0.0,49808969.22887592,0.0,5101.906529737102,5022.035231254345,5028.506636238296,6053.217345788017,275316455.1853473,0.0,14093307.03785499,15502637.741640486 + 11/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,42178506.55856585,0.0,64949722.612958777,0.0,34607269.482174519,0.0,52003850.027575697,0.0,20455.347017836277,20135.114744330844,20161.060894827344,24269.488408063833,499814988.5154847,0.0,56373228.15141996,38756594.35410121 + 11/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,34436075.39392286,0.0,67518975.93109869,0.0,39892396.758593428,0.0,57711407.68177432,0.0,17943.031037927743,17662.129539759848,17684.888996407917,21288.72139889904,468042431.26816967,0.0,56373228.15141996,38756594.35410121 + 11/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29355284.41864118,0.0,62232121.87247318,0.0,38538321.090201038,0.0,55825023.34280555,0.0,12838.428143572213,12637.440155978185,12653.724787495865,15232.304919417824,378053583.54739168,0.0,28186614.07570998,0.0 + 11/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30765798.980081798,0.0,60110458.70606837,0.0,37597161.855072218,0.0,54616030.08348434,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,336916806.9705594,0.0,28186614.07570998,0.0 + 11/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15316189.162147522,0.0,55856984.82988772,0.0,35559787.78434433,0.0,51035984.24890861,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,234728314.94783468,0.0,28186614.07570998,0.0 + 11/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7976095.568555432,0.0,50724235.12092379,0.0,32519301.142390856,0.0,44853260.11669288,0.0,5150.929094430265,5070.290338552086,5076.823925167087,6111.380747490119,213146818.72886537,0.0,28186614.07570998,0.0 + 11/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,13570499.132905275,0.0,47311948.31118325,0.0,29209749.444385806,0.0,42105895.10189591,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,209281623.3233015,0.0,28186614.07570998,0.0 + 11/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,29996614.580425294,0.0,53138011.91083869,0.0,30576395.295313457,0.0,45539228.14213817,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,274875546.9281125,0.0,28186614.07570998,0.0 + 11/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37088085.33094025,0.0,56762781.77013308,0.0,31148742.83360247,0.0,47017061.42529959,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,364840475.36575177,0.0,28186614.07570998,0.0 + 11/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45014767.82374406,0.0,59418013.7193968,0.0,32628733.148495735,0.0,48802689.163271378,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,378596705.1194583,0.0,35233267.594637479,0.0 + 11/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49370497.5118632,0.0,62604522.27797349,0.0,35486972.28762079,0.0,52324953.208376739,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,469645115.01422145,0.0,14093307.03785499,0.0 + 11/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,42067004.78795676,0.0,56151279.20289607,0.0,24552952.18249452,0.0,40820616.97387904,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,433246909.3493668,0.0,63419881.67034747,0.0 + 11/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,30137260.15829461,0.0,43092393.2242326,0.0,11215559.33987502,0.0,24657100.106021339,0.0,10304.407621900022,10143.090198293834,10156.160605298028,12225.786299963751,263288313.84006385,0.0,63419881.67034747,69761869.8373822 + 11/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,34799031.09136866,0.0,46973342.68722599,0.0,13962785.791706564,0.0,28443507.566714355,0.0,10311.620969935524,10150.190620020192,10163.270176642505,12234.344662057452,278472602.280176,0.0,49326574.63249246,69761869.8373822 + 11/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39385365.237385559,0.0,51184471.890303719,0.0,16937540.66104065,0.0,32523057.32375694,0.0,5157.491207557575,5076.749720574227,5083.291630762258,6119.166444224414,217202551.5237134,0.0,35233267.594637479,69761869.8373822 + 11/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39026211.147907879,0.0,49499510.13463421,0.0,17331446.22886695,0.0,32183663.651561206,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,215221058.16722749,0.0,35233267.594637479,62010550.96656194 + 11/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38796706.622662607,0.0,47986060.01551968,0.0,18394339.31430197,0.0,32467427.124401027,0.0,2581.2505367690716,2540.84057808414,2544.1147105072075,3062.555229486008,176268072.87433247,0.0,35233267.594637479,46507913.22492146 + 11/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,44717855.30474512,0.0,53384635.12601175,0.0,24659700.073782639,0.0,39731814.83619851,0.0,2582.1245057737148,2541.7008649409769,2544.976105931467,3063.5921603485696,201130622.43391905,0.0,21139960.556782485,23253956.61246073 + 11/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,4853408.115367636,0.0,10719986.883217175,0.0,0.0,0.0,0.0,0.0,1292.1529077123876,1271.9240128912632,1273.5630168044589,1533.0901004919224,34908023.13502493,0.0,14093307.03785499,0.0 + 11/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24471143.399505065,0.0,32086412.51794541,0.0,5610681.032640542,0.0,15636500.606067952,0.0,1292.9120017805477,1272.6712232001776,1274.3111899701224,1533.9907366273924,97150724.10184063,0.0,14093307.03785499,0.0 + 11/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25061440.696049796,0.0,31476608.991336056,0.0,9214646.951634014,0.0,20169144.642186665,0.0,1292.6958846886199,1272.4584894616406,1274.09818210245,1533.7343219475166,105264594.04272735,0.0,14093307.03785499,0.0 + 11/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25025040.26458746,0.0,30847833.29271735,0.0,10726018.214983289,0.0,20493360.307689236,0.0,1292.4428403833552,1272.2094066121802,1273.8487782843145,1533.434094538615,106431218.51132381,0.0,14093307.03785499,0.0 + 11/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,24937943.31579857,0.0,30280066.155206495,0.0,11419684.405528456,0.0,20650877.390301557,0.0,1292.2288468269522,1271.998763164823,1273.6378634013757,1533.180199352579,106624335.68871969,0.0,14093307.03785499,0.0 + 11/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,25034438.020982315,0.0,31310866.998360844,0.0,10556592.15671251,0.0,20248158.16729611,0.0,1291.6489419344148,1271.4279367915597,1273.066301460067,1532.4921643339142,106477142.58362362,0.0,14093307.03785499,15502637.741640486 + 11/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37134007.45910194,0.0,45971912.61633942,0.0,24049929.97501154,0.0,36371138.572537798,0.0,5165.850243891007,5084.977894634483,5091.530407664623,6129.084121749998,220824182.22757513,0.0,56373228.15141996,38756594.35410121 + 11/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40751864.20645746,0.0,52209454.120678398,0.0,30653971.61808196,0.0,44422745.755614157,0.0,12911.65770819287,12709.523298103744,12725.900816107427,15319.189002495905,361236610.6704717,0.0,56373228.15141996,38756594.35410121 + 11/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40307836.80477314,0.0,52395156.96015929,0.0,30723121.868629546,0.0,44571140.20022775,0.0,12907.379493515047,12705.312059674803,12721.684151067939,15314.113064090161,361131815.3998424,0.0,28186614.07570998,0.0 + 11/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43437618.67148787,0.0,51547783.475937727,0.0,30392738.001257149,0.0,44321895.70871493,0.0,12905.10299306992,12703.071198268826,12719.440402083319,15311.412083211382,362800531.89327809,0.0,28186614.07570998,0.0 + 11/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43435904.31355469,0.0,51042041.44428158,0.0,29898750.821677846,0.0,43870695.12848176,0.0,7741.641007528337,7620.444173353776,7630.263893473711,9185.16153882755,284086429.915456,0.0,28186614.07570998,0.0 + 11/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45246301.386211607,0.0,52634350.125824648,0.0,30248179.651324978,0.0,44655114.41513366,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,288612046.34668806,0.0,28186614.07570998,0.0 + 11/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47016754.146849509,0.0,54342965.365961078,0.0,30716254.08353005,0.0,45545052.258971709,0.0,7740.910047312705,7619.72465645668,7629.543449405654,9184.29428243417,293449126.62350556,0.0,28186614.07570998,0.0 + 11/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48575071.99493031,0.0,55954085.60047113,0.0,31279956.81347862,0.0,46466103.663733948,0.0,7740.165385698941,7618.991652659396,7628.809501058161,9183.41076985492,298092176.3859911,0.0,28186614.07570998,0.0 + 11/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50911942.46985693,0.0,58422060.65458289,0.0,32327231.876317745,0.0,48054954.12922104,0.0,18056.814969641164,17774.132162795926,17797.035946255644,21423.721690477323,459902326.29899087,0.0,28186614.07570998,0.0 + 11/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51678492.106160547,0.0,59368170.35819518,0.0,32060706.916247459,0.0,48040975.49101761,0.0,23208.71043400909,22845.37374258402,22874.81233843016,27536.248999009862,538422868.7221401,0.0,35233267.594637479,0.0 + 11/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58717424.32342518,0.0,67507410.34925696,0.0,36782020.856687609,0.0,55016608.13851932,0.0,18039.167890440334,17756.76135191204,17779.642751308933,21402.784104635957,487945545.6217592,0.0,14093307.03785499,0.0 + 11/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,50129588.04852287,0.0,59923778.87034476,0.0,26768908.626868696,0.0,43804584.82677334,0.0,18037.048095513583,17754.674742770316,17777.553453358356,21400.269048872917,450517223.59836426,0.0,63419881.67034747,0.0 + 11/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38026895.08698435,0.0,48433848.42022972,0.0,14032035.72947721,0.0,28858846.096668435,0.0,15452.787283290794,15210.871015656254,15230.471775501259,18334.142242470356,360573405.6742669,0.0,63419881.67034747,69761869.8373822 + 11/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,42284599.76392566,0.0,52843355.976569179,0.0,17675450.920895984,0.0,33573129.26982443,0.0,12867.220385646113,12665.781650131234,12682.102802556885,15266.46581557106,338910190.2852743,0.0,49326574.63249246,69761869.8373822 + 11/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46269818.13749187,0.0,56949949.58695615,0.0,21105068.870212955,0.0,37993885.82046736,0.0,10292.366233117345,10131.23731969887,10144.292453059197,12211.499651821174,316324546.7828361,0.0,35233267.594637479,69761869.8373822 + 11/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,48333773.64413378,0.0,59086569.4933277,0.0,22858526.67020402,0.0,40267848.87272002,0.0,7720.332231387668,7599.468990078738,7609.261681534131,9159.879489342638,286066911.29282096,0.0,35233267.594637479,62010550.96656194 + 11/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51614804.74752557,0.0,62384990.58675999,0.0,25896025.07832717,0.0,44037210.289855148,0.0,5148.949224928924,5068.341464277133,5074.8725395687129,6109.031707903042,260977332.474508,0.0,35233267.594637479,46507913.22492146 + 11/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,59625438.28930487,0.0,69879416.87080875,0.0,34113330.84245079,0.0,53610050.737838,0.0,2570.1097750302176,2529.874227048615,2533.134228209061,3049.337140951878,255685076.07686556,0.0,21139960.556782485,23253956.61246073 + 11/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,20110159.31437712,0.0,27922741.87908422,0.0,2035417.6658718493,0.0,10874205.78833538,0.0,1284.4588811153456,1264.3504377159175,1265.9796823044808,1523.9614316335829,80162026.20563814,0.0,14093307.03785499,0.0 + 11/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45170775.33044333,0.0,53860986.49219814,0.0,21933290.099793845,0.0,38720249.17927904,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,178889272.50045026,0.0,14093307.03785499,0.0 + 11/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48656894.52169725,0.0,57089720.420253399,0.0,26532789.027805877,0.0,43058439.47116369,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,194511771.44053436,0.0,14093307.03785499,0.0 + 11/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,50147181.986745718,0.0,58459376.55804067,0.0,28265740.84726303,0.0,44823047.66716685,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,200872745.30941487,0.0,14093307.03785499,0.0 + 11/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52306335.64822521,0.0,60645550.77390154,0.0,30298213.570847624,0.0,47167609.35962788,0.0,1279.227156950874,1259.2006171692179,1260.8232256883753,1517.7541906196264,209558928.03814338,0.0,14093307.03785499,0.0 + 11/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51144923.992497768,0.0,59784905.39566335,0.0,28924187.766324063,0.0,45536351.67396088,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,204523959.25655908,0.0,14093307.03785499,15502637.741640486 + 11/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,48586346.77810663,0.0,67166342.99803934,0.0,35977666.21231966,0.0,53741923.00251016,0.0,1277.6716780302728,1257.669489561293,1259.2901250662488,1515.9086742566138,224590222.87186773,0.0,56373228.15141996,38756594.35410121 + 11/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,38450853.42638573,0.0,63955832.1333044,0.0,34872186.4109955,0.0,49627831.97011247,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,263471578.68296264,0.0,56373228.15141996,38756594.35410121 + 11/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49929412.71617082,0.0,73575977.55268789,0.0,43793521.635911028,0.0,63845915.0854025,0.0,7676.872752978934,7556.68987791185,7566.427444114843,9108.316477160952,346014730.57797196,0.0,28186614.07570998,0.0 + 11/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,28070981.681633664,0.0,69889751.24382276,0.0,41710365.431712228,0.0,60755721.39113771,0.0,7692.6138412183149,7572.184536478346,7581.9420691304089,9126.9926774827,315532258.9958215,0.0,28186614.07570998,0.0 + 11/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21552435.56210792,0.0,69156999.2492739,0.0,42164795.23039624,0.0,60995315.02763558,0.0,5117.915168652622,5037.793251941234,5044.284962743228,6072.2109847739679,270449480.7946135,0.0,28186614.07570998,0.0 + 11/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41153035.96438128,0.0,69513538.9490774,0.0,41796709.47787154,0.0,60023021.219472628,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,289125178.3653293,0.0,28186614.07570998,0.0 + 11/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45541486.74857511,0.0,70148772.54141428,0.0,41134667.59475312,0.0,59880791.013530317,0.0,7682.780985602729,7562.50561605174,7572.250676426926,9115.326369637982,331664027.03006258,0.0,28186614.07570998,0.0 + 11/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53774390.84514138,0.0,75078993.48391679,0.0,42824430.820346597,0.0,62927217.83604343,0.0,10231.786743959794,10071.606213745174,10084.584506339059,12139.624400397004,387704399.697436,0.0,28186614.07570998,0.0 + 11/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61146768.46570403,0.0,79592997.6177046,0.0,44923042.56800893,0.0,66475947.79792836,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,443357798.2342915,0.0,28186614.07570998,0.0 + 11/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,69020936.74452366,0.0,84315625.19304735,0.0,46984975.43420846,0.0,69591933.72609012,0.0,15319.096591784555,15079.273276865519,15098.70445959219,18175.523340285636,499134822.70456996,0.0,35233267.594637479,0.0 + 11/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75046032.01803588,0.0,89670800.12964535,0.0,51347500.3888838,0.0,75107775.75791463,0.0,17828.208024709915,17549.104102234156,17571.717914069708,21152.48827677996,557937574.2385372,0.0,14093307.03785499,0.0 + 11/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,65958684.32536615,0.0,80384424.90186493,0.0,41100896.39101866,0.0,63027322.659524228,0.0,10177.878620606105,10018.542032119136,10031.451946098849,12075.66446983743,402764061.7249555,0.0,63419881.67034747,0.0 + 11/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,54189588.27008667,0.0,68394602.2540403,0.0,28601203.309241084,0.0,48002922.04309314,0.0,7612.4252248129309,7493.2512878219599,7502.907106926579,9031.85194510538,313093883.9092618,0.0,63419881.67034747,69761869.8373822 + 11/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,57823361.61757312,0.0,71722980.339871,0.0,31532142.269226429,0.0,51701985.37529266,0.0,5080.1543588076979,5000.6235946187039,5007.067408523409,6027.40922531169,288795386.1161046,0.0,49326574.63249246,69761869.8373822 + 11/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61769067.42910802,0.0,75662135.13611628,0.0,34685520.543345797,0.0,55892957.287100318,0.0,5076.263702080786,4996.793846848654,5003.232725732463,6022.793109620708,303966380.57908788,0.0,35233267.594637479,69761869.8373822 + 11/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64603966.1275463,0.0,78446612.88000362,0.0,36869166.94660056,0.0,58736941.59142729,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,314593732.9007782,0.0,35233267.594637479,62010550.96656194 + 11/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,69926590.08631402,0.0,83460562.4063493,0.0,41519993.034754429,0.0,64423851.407326299,0.0,5058.542842413007,4979.350410544796,4985.766811780513,6001.767986071687,335022537.91766008,0.0,35233267.594637479,46507913.22492146 + 11/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,81246332.35217336,0.0,94649088.13307694,0.0,51743156.56173867,0.0,77018557.27283164,0.0,2519.7219911568338,2480.2752733316008,2483.471361177722,2989.5539588060657,342360015.6239207,0.0,21139960.556782485,23253956.61246073 + 11/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38561666.203501,0.0,51287264.59779343,0.0,15930413.559200503,0.0,31085419.90204326,0.0,1264.2805603331606,1244.4880123098397,1246.0916621359514,1500.020624279378,155782335.3551482,0.0,14093307.03785499,0.0 + 11/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63462566.49823758,0.0,74971168.32861981,0.0,37982462.007556889,0.0,58938774.6130901,0.0,1264.6357106032518,1244.837602636199,1246.4417029451284,1500.4419965179218,254277856.69323338,0.0,14093307.03785499,0.0 + 11/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62700938.04267253,0.0,73649472.95412767,0.0,38144556.12840924,0.0,58661412.34838644,0.0,1269.3922323268208,1249.5196601248577,1251.1297937427485,1506.0854279753399,252150437.08460704,0.0,14093307.03785499,0.0 + 11/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63513478.086773227,0.0,74312850.87371084,0.0,39121993.2080369,0.0,59555527.95043108,0.0,1267.7399174552944,1247.8932125508839,1249.5012503250678,1504.1250194530099,255473183.9581754,0.0,14093307.03785499,0.0 + 11/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62428782.71522986,0.0,72936935.04778755,0.0,38647424.75402059,0.0,58559538.3632466,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,251609272.56118233,0.0,14093307.03785499,0.0 + 11/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57440077.483142968,0.0,67659129.25095631,0.0,34431154.96167013,0.0,53031485.298108037,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,288798318.7341311,0.0,14093307.03785499,15502637.741640486 + 11/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,59813386.23074532,0.0,70904498.36892611,0.0,36281808.32617527,0.0,54776511.91483459,0.0,20398.50224062934,20079.159882715456,20105.03392966157,24202.04424980635,527001269.9308071,0.0,56373228.15141996,38756594.35410121 + 11/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,70261739.23323414,0.0,81733550.84753168,0.0,46468954.05549527,0.0,67709673.19320947,0.0,17848.68946055067,17569.26489737602,17591.90468845388,21176.78871858055,533245849.28333058,0.0,56373228.15141996,38756594.35410121 + 11/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75435172.56649956,0.0,86158756.18087802,0.0,53877867.53416678,0.0,76071464.40964034,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,482601949.4600743,0.0,28186614.07570998,0.0 + 11/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65998106.5619513,0.0,77729428.40532989,0.0,49136456.77435926,0.0,69729687.42954742,0.0,10229.73882184678,10069.590352234878,10082.566047185453,12137.194618983907,415662402.5960915,0.0,28186614.07570998,0.0 + 11/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63571745.06684522,0.0,75148746.70686329,0.0,47027479.83781569,0.0,67147959.96040754,0.0,5117.915168652622,5037.793251941234,5044.284962743228,6072.2109847739679,329475867.2971315,0.0,28186614.07570998,0.0 + 11/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62534625.556462828,0.0,74596858.55424573,0.0,46041168.583579998,0.0,66117973.952790129,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,325855501.3892432,0.0,28186614.07570998,0.0 + 11/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67172728.91642116,0.0,78021190.50356564,0.0,47024626.950834717,0.0,67914461.27787803,0.0,5112.795412495462,5032.753646521804,5039.238863277833,6066.136589526604,336636335.89125767,0.0,28186614.07570998,0.0 + 11/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68865703.89607518,0.0,79465704.22449924,0.0,47375684.744276437,0.0,68521664.06935418,0.0,7670.755131688606,7550.668029124063,7560.397835560255,9101.05815302394,379007121.8720337,0.0,28186614.07570998,0.0 + 11/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70468845.31268823,0.0,81215357.68958573,0.0,47937835.677640687,0.0,69497680.14424472,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,460338760.60910496,0.0,28186614.07570998,0.0 + 11/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71561833.51106575,0.0,82440221.5796757,0.0,47529859.32079228,0.0,69388399.02039893,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,462139355.21687826,0.0,35233267.594637479,0.0 + 11/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74739032.5272145,0.0,85545631.18975625,0.0,50288731.50794781,0.0,72808579.8138823,0.0,17876.105704852118,17596.25193525843,17618.926501889113,21209.317045901833,550864139.3152462,0.0,14093307.03785499,0.0 + 11/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,62119961.34549466,0.0,73376949.36368951,0.0,37216674.366375569,0.0,57348540.23359946,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,497312568.8522967,0.0,63419881.67034747,0.0 + 11/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,49545512.394213709,0.0,61209190.503811407,0.0,24199336.550403999,0.0,41876671.6760057,0.0,10194.620788196893,10035.022097953042,10047.953248179667,12095.528412596073,329373959.49336728,0.0,63419881.67034747,69761869.8373822 + 11/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,56681695.36594983,0.0,68946730.92447531,0.0,29612610.844785297,0.0,49254586.11110913,0.0,10152.527404161572,9993.587693697307,10006.465451464926,12045.586219241415,356409023.61315438,0.0,49326574.63249246,69761869.8373822 + 11/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64972012.458975959,0.0,77685399.64935525,0.0,36207115.37648459,0.0,57932194.00633481,0.0,5048.428149816551,4969.394065347833,4975.797636816541,5989.767289407546,312336915.2001491,0.0,35233267.594637479,69761869.8373822 + 11/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,72503358.55668406,0.0,85563938.33328873,0.0,42137086.17456925,0.0,65698725.835042718,0.0,5014.091966948574,4935.595421828062,4941.955440294839,5949.028719127368,340929526.47310069,0.0,35233267.594637479,62010550.96656194 + 11/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,80389969.35379702,0.0,93752427.77846657,0.0,48646181.100038919,0.0,74074811.36579383,0.0,2498.6191549896004,2459.5028060012957,2462.6721264030604,2964.516249238422,334250506.8099728,0.0,35233267.594637479,46507913.22492146 + 11/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,90876261.9555843,0.0,104277727.32119054,0.0,58245992.68003262,0.0,85943294.49206445,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,376665217.36142089,0.0,21139960.556782485,23253956.61246073 + 11/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49771785.12103605,0.0,61934841.745479878,0.0,22710377.703293414,0.0,40260508.30800648,0.0,1250.167524576578,1230.5959187608103,1232.1816672064479,1483.2760460818868,193383909.04166842,0.0,14093307.03785499,0.0 + 11/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78757782.72565273,0.0,91377081.22650889,0.0,47864057.11929634,0.0,72998022.0022817,0.0,1245.3556599458119,1225.8593847684913,1227.4390297066319,1477.566952377648,309631338.7702145,0.0,14093307.03785499,0.0 + 11/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82031268.71081613,0.0,94442664.34606932,0.0,51229519.516398239,0.0,77048250.97377716,0.0,1244.456511273645,1224.9743124365235,1226.5528168686265,1476.500146800737,323372645.18162718,0.0,14093307.03785499,0.0 + 11/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83558695.04737818,0.0,95778612.69167385,0.0,52993417.497093487,0.0,78796160.34632792,0.0,1244.0041671068476,1224.5290498020418,1226.1069804677935,1475.9634577138702,329741058.7407994,0.0,14093307.03785499,0.0 + 11/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,85257690.99034101,0.0,97597740.07990194,0.0,54532777.699807319,0.0,80623426.69896108,0.0,1243.5499821674389,1224.0819752125877,1225.6593297770988,1475.4245846205668,336619012.60741099,0.0,14093307.03785499,0.0 + 11/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81532741.35737568,0.0,94092849.77977179,0.0,50956993.73687667,0.0,76308140.78292904,0.0,5000.670098306312,4922.383675043241,4928.7266688257909,5933.104184327547,377716310.31236359,0.0,14093307.03785499,15502637.741640486 + 11/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,45853756.13353823,0.0,81116738.77942205,0.0,39048096.073055367,0.0,61613810.96941015,0.0,20062.940360319604,19748.851286240977,19774.299696846647,23803.91288800329,527836417.1885036,0.0,56373228.15141996,38756594.35410121 + 11/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,37792192.56086525,0.0,92370981.58537092,0.0,53596578.126072589,0.0,78575194.0282632,0.0,17611.082391406708,17335.37761122506,17357.716014662336,20894.877001060664,525851537.1666491,0.0,56373228.15141996,38756594.35410121 + 11/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46600677.50080367,0.0,94224401.4127351,0.0,57315369.164272319,0.0,82910620.28345174,0.0,12606.176864922969,12408.824814422627,12424.81485173843,14956.747642876835,469678699.387522,0.0,28186614.07570998,0.0 + 11/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58986713.05150802,0.0,92804176.49689001,0.0,57543726.011541638,0.0,82954991.42459005,0.0,10111.386997878159,9953.091348148997,9965.916922242,11996.774697612,443587418.8617018,0.0,28186614.07570998,0.0 + 11/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48086164.7286586,0.0,87625086.43063206,0.0,54611474.050371337,0.0,78539815.26042789,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,344759903.2216474,0.0,28186614.07570998,0.0 + 11/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44016804.828809719,0.0,83526357.28464723,0.0,51702182.809477638,0.0,73104279.69315154,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,328440410.2942043,0.0,28186614.07570998,0.0 + 11/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44784641.71754535,0.0,81332798.0887274,0.0,49402057.04406401,0.0,71264263.18715263,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,322893198.82316645,0.0,28186614.07570998,0.0 + 11/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43815402.83509034,0.0,80557403.25230973,0.0,47371382.849136,0.0,69389555.39654814,0.0,7627.837158563788,7508.421944874854,7518.097312919523,9050.137616191094,355269922.8502615,0.0,28186614.07570998,0.0 + 11/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47858951.19433742,0.0,81879642.30276305,0.0,46589628.06550551,0.0,69182571.12343385,0.0,12693.922323268207,12495.196601248572,12511.297937427486,15060.8542797534,435451368.7961514,0.0,28186614.07570998,0.0 + 11/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,75837442.7262941,0.0,96390870.80858599,0.0,54989659.09384303,0.0,80790573.40013756,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,497549823.80657598,0.0,35233267.594637479,0.0 + 11/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83101450.84500905,0.0,102623916.26646284,0.0,59728489.44793552,0.0,86958387.65834674,0.0,17689.89820129477,17412.95954490625,17435.3979205837,20988.388950908433,597108164.8414495,0.0,14093307.03785499,0.0 + 11/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,69585996.27779019,0.0,88286786.92807605,0.0,45340490.75663115,0.0,69622830.28758924,0.0,17757.698998530952,17479.698908013474,17502.22328417223,21068.83200871362,538546535.7680357,0.0,63419881.67034747,0.0 + 11/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,54971291.78988202,0.0,72830869.67812084,0.0,30364707.3202734,0.0,51371539.46271749,0.0,10152.527404161572,9993.587693697307,10006.465451464926,12045.586219241415,361451808.6178286,0.0,63419881.67034747,69761869.8373822 + 11/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,57761658.467034798,0.0,74744654.19806482,0.0,32388301.70281601,0.0,53787098.264626909,0.0,10165.4126782922,10006.271246457674,10019.165348277607,12060.874105136252,370787916.79393199,0.0,49326574.63249246,69761869.8373822 + 11/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61266764.45611833,0.0,77662747.64400566,0.0,34992271.25701677,0.0,57076831.07234945,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,307070621.1458851,0.0,35233267.594637479,69761869.8373822 + 11/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,63518747.727427478,0.0,79383359.51180978,0.0,36634676.77058646,0.0,59098813.88063168,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,314707604.6068503,0.0,35233267.594637479,62010550.96656194 + 11/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67411887.49982804,0.0,82782167.17333733,0.0,40024522.70047059,0.0,63209018.16750513,0.0,2541.35316957305,2501.5678116144188,2504.791337069402,3015.218526284063,291454146.5814885,0.0,35233267.594637479,46507913.22492146 + 11/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,76599802.81975574,0.0,91477520.63991896,0.0,48442588.40362859,0.0,73415487.59917656,0.0,2538.7844646536416,2499.0393202497155,2502.259587485497,3012.1708559506798,327923514.6845022,0.0,21139960.556782485,23253956.61246073 + 11/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37930969.55340391,0.0,51755390.30124582,0.0,15046199.18086379,0.0,31074598.412183137,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642634,154750993.74204547,0.0,14093307.03785499,0.0 + 11/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66776735.356647539,0.0,80316593.08047332,0.0,39973728.00552366,0.0,62637723.855227,0.0,1263.9233747347699,1244.1364185186247,1245.73961528025,1499.5968372015,268617006.782518,0.0,14093307.03785499,0.0 + 11/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69944316.59258576,0.0,82887414.05932573,0.0,42840355.18035784,0.0,66037040.94680734,0.0,1262.47434789568,1242.7100764650166,1244.311435239322,1497.8776221696747,280599671.3134475,0.0,14093307.03785499,0.0 + 11/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70266745.10111518,0.0,82864111.566363,0.0,43562791.46346314,0.0,66495260.62311946,0.0,1265.3398915471713,1245.5307594960769,1247.1357530083693,1501.2774803276432,282122330.7378261,0.0,14093307.03785499,0.0 + 11/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71903514.264236,0.0,84292289.81576056,0.0,45073088.87742986,0.0,68125405.59945117,0.0,1262.1070374541378,1242.3485163369583,1243.9494092041353,1497.4418223518865,288279346.98412719,0.0,14093307.03785499,0.0 + 11/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69902498.53581259,0.0,82186512.90690843,0.0,43002365.006714988,0.0,65440064.41615179,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,336115482.6494776,0.0,14093307.03785499,15502637.741640486 + 11/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,59965920.93754718,0.0,80225442.68960801,0.0,39973774.56341735,0.0,61607487.01116206,0.0,20278.451778137507,19960.98883260932,19986.710604095908,24059.608958667653,545201361.8263719,0.0,56373228.15141996,38756594.35410121 + 11/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,73808656.49439717,0.0,93430245.52348402,0.0,52405405.7064379,0.0,76954146.92970416,0.0,17724.502467554616,17447.022074922377,17469.50434364644,21029.445591899686,561812162.7749064,0.0,56373228.15141996,38756594.35410121 + 11/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77911285.97191257,0.0,97776312.0999426,0.0,60050220.53316381,0.0,85537125.3632657,0.0,12700.385897019243,12501.558986546757,12517.668521308522,15068.523063279225,511312235.25363817,0.0,28186614.07570998,0.0 + 11/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73541368.02153598,0.0,95727469.51390304,0.0,57899649.30704524,0.0,83086143.6006393,0.0,10187.547442691379,10028.05948699095,10040.98166518269,12087.13615815998,462692039.5540136,0.0,28186614.07570998,0.0 + 11/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64209144.25268577,0.0,92228419.95338825,0.0,55381205.98960456,0.0,79616580.08287364,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,367842467.4807857,0.0,28186614.07570998,0.0 + 11/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68507886.83033958,0.0,89758747.74066195,0.0,53175653.35287312,0.0,76289550.41953025,0.0,5114.86941092339,5034.795176117439,5041.283023592727,6068.597309491954,364266200.0558567,0.0,28186614.07570998,0.0 + 11/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68145168.19514524,0.0,84006822.36314264,0.0,50117117.29267155,0.0,72684115.80520949,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,351518098.39833346,0.0,28186614.07570998,0.0 + 11/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65372727.54059457,0.0,83495244.83362147,0.0,49087323.45082139,0.0,71460375.73246105,0.0,7675.362941705243,7555.203703015304,7564.9393541302529,9106.52514371776,384262983.67074528,0.0,28186614.07570998,0.0 + 11/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70000014.24056521,0.0,86238634.17841451,0.0,49986887.47669874,0.0,73120271.0647612,0.0,12779.363487561082,12579.300168175409,12595.509880384581,15162.226959697147,470564848.7453852,0.0,28186614.07570998,0.0 + 11/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,76764137.49907115,0.0,90241741.98022896,0.0,51517693.77116126,0.0,75502839.28217855,0.0,12768.646932037229,12568.751382327453,12584.947501349367,15149.51217564417,485085101.3015295,0.0,35233267.594637479,0.0 + 11/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80480904.9723332,0.0,93636385.94653578,0.0,54531591.101428788,0.0,79253437.86047587,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,575152763.4239111,0.0,14093307.03785499,0.0 + 11/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,66857326.709794748,0.0,80065815.62812954,0.0,40661754.2706409,0.0,62650173.556049238,0.0,17864.53625352438,17584.86360584951,17607.523497455364,21195.59033353458,517544119.44992426,0.0,63419881.67034747,0.0 + 11/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,53815704.26412936,0.0,67154805.25411713,0.0,27208729.238092945,0.0,46577318.630221318,0.0,10194.620788196893,10035.022097953042,10047.953248179667,12095.528412596073,347299805.75549319,0.0,63419881.67034747,69761869.8373822 + 11/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,58361022.53959585,0.0,71692724.92780814,0.0,30824179.31051845,0.0,51285741.527724009,0.0,10182.74691140684,10023.334108919207,10036.250197978992,12081.440511038418,364529246.5312829,0.0,49326574.63249246,69761869.8373822 + 11/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62948840.48048208,0.0,76281738.33032003,0.0,34553994.034852448,0.0,56107035.95183943,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,306001047.58317098,0.0,35233267.594637479,69761869.8373822 + 11/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,66763975.07298931,0.0,80133982.33481018,0.0,37597565.59058078,0.0,60052590.94832326,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,320485159.30190399,0.0,35233267.594637479,62010550.96656194 + 11/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71176152.71935299,0.0,84538665.18240714,0.0,41518603.85583603,0.0,64889202.128791619,0.0,2538.131851040393,2498.396923424327,2501.6163628662318,3011.396554810354,300100973.9780964,0.0,35233267.594637479,46507913.22492146 + 11/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,79705975.26806858,0.0,93077468.86338401,0.0,49645295.67649704,0.0,74617683.53623487,0.0,2536.8141426472795,2497.0998440019259,2500.3176120246046,3009.833144101946,335005056.4181773,0.0,21139960.556782485,23253956.61246073 + 11/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38461345.53709108,0.0,51062696.080988798,0.0,14691582.910248813,0.0,30281549.433600718,0.0,1268.0745302555334,1248.222586925313,1249.831049131997,1504.5220247675378,153471514.64981876,0.0,14093307.03785499,0.0 + 11/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65658150.60976235,0.0,77214314.5847038,0.0,38501406.88159584,0.0,60067494.53498092,0.0,1267.0644895209508,1247.2283585668534,1248.8355396088187,1503.3236499915807,260400593.94672043,0.0,14093307.03785499,0.0 + 11/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64601894.43726733,0.0,75476942.3521687,0.0,38424245.68568336,0.0,59515770.09225914,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,257060012.86728237,0.0,14093307.03785499,0.0 + 11/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62927154.463590819,0.0,73706367.54701026,0.0,37902411.046967189,0.0,58243870.692035999,0.0,1273.740280104496,1253.7996384034457,1255.415287210197,1511.2442206883644,251838921.68466769,0.0,14093307.03785499,0.0 + 11/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62538561.901279848,0.0,72962502.49906147,0.0,37990842.71803582,0.0,58080687.887277748,0.0,1274.6180615412266,1254.6636780080342,1256.2804402180069,1512.2856748560676,250644847.2822989,0.0,14093307.03785499,0.0 + 11/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59480801.61173712,0.0,69773594.16491559,0.0,35214235.15931234,0.0,54430209.20820389,0.0,5097.3103940984469,5017.511048976521,5023.976624089833,6047.764206298037,295170464.3286352,0.0,14093307.03785499,15502637.741640486 + 11/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,51740640.10928926,0.0,68571819.90496005,0.0,35020747.88591318,0.0,50428646.091531369,0.0,20412.13665375248,20092.580846557656,20118.472187785534,24218.220960519408,511190932.3267082,0.0,56373228.15141996,38756594.35410121 + 11/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,42679091.29680895,0.0,73700836.25181088,0.0,39294181.289247829,0.0,58908238.16056187,0.0,17891.108882585515,17611.020235445572,17633.713832538415,21227.117743576004,482289005.4973533,0.0,56373228.15141996,38756594.35410121 + 11/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37280062.80362943,0.0,79235922.48816398,0.0,46846230.33819151,0.0,68200503.57234304,0.0,12802.206012981016,12601.785089598625,12618.023775924037,15189.328744155097,423123556.2438996,0.0,28186614.07570998,0.0 + 11/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45650370.099638018,0.0,80381145.34074275,0.0,48111561.87663771,0.0,69670016.46213576,0.0,10249.432269207238,10088.9754950031,10101.97616968873,12160.56014253199,397176492.45430609,0.0,28186614.07570998,0.0 + 11/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52048692.92820316,0.0,77343316.81522683,0.0,46793974.8143377,0.0,67539169.78416692,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,320420866.3403911,0.0,28186614.07570998,0.0 + 11/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52656863.91429925,0.0,74672542.3634769,0.0,45270986.840344529,0.0,64852429.26702702,0.0,5128.409227478876,5048.123024318898,5054.628046086938,6084.661784988465,314189781.88349118,0.0,28186614.07570998,0.0 + 11/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58789181.903572607,0.0,74220195.64765564,0.0,44476379.23374897,0.0,64522992.12439643,0.0,5129.310459321772,5049.010147209169,5055.5163121256,6085.731062167927,318759193.64034178,0.0,28186614.07570998,0.0 + 11/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63135815.61950559,0.0,76999979.58240506,0.0,45378359.2458304,0.0,66066204.82770813,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,366644748.7766408,0.0,28186614.07570998,0.0 + 11/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67404931.75602609,0.0,80221144.9648038,0.0,46678900.419463988,0.0,68037013.42832127,0.0,12816.45074137696,12615.80681411418,12632.063568862799,15206.229570642176,454115973.07060119,0.0,28186614.07570998,0.0 + 11/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,69457891.43759984,0.0,81954602.32414179,0.0,46869347.97759974,0.0,68582021.7014261,0.0,12799.755167198507,12599.372612264047,12615.60818986618,15186.420909188688,458388028.2034302,0.0,35233267.594637479,0.0 + 11/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73501197.20000862,0.0,85469681.0950259,0.0,49978749.04669139,0.0,72451204.5115509,0.0,17912.703090284176,17632.276381794316,17654.997369601297,21252.738446708885,549430606.8914759,0.0,14093307.03785499,0.0 + 11/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,60538643.16758854,0.0,72598343.19456104,0.0,36500104.98488131,0.0,56362297.870574567,0.0,17905.626801929637,17625.31087405405,17648.02288609335,21244.342700694757,493923280.96358397,0.0,63419881.67034747,0.0 + 11/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,46785422.88105187,0.0,59294796.96067687,0.0,22723433.032341165,0.0,39791188.6291952,0.0,10229.73882184678,10069.590352234878,10082.566047185453,12137.194618983907,321663564.9281688,0.0,63419881.67034747,69761869.8373822 + 11/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,50163780.38067109,0.0,62528766.89640011,0.0,25532259.148015478,0.0,43358406.01836662,0.0,10225.590824990924,10065.507293043607,10078.477726555666,12132.273179053209,334589868.92856958,0.0,49326574.63249246,69761869.8373822 + 11/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54010947.02914126,0.0,65757604.56170634,0.0,28568277.040261106,0.0,47212555.82002818,0.0,5111.745395024433,5031.720067270165,5038.203952153832,6064.890783878859,272037001.1651151,0.0,35233267.594637479,69761869.8373822 + 11/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,56658142.69072895,0.0,68318354.49150627,0.0,30674421.2530676,0.0,49930581.41266608,0.0,5108.543390733541,5028.56819095378,5035.048014323108,6061.091728015734,282021204.6144631,0.0,35233267.594637479,62010550.96656194 + 11/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61139852.76555438,0.0,72708054.97878543,0.0,34580969.60480273,0.0,54814279.16860257,0.0,2552.631837281639,2512.669909675996,2515.9077413174998,3028.6002349870898,261438471.5214891,0.0,35233267.594637479,46507913.22492146 + 11/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,70256156.15884382,0.0,81668015.3317518,0.0,43008229.891824398,0.0,65162612.57731479,0.0,2551.51708171906,2511.572605819707,2514.8090234731919,3027.2776200649257,298273648.7516116,0.0,21139960.556782485,23253956.61246073 + 11/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35023729.23357454,0.0,44427595.61103052,0.0,11085256.755689346,0.0,27872674.12156456,0.0,1275.1925812523689,1255.2292035059223,1256.8466944532209,1512.9673205625728,137490104.60104568,0.0,14093307.03785499,0.0 + 11/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57177149.850457567,0.0,67254987.97855386,0.0,32684869.504906745,0.0,51442396.70572691,0.0,1274.6180615412266,1254.6636780080342,1256.2804402180069,1512.2856748560676,227631656.3162891,0.0,14093307.03785499,0.0 + 11/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58596539.28545357,0.0,68340073.21177405,0.0,34280477.42148964,0.0,53513070.67236328,0.0,1274.3275985246117,1254.3777622441303,1255.9941560224584,1511.9410515745092,233798066.6371971,0.0,14093307.03785499,0.0 + 11/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59981494.428523499,0.0,69550227.93943748,0.0,35912974.85499981,0.0,55163302.339368838,0.0,1273.4434303364224,1253.5074358738687,1255.1227081478363,1510.8920197699975,239662675.7011909,0.0,14093307.03785499,0.0 + 11/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61788188.958274397,0.0,71331424.24122358,0.0,37577651.82621767,0.0,57083782.06924236,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,246817638.77585573,0.0,14093307.03785499,0.0 + 11/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60089764.63891467,0.0,69699992.73462144,0.0,35787519.39083293,0.0,54875119.65314673,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,296543182.095634,0.0,14093307.03785499,15502637.741640486 + 11/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,64288143.95927189,0.0,74937209.77458312,0.0,38649831.49020135,0.0,58271315.87858152,0.0,20360.64244865772,20041.89279284989,20067.718817346944,24157.125051829124,540805065.901099,0.0,56373228.15141996,38756594.35410121 + 11/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,72599572.78126215,0.0,85194545.3417879,0.0,48565296.77817297,0.0,70721794.95122944,0.0,17819.80709496197,17540.834690608608,17563.437846463232,21142.52089431723,543720971.7473161,0.0,56373228.15141996,38756594.35410121 + 11/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69238785.35314614,0.0,87507582.94121304,0.0,54876751.396612759,0.0,77688633.4340392,0.0,12734.434303364225,12535.074358738684,12551.227081478362,15108.920197699974,479858514.51362368,0.0,28186614.07570998,0.0 + 11/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63456530.91848365,0.0,84789677.29315707,0.0,53293371.986933868,0.0,75823940.0236282,0.0,10187.547442691379,10028.05948699095,10040.98166518269,12087.13615815998,429800929.3330928,0.0,28186614.07570998,0.0 + 11/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52141349.81776997,0.0,82263137.88794944,0.0,51544343.36310451,0.0,73136257.10948347,0.0,5104.153215292681,5024.246744528433,5030.720999272961,6055.882952438452,335459102.25982448,0.0,28186614.07570998,0.0 + 11/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17965646.352123217,0.0,74509426.8292321,0.0,47877719.70918414,0.0,64367717.81608633,0.0,5113.83675445907,5033.77868608271,5040.265223706836,6067.372102015958,281239420.66517826,0.0,28186614.07570998,0.0 + 11/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19809894.979496726,0.0,67227700.04368718,0.0,42181943.399839598,0.0,58757317.63490525,0.0,5124.716134603619,5044.48774750155,5050.988084844365,6080.280071265995,264658555.39550466,0.0,28186614.07570998,0.0 + 11/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23801943.402071693,0.0,65809471.708597619,0.0,38634926.03636472,0.0,55818361.457457859,0.0,7691.248755466738,7570.840821398867,7580.596622536899,9125.373055346981,299149715.9215901,0.0,28186614.07570998,0.0 + 11/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48409096.231133807,0.0,74832179.89579985,0.0,42623110.16217527,0.0,62693198.76308861,0.0,12787.173527308476,12586.987940293597,12603.207558981816,15171.493273729886,419893489.3333271,0.0,28186614.07570998,0.0 + 11/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67347962.68336596,0.0,84496111.84503596,0.0,48208145.90470983,0.0,70451591.74543922,0.0,12765.913826487129,12566.0610640546,12582.253716326824,15146.269450238027,461521605.18413469,0.0,35233267.594637479,0.0 + 11/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71085856.78593202,0.0,86845172.47778592,0.0,50488598.5262432,0.0,73214321.19963432,0.0,17902.042938231865,17621.783116411032,17644.49058257454,21240.090583221838,549504214.9831768,0.0,14093307.03785499,0.0 + 11/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,57106041.92586438,0.0,71956502.38571434,0.0,35717385.00382097,0.0,55355453.10220671,0.0,17919.65723407791,17639.121657169664,17661.851465812648,21260.98927286416,488269213.0853342,0.0,63419881.67034747,0.0 + 11/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,42920886.97384562,0.0,57089165.74059186,0.0,21124000.362604705,0.0,37679652.2513141,0.0,10243.70798080364,10083.340821402322,10096.334235235901,12153.76849285064,312091450.83740928,0.0,63419881.67034747,69761869.8373822 + 11/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46530288.19508603,0.0,60057467.82770237,0.0,23923252.27592802,0.0,41200317.123010877,0.0,10233.817255606991,10073.604937353743,10086.585805507002,12142.03352495701,324841074.9060564,0.0,49326574.63249246,69761869.8373822 + 11/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49531105.74285285,0.0,62501287.90436231,0.0,26239663.949579229,0.0,44098020.36711619,0.0,5123.770864303803,5043.557275584617,5050.056413919397,6079.158544138449,259037633.11651717,0.0,35233267.594637479,69761869.8373822 + 11/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50800480.74085297,0.0,63248214.384012687,0.0,27246666.92660043,0.0,45248702.6392249,0.0,5123.770864303803,5043.557275584617,5050.056413919397,6079.158544138449,263211619.84329755,0.0,35233267.594637479,62010550.96656194 + 11/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54774172.36169503,0.0,66822076.7837769,0.0,30666820.740995639,0.0,49417984.56968489,0.0,2560.92699520091,2520.8352053505807,2524.0835588089755,3038.44212321266,240000490.83341573,0.0,35233267.594637479,46507913.22492146 + 11/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,63483735.61606641,0.0,75183491.56682793,0.0,38709057.244097437,0.0,59233188.705732788,0.0,2560.4412025962035,2520.357017919725,2523.6047551848075,3037.8657488310198,274921640.5410389,0.0,21139960.556782485,23253956.61246073 + 11/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,28516772.9004921,0.0,38466241.029051657,0.0,7057273.502377883,0.0,20843298.78867768,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,114054011.05499327,0.0,14093307.03785499,0.0 + 11/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48185562.623256999,0.0,58082059.79502295,0.0,26394082.88648154,0.0,43341577.92095145,0.0,1281.4131537536283,1261.3523917842277,1262.9777730846038,1520.3477923814665,195177211.22532708,0.0,14093307.03785499,0.0 + 11/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,49780175.554325047,0.0,59074459.20169395,0.0,28227880.725459216,0.0,45112625.23088318,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,201354858.90099306,0.0,14093307.03785499,0.0 + 11/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51113688.75980226,0.0,60224147.85059038,0.0,29809342.276957536,0.0,46727773.838944729,0.0,1279.7282462173337,1259.6938617897329,1261.3171059049285,1518.3487139065274,207023669.26644159,0.0,14093307.03785499,0.0 + 11/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51434588.97826358,0.0,60281393.7677681,0.0,30421278.840193057,0.0,47140467.52234168,0.0,1280.463497600455,1260.4176026752903,1262.0417794044877,1519.22106160633,208437447.2971981,0.0,14093307.03785499,0.0 + 11/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46881165.318778458,0.0,55473784.92165337,0.0,26357031.180281067,0.0,41903403.543392378,0.0,1283.4209847426085,1263.3287898045149,1264.9567178954667,1522.7300072062706,189819356.36284117,0.0,14093307.03785499,15502637.741640486 + 11/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46260959.618597958,0.0,55943481.35408117,0.0,28927791.571516545,0.0,42410821.58842974,0.0,5133.683938970434,5053.315159218059,5059.826871581867,6090.920028825082,250358939.72756899,0.0,56373228.15141996,38756594.35410121 + 11/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60539542.34822021,0.0,70238606.12397945,0.0,38018354.77607928,0.0,55964713.99283452,0.0,12842.557518663969,12641.504884932543,12657.794754268361,15237.204265336253,416925838.3646375,0.0,56373228.15141996,38756594.35410121 + 11/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67189280.98398318,0.0,76222072.42244838,0.0,45286362.43454365,0.0,65173802.86333027,0.0,12840.50395623545,12639.483471406937,12655.770735945105,15234.767791904116,446005412.1440752,0.0,28186614.07570998,0.0 + 11/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67186491.56759015,0.0,77050352.06405568,0.0,44658605.41356209,0.0,65117436.43183298,0.0,12852.490895117888,12651.282752525009,12667.585221641224,15248.98983731854,446326140.8208105,0.0,28186614.07570998,0.0 + 11/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62239600.516396809,0.0,73243474.27420683,0.0,42052868.1998443,0.0,61591361.154955688,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,354663119.0333795,0.0,28186614.07570998,0.0 + 11/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49812249.35880164,0.0,65819832.90532459,0.0,38498872.37202216,0.0,55622830.39877389,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,325379082.03431919,0.0,28186614.07570998,0.0 + 11/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50059089.529651489,0.0,65905927.01327694,0.0,37653890.82926796,0.0,54934910.65408036,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,324179115.0256736,0.0,28186614.07570998,0.0 + 11/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52850060.09317592,0.0,66596871.033167678,0.0,37413132.660673189,0.0,55086801.95461941,0.0,7725.417256470496,7604.474408145284,7614.273549592747,9165.912677496071,327543146.15177276,0.0,28186614.07570998,0.0 + 11/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58343268.48935117,0.0,68213406.65674003,0.0,38374500.05517439,0.0,56557679.06329352,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,491143910.46669957,0.0,28186614.07570998,0.0 + 11/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,59396556.18811774,0.0,68981012.18598134,0.0,38004049.88150742,0.0,56365492.473358187,0.0,23157.82402451403,22795.283969322456,22824.658019383194,27475.87421659764,569260215.5563071,0.0,35233267.594637479,0.0 + 11/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62284183.44335475,0.0,71661184.19523725,0.0,40592880.1970323,0.0,59523770.893839079,0.0,18004.049195088508,17722.192446287336,17745.029300120957,21361.117113164037,503458615.72624239,0.0,14093307.03785499,0.0 + 11/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,50537329.98035898,0.0,60090737.90864765,0.0,28842075.651109406,0.0,45397731.87585831,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,454225666.6448871,0.0,63419881.67034747,0.0 + 11/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,36961836.08408565,0.0,46672459.66415027,0.0,15389314.139099801,0.0,29162733.917539136,0.0,15411.06902239676,15169.805861919049,15189.353705122032,18284.645118403507,358783889.1531037,0.0,63419881.67034747,69761869.8373822 + 11/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,39931724.3581016,0.0,49714835.65253307,0.0,17858824.751360235,0.0,32371465.60440199,0.0,12852.490895117888,12651.282752525009,12667.585221641224,15248.98983731854,332190105.7101665,0.0,49326574.63249246,69761869.8373822 + 11/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42924422.68284118,0.0,52928738.32224331,0.0,20513436.289498126,0.0,35919911.266044069,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,306090351.47737106,0.0,35233267.594637479,69761869.8373822 + 11/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45355530.82955375,0.0,55470533.9321123,0.0,22508776.78347121,0.0,38572070.3539985,0.0,7706.753286692074,7586.102626295502,7595.878093826884,9143.768589801499,277223921.24695327,0.0,35233267.594637479,62010550.96656194 + 11/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51890304.73046851,0.0,62237540.14214605,0.0,27885777.144531114,0.0,45500421.303206909,0.0,5123.770864303803,5043.557275584617,5050.056413919397,6079.158544138449,264181598.47295917,0.0,35233267.594637479,46507913.22492146 + 11/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,62743053.54967807,0.0,72980555.41164154,0.0,37889058.94651385,0.0,57714685.876099679,0.0,2555.8726975122165,2515.8600336350825,2519.101976076916,3032.4453919394297,269571162.1409223,0.0,21139960.556782485,23253956.61246073 + 11/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21725571.525543877,0.0,29924431.47405536,0.0,2851258.3947640724,0.0,12676963.70014894,0.0,1280.7042032962764,1260.6545400785399,1262.279022125765,1519.506649726121,86341544.98932839,0.0,14093307.03785499,0.0 + 11/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44826520.40176731,0.0,53233186.73106737,0.0,24167976.88627528,0.0,39963605.163880158,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110914,1520.0700178164987,181361714.0173841,0.0,14093307.03785499,0.0 + 11/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45001198.79634324,0.0,53058509.33166556,0.0,24908065.519292855,0.0,40224739.69252097,0.0,1283.6330100592057,1263.5374958252276,1265.1656928551893,1522.9815671509094,182399657.2970285,0.0,14093307.03785499,0.0 + 11/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44482848.77196691,0.0,52304469.890300709,0.0,24978217.2224429,0.0,39876745.87288881,0.0,1284.4588811153456,1264.3504377159175,1265.9796823044806,1523.961431633583,180861783.31556887,0.0,14093307.03785499,0.0 + 11/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45575562.26515821,0.0,53311884.30368233,0.0,26228836.43365006,0.0,41173207.173385519,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,185487016.87970907,0.0,14093307.03785499,0.0 + 11/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43360118.077925879,0.0,51125663.761361729,0.0,24268153.362891389,0.0,38622696.86304668,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,176564243.24796767,0.0,14093307.03785499,15502637.741640486 + 11/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,56612852.85746813,0.0,64956051.85622837,0.0,36806584.475241158,0.0,53388163.14549316,0.0,1282.327614830443,1262.2525368022924,1263.8790780314,1521.4327655419818,230951263.51717288,0.0,56373228.15141996,38756594.35410121 + 11/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,55277331.14516902,0.0,64799416.10029119,0.0,36129227.566388238,0.0,52535288.903748098,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,285518282.2325491,0.0,56373228.15141996,38756594.35410121 + 11/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,58678497.49139693,0.0,68032008.25403792,0.0,42088773.1235731,0.0,60107104.2920603,0.0,7699.240442651108,7578.707397229518,7588.473335253433,9134.854887129783,344110976.98521807,0.0,28186614.07570998,0.0 + 11/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56512261.156950298,0.0,65654435.451554488,0.0,40309161.8708291,0.0,57754459.77589113,0.0,7705.53451119838,7584.902930959524,7594.676852561016,9142.322559201753,335529090.9293394,0.0,28186614.07570998,0.0 + 11/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53649836.69454668,0.0,63034269.33813591,0.0,38430013.318991769,0.0,55447548.368936229,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,287439673.95248886,0.0,28186614.07570998,0.0 + 11/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55618223.00393415,0.0,64385448.36641143,0.0,38214775.36257165,0.0,55553439.201501119,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,290673807.39279046,0.0,28186614.07570998,0.0 + 11/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52644623.11710952,0.0,61948459.86581065,0.0,36724487.97156866,0.0,53590620.35130039,0.0,7711.494537070733,7590.769651515005,7600.551132984735,9149.393902391126,320296144.512051,0.0,28186614.07570998,0.0 + 11/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54470613.39553451,0.0,64404946.01299665,0.0,37380045.42816487,0.0,54876812.400993358,0.0,10275.671048922764,10114.80350172734,10127.837458435844,12191.691453068664,364888429.701446,0.0,28186614.07570998,0.0 + 11/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54935816.07775873,0.0,66711085.393507767,0.0,37783716.35263967,0.0,55822740.883976567,0.0,12842.557518663967,12641.504884932543,12657.79475426836,15237.204265336253,407417979.8314068,0.0,28186614.07570998,0.0 + 11/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60137345.274651277,0.0,69935582.9776529,0.0,38873080.873878,0.0,57650982.93845709,0.0,15401.051816911302,15159.945477654173,15179.480614745602,18272.76008647525,457044648.8494701,0.0,35233267.594637479,0.0 + 11/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,63655891.56170512,0.0,73422972.76190719,0.0,41930099.85869746,0.0,61478880.37668713,0.0,17955.710000173265,17674.610010486158,17697.38554949461,21303.76450361761,509161136.7885748,0.0,14093307.03785499,0.0 + 11/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,52049648.555830847,0.0,61841602.71568988,0.0,30435795.79139173,0.0,47524524.76672755,0.0,10256.818454957753,10096.246048637797,10109.256092173877,12169.32356997693,345325490.82632687,0.0,63419881.67034747,0.0 + 11/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,38279109.10686019,0.0,48309333.79181502,0.0,16708858.487304202,0.0,30993718.983264068,0.0,7691.248755466738,7570.840821398867,7580.596622536899,9125.373055346981,249376033.68634165,0.0,63419881.67034747,69761869.8373822 + 11/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,41121545.56433764,0.0,51143010.32160015,0.0,19109196.48649931,0.0,34078822.768417309,0.0,5129.310459321772,5049.010147209169,5055.5163121256,6085.731062167927,222203019.87182246,0.0,49326574.63249246,69761869.8373822 + 11/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,43748781.44134209,0.0,53697145.54997869,0.0,21585890.225323265,0.0,37142134.223935369,0.0,5129.310459321772,5049.010147209169,5055.5163121256,6085.731062167927,232924396.17154748,0.0,35233267.594637479,69761869.8373822 + 11/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45902397.25735686,0.0,55861853.92924416,0.0,23424885.01883594,0.0,39491422.75631388,0.0,5127.499170311159,5047.227214265913,5053.731081691266,6083.582036897987,241403901.17314963,0.0,35233267.594637479,62010550.96656194 + 11/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49722183.86791961,0.0,59675638.72895573,0.0,26871273.289548603,0.0,43787859.11189695,0.0,5127.499170311159,5047.227214265913,5053.731081691266,6083.582036897987,256780297.20971967,0.0,35233267.594637479,46507913.22492146 + 11/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,58008658.559454727,0.0,67839203.82277638,0.0,34838883.19166793,0.0,53471339.84260164,0.0,2562.8263075072566,2522.7047835684554,2525.9555461692077,3040.695584762933,252505941.41572894,0.0,21139960.556782485,23253956.61246073 + 11/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,19061806.92097538,0.0,27012428.2146812,0.0,2081107.7617916479,0.0,10788357.682858106,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642173,78121098.83050493,0.0,14093307.03785499,0.0 + 11/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43655962.372145619,0.0,52443101.37445423,0.0,21896605.105503616,0.0,38226121.90781607,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,175402626.31276924,0.0,14093307.03785499,0.0 + 11/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45469063.047574128,0.0,53877781.13718402,0.0,25224958.754655575,0.0,40896227.9958049,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,184648866.48806829,0.0,14093307.03785499,0.0 + 11/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45878218.82962149,0.0,53990770.47902472,0.0,26206297.427536884,0.0,41577220.78556016,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,186836747.39632914,0.0,14093307.03785499,0.0 + 11/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46086975.99703604,0.0,53994150.98719321,0.0,26881076.62441277,0.0,41989825.666689317,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,188136269.1499172,0.0,14093307.03785499,0.0 + 11/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42812464.51678086,0.0,50608001.88263961,0.0,23944648.286749305,0.0,38193717.47447388,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,232348938.97597567,0.0,14093307.03785499,15502637.741640486 + 11/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,55020929.930120009,0.0,63341573.560470428,0.0,35815513.47328257,0.0,52000167.02960791,0.0,20538.12816094729,20216.59993320364,20242.65108568303,24367.70507441455,513492487.3087755,0.0,56373228.15141996,38756594.35410121 + 11/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,55556156.76265384,0.0,65072416.451082129,0.0,36588250.30769459,0.0,53065071.62681569,0.0,17961.863908977062,17680.66757869962,17703.450923503002,21311.065881504175,479047269.0019081,0.0,56373228.15141996,38756594.35410121 + 11/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62017671.36162947,0.0,71014204.59822186,0.0,44588003.75618834,0.0,63192600.514777619,0.0,12829.902792126473,12629.048270499732,12645.322088216431,15222.189915360126,432787747.26914718,0.0,28186614.07570998,0.0 + 11/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63135847.923347938,0.0,71828101.95219764,0.0,44089743.70955348,0.0,62781594.88017032,0.0,10272.40316498836,10111.586777125553,10124.616588756084,12187.814233523293,395542403.2170852,0.0,28186614.07570998,0.0 + 11/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57427806.87341792,0.0,66479217.97819844,0.0,41106069.68900064,0.0,58825155.888643,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,300740171.88763216,0.0,28186614.07570998,0.0 + 11/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62175128.555889178,0.0,71935617.68945199,0.0,42358601.19956904,0.0,61804610.39046576,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,315199259.9728838,0.0,28186614.07570998,0.0 + 11/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64898333.78013176,0.0,74890318.24482623,0.0,42820503.76788891,0.0,63079453.45911018,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,322702070.9935807,0.0,28186614.07570998,0.0 + 11/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65374844.365941699,0.0,75259486.54042989,0.0,42627875.2075562,0.0,62924098.81609826,0.0,7723.423837393386,7602.512196415697,7612.308809353069,9163.547561854564,361752757.58808627,0.0,28186614.07570998,0.0 + 11/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64366550.23931898,0.0,73690369.4228368,0.0,41992643.63415961,0.0,61618832.25102691,0.0,12872.37306232231,12670.85366069283,12687.18134892178,15272.579269757605,434279149.9774426,0.0,28186614.07570998,0.0 + 11/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,61271909.31117606,0.0,69944212.2795152,0.0,39771256.23197288,0.0,58250504.890912268,0.0,12872.37306232231,12670.85366069283,12687.18134892178,15272.579269757605,421848637.1436767,0.0,35233267.594637479,0.0 + 11/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62927737.776160407,0.0,71470934.83674598,0.0,41597789.2066335,0.0,60342140.39265439,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,505993658.4143347,0.0,14093307.03785499,0.0 + 11/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,47811587.775506149,0.0,56328475.66666241,0.0,27094024.75108684,0.0,42588219.536718498,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,443405875.80191758,0.0,63419881.67034747,0.0 + 11/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,33497983.610895039,0.0,42257083.8113306,0.0,12999744.828007382,0.0,25567121.43327221,0.0,10293.776308516892,10132.625320104988,10145.682242045506,12213.172652456848,268348857.1667525,0.0,63419881.67034747,69761869.8373822 + 11/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,35807149.28012883,0.0,44522811.4084486,0.0,15218211.619386722,0.0,28303168.228475505,0.0,10292.366233117345,10131.23731969887,10144.292453059197,12211.499651821174,277857164.9041474,0.0,49326574.63249246,69761869.8373822 + 11/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38235319.7176014,0.0,46913158.45486209,0.0,17622432.323899043,0.0,31256952.886207425,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,211030775.5664238,0.0,35233267.594637479,69761869.8373822 + 11/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39579549.81793017,0.0,48310821.72055432,0.0,18684939.974044574,0.0,32697959.594815408,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,216327583.01309718,0.0,35233267.594637479,62010550.96656194 + 11/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41999978.88912034,0.0,50727090.41361542,0.0,21083173.483536886,0.0,35641738.36162314,0.0,2576.1019054750056,2535.7725495734587,2539.040151324507,3056.4465749909379,187998481.40080584,0.0,35233267.594637479,46507913.22492146 + 11/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,48941630.6830273,0.0,57431469.450143348,0.0,28084325.588973296,0.0,44001772.92379492,0.0,2576.7211565019408,2536.382106110046,2539.650493336908,3057.1812926961317,217014964.82106097,0.0,21139960.556782485,23253956.61246073 + 11/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,10293342.299620197,0.0,17051386.853194979,0.0,0.0,0.0,3350952.688115928,0.0,1288.206897947171,1268.0397786450488,1269.6737773259625,1528.4083105339458,49971265.39295876,0.0,14093307.03785499,0.0 + 11/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,33713020.83192808,0.0,41295348.108349,0.0,10506361.12759801,0.0,26876965.07741682,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,131669578.23285297,0.0,14093307.03785499,0.0 + 11/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,34455500.54978141,0.0,41271232.89048056,0.0,17152066.57106593,0.0,29704076.81952987,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,141865257.2314354,0.0,14093307.03785499,0.0 + 11/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35116086.369000088,0.0,41735241.075338248,0.0,18394212.89794658,0.0,30646180.850697295,0.0,1288.5119921743095,1268.340096565146,1269.9744822363526,1528.770293188283,145171869.90397296,0.0,14093307.03785499,0.0 + 11/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35406539.16318697,0.0,41887014.76981361,0.0,19070456.710382016,0.0,31138768.12910067,0.0,1288.6611382643442,1268.4869077453182,1270.121482597715,1528.9472493308529,146785159.17306087,0.0,14093307.03785499,0.0 + 11/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32451244.298663249,0.0,38873919.487458948,0.0,16604087.623792341,0.0,27850901.92924253,0.0,5152.827591788684,5072.159114580195,5078.69510930385,6113.633242135783,192882487.5472677,0.0,14093307.03785499,15502637.741640486 + 11/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,45881735.37371279,0.0,52849358.476990979,0.0,29008055.277443246,0.0,43113836.900587279,0.0,20616.19187478895,20293.441545042337,20319.591715781644,24460.324691012527,479335365.4045859,0.0,56373228.15141996,38756594.35410121 + 11/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,45608743.03356455,0.0,53681979.036094117,0.0,32284948.264622876,0.0,44338338.56080553,0.0,18041.255935700818,17758.816708434446,17781.70075636801,21405.26149063194,445867334.5031738,0.0,56373228.15141996,38756594.35410121 + 11/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53653894.84222008,0.0,62028781.68959175,0.0,37748978.969746727,0.0,53902608.61399205,0.0,12889.526212419403,12687.738275025238,12704.087720803132,15292.930827571816,400201683.0445012,0.0,28186614.07570998,0.0 + 11/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44924633.128372739,0.0,59577234.446091409,0.0,36134832.13258871,0.0,51714031.02847354,0.0,10318.179982652095,10156.646950169103,10169.734826431797,12242.126680272757,346742809.1178191,0.0,28186614.07570998,0.0 + 11/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32064057.658317854,0.0,56245211.58364938,0.0,34119457.68161171,0.0,48574607.98024371,0.0,5161.5721728880939,5080.766797631193,5087.313884233026,6124.00835380905,248236515.2546436,0.0,28186614.07570998,0.0 + 11/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,514437.380908092,41191731.811099138,0.0,27347596.777608079,0.0,34850406.010113928,0.0,5169.7713615334209,5088.83762644872,5095.395113137258,6133.73637815446,180745600.324207,514437.380908092,28186614.07570998,0.0 + 11/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,16991722.359825337,32236238.45962323,0.0,20909120.234655829,0.0,27758452.371147269,0.0,5169.209929777259,5088.284984011438,5094.841758563787,6133.070260806942,158251276.02480028,16991722.359825337,28186614.07570998,0.0 + 11/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,13458526.221003244,29068529.93318602,0.0,16775993.357580936,0.0,24206438.79155716,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,185988076.7139858,13458526.221003244,28186614.07570998,0.0 + 11/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,38168662.18064575,0.0,20300775.49950581,0.0,31100880.602405318,0.0,12893.728018893937,12691.874301435566,12708.229076905645,15297.916110561035,282500609.31062319,0.0,28186614.07570998,0.0 + 11/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,35489575.73944624,0.0,54258074.33406024,0.0,29429515.73021417,0.0,43927211.05670877,0.0,12885.119921743091,12683.400965651457,12699.744822363522,15287.702931882828,355905863.9703367,0.0,35233267.594637479,0.0 + 11/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41073353.82427078,0.0,58788511.853892039,0.0,33442583.751472117,0.0,48976831.124751839,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,451864848.62633046,0.0,14093307.03785499,0.0 + 11/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,29959807.026864847,0.0,46447385.62524919,0.0,20659519.308556029,0.0,33743968.337000939,0.0,18018.949252776256,17736.859240792382,17759.714994287733,21378.795462840386,400430228.52017936,0.0,63419881.67034747,0.0 + 11/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,18119331.96175261,0.0,33559050.74454234,0.0,7583741.6409317399,0.0,17942286.33896871,0.0,10292.366233117345,10131.23731969887,10144.292453059197,12211.499651821174,231210235.0539031,0.0,63419881.67034747,69761869.8373822 + 11/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,21963888.74392867,0.0,36600341.56942834,0.0,10213324.890985925,0.0,21357441.38413667,0.0,10295.168378649452,10133.995597119932,10147.054284802247,12214.824290530547,244182749.7724474,0.0,49326574.63249246,69761869.8373822 + 11/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,27825488.04122869,0.0,41918353.904814708,0.0,14510939.971550949,0.0,26975594.379475897,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,188096224.74647988,0.0,35233267.594637479,69761869.8373822 + 11/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,30564249.4652349,0.0,44099242.42430182,0.0,16254766.74441285,0.0,29263001.435539426,0.0,5144.746060404829,5064.204101077763,5070.729844954568,6104.044813639857,197162669.42176629,0.0,35233267.594637479,62010550.96656194 + 11/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,34464782.80057913,0.0,47371116.37208651,0.0,19436498.347902247,0.0,33150409.946368845,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,172891203.33723039,0.0,35233267.594637479,46507913.22492146 + 11/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,44104497.158135067,0.0,56446076.339717458,0.0,28188170.091555455,0.0,43809935.75613233,0.0,2568.10079124709,2527.896694281388,2531.154147189021,3046.9535583808235,210975458.03349424,0.0,21139960.556782485,23253956.61246073 + 11/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,8128761.514712786,0.0,17349647.552994759,0.0,0.0,0.0,3716066.1688194286,0.0,1284.050395623545,1263.948347140694,1265.5770735945105,1523.4767791904117,48407864.580503959,0.0,14093307.03785499,0.0 + 11/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32721625.38248068,0.0,44031638.3657773,0.0,13951377.767587744,0.0,30006013.02790969,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,139901603.98872528,0.0,14093307.03785499,0.0 + 11/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35178471.431223828,0.0,45353004.14150213,0.0,20290652.05097867,0.0,33786586.34705385,0.0,1283.8428143572213,1263.7440155978187,1265.3724787495865,1523.2304919417825,153818997.25308556,0.0,14093307.03785499,0.0 + 11/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,37623497.54000861,0.0,47519325.8121196,0.0,22526007.417744839,0.0,36232988.00658331,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,163082654.32930608,0.0,14093307.03785499,0.0 + 11/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39191862.03839193,0.0,48762153.77459843,0.0,23896678.319701248,0.0,37691795.40182777,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,168733438.9794892,0.0,14093307.03785499,0.0 + 11/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36464289.33297117,0.0,45682570.15776437,0.0,21234187.422596866,0.0,34207179.927621889,0.0,5131.961116850589,5051.619308199894,5058.128835286572,6088.875966144051,214378333.65628625,0.0,14093307.03785499,15502637.741640486 + 11/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,50874362.31613828,0.0,60550566.86176896,0.0,34506172.60317536,0.0,49900344.40513611,0.0,20517.24183728709,20196.040588836677,20222.0652485024,24342.92424867171,502833225.11009106,0.0,56373228.15141996,38756594.35410121 + 11/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,50865514.19308522,0.0,61406174.37827343,0.0,35699783.35789515,0.0,49265882.82110262,0.0,17970.862140828878,17689.52494155318,17712.31969997265,21321.74194011273,466137370.15123918,0.0,56373228.15141996,38756594.35410121 + 11/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51567379.61536679,0.0,65244544.921660069,0.0,40676693.85038954,0.0,57835526.39197846,0.0,12858.182690045813,12656.885441341536,12673.195130094145,15255.742934731357,407722567.0857611,0.0,28186614.07570998,0.0 + 11/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,15717124.2757314,0.0,51581906.14264344,0.0,33572382.70082567,0.0,47890710.62118619,0.0,10306.884626007763,10145.528424440185,10158.601973347631,12228.725170784526,302985188.44087508,0.0,28186614.07570998,0.0 + 11/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,51469541.68110602,0.0,33146177.483258949,0.0,46743264.56869473,0.0,5154.6445530573769,5073.947630981273,5080.48593039086,6115.788997323411,208488505.33537025,0.0,28186614.07570998,0.0 + 11/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,46630001.1254105,0.0,29576061.44385554,0.0,38845092.147361818,0.0,5165.4637032899859,5084.597405398679,5091.149428129604,6128.625506082048,192342564.47106899,0.0,28186614.07570998,0.0 + 11/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,6821949.961944319,35386464.25940293,0.0,22731653.390564719,0.0,31095303.405168758,0.0,5165.067981819692,5084.207879021826,5090.759399808254,6128.155997663162,166498909.58506299,6821949.961944319,28186614.07570998,0.0 + 11/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1575060.8796144019,0.0,40984398.10452753,0.0,24233163.582772469,0.0,35428064.43070757,0.0,7734.5697319960149,7613.483599959058,7623.294350669723,9176.77174033563,217953916.9202795,0.0,28186614.07570998,0.0 + 11/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26350339.1642253,0.0,50092720.639410387,0.0,28091339.582525515,0.0,41908815.56345763,0.0,12886.611382643443,12684.869077453179,12701.21482597715,15289.47249330853,339267018.95539519,0.0,28186614.07570998,0.0 + 11/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39161506.28520866,0.0,57932835.366826888,0.0,31806727.88414785,0.0,47333672.40029345,0.0,12880.509527375027,12678.86274786729,12695.200756622537,15282.232874954689,368967243.2010272,0.0,35233267.594637479,0.0 + 11/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45384508.999748978,0.0,62601254.443338219,0.0,35627509.89611736,0.0,52278189.2572463,0.0,18016.544662636537,17734.492294959877,17757.344998403933,21375.942508428452,465475030.6683945,0.0,14093307.03785499,0.0 + 11/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,35050383.387309517,0.0,51201624.91662706,0.0,23238979.257342768,0.0,37650012.864979628,0.0,18009.141790466303,17727.20531613447,17750.048629562545,21367.15928318348,416613798.4959074,0.0,63419881.67034747,0.0 + 11/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,24206210.29536743,0.0,39533976.93555705,0.0,10895479.792094775,0.0,22948189.476526567,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,251387699.41629014,0.0,63419881.67034747,69761869.8373822 + 11/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,28938988.34156852,0.0,43402001.13454609,0.0,14322488.780012379,0.0,27295990.97512632,0.0,10274.046014931173,10113.203907946036,10126.235803414687,12189.763412269001,267691166.13007254,0.0,49326574.63249246,69761869.8373822 + 11/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,33216638.41082119,0.0,46955904.78020333,0.0,17434949.506649998,0.0,31248317.42554354,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,205721658.57262767,0.0,35233267.594637479,69761869.8373822 + 11/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36102104.31934256,0.0,49327352.28484775,0.0,19370868.083630817,0.0,33757822.97739228,0.0,5136.20158249418,5055.793388562776,5062.308294378042,6093.907116761647,215411705.0411213,0.0,35233267.594637479,62010550.96656194 + 11/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40868495.88339144,0.0,53738306.71949056,0.0,23172573.883867064,0.0,38579773.77569513,0.0,2567.2660201184114,2527.074991650455,2530.3313857103787,3045.9631343018188,194773438.17685605,0.0,35233267.594637479,46507913.22492146 + 11/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,50222260.986497018,0.0,62699338.49275389,0.0,31595250.628560477,0.0,48938280.26645136,0.0,2565.9805584252947,2525.809654099947,2529.064417643286,3044.4379830720256,231850183.78192876,0.0,21139960.556782485,23253956.61246073 + 11/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12665388.151578606,0.0,23403925.288018519,0.0,222696.62047567548,0.0,7696739.303116284,0.0,1282.9902792126473,1262.9048270499735,1264.532208821643,1522.2189915360128,63186276.06702208,0.0,14093307.03785499,0.0 + 11/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38341588.05545436,0.0,49121947.47723534,0.0,18723683.722356075,0.0,35191562.72757153,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,160563021.8572032,0.0,14093307.03785499,0.0 + 11/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41035162.55950239,0.0,50992937.368095029,0.0,23582786.341017639,0.0,38325525.24571669,0.0,1282.102306869719,1262.0307560797247,1263.6570115217347,1521.1654462471163,173120651.38891763,0.0,14093307.03785499,0.0 + 11/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42340763.56379269,0.0,51956040.80365176,0.0,25015141.12405005,0.0,39721802.215805988,0.0,1281.8747925777898,1261.8068035664783,1263.4327704228165,1520.8955092244967,178214583.2601502,0.0,14093307.03785499,0.0 + 11/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38376362.723363678,0.0,47135029.4022563,0.0,22251239.77004087,0.0,35474024.64677592,0.0,1288.3605782509704,1268.191053055023,1269.825246668454,1528.5906463480658,162514539.6299978,0.0,14093307.03785499,0.0 + 11/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,35758212.402807388,0.0,44250006.4727585,0.0,19833604.04478071,0.0,32288513.41165799,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,209008342.56388293,0.0,14093307.03785499,15502637.741640486 + 11/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,33230536.63900493,0.0,48838170.98574694,0.0,25576908.488236663,0.0,38455582.04494193,0.0,20676.839719109037,20353.13993604575,20379.36703425515,24532.28104322777,455491057.9954262,0.0,56373228.15141996,38756594.35410121 + 11/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,13893172.540533625,0.0,39063163.99952512,0.0,19375655.926230428,0.0,30221967.83158382,0.0,18108.155843164488,17824.669285366614,17847.63819106698,21484.635677111117,373508316.6860261,0.0,56373228.15141996,38756594.35410121 + 11/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7771240.702360788,27503934.509506834,0.0,14696155.727047814,0.0,22990525.685962168,0.0,12929.467975608171,12727.054742460157,12743.454851519291,15340.320204924456,258655687.91076029,7771240.702360788,28186614.07570998,0.0 + 11/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,27755694.34860822,21511408.18278418,0.0,11808284.257114632,0.0,18752681.78234782,0.0,10330.704668738235,10168.975559958088,10182.07932289285,12256.986742217303,206651860.87994997,27755694.34860822,28186614.07570998,0.0 + 11/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,36501107.57438896,18699844.034118166,0.0,10630187.559252037,0.0,16139489.824512752,0.0,5165.352334369118,5084.487779979044,5091.039661446425,6128.493371108651,122759264.7467346,36501107.57438896,28186614.07570998,0.0 + 11/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,34934524.67455437,14414701.774387148,0.0,8465753.363767717,0.0,10108498.24040885,0.0,5165.352334369118,5084.487779979044,5091.039661446425,6128.493371108651,110278696.70741537,34934524.67455437,28186614.07570998,0.0 + 11/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,29727713.54447586,8971766.160280278,0.0,5287186.0948720569,0.0,7187244.26137288,0.0,5168.830120537715,5087.911120756391,5094.467413547777,6132.619631642432,98787978.34786876,29727713.54447586,28186614.07570998,0.0 + 11/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,18320852.28925653,8110301.600759176,0.0,3163330.2910055827,0.0,5897003.870618504,0.0,7750.809292660618,7629.468927271969,7639.300276708465,9196.039359162041,133146860.0432744,18320852.28925653,28186614.07570998,0.0 + 11/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,3717694.36354767,11986384.291404803,0.0,3705924.5714031888,0.0,7784452.13418988,0.0,12916.230548450674,12714.02454969425,12730.40786802004,15324.614502905742,216743759.8856524,3717694.36354767,28186614.07570998,0.0 + 11/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,21519337.380127878,0.0,8394407.557421718,0.0,14796772.2954358,0.0,12923.538049279316,12721.217650234206,12737.610237604225,15333.284573694473,238086859.07190944,0.0,35233267.594637479,0.0 + 11/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12748247.09755307,0.0,24873352.84838837,0.0,11406407.152270724,0.0,18497968.36167553,0.0,18091.945473474912,17808.71269203857,17831.66103603978,21465.402692262294,338237774.2776237,0.0,14093307.03785499,0.0 + 11/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,2215644.1012476219,0.0,12324473.178556268,0.0,0.0,0.0,3150916.943745923,0.0,18096.66170153254,17813.355086666143,17836.309412866667,21470.998316823174,288473402.48794856,0.0,63419881.67034747,0.0 + 11/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,0.0,0.0,16217.959781733223,0.0,0.0,1559050.4369319087,0.0,0.0,10338.830439423453,10176.974120187368,10190.088190083381,12266.627658955578,154717291.43092094,1559050.4369319087,63419881.67034747,69761869.8373822 + 11/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,0.0,0.0,297666.36309044269,0.0,0.0,5376277.014153443,0.0,0.0,10337.66024107543,10175.822241512782,10188.934827095554,12265.239263284864,154981230.02577753,5376277.014153443,49326574.63249246,69761869.8373822 + 11/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,3539343.1823986985,0.0,0.0,2621557.3614087777,0.0,0.0,5169.415219711726,5088.487060093684,5095.0440950416909,6133.313829477789,80889879.9179683,2621557.3614087777,35233267.594637479,69761869.8373822 + 11/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,0.0,0.0,9504373.39432896,0.0,0.0,123579.23930109883,0.0,0.0,5171.9735927020869,5091.005381277616,5097.565661339508,6136.34924137175,86893191.3504164,123579.23930109883,35233267.594637479,62010550.96656194 + 11/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,10263221.385234122,0.0,18374936.504677394,0.0,0.0,0.0,1407851.7371174007,0.0,2586.8794061663559,2546.3813264809457,2549.6625987238546,3069.233668158732,68753774.8253365,0.0,35233267.594637479,46507913.22492146 + 11/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,20147707.93775944,0.0,26942704.54380262,0.0,4541957.973492723,0.0,15897565.87045062,0.0,2586.8734619270978,2546.3754752998618,2549.6567400029268,3069.226615545758,106237612.57949773,0.0,21139960.556782485,23253956.61246073 + 11/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1293.4367309635489,1273.1877376499309,1274.8283700014634,1534.613307772879,19353838.12699616,0.0,14093307.03785499,0.0 + 11/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,2720824.3169768329,0.0,10909054.646249386,0.0,0.0,0.0,0.0,0.0,1293.437716471186,1273.188707729262,1274.8293413308409,1534.6144770400713,32983731.836483115,0.0,14093307.03785499,0.0 + 11/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,11501553.322877951,0.0,16441839.566229746,0.0,0.0,0.0,4217421.330538005,0.0,1293.3930581220403,1273.144748514903,1274.7853254705474,1534.5614916135237,51513998.86504135,0.0,14093307.03785499,0.0 + 11/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14772840.218981173,0.0,19520976.042690465,0.0,1681580.3400070372,0.0,10342676.253195223,0.0,1293.1668678668203,1272.9220993103243,1274.562389359743,1534.293125509918,65667872.99024239,0.0,14093307.03785499,0.0 + 11/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18105822.913974,0.0,22969992.881922436,0.0,5682223.798203256,0.0,14006041.727889838,0.0,1292.8085613428426,1272.5694021418215,1274.2092377049399,1533.8680084966193,80108520.07685994,0.0,14093307.03785499,0.0 + 11/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,17998778.477313799,0.0,23107351.051438545,0.0,5464755.165665943,0.0,13432616.879648367,0.0,5169.7713615334209,5088.837626448721,5095.395113137258,6133.73637815446,137359367.29945255,0.0,14093307.03785499,15502637.741640486 + 11/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,35534873.895948838,0.0,41160388.490874,0.0,20922536.005518557,0.0,32061659.469624245,0.0,20677.981021726853,20354.263371358174,20380.491917228643,24533.635155217613,439086395.1378783,0.0,56373228.15141996,38756594.35410121 + 11/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,46397757.49109392,0.0,53008912.114909019,0.0,30622684.656658714,0.0,44710800.7711737,0.0,18095.13385901582,17811.85116280904,17834.803551050172,21469.18558999842,445499662.0201797,0.0,56373228.15141996,38756594.35410121 + 11/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44721574.71365948,0.0,51084941.22800654,0.0,29789015.11967656,0.0,43316257.606877978,0.0,12929.602571636953,12727.187231363,12743.587511147607,15340.47989797476,362378874.6318609,0.0,28186614.07570998,0.0 + 11/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43069845.96927128,0.0,49425109.41585375,0.0,28253807.05877518,0.0,41509745.64186385,0.0,10344.729267844885,10182.780601349436,10195.902153489082,12273.626393705483,317047846.3847641,0.0,28186614.07570998,0.0 + 11/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36321103.40776108,0.0,42071825.97280447,0.0,24486651.873868508,0.0,35998875.53440726,0.0,5173.508727977128,5092.516483723547,5099.078710995175,6138.170620775871,216290245.1453395,0.0,28186614.07570998,0.0 + 11/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34491393.50183697,0.0,40043684.171376507,0.0,22707827.461481934,0.0,33786587.96962987,0.0,5173.757498318326,5092.761359518646,5099.32390233773,6138.465777289554,208445003.8391966,0.0,28186614.07570998,0.0 + 11/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35423994.09612304,0.0,41154575.06562027,0.0,22476327.926396558,0.0,33829029.24279015,0.0,5173.746923854195,5092.750950599723,5099.313480005853,6138.453231091516,210299278.83891467,0.0,28186614.07570998,0.0 + 11/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40125028.81170956,0.0,46329956.85153421,0.0,25570463.557255366,0.0,38199155.228140328,0.0,7755.443856854889,7634.030936499203,7643.868164550223,9201.538092666355,266270176.23069389,0.0,28186614.07570998,0.0 + 11/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46133674.96359733,0.0,53043971.40933319,0.0,29371881.345209056,0.0,43675741.483309868,0.0,12918.26131186492,12716.023521128407,12732.40941533292,15327.02392617774,365522654.6296638,0.0,28186614.07570998,0.0 + 11/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49801435.35332538,0.0,57382125.1901063,0.0,31266592.52837465,0.0,46766517.51264827,0.0,12902.735012547228,12700.740288922962,12717.10648912285,15308.60256471258,378281734.2635548,0.0,35233267.594637479,0.0 + 11/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56622937.19436574,0.0,64793069.760443139,0.0,36461404.601660858,0.0,53801498.866511669,0.0,18045.336697387163,17762.833585035332,17785.722809124385,21410.10315860054,481693296.9235122,0.0,14093307.03785499,0.0 + 11/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,45918751.517418328,0.0,54870429.66641901,0.0,24627974.51567757,0.0,40196423.64185623,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,435471749.0697583,0.0,63419881.67034747,0.0 + 11/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,34202455.321491349,0.0,43830529.75727223,0.0,12113017.996316344,0.0,25597747.202915558,0.0,10301.85818886053,10140.580677104172,10153.647850334173,12222.761494980237,269891603.8386003,0.0,63419881.67034747,69761869.8373822 + 11/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,38964704.06528358,0.0,48932802.94764431,0.0,15810594.643784667,0.0,30604232.728298606,0.0,10296.542430157862,10135.348137595649,10148.40856816442,12216.454550194507,288380647.65501597,0.0,49326574.63249246,69761869.8373822 + 11/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,44535024.553462188,0.0,54866198.55835894,0.0,20235591.61208923,0.0,36522611.99548598,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,233107574.09131635,0.0,35233267.594637479,69761869.8373822 + 11/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,47875137.52353066,0.0,58463537.2248276,0.0,22808700.23043143,0.0,40009884.62614265,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,246116628.52747888,0.0,35233267.594637479,62010550.96656194 + 11/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49296021.44603448,0.0,59334229.34141001,0.0,24904821.254684774,0.0,42035224.03909628,0.0,2573.792094662363,2533.498899279983,2536.7635712005619,3053.7060726326369,214082234.37721754,0.0,35233267.594637479,46507913.22492146 + 11/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,54923540.75409758,0.0,64106176.41041952,0.0,31499977.747279534,0.0,49267075.66875603,0.0,2573.444077129223,2533.156330026247,2536.4205605113768,3053.293163114212,238303501.45136453,0.0,21139960.556782485,23253956.61246073 + 11/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,15144241.176349074,0.0,23141452.04115423,0.0,0.0,0.0,6919881.290054653,0.0,1286.8960473311816,1266.7494496399918,1268.3817856002809,1526.8530363163184,64461543.65555394,0.0,14093307.03785499,0.0 + 11/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38503975.74663861,0.0,46472017.052844468,0.0,15982284.789030575,0.0,32352787.0426312,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,152572140.07415486,0.0,14093307.03785499,0.0 + 11/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39437243.69959496,0.0,46818023.91479157,0.0,20328569.155144857,0.0,34238798.952459458,0.0,1287.237306232231,1267.0853660692833,1268.7181348921782,1527.2579269757605,160083711.1650009,0.0,14093307.03785499,0.0 + 11/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39870105.66073097,0.0,47032023.500112999,0.0,21382380.480604538,0.0,35029755.130509469,0.0,1287.0678037697329,1266.9185171994562,1268.5510710205525,1527.0568187743134,162572803.93070857,0.0,14093307.03785499,0.0 + 11/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40881122.35495024,0.0,47961657.02690987,0.0,22650461.50710569,0.0,36275029.71199152,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,167013622.93902666,0.0,14093307.03785499,0.0 + 11/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38366424.200681697,0.0,45454251.18387855,0.0,20362748.254400433,0.0,33310111.61459742,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,156738887.59162743,0.0,14093307.03785499,15502637.741640486 + 11/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,47926191.74935476,0.0,57445913.29651681,0.0,31461575.900958055,0.0,46165691.10638995,0.0,5148.271215078931,5067.674068797824,5074.20428408221,6108.227275097253,260033528.68822197,0.0,56373228.15141996,38756594.35410121 + 11/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,31559058.72519699,0.0,49381307.84052112,0.0,27037955.62857671,0.0,39077959.37218925,0.0,12888.080150899914,12686.3148518686,12702.662463420469,15291.2151307785,339902062.91556707,0.0,56373228.15141996,38756594.35410121 + 11/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,16016639.39469963,0.0,50204665.31518124,0.0,29114989.310673927,0.0,42803582.2965316,0.0,12900.275642831568,12698.319421098995,12714.682501763602,15305.684616424864,331168140.1727148,0.0,28186614.07570998,0.0 + 11/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,44708603.69686629,0.0,26764675.96948131,0.0,39589702.99130379,0.0,12909.56442650907,12707.462787135206,12723.837649960193,15316.705403683549,304230235.61988827,0.0,28186614.07570998,0.0 + 11/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,7537986.753928833,44933822.83849867,0.0,26816507.23060795,0.0,38890948.32640901,0.0,7750.956787118952,7629.6141126770439,7639.445649199753,9196.214355706647,226619709.65244425,7537986.753928833,28186614.07570998,0.0 + 11/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,414575.2681551706,42517899.01742864,0.0,25151461.105679599,0.0,34419777.56008311,0.0,7748.775365836511,7627.466841951723,7637.295611496935,9193.626182625,218034928.09006793,414575.2681551706,28186614.07570998,0.0 + 11/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,40598770.38530376,0.0,22931140.5772043,0.0,33311932.51196219,0.0,7750.432115744777,7629.097655131109,7638.928526145556,9195.591853149124,212812424.01508434,0.0,28186614.07570998,0.0 + 11/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,2950830.6383637387,0.0,38576311.46315837,0.0,20415705.474759956,0.0,30846971.25652791,0.0,7748.195554934978,7626.896108098016,7636.7241421944049,9192.938259123073,208726933.46447168,0.0,28186614.07570998,0.0 + 11/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,18443869.990735856,0.0,44314013.924116689,0.0,22686836.59320485,0.0,35030515.98996984,0.0,18067.144190297888,17784.299677576353,17807.216562916645,21435.976916495933,390815930.9482597,0.0,28186614.07570998,0.0 + 11/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,36486177.26979892,0.0,53993091.784789208,0.0,28524142.968292186,0.0,43080945.473996687,0.0,23179.180924936194,22816.306523484385,22845.707663251887,27501.21336370553,508917028.0082378,0.0,35233267.594637479,0.0 + 11/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40530869.007380548,0.0,56349404.530211,0.0,31070126.074970738,0.0,46048963.60120329,0.0,18047.329374657365,17764.795066571136,17787.68681822935,21412.467394116466,444043566.3666332,0.0,14093307.03785499,0.0 + 11/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,27300934.056268313,0.0,41915700.771695319,0.0,17585756.17976957,0.0,29516186.52813576,0.0,18067.144190297888,17784.299677576353,17807.216562916645,21435.976916495933,386659271.9861015,0.0,63419881.67034747,0.0 + 11/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,14273003.921121715,0.0,28313078.228685809,0.0,3898890.9302448618,0.0,13042141.847701833,0.0,15477.269973978142,15234.97042525365,15254.602239647698,18363.19002040914,291115232.5011933,0.0,63419881.67034747,69761869.8373822 + 11/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,18694570.25993286,0.0,32199896.897617356,0.0,7232176.735720659,0.0,17305197.632231665,0.0,12889.526212419403,12687.738275025238,12704.087720803132,15292.930827571816,268299260.45445306,0.0,49326574.63249246,69761869.8373822 + 11/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,23654446.722022095,0.0,36616184.9775195,0.0,11096568.594392572,0.0,22185590.474018374,0.0,10300.55634196066,10139.299210860381,10152.364732790329,12221.216903328093,247681164.6481346,0.0,35233267.594637479,69761869.8373822 + 11/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,29568290.164955189,0.0,42496644.98161153,0.0,15296252.766365037,0.0,27888170.974645966,0.0,7707.958688527978,7587.289157340798,7597.066153838538,9145.198753066783,230584404.79756446,0.0,35233267.594637479,62010550.96656194 + 11/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,38361252.6668203,0.0,51425194.92144975,0.0,22299307.970153888,0.0,37015744.09472828,0.0,5117.915168652622,5037.793251941234,5044.284962743228,6072.2109847739679,225681435.37835203,0.0,35233267.594637479,46507913.22492146 + 12/01 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,52749480.52599158,0.0,65722202.45509322,0.0,34785031.64626927,0.0,52670594.114224519,0.0,2543.2356892843197,2503.4208601284246,2506.6467734255554,3017.4520640612897,243982028.13441713,0.0,21139960.556782485,23253956.61246073 + 12/01 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,22181396.64917215,0.0,33294512.53410268,0.0,7032867.537163052,0.0,16330111.17162985,0.0,1262.8396403398602,1243.0696501878377,1244.671472309586,1498.3110277106244,97734898.3380402,0.0,14093307.03785499,0.0 + 12/01 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52976756.17851361,0.0,65288517.96628524,0.0,33500971.835088634,0.0,52005171.37819876,0.0,1255.9585575200095,1236.2962920031965,1237.8893859615817,1490.1468856119512,222564465.3940345,0.0,14093307.03785499,0.0 + 12/01 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59010563.16200666,0.0,71134052.78202215,0.0,38294179.07000452,0.0,57932060.28132158,0.0,1252.2790726025613,1232.674410108538,1234.2628369024242,1485.7813172119725,245108846.78792668,0.0,14093307.03785499,0.0 + 12/01 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62861557.71277538,0.0,75006316.8920139,0.0,41242245.31365024,0.0,61637384.27264702,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,259479233.84024666,0.0,14093307.03785499,0.0 + 12/01 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65150015.84235496,0.0,77181320.25509231,0.0,43010585.78560921,0.0,63793601.445665638,0.0,1251.8605872241543,1232.2624761967985,1233.8503721717944,1485.284800285062,267867252.97788225,0.0,14093307.03785499,0.0 + 12/01 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62338634.05314172,0.0,74189736.00828415,0.0,40058121.298517618,0.0,60125650.84326041,0.0,1256.3576635376856,1236.6891499417127,1238.2827501376499,1490.6204096671107,255511162.10702683,0.0,14093307.03785499,15502637.741640486 + 12/01 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,63799623.0826091,0.0,77981803.0441266,0.0,41400185.48617425,0.0,62030964.60022165,0.0,1257.5432105268058,1237.8561369715547,1239.4512409493919,1492.0270159145908,264029335.58883608,0.0,56373228.15141996,38756594.35410121 + 12/01 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65066729.69920926,0.0,83847718.10412818,0.0,47939720.87925376,0.0,69841413.6699462,0.0,5057.122241332643,4977.9520492393589,4984.366648543805,6000.082497117512,342365866.72297736,0.0,56373228.15141996,38756594.35410121 + 12/01 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64577973.258497897,0.0,86045159.18398401,0.0,53794790.324719849,0.0,76328240.99640849,0.0,7592.039349283027,7473.184556976459,7482.814518050215,9007.66488196586,394346695.6662023,0.0,28186614.07570998,0.0 + 12/01 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,54758746.033203948,0.0,80040185.61400718,0.0,50760800.097824309,0.0,72287788.42719376,0.0,7602.386937125704,7483.370151401118,7493.013237652912,9019.941899949485,371602884.1862943,0.0,28186614.07570998,0.0 + 12/01 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48527532.20434259,0.0,74830612.97391409,0.0,47803252.628782089,0.0,67923757.85129637,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,315157162.3747301,0.0,28186614.07570998,0.0 + 12/01 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50051737.36202106,0.0,74776720.19609474,0.0,46732734.016186017,0.0,66168959.28190634,0.0,5083.969755220972,5004.379260289367,5010.8279137526219,6031.936047513405,313802157.5726031,0.0,28186614.07570998,0.0 + 12/01 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40823789.77044413,0.0,69831056.47257228,0.0,43358137.34129614,0.0,61774791.55862504,0.0,7635.2409182466449,7515.709797318706,7525.394556505104,9058.921894435922,330034736.9423605,0.0,28186614.07570998,0.0 + 12/01 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21941334.728291423,0.0,63313883.6958949,0.0,37577840.11485511,0.0,54610472.61493129,0.0,10196.944492329812,10037.309424064273,10050.243521744054,12098.28539884854,330021549.3671248,0.0,28186614.07570998,0.0 + 12/01 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51069625.355097319,0.0,75032984.449311,0.0,42795514.87701886,0.0,63227278.05372067,0.0,12728.43363925855,12529.167636149006,12545.312747473741,15101.800638798022,422582375.5171934,0.0,28186614.07570998,0.0 + 12/01 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62312286.194721769,0.0,79583195.98099177,0.0,44302434.657030988,0.0,65725982.55133295,0.0,15328.858121831077,15088.881988338151,15108.325552870296,18187.105023065324,481291313.8540549,0.0,35233267.594637479,0.0 + 12/01 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66890892.1080525,0.0,83182397.11250293,0.0,47297867.31251756,0.0,69544157.76926212,0.0,17844.652861577168,17565.291492112476,17587.926163052096,21171.999447984945,533926846.17535117,0.0,14093307.03785499,0.0 + 12/01 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,56622369.13621413,0.0,72168711.79991099,0.0,36183353.97399414,0.0,56125848.20223516,0.0,10201.540650018951,10041.833628047378,10054.773555625767,12103.738564500582,373747074.14584806,0.0,63419881.67034747,0.0 + 12/01 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,44009187.87715502,0.0,59088093.927149329,0.0,22523858.513755196,0.0,39809363.54697556,0.0,7652.8597946056529,7533.0528468815159,7542.759954357443,9079.826018682028,279941098.877331,0.0,63419881.67034747,69761869.8373822 + 12/01 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,47880660.32267082,0.0,62398889.24147926,0.0,25188472.10041064,0.0,43273902.95776891,0.0,5104.153215292681,5024.246744528433,5030.720999272961,6055.882952438452,255115938.7038467,0.0,49326574.63249246,69761869.8373822 + 12/01 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50604984.949900198,0.0,64450075.65123686,0.0,27325616.671361209,0.0,45853769.92621641,0.0,5110.686712121091,5030.677958245172,5037.160500264995,6063.634697026455,264706222.72228245,0.0,35233267.594637479,69761869.8373822 + 12/01 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51810883.96104497,0.0,65065310.49753513,0.0,28411770.101677937,0.0,47003868.601557027,0.0,5110.686712121091,5030.677958245172,5037.160500264995,6063.634697026455,268763608.68538287,0.0,35233267.594637479,62010550.96656194 + 12/01 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64152135.52047761,0.0,77959599.39486367,0.0,38239981.86930561,0.0,59919598.04957489,0.0,5037.918635675542,4959.049079611248,4965.439320509944,5977.298152052055,315654253.5104774,0.0,35233267.594637479,46507913.22492146 + 12/02 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,78086751.6701993,0.0,92357542.78671888,0.0,50100632.969658378,0.0,75093317.54695565,0.0,2521.9860669721167,2482.5039046176327,2485.702864282638,2992.240198335812,333375003.8966817,0.0,21139960.556782485,23253956.61246073 + 12/02 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36569237.08863614,0.0,49546196.084088239,0.0,14873184.616397623,0.0,30132711.258948797,0.0,1261.3663766959397,1241.6194507610997,1243.2194041528679,1496.5630566350436,149995294.88575263,0.0,14093307.03785499,0.0 + 12/02 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62774419.96120339,0.0,74982179.92579293,0.0,37840830.94304299,0.0,58933605.122562337,0.0,1263.2029112816309,1243.4272340552466,1245.029516960306,1498.7420348161314,253432482.06220953,0.0,14093307.03785499,0.0 + 12/02 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64763179.519232708,0.0,76498159.63624303,0.0,39896805.995889607,0.0,61251645.200270887,0.0,1262.1070374541378,1242.3485163369583,1243.9494092041353,1497.4418223518865,261294838.77888585,0.0,14093307.03785499,0.0 + 12/02 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67824123.71568887,0.0,79501797.11575459,0.0,42115412.59214394,0.0,63966209.9727253,0.0,1262.47434789568,1242.7100764650166,1244.311435239322,1497.8776221696747,272298087.9306837,0.0,14093307.03785499,0.0 + 12/02 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72505595.54005698,0.0,84313491.62837658,0.0,45755645.38383666,0.0,68600889.86445263,0.0,1254.7495220157453,1235.1061841752967,1236.6977445582739,1488.712411137864,289950579.5195167,0.0,14093307.03785499,0.0 + 12/02 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69257829.73334095,0.0,80999140.33767042,0.0,42556774.582439187,0.0,64556804.894940648,0.0,5054.2566289413639,4975.131298544645,4981.542263023914,5996.68255740241,332997955.44087556,0.0,14093307.03785499,15502637.741640486 + 12/02 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,61828086.49196854,0.0,82051563.14190027,0.0,41053342.40818817,0.0,63396391.07041231,0.0,20199.58956633088,19883.361223440264,19908.982963829152,23966.041954714794,550578095.6624036,0.0,56373228.15141996,38756594.35410121 + 12/02 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,39575529.60290095,0.0,84935968.41523847,0.0,44878635.49927452,0.0,68415586.20254725,0.0,17653.902468804816,17377.52733232342,17399.920049978464,20945.681388350684,501963032.1820078,0.0,56373228.15141996,38756594.35410121 + 12/02 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,21215633.348793936,0.0,88158937.16630228,0.0,52888565.754964698,0.0,77123739.71817944,0.0,12624.7434789568,12427.10076465016,12443.114352393219,14978.776221696746,428292321.33194926,0.0,28186614.07570998,0.0 + 12/02 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,5793485.64445478,0.0,89210723.87586256,0.0,55119546.065554138,0.0,79808381.00676784,0.0,10108.513257882727,9950.26259708929,9963.084526047827,11993.36511480482,381186948.3776081,0.0,28186614.07570998,0.0 + 12/02 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,208485.4447739257,0.0,91508184.74463509,0.0,57177705.17589259,0.0,81226638.1913544,0.0,5055.693498939079,4976.5456740744989,4982.958461121,5998.387348806,305769919.495242,0.0,28186614.07570998,0.0 + 12/02 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,87817099.11875274,0.0,55649983.31601505,0.0,74266597.46881074,0.0,5055.693498939079,4976.5456740744989,4982.958461121,5998.387348806,293382585.84216466,0.0,28186614.07570998,0.0 + 12/02 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,6991252.7292288769,0.0,83662420.03979397,0.0,51680201.16095947,0.0,71647349.551265,0.0,5057.122241332642,4977.9520492393589,4984.366648543805,6000.082497117512,289651507.85168728,0.0,28186614.07570998,0.0 + 12/02 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,17851428.125838885,0.0,81352288.82770172,0.0,48073981.30470936,0.0,69410518.56017158,0.0,7574.84608737408,7456.260458790095,7465.868611435932,8987.265733018048,330031484.0246469,0.0,28186614.07570998,0.0 + 12/02 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45021122.06588682,0.0,90642125.2521596,0.0,52160191.6803386,0.0,76871844.13355717,0.0,12559.585575200095,12362.962920031961,12378.893859615817,14901.46885611951,452625763.4914248,0.0,28186614.07570998,0.0 + 12/02 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,82730117.36249012,0.0,112293522.01827176,0.0,65298834.74184011,0.0,94918267.95009361,0.0,12440.041671068475,12245.290498020417,12261.069804677934,14759.6345771387,541382473.6559554,0.0,35233267.594637479,0.0 + 12/02 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92762545.56499015,0.0,120069393.87417034,0.0,71115102.10758928,0.0,102575507.64963874,0.0,17416.058339495863,17143.40669722858,17165.497726549107,20663.48840799418,647120973.4129523,0.0,14093307.03785499,0.0 + 12/02 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,85090190.17777586,0.0,110897391.05732925,0.0,60242461.149229738,0.0,90015679.91631203,0.0,17318.008179491877,17046.891530770696,17068.858190448143,20547.155635954154,605377011.0326405,0.0,63419881.67034747,0.0 + 12/02 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,76914556.87144807,0.0,101532610.72765327,0.0,49371244.10915999,0.0,77337794.17084532,0.0,9856.871225878642,9702.560068040002,9715.062807007389,11694.80144959887,452645669.8609963,0.0,63419881.67034747,69761869.8373822 + 12/02 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,84288268.55130619,0.0,107455060.29297748,0.0,54718594.89310721,0.0,83917112.56674144,0.0,9799.77264777603,9646.355378829316,9658.78569231796,11627.056166266842,477014127.89081689,0.0,49326574.63249246,69761869.8373822 + 12/02 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,89582931.47163916,0.0,111798783.51322383,0.0,58431002.08259471,0.0,88623049.77592668,0.0,4912.284078541867,4835.381354906604,4841.612237319516,5828.237545778826,421938821.6229529,0.0,35233267.594637479,69761869.8373822 + 12/02 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,94836027.47365849,0.0,116298549.62976769,0.0,62423770.840871158,0.0,93576156.6075052,0.0,4865.67023073394,4789.497255581916,4795.669011649555,5772.931994714682,439940071.12545087,0.0,35233267.594637479,62010550.96656194 + 12/02 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98754764.43093486,0.0,119491478.19661144,0.0,65876566.14192812,0.0,97644559.13973725,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,418363310.05746188,0.0,35233267.594637479,46507913.22492146 + 12/03 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,114442004.7834113,0.0,135286538.74715299,0.0,78872895.85444099,0.0,114272207.24257441,0.0,2398.6175296594899,2361.066724771012,2364.1092002349498,2845.8681380809618,478764428.36146679,0.0,21139960.556782485,23253956.61246073 + 12/03 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72628442.95589225,0.0,91734542.89062295,0.0,41039842.033428598,0.0,66728399.09528056,0.0,1214.2151789702576,1195.2064138318602,1196.746559288265,1440.61996040539,290299664.18020918,0.0,14093307.03785499,0.0 + 12/03 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100510422.11203642,0.0,119398319.48550162,0.0,66074845.56066805,0.0,98658050.87254262,0.0,1212.5470496072624,1193.5643993452323,1195.102428898374,1438.6407885926088,402785114.8299453,0.0,14093307.03785499,0.0 + 12/03 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104702265.34853634,0.0,123495417.55795823,0.0,69777434.30856231,0.0,102990099.39363536,0.0,1210.3013572299718,1191.3538637010416,1192.889044753381,1435.9763603103016,419075090.8622731,0.0,14093307.03785499,0.0 + 12/03 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,107236527.52847666,0.0,125585413.26703945,0.0,71954837.65532953,0.0,105359262.51722026,0.0,1209.1693851286887,1190.2396128341734,1191.7733580605419,1434.633318622161,428228977.3967899,0.0,14093307.03785499,0.0 + 12/03 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,109021043.1745978,0.0,127019995.24619843,0.0,73405086.95031531,0.0,106961144.52569878,0.0,1209.1693851286887,1190.2396128341734,1191.7733580605419,1434.633318622161,434500206.3255343,0.0,14093307.03785499,0.0 + 12/03 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,107638054.76862666,0.0,125581264.43582434,0.0,71576674.29730831,0.0,104817201.22536394,0.0,4832.125547742973,4756.477720860927,4762.606927887844,5733.132508825171,481916828.4662641,0.0,14093307.03785499,15502637.741640486 + 12/03 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,106145065.89813183,0.0,131314826.56161465,0.0,73807786.55097881,0.0,108386655.15833463,0.0,19291.79979540569,18989.783070726917,19014.25334446041,22888.98404397795,708319687.0855155,0.0,56373228.15141996,38756594.35410121 + 12/03 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,90642008.76781851,0.0,132758717.7313632,0.0,77299714.89114398,0.0,112128483.51918337,0.0,17067.890428109953,16800.689419446076,16822.338822573758,20250.400471521036,668217673.819452,0.0,56373228.15141996,38756594.35410121 + 12/03 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,88635912.6435841,0.0,134415573.09706194,0.0,83391530.10749519,0.0,118753062.55851519,0.0,12239.251164436575,12047.64340422727,12063.168022431017,14521.404305664792,608333359.2349912,0.0,28186614.07570998,0.0 + 12/03 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92537113.88617304,0.0,133892948.71625343,0.0,83670132.10108762,0.0,119227887.78107912,0.0,9791.40093154926,9638.114723381817,9650.534417944813,11617.123444531833,575837907.1472612,0.0,28186614.07570998,0.0 + 12/03 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,89937322.42145399,0.0,132301736.35126549,0.0,82705456.50817226,0.0,117802405.45860581,0.0,4906.115316706356,4829.30916618841,4835.532223966383,5820.918545337108,496157671.64741119,0.0,28186614.07570998,0.0 + 12/03 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92907281.03793706,0.0,129923009.39377868,0.0,80867531.1739614,0.0,114689167.03704754,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,491920609.7233486,0.0,28186614.07570998,0.0 + 12/03 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,99435215.9947287,0.0,129236103.93072307,0.0,79569691.18639048,0.0,113960384.52640507,0.0,4918.392076684406,4841.393731198777,4847.632361172211,5835.484452418326,495795845.07555267,0.0,28186614.07570998,0.0 + 12/03 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,100837803.70347625,0.0,130654062.84250294,0.0,79005113.24241674,0.0,113777311.42591399,0.0,7392.653419408982,7276.92005103,7286.297105255542,8771.101087199155,534891389.2007272,0.0,28186614.07570998,0.0 + 12/03 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,116011331.74988684,0.0,139566975.11838485,0.0,82927071.15074218,0.0,119807261.99100797,0.0,12295.980191711014,12103.48432799694,12119.080902930527,14588.711131045815,642298763.6032853,0.0,28186614.07570998,0.0 + 12/03 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,118663595.90974568,0.0,141199482.25751449,0.0,82831113.10424912,0.0,120122073.11057127,0.0,12311.09695917788,12118.36443964908,12133.980189125312,14606.646598602762,647028581.8536786,0.0,35233267.594637479,0.0 + 12/03 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,121501012.2069034,0.0,143125086.01951234,0.0,84782947.36864075,0.0,122438711.24095313,0.0,17263.416856376527,16993.15484500272,17015.05225947576,20482.385114956705,730162189.5089316,0.0,14093307.03785499,0.0 + 12/03 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,106297991.44303438,0.0,127216757.37505505,0.0,69380529.46449772,0.0,103650970.68455272,0.0,17318.008179491877,17046.891530770696,17068.858190448143,20547.155635954154,665677537.6991334,0.0,63419881.67034747,0.0 + 12/03 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,97259329.16065271,0.0,118742414.54860509,0.0,56753195.51447092,0.0,89929271.90864922,0.0,9903.662291936233,9748.618611229598,9761.18070133098,11750.317263351406,510873815.05663159,0.0,63419881.67034747,69761869.8373822 + 12/03 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,103164121.84358345,0.0,124170764.03755096,0.0,60242754.46320142,0.0,94837255.94568305,0.0,9907.469726163761,9752.366439364017,9764.933358924485,11754.834638723667,530661471.27745226,0.0,49326574.63249246,69761869.8373822 + 12/03 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,106372659.8794921,0.0,126520165.8204807,0.0,62589973.06487349,0.0,97689560.7207585,0.0,4963.145846338146,4885.446872239779,4891.742269181856,5888.583091756075,467436464.57186189,0.0,35233267.594637479,69761869.8373822 + 12/03 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,107075714.849056,0.0,126508792.78030718,0.0,63142330.80649389,0.0,98167577.41499922,0.0,4972.375843253626,4894.532371831694,4900.839476367331,5899.534130765651,469296630.41084226,0.0,35233267.594637479,62010550.96656194 + 12/03 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,106946157.15553786,0.0,125536819.4491258,0.0,63759748.94208704,0.0,98363993.94256754,0.0,2499.478997875543,2460.349187886455,2463.5195989376677,2965.5364200003725,432006702.62623837,0.0,35233267.594637479,46507913.22492146 + 12/04 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,111996410.45336674,0.0,129824858.32279116,0.0,69524017.8261787,0.0,104796873.17938277,0.0,2501.187300608469,2462.0307468214139,2465.2033247329475,2967.563255983065,453567704.44304457,0.0,21139960.556782485,23253956.61246073 + 12/04 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64131814.10079762,0.0,79645036.69868267,0.0,29781145.30957628,0.0,52898611.82529365,0.0,1258.3237280950187,1238.6244353916318,1240.2205294004016,1492.9530702150883,245285046.28151793,0.0,14093307.03785499,0.0 + 12/04 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86486422.59685707,0.0,101294022.5239213,0.0,49979930.49320652,0.0,79106135.24367893,0.0,1261.7377125396445,1241.9849732728988,1243.5853976777317,1497.0036324388389,335746033.0350087,0.0,14093307.03785499,0.0 + 12/04 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82603495.83673489,0.0,96375448.33805336,0.0,48844646.37740293,0.0,75973882.14069845,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,322751600.47066119,0.0,14093307.03785499,0.0 + 12/04 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76868322.25532896,0.0,89597399.98056796,0.0,45607438.89284734,0.0,70658689.2068565,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,301773010.63550457,0.0,14093307.03785499,0.0 + 12/04 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,71619321.78122132,0.0,83438181.20420948,0.0,42556972.47277209,0.0,65776491.96180746,0.0,1275.4766324342755,1255.5088078135862,1257.126659059574,1513.3043364470044,282476066.58872637,0.0,14093307.03785499,0.0 + 12/04 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64223105.015247408,0.0,75413073.9517417,0.0,36901890.100818198,0.0,58045794.04501791,0.0,5111.745395024433,5031.720067270165,5038.203952153832,6064.890783878859,311071479.8268035,0.0,14093307.03785499,15502637.741640486 + 12/04 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,65242212.92674307,0.0,77055064.64089589,0.0,37387724.660890597,0.0,58163102.77011298,0.0,20487.41596160728,20166.681642804644,20192.668470471803,24307.53698570128,544403596.0167486,0.0,56373228.15141996,38756594.35410121 + 12/04 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,68966222.85847879,0.0,80242980.33863993,0.0,42426042.74745759,0.0,63651860.15964332,0.0,18034.896571260393,17752.55690103068,17775.43288256347,21397.71634747524,525145275.8326069,0.0,56373228.15141996,38756594.35410121 + 12/04 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67460366.12999039,0.0,77295868.57313037,0.0,45711247.88530961,0.0,66016334.02146043,0.0,12888.080150899912,12686.314851868598,12702.662463420469,15291.2151307785,449329597.9589737,0.0,28186614.07570998,0.0 + 12/04 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61655000.42687676,0.0,72344019.35792133,0.0,42238555.150978129,0.0,61533533.520803477,0.0,10317.132352769893,10155.615721128142,10168.702268546962,12240.883707408017,392147511.03605058,0.0,28186614.07570998,0.0 + 12/04 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55517184.40207396,0.0,70224842.78018688,0.0,40523130.7420071,0.0,59311483.81045577,0.0,5158.033246757604,5077.283274049462,5083.825871775604,6119.80955304434,302756868.7389809,0.0,28186614.07570998,0.0 + 12/04 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59852040.39764458,0.0,69802904.30412363,0.0,40308049.52956495,0.0,59091707.32922091,0.0,5151.57097647315,5070.922171811848,5077.456572608493,6112.142316031858,306138232.8934853,0.0,28186614.07570998,0.0 + 12/04 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45879485.784137789,0.0,61128952.39488312,0.0,35722212.21748177,0.0,52149579.34729199,0.0,5162.041197227969,5081.228479307532,5087.776160833328,6124.564833284553,272120428.15814688,0.0,28186614.07570998,0.0 + 12/04 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19002338.551740447,0.0,50116449.077640388,0.0,29091657.172681784,0.0,42580154.0120483,0.0,7735.4100959787369,7614.31080788686,7624.122624539371,9177.768800122465,256536403.19680966,0.0,28186614.07570998,0.0 + 12/04 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46470294.78350943,0.0,61055827.874261628,0.0,34459085.36990907,0.0,50996384.91638996,0.0,12889.526212419403,12687.738275025238,12704.087720803132,15292.930827571816,385849011.87302067,0.0,28186614.07570998,0.0 + 12/04 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60176274.00756876,0.0,71415270.04616685,0.0,38590464.99883945,0.0,57920261.13898391,0.0,12875.695427450826,12674.124013575474,12690.455915987912,15276.521129160117,420762737.54178658,0.0,35233267.594637479,0.0 + 12/04 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66515142.97822033,0.0,77384950.80378878,0.0,43375787.97088458,0.0,64033840.305386457,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,520507597.4135223,0.0,14093307.03785499,0.0 + 12/04 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,53719546.12809117,0.0,64013275.613991219,0.0,30517934.87831676,0.0,48247131.83207766,0.0,17976.705538729628,17695.276859969712,17718.079030323144,21328.67490866576,465485339.2681545,0.0,63419881.67034747,0.0 + 12/04 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41503312.87021501,0.0,52045552.19141947,0.0,17590001.805544814,0.0,32914099.16463794,0.0,10265.65392353481,10104.943196306027,10117.964447004575,12179.806516173041,297659091.13068369,0.0,63419881.67034747,69761869.8373822 + 12/04 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46667211.74725786,0.0,57262740.07777338,0.0,21695487.647455984,0.0,38255305.85551748,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,317187304.4865337,0.0,49326574.63249246,69761869.8373822 + 12/04 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51696964.54530242,0.0,62362169.080362368,0.0,25789071.02394779,0.0,43566810.5697585,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,260009881.37995778,0.0,35233267.594637479,69761869.8373822 + 12/04 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,53579504.2290849,0.0,64163408.01487553,0.0,27381237.067277068,0.0,45609654.89713111,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,267387083.78763313,0.0,35233267.594637479,62010550.96656194 + 12/04 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,56754239.202152308,0.0,67189166.90767414,0.0,30442440.84571259,0.0,49345856.91246894,0.0,2561.4084065925528,2521.30908015708,2524.55804425153,3039.013299452242,242058343.6576402,0.0,35233267.594637479,46507913.22492146 + 12/05 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,64973405.56675146,0.0,75260768.3159819,0.0,38422156.35233174,0.0,59010007.51713656,0.0,2560.4412025962035,2520.357017919725,2523.6047551848075,3037.8657488310198,275978505.160516,0.0,21139960.556782485,23253956.61246073 + 12/05 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29724375.713375179,0.0,38520386.504798639,0.0,7929268.08738989,0.0,21016752.75444421,0.0,1279.975516719851,1259.9372612264049,1261.5608189866178,1518.6420909188688,116343199.5362742,0.0,14093307.03785499,0.0 + 12/05 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51436736.89084184,0.0,60550719.299732718,0.0,28058507.796368466,0.0,45386577.45284114,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,204566131.86789713,0.0,14093307.03785499,0.0 + 12/05 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53300943.55177976,0.0,62167119.972599867,0.0,29998404.34257755,0.0,47678509.16397514,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,212270809.09157188,0.0,14093307.03785499,0.0 + 12/05 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54188427.63936228,0.0,62897432.771033767,0.0,31280876.80292319,0.0,48866210.74759655,0.0,1278.1988531238656,1258.188411630451,1259.8097158194583,1516.534147381651,216358780.02155534,0.0,14093307.03785499,0.0 + 12/05 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53921547.394091669,0.0,62433505.50713459,0.0,31668825.089892046,0.0,48928497.27258207,0.0,1278.7173527308476,1258.6987940293598,1260.3207558981818,1517.1493273729885,216085965.69181333,0.0,14093307.03785499,0.0 + 12/05 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52015198.4231242,0.0,60607585.39342273,0.0,29795524.263190785,0.0,46600426.73264463,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,265442210.31993819,0.0,14093307.03785499,15502637.741640486 + 12/05 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,55563441.09578513,0.0,65472313.72130112,0.0,34254027.88761501,0.0,48946655.17962892,0.0,20434.173562934164,20114.27276381512,20140.192057292432,24244.366912062935,509995256.9503069,0.0,56373228.15141996,38756594.35410121 + 12/05 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,68682736.7041067,0.0,78812366.46831842,0.0,43725670.61918449,0.0,64177270.29902801,0.0,17902.042938231865,17621.783116411032,17644.49058257454,21240.09058322184,523268310.084219,0.0,56373228.15141996,38756594.35410121 + 12/05 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65803769.8470736,0.0,80627669.06479082,0.0,49584372.35389302,0.0,70496331.51459551,0.0,12807.042032962763,12606.545400785399,12622.790221257652,15195.06649726121,458145341.72851428,0.0,28186614.07570998,0.0 + 12/05 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38454334.01996125,0.0,70651448.43719514,0.0,43764326.201982099,0.0,62872821.894104119,0.0,10269.064080473645,10108.29996660182,10121.325542841514,12183.852537207275,369400082.21088996,0.0,28186614.07570998,0.0 + 12/05 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,53596873.427316669,0.0,70205329.94290039,0.0,42927772.59137953,0.0,61838501.78479269,0.0,5137.0230074655869,5056.601953973018,5063.117901707344,6094.881706134501,305434326.1957989,0.0,28186614.07570998,0.0 + 12/05 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42385285.13299658,0.0,65237765.81018124,0.0,40429698.46855278,0.0,57329852.00092233,0.0,5139.433803426696,5058.975008473622,5065.494014130884,6097.742023516617,282284522.8710251,0.0,28186614.07570998,0.0 + 12/05 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39214646.38040305,0.0,62537725.23561164,0.0,37866220.577033597,0.0,54395333.373415958,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,271027387.3080879,0.0,28186614.07570998,0.0 + 12/05 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44439750.692628357,0.0,62906985.339878078,0.0,36765611.47376284,0.0,53799423.94930613,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,313447586.3435513,0.0,28186614.07570998,0.0 + 12/05 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49965642.193638738,0.0,66349936.89441337,0.0,37477571.148476209,0.0,55418457.15438938,0.0,12865.45779139668,12664.046649623586,12680.365566323997,15264.374564776468,401718887.8505523,0.0,28186614.07570998,0.0 + 12/05 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,59530293.382312867,0.0,70925782.73857355,0.0,39517519.47487324,0.0,58400084.313162337,0.0,12861.865151012073,12660.510252694405,12676.82461238642,15260.112034099644,420827203.28961518,0.0,35233267.594637479,0.0 + 12/05 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61805306.25350031,0.0,72516853.95993293,0.0,41309177.75811082,0.0,60519428.45280728,0.0,18021.32228725123,17739.19512496996,17762.053888490493,21381.610977660646,505805822.6264918,0.0,14093307.03785499,0.0 + 12/05 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,48249615.52634911,0.0,58735387.248121369,0.0,27390992.231892039,0.0,43741502.04208459,0.0,18011.640907955352,17729.665309473017,17752.511792853595,21370.12439068705,447627689.69193556,0.0,63419881.67034747,0.0 + 12/05 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,35029358.491350058,0.0,45480081.96939138,0.0,13899197.920028612,0.0,27510723.64599865,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,275860274.59635677,0.0,63419881.67034747,69761869.8373822 + 12/05 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,37721650.94474734,0.0,47879939.49117121,0.0,16266041.549896155,0.0,30440390.530705658,0.0,10289.492120809658,10128.408202155526,10141.459689909136,12208.089627279714,286270841.22107496,0.0,49326574.63249246,69761869.8373822 + 12/05 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,40195522.1317467,0.0,50102232.31651986,0.0,18495932.62396371,0.0,33190488.373868593,0.0,5146.888154258446,5066.312660052494,5072.841121022753,6106.586326228424,218997637.18772245,0.0,35233267.594637479,69761869.8373822 + 12/05 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41468658.53856799,0.0,51164095.19078215,0.0,19667785.83176765,0.0,34597769.74699273,0.0,5147.584189324726,5066.997798559966,5073.5271424011239,6107.4121452652739,223922185.90009446,0.0,35233267.594637479,62010550.96656194 + 12/05 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,45234338.64324282,0.0,54793658.81334758,0.0,23187550.07968185,0.0,38888757.3845604,0.0,2572.007027869787,2531.7417780410489,2535.0041857315657,3051.5881590234346,200589533.06322969,0.0,35233267.594637479,46507913.22492146 + 12/06 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,54004307.64602194,0.0,63417459.20917787,0.0,31389219.406092474,0.0,48865982.62022835,0.0,2571.636538009163,2531.3770882683077,2534.639026018829,3051.1485869462715,236156653.34279389,0.0,21139960.556782485,23253956.61246073 + 12/06 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,14683835.995824647,0.0,22995576.77574795,0.0,0.0,0.0,6830206.206669364,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,63754971.31631127,0.0,14093307.03785499,0.0 + 12/06 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38803104.43033038,0.0,47014316.719314727,0.0,16481401.412746013,0.0,32870179.457767019,0.0,1286.1865151012074,1266.0510252694408,1267.682461238642,1526.0112034099644,154414354.35822747,0.0,14093307.03785499,0.0 + 12/06 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39969770.40150143,0.0,47568554.73001246,0.0,20932442.676225984,0.0,34981327.77243752,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,162700152.58515234,0.0,14093307.03785499,0.0 + 12/06 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,40543711.772732857,0.0,47908477.514799538,0.0,21950680.045711895,0.0,35767383.38870341,0.0,1286.5457791396682,1266.4046649623588,1268.0365566323997,1526.4374564776468,165420980.76791118,0.0,14093307.03785499,0.0 + 12/06 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,41451416.95296286,0.0,48703756.841297399,0.0,23034085.650992007,0.0,36805186.572613198,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,169237060.08906395,0.0,14093307.03785499,0.0 + 12/06 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38766263.727547299,0.0,45978862.69368781,0.0,20683257.233539627,0.0,33746165.956052739,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,216133918.53337399,0.0,14093307.03785499,15502637.741640486 + 12/06 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,49492730.027409,0.0,58692216.04103508,0.0,32484039.890404785,0.0,47488862.92187461,0.0,20573.092304073303,20251.01670614646,20277.112208150633,24409.18869557017,495995324.5709095,0.0,56373228.15141996,38756594.35410121 + 12/06 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,40329396.2445444,0.0,55340204.72588958,0.0,32564727.62879398,0.0,45193414.31419098,0.0,18004.049195088508,17722.192446287336,17745.029300120957,21361.117113164037,442824339.9101979,0.0,56373228.15141996,38756594.35410121 + 12/06 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41645311.14907207,0.0,60499451.8460735,0.0,37308960.9721899,0.0,53657619.7208422,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,385671035.16813758,0.0,28186614.07570998,0.0 + 12/06 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32979604.51076189,0.0,57367341.41455957,0.0,35978348.13284381,0.0,51691978.02495664,0.0,10297.898449857848,10136.682928554266,10149.745079137425,12218.063415806084,332105875.6272021,0.0,28186614.07570998,0.0 + 12/06 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30045048.13269212,0.0,54510067.03996503,0.0,34662915.53595086,0.0,49683012.94604423,0.0,5148.949224928924,5068.341464277133,5074.8725395687129,6109.031707903042,245945345.42669235,0.0,28186614.07570998,0.0 + 12/06 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,30157091.685446089,0.0,53757269.78445992,0.0,33992266.37013293,0.0,47954497.41498468,0.0,5148.271215078931,5067.6740687978249,5074.20428408221,6108.227275097253,242895281.89002607,0.0,28186614.07570998,0.0 + 12/06 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,35734225.11649774,0.0,55269464.44418981,0.0,33596297.05322658,0.0,48464039.49215543,0.0,5150.27817098033,5069.649605430191,5076.1823663951649,6110.608451664047,250128213.04616059,0.0,28186614.07570998,0.0 + 12/06 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,34892862.0623703,0.0,54400323.59985986,0.0,32019594.19543601,0.0,46858453.818249139,0.0,7727.3564647097259,7606.383257717769,7616.18485891274,9168.213474047789,283796530.67531219,0.0,28186614.07570998,0.0 + 12/06 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,32064436.37919732,0.0,54505215.628241989,0.0,30511565.54577829,0.0,45663520.11049926,0.0,12868.960473311814,12667.494496399913,12683.81785600281,15268.530363163185,355304429.14367666,0.0,28186614.07570998,0.0 + 12/06 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52509618.57580217,0.0,64961299.26783207,0.0,36202245.853267747,0.0,53591311.71744406,0.0,12863.672707475933,12662.289511524623,12678.606163973247,15262.256630845342,399745045.464095,0.0,35233267.594637479,0.0 + 12/06 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56824288.07582232,0.0,68581827.647926,0.0,39324677.32288763,0.0,57533042.82774518,0.0,18001.45576606414,17719.639617878147,17742.473182131806,21358.040108623896,491621627.1032939,0.0,14093307.03785499,0.0 + 12/06 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,45117448.38492571,0.0,56666160.09287745,0.0,26565646.574629077,0.0,42389425.15113904,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,439936555.5588135,0.0,63419881.67034747,0.0 + 12/06 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,32317032.431501628,0.0,43693031.048076387,0.0,13070388.329313336,0.0,26226359.17098723,0.0,10285.04625670184,10124.03193887969,10137.077787371394,12202.814779224856,269203105.72371867,0.0,63419881.67034747,69761869.8373822 + 12/06 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,35388539.89868823,0.0,46323372.11188461,0.0,15417546.298309727,0.0,29190559.9530911,0.0,10288.028111479149,10126.967112164195,10140.016742926262,12206.352636093738,280260930.8315617,0.0,49326574.63249246,69761869.8373822 + 12/06 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,39318984.53903134,0.0,49958345.76958498,0.0,18506342.052366675,0.0,33149989.127904804,0.0,5142.52312835092,5062.015969439845,5068.538893685697,6101.407389612428,217881808.86080785,0.0,35233267.594637479,69761869.8373822 + 12/06 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,42201691.21335298,0.0,52740677.7449314,0.0,20877948.097410215,0.0,36202582.28043865,0.0,5138.6391256853189,5058.192771560533,5064.7107692256909,6096.799168711188,228912929.94279108,0.0,35233267.594637479,62010550.96656194 + 12/06 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46857160.238873187,0.0,57353843.18387163,0.0,25003376.309632694,0.0,41370741.805954847,0.0,2567.6856287144426,2527.488031195637,2530.744957499173,3046.460983883565,209005688.10298649,0.0,35233267.594637479,46507913.22492146 + 12/07 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,56413243.68605047,0.0,66706308.090547319,0.0,33867712.793216098,0.0,52182919.61613787,0.0,2564.655229660886,2524.5050736045848,2527.7581560628,3042.8655310839637,247545406.5514358,0.0,21139960.556782485,23253956.61246073 + 12/07 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,18748420.496429739,0.0,27253634.299002224,0.0,2197753.7524173215,0.0,10885040.39581036,0.0,1281.1790336509048,1261.1219368753876,1262.7470212110912,1520.0700178164989,78255273.77805361,0.0,14093307.03785499,0.0 + 12/07 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46921373.609556589,0.0,56374461.26213646,0.0,24679123.918867925,0.0,41746348.43202789,0.0,1276.5913826487129,1256.6061064054603,1258.2253716326825,1514.6269450238029,188823086.5231472,0.0,14093307.03785499,0.0 + 12/07 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53810243.81342463,0.0,63293589.92540587,0.0,31602749.7412728,0.0,49482741.65586975,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,217207326.8150718,0.0,14093307.03785499,0.0 + 12/07 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57315942.877030778,0.0,66874419.236673068,0.0,34732883.41305353,0.0,53231825.2751542,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,231163588.79001428,0.0,14093307.03785499,0.0 + 12/07 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58446237.51840426,0.0,67731899.10084658,0.0,36026784.276997,0.0,54437110.13439752,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,235645760.1591807,0.0,14093307.03785499,0.0 + 12/07 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56276009.88951232,0.0,65532190.25652393,0.0,33896657.32931104,0.0,51724296.42205086,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,226432883.0259335,0.0,14093307.03785499,15502637.741640486 + 12/07 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,53443116.20338909,0.0,66050040.00183558,0.0,35012736.69496464,0.0,49640673.81066129,0.0,5090.16061216443,5010.473198212472,5016.929704336736,6039.281262957281,280311207.9104659,0.0,56373228.15141996,38756594.35410121 + 12/07 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,48923680.33982606,0.0,70947890.63935556,0.0,39924916.613525237,0.0,58447486.27182813,0.0,12716.178446421598,12517.10430064212,12533.233867127778,15087.26032030645,408517570.8287276,0.0,56373228.15141996,38756594.35410121 + 12/07 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,51354169.62942533,0.0,74665308.88007537,0.0,46691988.98364769,0.0,66616644.04586847,0.0,12749.063900393337,12549.474926697158,12565.646206038486,15126.277656128967,430093777.2203455,0.0,28186614.07570998,0.0 + 12/07 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27838971.757508033,0.0,64519256.7665257,0.0,41669683.30404421,0.0,59501548.9049118,0.0,12765.913826487129,12566.0610640546,12582.253716326824,15146.269450238027,384547253.73857346,0.0,28186614.07570998,0.0 + 12/07 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,26850111.82504969,0.0,61306806.32546927,0.0,40079039.5486323,0.0,57318762.39703336,0.0,7666.030068181636,7546.016937367755,7555.740750397492,9095.452045539683,300262383.3815363,0.0,28186614.07570998,0.0 + 12/07 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,40137954.00484767,0.0,62871234.826385308,0.0,39636816.3801935,0.0,56627470.772379469,0.0,7666.030068181636,7546.016937367755,7555.740750397492,9095.452045539683,313981139.2691575,0.0,28186614.07570998,0.0 + 12/07 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42875577.587852049,0.0,62955497.84493462,0.0,38788000.89172624,0.0,56121908.09671636,0.0,7669.193118743194,7549.1304697827049,7558.85829491675,9099.204884289908,315495976.7850665,0.0,28186614.07570998,0.0 + 12/07 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,50183521.618064809,0.0,67123372.58588635,0.0,39828946.40824292,0.0,58215044.30979232,0.0,7669.193118743194,7549.1304697827049,7558.85829491675,9099.204884289908,330105877.2858235,0.0,28186614.07570998,0.0 + 12/07 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55904442.281328078,0.0,71803324.91179052,0.0,41469565.49639359,0.0,60942820.73338744,0.0,17887.40349242382,17607.372853858094,17630.06175092748,21222.721439592588,497771367.7553868,0.0,28186614.07570998,0.0 + 12/07 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,59446709.866699937,0.0,73911158.58946906,0.0,41498689.586544487,0.0,61422027.421776209,0.0,23016.91234915526,22656.578292528473,22685.77360616727,27308.68789271379,580683213.1705229,0.0,35233267.594637479,0.0 + 12/07 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,62891586.06160464,0.0,76782341.27926708,0.0,44069838.42064646,0.0,64626767.712180707,0.0,17894.783943734117,17614.637762826307,17637.33602147242,21231.478063343115,516132182.32265236,0.0,14093307.03785499,0.0 + 12/07 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,53042105.69958795,0.0,66752401.83545387,0.0,33219095.350631346,0.0,51771645.39873915,0.0,17883.667808802922,17603.695653061175,17626.37981168201,21218.28919357621,472380565.16605266,0.0,63419881.67034747,0.0 + 12/07 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41170332.93978293,0.0,55012585.290866728,0.0,20385800.190403247,0.0,36631383.2032905,0.0,15319.096591784555,15079.273276865519,15098.70445959219,18175.523340285636,382421453.2310438,0.0,63419881.67034747,69761869.8373822 + 12/07 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,46443404.56935258,0.0,60347512.59870664,0.0,24264757.02123376,0.0,41885879.92091289,0.0,12751.92581252369,12552.29203505922,12568.466944532209,15129.673205625726,363750042.9020729,0.0,49326574.63249246,69761869.8373822 + 12/07 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52358676.252455119,0.0,66307797.12437822,0.0,28710999.161848725,0.0,47822870.32862748,0.0,10187.547442691379,10028.05948699095,10040.98166518269,12087.13615815998,347637751.97819957,0.0,35233267.594637479,69761869.8373822 + 12/07 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57131677.801194179,0.0,71190386.77632311,0.0,32111014.628534158,0.0,52459104.772426228,0.0,7631.564342756853,7512.0907793040719,7521.770875016373,9054.5597779608,327084132.7686148,0.0,35233267.594637479,62010550.96656194 + 12/07 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62918750.33570478,0.0,77024628.1445658,0.0,36725067.79747009,0.0,58457562.51828664,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,311216794.47414556,0.0,35233267.594637479,46507913.22492146 + 12/08 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,72163177.47307624,0.0,85964140.9082037,0.0,45237191.20421796,0.0,68842225.58899497,0.0,2541.984877610486,2502.1896301446838,2505.4139568763109,3015.9680237567029,310242738.5326904,0.0,21139960.556782485,23253956.61246073 + 12/08 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38002848.42430636,0.0,49554780.43949288,0.0,14749555.984902122,0.0,32016303.707068419,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,153322397.54319126,0.0,14093307.03785499,0.0 + 12/08 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64787393.740263,0.0,77828659.55098455,0.0,37378131.35431877,0.0,59759658.43462653,0.0,1269.3922323268208,1249.5196601248577,1251.1297937427485,1506.0854279753399,258747900.691204,0.0,14093307.03785499,0.0 + 12/08 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67052669.01671857,0.0,79559819.7884432,0.0,39677894.42899981,0.0,62306238.35547371,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,267580882.92843542,0.0,14093307.03785499,0.0 + 12/08 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70018982.20818419,0.0,82341161.2027272,0.0,41950506.925148639,0.0,65067010.28321625,0.0,1269.0659255201966,1249.1984617121635,1250.8081814331159,1505.698277405177,278366835.6651306,0.0,14093307.03785499,0.0 + 12/08 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73095890.05567727,0.0,85522162.0013488,0.0,44043867.1419671,0.0,67833124.6743314,0.0,1268.074530255533,1248.222586925313,1249.831049131997,1504.5220247675378,289469384.56121388,0.0,14093307.03785499,0.0 + 12/08 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72171969.41562136,0.0,84651095.7611285,0.0,42665546.793521348,0.0,66234571.14360624,0.0,1266.7236808677,1246.8928853366472,1248.4996340871142,1502.9192935339648,284677310.89164897,0.0,14093307.03785499,15502637.741640486 + 12/08 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,78716174.78259869,0.0,92915394.77808827,0.0,46691070.89862902,0.0,72061124.2766792,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642636,309327601.03034397,0.0,56373228.15141996,38756594.35410121 + 12/08 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,82771494.87550459,0.0,97972624.98218119,0.0,54523165.560920659,0.0,80398406.56475674,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,391563054.73492076,0.0,56373228.15141996,38756594.35410121 + 12/08 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,84899779.33390585,0.0,97325886.1628894,0.0,59674318.71035512,0.0,84924163.88950922,0.0,7614.395553121179,7495.190770272979,7504.849088598695,9034.189664431062,440759198.3717857,0.0,28186614.07570998,0.0 + 12/08 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80986795.5177908,0.0,93913201.54017893,0.0,57544345.8413713,0.0,82310634.4440793,0.0,7606.439504731765,7487.3592753053,7497.007501950407,9024.750116718062,428570980.3787603,0.0,28186614.07570998,0.0 + 12/08 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77374131.61183402,0.0,90407960.26238348,0.0,55485316.75726411,0.0,79536471.22315812,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,378740925.2098401,0.0,28186614.07570998,0.0 + 12/08 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,76104218.03883302,0.0,88786495.89069483,0.0,54030490.738992739,0.0,77642576.5333733,0.0,5077.568929307283,4998.078640499431,5004.519174970994,6024.341711901359,372540011.6459385,0.0,28186614.07570998,0.0 + 12/08 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79661022.68324943,0.0,91330950.32249174,0.0,54193472.9143842,0.0,78420321.78977673,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,417656875.6385186,0.0,28186614.07570998,0.0 + 12/08 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78412339.24513012,0.0,90185348.94285849,0.0,52902374.60800832,0.0,76903239.9656799,0.0,10182.74691140684,10023.334108919207,10036.250197978992,12081.440511038418,450768880.98731335,0.0,28186614.07570998,0.0 + 12/08 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78915370.19042301,0.0,90622123.10906732,0.0,52258601.93383043,0.0,76281891.62734068,0.0,12749.063900393337,12549.474926697158,12565.646206038486,15126.277656128967,488843652.5419901,0.0,28186614.07570998,0.0 + 12/08 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77126729.47277516,0.0,88736041.40792653,0.0,50251400.26739918,0.0,73829097.21509281,0.0,15305.719589211305,15066.105693763031,15085.519908714887,18159.652037364056,518964458.38778558,0.0,35233267.594637479,0.0 + 12/08 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79129051.46793565,0.0,90579452.32920309,0.0,52139157.116126339,0.0,76086536.02000976,0.0,17860.619572033418,17581.008240737945,17603.663164312344,21190.943340454476,565184640.4764123,0.0,14093307.03785499,0.0 + 12/08 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,66831494.99244005,0.0,78513425.62703088,0.0,39875895.48716772,0.0,61370686.25650124,0.0,10210.527349126556,10050.679638703985,10063.630965269998,12114.400939948358,399372762.37811598,0.0,63419881.67034747,0.0 + 12/08 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,51891426.83571098,0.0,63863166.0050123,0.0,25221935.937261188,0.0,43698476.81646499,0.0,7661.188159222337,7541.250829396471,7550.96850080962,9089.707305386502,299310218.8557832,0.0,63419881.67034747,69761869.8373822 + 12/08 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,53917995.92152221,0.0,65690953.82148795,0.0,27252968.375271,0.0,46101632.13748607,0.0,5107.458772814892,5027.500552930982,5033.979000539748,6059.804870257667,269387025.76332309,0.0,49326574.63249246,69761869.8373822 + 12/08 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,56860838.07456616,0.0,68603411.52552723,0.0,29943768.905452916,0.0,49462716.682515177,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,281277852.3902949,0.0,35233267.594637479,69761869.8373822 + 12/08 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60381582.791275639,0.0,72128457.63114862,0.0,32989879.85712358,0.0,53289877.92398393,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,294936164.9271224,0.0,35233267.594637479,62010550.96656194 + 12/08 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,64792167.48282111,0.0,76347890.23944229,0.0,37186454.950598258,0.0,58324864.60238963,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,312742162.95336946,0.0,35233267.594637479,46507913.22492146 + 12/09 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,72968584.03925789,0.0,84312607.75809986,0.0,45194380.61416048,0.0,67957809.00823239,0.0,2541.35316957305,2501.5678116144188,2504.791337069402,3015.218526284063,308459932.46009799,0.0,21139960.556782485,23253956.61246073 + 12/09 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,36901867.42245677,0.0,46224870.29080449,0.0,13455729.47153263,0.0,29806840.044826986,0.0,1270.992438805243,1251.0948150723419,1252.7069784381554,1507.9840118783514,145407308.90871964,0.0,14093307.03785499,0.0 + 12/09 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,58462319.69629054,0.0,68388929.9633128,0.0,33850449.87172053,0.0,53062551.413254138,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,232767980.07311336,0.0,14093307.03785499,0.0 + 12/09 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59830574.250452879,0.0,69494611.95548345,0.0,35550468.55732724,0.0,55009147.67308567,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,238883711.42377068,0.0,14093307.03785499,0.0 + 12/09 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60035582.91854446,0.0,69445335.50850702,0.0,36326430.06931617,0.0,55480376.20553657,0.0,1270.676584786525,1250.7839058072094,1252.395668534701,1507.6092631420316,240301000.2220779,0.0,14093307.03785499,0.0 + 12/09 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60108685.30353467,0.0,69337368.15508113,0.0,36930520.58994777,0.0,55831973.527108568,0.0,1270.0385897019244,1250.1558986546759,1251.7668521308522,1506.8523063279225,241212276.70420749,0.0,14093307.03785499,0.0 + 12/09 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,57853404.06409884,0.0,67125396.67158751,0.0,34694772.96754748,0.0,53040695.52843058,0.0,5078.865819030884,4999.355227172474,5005.797406656265,6025.880422053089,288709905.1813501,0.0,14093307.03785499,15502637.741640486 + 12/09 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,63784242.95347572,0.0,74451950.2153988,0.0,38281389.78368659,0.0,57757643.0765939,0.0,20315.463276123537,19997.420908689895,20023.18962662506,24103.521688212357,538257769.827898,0.0,56373228.15141996,38756594.35410121 + 12/09 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,77609596.00152225,0.0,89141085.0359386,0.0,51021461.43813502,0.0,73892397.02693483,0.0,17719.64481649957,17442.240471300793,17464.71657844054,21023.68217435081,556805562.0486609,0.0,56373228.15141996,38756594.35410121 + 12/09 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78732978.71077691,0.0,91754467.36074287,0.0,58434286.837851379,0.0,82127159.73898907,0.0,12649.888221373116,12451.851861433204,12467.897343490758,15008.609498739881,500330581.57849326,0.0,28186614.07570998,0.0 + 12/09 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78136738.81302753,0.0,90977729.86667842,0.0,57544082.139171559,0.0,81382513.38975999,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,459424146.1744696,0.0,28186614.07570998,0.0 + 12/09 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77739666.15144529,0.0,90534417.37932226,0.0,56825039.75281721,0.0,80730633.76760063,0.0,5057.122241332642,4977.9520492393589,4984.366648543805,6000.082497117512,381500041.4216254,0.0,28186614.07570998,0.0 + 12/09 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72621680.83759871,0.0,87358962.93262506,0.0,55069949.02307662,0.0,78154619.41936332,0.0,5059.955288549247,4980.740744573282,4987.158937396303,6003.443799495952,368917887.78471687,0.0,28186614.07570998,0.0 + 12/09 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75186957.3503058,0.0,89746611.93687889,0.0,55496381.82539425,0.0,79432492.61060733,0.0,5054.2566289413639,4975.131298544645,4981.542263023914,5996.68255740241,375489849.6156706,0.0,28186614.07570998,0.0 + 12/09 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78263476.9021095,0.0,92073598.65594566,0.0,56076922.035548198,0.0,80522694.25202073,0.0,7583.54024840862,7464.8185111117459,7474.437691681501,8997.581023209,420410050.7535032,0.0,28186614.07570998,0.0 + 12/09 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83904104.31795587,0.0,96707380.25458452,0.0,57989334.88879304,0.0,83463462.3607305,0.0,12624.7434789568,12427.10076465016,12443.114352393219,14978.776221696746,510969727.1657728,0.0,28186614.07570998,0.0 + 12/09 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,84467840.82206296,0.0,96894429.55483864,0.0,57330553.43557899,0.0,82713462.65477063,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,510366390.92697587,0.0,35233267.594637479,0.0 + 12/09 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86618404.55314768,0.0,98769609.83684069,0.0,59511879.032950628,0.0,85243118.88427387,0.0,17674.64087053952,17397.941070510224,17420.360093350508,20970.286710375443,594610635.7884054,0.0,14093307.03785499,0.0 + 12/09 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75107684.70284359,0.0,88047751.36976998,0.0,46743281.25961343,0.0,70547261.46138987,0.0,17659.12927374315,17382.67231065539,17405.07165814015,20951.882792890603,544681500.5211623,0.0,63419881.67034747,0.0 + 12/09 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,64103044.04413358,0.0,77860888.93706653,0.0,34634787.81989012,0.0,56634496.42316593,0.0,10060.345684214446,9902.849095772437,9915.609927595135,11936.216127316726,383767292.22989168,0.0,63419881.67034747,69761869.8373822 + 12/09 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,69713913.81556647,0.0,83481350.00925412,0.0,39267268.96558017,0.0,62533831.99945579,0.0,10024.882230774747,9867.940829312038,9880.656678270387,11894.140093533764,404999796.1846639,0.0,49326574.63249246,69761869.8373822 + 12/09 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74499887.18994375,0.0,88229250.30310509,0.0,43324354.12561993,0.0,67675111.10226187,0.0,5007.442348896617,4929.049904787194,4935.401488687177,5941.139201140248,348655521.31757119,0.0,35233267.594637479,69761869.8373822 + 12/09 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77975343.76662973,0.0,91904235.4663757,0.0,46089043.80258991,0.0,71342339.99652834,0.0,4998.957995751086,4920.69837577291,4927.039197875335,5931.072840000745,362110929.30596396,0.0,35233267.594637479,62010550.96656194 + 12/09 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,80521624.83928189,0.0,93982500.2313649,0.0,48903276.71968576,0.0,74455810.12476948,0.0,2503.7211744483086,2464.524952393597,2467.7007443435888,2970.569600570124,335326671.2134223,0.0,35233267.594637479,46507913.22492146 + 12/10 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,86993837.52352099,0.0,100153965.91826812,0.0,55590724.09613809,0.0,82348349.19257578,0.0,2509.4990440314907,2470.2123683505935,2473.3954891165478,2977.424822275728,362636790.9360906,0.0,21139960.556782485,23253956.61246073 + 12/10 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45288842.33290383,0.0,57444951.98143885,0.0,20568696.537832187,0.0,36909417.63061558,0.0,1254.7495220157453,1235.1061841752967,1236.6977445582739,1488.712411137864,178986865.58558429,0.0,14093307.03785499,0.0 + 12/10 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73322045.75761712,0.0,85819986.51639855,0.0,43893417.82825151,0.0,67768106.03847094,0.0,1255.9585575200095,1236.2962920031965,1237.8893859615817,1490.1468856119512,289596604.17668637,0.0,14093307.03785499,0.0 + 12/10 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77865625.41715169,0.0,90656579.29599805,0.0,47773837.61203212,0.0,72996225.28934151,0.0,1251.4401856893535,1231.8486561264509,1233.436018852048,1484.7860099117339,308017706.7486098,0.0,14093307.03785499,0.0 + 12/10 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,83021200.93777652,0.0,96208305.63201651,0.0,52139215.01103854,0.0,78494681.55338241,0.0,1244.9070103275065,1225.4177588436563,1226.9968347017166,1477.0346467315379,328491085.63638988,0.0,14093307.03785499,0.0 + 12/10 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,90030702.8701874,0.0,103857595.65533197,0.0,57666275.910410929,0.0,85743502.82943991,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,355763852.1650754,0.0,14093307.03785499,0.0 + 12/10 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,92577854.47082989,0.0,107045043.26095554,0.0,58872045.494270827,0.0,87751073.92511073,0.0,4918.392076684406,4841.393731198777,4847.632361172211,5835.484452418326,419840466.5884723,0.0,14093307.03785499,15502637.741640486 + 12/10 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,92436828.65116783,0.0,115027994.92472273,0.0,61952658.352442409,0.0,92681346.9239238,0.0,19599.54529555206,19292.71075765863,19317.57138463592,23254.11233253368,655369012.0256258,0.0,56373228.15141996,38756594.35410121 + 12/10 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,61161416.359794799,0.0,116928075.91761166,0.0,64700079.10618394,0.0,96361310.21331753,0.0,17090.448623106648,16822.89446169187,16844.572478282906,20277.16490878537,594877171.2956283,0.0,56373228.15141996,38756594.35410121 + 12/10 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,47848042.13572796,0.0,125786498.69842226,0.0,75611382.12921819,0.0,109089997.39534416,0.0,12185.947195141085,11995.173918514949,12010.630924430903,14458.161180833293,540675607.9468253,0.0,28186614.07570998,0.0 + 12/10 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,39729034.78730917,0.0,131080490.82445914,0.0,81070748.36081188,0.0,116638011.46756359,0.0,9709.285469537328,9557.284794246307,9569.600331195472,11519.696583394565,513799407.282289,0.0,28186614.07570998,0.0 + 12/10 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,38536611.25982545,0.0,136205850.80456058,0.0,85326263.52575737,0.0,121748839.26467939,0.0,4854.642734768664,4778.642397123153,4784.800165597736,5759.848291697283,454458125.77589538,0.0,28186614.07570998,0.0 + 12/10 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36770707.35543415,0.0,138784274.75927336,0.0,86581553.16336563,0.0,118130430.95925036,0.0,4847.951685943888,4772.0560979159449,4778.205379271748,5751.909617679721,452807408.2482442,0.0,28186614.07570998,0.0 + 12/10 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37254277.71667385,0.0,131676852.58882986,0.0,82325005.71125187,0.0,113741550.40004507,0.0,4847.951685943888,4772.0560979159449,4778.205379271748,5751.909617679721,437538128.4277214,0.0,28186614.07570998,0.0 + 12/10 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49278516.37815879,0.0,129702151.92088995,0.0,78337486.21342229,0.0,111305808.04984403,0.0,7271.927528915832,7158.084146873913,7167.308068907622,8627.864426519584,477434625.57869616,0.0,28186614.07570998,0.0 + 12/10 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82021520.87063754,0.0,139088519.23819829,0.0,81542460.31134014,0.0,118100956.50399152,0.0,12108.65069910344,11919.08751354242,11934.44647435959,14366.451838873276,601936548.4173309,0.0,28186614.07570998,0.0 + 12/10 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,121186071.40906017,0.0,155433972.21427185,0.0,91388559.9073723,0.0,131835058.1057184,0.0,12080.313869357433,11891.194302152315,11906.51731971961,14332.831272062927,680602745.9842751,0.0,35233267.594637479,0.0 + 12/10 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,128743599.436712,0.0,159878856.96145637,0.0,95290672.41881679,0.0,136673021.0045259,0.0,16896.423688595227,16631.907023725544,16653.338933509076,20046.961730374645,773409222.7758472,0.0,14093307.03785499,0.0 + 12/10 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,118724720.45318495,0.0,148340790.88777966,0.0,82993845.53110026,0.0,121983321.72965351,0.0,16823.33301306106,16559.960596351917,16581.299795820356,19960.242433895964,723772087.6225839,0.0,63419881.67034747,0.0 + 12/10 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,108287613.95191212,0.0,136113264.8912782,0.0,70619150.58143525,0.0,107308810.02738044,0.0,9575.426364376592,9425.521278348253,9437.667024558361,11360.877864837526,565607012.5676407,0.0,63419881.67034747,69761869.8373822 + 12/10 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,111944566.08986295,0.0,138166732.26529614,0.0,73171722.78733537,0.0,110187939.80620222,0.0,9599.202932898,9448.925620253942,9461.101525347427,11389.087855780757,577104905.5121051,0.0,49326574.63249246,69761869.8373822 + 12/10 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,115510241.98013003,0.0,140837749.0104053,0.0,75743133.08398949,0.0,113439340.13048548,0.0,4801.962203224589,4726.786589127944,4732.877536101112,5697.344851959753,517382760.4544985,0.0,35233267.594637479,69761869.8373822 + 12/10 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,115157883.2970793,0.0,139591584.6061231,0.0,75126817.1147449,0.0,112569737.58347978,0.0,4845.709039175129,4769.848560200714,4775.994996918854,5749.248802895679,514952907.63851246,0.0,35233267.594637479,62010550.96656194 + 12/10 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,116671279.56896097,0.0,140359454.95444823,0.0,76321054.07876453,0.0,113940057.04543559,0.0,2431.7386278924066,2393.6693060323584,2396.7537932499278,2885.1650568242719,483678222.07000556,0.0,35233267.594637479,46507913.22492146 + 12/11 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,124078790.45388137,0.0,146712300.3697577,0.0,83311890.13562912,0.0,122078668.82576123,0.0,2432.83511536697,2394.748627790958,2397.8345058247775,2886.465997357341,512584433.0718536,0.0,21139960.556782485,23253956.61246073 + 12/11 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82204176.06801015,0.0,102650343.78282044,0.0,45566846.90647361,0.0,74652711.00798741,0.0,1213.1046387927173,1194.1132593679704,1195.6519961832726,1439.302346876663,323225897.8336859,0.0,14093307.03785499,0.0 + 12/11 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,112616791.5051732,0.0,132817053.76990253,0.0,72760564.5886372,0.0,108998600.05958241,0.0,1210.3013572299718,1191.3538637010416,1192.889044753381,1435.9763603103016,445302884.17687627,0.0,14093307.03785499,0.0 + 12/11 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113544809.73551156,0.0,132777950.02962248,0.0,74771662.11458859,0.0,110349541.60167212,0.0,1209.7361271615915,1190.7974824148253,1192.331946513089,1435.3057364103266,449545380.13439419,0.0,14093307.03785499,0.0 + 12/11 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,114860636.79639457,0.0,133503298.77078694,0.0,76193949.8390047,0.0,111562064.82146259,0.0,1208.6011365692567,1189.6802603119457,1191.2132847554972,1433.9591133977756,454204383.88977298,0.0,14093307.03785499,0.0 + 12/11 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,114006343.89955616,0.0,131941461.0925245,0.0,76132703.47921139,0.0,110810815.41480708,0.0,1210.8650699103442,1191.9087513542423,1193.444647435959,1436.6451838873275,451009633.0354154,0.0,14093307.03785499,0.0 + 12/11 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,108452072.21797922,0.0,125867099.01529856,0.0,71630929.45433322,0.0,104757308.19711219,0.0,4863.477255784813,4787.3386120647169,4793.507586499855,5770.330113648543,483480161.72951576,0.0,14093307.03785499,15502637.741640486 + 12/11 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,112319906.15879801,0.0,133162019.7193524,0.0,75536979.63360666,0.0,110185491.6290162,0.0,19346.71016205902,19043.833805346774,19068.37372896867,22954.133097954575,720691380.0003578,0.0,56373228.15141996,38756594.35410121 + 12/11 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,100488426.0296304,0.0,134663598.90797145,0.0,79775257.17166393,0.0,114824956.79179436,0.0,17082.951775322705,16815.514978458523,16837.1834858322,20268.270185061996,685366352.4298916,0.0,56373228.15141996,38756594.35410121 + 12/11 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80137275.04752183,0.0,126831017.27436653,0.0,80405425.03336096,0.0,113791605.11816937,0.0,12260.114129103464,12068.179755290317,12083.730836678511,14546.157416853735,584614778.1699524,0.0,28186614.07570998,0.0 + 12/11 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56386594.929051797,0.0,114711614.8815926,0.0,72827968.26912205,0.0,103783844.89085648,0.0,9984.06783746684,9827.765392945284,9840.429471753252,11845.715373855108,497102744.04429677,0.0,28186614.07570998,0.0 + 12/11 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,66701434.63921803,0.0,111659022.61564516,0.0,69917686.5157803,0.0,99967614.84814734,0.0,5002.374601216938,4924.061493642827,4930.406649465895,5935.12651196613,423096847.9414413,0.0,28186614.07570998,0.0 + 12/11 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75421624.0029459,0.0,111595676.7044952,0.0,68987613.06939709,0.0,97993525.30066523,0.0,4997.2383099792009,4919.005612002591,4925.3442528061209,5929.032498476844,428772673.5012566,0.0,28186614.07570998,0.0 + 12/11 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72353721.9174925,0.0,106209976.82822922,0.0,65642466.83804994,0.0,93671485.3966361,0.0,5012.441115387373,4933.970414656019,4940.328339135193,5947.070046766882,412879366.6778115,0.0,28186614.07570998,0.0 + 12/11 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70904759.12503277,0.0,103094262.40045077,0.0,62559962.82794588,0.0,90098212.72691447,0.0,7535.7513451200579,7417.777752019177,7427.33631576949,8940.881313671707,439415485.2960334,0.0,28186614.07570998,0.0 + 12/11 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80539137.88366428,0.0,108179871.47228304,0.0,63850329.25136709,0.0,92804185.97280212,0.0,12547.49522015745,12351.061841752964,12366.97744558274,14887.12411137864,533123095.608055,0.0,28186614.07570998,0.0 + 12/11 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,91216542.03070201,0.0,113779699.81233202,0.0,66125990.27219341,0.0,96218369.08767227,0.0,12531.102788468434,12334.926036640045,12350.820847837984,14867.675116917208,554844890.4464089,0.0,35233267.594637479,0.0 + 12/11 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97678822.13640794,0.0,119554620.38305491,0.0,70670871.6538094,0.0,102081797.52681145,0.0,17459.843495262332,17186.50638821341,17208.652955884863,20715.437823928944,651239698.0879259,0.0,14093307.03785499,0.0 + 12/11 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,85217724.7444419,0.0,106439367.49027138,0.0,57361815.15411793,0.0,86060914.58002775,0.0,17472.118715566972,17198.589437654242,17220.751575568192,20730.001904246437,596517083.847788,0.0,63419881.67034747,0.0 + 12/11 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,72762742.15520987,0.0,93304684.99947848,0.0,44329721.705020088,0.0,70203140.79192026,0.0,9937.411411051846,9781.839381589563,9794.44428004433,11790.359304899002,429294885.41093376,0.0,63419881.67034747,69761869.8373822 + 12/11 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,77676792.81385643,0.0,97817014.13188373,0.0,48219198.86211991,0.0,75121945.62554203,0.0,9922.55611395445,9767.216646939478,9779.802702508137,11772.734061954492,447307265.72468569,0.0,49326574.63249246,69761869.8373822 + 12/11 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,80779462.35923237,0.0,100405832.34055934,0.0,50724956.454104948,0.0,78199433.58117362,0.0,4970.544429681432,4892.729629380622,4899.03441089861,5897.361228471596,384484495.6494264,0.0,35233267.594637479,69761869.8373822 + 12/11 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,79714375.54243456,0.0,98618874.39300518,0.0,49848770.96542885,0.0,76836761.8985464,0.0,5002.374601216938,4924.061493642827,4930.406649465895,5935.12651196613,379869872.1220654,0.0,35233267.594637479,62010550.96656194 + 12/11 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,85129849.70015702,0.0,103745604.76861616,0.0,54206541.921868029,0.0,82350776.3393787,0.0,2485.272214840716,2446.364814690311,2449.517205449305,2948.680614235798,362620178.187198,0.0,35233267.594637479,46507913.22492146 + 12/12 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,95577162.36722227,0.0,113863047.0426476,0.0,63805380.04982679,0.0,94087075.2003141,0.0,2480.6390284886126,2441.8041617348696,2444.9506756270345,2943.183515488623,404450743.2328316,0.0,21139960.556782485,23253956.61246073 + 12/12 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52957198.04485763,0.0,69647746.75576681,0.0,26814484.19220893,0.0,46025517.949053447,0.0,1242.1764263814808,1222.7299226986955,1224.3055350055414,1473.794913112375,214031771.41179998,0.0,14093307.03785499,0.0 + 12/12 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77189261.13999349,0.0,93262026.87004578,0.0,48819347.801127348,0.0,74815701.86624134,0.0,1250.167524576578,1230.5959187608103,1232.1816672064477,1483.2760460818868,312792733.8412606,0.0,14093307.03785499,0.0 + 12/12 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75976290.23786618,0.0,91167512.23951584,0.0,48646397.331492077,0.0,73880964.21724393,0.0,1253.9337725199753,1234.303205390061,1235.8937310529153,1487.7445555002058,308433914.9781853,0.0,14093307.03785499,0.0 + 12/12 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75505653.55224908,0.0,90155101.27133298,0.0,48693832.64246063,0.0,73373817.11394814,0.0,1255.5574960251677,1235.9015092008743,1237.494094441324,1489.6710414577797,306515451.48804137,0.0,14093307.03785499,0.0 + 12/12 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77895778.39930135,0.0,92391786.88663537,0.0,50729116.28725634,0.0,75752868.1552942,0.0,1250.5936503042345,1231.0153734107069,1232.6016623664737,1483.7816279915326,315482322.05914989,0.0,14093307.03785499,0.0 + 12/12 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76419282.70713757,0.0,90817854.99285972,0.0,48898340.53093468,0.0,73502170.67224387,0.0,5005.760742757414,4927.394624505803,4933.744075408192,5939.144039646935,364539405.4395219,0.0,14093307.03785499,15502637.741640486 + 12/12 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,82739388.52620314,0.0,98169462.4158994,0.0,52677000.57106497,0.0,78658563.97779355,0.0,20002.68039322525,19689.534700172964,19714.906675303162,23732.416737310188,611546754.1126027,0.0,56373228.15141996,38756594.35410121 + 12/12 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,93836134.65172923,0.0,110492947.77808188,0.0,64336716.26779047,0.0,92905325.92292319,0.0,17508.311104259283,17234.215227749886,17256.42327313063,20772.942791881454,623549937.2498013,0.0,56373228.15141996,38756594.35410121 + 12/12 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90566793.17066965,0.0,111075983.81493405,0.0,69581276.36341897,0.0,98199432.0049444,0.0,12531.102788468434,12334.926036640045,12350.820847837984,14867.675116917208,556927774.5974763,0.0,28186614.07570998,0.0 + 12/12 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85562194.64671454,0.0,101644908.0071398,0.0,62856999.63874803,0.0,89550961.14276046,0.0,10160.308717615395,10001.247189237407,10014.134817046817,12054.81845062338,491644896.4636457,0.0,28186614.07570998,0.0 + 12/12 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87633950.18223141,0.0,102502227.5346393,0.0,62931525.10266018,0.0,89964389.80392629,0.0,5030.172842107223,4951.4245478862189,4957.804963797567,5968.108063658363,418299130.1262749,0.0,28186614.07570998,0.0 + 12/12 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,91794506.47797905,0.0,106235241.73027879,0.0,64582987.17201241,0.0,92493334.03161398,0.0,5039.443982313667,4960.550546663201,4966.942722355444,5979.107917612131,430511832.0200842,0.0,28186614.07570998,0.0 + 12/12 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,89590086.25969261,0.0,103769779.31112558,0.0,63102224.15860765,0.0,90453040.77111824,0.0,5040.961357264712,4962.044166826321,4968.438267200596,5980.908225069783,422343597.7594452,0.0,28186614.07570998,0.0 + 12/12 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85110545.49053633,0.0,99686876.82212299,0.0,60730758.47944175,0.0,87054307.99143397,0.0,7581.384943412046,7462.696947816965,7472.313394535871,8995.023836103615,446023597.6222615,0.0,28186614.07570998,0.0 + 12/12 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86445075.61714089,0.0,100575125.14143127,0.0,60386251.6319756,0.0,86823118.42627,0.0,12642.805603331606,12444.880123098394,12460.916621359514,15000.20624279378,523405281.74291768,0.0,28186614.07570998,0.0 + 12/12 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87541074.4739609,0.0,100968437.53232265,0.0,59387798.927050109,0.0,85857243.3399188,0.0,12653.398915471713,12455.307594960766,12471.357530083691,15012.774803276432,523088774.1109058,0.0,35233267.594637479,0.0 + 12/12 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87507129.22351948,0.0,100791744.03057505,0.0,59636196.16910752,0.0,86021050.32934642,0.0,17785.020876958813,17506.593057337657,17529.152089352843,21101.24837452806,600075371.585987,0.0,14093307.03785499,0.0 + 12/12 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,72449715.87955974,0.0,85673277.16623965,0.0,44865505.24359689,0.0,68093396.08799476,0.0,17757.698998530952,17479.698908013474,17502.22328417223,21068.83200871362,536792325.89533999,0.0,63419881.67034747,0.0 + 12/12 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,54794460.85357292,0.0,67821872.91654806,0.0,28175740.06614074,0.0,47550477.27640524,0.0,10201.540650018951,10041.833628047378,10054.773555625767,12103.738564500582,350989342.1461606,0.0,63419881.67034747,69761869.8373822 + 12/12 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,58233846.17867065,0.0,71125477.97870097,0.0,31104307.855055877,0.0,51169329.30614574,0.0,10155.137858614566,9996.157280998861,10009.038349941988,12048.683423802719,363585422.20666256,0.0,49326574.63249246,69761869.8373822 + 12/12 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60728976.86214039,0.0,73647388.56830289,0.0,32839784.180726924,0.0,53553900.23844543,0.0,5106.365530594851,5026.424425621841,5032.90148653073,6058.507780095211,297177167.05184909,0.0,35233267.594637479,69761869.8373822 + 12/12 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,59092947.33026314,0.0,71663631.13568522,0.0,31736083.12024692,0.0,52017717.935374658,0.0,5115.893371979897,5035.803106872587,5042.292253169529,6069.812200198502,291060062.87756386,0.0,35233267.594637479,62010550.96656194 + 12/12 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,60663748.413426447,0.0,72837949.64395307,0.0,33845161.53371195,0.0,54292235.246280457,0.0,2557.9466859899487,2517.9015534362936,2521.1461265847649,3034.906100099251,259913936.51536883,0.0,35233267.594637479,46507913.22492146 + 12/13 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,67466611.68997342,0.0,79238977.17034438,0.0,40798234.7221946,0.0,62498053.75958103,0.0,2559.951033439702,2519.8745224528099,2523.1216379732356,3037.2841818377376,288306710.294626,0.0,21139960.556782485,23253956.61246073 + 12/13 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,32757432.630251387,0.0,42988696.043858218,0.0,11026977.898511354,0.0,24772912.571449676,0.0,1276.5913826487129,1256.6061064054603,1258.2253716326825,1514.6269450238029,130647798.44462897,0.0,14093307.03785499,0.0 + 12/13 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54830949.88455662,0.0,65262856.24701114,0.0,30702928.090104648,0.0,49456044.76445513,0.0,1277.404843485923,1257.406832361513,1259.027129405858,1515.5920852554437,219366730.19195903,0.0,14093307.03785499,0.0 + 12/13 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54963009.565271239,0.0,64882896.19416754,0.0,31486029.26009655,0.0,49979217.961941268,0.0,1278.4591886147676,1258.4446715206776,1260.066305926709,1516.8430255039896,220440880.4711147,0.0,14093307.03785499,0.0 + 12/13 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55123599.23828849,0.0,64702410.0325846,0.0,32098078.525258144,0.0,50281558.74456831,0.0,1278.9733429949743,1258.9507767181468,1260.5730632923824,1517.4530500496256,221343067.37969799,0.0,14093307.03785499,0.0 + 12/13 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,54849205.61482019,0.0,64147937.422507587,0.0,32224062.746658528,0.0,50079217.248791757,0.0,1279.975516719851,1259.9372612264049,1261.5608189866178,1518.6420909188688,220452839.50904433,0.0,14093307.03785499,0.0 + 12/13 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,52042603.893959898,0.0,61228658.84810599,0.0,29631207.350440109,0.0,46743034.947013217,0.0,5116.908627803496,5036.802468676871,5043.292902753501,6071.016762478505,266210379.7816838,0.0,14093307.03785499,15502637.741640486 + 12/13 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,55043732.72492579,0.0,65402530.03271905,0.0,34060831.473233,0.0,48831926.4894984,0.0,20467.634511213982,20147.209874707485,20173.171611014004,24284.06704991402,509598519.6890344,0.0,56373228.15141996,38756594.35410121 + 12/13 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,66012693.038270469,0.0,76838364.99850965,0.0,42398119.17923026,0.0,62427378.815802607,0.0,17933.19802506331,17652.450464546157,17675.19744871789,21277.05490448457,516012999.06593587,0.0,56373228.15141996,38756594.35410121 + 12/13 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68394230.21497683,0.0,79693740.88723737,0.0,49268405.353516418,0.0,70063259.02043896,0.0,12807.042032962763,12606.545400785399,12622.790221257652,15195.06649726121,459052834.42433086,0.0,28186614.07570998,0.0 + 12/13 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71216947.95514895,0.0,81426883.83709553,0.0,49573471.6895525,0.0,70959066.30675742,0.0,10233.817255606991,10073.604937353743,10086.585805507002,12142.03352495701,426306119.27288356,0.0,28186614.07570998,0.0 + 12/13 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68892810.70250735,0.0,79558995.72774717,0.0,48331695.44866989,0.0,69504678.18663959,0.0,5118.912984869335,5038.7754471589319,5045.268423619714,6073.394855626109,342883046.2261507,0.0,28186614.07570998,0.0 + 12/13 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,68790929.4106108,0.0,79281634.49226587,0.0,47674740.03364291,0.0,68812130.49571932,0.0,5119.902066879404,5039.7490449056199,5046.243275946471,6074.568363675475,341169100.337304,0.0,28186614.07570998,0.0 + 12/13 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71632712.0525726,0.0,81638352.6089581,0.0,48031690.195891518,0.0,69702628.58190862,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,347658663.0185953,0.0,28186614.07570998,0.0 + 12/13 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70430596.56936273,0.0,80265114.41894807,0.0,47075251.743752028,0.0,68408323.75647187,0.0,7689.870444826176,7569.484088468507,7579.238141317679,9123.737742385307,381243675.9897263,0.0,28186614.07570998,0.0 + 12/13 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72999204.76964957,0.0,83738683.7751006,0.0,47562957.67991794,0.0,70024744.16563466,0.0,12838.428143572213,12637.440155978185,12653.724787495865,15232.304919417824,466428423.21357348,0.0,28186614.07570998,0.0 + 12/13 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71225965.64863082,0.0,81692516.13321573,0.0,45469027.47199265,0.0,67319101.18547586,0.0,12844.588811153453,12643.504377159172,12659.796823044806,15239.614316335828,457901626.01901087,0.0,35233267.594637479,0.0 + 12/13 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69483584.80653052,0.0,78938114.5302141,0.0,45230869.60296789,0.0,66070521.87808867,0.0,18011.640907955352,17729.665309473017,17752.511792853595,21370.12439068705,529233283.4612896,0.0,14093307.03785499,0.0 + 12/13 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,53876963.705818239,0.0,63424309.122257027,0.0,30138826.11420118,0.0,47723719.532940749,0.0,18009.141790466303,17727.20531613447,17750.048629562545,21367.15928318348,464636616.54486569,0.0,63419881.67034747,0.0 + 12/13 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,39515614.10904505,0.0,49312336.89304823,0.0,15999285.028013319,0.0,30650266.40842699,0.0,10286.546152036652,10125.50835307323,10138.556104075316,12204.594347785085,289396240.28362658,0.0,63419881.67034747,69761869.8373822 + 12/13 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,42507751.83233669,0.0,52299673.070966679,0.0,18720509.15078144,0.0,34067710.55870459,0.0,10280.43910012087,10119.49690819446,10132.536912836244,12197.348563807513,301423001.9586421,0.0,49326574.63249246,69761869.8373822 + 12/13 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49106057.7707458,0.0,59971783.89977744,0.0,23239787.393273213,0.0,40805924.13073005,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,250001559.4264048,0.0,35233267.594637479,69761869.8373822 + 12/13 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,52984463.20903105,0.0,64382151.3462996,0.0,26025169.978406826,0.0,44796949.5398224,0.0,5135.371257428885,5054.976062391274,5061.489914998346,6092.92196776713,265029867.20286817,0.0,35233267.594637479,62010550.96656194 + 12/13 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57256825.57011564,0.0,68714301.03750572,0.0,29888999.48547601,0.0,49638613.274855,0.0,2566.841969485217,2526.6575796090298,2529.9134357909335,3045.460014412541,243906682.1654242,0.0,35233267.594637479,46507913.22492146 + 12/14 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,65676137.24604146,0.0,77057099.56324558,0.0,38000350.263870339,0.0,59504060.43997908,0.0,2566.4134808837027,2526.2357990765069,2529.4911117511439,3044.9516290432604,278639178.78785309,0.0,21139960.556782485,23253956.61246073 + 12/14 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,29919600.736141616,0.0,39209359.2844286,0.0,6653464.990526514,0.0,20946863.52925548,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,115920237.98532205,0.0,14093307.03785499,0.0 + 12/14 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,48438481.49562325,0.0,57366443.74440291,0.0,25601887.252032255,0.0,42481824.89127802,0.0,1282.5507142980903,1262.4721436061546,1264.0989678210438,1521.697464544115,193079586.82830627,0.0,14093307.03785499,0.0 + 12/14 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,51626226.31845726,0.0,60431089.456638928,0.0,28732874.075358098,0.0,46093241.3644273,0.0,1278.9733429949743,1258.9507767181468,1260.5730632923824,1517.4530500496256,206020852.05388005,0.0,14093307.03785499,0.0 + 12/14 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,55466649.756282027,0.0,64386916.21010552,0.0,32162907.270731696,0.0,50219705.233949977,0.0,1276.0383038231703,1256.0616861321083,1257.6802498182404,1513.970738109613,221329681.99144856,0.0,14093307.03785499,0.0 + 12/14 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,59115214.681269858,0.0,68413764.72489813,0.0,35268000.27676582,0.0,54103017.51307428,0.0,1272.843363925855,1252.916763614901,1254.531274747374,1510.1800638798023,235945694.47421269,0.0,14093307.03785499,0.0 + 12/14 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60200214.26515442,0.0,70631242.82516235,0.0,35644073.633923638,0.0,54922738.57193581,0.0,1268.4070713236397,1248.5499220009629,1250.1588060123023,1504.916572050973,240377585.83317263,0.0,14093307.03785499,15502637.741640486 + 12/14 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,70456063.8750271,0.0,82676936.52925048,0.0,42290780.5361485,0.0,64468268.51545763,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842497,335476091.23977366,0.0,56373228.15141996,38756594.35410121 + 12/14 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,86156333.77478414,0.0,99108897.51093659,0.0,55869034.7519245,0.0,81469671.67641594,0.0,12598.609955784168,12401.376366658002,12417.356805888612,14947.769794030328,511118344.2345611,0.0,56373228.15141996,38756594.35410121 + 12/14 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,91492769.60469635,0.0,106223296.19842366,0.0,64766895.790317688,0.0,92143540.52575612,0.0,12567.548102487011,12370.800792468795,12386.74183195128,14910.916090797085,542676126.6629288,0.0,28186614.07570998,0.0 + 12/14 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77384332.68409223,0.0,104985726.13334331,0.0,63867240.660964969,0.0,91520009.87735346,0.0,12551.544829014181,12355.048053227589,12370.968793697712,14891.928817704074,525567475.1328707,0.0,28186614.07570998,0.0 + 12/14 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73519918.9313163,0.0,105924636.40018624,0.0,64697761.27122845,0.0,92656528.31258309,0.0,7523.602635119852,7405.819232340365,7415.362386317491,8926.467333001236,449375350.62771829,0.0,28186614.07570998,0.0 + 12/14 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69363771.74355017,0.0,106786014.89772593,0.0,65113040.31643453,0.0,91598387.76102327,0.0,7518.66167308106,7400.955621984026,7410.4925087027909,8920.605070150325,445363788.2648394,0.0,28186614.07570998,0.0 + 12/14 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,65474555.72441274,0.0,101651804.7151626,0.0,62217052.53532683,0.0,88311272.43945772,0.0,7526.055703522935,7408.2338974999779,7417.780163019623,8929.377805022115,430267896.6629926,0.0,28186614.07570998,0.0 + 12/14 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52504040.37506428,0.0,99051836.04786696,0.0,58788625.34072965,0.0,84487008.13635531,0.0,7518.66167308106,7400.955621984026,7410.4925087027909,8920.605070150325,407334083.4461217,0.0,28186614.07570998,0.0 + 12/14 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67784272.23895993,0.0,103826671.74967252,0.0,59788198.139665167,0.0,87520808.82427414,0.0,17508.311104259283,17234.215227749886,17256.42327313063,20772.942791881454,580898763.5818482,0.0,28186614.07570998,0.0 + 12/14 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99736844.73932369,0.0,118578698.55221553,0.0,68257954.5645524,0.0,99370855.46165233,0.0,22471.993146873796,22120.189902013302,22148.694024462893,26662.162060051567,722195294.1979895,0.0,35233267.594637479,0.0 + 12/14 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103699272.29724764,0.0,121273794.9866275,0.0,70925792.70762189,0.0,102593591.10459785,0.0,17496.352985128797,17222.444315205183,17244.63719256367,20758.754940002604,660292333.0545358,0.0,14093307.03785499,0.0 + 12/14 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,90487800.32342349,0.0,107809933.7400091,0.0,57803874.51859446,0.0,86714185.89593227,0.0,17555.07281527965,17280.24487546085,17302.51223474081,20828.423777002878,605494307.8069023,0.0,63419881.67034747,0.0 + 12/14 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,74362457.26598051,0.0,90790479.04945515,0.0,42323254.91385263,0.0,67490130.93208839,0.0,15042.275900845721,14806.786265484183,14825.866320884517,17847.08615738211,500045574.8819242,0.0,63419881.67034747,69761869.8373822 + 12/14 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,75345949.43617445,0.0,90865067.75388627,0.0,43845700.3656237,0.0,68813254.22021133,0.0,12543.426172538224,12347.056495833298,12362.966938366037,14882.296341703524,466558657.1902836,0.0,49326574.63249246,69761869.8373822 + 12/14 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77033631.8906396,0.0,92331820.42414087,0.0,45552828.31641589,0.0,70863468.70858976,0.0,10054.03848198961,9896.640633975037,9909.393465561023,11928.732872637669,436221448.9747741,0.0,35233267.594637479,69761869.8373822 + 12/14 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,78499076.14871505,0.0,93711990.14974454,0.0,46428784.64123179,0.0,72132118.69740194,0.0,7552.266128937468,7434.033993815096,7443.613505392204,8960.475474263012,403777370.40576139,0.0,35233267.594637479,62010550.96656194 + 12/14 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,82458549.83707652,0.0,97526706.15586865,0.0,49711615.3236788,0.0,76257209.22485957,0.0,5031.737826116202,4952.96503177859,4959.347432760667,5969.964857445905,381244535.07464846,0.0,35233267.594637479,46507913.22492146 + 12/15 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,89029656.47744625,0.0,103638751.1408549,0.0,56343078.05900212,0.0,84100966.71492823,0.0,2523.475425079289,2483.9699465457977,2487.1707953554634,2994.0072648776779,370871496.74692109,0.0,21139960.556782485,23253956.61246073 + 12/15 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44658279.97276062,0.0,57643794.4186628,0.0,19234211.093438928,0.0,35596401.7707578,0.0,1264.9888221373117,1245.1851861433207,1246.7897343490759,1500.860949873988,176060856.14863346,0.0,14093307.03785499,0.0 + 12/15 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69146227.52424231,0.0,81753546.74469072,0.0,40766634.31042327,0.0,63859474.134963329,0.0,1266.0358905396157,1246.215862494456,1247.8217388318886,1502.1032565642634,274469719.0086684,0.0,14093307.03785499,0.0 + 12/15 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68819386.77785096,0.0,80731726.3013229,0.0,41449934.028437498,0.0,63979460.46418531,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,273964768.9105968,0.0,14093307.03785499,0.0 + 12/15 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68556927.98894289,0.0,80081351.34115669,0.0,41651926.64192833,0.0,63746160.06815681,0.0,1269.716454757721,1249.8388067931185,1251.4493516640662,1506.4701055132724,273035275.0276062,0.0,14093307.03785499,0.0 + 12/15 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67828766.68058016,0.0,78997118.49281106,0.0,41553110.97859806,0.0,63149634.69338345,0.0,1270.676584786525,1250.7839058072094,1252.395668534701,1507.6092631420316,270541906.3655464,0.0,14093307.03785499,0.0 + 12/15 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68966383.6223135,0.0,80420724.7436493,0.0,42196277.043299209,0.0,64087258.94905108,0.0,1258.7110214895782,1239.0056656358498,1240.6022508987008,1493.4125790438353,274504877.81975778,0.0,14093307.03785499,15502637.741640486 + 12/15 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,79261840.96051333,0.0,92724638.91303408,0.0,49190606.045775879,0.0,73817640.33371091,0.0,1253.5229917371435,1233.8988554570156,1235.4888600737098,1487.2571797818419,313751330.64641317,0.0,56373228.15141996,38756594.35410121 + 12/15 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,88534464.27240369,0.0,103811364.25341806,0.0,59931607.41508491,0.0,86887833.73286957,0.0,5012.441115387373,4933.970414656019,4940.328339135194,5947.070046766882,414166985.37117996,0.0,56373228.15141996,38756594.35410121 + 12/15 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,89492479.60793174,0.0,105727107.30098346,0.0,65795046.94917352,0.0,93313147.44899133,0.0,7523.602635119852,7405.819232340365,7415.362386317491,8926.467333001236,466904287.0194842,0.0,28186614.07570998,0.0 + 12/15 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83038457.09058753,0.0,100206363.01381795,0.0,62485511.77628623,0.0,89041474.31394898,0.0,7540.528861492207,7422.480475481276,7432.045099170768,8946.549654478253,447601580.9208816,0.0,28186614.07570998,0.0 + 12/15 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82693359.67621728,0.0,98542481.08096847,0.0,60727866.32991769,0.0,87008888.78603034,0.0,5036.385331986314,4957.539780077313,4963.928076089508,5975.478945754587,404332591.55520156,0.0,28186614.07570998,0.0 + 12/15 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87584274.8200435,0.0,101561477.22938562,0.0,60729984.636024009,0.0,87711157.14952068,0.0,5043.972133944233,4965.007809235265,4971.405728565276,5984.480396671624,413060411.68127289,0.0,28186614.07570998,0.0 + 12/15 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86679348.09133208,0.0,100179031.26684344,0.0,59197676.94816373,0.0,85797918.67837993,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,445391286.45909318,0.0,28186614.07570998,0.0 + 12/15 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81770167.00289858,0.0,95149867.08555866,0.0,56331190.54784382,0.0,81668645.81772223,0.0,10141.919339642354,9983.14570040707,9996.010002600542,12033.000155624079,466674541.16780999,0.0,28186614.07570998,0.0 + 12/15 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81884980.96618685,0.0,94994597.48052356,0.0,55555292.450081247,0.0,80744789.6516612,0.0,12690.659255201965,12491.984617121632,12508.081814331157,15056.98277405177,503071411.0069964,0.0,28186614.07570998,0.0 + 12/15 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,77315860.86733696,0.0,89775439.18410175,0.0,49959973.29545794,0.0,73983113.38140708,0.0,15387.931377965315,15147.030441627503,15166.548936376803,18257.193186503788,521285720.9212079,0.0,35233267.594637479,0.0 + 12/15 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74402874.29310572,0.0,85953635.73229666,0.0,48188300.09674768,0.0,71120920.55226639,0.0,17961.863908977062,17680.66757869962,17703.450923503002,21311.065881504175,548431104.5280784,0.0,14093307.03785499,0.0 + 12/15 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,60961588.182450819,0.0,72385094.62173522,0.0,35348219.035177949,0.0,55363551.65348162,0.0,10263.922233701178,10103.238616399787,10116.257670573144,12177.751932288102,377638667.1235095,0.0,63419881.67034747,0.0 + 12/15 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,45808479.546799849,0.0,57254163.929099,0.0,20567335.08445353,0.0,37383275.051325637,0.0,7699.240442651108,7578.707397229518,7588.473335253433,9134.854887129783,276217847.43582788,0.0,63419881.67034747,69761869.8373822 + 12/15 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,47000263.78673276,0.0,58144597.999156627,0.0,22036041.009085008,0.0,38992534.686067197,0.0,5135.371257428885,5054.976062391274,5061.489914998346,6092.92196776713,243014570.61034987,0.0,49326574.63249246,69761869.8373822 + 12/15 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,48360949.8476058,0.0,59224845.9697721,0.0,23469943.361667977,0.0,40628735.30329278,0.0,5140.996358047156,5060.513101010005,5067.03408865649,6099.595934927416,248609776.6198465,0.0,35233267.594637479,69761869.8373822 + 12/15 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49083718.55524114,0.0,59726290.902239579,0.0,24310540.486545825,0.0,41550544.968765947,0.0,5140.219550060435,5059.74845409723,5066.268456418122,6098.674281903756,251584773.58571885,0.0,35233267.594637479,62010550.96656194 + 12/15 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,51603610.9882219,0.0,62012692.063441719,0.0,26962199.968693675,0.0,44627146.55582703,0.0,5141.764219933242,5061.26894187502,5067.790903499606,6100.506973744168,262142441.31677164,0.0,35233267.594637479,46507913.22492146 + 12/16 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,58260687.55433787,0.0,68322270.0295789,0.0,33773541.04943532,0.0,52661104.47441818,0.0,2572.3730302024148,2532.1020505388817,2535.364922477284,3052.0224068199288,251508307.78390888,0.0,21139960.556782485,23253956.61246073 + 12/16 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,21420627.621760698,0.0,30435781.195186117,0.0,2219250.7277093499,0.0,11820941.65298381,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,85144658.20261488,0.0,14093307.03785499,0.0 + 12/16 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45195866.329305339,0.0,54679690.31709018,0.0,21464588.953378049,0.0,38606399.953016478,0.0,1285.63078208773,1265.5039923599614,1267.1347234214243,1525.351847403107,179183582.39577005,0.0,14093307.03785499,0.0 + 12/16 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44394662.60101144,0.0,52632728.36172756,0.0,23456961.901394849,0.0,38908432.9337388,0.0,1286.3672707475933,1266.2289511524626,1267.8606163973246,1526.2256630845344,178640842.80284757,0.0,14093307.03785499,0.0 + 12/16 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44571121.85050514,0.0,52535344.30223603,0.0,24306551.913025205,0.0,39411358.555209938,0.0,1286.0035139348937,1265.8708890205244,1267.5020928657828,1525.7940795117173,180066990.6921748,0.0,14093307.03785499,0.0 + 12/16 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45609475.878409627,0.0,53473917.19035136,0.0,25568064.924174966,0.0,40638591.20231527,0.0,1285.0548875151088,1264.9371135243076,1266.5671141045305,1524.668570475939,184518468.8634828,0.0,14093307.03785499,0.0 + 12/16 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43526517.67340736,0.0,51408376.07243273,0.0,23578714.452115358,0.0,38074963.21373631,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,233466577.64357008,0.0,14093307.03785499,15502637.741640486 + 12/16 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,49568743.73512211,0.0,62162360.173666689,0.0,33387912.999594928,0.0,49480012.03663885,0.0,20570.09251340368,20248.06387775938,20274.15557474279,24405.629558449713,502391618.4327026,0.0,56373228.15141996,38756594.35410121 + 12/16 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,24744442.241571838,0.0,60914967.10969231,0.0,34613743.63788458,0.0,50627368.517147589,0.0,17990.76842521152,17709.1195893403,17731.939597463428,21345.359986663145,440098396.8615385,0.0,56373228.15141996,38756594.35410121 + 12/16 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1841336.1191068139,0.0,56554672.18470884,0.0,32933026.649321993,0.0,48716165.076078537,0.0,12854.410549833105,12653.172354687547,12669.477258749017,15251.26743436042,332387179.3806845,0.0,28186614.07570998,0.0 + 12/16 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,57864788.397385288,0.0,35016804.34968669,0.0,51354259.47726561,0.0,10285.04625670184,10124.03193887969,10137.077787371394,12202.814779224856,298132146.96817758,0.0,28186614.07570998,0.0 + 12/16 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8858049.95078639,60674249.70131746,0.0,37566220.5283098,0.0,54074501.02130048,0.0,5143.273076018326,5062.754176536615,5069.278052037658,6102.297173892543,229274340.17347426,8858049.95078639,28186614.07570998,0.0 + 12/16 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,14086258.56237606,57175154.75334349,0.0,35874737.0443676,0.0,46791832.526559729,0.0,5146.183116558673,5065.618659849435,5072.146226529599,6105.749825910587,216844636.50812466,14086258.56237606,28186614.07570998,0.0 + 12/16 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,8613385.29005222,48626191.954987298,0.0,30712706.92015345,0.0,41645502.03774025,0.0,5149.618212369075,5068.99997859411,5075.5319024486,6109.825435963961,198038712.81863369,8613385.29005222,28186614.07570998,0.0 + 12/16 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,538313.7471821391,47371930.642185259,0.0,27601152.304652364,0.0,39790653.30351052,0.0,7721.376283987089,7600.496697839947,7610.290713601686,9161.118217897912,230299551.13832403,538313.7471821391,28186614.07570998,0.0 + 12/16 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,7986959.593334483,0.0,52750628.90315312,0.0,29087468.299899967,0.0,43555372.22663055,0.0,12854.410549833105,12653.172354687547,12669.477258749017,15251.26743436042,325722408.37448647,0.0,28186614.07570998,0.0 + 12/16 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,46182392.06546114,0.0,67983324.64367427,0.0,37801089.75334759,0.0,55790870.7669873,0.0,12829.902792126473,12629.048270499732,12645.322088216431,15222.189915360126,399732944.2678003,0.0,35233267.594637479,0.0 + 12/16 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53901783.09565322,0.0,73690944.4571441,0.0,42451498.621294129,0.0,61805515.79283969,0.0,17929.85884614787,17649.163561099558,17671.90630976071,21273.093096165692,500136220.4943569,0.0,14093307.03785499,0.0 + 12/16 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,41213419.445636648,0.0,59334244.05368204,0.0,28154750.322540046,0.0,44523308.23782899,0.0,17973.799401001095,17692.416218369457,17715.21470249421,21325.226887184952,442169688.0122667,0.0,63419881.67034747,0.0 + 12/16 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,28254660.576963024,0.0,45142380.47737005,0.0,13951627.470414386,0.0,27347617.764426389,0.0,10267.367877940867,10106.630318436119,10119.653743163733,12181.840057650164,268328057.479061,0.0,63419881.67034747,69761869.8373822 + 12/16 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,31919876.323668817,0.0,47782205.44227092,0.0,16379796.760793038,0.0,30404101.555610178,0.0,10272.40316498836,10111.586777125553,10124.616588756084,12187.814233523293,280193094.8341588,0.0,49326574.63249246,69761869.8373822 + 12/16 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,35425537.188229519,0.0,50442588.5802576,0.0,18844012.925457669,0.0,33520699.249367857,0.0,5137.835524461382,5057.40175086367,5063.918729217922,6095.845726534332,215110844.17519097,0.0,35233267.594637479,69761869.8373822 + 12/16 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,37915269.9300254,0.0,52312682.144375119,0.0,20390030.522132376,0.0,35564611.06347777,0.0,5138.6391256853189,5058.192771560533,5064.7107692256909,6096.799168711188,223072624.2666685,0.0,35233267.594637479,62010550.96656194 + 12/16 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,41805816.76930501,0.0,55522607.46277303,0.0,23579117.798233466,0.0,39438018.187652368,0.0,2569.3195628426594,2529.0963857802669,2532.3553846128454,3048.399584355594,198790575.52129279,0.0,35233267.594637479,46507913.22492146 + 12/17 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,50057506.65511057,0.0,63262510.96920066,0.0,31086784.118978155,0.0,48646452.002066988,0.0,2570.882109966621,2530.63447093751,2533.895451749803,3050.253486872084,231521649.61565,0.0,21139960.556782485,23253956.61246073 + 12/17 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,12357397.932186744,0.0,23334812.908929845,0.0,13396.280715591272,0.0,7349049.306376343,0.0,1284.2557518663967,1264.1504884932547,1265.7794754268362,1523.7204265336252,62271118.540560919,0.0,14093307.03785499,0.0 + 12/17 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38976538.212867218,0.0,50201624.02393865,0.0,19192373.83631137,0.0,36115497.0140285,0.0,1280.7042032962764,1260.65454007854,1262.279022125765,1519.506649726121,163649352.98196186,0.0,14093307.03785499,0.0 + 12/17 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42319167.2692235,0.0,52757924.565604958,0.0,24457855.013278434,0.0,39828373.61381924,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,178540718.71212475,0.0,14093307.03785499,0.0 + 12/17 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,43674396.79835097,0.0,53660212.20635703,0.0,25691577.22285012,0.0,41024901.16744163,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,183228485.64519838,0.0,14093307.03785499,0.0 + 12/17 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,45031291.885593648,0.0,54632922.40102292,0.0,26795012.551638426,0.0,42169987.459339197,0.0,1281.6450741376962,1261.580681411418,1263.2063568862798,1520.6229570642175,187806612.5477928,0.0,14093307.03785499,0.0 + 12/17 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,42668588.464313808,0.0,51963440.72896908,0.0,24288514.11559131,0.0,38975257.37648627,0.0,5128.409227478876,5048.123024318898,5054.628046086938,6084.661784988465,234632760.1837039,0.0,14093307.03785499,15502637.741640486 + 12/17 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,44203028.645759109,0.0,54743189.15270718,0.0,28189358.439775837,0.0,41386164.80020441,0.0,20506.32118620314,20185.29090258269,20211.301710180476,24329.967313027475,475360113.0416241,0.0,56373228.15141996,38756594.35410121 + 12/17 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,60754622.16786477,0.0,71198227.10729048,0.0,38986457.72345693,0.0,57231831.70070705,0.0,17943.031037927743,17662.129539759848,17684.888996407917,21288.72139889904,496654714.20209959,0.0,56373228.15141996,38756594.35410121 + 12/17 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,66314141.801289279,0.0,76058930.3032152,0.0,46886589.485561508,0.0,66595667.95644326,0.0,12816.45074137696,12615.80681411418,12632.063568862799,15206.229570642176,447629312.0484953,0.0,28186614.07570998,0.0 + 12/17 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64307522.55798901,0.0,74424986.83462751,0.0,45799054.316118869,0.0,65317254.57431008,0.0,10247.541728607606,10087.114551169234,10100.112827838793,12158.317088276897,403183928.58825859,0.0,28186614.07570998,0.0 + 12/17 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64887253.2685968,0.0,75317571.78524374,0.0,45695141.03987291,0.0,65683085.941209908,0.0,5121.85399040182,5041.670410701161,5048.167117617951,6076.88424642532,328221924.7894499,0.0,28186614.07570998,0.0 + 12/17 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,64326542.074654888,0.0,75167326.01464084,0.0,45216885.881935369,0.0,65337257.5512055,0.0,5122.816813185105,5042.61816031416,5049.11608850306,6078.026598904484,326701291.101701,0.0,28186614.07570998,0.0 + 12/17 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63955430.55157676,0.0,75194830.7703924,0.0,44736469.28241494,0.0,65016076.59686203,0.0,5125.652615014513,5045.4095671369109,5051.911092338415,6081.391169525866,325598519.1997026,0.0,28186614.07570998,0.0 + 12/17 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,63999031.204845819,0.0,76134109.3273673,0.0,44721629.41459608,0.0,65341264.58962467,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,365239602.5341187,0.0,28186614.07570998,0.0 + 12/17 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69303660.59750396,0.0,81187977.34385047,0.0,46926345.43879333,0.0,68756063.90777448,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,457661212.6893891,0.0,28186614.07570998,0.0 + 12/17 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74800042.45275581,0.0,86715991.62952814,0.0,49330004.811688158,0.0,72528749.9116522,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,474225780.4927841,0.0,35233267.594637479,0.0 + 12/17 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81616854.77450007,0.0,93987563.04289368,0.0,54641110.47930655,0.0,79618526.37194854,0.0,17811.28758606068,17532.448556208485,17555.040905672984,21132.412822215498,576376338.2012163,0.0,14093307.03785499,0.0 + 12/17 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,71657833.40085778,0.0,84807924.24337077,0.0,43464776.338525447,0.0,66840293.45369844,0.0,17757.698998530952,17479.698908013474,17502.22328417223,21068.83200871362,532481258.9544014,0.0,63419881.67034747,0.0 + 12/17 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,61101211.70871327,0.0,75001878.28493242,0.0,31826575.651004435,0.0,53427825.13041423,0.0,10125.511323714041,9966.994555029029,9979.838044823167,12013.53267105761,372866646.51571026,0.0,63419881.67034747,69761869.8373822 + 12/17 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,67340663.04260917,0.0,81672224.2242879,0.0,36721433.80619135,0.0,59996869.575353797,0.0,10096.856299633102,9938.788130695666,9951.595273633082,11979.534578815092,396811578.0664393,0.0,49326574.63249246,69761869.8373822 + 12/17 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74203126.45812083,0.0,89072843.70988819,0.0,42071492.07464043,0.0,67224200.86424884,0.0,5034.8440859583129,4956.022662543399,4962.409003594803,5973.650316175341,347908596.95267698,0.0,35233267.594637479,69761869.8373822 + 12/17 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,80170936.19882626,0.0,95599942.57436416,0.0,46577439.32102622,0.0,73388111.33274588,0.0,5015.735090079901,4937.212821560244,4943.574924211661,5950.978222000823,370787433.235232,0.0,35233267.594637479,62010550.96656194 + 12/17 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,88358514.94505555,0.0,104321814.36957968,0.0,53202201.50711895,0.0,82102622.94299919,0.0,2496.01695936671,2456.941348236321,2460.107367938313,2961.428843463777,365333334.0331718,0.0,35233267.594637479,46507913.22492146 + 12/18 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,100386316.92313369,0.0,116753803.54344827,0.0,63854596.89032695,0.0,95566907.08280178,0.0,2488.91302254729,2449.948624873047,2453.105633737253,2953.000293601474,413803507.7088433,0.0,21139960.556782485,23253956.61246073 + 12/18 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60887157.08461914,0.0,76046873.90229579,0.0,30353171.253121213,0.0,51441058.69315978,0.0,1241.7149221074977,1222.275643360215,1223.850670281766,1473.2473559079954,237308179.86316283,0.0,14093307.03785499,0.0 + 12/18 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,91264752.74786419,0.0,106899322.88036612,0.0,55514155.78225091,0.0,85773948.51446563,0.0,1237.957786492029,1218.5773264036998,1220.1475876663727,1468.7896579189258,357975880.4154786,0.0,14093307.03785499,0.0 + 12/18 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96438093.05568069,0.0,112475828.70227465,0.0,60548647.97984994,0.0,91206547.73905345,0.0,1232.605919333036,1213.3092437234703,1214.872716523908,1462.4398718281089,379112737.3819294,0.0,14093307.03785499,0.0 + 12/18 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100982343.662696,0.0,115977898.25184599,0.0,63926235.07003701,0.0,95248925.51915285,0.0,1229.5980191711015,1210.3484327996942,1211.9080902930528,1458.8711131045816,394534014.86305829,0.0,14093307.03785499,0.0 + 12/18 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104097959.92678163,0.0,119120187.12945879,0.0,66350157.501012269,0.0,98228991.70997703,0.0,1228.0710196354667,1208.845338726651,1210.403059329879,1457.0593864447065,406173059.9621218,0.0,14093307.03785499,0.0 + 12/18 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104305516.78041174,0.0,119491910.51944216,0.0,65705071.55772872,0.0,97656868.50134118,0.0,4895.70046577463,4819.057361690909,4825.2672089724069,5808.561722265917,460414279.6902577,0.0,14093307.03785499,15502637.741640486 + 12/18 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,104646340.21844365,0.0,126565312.45481584,0.0,68630569.81809622,0.0,102250766.93345493,0.0,19540.48322783841,19234.573317633054,19259.35902858491,23184.037443729165,694479420.2888386,0.0,56373228.15141996,38756594.35410121 + 12/18 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,71347621.57047051,0.0,125567634.65844313,0.0,69566048.82679482,0.0,103275317.51203904,0.0,17097.922824358608,16830.25165292892,16851.939150011793,20286.032763263018,625594749.573772,0.0,56373228.15141996,38756594.35410121 + 12/18 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,55650078.07179353,0.0,129870151.84167826,0.0,77803266.73068184,0.0,112594609.27132379,0.0,12223.430714728045,12032.070626610232,12047.575177700535,14502.633945989313,558818663.5895786,0.0,28186614.07570998,0.0 + 12/18 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,44656223.36162208,0.0,132053644.43262679,0.0,80689350.4251097,0.0,116212797.88859558,0.0,9803.938628121985,9650.456139975791,9662.89173771373,11631.998942922071,520309443.723395,0.0,28186614.07570998,0.0 + 12/18 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,42726806.50179679,0.0,135140439.80515964,0.0,83324902.7028131,0.0,119116919.88936772,0.0,4908.178289397092,4831.339842656826,4837.565517168694,5823.366183686158,453750688.29760888,0.0,28186614.07570998,0.0 + 12/18 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48716394.11936878,0.0,133146024.18390309,0.0,81985001.6167473,0.0,112809444.60050433,0.0,4920.414481703921,4843.384475090433,4849.625670340562,5837.883958774036,450281575.42979577,0.0,28186614.07570998,0.0 + 12/18 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,49252330.146573517,0.0,126468910.9708488,0.0,77809177.09516406,0.0,108565787.13644874,0.0,4920.414481703921,4843.384475090433,4849.625670340562,5837.883958774036,435720916.2583074,0.0,28186614.07570998,0.0 + 12/18 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62727353.45682533,0.0,124744582.56108773,0.0,74109531.57599496,0.0,106202453.42479152,0.0,7392.653419408982,7276.92005103,7286.297105255542,8771.101087199155,478401019.0051168,0.0,28186614.07570998,0.0 + 12/18 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86554433.10188778,0.0,131105294.81599179,0.0,75651534.55641358,0.0,110184334.03910543,0.0,12335.947525640606,12142.825965857961,12158.473236507452,14636.130847106348,588079755.7838032,0.0,28186614.07570998,0.0 + 12/18 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,115318430.81558624,0.0,142947452.79199816,0.0,82375661.04027021,0.0,119580768.06376215,0.0,12316.101605012387,12123.290736819432,12138.912834332386,14612.584419846327,644509515.2572547,0.0,35233267.594637479,0.0 + 12/18 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,121435640.1162813,0.0,147252679.13673244,0.0,85910092.35833138,0.0,124098756.09120016,0.0,17228.505200011376,16958.789737130726,16980.642868654708,20440.963767339308,736489213.3658353,0.0,14093307.03785499,0.0 + 12/18 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,109900779.14504287,0.0,134593562.01324553,0.0,72630887.12656245,0.0,108280630.82902375,0.0,17214.37226839542,16944.878059195715,16966.71326410274,20424.19558346414,682986432.1444434,0.0,63419881.67034747,0.0 + 12/18 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,97585905.57421585,0.0,121351475.53579901,0.0,59052559.6387196,0.0,91999427.3924041,0.0,9824.568157083733,9670.762709813209,9683.224474639032,11656.475091557651,516995477.7002756,0.0,63419881.67034747,69761869.8373822 + 12/18 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,102427151.35235949,0.0,125445315.73999071,0.0,62479482.980074618,0.0,96389266.44030644,0.0,9812.230633412712,9658.61833237682,9671.064447932766,11641.837090674217,533562718.3285587,0.0,49326574.63249246,69761869.8373822 + 12/18 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,107492815.13491923,0.0,130034093.19890985,0.0,66270301.30099227,0.0,101263177.9633267,0.0,4897.796701109124,4821.1207800701899,4827.3332862768779,5811.048825472072,478346666.13268986,0.0,35233267.594637479,69761869.8373822 + 12/18 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,112604575.45920433,0.0,132988859.59182468,0.0,69188940.60862012,0.0,105106337.10122457,0.0,4887.249802103503,4810.7389947360229,4816.938122952661,5798.535332401788,493017176.86877205,0.0,35233267.594637479,62010550.96656194 + 12/18 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,118354198.85650634,0.0,138256307.5812426,0.0,73709643.96604687,0.0,110813613.58635837,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,477633992.5005411,0.0,35233267.594637479,46507913.22492146 + 12/19 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,128618715.7710808,0.0,148044896.65564747,0.0,82893925.67045072,0.0,122083594.65758306,0.0,2432.83511536697,2394.748627790958,2397.8345058247775,2886.465997357341,518043916.0415862,0.0,21139960.556782485,23253956.61246073 + 12/19 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86702500.93900413,0.0,104368276.23791054,0.0,45762077.78501357,0.0,75399114.93925122,0.0,1214.7681193065078,1195.7506977839958,1197.2915446058267,1441.276003007321,330408680.8141126,0.0,14093307.03785499,0.0 + 12/19 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116356899.74520609,0.0,134051945.36210361,0.0,72354734.64104648,0.0,109055558.55013462,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,449979278.52875897,0.0,14093307.03785499,0.0 + 12/19 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118948897.1160883,0.0,136269765.28142003,0.0,75228971.93565625,0.0,111936568.18636342,0.0,1211.987921485972,1193.0140244789862,1194.551344817937,1437.9774044199303,460519313.02225819,0.0,14093307.03785499,0.0 + 12/19 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,119717338.75877992,0.0,137028802.12314923,0.0,76486800.76949945,0.0,113037167.1550536,0.0,1213.104638792717,1194.1132593679704,1195.6519961832726,1439.302346876663,464421928.87487646,0.0,14093307.03785499,0.0 + 12/19 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,121165292.64822223,0.0,138068133.41811238,0.0,77753113.98123712,0.0,114412266.3424578,0.0,1211.4272597937823,1192.4621400501786,1193.9987492297135,1437.3122007239197,469525527.6493008,0.0,14093307.03785499,0.0 + 12/19 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,118283833.46949072,0.0,135070394.3776952,0.0,75062030.44822873,0.0,110963702.76639258,0.0,4852.418555170868,4776.4530374718819,4782.60798473309,5757.209387506652,511987241.33538416,0.0,14093307.03785499,15502637.741640486 + 12/19 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,114814813.16005033,0.0,138130115.97976483,0.0,75782115.16696058,0.0,112135735.15816528,0.0,19436.289908904124,19132.011164543932,19156.664713693226,23060.416048117135,731690154.0718714,0.0,56373228.15141996,38756594.35410121 + 12/19 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,78702476.69075926,0.0,134437469.9167157,0.0,74890276.29479103,0.0,110774243.99342218,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,653738467.7928431,0.0,56373228.15141996,38756594.35410121 + 12/19 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59849075.46914221,0.0,135493776.75783185,0.0,80962950.39735459,0.0,117223207.77739783,0.0,12223.430714728045,12032.070626610232,12047.575177700535,14502.633945989313,576429568.0758277,0.0,28186614.07570998,0.0 + 12/19 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,46172019.728253658,0.0,134960691.96315218,0.0,82218948.43065329,0.0,118535474.35519503,0.0,9816.356578794184,9662.679685313651,9675.131034337388,11646.732367372317,528770373.2741972,0.0,28186614.07570998,0.0 + 12/19 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,41260192.947287578,0.0,136935442.23103918,0.0,84131260.35920507,0.0,120377780.10858232,0.0,4916.362861492905,4839.396283749648,4845.6323398081699,5833.076866053517,456268761.7100893,0.0,28186614.07570998,0.0 + 12/19 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,37382738.97926604,0.0,133108978.46271383,0.0,81980448.43496973,0.0,111969982.97898104,0.0,4932.404816107579,4855.187098572206,4861.4435027073609,5852.110032844774,438246272.47676566,0.0,28186614.07570998,0.0 + 12/19 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,36115078.31033082,0.0,121389105.29578144,0.0,75122434.52925447,0.0,104259189.75158555,0.0,4948.00233699768,4870.540437363057,4876.816625842326,5870.615895986902,410923318.95323619,0.0,28186614.07570998,0.0 + 12/19 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,45000699.944578129,0.0,115947616.77208935,0.0,69292503.86858279,0.0,99069279.32030873,0.0,7424.880446742606,7308.642558238771,7318.0604901527,8809.337224949239,440409414.4978589,0.0,28186614.07570998,0.0 + 12/19 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,72761513.63197568,0.0,121558060.37265662,0.0,70383462.35195254,0.0,102810185.7481359,0.0,12374.80074457101,12181.070930397953,12196.767483587835,14682.22870824873,552678746.4252206,0.0,28186614.07570998,0.0 + 12/19 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,110572373.3410425,0.0,137299795.63297964,0.0,79370755.4218848,0.0,115355978.6840356,0.0,12370.005842494198,12176.35109340764,12192.041564605817,14676.539739967253,627692680.7456522,0.0,35233267.594637479,0.0 + 12/19 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116827064.66983648,0.0,140898209.10827206,0.0,82527343.45139417,0.0,119317506.44664225,0.0,17311.270486576937,17040.259317695254,17062.21743108922,20539.161620504132,718600595.5572609,0.0,14093307.03785499,0.0 + 12/19 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,105604654.48691339,0.0,127999874.8035321,0.0,69382356.99156249,0.0,103529224.9807314,0.0,17277.211842923825,17006.733868462165,17028.64878089292,20498.752339908067,665036959.8586125,0.0,63419881.67034747,0.0 + 12/19 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,92929915.09209678,0.0,114467164.19645685,0.0,55442560.692425739,0.0,86796599.68563684,0.0,9884.411925462888,9729.669612834543,9742.207285217411,11727.477438362443,497537798.2093743,0.0,63419881.67034747,69761869.8373822 + 12/19 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,96645574.48751679,0.0,116828460.86949232,0.0,58105396.865552607,0.0,89967243.46711388,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,509272874.8873174,0.0,49326574.63249246,69761869.8373822 + 12/19 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,101790282.79747245,0.0,121279137.56513712,0.0,62294696.35859404,0.0,95132920.43287196,0.0,4914.326855600109,4837.392151908921,4843.625625439007,5830.661222780837,454030658.23469957,0.0,35233267.594637479,69761869.8373822 + 12/19 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,106289001.03466048,0.0,125461207.49226612,0.0,65444129.19262822,0.0,99299664.6240501,0.0,4908.178289397092,4831.339842656826,4837.565517168694,5823.366183686158,469935621.7420764,0.0,35233267.594637479,62010550.96656194 + 12/19 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,112249891.88062996,0.0,131158484.93849193,0.0,70253938.20280013,0.0,105405950.6787516,0.0,2445.744118978565,2407.455538542841,2410.5577907281319,2901.782037375537,455664207.84892389,0.0,35233267.594637479,46507913.22492146 + 12/20 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,122236287.73472579,0.0,140800007.8302695,0.0,79510954.40472329,0.0,116692792.25739238,0.0,2439.347478991486,2401.1590391480519,2404.2531776512016,2894.192668205627,495740270.7374979,0.0,21139960.556782485,23253956.61246073 + 12/20 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81339225.96882814,0.0,98551325.8839944,0.0,43014930.62490838,0.0,71115064.63028616,0.0,1214.2151789702576,1195.2064138318602,1196.746559288265,1440.61996040539,312188984.31300196,0.0,14093307.03785499,0.0 + 12/20 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,111915281.26164009,0.0,129138365.09149122,0.0,70670265.2943279,0.0,105919653.33805731,0.0,1210.3013572299718,1191.3538637010416,1192.889044753381,1435.9763603103016,435753439.23909738,0.0,14093307.03785499,0.0 + 12/20 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,113109164.66221743,0.0,129865380.5286614,0.0,72625723.90705709,0.0,107503615.89130858,0.0,1214.2151789702576,1195.2064138318602,1196.746559288265,1440.61996040539,441272322.1942293,0.0,14093307.03785499,0.0 + 12/20 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,114468192.84135221,0.0,130997938.90551013,0.0,73902202.16484545,0.0,108794849.45804973,0.0,1213.660683692166,1194.6605992807884,1196.200041399434,1439.9620729243207,446323323.6000257,0.0,14093307.03785499,0.0 + 12/20 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,116491034.34808749,0.0,132927415.25048146,0.0,75971347.65874172,0.0,111090053.58074755,0.0,1208.0313869357433,1189.1194302152317,1190.651731971961,1433.2831272062927,454555759.2728435,0.0,14093307.03785499,0.0 + 12/20 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,115114159.90232426,0.0,131599923.18714603,0.0,74361428.93922818,0.0,109158456.10398534,0.0,4832.125547742973,4756.477720860927,4762.606927887844,5733.132508825171,502537601.8718247,0.0,14093307.03785499,15502637.741640486 + 12/20 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,114188216.87784933,0.0,136828231.5269423,0.0,76812733.64951256,0.0,112655713.5056358,0.0,19273.306779587932,18971.57956652166,18996.02638318199,22867.042786631995,728873535.4172647,0.0,56373228.15141996,38756594.35410121 + 12/20 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,84458213.48091501,0.0,129461187.03239957,0.0,75513043.83316097,0.0,109699306.33365827,0.0,17045.13036366664,16778.285668057513,16799.906201664824,20223.396523864118,654179938.206245,0.0,56373228.15141996,38756594.35410121 + 12/20 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83562233.41235593,0.0,127929201.49909732,0.0,80909209.06979645,0.0,114593480.2453187,0.0,12239.251164436575,12047.64340422727,12063.168022431017,14521.404305664792,590131405.054903,0.0,28186614.07570998,0.0 + 12/20 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57067343.88910012,0.0,118487068.335843,0.0,76356177.29406156,0.0,108325361.22312905,0.0,9816.356578794184,9662.679685313651,9675.131034337388,11646.732367372317,507119189.5390768,0.0,28186614.07570998,0.0 + 12/20 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56650099.16670673,0.0,115848002.67903051,0.0,74999897.74661316,0.0,106133109.15598576,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,427345989.7665913,0.0,28186614.07570998,0.0 + 12/20 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,57608306.1683015,0.0,111220285.06452231,0.0,71564204.02880198,0.0,99305201.08313275,0.0,4944.145150943998,4866.743636276603,4873.014932190141,5866.039491972052,413677791.90573659,0.0,28186614.07570998,0.0 + 12/20 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61607400.21969545,0.0,106733480.29409923,0.0,67002992.73668921,0.0,95029632.52753566,0.0,4974.1999286697559,4896.3279008503509,4902.637319108395,5901.698338482267,404803014.3316183,0.0,28186614.07570998,0.0 + 12/20 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,70743000.12668875,0.0,109864668.2737313,0.0,66396144.79401013,0.0,95824347.2252673,0.0,7450.289532644986,7333.653860161288,7343.104021690596,8839.484135447974,454307673.99949887,0.0,28186614.07570998,0.0 + 12/20 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,84723973.94457165,0.0,117699517.68487019,0.0,69021767.32503203,0.0,100681138.40498978,0.0,12421.764263814808,12227.299226986952,12243.055350055412,14737.949131123753,557994642.058595,0.0,28186614.07570998,0.0 + 12/20 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,96762199.82303831,0.0,122840709.83356424,0.0,70965281.6086313,0.0,103666255.96383168,0.0,12444.565112736449,12249.743124365232,12265.528168686265,14765.001468007371,580443863.5747287,0.0,35233267.594637479,0.0 + 12/20 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,101568887.8573541,0.0,126083016.33190406,0.0,73860739.37920539,0.0,107267493.52826059,0.0,17409.69975034414,17137.147652976222,17159.230616879388,20655.944184687934,669283417.0343199,0.0,14093307.03785499,0.0 + 12/20 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,90279808.27010188,0.0,114053928.42929068,0.0,60739403.398594457,0.0,91823630.26830366,0.0,17409.69975034414,17137.147652976222,17159.230616879388,20655.944184687934,617400050.3038864,0.0,63419881.67034747,0.0 + 12/20 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,78415350.40021351,0.0,101427274.18263096,0.0,47357914.87595443,0.0,75902948.99475494,0.0,9941.088859362864,9785.459258761244,9798.06882179722,11794.722456943193,451853110.28226616,0.0,63419881.67034747,69761869.8373822 + 12/20 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,83242283.25849229,0.0,105407073.72629003,0.0,50610263.39590716,0.0,80105823.76425863,0.0,9941.088859362864,9785.459258761244,9798.06882179722,11794.722456943193,468115065.9736604,0.0,49326574.63249246,69761869.8373822 + 12/20 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87674666.8107839,0.0,109056302.99215986,0.0,53741874.30399038,0.0,84080894.51207975,0.0,4972.375843253626,4894.532371831694,4900.839476367331,5899.534130765651,408955953.1789998,0.0,35233267.594637479,69761869.8373822 + 12/20 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,90671252.44536388,0.0,111412793.98461996,0.0,55651684.04597199,0.0,86549883.37846393,0.0,4972.375843253626,4894.532371831694,4900.839476367331,5899.534130765651,418687828.41440567,0.0,35233267.594637479,62010550.96656194 + 12/20 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,93900001.17349643,0.0,113859641.42851463,0.0,58333331.43459026,0.0,89686491.31866357,0.0,2491.604911647372,2452.598371947095,2455.7587952808605,2956.1941172629969,393061627.6613628,0.0,35233267.594637479,46507913.22492146 + 12/21 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,101015415.95644662,0.0,120092033.69233927,0.0,65178079.60999575,0.0,97702259.88815092,0.0,2495.1420329135596,2456.0801189200117,2459.245028840126,2960.3907766251097,421322877.7932083,0.0,21139960.556782485,23253956.61246073 + 12/21 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,56809117.522747118,0.0,73718497.68513677,0.0,26666587.99057194,0.0,47708898.618151757,0.0,1254.3426172538225,1234.70564958333,1236.2966938366038,1488.2296341703523,223671970.35804633,0.0,14093307.03785499,0.0 + 12/21 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79923979.95164752,0.0,95835385.53406543,0.0,47999156.30671639,0.0,75243569.96938406,0.0,1258.3237280950187,1238.6244353916318,1240.2205294004016,1492.9530702150883,317830530.1089811,0.0,14093307.03785499,0.0 + 12/21 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,84351185.21063186,0.0,100081490.35266567,0.0,51116077.67080204,0.0,79274734.58376038,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,333628450.2722334,0.0,14093307.03785499,0.0 + 12/21 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,86943489.43575102,0.0,102298338.06294182,0.0,52935470.686721477,0.0,81406718.7509317,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,342388979.3907195,0.0,14093307.03785499,0.0 + 12/21 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87542521.62472469,0.0,102311152.06222075,0.0,53614618.271610859,0.0,81843446.64458508,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,344116701.05751487,0.0,14093307.03785499,0.0 + 12/21 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,81644274.8203332,0.0,95373566.18976963,0.0,49550742.22795306,0.0,75731716.73482825,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,321105262.4272576,0.0,14093307.03785499,15502637.741640486 + 12/21 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,83138953.09260562,0.0,96665998.70073316,0.0,51028700.11472222,0.0,76699086.27262092,0.0,5027.019240994805,4948.32031698752,4954.696732780511,5964.3664363188349,382752587.9981759,0.0,56373228.15141996,38756594.35410121 + 12/21 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,91436004.34515712,0.0,105101703.93638855,0.0,60128608.921466808,0.0,87375546.78764159,0.0,12587.110214895782,12390.056656358494,12406.022508987007,14934.125790438353,532384198.6051007,0.0,56373228.15141996,38756594.35410121 + 12/21 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90057654.38997773,0.0,103670233.91138181,0.0,63540443.991568129,0.0,90376068.06331723,0.0,12642.805603331606,12444.880123098394,12460.916621359514,15000.20624279378,536820111.28234478,0.0,28186614.07570998,0.0 + 12/21 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,88528277.35461588,0.0,101317358.13292386,0.0,60855423.49434465,0.0,87375600.63305573,0.0,12667.236808677,12468.92885336647,12484.996340871143,15029.192935339648,527617937.3926555,0.0,28186614.07570998,0.0 + 12/21 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82845857.74124362,0.0,97362187.75112818,0.0,57692888.44814393,0.0,83742587.57555887,0.0,7622.151804410921,7502.825596001852,7512.49375257979,9043.392160512029,435694629.4446911,0.0,28186614.07570998,0.0 + 12/21 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82137183.08975384,0.0,96586191.32057564,0.0,57017390.18606889,0.0,82875857.8942458,0.0,7606.439504731765,7487.3592753053,7497.007501950407,9024.750116718062,432432625.5259841,0.0,28186614.07570998,0.0 + 12/21 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83893679.58992985,0.0,98466829.7564272,0.0,57987920.3996315,0.0,84393974.86674574,0.0,7587.81426361951,7469.025615817192,7478.650217670771,9002.651979107532,438279716.0871083,0.0,28186614.07570998,0.0 + 12/21 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87843930.53745385,0.0,101904095.03894036,0.0,59449441.513987939,0.0,86671002.3047981,0.0,7581.384943412046,7462.696947816965,7472.313394535871,8995.023836103615,449309578.23390677,0.0,28186614.07570998,0.0 + 12/21 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,95226067.86840703,0.0,109402886.99073576,0.0,62881101.967562939,0.0,91869353.41839619,0.0,17632.715224864394,17356.671778639364,17379.0376217848,20920.54353218219,623219695.6119967,0.0,28186614.07570998,0.0 + 12/21 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,96982881.88381277,0.0,111655609.00021588,0.0,63453466.06014765,0.0,93206042.7348088,0.0,22649.827105710337,22295.23983704937,22323.96952920723,26873.155263871588,704209889.9280037,0.0,35233267.594637479,0.0 + 12/21 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100160851.41235383,0.0,114850515.61081405,0.0,66343858.041638988,0.0,96797687.21628803,0.0,17611.082391406708,17335.37761122506,17357.716014662336,20894.877001060664,641669503.1471722,0.0,14093307.03785499,0.0 + 12/21 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,88700364.17449762,0.0,103630725.1766232,0.0,54775635.2899121,0.0,82945189.21883473,0.0,17605.60494737528,17329.98591760176,17352.31737329148,20888.37822280427,593486545.1197298,0.0,63419881.67034747,0.0 + 12/21 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75616801.45896483,0.0,90823278.23943728,0.0,41477752.082812327,0.0,67011691.35254249,0.0,15056.994264188941,14821.274210103556,14840.372934699288,17864.548933654372,500229008.3672831,0.0,63419881.67034747,69761869.8373822 + 12/21 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,81156149.06939283,0.0,96404597.79029463,0.0,46110848.07605491,0.0,72874870.81017015,0.0,12488.77764372838,12293.263499936642,12309.104624703632,14817.457948333233,483417439.12603929,0.0,49326574.63249246,69761869.8373822 + 12/21 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,87504493.24073775,0.0,102969958.01426882,0.0,51389054.29716143,0.0,79616833.56554191,0.0,9948.399857339511,9792.655801700701,9805.27463821679,11803.396676964534,470339356.2249074,0.0,35233267.594637479,69761869.8373822 + 12/21 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,93222097.59840308,0.0,108591559.85675512,0.0,55825540.42668789,0.0,85302876.40604346,0.0,7419.115922818688,7302.968279012252,7312.378899038237,8802.497837358915,453955133.66551068,0.0,35233267.594637479,62010550.96656194 + 12/21 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,97933781.3889729,0.0,113375569.21304974,0.0,59894256.128991629,0.0,90480526.87669009,0.0,4957.520831234111,4879.909917796544,4886.198179807675,5881.909226055165,435864070.96532097,0.0,35233267.594637479,46507913.22492146 + 12/22 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,106147410.04583799,0.0,121431743.35322872,0.0,68114583.23507074,0.0,100333840.15969259,0.0,2472.072575471999,2433.3718181383017,2436.5074660950706,2933.019745986026,433017474.57431909,0.0,21139960.556782485,23253956.61246073 + 12/22 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66735639.30680274,0.0,80920543.82960367,0.0,33781118.84771923,0.0,56407596.56121087,0.0,1232.1089032348303,1212.8200085050003,1214.3828508759237,1461.8501811998588,256281081.54307277,0.0,14093307.03785499,0.0 + 12/22 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97199428.22540456,0.0,111768110.1258488,0.0,59453767.286247078,0.0,90451357.83758793,0.0,1231.1096959177879,1211.8364439649079,1213.3980189125312,1460.664659860276,377293895.2222481,0.0,14093307.03785499,0.0 + 12/22 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,99291544.37455675,0.0,113744766.3377578,0.0,62347795.0861368,0.0,93202162.13534074,0.0,1230.607514286527,1211.3421240807666,1212.9030620467648,1460.0688405242366,386999985.48117,0.0,14093307.03785499,0.0 + 12/22 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102280395.17090164,0.0,117006895.68402438,0.0,65554984.429426569,0.0,96987440.63234195,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,400127686.9908197,0.0,14093307.03785499,0.0 + 12/22 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102225744.82560948,0.0,116556414.81114879,0.0,66024013.98581743,0.0,97005166.02141841,0.0,1229.0907153732263,1209.849070937412,1211.4080849520424,1458.2692165133793,400202361.15998789,0.0,14093307.03785499,0.0 + 12/22 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,98784890.27589095,0.0,112623670.19381503,0.0,63402835.66177855,0.0,93189303.84278226,0.0,1223.3994094995733,1204.2468635189233,1205.7986585174893,1451.516699344791,386306561.8454376,0.0,14093307.03785499,15502637.741640486 + 12/22 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,94828853.66020733,0.0,115377038.28186995,0.0,63557068.51136923,0.0,93917533.68642758,0.0,1230.1036204259804,1210.8461187726082,1212.4064175851405,1459.470989693509,386086671.86719217,0.0,56373228.15141996,38756594.35410121 + 12/22 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,59395977.19192245,0.0,113355565.05207919,0.0,63560739.15198925,0.0,94037588.72683084,0.0,4882.985320887614,4806.541274769107,4812.734993795116,5793.475688224392,403414524.3224561,0.0,56373228.15141996,38756594.35410121 + 12/22 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,43433184.64180336,0.0,114120380.39609319,0.0,69507984.2020081,0.0,100195828.58851484,0.0,7386.658175506727,7271.018663789447,7280.388113475187,8763.987959161657,437784768.31137838,0.0,28186614.07570998,0.0 + 12/22 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23644865.945442354,0.0,104666949.48234783,0.0,65626395.1388455,0.0,94414130.87035202,0.0,7461.299893004633,7344.491851275524,7353.955978662593,8852.547507723402,399996604.26738587,0.0,28186614.07570998,0.0 + 12/22 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,4035524.1493960234,0.0,95862645.42296992,0.0,61698569.42735952,0.0,87880232.33880894,0.0,5005.760742757414,4927.394624505803,4933.744075408192,5939.144039646935,324378727.87488046,0.0,28186614.07570998,0.0 + 12/22 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,781592.9719618609,0.0,87586112.21010107,0.0,57097520.968588609,0.0,76664482.68872331,0.0,5009.116290410245,4930.697640434152,4937.051347609697,5943.12526884789,297081674.809662,0.0,28186614.07570998,0.0 + 12/22 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,79725888.25285788,0.0,51135357.3129198,0.0,70575585.16861202,0.0,7535.7513451200579,7417.777752019177,7427.33631576949,8940.881313671707,314195118.9500792,0.0,28186614.07570998,0.0 + 12/22 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19307587.011877065,0.0,83631245.2712771,0.0,49227857.024691779,0.0,71374454.61993876,0.0,10050.861308301484,9893.513199533701,9906.262001101199,11924.963277336885,373933303.15836849,0.0,28186614.07570998,0.0 + 12/22 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,48250855.0090656,0.0,91789079.04590088,0.0,52168994.00384618,0.0,77129751.71315705,0.0,12579.344565290507,12382.412579446473,12398.368581901668,14924.912143614763,457564816.104882,0.0,28186614.07570998,0.0 + 12/22 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,66315931.69667779,0.0,98676571.60721293,0.0,55200159.14933836,0.0,81703483.97683147,0.0,15131.916401832701,14895.02342770579,14914.217185695828,17953.441190014873,528316699.96895769,0.0,35233267.594637479,0.0 + 12/22 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70994585.38067724,0.0,100592539.96503905,0.0,57216946.747595537,0.0,84079774.53800336,0.0,17669.49852435793,17392.87922871741,17415.29172885789,20964.185512926408,577274524.6128099,0.0,14093307.03785499,0.0 + 12/22 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,60693677.21905503,0.0,88052881.8558928,0.0,44879285.1359065,0.0,69113148.27862478,0.0,10117.085684826014,9958.700821089593,9971.533623561027,12003.535972143374,414122074.4553111,0.0,63419881.67034747,0.0 + 12/22 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,50274860.77188344,0.0,76095465.07599294,0.0,32244676.71875269,0.0,54076326.119505908,0.0,7559.165973470501,7440.8258199947999,7450.414083533167,8968.661876418197,325799972.5984349,0.0,63419881.67034747,69761869.8373822 + 12/22 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,56458217.26967737,0.0,80996350.73922123,0.0,36155342.22595167,0.0,59178070.055140618,0.0,5039.443982313667,4960.550546663201,4966.942722355444,5979.107917612131,308193742.89819088,0.0,49326574.63249246,69761869.8373822 + 12/22 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62984225.90152397,0.0,86379059.43042806,0.0,40511886.61341263,0.0,64824622.22220561,0.0,5025.430654150742,4946.756599766851,4953.131000550599,5962.481638668442,329895873.7828622,0.0,35233267.594637479,69761869.8373822 + 12/22 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70978401.3560336,0.0,93682589.77631498,0.0,45824276.78169377,0.0,71909374.61226216,0.0,4992.03391873342,4913.882696472642,4920.214735876626,5922.857686927554,357091003.0631412,0.0,35233267.594637479,62010550.96656194 + 12/22 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,78267954.15104386,0.0,100044251.84684983,0.0,51242430.844918388,0.0,78718770.32397631,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,382917288.99188616,0.0,35233267.594637479,46507913.22492146 + 12/23 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,86897575.82219392,0.0,107381194.21992594,0.0,58994377.901112619,0.0,87872306.97776169,0.0,2497.7555287456759,2458.6526999873296,2461.8209249407266,2963.491589666646,378519649.59701946,0.0,21139960.556782485,23253956.61246073 + 12/23 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,46928086.36254369,0.0,65411198.443227577,0.0,23814500.46088279,0.0,42398827.49778762,0.0,1248.0084796833554,1228.4706741181606,1230.0536839691566,1480.7144217318885,197226702.8986509,0.0,14093307.03785499,0.0 + 12/23 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74341998.35848104,0.0,92202431.45734261,0.0,47611257.03977087,0.0,73299930.68032135,0.0,1248.8777643728379,1229.3263499936648,1230.9104624703633,1481.745794833323,306142714.87392857,0.0,14093307.03785499,0.0 + 12/23 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76764389.150941,0.0,93712160.47009813,0.0,49951014.1331144,0.0,75855697.73403919,0.0,1248.4440637152109,1228.8994390007393,1230.4830013590498,1481.2312255584205,314963869.31487306,0.0,14093307.03785499,0.0 + 12/23 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77510960.0396564,0.0,93686600.94989427,0.0,51053064.379039708,0.0,76575799.07299797,0.0,1248.4440637152109,1228.8994390007393,1230.4830013590498,1481.2312255584205,317507032.2682687,0.0,14093307.03785499,0.0 + 12/23 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80432952.91223304,0.0,96065989.36752087,0.0,53583842.04729949,0.0,79347451.1541167,0.0,1241.7149221074977,1222.275643360215,1223.850670281766,1473.2473559079957,328010154.411137,0.0,14093307.03785499,0.0 + 12/23 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,77565016.07914762,0.0,92737222.13675311,0.0,50823304.44925053,0.0,75686469.20188509,0.0,4984.989574696163,4906.948632955408,4913.2717371108069,5914.499841626491,371402967.0980363,0.0,14093307.03785499,15502637.741640486 + 12/23 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,78634163.32230243,0.0,96447349.90257868,0.0,51707913.93861364,0.0,77217191.01692367,0.0,20009.49840486775,19696.24597457131,19721.62659786358,23740.50604786452,603410975.4710202,0.0,56373228.15141996,38756594.35410121 + 12/23 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,64121526.92525874,0.0,95173712.45469509,0.0,52782380.07537518,0.0,78074893.47677356,0.0,17743.64530587032,17465.865228533152,17488.37177858392,21052.1578388342,555652657.4786602,0.0,56373228.15141996,38756594.35410121 + 12/23 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27432387.712876247,0.0,83920759.5598022,0.0,49837858.261409688,0.0,72618785.0021655,0.0,12763.159186408195,12563.34954837998,12579.538706587498,15143.001174935447,424786365.5549737,0.0,28186614.07570998,0.0 + 12/23 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,1495128.8471481035,0.0,77499440.4196895,0.0,46546795.00361061,0.0,68029880.08078826,0.0,10245.63362637021,10085.23632062832,10098.23217700612,12156.053197808968,346877803.5097655,0.0,28186614.07570998,0.0 + 12/23 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,76528482.92046674,0.0,46460946.745080698,0.0,67126832.19924784,0.0,5130.202857192361,5049.888574424618,5056.395871284175,6086.78985817646,266880059.6446747,0.0,28186614.07570998,0.0 + 12/23 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,72399395.97503561,0.0,44261760.49811613,0.0,59293127.781749907,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,252731302.77185417,0.0,28186614.07570998,0.0 + 12/23 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,4287412.685603197,62093920.26195507,0.0,38580156.07848403,0.0,52822385.39864676,0.0,5131.086412527926,5050.758297536577,5057.266715123134,6087.838162854727,230273480.25603838,4287412.685603197,28186614.07570998,0.0 + 12/23 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,0.0,0.0,61313183.34682119,0.0,35925959.306793738,0.0,51959806.23201903,0.0,7688.47892252177,7568.114350705364,7577.866638507623,9122.086754288799,264242516.88331873,0.0,28186614.07570998,0.0 + 12/23 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,23496016.32475604,0.0,66986981.59072219,0.0,37381597.749121617,0.0,55682196.838647048,0.0,12807.042032962763,12606.545400785399,12622.790221257652,15195.06649726121,375179991.45140817,0.0,28186614.07570998,0.0 + 12/23 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57388403.530674379,0.0,81327771.44561178,0.0,45594932.01968725,0.0,67170655.6101656,0.0,12776.716780302728,12576.694895612927,12592.901250662488,15159.086742566136,442661201.41505846,0.0,35233267.594637479,0.0 + 12/23 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65818606.04685436,0.0,87341602.44024766,0.0,50676648.42084325,0.0,73609323.1142453,0.0,17828.208024709915,17549.104102234156,17571.717914069708,21152.48827677996,544211645.966248,0.0,14093307.03785499,0.0 + 12/23 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,57537149.205846447,0.0,77871144.23444101,0.0,39610616.919311,0.0,60734676.01005469,0.0,17780.540255826938,17502.18258116546,17524.73592983193,21095.932288590913,501805794.1691481,0.0,63419881.67034747,0.0 + 12/23 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,48804871.30111729,0.0,68170394.88044137,0.0,28252213.364244366,0.0,47570108.14047491,0.0,10133.7894469416,9975.143082693177,9987.997072696913,12023.354348271718,344430609.90845027,0.0,63419881.67034747,69761869.8373822 + 12/23 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,51122857.77408094,0.0,69176952.40846466,0.0,29814599.3889622,0.0,49313130.02883503,0.0,10172.942757137278,10013.683440513698,10026.587093702221,12069.808256245158,351646417.1716969,0.0,49326574.63249246,69761869.8373822 + 12/23 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,54656821.57387213,0.0,71634613.63744398,0.0,32554894.680353889,0.0,52543322.96963439,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,287326698.2165048,0.0,35233267.594637479,69761869.8373822 + 12/23 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,57063670.52217912,0.0,73312001.30811076,0.0,34465482.65675224,0.0,54800399.85005756,0.0,5076.263702080786,4996.793846848654,5003.232725732463,6022.793109620708,295598254.5205171,0.0,35233267.594637479,62010550.96656194 + 12/23 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,62309611.55912988,0.0,78138494.99808832,0.0,39053489.38664931,0.0,60464679.08010699,0.0,2528.561120666321,2488.9760246196794,2492.1833242719028,3000.041248558756,277801417.2091945,0.0,35233267.594637479,46507913.22492146 + 12/24 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,70940152.36772648,0.0,86294310.29493352,0.0,46973795.441862057,0.0,70053238.37630686,0.0,2534.1289790419016,2494.4567171337068,2497.6710792176374,3006.6472999831614,312179951.15218397,0.0,21139960.556782485,23253956.61246073 + 12/24 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38055035.238149899,0.0,51021273.24138267,0.0,17583861.15481272,0.0,34043393.7998642,0.0,1260.9930334860583,1241.2519523088163,1242.851432141319,1496.120099167906,159571942.89578427,0.0,14093307.03785499,0.0 + 12/24 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,60403809.76315692,0.0,74088692.25159249,0.0,37613694.91910783,0.0,58310944.622562568,0.0,1263.5641572353409,1243.7828246361613,1245.3855657559785,1499.1706393506025,249323993.02954094,0.0,14093307.03785499,0.0 + 12/24 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,70153728.45665479,0.0,84060432.27092536,0.0,45743014.655356127,0.0,68709034.00917512,0.0,1239.3802078085278,1219.977479449136,1221.5495449519188,1470.4773065137914,287211193.7315155,0.0,14093307.03785499,0.0 + 12/24 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,73135607.10245177,0.0,87060801.70164141,0.0,48364279.79757379,0.0,71811525.69560324,0.0,1250.5936503042345,1231.0153734107069,1232.6016623664737,1483.7816279915326,299084986.6279328,0.0,14093307.03785499,0.0 + 12/24 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,74874377.37059477,0.0,88556059.63981353,0.0,49848542.98729607,0.0,73483234.45094875,0.0,1243.0939608134066,1223.6330929579236,1225.2098690918329,1474.8835326914128,305362768.0886495,0.0,14093307.03785499,0.0 + 12/24 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,76115037.29011116,0.0,89762736.74044518,0.0,50348162.26506476,0.0,74223701.04997733,0.0,4944.145150943998,4866.743636276603,4873.014932190141,5866.039491972052,364429432.9065765,0.0,14093307.03785499,15502637.741640486 + 12/24 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,78366119.64777404,0.0,93626792.77802673,0.0,51302504.19667887,0.0,75817835.8682826,0.0,19995.831983004344,19682.79350309164,19708.15679150134,23724.29136000298,598313117.5861234,0.0,56373228.15141996,38756594.35410121 + 12/24 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,80058699.23076639,0.0,99516859.18483718,0.0,58335178.84774303,0.0,83921732.60924262,0.0,17537.738929327825,17263.182354727232,17285.427727207694,20807.85778299614,584251614.3319212,0.0,56373228.15141996,38756594.35410121 + 12/24 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81290957.55263743,0.0,102924924.80956319,0.0,65079646.823380228,0.0,91538388.03311333,0.0,12559.585575200095,12362.962920031961,12378.893859615817,14901.46885611951,528764397.5781768,0.0,28186614.07570998,0.0 + 12/24 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75852311.53559847,0.0,99887946.02197632,0.0,62586402.480229858,0.0,88772649.29331276,0.0,10078.887964627334,9921.101093326402,9933.885444710888,11958.215835224262,477910834.5475173,0.0,28186614.07570998,0.0 + 12/24 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,74956964.80124802,0.0,98583324.60240728,0.0,61331357.08220579,0.0,87415678.11497262,0.0,5042.470745969186,4963.529925769052,4969.925940695372,5982.699057150734,397738377.0113373,0.0,28186614.07570998,0.0 + 12/24 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,77213437.57567859,0.0,98831205.71157557,0.0,61076089.75674157,0.0,86874641.03203973,0.0,5037.918635675542,4959.049079611248,4965.439320509944,5977.298152052055,399378312.7522911,0.0,28186614.07570998,0.0 + 12/24 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,56663363.17615242,0.0,91803481.17713633,0.0,57158358.45286013,0.0,80933837.52801636,0.0,5055.693498939079,4976.5456740744989,4982.958461121,5998.387348806,362207946.2727513,0.0,28186614.07570998,0.0 + 12/24 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59320982.88915881,0.0,89356557.30091167,0.0,54330829.383429039,0.0,78240704.02021621,0.0,7594.133492785531,7475.245916271769,7484.878533617375,9010.149503293209,394880940.3992001,0.0,28186614.07570998,0.0 + 12/24 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,73770534.98972503,0.0,96286709.8857277,0.0,56627124.84361388,0.0,82429114.63941002,0.0,12660.358905396155,12462.158624944557,12478.217388318886,15021.032565642634,498551847.30196467,0.0,28186614.07570998,0.0 + 12/24 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,84328807.87168333,0.0,102092645.53125136,0.0,58803367.224046129,0.0,85934453.61175272,0.0,12653.398915471713,12455.307594960766,12471.357530083691,15012.774803276432,520493494.0763868,0.0,35233267.594637479,0.0 + 12/24 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87357996.65505056,0.0,104286518.53124148,0.0,60901182.74785096,0.0,88479448.34325841,0.0,17743.645305870315,17465.865228533152,17488.37177858392,21052.1578388342,606525290.8239591,0.0,14093307.03785499,0.0 + 12/24 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,74074126.30867118,0.0,90587490.28713674,0.0,46930447.67305365,0.0,71703284.71443944,0.0,17734.1315321478,17456.500394713054,17478.9948772196,21040.870109475505,548653137.8721025,0.0,63419881.67034747,0.0 + 12/24 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,60019646.84151557,0.0,76210524.9632005,0.0,32482071.30493628,0.0,54269333.59121036,0.0,10147.256570589117,9988.399376007703,10001.270448098418,12039.332576407784,374816108.99683359,0.0,63419881.67034747,69761869.8373822 + 12/24 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,62729814.9191753,0.0,78391626.58399688,0.0,34641231.123967919,0.0,56910556.41590281,0.0,10147.256570589117,9988.399376007703,10001.270448098418,12039.332576407784,384507761.33901378,0.0,49326574.63249246,69761869.8373822 + 12/24 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,66509670.81624173,0.0,81906041.67292243,0.0,37641111.09321897,0.0,60757103.77260831,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,322711290.1065489,0.0,35233267.594637479,69761869.8373822 + 12/24 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,68636359.75504485,0.0,83720200.5625357,0.0,39308250.337646957,0.0,62828108.248814519,0.0,5072.298121022132,4992.890347701252,4999.324196527988,6018.088099070151,330390281.6555995,0.0,35233267.594637479,62010550.96656194 + 12/24 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70823324.96146858,0.0,85389982.7162794,0.0,41487661.9364199,0.0,65274020.56034804,0.0,2541.35316957305,2501.5678116144188,2504.791337069402,3015.218526284063,301001541.2148633,0.0,35233267.594637479,46507913.22492146 + 12/25 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,78875132.72855877,0.0,93079118.15868396,0.0,49212007.97481132,0.0,74579425.40108823,0.0,2538.131851040393,2498.396923424327,2501.6163628662318,3011.396554810354,333724034.35485097,0.0,21139960.556782485,23253956.61246073 + 12/25 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,38911064.35102087,0.0,52420279.74598917,0.0,15173140.777434957,0.0,31513995.370593758,0.0,1267.4032361335943,1247.5618020380826,1249.1694127559943,1503.7255599167286,156982776.2840786,0.0,14093307.03785499,0.0 + 12/25 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65975365.27219528,0.0,78872266.70748684,0.0,38633931.91210935,0.0,61072944.76723596,0.0,1267.7399174552944,1247.8932125508839,1249.5012503250678,1504.1250194530099,263523842.49825076,0.0,14093307.03785499,0.0 + 12/25 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66987394.3782601,0.0,79266019.977391,0.0,40027946.59441176,0.0,62430532.44040357,0.0,1268.7375374688218,1248.8752146369937,1250.4845178210965,1505.3086575175633,267696154.72926659,0.0,14093307.03785499,0.0 + 12/25 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68397953.293446,0.0,80423579.2326908,0.0,41677876.77232985,0.0,64060199.866392578,0.0,1266.3808134439633,1246.5553855663907,1248.161699413956,1502.5124944237553,273508606.57911226,0.0,14093307.03785499,0.0 + 12/25 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,69379051.49713786,0.0,81296145.40770136,0.0,42745582.936165329,0.0,65153582.867541778,0.0,1267.0644895209508,1247.2283585668534,1248.8355396088187,1503.3236499915807,277533590.0442239,0.0,14093307.03785499,0.0 + 12/25 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,67527931.4157401,0.0,79552645.47163895,0.0,40758165.02381256,0.0,62757932.587535869,0.0,5061.359566188685,4982.123037984307,4988.543012033477,6005.109921310573,326330362.43378886,0.0,14093307.03785499,15502637.741640486 + 12/25 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,74614201.9797543,0.0,88115254.0664077,0.0,44924403.5877401,0.0,68784739.80214818,0.0,20222.773995756317,19906.182696297994,19931.833844484,23993.549395224,579034223.1903945,0.0,56373228.15141996,38756594.35410121 + 12/25 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,87817280.76081154,0.0,101953396.73465209,0.0,57420005.987493988,0.0,84072912.49386344,0.0,17684.840757942828,17407.981276773447,17430.413237444285,20982.388487425833,595883841.511332,0.0,56373228.15141996,38756594.35410121 + 12/25 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93960485.98783493,0.0,107986419.74081224,0.0,65793615.72419853,0.0,93886494.13613102,0.0,12628.396403398601,12430.696501878374,12446.714723095862,14983.110277106247,550587120.0487013,0.0,28186614.07570998,0.0 + 12/25 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92106445.0362978,0.0,106581771.16582293,0.0,64423551.94370978,0.0,92557308.46023093,0.0,10105.623290253046,9947.417872441973,9960.236135682448,11989.93627852905,506880645.4829249,0.0,28186614.07570998,0.0 + 12/25 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90532733.15316502,0.0,105228826.01624049,0.0,63308525.28082999,0.0,91322193.79648404,0.0,5052.811645126523,4973.708936220986,4980.118067841224,5994.968139264525,425998062.6851513,0.0,28186614.07570998,0.0 + 12/25 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90140472.34734442,0.0,104910106.8051725,0.0,62897154.090059299,0.0,90867448.82149568,0.0,5049.89739158272,4970.840305860066,4977.245740957288,5991.5104886786989,424377360.2015555,0.0,28186614.07570998,0.0 + 12/25 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90894445.91291924,0.0,105090780.70881863,0.0,62699470.548160899,0.0,90665505.6995059,0.0,5051.3585613594409,4972.2786007513509,4978.685889238344,5993.244110842498,424934244.65329459,0.0,28186614.07570998,0.0 + 12/25 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,87666760.90704455,0.0,102765141.54229905,0.0,61526789.61161932,0.0,88882808.8485565,0.0,7577.037842039161,7458.417901127024,7468.0288338575169,8989.86616626375,454217563.5853542,0.0,28186614.07570998,0.0 + 12/25 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,93714489.85679089,0.0,107758736.1347143,0.0,63380740.555211979,0.0,91868216.59145382,0.0,12624.7434789568,12427.10076465016,12443.114352393219,14978.776221696746,545627628.48188,0.0,28186614.07570998,0.0 + 12/25 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,93830145.44784855,0.0,107838067.50057549,0.0,62431986.6231628,0.0,90914618.81042046,0.0,12632.029112816308,12434.272340552465,12450.295169603061,14987.420348161311,544029279.4780866,0.0,35233267.594637479,0.0 + 12/25 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96048600.20149583,0.0,109858467.30091694,0.0,64540193.79613853,0.0,93411528.12412885,0.0,17684.840757942828,17407.981276773447,17430.413237444285,20982.388487425833,628479034.9571912,0.0,14093307.03785499,0.0 + 12/25 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,80965543.79628136,0.0,94899727.61942403,0.0,49687333.29189506,0.0,75454717.41701555,0.0,17714.758481660396,17437.43063294507,17459.900542117168,21017.884724587002,566075229.8973307,0.0,63419881.67034747,0.0 + 12/25 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,64185400.759952519,0.0,77929107.63220066,0.0,33684305.85495239,0.0,55776487.05796538,0.0,10147.256570589117,9988.399376007703,10001.270448098418,12039.332576407784,383409833.60104188,0.0,63419881.67034747,69761869.8373822 + 12/25 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,67014158.55653514,0.0,80621321.02438225,0.0,36311379.68988209,0.0,59013576.42076613,0.0,10122.71913237737,9964.246075968615,9977.086024066954,12010.219842621145,394427811.5616883,0.0,49326574.63249246,69761869.8373822 + 12/25 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,70457475.04039064,0.0,83820445.94359438,0.0,39380287.70510396,0.0,62744568.82191822,0.0,5061.359566188685,4982.123037984307,4988.543012033477,6005.109921310573,332136465.4460685,0.0,35233267.594637479,69761869.8373822 + 12/25 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71432354.16700723,0.0,84578897.04024774,0.0,40583089.316379,0.0,64044143.593745667,0.0,5061.359566188685,4982.123037984307,4988.543012033477,6005.109921310573,336372172.052441,0.0,35233267.594637479,62010550.96656194 + 12/25 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,74520045.21665225,0.0,87548671.08161062,0.0,43319468.51814909,0.0,67434916.73593554,0.0,2534.8064722671886,2495.123604076165,2498.3388255119887,3007.451119833457,310751693.6304271,0.0,35233267.594637479,46507913.22492146 + 12/26 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,82131777.59109675,0.0,95105449.1340342,0.0,50582824.848675,0.0,76269469.08014295,0.0,2536.8141426472795,2497.0998440019259,2500.3176120246046,3009.833144101946,342048153.7279417,0.0,21139960.556782485,23253956.61246073 + 12/26 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,39818868.951343189,0.0,52206027.73206648,0.0,15047789.201703767,0.0,31216234.019981464,0.0,1269.0659255201966,1249.1984617121635,1250.8081814331159,1505.698277405177,157278094.95094926,0.0,14093307.03785499,0.0 + 12/26 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64970500.396085377,0.0,76251540.29643616,0.0,37297486.73512147,0.0,58865729.72931578,0.0,1270.358634068487,1250.4709326669759,1252.0822920966319,1507.2320267520045,256393775.14506153,0.0,14093307.03785499,0.0 + 12/26 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65009763.4515336,0.0,75671864.98972908,0.0,38091089.37856542,0.0,59352013.96833117,0.0,1272.2348275757632,1252.317754014892,1253.931493262356,1509.4580587296787,257161323.469057,0.0,14093307.03785499,0.0 + 12/26 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64962918.859478387,0.0,75487140.43556574,0.0,38648070.268292348,0.0,59568165.46774006,0.0,1272.5401530411076,1252.618299553118,1254.232426084184,1509.8203157393203,257707455.33098037,0.0,14093307.03785499,0.0 + 12/26 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,64907473.34316228,0.0,75111562.74135739,0.0,38984584.90927803,0.0,59622657.834614548,0.0,1273.144457320642,1253.2131433364237,1254.8280363844188,1510.5372996992756,257676481.40067903,0.0,14093307.03785499,0.0 + 12/26 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,61459400.99704035,0.0,71665747.1195723,0.0,36062598.87243331,0.0,55794492.63334011,0.0,5092.577829282568,5012.8525733456949,5019.312145537675,6042.149198797102,301183049.911453,0.0,14093307.03785499,15502637.741640486 + 12/26 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,66306790.4440362,0.0,77485546.49491287,0.0,39135506.24430063,0.0,59637255.06545063,0.0,20365.49382281368,20046.668217838414,20072.500395957984,24162.881022076836,547296254.6999732,0.0,56373228.15141996,38756594.35410121 + 12/26 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,77605563.87897025,0.0,89357370.63902208,0.0,50205047.94787714,0.0,73292486.60622429,0.0,17819.80709496197,17540.834690608608,17563.437846463232,21142.52089431723,557100230.9669576,0.0,56373228.15141996,38756594.35410121 + 12/26 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,82483081.33804275,0.0,93840989.92978992,0.0,57778371.78687948,0.0,81959272.92071025,0.0,12737.402801044958,12537.996384034454,12554.152872101971,15112.442206883643,506652895.32605656,0.0,28186614.07570998,0.0 + 12/26 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,75226506.97008063,0.0,90023861.4344926,0.0,55732633.070907469,0.0,79508871.11483318,0.0,10167.939510441944,10008.758520578735,10021.655827505243,12063.87209502681,452635886.0231037,0.0,28186614.07570998,0.0 + 12/26 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,69975784.76025191,0.0,89798213.48309048,0.0,55380168.45451448,0.0,79280386.6370712,0.0,5085.224772375858,5005.61462991657,5012.0648752796819,6033.425077460728,370525339.01304629,0.0,28186614.07570998,0.0 + 12/26 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,71983887.64950344,0.0,88198435.78981523,0.0,54226315.819800939,0.0,77499072.08239374,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,368017150.1271904,0.0,28186614.07570998,0.0 + 12/26 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,67076607.84666632,0.0,87679576.74346012,0.0,53326251.75373883,0.0,76338272.8684014,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,360567075.9358573,0.0,28186614.07570998,0.0 + 12/26 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,62914488.46893209,0.0,87658141.43519619,0.0,52098875.3065763,0.0,75189296.18744374,0.0,7627.837158563788,7508.421944874854,7518.097312919523,9050.137616191094,391996979.91532567,0.0,28186614.07570998,0.0 + 12/26 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,61823464.24298093,0.0,88059903.35865793,0.0,51216044.278536189,0.0,74754087.3752646,0.0,12684.070713236397,12485.499220009626,12501.588060123022,15049.16572050973,465646664.6254033,0.0,28186614.07570998,0.0 + 12/26 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,84308692.24235556,0.0,98674671.88631496,0.0,57288796.78240803,0.0,83187682.31257923,0.0,12660.358905396155,12462.158624944557,12478.217388318886,15021.032565642634,512898206.1671458,0.0,35233267.594637479,0.0 + 12/26 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,87273436.170847,0.0,101112960.1857201,0.0,59633316.039301898,0.0,86074186.14184976,0.0,17748.358844374117,17470.504975712367,17493.017504550946,21057.75027234214,599664572.2868452,0.0,14093307.03785499,0.0 + 12/26 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,72414068.99389227,0.0,86025836.39596135,0.0,44831148.62361188,0.0,68146841.33182508,0.0,17766.92295728275,17488.778463970284,17511.31454006362,21079.775883672475,537266345.9872514,0.0,63419881.67034747,0.0 + 12/26 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,57817825.61596983,0.0,71333050.13692391,0.0,29953051.003627939,0.0,50253092.34336069,0.0,10170.449544751717,10011.22925983314,10024.129750559363,12066.850154921456,361538590.4561188,0.0,63419881.67034747,69761869.8373822 + 12/26 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,61270212.588713187,0.0,74558252.09152332,0.0,32623364.71276924,0.0,53704756.720205519,0.0,10160.308717615395,10001.247189237407,10014.134817046817,12054.81845062338,374186419.14149418,0.0,49326574.63249246,69761869.8373822 + 12/26 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,65631954.48138737,0.0,78791704.77277905,0.0,36189924.67834231,0.0,58273265.54123413,0.0,5074.950149875287,4995.5008585479749,5001.938071284386,6021.234630070253,314823894.8289433,0.0,35233267.594637479,69761869.8373822 + 12/26 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,67914991.87599659,0.0,80916914.7115177,0.0,38140926.722987327,0.0,60698009.0654079,0.0,5073.628285294559,4994.199688003851,5000.635224049209,6019.666288203892,323588108.523895,0.0,35233267.594637479,62010550.96656194 + 12/26 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,71348194.9425656,0.0,84155259.87396437,0.0,41397830.602140549,0.0,64622173.08522011,0.0,2536.8141426472795,2497.0998440019259,2500.3176120246046,3009.833144101946,299482091.5778834,0.0,35233267.594637479,46507913.22492146 + 12/27 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,81956353.01990815,0.0,94944220.82684636,0.0,50920209.16114068,0.0,76463922.54261184,0.0,2528.561120666321,2488.9760246196794,2492.1833242719028,3000.041248558756,342119847.73572698,0.0,21139960.556782485,23253956.61246073 + 12/27 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,44099198.80980834,0.0,56629619.56767808,0.0,18718680.911170126,0.0,35088698.92221421,0.0,1259.8609955784169,1240.1376366658004,1241.7356805888613,1494.7769794030328,173387638.86292077,0.0,14093307.03785499,0.0 + 12/27 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,72743419.30410363,0.0,84947476.74082728,0.0,42799915.15697326,0.0,66618766.29905018,0.0,1259.4796589188855,1239.762269902812,1241.359830127486,1494.3245380130139,285955312.1700182,0.0,14093307.03785499,0.0 + 12/27 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,75334797.93709481,0.0,87884044.1733377,0.0,45843522.933323327,0.0,70037621.53092253,0.0,1257.5432105268058,1237.8561369715547,1239.4512409493919,1492.0270159145908,297916745.9503828,0.0,14093307.03785499,0.0 + 12/27 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78141244.67254037,0.0,90740670.78660199,0.0,48502861.45622988,0.0,73083697.63083887,0.0,1254.7495220157453,1235.1061841752967,1236.6977445582739,1488.712411137864,309243431.64900496,0.0,14093307.03785499,0.0 + 12/27 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,80910793.30418283,0.0,93763726.01741484,0.0,50878780.496657509,0.0,75982146.05132462,0.0,1252.6956378091307,1233.0844539090884,1234.6734090862638,1486.2755559282958,320279670.4738178,0.0,14093307.03785499,0.0 + 12/27 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79659121.5450904,0.0,92767251.89456862,0.0,49398050.80930015,0.0,74232134.65038529,0.0,5005.760742757414,4927.394624505803,4933.744075408192,5939.144039646935,370958315.4356905,0.0,14093307.03785499,15502637.741640486 + 12/27 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,81849766.97602842,0.0,99590515.51886313,0.0,52211302.10233207,0.0,78450790.2665012,0.0,20002.68039322525,19689.534700172964,19714.906675303162,23732.416737310188,611404713.4853665,0.0,56373228.15141996,38756594.35410121 + 12/27 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,72664504.74196862,0.0,105298227.0861455,0.0,58508957.55017321,0.0,86165906.53580064,0.0,17502.345344072084,17228.342862651338,17250.543340890265,20765.864645146412,584527142.2080243,0.0,56373228.15141996,38756594.35410121 + 12/27 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,95251094.86158605,0.0,116963825.50851569,0.0,71618851.31042841,0.0,101714302.90005717,0.0,12505.936503042345,12310.153734107065,12326.016623664735,14837.816279915323,572675797.8872135,0.0,28186614.07570998,0.0 + 12/27 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,91099288.71814117,0.0,114836944.9025633,0.0,70606214.44311619,0.0,100788244.0871804,0.0,9994.476619958401,9838.011224005182,9850.688505612241,11858.064996953688,526879160.9985073,0.0,28186614.07570998,0.0 + 12/27 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,97547042.0483638,0.0,117230031.40386267,0.0,71765342.01966839,0.0,102623548.93916722,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,463809846.23615989,0.0,28186614.07570998,0.0 + 12/27 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,81054158.61453185,0.0,114041782.9769577,0.0,70883497.656672,0.0,99819047.34506041,0.0,4983.209823294744,4905.19674389419,4911.517590561721,5912.3882345259939,440362811.2054179,0.0,28186614.07570998,0.0 + 12/27 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,76636872.22800127,0.0,115927789.31030116,0.0,71138288.3577841,0.0,100437023.29740882,0.0,4981.422639783247,4903.437539073965,4909.756118826527,5910.267809510592,438677555.979395,0.0,28186614.07570998,0.0 + 12/27 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,90225928.0246211,0.0,117136433.23037255,0.0,70560177.03511963,0.0,101227813.89853522,0.0,7485.426098740679,7368.240356760033,7377.735086520379,8881.17232987533,491155618.1274756,0.0,28186614.07570998,0.0 + 12/27 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,101723026.47627308,0.0,124423182.24024029,0.0,73027865.89158483,0.0,105465550.75025875,0.0,12466.90469227617,12271.732973619812,12287.546354106067,14791.506526377072,591183311.3253218,0.0,28186614.07570998,0.0 + 12/27 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,108745680.50672648,0.0,127594298.78250413,0.0,74162116.65351266,0.0,107285675.0920171,0.0,12462.473936740407,12267.37158238852,12283.179342777015,14786.249604066228,604265159.1122601,0.0,35233267.594637479,0.0 + 12/27 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,112099005.3731073,0.0,130414352.75708671,0.0,76761144.5364702,0.0,110485779.44776052,0.0,17453.666569186636,17180.426163067736,17202.564895748492,20708.1091369279,690921442.4681754,0.0,14093307.03785499,0.0 + 12/27 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,98905437.99457199,0.0,117309093.15891624,0.0,63006087.52496064,0.0,94104387.41282684,0.0,17447.46351143657,17174.320215343927,17196.451079887822,20700.749445692716,634393349.3997755,0.0,63419881.67034747,0.0 + 12/27 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,84349854.71169457,0.0,102550173.78128502,0.0,48399277.09548173,0.0,76438741.24940817,0.0,9980.568131654238,9824.320475680046,9836.980115360504,11841.563106500438,461078401.42297229,0.0,63419881.67034747,69761869.8373822 + 12/27 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,86709392.57630421,0.0,104547926.67973271,0.0,50524830.607872579,0.0,79022498.92919304,0.0,9984.06783746684,9827.765392945284,9840.429471753252,11845.715373855108,470197369.8667763,0.0,49326574.63249246,69761869.8373822 + 12/27 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,89977638.909373,0.0,107419634.52996779,0.0,53299432.86485721,0.0,82865212.78217538,0.0,4992.03391873342,4913.882696472642,4920.214735876626,5922.857686927554,408258279.6232102,0.0,35233267.594637479,69761869.8373822 + 12/27 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92136811.27344696,0.0,109444371.67827799,0.0,55076456.00528753,0.0,85161817.59426013,0.0,4990.284065827119,4912.160237840023,4918.490057680252,5920.781553250219,416489633.843824,0.0,35233267.594637479,62010550.96656194 + 12/27 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,95927111.20802783,0.0,113132671.27210202,0.0,58549593.67252176,0.0,89355897.80240764,0.0,2494.2633564660475,2455.215198316202,2458.378993697838,2959.3482605612787,394287214.8676082,0.0,35233267.594637479,46507913.22492146 + 12/28 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,108150715.12762094,0.0,124408973.33094442,0.0,68895670.87712401,0.0,102024561.55356118,0.0,2477.8157154515918,2439.025048190132,2442.167980910836,2939.8337623426825,440555753.91407349,0.0,21139960.556782485,23253956.61246073 + 12/28 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,68832099.95228349,0.0,83881689.83148276,0.0,34434675.69017236,0.0,58013664.382926199,0.0,1235.551490682861,1216.2087016043179,1217.7759106521765,1465.9346797953054,263649824.6747096,0.0,14093307.03785499,0.0 + 12/28 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,99064458.76963659,0.0,114560246.3947483,0.0,60555295.41046713,0.0,92312390.01309785,0.0,1233.1012040268948,1213.7967746430516,1215.3608756768402,1463.0275082111935,384943421.4931585,0.0,14093307.03785499,0.0 + 12/28 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,102171653.95208726,0.0,118575332.01800563,0.0,64407940.31478909,0.0,96421626.42668832,0.0,1230.1036204259804,1210.8461187726082,1212.4064175851405,1459.470989693509,399982730.4388883,0.0,14093307.03785499,0.0 + 12/28 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,104611193.89195268,0.0,119694384.7742915,0.0,66350575.15820681,0.0,98488249.79776544,0.0,1230.1036204259804,1210.8461187726082,1212.4064175851405,1459.470989693509,407550581.3495345,0.0,14093307.03785499,0.0 + 12/28 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,106186507.92930572,0.0,121141092.28631898,0.0,67927606.17968498,0.0,100220550.01391234,0.0,1228.0710196354667,1208.845338726651,1210.403059329879,1457.0593864447065,413851520.1041141,0.0,14093307.03785499,0.0 + 12/28 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,105066326.19633419,0.0,120092530.73196672,0.0,66539312.29029224,0.0,98538508.8950838,0.0,1225.4923285152482,1206.307017496974,1207.8614672142163,1453.999867865259,408573856.565607,0.0,14093307.03785499,15502637.741640486 + 12/28 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,107570677.9490285,0.0,128105466.27140238,0.0,70340422.47717247,0.0,104151743.87336253,0.0,4880.843364377916,4804.43285098815,4810.623853094914,5790.934338589142,483200914.4363463,0.0,56373228.15141996,38756594.35410121 + 12/28 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,84128372.57394135,0.0,129628121.41104,0.0,72830962.27855475,0.0,107211471.52209299,0.0,12202.10841094479,12011.082127470374,12026.559632737286,14477.335846472855,576380437.4490801,0.0,56373228.15141996,38756594.35410121 + 12/28 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78520659.01054226,0.0,133537108.65437791,0.0,80344178.90956249,0.0,115726620.1600679,0.0,12218.124505258755,12026.847486840054,12042.345307381653,14496.33833100447,590949727.0042963,0.0,28186614.07570998,0.0 + 12/28 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,91035971.92660284,0.0,136558555.4393356,0.0,83112050.22156991,0.0,119337902.38936854,0.0,12244.49175277281,12052.801950175472,12068.333215692195,14527.62206368018,613260176.3132314,0.0,28186614.07570998,0.0 + 12/28 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83220942.58239931,0.0,132699104.59503907,0.0,81812038.0015121,0.0,117218240.15267205,0.0,7362.267434095637,7247.0097639852369,7256.348275753042,8735.049275529238,525112754.42932996,0.0,28186614.07570998,0.0 + 12/28 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78255782.10687025,0.0,131646320.60161713,0.0,80847791.2287376,0.0,113585654.04087486,0.0,7374.544292239358,7259.09442562447,7268.448509712254,8749.615299080277,514681677.07406279,0.0,28186614.07570998,0.0 + 12/28 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86081054.88795533,0.0,129984266.86008203,0.0,78976215.39683083,0.0,112287150.43843098,0.0,7389.660963007432,7273.974442091658,7283.347700599432,8767.550651907797,517901009.1106819,0.0,28186614.07570998,0.0 + 12/28 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,88695648.01003865,0.0,127162064.7180661,0.0,76096918.5920691,0.0,109504405.44399804,0.0,7407.459733453581,7291.4945694661159,7300.890404446253,8788.668213621317,512297683.279726,0.0,28186614.07570998,0.0 + 12/28 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,108320214.57601299,0.0,134395215.9891618,0.0,78928298.64327552,0.0,114377003.77165947,0.0,17290.90907546915,17020.21666827678,17042.148954671255,20515.003583467584,694746534.7948948,0.0,28186614.07570998,0.0 + 12/28 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,117114837.0934932,0.0,138079968.98277054,0.0,80151832.1875065,0.0,116388412.04204457,0.0,22231.168811317482,21883.13571635586,21911.334370291614,26376.43317874404,784382509.7819674,0.0,35233267.594637479,0.0 + 12/28 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,120984632.06340398,0.0,140787922.9724682,0.0,82698547.88417854,0.0,119505421.36809565,0.0,17297.720869560053,17026.92182246045,17048.862749130472,20523.085517134274,722804251.7379733,0.0,14093307.03785499,0.0 + 12/28 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,109338642.15986733,0.0,128421929.87389174,0.0,70503043.34001966,0.0,104735289.9014324,0.0,17304.508028303986,17033.602726968107,17055.552262665493,20531.138221902176,671928189.7386342,0.0,63419881.67034747,0.0 + 12/28 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,94526529.83268667,0.0,113122817.76685998,0.0,55604263.29426311,0.0,86625762.55340109,0.0,14849.760893485212,14617.285116477542,14636.1209803054,17618.674449898477,572078002.6318107,0.0,63419881.67034747,69761869.8373822 + 12/28 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,96710290.26331944,0.0,114740627.97907077,0.0,57394265.72201589,0.0,88764028.08647399,0.0,12393.802078085277,12199.774794491357,12215.495449519187,14704.773065137913,543059055.4449215,0.0,49326574.63249246,69761869.8373822 + 12/28 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,98863111.34752172,0.0,116415562.55597258,0.0,59351246.1072148,0.0,91065583.66037546,0.0,9926.291692676292,9770.893744479557,9783.484538363711,11777.16618351215,514223713.8435987,0.0,35233267.594637479,69761869.8373822 + 12/28 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99671394.54508525,0.0,116822764.16334966,0.0,60175229.97170605,0.0,91934400.8625561,0.0,7453.058558288884,7336.37953619217,7345.833210033248,8842.769478674252,480124736.36217579,0.0,35233267.594637479,62010550.96656194 + 12/28 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,102206573.87680616,0.0,118986377.17529474,0.0,62859548.177758637,0.0,94997309.94698948,0.0,4968.705705525923,4890.919690794782,4897.222140022165,5895.179652449501,453397107.05650159,0.0,35233267.594637479,46507913.22492146 + 12/29 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,109743348.4056345,0.0,126330576.13515908,0.0,70489681.29930346,0.0,104069152.02024879,0.0,2483.4298442149954,2444.55128672043,2447.701340563532,2946.494711815991,447792595.7202797,0.0,21139960.556782485,23253956.61246073 + 12/29 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,66683152.35158813,0.0,81579424.97630926,0.0,33470363.655047563,0.0,56507104.79438105,0.0,1240.7864615845365,1221.3617180599447,1222.935567295464,1472.1457729390186,256806072.0488903,0.0,14093307.03785499,0.0 + 12/29 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,94773065.73660985,0.0,109751140.75157881,0.0,58121302.713891867,0.0,88689109.16904223,0.0,1239.8507614863807,1220.4406665213804,1222.0133288879825,1471.0356004904257,369886643.6577129,0.0,14093307.03785499,0.0 + 12/29 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97085925.60418765,0.0,111647382.96540676,0.0,61192639.09309125,0.0,91556779.5949269,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,379992105.0241835,0.0,14093307.03785499,0.0 + 12/29 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,98381284.62660805,0.0,112751015.98875679,0.0,62740572.9003533,0.0,93076656.86403063,0.0,1237.00058424942,1217.6351093407644,1219.2041564605816,1467.6539739967255,385458908.14631977,0.0,14093307.03785499,0.0 + 12/29 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,99019652.881653,0.0,113224535.5596419,0.0,63751710.21676332,0.0,93981429.12925151,0.0,1235.551490682861,1216.2087016043179,1217.7759106521765,1465.9346797953054,388465022.6051545,0.0,14093307.03785499,0.0 + 12/29 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97084147.77430254,0.0,111313911.11134334,0.0,61788555.02792728,0.0,91519908.67151504,0.0,1234.0865602088448,1214.766704890155,1216.3320557780658,1464.196595707719,380172297.4847934,0.0,14093307.03785499,15502637.741640486 + 12/29 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,103126091.80837469,0.0,119206986.07010517,0.0,66067179.210256699,0.0,97331457.61042911,0.0,1232.1089032348303,1212.8200085050003,1214.3828508759237,1461.8501811998588,404167897.69690188,0.0,56373228.15141996,38756594.35410121 + 12/29 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,108491770.5886032,0.0,130590208.50424366,0.0,76867821.35440207,0.0,110396738.98901718,0.0,4899.886323888015,4823.177689414658,4829.39284615898,5813.528083133421,499664085.2296083,0.0,56373228.15141996,38756594.35410121 + 12/29 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92516949.63245276,0.0,127683572.23297534,0.0,80011647.15323016,0.0,113318850.01033493,0.0,7349.829485832022,7234.766534121985,7244.089269238471,8720.292124700132,523507337.71900656,0.0,28186614.07570998,0.0 + 12/29 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,59760167.552590917,0.0,120669129.68267754,0.0,76504819.01736345,0.0,108732583.30939432,0.0,7359.172975059533,7243.963749282613,7253.298335949574,8731.377818005663,475782825.9238968,0.0,28186614.07570998,0.0 + 12/29 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,33909628.341651517,0.0,120534147.10723505,0.0,76734971.52496416,0.0,108711479.64440719,0.0,4926.4406420049549,4849.316294727773,4855.565133732954,5845.033767938531,413605107.636513,0.0,28186614.07570998,0.0 + 12/29 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,22321401.55569905,0.0,115177293.62612063,0.0,73395198.8186439,0.0,98940678.31109542,0.0,4940.259735848329,4862.91904807908,4869.185415620358,5861.429595276453,383756229.97292616,0.0,28186614.07570998,0.0 + 12/29 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,19327639.036013567,0.0,104619323.48178809,0.0,67350978.27671874,0.0,92000377.93231166,0.0,7407.459733453581,7291.4945694661159,7300.890404446253,8788.668213621317,394136965.24238619,0.0,28186614.07570998,0.0 + 12/29 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,27932115.22046958,0.0,101655303.00450179,0.0,62623269.88953922,0.0,88570538.52748382,0.0,9872.692481670758,9718.13363912124,9730.656446224526,11713.572765661753,428507425.83963617,0.0,28186614.07570998,0.0 + 12/29 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,52686526.86283835,0.0,107063554.54876858,0.0,63230203.44178653,0.0,91774299.81685764,0.0,12350.649339620823,12157.2976201977,12172.963539050896,14653.573988191134,499558728.8236691,0.0,28186614.07570998,0.0 + 12/29 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,92465713.44327082,0.0,125606190.377295,0.0,73593442.25631257,0.0,106428634.03946683,0.0,14736.852235625598,14506.144064719809,14524.836711958547,17484.71263733648,618603144.4550507,0.0,35233267.594637479,0.0 + 12/29 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100586087.03618086,0.0,131473940.62215314,0.0,78254994.55810541,0.0,112486651.07620877,0.0,17156.89259921347,16888.29824495763,16910.060540999028,20355.998150113617,679522171.6196697,0.0,14093307.03785499,0.0 + 12/29 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,91945481.80264722,0.0,120979533.6448648,0.0,67457863.98503722,0.0,99567748.28740704,0.0,9795.593402218248,9642.241560140379,9654.666572553755,11622.097650944144,526523184.7890398,0.0,63419881.67034747,0.0 + 12/29 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,78362133.39371969,0.0,105553741.57242258,0.0,52818545.36665376,0.0,81545973.19237127,0.0,7362.267434095637,7247.0097639852369,7256.348275753042,8735.049275529238,428442822.6228747,0.0,63419881.67034747,69761869.8373822 + 12/29 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,82872168.85196215,0.0,108893100.29357749,0.0,55976349.011183049,0.0,85476807.25129172,0.0,4893.597637998293,4816.987454075693,4823.194634069957,5806.066797379164,406441872.89269766,0.0,49326574.63249246,69761869.8373822 + 12/29 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,88642962.56779082,0.0,113826552.34794489,0.0,60125902.02781743,0.0,90781755.65784073,0.0,4882.985320887614,4806.541274769107,4812.734993795116,5793.475688224392,426441826.80102828,0.0,35233267.594637479,69761869.8373822 + 12/29 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99378179.12841897,0.0,124481630.05138912,0.0,67593020.4222237,0.0,100905670.73542217,0.0,4799.601466449,4724.462810126971,4730.5507626737139,5694.543927890379,464175472.6191582,0.0,35233267.594637479,62010550.96656194 + 12/29 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,102398860.18286039,0.0,126495564.82981901,0.0,69964593.87238473,0.0,103609945.7774895,0.0,4870.037246761898,4793.795905159291,4799.973200475663,5778.113292532606,475339875.38429978,0.0,35233267.594637479,46507913.22492146 + 12/30 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,108758605.45162165,0.0,131726033.7607411,0.0,76269901.19267109,0.0,110866518.33088877,0.0,2428.430357940515,2390.4128276637204,2393.49311857653,2881.23992081078,463957933.14589217,0.0,21139960.556782485,23253956.61246073 + 12/30 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,65159373.096147958,0.0,85868576.85391408,0.0,37248263.298318568,0.0,61432766.95658617,0.0,1220.7463302219035,1201.6353186922768,1203.183748448779,1448.368922056098,267975143.7548754,0.0,14093307.03785499,0.0 + 12/30 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,96499533.6213969,0.0,117157799.48757848,0.0,64942360.76807635,0.0,96970937.28855834,0.0,1209.1693851286887,1190.2396128341734,1191.7733580605419,1434.633318622161,393663567.59433409,0.0,14093307.03785499,0.0 + 12/30 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,100223768.20282004,0.0,120309591.28446588,0.0,68378127.81173778,0.0,100648745.3179359,0.0,1212.5470496072624,1193.5643993452323,1195.102428898374,1438.6407885926088,407703709.4161562,0.0,14093307.03785499,0.0 + 12/30 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97514998.06992196,0.0,116938613.61117675,0.0,66399049.968607667,0.0,97609909.83148314,0.0,1226.0114129103463,1206.8179755290319,1208.373083667851,1454.6157416853735,396807517.0508429,0.0,14093307.03785499,0.0 + 12/30 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,97338263.54120797,0.0,116091191.53721571,0.0,66322078.48577502,0.0,97124931.70497515,0.0,1222.8720594892826,1203.7277692714206,1205.2788953640659,1450.8910186877686,395174436.34329906,0.0,14093307.03785499,0.0 + 12/30 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,95989723.84201914,0.0,114427315.87733995,0.0,64321738.391622807,0.0,94704070.74472592,0.0,4895.70046577463,4819.057361690909,4825.2672089724069,5808.561722265917,442697761.1870418,0.0,14093307.03785499,15502637.741640486 + 12/30 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,102433025.5095517,0.0,124834712.0773369,0.0,69984537.95763913,0.0,102770926.13052036,0.0,19382.836156700516,19079.394240802856,19103.979987675415,22996.995211582715,690050741.8233895,0.0,56373228.15141996,38756594.35410121 + 12/30 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,92501111.84951577,0.0,131294198.55248766,0.0,76783632.90064457,0.0,111089613.40528044,0.0,17037.499154853813,16770.773927242244,16792.384781204808,20214.34238590884,666602557.6050834,0.0,56373228.15141996,38756594.35410121 + 12/30 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,80353094.92689973,0.0,129068747.40057679,0.0,80232918.77553235,0.0,114196682.15526586,0.0,12270.44572349273,12078.349606642061,12093.913792921734,14558.415459215395,587455491.7544537,0.0,28186614.07570998,0.0 + 12/30 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85728930.86597234,0.0,125119932.25834243,0.0,78716491.86579809,0.0,111880008.23230618,0.0,9860.847354664287,9706.473949787762,9718.981732191263,11699.51897462487,548994322.4629845,0.0,28186614.07570998,0.0 + 12/30 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,83816213.1697083,0.0,116975184.42494229,0.0,74216560.74730525,0.0,105681591.63025993,0.0,4963.145846338146,4885.446872239779,4891.742269181856,5888.583091756075,454953655.0584728,0.0,28186614.07570998,0.0 + 12/30 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,78021968.67651342,0.0,111081570.22685017,0.0,70125202.66502823,0.0,99242256.75878515,0.0,4988.526712932095,4910.430396632404,4916.757987395676,5918.696521122557,433114880.1522747,0.0,28186614.07570998,0.0 + 12/30 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,79378432.0290908,0.0,110729985.46971837,0.0,68566026.035849,0.0,97781116.87147741,0.0,4992.03391873342,4913.882696472642,4920.214735876626,5922.857686927554,431151920.94297239,0.0,28186614.07570998,0.0 + 12/30 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,92534109.70954594,0.0,116360174.32009322,0.0,69761121.26161272,0.0,100736527.69072631,0.0,7501.005147459466,7383.575512564858,7393.090003238685,8899.656276491321,491630309.9650938,0.0,28186614.07570998,0.0 + 12/30 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,91459877.27080912,0.0,116801812.15421808,0.0,68989014.56891203,0.0,100170071.13555561,0.0,12505.936503042345,12310.153734107065,12326.016623664735,14837.816279915323,564548498.436121,0.0,28186614.07570998,0.0 + 12/30 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,99847184.98183048,0.0,120993399.89446727,0.0,70281448.31999995,0.0,102394567.702043,0.0,12514.401856893533,12318.486561264504,12334.36018852048,14847.860099117339,580770992.2392058,0.0,35233267.594637479,0.0 + 12/30 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,103357576.94939405,0.0,123583213.37710393,0.0,72709562.71501597,0.0,105363635.11251414,0.0,17526.048221138157,17251.674666755174,17273.905210405115,20793.987203990862,667258203.2422695,0.0,14093307.03785499,0.0 + 12/30 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,89839490.81013376,0.0,109425108.4739664,0.0,58568827.201596427,0.0,88252177.62694325,0.0,17531.907016435856,17257.441741519524,17279.67971663394,20800.938440967617,608417485.0086448,0.0,63419881.67034747,0.0 + 12/30 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,75898156.30409757,0.0,94958107.04912359,0.0,44078300.96296104,0.0,70704619.93381912,0.0,10028.183933897148,9871.190843656124,9883.910880589678,11898.057438254737,435692019.39703306,0.0,63419881.67034747,69761869.8373822 + 12/30 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,79742457.35171619,0.0,98290754.41664988,0.0,47060398.85088048,0.0,74440241.57349479,0.0,10011.521485514828,9854.789249011606,9867.488150816383,11878.28807929387,449337365.2654334,0.0,49326574.63249246,69761869.8373822 + 12/30 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,82430899.52708632,0.0,100331275.80970335,0.0,49418444.64923677,0.0,77201099.77651379,0.0,5014.091966948574,4935.595421828062,4941.955440294839,5949.028719127368,384408137.33605608,0.0,35233267.594637479,69761869.8373822 + 12/30 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,84250535.12240725,0.0,101766830.4438285,0.0,50834352.75215784,0.0,78940001.83334938,0.0,5012.441115387373,4933.970414656019,4940.328339135193,5947.070046766882,390793435.84914669,0.0,35233267.594637479,62010550.96656194 + 12/30 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,88432336.70945703,0.0,105790312.9619232,0.0,54371496.43689199,0.0,83398121.24316134,0.0,2506.2205576936869,2466.9852073280096,2470.1641695675969,2973.535023383441,369493125.2001354,0.0,35233267.594637479,46507913.22492146 + 12/31 01:00:00,1554.0850597581296,1529.756287377495,1531.7274463647953,1843.8635988497827,1412.804599780118,1390.687533979541,1392.4794966952684,1676.2396353179846,96527915.07421062,0.0,113414830.93207374,0.0,62128443.02592911,0.0,92690625.29165043,0.0,2506.2205576936869,2466.9852073280096,2470.1641695675969,2973.535023383441,402262672.1725657,0.0,21139960.556782485,23253956.61246073 + 12/31 02:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,53862410.40654743,0.0,69048408.166308,0.0,25006298.795600155,0.0,44252859.04138308,0.0,1254.3426172538225,1234.70564958333,1236.2966938366035,1488.2296341703523,210938844.95127744,0.0,14093307.03785499,0.0 + 12/31 03:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79577563.62258183,0.0,94224810.99800043,0.0,48296618.07000303,0.0,74692939.19582671,0.0,1256.7548102487013,1237.0800792468797,1238.6741831951279,1491.0916090797087,315596894.3407855,0.0,14093307.03785499,0.0 + 12/31 04:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79311649.59001288,0.0,93138773.35668949,0.0,49158675.504982609,0.0,75028654.39480064,0.0,1258.3237280950187,1238.6244353916318,1240.2205294004016,1492.9530702150883,315466191.1936533,0.0,14093307.03785499,0.0 + 12/31 05:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,79238888.59044726,0.0,92687048.34122384,0.0,49655544.46443768,0.0,75104027.25289314,0.0,1259.0963329965785,1239.3849450193282,1240.982019022377,1493.8697364386467,315525507.5695188,0.0,14093307.03785499,0.0 + 12/31 06:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,82956000.47940631,0.0,96985375.24309054,0.0,51418166.90367469,0.0,78067920.63734508,0.0,1261.3663766959397,1241.6194507610997,1243.2194041528679,1496.5630566350436,328301429.10119846,0.0,14093307.03785499,0.0 + 12/31 07:00:00,1036.05670650542,1019.83752491833,1021.1516309098636,1229.2423992331888,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78070561.71437845,0.0,91382642.562027,0.0,47565237.1110591,0.0,72630655.09931873,0.0,5046.950850158578,4967.939893091595,4974.3415907109269,5988.014529755355,365167185.1961625,0.0,14093307.03785499,15502637.741640486 + 12/31 08:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,84302575.87630706,0.0,99157992.67597138,0.0,51017547.84209379,0.0,77785599.36338246,0.0,20211.246580506093,19894.835744883945,19920.472271364895,23979.8725570581,614686853.5114817,0.0,56373228.15141996,38756594.35410121 + 12/31 09:00:00,2590.1417662635496,2549.593812295825,2552.879077274659,3073.1059980829716,3767.4789327469818,3708.5000906121097,3713.2786578540496,4469.972360847959,94863447.44737832,0.0,111697100.12031846,0.0,62100079.00285174,0.0,91648489.50773491,0.0,17704.89994844552,17427.72643690678,17450.183841231796,21006.1879512509,625229509.5184895,0.0,56373228.15141996,38756594.35410121 + 12/31 10:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,98512822.0070907,0.0,114594569.60403897,0.0,68588633.72204232,0.0,98726813.61563772,0.0,12674.03236133594,12475.618020380824,12491.694127559944,15037.255599167287,570065799.3392081,0.0,28186614.07570998,0.0 + 12/31 11:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,97838330.43823993,0.0,112578917.74573286,0.0,66590786.408598829,0.0,96421932.72755212,0.0,10155.137858614566,9996.157280998861,10009.038349941988,12048.683423802719,525382428.208213,0.0,28186614.07570998,0.0 + 12/31 12:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86720209.81044163,0.0,104214907.6313559,0.0,62247335.256783869,0.0,90386885.78165828,0.0,5086.471378568639,5006.841720256849,5013.2935468511109,6034.904128122579,419678777.2659167,0.0,28186614.07570998,0.0 + 12/31 13:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,84474446.78093085,0.0,101910751.23515152,0.0,60599707.65894867,0.0,87932108.50822957,0.0,5088.9393103030529,5009.271016059568,5015.725973049424,6037.832234918715,411063380.9068513,0.0,28186614.07570998,0.0 + 12/31 14:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,86860308.3761107,0.0,102335788.40964403,0.0,59935616.08148889,0.0,87498153.43786504,0.0,5094.961120417984,5015.198553613783,5021.661148840788,6044.976882753457,412866338.0453623,0.0,28186614.07570998,0.0 + 12/31 15:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,85826370.74766463,0.0,101464546.12212409,0.0,58857620.532602857,0.0,86202986.60507658,0.0,7647.708369247359,7527.9820680482039,7537.682641308041,9073.714049136406,446785037.66733226,0.0,28186614.07570998,0.0 + 12/31 16:00:00,0.0,0.0,0.0,0.0,1883.7394663734909,1854.2500453060548,1856.6393289270248,2234.9861804239797,88063928.87503772,0.0,102890581.81481953,0.0,58879422.88511861,0.0,86489945.8236323,0.0,12754.766324342754,12555.088078135861,12571.266590595738,15133.043364470044,527174871.085768,0.0,28186614.07570998,0.0 + 12/31 17:00:00,0.0,0.0,0.0,0.0,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,84841693.21299942,0.0,97302413.02599658,0.0,55082713.95086543,0.0,80914342.75253558,0.0,12797.282462173336,12596.938617897327,12613.171059049284,15183.487139065275,509628328.34386387,0.0,35233267.594637479,0.0 + 12/31 18:00:00,0.0,0.0,0.0,0.0,941.8697331867454,927.1250226530274,928.3196644635124,1117.4930902119898,78276173.71822599,0.0,89055737.79916269,0.0,51782022.281936828,0.0,75145666.98771906,0.0,17979.58052612955,17698.106838905558,17720.912655975702,21332.08597147075,563290070.3599782,0.0,14093307.03785499,0.0 + 12/31 19:00:00,0.0,0.0,0.0,0.0,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,65404523.71838858,0.0,77169732.11792813,0.0,37373994.94408996,0.0,58789021.09365004,0.0,17985.236939898612,17703.674700461863,17726.48769228992,21338.797090489155,507852378.99735906,0.0,63419881.67034747,0.0 + 12/31 20:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,4238.413799340355,4172.062601938624,4177.438490085806,5028.718905953954,47882575.116969238,0.0,59346693.5459217,0.0,21319851.942945795,0.0,38738455.03138003,0.0,10278.867606853391,10117.950016947245,10130.988028261769,12195.484047033235,321091418.5539611,0.0,63419881.67034747,69761869.8373822 + 12/31 21:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,3296.5440661536088,3244.937579285596,3249.118825622293,3911.2258157419639,45523952.22084032,0.0,55766140.90625473,0.0,21216976.118446866,0.0,37371916.75603523,0.0,10281.992716094312,10121.02620202001,10134.06817731298,12199.191869854832,313729590.2765928,0.0,49326574.63249246,69761869.8373822 + 12/31 22:00:00,4662.255179274389,4589.268862132485,4595.182339094386,5531.590796549349,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50924186.97795059,0.0,62067387.20616983,0.0,24511315.76780682,0.0,42592224.59751489,0.0,5144.746060404829,5064.204101077763,5070.729844954568,6104.044813639857,257076523.9017194,0.0,35233267.594637479,69761869.8373822 + 12/31 23:00:00,4144.22682602168,4079.35009967332,4084.6065236394545,4916.969596932755,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,50785716.4566803,0.0,61943538.40238796,0.0,24406120.711493426,0.0,42539325.966238629,0.0,5152.203810950011,5071.545099146917,5078.080302649014,6112.8931499818759,256767702.04262049,0.0,35233267.594637479,62010550.96656194 + 12/31 24:00:00,3108.170119516259,3059.51257475499,3063.4548927295907,3687.7271976995655,2354.6743329668636,2317.8125566325686,2320.799161158781,2793.7327255299744,49112712.79171557,0.0,59559041.50299226,0.0,24204061.3470089,0.0,41570117.3334157,0.0,2580.303349104235,2539.908218818894,2543.1811498018848,3061.431427478056,213055299.89786346,0.0,35233267.594637479,46507913.22492146 -- 2.39.2 From 57c7a765299046f53c4a765cb3b915c8e866b438 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 6 Dec 2023 13:53:31 -0500 Subject: [PATCH 089/101] The ep results importer for multiple buildings is completed --- hub/imports/results/ep_multiple_buildings.py | 14 ++++++++++++++ tests/test_results_import.py | 6 ------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/hub/imports/results/ep_multiple_buildings.py b/hub/imports/results/ep_multiple_buildings.py index 73d3599f..9da12c7a 100644 --- a/hub/imports/results/ep_multiple_buildings.py +++ b/hub/imports/results/ep_multiple_buildings.py @@ -62,4 +62,18 @@ class EnergyPlusMultipleBuildings: building.cooling_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} Cooling Demand (J)'] building.domestic_hot_water_heat_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} DHW Demand (W)'] building.appliances_electrical_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} Appliances (W)'] + building.lighting_electrical_demand[cte.HOUR] = building_energy_demands[f'Building {building.name} Lighting (W)'] + building.heating_demand[cte.MONTH] = MonthlyValues.get_total_month(building.heating_demand[cte.HOUR]) + building.cooling_demand[cte.MONTH] = MonthlyValues.get_total_month(building.cooling_demand[cte.HOUR]) + building.domestic_hot_water_heat_demand[cte.MONTH] = ( + MonthlyValues.get_total_month(building.domestic_hot_water_heat_demand[cte.HOUR])) + building.appliances_electrical_demand[cte.MONTH] = ( + MonthlyValues.get_total_month(building.appliances_electrical_demand[cte.HOUR])) + building.lighting_electrical_demand[cte.MONTH] = ( + MonthlyValues.get_total_month(building.lighting_electrical_demand[cte.HOUR])) + building.heating_demand[cte.YEAR] = [sum(building.heating_demand[cte.MONTH])] + building.cooling_demand[cte.YEAR] = [sum(building.cooling_demand[cte.MONTH])] + building.domestic_hot_water_heat_demand[cte.YEAR] = [sum(building.domestic_hot_water_heat_demand[cte.MONTH])] + building.appliances_electrical_demand[cte.YEAR] = [sum(building.appliances_electrical_demand[cte.MONTH])] + building.lighting_electrical_demand[cte.YEAR] = [sum(building.lighting_electrical_demand[cte.MONTH])] diff --git a/tests/test_results_import.py b/tests/test_results_import.py index bb80c4ec..4e2bc912 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -131,9 +131,3 @@ class TestResultsImport(TestCase): self.assertAlmostEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) total_demand = sum(building.heating_demand[cte.MONTH]) self.assertEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) - # if building.name != '12': - # self.assertDictEqual(building.heating_demand, {}) - # self.assertDictEqual(building.cooling_demand, {}) - # self.assertDictEqual(building.domestic_hot_water_heat_demand, {}) - # self.assertDictEqual(building.lighting_electrical_demand, {}) - # self.assertDictEqual(building.appliances_electrical_demand, {}) \ No newline at end of file -- 2.39.2 From 11f78ccb89a59222d9ae1d0b22b29b76d50506f7 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 10 Jan 2024 16:10:42 -0500 Subject: [PATCH 090/101] added storage_medium attribute to thermal_storage_system.py to enable us use water thermodynamic characteristics in the modelling --- .../energy_systems/thermal_storage_system.py | 23 +++++++-- .../north_america_energy_system_catalog.py | 48 +++++++++++++++++-- .../energy_systems/north_america_systems.xml | 2 +- 3 files changed, 66 insertions(+), 7 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index db10840b..9c54b4c1 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -8,7 +8,7 @@ Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca from hub.catalog_factories.data_models.energy_systems.energy_storage_system import EnergyStorageSystem from hub.catalog_factories.data_models.construction.layer import Layer - +from hub.catalog_factories.data_models.construction.material import Material class ThermalStorageSystem(EnergyStorageSystem): """" @@ -17,7 +17,7 @@ class ThermalStorageSystem(EnergyStorageSystem): def __init__(self, storage_id, model_name=None, manufacturer=None, storage_type=None, nominal_capacity=None, losses_ratio=None, volume=None, height=None, layers=None, - maximum_operating_temperature=None): + maximum_operating_temperature=None, storage_medium=None): super().__init__(storage_id, model_name, manufacturer, nominal_capacity, losses_ratio) self._type_energy_stored = 'thermal' @@ -26,6 +26,7 @@ class ThermalStorageSystem(EnergyStorageSystem): self._height = height self._layers = layers self._maximum_operating_temperature = maximum_operating_temperature + self._storage_medium = storage_medium @property def type_energy_stored(self): @@ -75,13 +76,28 @@ class ThermalStorageSystem(EnergyStorageSystem): """ return self._maximum_operating_temperature + @property + def storage_medium(self) -> Material: + """ + Get thermodynamic characteristics of the storage medium + :return: [material + """ + return self._storage_medium + def to_dictionary(self): """Class content to dictionary""" _layers = None + # _medias = None if self.layers is not None: _layers = [] for _layer in self.layers: _layers.append(_layer.to_dictionary()) + + # if self.storage_medium is not None: + # _medias = [] + # for _media in self.storage_medium: + # _medias.append(_media.to_dictionary()) + content = { 'Storage component': { @@ -95,7 +111,8 @@ class ThermalStorageSystem(EnergyStorageSystem): 'volume [m3]': self.volume, 'height [m]': self.height, 'layers': _layers, - 'maximum operating temperature [Celsius]': self.maximum_operating_temperature + 'maximum operating temperature [Celsius]': self.maximum_operating_temperature, + 'storage_medium': self.storage_medium.to_dictionary() } } return content diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 3e6c649a..41573149 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -28,7 +28,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): def __init__(self, path): path = str(path / 'north_america_systems.xml') with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read(), force_list=['photovoltaicModules', 'templateStorages', 'demand']) + self._archetypes = xmltodict.parse(xml.read(), + force_list=['photovoltaicModules', 'templateStorages', 'demand', 'medias']) self._storage_components = self._load_storage_components() self._generation_components = self._load_generation_components() @@ -208,6 +209,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'tank', tank_material, thickness) + medias = self._load_medias() + media_id = tes['medium']['@media_id'] + medium = self._search_medias(medias, media_id) # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = ThermalStorageSystem(storage_id, @@ -219,7 +223,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): volume, height, layers, - maximum_operating_temperature) + maximum_operating_temperature, + medium) storage_components.append(storage_component) for template in template_storages: @@ -238,6 +243,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): tank_layer = Layer(None, 'tank', tank_material, thickness) # the convention is from outside to inside layers = [insulation_layer, tank_layer] + medias = self._load_medias() + media_id = template['medium']['@media_id'] + medium = self._search_medias(medias, media_id) storage_component = ThermalStorageSystem(storage_id, None, None, @@ -247,7 +255,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): None, height, layers, - maximum_temperature) + maximum_temperature, + medium) storage_components.append(storage_component) return storage_components @@ -316,6 +325,39 @@ class NorthAmericaEnergySystemCatalog(Catalog): raise ValueError(f'Material with the id = [{material_id}] not found in catalog ') return _material + def _load_medias(self): + medias = [] + _medias = self._archetypes['EnergySystemCatalog']['medias'] + for _media in _medias: + media_id = _media['media']['@media_id'] + name = _media['media']['@media_name'] + density = _media['media']['@density'] + thermal_conductivity = _media['media']['@thermalConductivity'] + specific_heat = _media['media']['@heatCapacity'] + media = Material(media_id, + name, + None, + None, + None, + False, + None, + thermal_conductivity, + density, + specific_heat) + medias.append(media) + return medias + + @staticmethod + def _search_medias(medias, media_id): + _media = None + for media in medias: + if int(media.id) == int(media_id): + _media = media + break + if _media is None: + raise ValueError(f'media with the id = [{media_id}] not found in catalog ') + return _media + @staticmethod def _search_generation_equipment(generation_systems, generation_id): _generation_systems = [] diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index ce575841..eaa4c29a 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -2,7 +2,7 @@ ./schemas/ - + -- 2.39.2 From 673cbac77a5cc63232fc2a27fd657088949328d7 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 17 Jan 2024 13:05:10 -0500 Subject: [PATCH 091/101] added storage_medium attribute to thermal_storage_system.py to enable us use water thermodynamic characteristics in the modelling --- .../energy_systems/thermal_storage_system.py | 8 +-- .../north_america_energy_system_catalog.py | 72 +++++++++---------- .../energy_systems/north_america_systems.xml | 18 ++--- 3 files changed, 48 insertions(+), 50 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index 9c54b4c1..6c5382d7 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -87,16 +87,14 @@ class ThermalStorageSystem(EnergyStorageSystem): def to_dictionary(self): """Class content to dictionary""" _layers = None - # _medias = None + _medias = None if self.layers is not None: _layers = [] for _layer in self.layers: _layers.append(_layer.to_dictionary()) - # if self.storage_medium is not None: - # _medias = [] - # for _media in self.storage_medium: - # _medias.append(_media.to_dictionary()) + if self.storage_medium is not None: + _medias = self.storage_medium.to_dictionary() content = { 'Storage component': diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 41573149..6ba78dfb 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -29,7 +29,7 @@ class NorthAmericaEnergySystemCatalog(Catalog): path = str(path / 'north_america_systems.xml') with open(path, 'r', encoding='utf-8') as xml: self._archetypes = xmltodict.parse(xml.read(), - force_list=['photovoltaicModules', 'templateStorages', 'demand', 'medias']) + force_list=['photovoltaicModules', 'templateStorages', 'demand']) self._storage_components = self._load_storage_components() self._generation_components = self._load_generation_components() @@ -209,9 +209,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): insulation_layer = Layer(None, 'insulation', insulation_material, thickness) thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m tank_layer = Layer(None, 'tank', tank_material, thickness) - medias = self._load_medias() - media_id = tes['medium']['@media_id'] - medium = self._search_medias(medias, media_id) + media = self._load_media() + media_id = tes['medium']['@medium_id'] + medium = self._search_media(media, media_id) # the convention is from outside to inside layers = [insulation_layer, tank_layer] storage_component = ThermalStorageSystem(storage_id, @@ -243,9 +243,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): tank_layer = Layer(None, 'tank', tank_material, thickness) # the convention is from outside to inside layers = [insulation_layer, tank_layer] - medias = self._load_medias() - media_id = template['medium']['@media_id'] - medium = self._search_medias(medias, media_id) + media = self._load_media() + media_id = template['medium']['@medium_id'] + medium = self._search_media(media, media_id) storage_component = ThermalStorageSystem(storage_id, None, None, @@ -325,38 +325,38 @@ class NorthAmericaEnergySystemCatalog(Catalog): raise ValueError(f'Material with the id = [{material_id}] not found in catalog ') return _material - def _load_medias(self): - medias = [] - _medias = self._archetypes['EnergySystemCatalog']['medias'] - for _media in _medias: - media_id = _media['media']['@media_id'] - name = _media['media']['@media_name'] - density = _media['media']['@density'] - thermal_conductivity = _media['media']['@thermalConductivity'] - specific_heat = _media['media']['@heatCapacity'] - media = Material(media_id, - name, - None, - None, - None, - False, - None, - thermal_conductivity, - density, - specific_heat) - medias.append(media) - return medias + def _load_media(self): + media = [] + _media = [self._archetypes['EnergySystemCatalog']['media']['medium']] + for _medium in _media: + medium_id = _medium['@medium_id'] + name = _medium['@medium_name'] + density = _medium['@density'] + thermal_conductivity = _medium['@thermalConductivity'] + specific_heat = _medium['@heatCapacity'] + medium = Material(medium_id, + name, + None, + None, + None, + False, + None, + thermal_conductivity, + density, + specific_heat) + media.append(medium) + return media @staticmethod - def _search_medias(medias, media_id): - _media = None - for media in medias: - if int(media.id) == int(media_id): - _media = media + def _search_media(media, medium_id): + _medium = None + for medium in media: + if int(medium.id) == int(medium_id): + _medium = medium break - if _media is None: - raise ValueError(f'media with the id = [{media_id}] not found in catalog ') - return _media + if _medium is None: + raise ValueError(f'media with the id = [{medium_id}] not found in catalog ') + return _medium @staticmethod def _search_generation_equipment(generation_systems, generation_id): diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index eaa4c29a..f7c9eb3a 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -1,9 +1,9 @@ ./schemas/ - - - + + + @@ -73,32 +73,32 @@ - + - + - + - + - + - + -- 2.39.2 From f976040f45ecd350b03c6a74ab0124b624b456bb Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 1 Feb 2024 12:23:58 -0500 Subject: [PATCH 092/101] A new attribute "dual_supply_capability" is added to NonPVGeneration class in non_pv_generation_system.py and the catalogue importer is adjusted --- .../non_pv_generation_system.py | 14 +++++++++++-- .../north_america_energy_system_catalog.py | 20 +++++++++++++++---- .../energy_systems/north_america_systems.xml | 18 ++++++++--------- 3 files changed, 37 insertions(+), 15 deletions(-) diff --git a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py index a33490d4..5b203d01 100644 --- a/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/non_pv_generation_system.py @@ -25,7 +25,7 @@ class NonPvGenerationSystem(GenerationSystem): maximum_cooling_supply_temperature=None, minimum_cooling_supply_temperature=None, heat_output_curve=None, heat_fuel_consumption_curve=None, heat_efficiency_curve=None, cooling_output_curve=None, cooling_fuel_consumption_curve=None, cooling_efficiency_curve=None, - distribution_systems=None, energy_storage_systems=None): + distribution_systems=None, energy_storage_systems=None, dual_supply_capability=False): super().__init__(system_id=system_id, name=name, model_name=model_name, manufacturer=manufacturer, fuel_type=fuel_type, distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) self._system_type = system_type @@ -53,6 +53,7 @@ class NonPvGenerationSystem(GenerationSystem): self._cooling_output_curve = cooling_output_curve self._cooling_fuel_consumption_curve = cooling_fuel_consumption_curve self._cooling_efficiency_curve = cooling_efficiency_curve + self._dual_supply_capability = dual_supply_capability @property def system_type(self): @@ -254,6 +255,14 @@ class NonPvGenerationSystem(GenerationSystem): """ return self._cooling_efficiency_curve + @property + def dual_supply_capability(self): + """ + Get dual supply capability + :return: bool + """ + return self._dual_supply_capability + def to_dictionary(self): """Class content to dictionary""" _distribution_systems = [_distribution_system.to_dictionary() for _distribution_system in @@ -294,7 +303,8 @@ class NonPvGenerationSystem(GenerationSystem): 'cooling fuel consumption curve': self.cooling_fuel_consumption_curve, 'cooling efficiency curve': self.cooling_efficiency_curve, 'distribution systems connected': _distribution_systems, - 'storage systems connected': _energy_storage_systems + 'storage systems connected': _energy_storage_systems, + 'dual supply capability': self.dual_supply_capability } } return content diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py index 6ba78dfb..fed83211 100644 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py @@ -56,6 +56,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): boiler_maximum_heat_output = float(boiler['@maximumHeatOutput']) boiler_minimum_heat_output = float(boiler['@minimumHeatOutput']) boiler_heat_efficiency = float(boiler['@nominalEfficiency']) + dual_supply = False + if '@dual_supply' in boiler.keys() and boiler['@dual_supply'] == 'True': + dual_supply = True boiler_component = NonPvGenerationSystem(boiler_id, name=name, system_type=system_type, @@ -65,7 +68,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): nominal_heat_output=boiler_nominal_thermal_output, maximum_heat_output=boiler_maximum_heat_output, minimum_heat_output=boiler_minimum_heat_output, - heat_efficiency=boiler_heat_efficiency) + heat_efficiency=boiler_heat_efficiency, + dual_supply_capability=dual_supply) generation_components.append(boiler_component) for heat_pump in heat_pumps: heat_pump_id = heat_pump['@generation_id'] @@ -89,6 +93,9 @@ class NorthAmericaEnergySystemCatalog(Catalog): parameters = heat_pump['performance_curve']['parameters'] coefficients = list(heat_pump['performance_curve']['coefficients'].values()) cop_curve = PerformanceCurves(cop_curve_type, dependant_variable, parameters, coefficients) + dual_supply = False + if '@dual_supply' in heat_pump.keys() and heat_pump['@dual_supply'] == 'True': + dual_supply = True heat_pump_component = NonPvGenerationSystem(heat_pump_id, name=name, @@ -106,7 +113,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): minimum_heat_supply_temperature=heat_pump_minimum_heat_supply_temperature, maximum_cooling_supply_temperature=heat_pump_maximum_cooling_supply_temperature, minimum_cooling_supply_temperature=heat_pump_minimum_cooling_supply_temperature, - heat_efficiency_curve=cop_curve) + heat_efficiency_curve=cop_curve, + dual_supply_capability=dual_supply) generation_components.append(heat_pump_component) for pv in photovoltaics: pv_id = pv['@generation_id'] @@ -143,6 +151,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): for template in templates: system_id = template['@generation_id'] system_name = template['@name'] + if '@dual_supply' in template.keys() and template['@dual_supply'] == 'True': + dual_supply = True if 'storage_id' in template.keys(): storage_component = template['storage_id'] storage_systems = self._search_storage_equipment(self._load_storage_components(), storage_component) @@ -158,7 +168,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): system_type=system_type, fuel_type=fuel_type, heat_efficiency=heat_efficiency, - energy_storage_systems=energy_storage_system) + energy_storage_systems=energy_storage_system, + dual_supply_capability=dual_supply) generation_components.append(boiler_template) elif "Heat Pump" in system_name: system_type = 'heat pump' @@ -173,7 +184,8 @@ class NorthAmericaEnergySystemCatalog(Catalog): supply_medium=supply_medium, fuel_type=fuel_type, heat_efficiency=heat_efficiency, - energy_storage_systems=energy_storage_system) + energy_storage_systems=energy_storage_system, + dual_supply_capability=dual_supply) generation_components.append(heat_pump_template) else: electricity_efficiency = float(template['@nominalEfficiency']) diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index f7c9eb3a..9ce9a4fe 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -17,7 +17,7 @@ - + COP source_temperature @@ -25,7 +25,7 @@ - + COP source_temperature @@ -33,7 +33,7 @@ - + COP source_temperature @@ -47,20 +47,20 @@ 6 - + 6 - + 6 - + 6 - - - + + + -- 2.39.2 From ac4742d2c47ffd5595237e426038e8e1d4a0ad8c Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 1 Feb 2024 12:24:15 -0500 Subject: [PATCH 093/101] A new attribute "dual_supply_capability" is added to NonPVGeneration class in non_pv_generation_system.py and the catalogue importer is adjusted --- .../energy_systems/montreal_custom_catalog.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 0c0abb88..1c6bdba5 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -84,8 +84,9 @@ class MontrealCustomCatalog(Catalog): heat_efficiency=heating_efficiency, cooling_efficiency=cooling_efficiency, electricity_efficiency=electricity_efficiency, - energy_storage_systems=storage_systems - ) + energy_storage_systems=storage_systems, + dual_supply_capability=False + ) _equipments.append(generation_system) return _equipments -- 2.39.2 From 3e193f04a63d081c58d95f340fca91d27b92a658 Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Thu, 1 Feb 2024 15:41:05 -0500 Subject: [PATCH 094/101] The dual_supply_capability is added to the city model structure --- .../non_pv_generation_system.py | 19 +++++++++++++++++++ ...america_custom_energy_system_parameters.py | 2 ++ tests/test_systems_factory.py | 3 ++- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/hub/city_model_structure/energy_systems/non_pv_generation_system.py b/hub/city_model_structure/energy_systems/non_pv_generation_system.py index 3dc044e5..fea1d7b2 100644 --- a/hub/city_model_structure/energy_systems/non_pv_generation_system.py +++ b/hub/city_model_structure/energy_systems/non_pv_generation_system.py @@ -42,6 +42,7 @@ class NonPvGenerationSystem(GenerationSystem): self._cooling_output_curve = None self._cooling_fuel_consumption_curve = None self._cooling_efficiency_curve = None + self._dual_supply_capability = None @property def nominal_heat_output(self): @@ -427,4 +428,22 @@ class NonPvGenerationSystem(GenerationSystem): """ self._cooling_efficiency_curve = value + @property + def dual_supply_capability(self): + """ + Get the capability of the generation component for simultaneous heat and cold production + + :return: bool + """ + return self._dual_supply_capability + + @dual_supply_capability.setter + def dual_supply_capability(self, value): + """ + Set the capability of the generation component for simultaneous heat and cold production + + :return: bool + """ + self._dual_supply_capability = value + diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index f898cdfa..92eb866e 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -120,6 +120,8 @@ class NorthAmericaCustomEnergySystemParameters: _generic_storage_system.type_energy_stored = 'thermal' _storage_systems.append(_generic_storage_system) _generation_system.energy_storage_systems = [_storage_systems] + if archetype_generation_system.dual_supply_capability: + _generation_system.dual_supply_capability = True _generation_systems.append(_generation_system) return _generation_systems diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index ce508b46..036048e9 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -141,4 +141,5 @@ class TestSystemsFactory(TestCase): self.assertLess(0, building.heating_consumption[cte.YEAR][0]) self.assertEqual(0, building.cooling_consumption[cte.YEAR][0]) self.assertLess(0, building.domestic_hot_water_consumption[cte.YEAR][0]) - self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) \ No newline at end of file + self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) + print('test') \ No newline at end of file -- 2.39.2 From ebaec9bb7c9a8e5cddbdf5b9722c57ffb962f22f Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Wed, 7 Feb 2024 18:54:09 -0500 Subject: [PATCH 095/101] Title: Finalizing the energy system data model and system factory A new XML file named montreal_future_systems.xml is created where the elements of the file are the same as attributes of various classes. Therefore, the catalogue importer and energy system importer should have been updated accordingly. The catalog importer is organized in a general method so whenever someone wants to create a new catalogue they can use the created code as the blueprint. --- hub/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 142 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 160 bytes .../__pycache__/catalog.cpython-39.pyc | Bin 0 -> 1360 bytes ...onstruction_catalog_factory.cpython-39.pyc | Bin 0 -> 2352 bytes ...rgy_systems_catalog_factory.cpython-39.pyc | Bin 0 -> 2521 bytes .../usage_catalog_factory.cpython-39.pyc | Bin 0 -> 2262 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 173 bytes .../construction_helper.cpython-39.pyc | Bin 0 -> 2135 bytes .../__pycache__/eilat_catalog.cpython-39.pyc | Bin 0 -> 6726 bytes .../__pycache__/nrcan_catalog.cpython-39.pyc | Bin 0 -> 6781 bytes .../__pycache__/nrel_catalog.cpython-39.pyc | Bin 0 -> 6860 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 172 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 185 bytes .../__pycache__/archetype.cpython-39.pyc | Bin 0 -> 4545 bytes .../__pycache__/construction.cpython-39.pyc | Bin 0 -> 2547 bytes .../__pycache__/content.cpython-39.pyc | Bin 0 -> 1935 bytes .../__pycache__/layer.cpython-39.pyc | Bin 0 -> 1836 bytes .../__pycache__/material.cpython-39.pyc | Bin 0 -> 3470 bytes .../__pycache__/window.cpython-39.pyc | Bin 0 -> 2248 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 187 bytes .../__pycache__/archetype.cpython-39.pyc | Bin 0 -> 1686 bytes .../__pycache__/content.cpython-39.pyc | Bin 0 -> 2056 bytes .../distribution_system.cpython-39.pyc | Bin 0 -> 5257 bytes .../electrical_storage_system.cpython-39.pyc | Bin 0 -> 3593 bytes .../emission_system.cpython-39.pyc | Bin 0 -> 1960 bytes .../energy_storage_system.cpython-39.pyc | Bin 0 -> 2526 bytes .../generation_system.cpython-39.pyc | Bin 0 -> 3319 bytes .../non_pv_generation_system.cpython-39.pyc | Bin 0 -> 10304 bytes .../performance_curves.cpython-39.pyc | Bin 0 -> 2748 bytes .../pv_generation_system.cpython-39.pyc | Bin 0 -> 5487 bytes .../__pycache__/system.cpython-39.pyc | Bin 0 -> 3195 bytes .../thermal_storage_system.cpython-39.pyc | Bin 0 -> 3810 bytes .../electrical_storage_system.py | 4 +- .../energy_systems/pv_generation_system.py | 4 +- .../energy_systems/thermal_storage_system.py | 4 +- .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 179 bytes .../__pycache__/appliances.cpython-39.pyc | Bin 0 -> 2500 bytes .../usages/__pycache__/content.cpython-39.pyc | Bin 0 -> 1407 bytes .../domestic_hot_water.cpython-39.pyc | Bin 0 -> 2393 bytes .../__pycache__/lighting.cpython-39.pyc | Bin 0 -> 2484 bytes .../__pycache__/occupancy.cpython-39.pyc | Bin 0 -> 2778 bytes .../__pycache__/schedule.cpython-39.pyc | Bin 0 -> 2779 bytes .../thermal_control.cpython-39.pyc | Bin 0 -> 3518 bytes .../usages/__pycache__/usage.cpython-39.pyc | Bin 0 -> 4346 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 175 bytes .../montreal_custom_catalog.cpython-39.pyc | Bin 0 -> 7584 bytes ...eal_future_system_catalogue.cpython-39.pyc | Bin 0 -> 14479 bytes ...erica_energy_system_catalog.cpython-39.pyc | Bin 0 -> 13483 bytes .../montreal_future_system_catalogue.py | 539 +++++++ .../energy_systems_catalog_factory.py | 8 + .../usage/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 166 bytes .../__pycache__/comnet_catalog.cpython-39.pyc | Bin 0 -> 7270 bytes .../__pycache__/eilat_catalog.cpython-39.pyc | Bin 0 -> 7229 bytes .../__pycache__/nrcan_catalog.cpython-39.pyc | Bin 0 -> 7551 bytes .../__pycache__/usage_helper.cpython-39.pyc | Bin 0 -> 4232 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 163 bytes .../__pycache__/building.cpython-39.pyc | Bin 0 -> 23721 bytes .../buildings_cluster.cpython-39.pyc | Bin 0 -> 1493 bytes .../__pycache__/city.cpython-39.pyc | Bin 0 -> 15031 bytes .../__pycache__/city_object.cpython-39.pyc | Bin 0 -> 8972 bytes .../city_objects_cluster.cpython-39.pyc | Bin 0 -> 2360 bytes .../level_of_detail.cpython-39.pyc | Bin 0 -> 3325 bytes .../parts_consisting_building.cpython-39.pyc | Bin 0 -> 1541 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 174 bytes .../__pycache__/plane.cpython-39.pyc | Bin 0 -> 2425 bytes .../__pycache__/point.cpython-39.pyc | Bin 0 -> 1321 bytes .../__pycache__/polygon.cpython-39.pyc | Bin 0 -> 11134 bytes .../__pycache__/polyhedron.cpython-39.pyc | Bin 0 -> 6422 bytes .../__pycache__/schedule.cpython-39.pyc | Bin 0 -> 3886 bytes hub/city_model_structure/building.py | 108 +- .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 179 bytes .../__pycache__/appliances.cpython-39.pyc | Bin 0 -> 3032 bytes .../__pycache__/construction.cpython-39.pyc | Bin 0 -> 3899 bytes .../domestic_hot_water.cpython-39.pyc | Bin 0 -> 2779 bytes .../__pycache__/household.cpython-39.pyc | Bin 0 -> 1180 bytes .../__pycache__/internal_gain.cpython-39.pyc | Bin 0 -> 3650 bytes .../__pycache__/internal_zone.cpython-39.pyc | Bin 0 -> 4668 bytes .../__pycache__/layer.cpython-39.pyc | Bin 0 -> 5254 bytes .../__pycache__/lighting.cpython-39.pyc | Bin 0 -> 3008 bytes .../__pycache__/occupancy.cpython-39.pyc | Bin 0 -> 3365 bytes .../__pycache__/surface.cpython-39.pyc | Bin 0 -> 11125 bytes .../thermal_archetype.cpython-39.pyc | Bin 0 -> 4095 bytes .../thermal_boundary.cpython-39.pyc | Bin 0 -> 9464 bytes .../thermal_control.cpython-39.pyc | Bin 0 -> 4876 bytes .../thermal_opening.cpython-39.pyc | Bin 0 -> 5647 bytes .../__pycache__/thermal_zone.cpython-39.pyc | Bin 0 -> 16178 bytes .../__pycache__/usage.cpython-39.pyc | Bin 0 -> 7264 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 178 bytes .../__pycache__/control_system.cpython-39.pyc | Bin 0 -> 1091 bytes .../distribution_system.cpython-39.pyc | Bin 0 -> 5572 bytes .../electrical_storage_system.cpython-39.pyc | Bin 0 -> 3258 bytes .../emission_system.cpython-39.pyc | Bin 0 -> 1898 bytes .../energy_storage_system.cpython-39.pyc | Bin 0 -> 3379 bytes .../__pycache__/energy_system.cpython-39.pyc | Bin 0 -> 4489 bytes .../generation_system.cpython-39.pyc | Bin 0 -> 4182 bytes ...generic_distribution_system.cpython-39.pyc | Bin 0 -> 3365 bytes .../generic_emission_system.cpython-39.pyc | Bin 0 -> 1265 bytes .../generic_energy_system.cpython-39.pyc | Bin 0 -> 3940 bytes .../generic_generation_system.cpython-39.pyc | Bin 0 -> 10538 bytes .../generic_storage_system.cpython-39.pyc | Bin 0 -> 2321 bytes .../non_pv_generation_system.cpython-39.pyc | Bin 0 -> 12455 bytes .../performance_curve.cpython-39.pyc | Bin 0 -> 4023 bytes .../pv_generation_system.cpython-39.pyc | Bin 0 -> 6052 bytes .../thermal_storage_system.cpython-39.pyc | Bin 0 -> 2858 bytes .../energy_systems/energy_system.py | 5 +- .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 172 bytes .../greenery/__pycache__/plant.cpython-39.pyc | Bin 0 -> 2975 bytes .../greenery/__pycache__/soil.cpython-39.pyc | Bin 0 -> 3753 bytes .../__pycache__/vegetation.cpython-39.pyc | Bin 0 -> 2439 bytes .../iot/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 167 bytes .../iot/__pycache__/sensor.cpython-39.pyc | Bin 0 -> 2244 bytes .../__pycache__/sensor_measure.cpython-39.pyc | Bin 0 -> 1471 bytes .../__pycache__/sensor_type.cpython-39.pyc | Bin 0 -> 855 bytes .../iot/__pycache__/station.cpython-39.pyc | Bin 0 -> 1501 bytes .../montreal_future_systems.xml | 1311 +++++++++++++++++ .../energy_systems/north_america_systems.xml | 2 +- .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 150 bytes ...gy_building_exports_factory.cpython-39.pyc | Bin 0 -> 3562 bytes .../exports_factory.cpython-39.pyc | Bin 0 -> 2674 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 166 bytes .../__pycache__/energy_ade.cpython-39.pyc | Bin 0 -> 11315 bytes .../__pycache__/idf.cpython-39.pyc | Bin 0 -> 24517 bytes .../insel/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 172 bytes ...nsel_monthly_energy_balance.cpython-39.pyc | Bin 0 -> 9241 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 158 bytes .../formats/__pycache__/obj.cpython-39.pyc | Bin 0 -> 3270 bytes ...plified_radiosity_algorithm.cpython-39.pyc | Bin 0 -> 4277 bytes .../formats/__pycache__/stl.cpython-39.pyc | Bin 0 -> 821 bytes .../__pycache__/triangular.cpython-39.pyc | Bin 0 -> 1449 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 150 bytes .../configuration_helper.cpython-39.pyc | Bin 0 -> 5964 bytes .../__pycache__/constants.cpython-39.pyc | Bin 0 -> 7358 bytes .../__pycache__/dictionaries.cpython-39.pyc | Bin 0 -> 8959 bytes .../geometry_helper.cpython-39.pyc | Bin 0 -> 9582 bytes .../__pycache__/location.cpython-39.pyc | Bin 0 -> 1791 bytes .../__pycache__/monthly_values.cpython-39.pyc | Bin 0 -> 1495 bytes .../__pycache__/peak_loads.cpython-39.pyc | Bin 0 -> 4068 bytes hub/helpers/__pycache__/utils.cpython-39.pyc | Bin 0 -> 1203 bytes .../data/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 155 bytes ...is_function_to_hub_function.cpython-39.pyc | Bin 0 -> 5750 bytes ...at_function_to_hub_function.cpython-39.pyc | Bin 0 -> 1195 bytes ...ft_function_to_hub_function.cpython-39.pyc | Bin 0 -> 1524 bytes ...eilat_construction_function.cpython-39.pyc | Bin 0 -> 1295 bytes ...treal_custom_costs_function.cpython-39.pyc | Bin 0 -> 2745 bytes ...nrcan_construction_function.cpython-39.pyc | Bin 0 -> 2919 bytes ..._nrel_construction_function.cpython-39.pyc | Bin 0 -> 2955 bytes .../hub_usage_to_comnet_usage.cpython-39.pyc | Bin 0 -> 3146 bytes .../hub_usage_to_eilat_usage.cpython-39.pyc | Bin 0 -> 1203 bytes .../hub_usage_to_hft_usage.cpython-39.pyc | Bin 0 -> 2926 bytes .../hub_usage_to_nrcan_usage.cpython-39.pyc | Bin 0 -> 3080 bytes ...eal_custom_fuel_to_hub_fuel.cpython-39.pyc | Bin 0 -> 1182 bytes ...e_to_hub_energy_demand_type.cpython-39.pyc | Bin 0 -> 1332 bytes ...al_function_to_hub_function.cpython-39.pyc | Bin 0 -> 9126 bytes ...ub_energy_generation_system.cpython-39.pyc | Bin 0 -> 1440 bytes ...ub_energy_generation_system.cpython-39.pyc | Bin 0 -> 2531 bytes ...ica_custom_fuel_to_hub_fuel.cpython-39.pyc | Bin 0 -> 1266 bytes ...e_to_hub_energy_demand_type.cpython-39.pyc | Bin 0 -> 1349 bytes ...orage_system_to_hub_storage.cpython-39.pyc | Bin 0 -> 1288 bytes ...ub_energy_generation_system.cpython-39.pyc | Bin 0 -> 1537 bytes ...to_function_to_hub_function.cpython-39.pyc | Bin 0 -> 3298 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 167 bytes .../loads_calculation.cpython-39.pyc | Bin 0 -> 4801 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 150 bytes .../construction_factory.cpython-39.pyc | Bin 0 -> 2527 bytes .../energy_systems_factory.cpython-39.pyc | Bin 0 -> 2789 bytes .../geometry_factory.cpython-39.pyc | Bin 0 -> 2594 bytes .../results_factory.cpython-39.pyc | Bin 0 -> 3133 bytes .../__pycache__/usage_factory.cpython-39.pyc | Bin 0 -> 2503 bytes .../weather_factory.cpython-39.pyc | Bin 0 -> 1643 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 163 bytes .../eilat_physics_parameters.cpython-39.pyc | Bin 0 -> 4268 bytes .../nrcan_physics_parameters.cpython-39.pyc | Bin 0 -> 4147 bytes .../nrel_physics_parameters.cpython-39.pyc | Bin 0 -> 4228 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 171 bytes .../construction_helper.cpython-39.pyc | Bin 0 -> 2921 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 165 bytes ...om_energy_system_parameters.cpython-39.pyc | Bin 0 -> 5364 bytes ...e_energy_systems_parameters.cpython-39.pyc | Bin 0 -> 5647 bytes ...om_energy_system_parameters.cpython-39.pyc | Bin 0 -> 5659 bytes ...ntreal_future_energy_systems_parameters.py | 161 ++ hub/imports/energy_systems_factory.py | 11 +- .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 159 bytes .../__pycache__/citygml.cpython-39.pyc | Bin 0 -> 5781 bytes .../__pycache__/geojson.cpython-39.pyc | Bin 0 -> 8355 bytes .../geometry/__pycache__/obj.cpython-39.pyc | Bin 0 -> 2576 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 175 bytes .../__pycache__/citygml_base.cpython-39.pyc | Bin 0 -> 1484 bytes .../__pycache__/citygml_lod1.cpython-39.pyc | Bin 0 -> 3040 bytes .../__pycache__/citygml_lod2.cpython-39.pyc | Bin 0 -> 3319 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 167 bytes .../geometry_helper.cpython-39.pyc | Bin 0 -> 3648 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 158 bytes .../__pycache__/energy_plus.cpython-39.pyc | Bin 0 -> 3320 bytes ...energy_plus_single_building.cpython-39.pyc | Bin 0 -> 3379 bytes .../energy_plus_workflow.cpython-39.pyc | Bin 0 -> 3325 bytes .../ep_multiple_buildings.cpython-39.pyc | Bin 0 -> 3727 bytes ...sel_monthly_energry_balance.cpython-39.pyc | Bin 0 -> 3885 bytes ...plified_radiosity_algorithm.cpython-39.pyc | Bin 0 -> 2307 bytes .../usage/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 156 bytes .../comnet_usage_parameters.cpython-39.pyc | Bin 0 -> 7097 bytes .../eilat_usage_parameters.cpython-39.pyc | Bin 0 -> 7082 bytes .../nrcan_usage_parameters.cpython-39.pyc | Bin 0 -> 6130 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 158 bytes .../epw_weather_parameters.cpython-39.pyc | Bin 0 -> 5643 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 166 bytes .../__pycache__/weather.cpython-39.pyc | Bin 0 -> 3284 bytes .../test_results_import.cpython-39.pyc | Bin 0 -> 5470 bytes .../test_systems_catalog.cpython-39.pyc | Bin 0 -> 2539 bytes .../test_systems_factory.cpython-39.pyc | Bin 0 -> 6499 bytes tests/test_systems_catalog.py | 22 + tests/test_systems_factory.py | 38 + 211 files changed, 2167 insertions(+), 50 deletions(-) create mode 100644 hub/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/__pycache__/catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/__pycache__/construction_catalog_factory.cpython-39.pyc create mode 100644 hub/catalog_factories/__pycache__/energy_systems_catalog_factory.cpython-39.pyc create mode 100644 hub/catalog_factories/__pycache__/usage_catalog_factory.cpython-39.pyc create mode 100644 hub/catalog_factories/construction/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/construction/__pycache__/construction_helper.cpython-39.pyc create mode 100644 hub/catalog_factories/construction/__pycache__/eilat_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/construction/__pycache__/nrcan_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/construction/__pycache__/nrel_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/archetype.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/construction.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/content.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/layer.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/material.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/construction/__pycache__/window.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/archetype.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/content.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/distribution_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/electrical_storage_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/emission_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/energy_storage_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/generation_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/non_pv_generation_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/performance_curves.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/pv_generation_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/energy_systems/__pycache__/thermal_storage_system.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/appliances.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/content.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/domestic_hot_water.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/lighting.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/occupancy.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/schedule.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/thermal_control.cpython-39.pyc create mode 100644 hub/catalog_factories/data_models/usages/__pycache__/usage.cpython-39.pyc create mode 100644 hub/catalog_factories/energy_systems/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/energy_systems/__pycache__/montreal_custom_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/energy_systems/__pycache__/montreal_future_system_catalogue.cpython-39.pyc create mode 100644 hub/catalog_factories/energy_systems/__pycache__/north_america_energy_system_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/energy_systems/montreal_future_system_catalogue.py create mode 100644 hub/catalog_factories/usage/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/catalog_factories/usage/__pycache__/comnet_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/usage/__pycache__/eilat_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/usage/__pycache__/nrcan_catalog.cpython-39.pyc create mode 100644 hub/catalog_factories/usage/__pycache__/usage_helper.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/building.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/buildings_cluster.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/city.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/city_object.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/city_objects_cluster.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/level_of_detail.cpython-39.pyc create mode 100644 hub/city_model_structure/__pycache__/parts_consisting_building.cpython-39.pyc create mode 100644 hub/city_model_structure/attributes/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/city_model_structure/attributes/__pycache__/plane.cpython-39.pyc create mode 100644 hub/city_model_structure/attributes/__pycache__/point.cpython-39.pyc create mode 100644 hub/city_model_structure/attributes/__pycache__/polygon.cpython-39.pyc create mode 100644 hub/city_model_structure/attributes/__pycache__/polyhedron.cpython-39.pyc create mode 100644 hub/city_model_structure/attributes/__pycache__/schedule.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/appliances.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/construction.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/domestic_hot_water.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/household.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/internal_gain.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/internal_zone.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/layer.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/lighting.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/occupancy.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/surface.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/thermal_archetype.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/thermal_boundary.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/thermal_control.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/thermal_opening.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/thermal_zone.cpython-39.pyc create mode 100644 hub/city_model_structure/building_demand/__pycache__/usage.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/control_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/distribution_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/electrical_storage_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/emission_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/energy_storage_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/energy_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/generation_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/generic_distribution_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/generic_emission_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/generic_energy_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/generic_generation_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/generic_storage_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/non_pv_generation_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/performance_curve.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/pv_generation_system.cpython-39.pyc create mode 100644 hub/city_model_structure/energy_systems/__pycache__/thermal_storage_system.cpython-39.pyc create mode 100644 hub/city_model_structure/greenery/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/city_model_structure/greenery/__pycache__/plant.cpython-39.pyc create mode 100644 hub/city_model_structure/greenery/__pycache__/soil.cpython-39.pyc create mode 100644 hub/city_model_structure/greenery/__pycache__/vegetation.cpython-39.pyc create mode 100644 hub/city_model_structure/iot/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/city_model_structure/iot/__pycache__/sensor.cpython-39.pyc create mode 100644 hub/city_model_structure/iot/__pycache__/sensor_measure.cpython-39.pyc create mode 100644 hub/city_model_structure/iot/__pycache__/sensor_type.cpython-39.pyc create mode 100644 hub/city_model_structure/iot/__pycache__/station.cpython-39.pyc create mode 100644 hub/data/energy_systems/montreal_future_systems.xml create mode 100644 hub/exports/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/exports/__pycache__/energy_building_exports_factory.cpython-39.pyc create mode 100644 hub/exports/__pycache__/exports_factory.cpython-39.pyc create mode 100644 hub/exports/building_energy/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/exports/building_energy/__pycache__/energy_ade.cpython-39.pyc create mode 100644 hub/exports/building_energy/__pycache__/idf.cpython-39.pyc create mode 100644 hub/exports/building_energy/insel/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/exports/building_energy/insel/__pycache__/insel_monthly_energy_balance.cpython-39.pyc create mode 100644 hub/exports/formats/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/exports/formats/__pycache__/obj.cpython-39.pyc create mode 100644 hub/exports/formats/__pycache__/simplified_radiosity_algorithm.cpython-39.pyc create mode 100644 hub/exports/formats/__pycache__/stl.cpython-39.pyc create mode 100644 hub/exports/formats/__pycache__/triangular.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/configuration_helper.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/constants.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/dictionaries.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/geometry_helper.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/location.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/monthly_values.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/peak_loads.cpython-39.pyc create mode 100644 hub/helpers/__pycache__/utils.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/alkis_function_to_hub_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/eilat_function_to_hub_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hft_function_to_hub_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_function_to_eilat_construction_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_function_to_montreal_custom_costs_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_function_to_nrcan_construction_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_function_to_nrel_construction_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_usage_to_comnet_usage.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_usage_to_eilat_usage.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_usage_to_hft_usage.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/hub_usage_to_nrcan_usage.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/montreal_custom_fuel_to_hub_fuel.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/montreal_demand_type_to_hub_energy_demand_type.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/montreal_function_to_hub_function.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/montreal_generation_system_to_hub_energy_generation_system.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/montreal_system_to_hub_energy_generation_system.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/north_america_custom_fuel_to_hub_fuel.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/north_america_demand_type_to_hub_energy_demand_type.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/north_america_storage_system_to_hub_storage.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/north_america_system_to_hub_energy_generation_system.cpython-39.pyc create mode 100644 hub/helpers/data/__pycache__/pluto_function_to_hub_function.cpython-39.pyc create mode 100644 hub/helpers/peak_calculation/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/helpers/peak_calculation/__pycache__/loads_calculation.cpython-39.pyc create mode 100644 hub/imports/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/__pycache__/construction_factory.cpython-39.pyc create mode 100644 hub/imports/__pycache__/energy_systems_factory.cpython-39.pyc create mode 100644 hub/imports/__pycache__/geometry_factory.cpython-39.pyc create mode 100644 hub/imports/__pycache__/results_factory.cpython-39.pyc create mode 100644 hub/imports/__pycache__/usage_factory.cpython-39.pyc create mode 100644 hub/imports/__pycache__/weather_factory.cpython-39.pyc create mode 100644 hub/imports/construction/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/construction/__pycache__/eilat_physics_parameters.cpython-39.pyc create mode 100644 hub/imports/construction/__pycache__/nrcan_physics_parameters.cpython-39.pyc create mode 100644 hub/imports/construction/__pycache__/nrel_physics_parameters.cpython-39.pyc create mode 100644 hub/imports/construction/helpers/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/construction/helpers/__pycache__/construction_helper.cpython-39.pyc create mode 100644 hub/imports/energy_systems/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/energy_systems/__pycache__/montreal_custom_energy_system_parameters.cpython-39.pyc create mode 100644 hub/imports/energy_systems/__pycache__/montreal_future_energy_systems_parameters.cpython-39.pyc create mode 100644 hub/imports/energy_systems/__pycache__/north_america_custom_energy_system_parameters.cpython-39.pyc create mode 100644 hub/imports/energy_systems/montreal_future_energy_systems_parameters.py create mode 100644 hub/imports/geometry/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/geometry/__pycache__/citygml.cpython-39.pyc create mode 100644 hub/imports/geometry/__pycache__/geojson.cpython-39.pyc create mode 100644 hub/imports/geometry/__pycache__/obj.cpython-39.pyc create mode 100644 hub/imports/geometry/citygml_classes/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/geometry/citygml_classes/__pycache__/citygml_base.cpython-39.pyc create mode 100644 hub/imports/geometry/citygml_classes/__pycache__/citygml_lod1.cpython-39.pyc create mode 100644 hub/imports/geometry/citygml_classes/__pycache__/citygml_lod2.cpython-39.pyc create mode 100644 hub/imports/geometry/helpers/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/geometry/helpers/__pycache__/geometry_helper.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/energy_plus.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/energy_plus_single_building.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/energy_plus_workflow.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/ep_multiple_buildings.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/insel_monthly_energry_balance.cpython-39.pyc create mode 100644 hub/imports/results/__pycache__/simplified_radiosity_algorithm.cpython-39.pyc create mode 100644 hub/imports/usage/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/usage/__pycache__/comnet_usage_parameters.cpython-39.pyc create mode 100644 hub/imports/usage/__pycache__/eilat_usage_parameters.cpython-39.pyc create mode 100644 hub/imports/usage/__pycache__/nrcan_usage_parameters.cpython-39.pyc create mode 100644 hub/imports/weather/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/weather/__pycache__/epw_weather_parameters.cpython-39.pyc create mode 100644 hub/imports/weather/helpers/__pycache__/__init__.cpython-39.pyc create mode 100644 hub/imports/weather/helpers/__pycache__/weather.cpython-39.pyc create mode 100644 tests/__pycache__/test_results_import.cpython-39.pyc create mode 100644 tests/__pycache__/test_systems_catalog.cpython-39.pyc create mode 100644 tests/__pycache__/test_systems_factory.cpython-39.pyc diff --git a/hub/__pycache__/__init__.cpython-39.pyc b/hub/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b825b540e5ae185e20733ce37bd032c9a1f0f0c GIT binary patch literal 142 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HqvsFxJacWU< zOlfXWettlIYq;;_lhPbtkwwF4RU H8HgDGB0nKk literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/__pycache__/__init__.cpython-39.pyc b/hub/catalog_factories/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..28c574d6c23e3d6f29538ccd5a628664de8108d0 GIT binary patch literal 160 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HkvsFxJacWU< zOlfXWettN(iCBn1(_z2BB!z@)k+!j8-W!^wQ?g zC+Iu)0on)XW9Ztq=&7@7DRtW%lEph7&)?4X&90;EZQr7`^YuIX(y^?c`p5brn{`OL zctV0%W9!6XHgm2m=6rU>HtU>QyKec7oPH3gD3u9ZLs?#p4dxIF4{EPrVDZ`qX!K&84uE*YQ8}p`Hw*QNEGvO*Ug`TeA-D&aOcz5lg{&;mS40W9_to<;|Br8*`Z-wDy8KsTK z3qvO3FvLx&iTdvix3u`fw9z!(sNa$fGjFM9yItS&J!2hG z4C7av%r^@ryU>e149o}&Mwlr`Y6d1j*%DT22ey`N(MX-Z(Q-q$sTX)!cEnQZ2fmhF zv79!8CNa3pymJz)>>F%}`4K9;Z21Smnr!95h83TgK;&BW z<~)g05TDc(PTuz^y7nJArm={M0+hNjM&YcXjJ*TB*n#29WJYPohsuD5oRbst1U}&b z0RGNo<{A0X`pLL&oEf358p=5%=McGPCd^%C07$DlSqHyGPl1>#EENe`o;2b1$_vAO zB6t{9&M1-)K2<~H-*5>V!zg0{_;x{0E}?QG93hcbWfxrZD|f0t_!IGP6<-rOFyM`J{sWQhvH z`(UWh`As}>kE{}(Ox~S$`AtUJvvVBi=!eS94D*p$7bP-_Z zqwXR?%mR&2zJ}5QJ_qnYCcXz-Gl1{h=0vUi{}JlEUPK6``BsD+i^1c&BGlSYQXI)u zDYL&}MaDGUFN1(|BjH&1A@eOvnMtUlFqEn*vVho0FG>pRM&>w=JUdm_<7ug7zQKjmZbMP&Un> z_O{65NEACD)W=(9}e64MGFhLDsbiz z+wxtL_|A3L8r{~Kd;|)Wi*-yS$8`;K;4cC^N(;7v4X8};@6!L{>#Ed_=gMbW=fJEs zN#rbedZ%MtT%E!wypu5<&R54URjPF~Hsk^vRkYy;EQ-2FYad~yevywVZ@Xq-2cxaP PT4lRU(lnvtV|vzKAaiPj literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/__pycache__/energy_systems_catalog_factory.cpython-39.pyc b/hub/catalog_factories/__pycache__/energy_systems_catalog_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fbf450b75e7c653f674fe6438fdccd21ebfce376 GIT binary patch literal 2521 zcma)7L2n#26dupc?o1||w9u9U1!}2qSkx|6D-J|a)M`l!sH|2A1vEsmoUwOzBG1fX zdjh)(2bBB_4sguR0RF{XIdMh^i4)JB*=9FXQM|JEdHnqR{NDFI)3vqGf%esBzw&=t zj`N3^EVc$r9zj<_7?=||3^7-r)QwzZ$3yEIcBdf2@WV=nPMK{c0QFP}_hG8$|A+bMo<|G@*?%d#xd`mm85TSp<_V)kqdL5IpAiaKf4BzqaRclBsB(0L^^?V!G0MKGE4*~q-;$9 z51B5TBL9v{SQyic2`;4%dUC}mH_61LzEOILi(%>48s*A9Rot$fI`SH5{`*aDWAC}* zQtcI~%yYdrn8sr&(;Ag(Z(Qu#9#>EyRplgH?Jc`XmKCPm$<+9qWQiu^CLE8v=-C7?OnX4%af_haC5JdXM|_Y}%!c zD-G7<6&OyDylP|UA_+XA*w+67x=Ug)1f7f zy9-`jGN#o=pqQ5Az&+XjJTzgkuy_>&0}BHT^U45GG)#TXh{eEm2K-jBeVphi9wmo7 z!#cP8Z%Z8)D#=C*^Gc*e2{mvD62NX)*ke*2PE5dBSvjdrw4OogcfyUrz zw2%K8g>|`o@#k!79@NF+pHrHpjp&n0nOG_$vSj~-IRn;c`%>m!cvMwD?djZ7!ENnD uuNYfnE+E9JTj)fn>MgL*H4nneqFV-=RqnP7Qk9`Y&u^o)3*G$Opz$AlLbO!? literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/__pycache__/usage_catalog_factory.cpython-39.pyc b/hub/catalog_factories/__pycache__/usage_catalog_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81c1376f913d3c818d1d4e738685cb82b4e059ed GIT binary patch literal 2262 zcmbVNPjBl)5ck@S?Yc?J<2`slpU{E?QV|e+)|>cAmpn zD7u|;Emhbp##5CHN1Fb8OLv~{?9gtJ$AuCJr`^MoE*+|3G7kHyxR9}iO(7LMnj~o| z;ichdC1-SK7F1SrhKseVP=%HU@#3^j%){T{)2ueB+&AAE$MOrVKx}o3ESI`l ze=#gHdn)Gno%vw`i2s^zUGg*$@C_`<#)Z;Meq&x5j;#E-UW^ysZ7xg>pqG6Zq!kee zt1U?6hz;Qg_l88SY>0;NZY&6p2eK~$Bl{qmV8MDI8*)voe@{eHv~FBj355;8+pHd& zz|C*}v<}-CuP{!VcUhcziWeaO!sb|`Phg_2j`vO330mN@@ zVPBCSoFA>H)|JIv-O%0@xdwh-*)aEo1+bjnECf&S4-920!rFnd;n*r*Y>=dqvC12B z1zf2bY4NpGRg1-SAQ-w+`Jk-U(4xV{7&@nNOPLNTf5dZ<%5o~>|wXJHT%uvj#d@%xQ`@e~cdy8yp}uZW2jr6*FWL|#f@Jo0jpiV!PG z+qOa;sZAJeiFyfT{N{Ri0#fC(*x0=ZlM?T;8ndmH0BgPffR7psOMJbP?#I3R@EUNT zfu~+Y=^i+b<(OOVz*ddTo4v6Tn^F7!&`ieOhX#fAL1+@we0vG4@h{Mf8k7l7Nj*{d zKR}`fOnhGk0pp7i#`+D(>|jpJnDOIbu9CPesBxmFbeLSqoa(}qSd*SmXp?++XI`t! znQso+twHS4dE%SJ7%u)>L)x7}FOfVZF-h-EXzm3m*h_hKF8KZ~X#Wn~nr*KN(mZ`S zdub8#wA=@wwrks!Ka`qlt<(mXucU%MH~$C}7F<}#)45)o^xEr~hdIx%ZiI|wg_xKc z(q!zb2~X!cK4YSY8B?#o(N!>31r!oJRhYW!H5^{YA;1B%`j`UMBRqd3Q}9aJfuCkt)@9Z>1Z(Xohg88{?e2XfQ;C(w O^_!$=L&wJsoIe2;`9hWe literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/construction/__pycache__/__init__.cpython-39.pyc b/hub/catalog_factories/construction/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0315105087f16d63b42e02e1a9b489cd841a856 GIT binary patch literal 173 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_evsFxJacWU< zOlfXWett1KIT%h#3HDbS_c= literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/construction/__pycache__/construction_helper.cpython-39.pyc b/hub/catalog_factories/construction/__pycache__/construction_helper.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e15c98a7f4b66726ffb5ed0a99b1d314a62722c6 GIT binary patch literal 2135 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 MRz~+=*|Vwr7x@|gV*mgE literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/construction/__pycache__/nrcan_catalog.cpython-39.pyc b/hub/catalog_factories/construction/__pycache__/nrcan_catalog.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec96c428048c42d3742dbe00b2a441b0f36ee8e3 GIT binary patch literal 6781 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 NSy&lgpJmTE^}h=A{1gBH literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/construction/__pycache__/nrel_catalog.cpython-39.pyc b/hub/catalog_factories/construction/__pycache__/nrel_catalog.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebcb3532c5f8d009e8f2b493b2154ec58efc3120 GIT binary patch literal 6860 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 literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/__pycache__/__init__.cpython-39.pyc b/hub/catalog_factories/data_models/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c3aa860b803311fdfab92b5b6fbca7ed93d3d8f8 GIT binary patch literal 172 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 JmfN5W^KbH%W#s?> literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/construction/__pycache__/content.cpython-39.pyc b/hub/catalog_factories/data_models/construction/__pycache__/content.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..606b5b679ac59b6928d42a6491072b87c9b72730 GIT binary patch literal 1935 zcma)6-HO{r6rPb}Th^}kFQoMEVhW|L198Llri4-woU#;_#WWOxaTpZMtgS`XI5RTA zMtimU429k$m-_;}E%Y&T+qdXd&lyXy9d=>IoTD={XO6$~8+JMYfpz%DU*gXOA^+lL zbGfj224p?~CdiPS5J81=O@wph45@HmlCC%Z8!m&sN=>HcQ5LI|MPU{uYRn>)W-`r! zmxC9t*kg7YM=~`Mq+bOb$LF!sPuc0o;1rI2=sf|hG<%$cnbcr#w$Sl-lCgho*zuF& zV+MZ_DJ|lV^?&)T&&FEKXTd$eFQnF7s?J$AIN+OET=i) zBzJ(*+y(CB9&lF>uuRXoUa`YN9Zh7mm`PLYaqzfKktqT`#W=@dVhW$Xi<AnQo)- zj7-jpVB=+H`(b5>dP^7s^OB zc1;j+a$%#i{1(E@*z+V|Ylm5!vTP!&Dz+M3sxkOCRO55&?TYQ)!wS%r)q7(4rp8of{ti4IqPPuD8!o=u zz;jsPsV&|U%hxrQvh?mig57c}5*&EnZ6MjNkd*eeaG*bE$=1yy5XR&Zy6%F!Ag_-u zot(a>x%1xnKt51P-Ufo^G^Uqsj&spje$mH1u7)7X6ce$XkD*=^!SlK`yRI#uq8ZL+ zG8IK9Q+%y?#tBwJ+Xow6&$_1%K-LJZaA6GTBiwG6ZPDT!t~mb@?mmWJC#uvr>+a$} zNW-b*9Hto#k9mUfF6VFOVN%|JO`#&rH4cr!pJ_FdI$NwTVV`I$PL08`==4LB*1)V} uyBsG7>Y7i1`P6g$rbB}*^4l7<&bp5N48C@Ao2|nCX$ALZRJUE~`Tqkh+rn@F literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/construction/__pycache__/layer.cpython-39.pyc b/hub/catalog_factories/data_models/construction/__pycache__/layer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..18e0d1f5a6c06393e4036459d7b4c1269d941c0c GIT binary patch literal 1836 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 literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/content.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/content.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1756708c3a736bb739ad7fcc94ce0863a717b50 GIT binary patch literal 2056 zcma)7&2HO95Z)yziKZmmap3+J-2y#S1)>H{Q4~Q@Bv68&s4ECH0u+Rb1;brSG$@kZ zr2)M=WhF*=4Z96}hBt z6Xce#3%LdIj&KUu2DvRdg}fuWV)u%;j@T3X@N5eMB6*Ovz(b7J^1j2+Ta=j}dRoJN z=tGL?g|Y!O0MefU%V6(_Ow(b{%G=yi{#2%mMC#n;x=5AIJA5J` zd0rYoK=NHK0-Zvn=Ec6($Sp0y)7;s(+bXZR?TwpmckALcQ9FR@Up{y|eyOF>lSPGj3<<;7^pgcR!hFz9pQad!z=S}3mB|h)j@`t z*nomT`UI$gvR6SV?cEW_QH^6=227sMgJcG|xh+H%Vz~iTez>;6*H*sV!1;NF^G3}( zqW-Q%y;-mSj~g5AM%*86+Sx$<^#<}UD&)85Zehm=;n#}7{04*xxq#+ABhSbm2Ny<0 z-_p!@YrG@xC?)5PpcxJ5g_+?rHkO|ba9&iCm!&ZifseiHsYUKQttUXwEJ`wOdPyQ9 zk$2M=TEEh~wpK-q#p*ii!I8K8RqMT9Q};meTOeKhqZk%-=svZLmzyxw)B$d{+aYgp4o95-0B7&RuUn(k=^4Xe zuY*G;@@A6r+~GK)<{`=*&d=vwSe}4c5&N90Hh$esRGdhaE>^Ix1r<&#wTlb^szYRJ wY=u;e4xCcB(;oq|sbxA%gKm?(qfl$uGt|fMEH*dU%IzOlaDPJeVgOk7f9Ue`YybcN literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/distribution_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/distribution_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c88c8cf725c80754cee58772677fd8b63104e2f9 GIT binary patch literal 5257 zcmb_g&2!tv6$e1@3;M7u*>Y^l$tI~2GvhFxB!^Vvan+GjPaRdGMs?Dmq`|=4B?THF zm|f5+Y33B2+Eb66$)P>^-{@b^Gp;@L+?gD5sPo$e0f98A%1y!9)x*BU?t5?FzV~}_ z78WcG&*#sdGiycD{wZIwPXR9*XyOq%sx>sKQ^V7Jqha`kM!`25rY^?{UePZ#N{TkU zvR`Rbbd8y`_^sZkKGbN5mQOWW{?=$%w6d?&s{IvR)2!_-1%L@1uMzqj>!@*&xAo2)Ass9#go4c(T@_&V8nxVM9$PwMy32b_H9IU(cL zX3!gOw|yLvzrP?K-~0FzvKe%n0jI7*Hn+dnByAq_d)6KgI;gj`K9;F;cQ4KBab1K!?{a(a#Gz-Cv7y7h3icR`(iFeVkH7D*2%uZ7$sjg-3}HY zLcY~`{5JXRzhGyrR)~s^yU;!|cVLUC{JTMqed+L;9<9VC+YbZov{`I83@>i`t`PVl z9*LG7GMLtp7K}%la^37x#mfeo_y;AN*6vTUJT+IDF)XZ!FK&+a-ti;8xLV~$pA(eL%VfsHHClV{lHEPBVz zUJ4t|CHj6(9pbyTJaOJWW=?2(fe=h!zjo>?W6?x(&6Z>B zfh}T3OBt7KHukh+s5Tdwf_bf|dZw3^QEP5Itdv{M(e3U3uG)Jur%Y-#msM;zN3Ycx zYAsD`^+Mxs;>dq^y19P%STHUQ`#ukX@NjR?Ja)K04jSU{xc@}8aqzNRP7@|`nK+~f zXYu)p!(>}^@?d3rb8N?YZxB^%+wHocZLdm~yMj(Dl=SJ}@a9(L^VqfP$(K!p)%20H zY|4X6AVyk8`Qh*bcsn5vS(sb_m#UF<&fss|bpnraLN!#=xr`MrbdCfOTSb|MzlGPx zaOuzRSICQ^m4;VyM04o{g}R#xrQC%nRLiB9=^D{B7CEqdF6cU&ZTPv_z^~ zIZ~Z@=mn+QPNkEcOjo4bUw7P1X)Y&SeQPiz@i^2Clzx$vhMxv%BO zE$6(p#IN2u;&zeI+MF@6$volqW&9%~|NQ4?NX)N+aX%yQ?Hqw$-TQ*#|0y*%&G>sZ z_7S&5!ed5yh=nrmx126H3HVdugal!c_z3HA{8`}jeHSg2rTr0(4_JZ2PK~M(kvy3*5+d|^ZF3>BECk)hO$humBo+qyM!8A6E zqZQ)((ku;cf^n45Fz=q9$(A643##X*hc!NuG3J=1qAPMMgh?H@6?~b1$*G!`XQ{ac z2Fs{f%Q?tc#%Wx1K~>#pRTJ3p({!D{{;8VFv(&r=hM!UM-8?m?P~L=sMSLuCg2EMl z1R-$+)%!ZXK@D0sRqtD<8@i|{z5#0P=!*LpHOE{%n%}|P z0UEEN`+w}aG+j63?f5*|u~FP{28`D%{tkwQaXF#zAb(d5ti_;$WJ)A*Fvc-Q!}W;} zn5mT{UXZvz0fFiKe}MddH2lSR-zKSO#sWwmN5k7P(v!Hh0=(d4I?o)aX=`WU^3}UP zOg@?!35PdkM-Es`#%nI48JBlm8Bu{^Wj%%3xI`^nCT1?vSFISMdzArHe3a26D$D<3 z;1W$A)_Y*~(NtNi6)G<)y7{uC8!wGnv}x$(#Lv+2``&zME)FMZ@^L*gaT#jW-Q=mQ z$|^}#2DXh-TGm&6)U|drZ`)t@9dFDj+cpiFw#|uDqXGznqX-8VumqPuffr;~mYp)C z40y3UWfc`0RoWn97gd7Dl89H(NfQbQzSgno}{X{=uBTHDtazei#A?=vB~_vm0gs< dr22Vwi7NNw!+Ib~QXz{svvS3l*XNB&;YUsRj(7k7 literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/electrical_storage_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/electrical_storage_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..595b03c15dd945d0bdee36787557d79d96ce705a GIT binary patch literal 3593 zcma)9&2Jk;6yLSiA93s?P12U~rJ-sG25PES;t)YqFl_`1R@A6zm7Gy zUF4PF(n=K<{sIng%%1^&#$Gvb=fnZ=-mKTL6Fc%+^Za(c{C@A-tWqgi@cgp`=F^w3Q&uDJ|;7xuyo zAUWy*482KqnGl>jVL=-%AR6ClDtVhc`#0#(s@m~dqM+SG3yGRsTpNEDhcEgkV1(7Q z!2%g>gQl;(v0Ap#{zB6cIiBPB*VZe$nFqeWi-s=%zrag|F9N^F%Z6V7zQUIbUjlxa zuNZz2_$z$X@MXTn*I!%B${WkEnoD5UYw`6*BkN6w9o@WHA|y5V(5yql*L|intTx=r z7%=1uFtRZ8*FZw+mGzrFum{O!2;y{=Gkky0=4LQ3N`8uq(_3ge9weNOPWVi<5fvj}?>xD%(c7j}Cg z?aCkEiZvR@ju$YWidM^WJrTJ5c!eIZ5InC>UrIlO3t$@;-SC9U7UiCHPnd$qb*hCw zHev3sR$>RIRcsmJ5hDbkfX;9forSVzR=4hwoM=7v25GL_Slcq(2=1$0@Lxn9_h z%f8fFX#6=(#;a3Mt)^$jKrNrgv^oXS+7v{mcDz8Tix#Hz)cW^Dee>X{7D^xVI!em$ zV5g4?=?vpfADr}#%ot_^iom4ugg)SqAE?2t4^ms1ya2BwryE%|089 z$o|Heq#K`-jqpUM4)Zq-&EZWYz=pvl98q3yZ04%A!k;;{6~=>lcSPPpZW+k?Fmwip zm5)B21?Hj)%?a!I2-eWA5_m&2z89W&y$dxUbI%=*b8WD4!VjCrMBf6VzzA6l&r_#0$tX2x&}Fgp7>T@+AvX8x?0k zxe5!lF(@-FbTJU;1k^AxB%TL|hQUkDf)^1X)=5;CfLWLY<{B(~J`b3S8Dvf{UmCGY z6oJIUq(g>@6b-QlIrTC_V5c(Gr>?`ogE84RX8F{)OgE?CTN8qtS-g^r;Zuf`!Lp5N7()#oRn6ironmn9j!#pob!+)GG5Mf~Ijgq8qT#7(?{Q zETc@REEAA0|1H5Vc^S>jZOqIt@Ee+hb{2*M16qZ49!3EMGz@KM7uwJ)v=@2i*Rp5- z2n_}_3fbr#)0LPG4lG7O37T-BWCl$2qbs|^4#t(8t_)y9wH&22n|M6BI<*KyN!cb? zwiTA7D6Q5et48Z-@TS$8?0Ie3{Z0J?0Nr3Y2o`Qfm5zxY$(^qBZO%=ndvsNYw`*HZ+V$o8t=Khg;4n_1mzj zOu5EZ7Gptw1f*y?4)hYX_1{t@W0wlEhQd>gs-tehcl;RoBlvq^{wbaHMzyits5aRf ljb0OvrAbXw7%=AMF+q*UC}>>#B2m%<>~%E$zjKP^?Ej7****XO literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/emission_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/emission_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f86ffdd9c985d4f5995a620eeb329181bb70702b GIT binary patch literal 1960 zcma)7-HIDG6xRIMo*l0@2?-4)+oFq7>ijq%DZN-qNpY8@scTG@Kyh7!GSYgrjAtB4 z4%l(8vX9Xh*w^SQ^lol@(`P6YdX7By+Gbf+MrY0(X^uX9=f}L!hzX3JK75e>R0#PS zU)DzeFE3%5Pe2ILCr3nh!apa%|LFHU5ge0dIQa_}MBkuIbNtW_bEuT1mf8-*YWz zR7mtkA)9R-Y)hIOTHE~&K|^+E=?tcG)cKJ zVDBanvDHA`huMZ{_Cd_OIbme(gY@PBNPixJ3}&2K<=GXlx;(%}Nm(nVu9omtNvEC-u_oT4NAw0RDH_ zJ{Y_)Qk%hKr1RVkdeh{T>rok4GdP{Rb+b$^cES^zYbDJ!{6-wlI>%cudU_I#KT?XKpm&!x(dpioHpc`0l1o4uS;DkhBKmX-(PiXsi0sQ1GR%h2aOT)!cl&I-ezb-8y5l$Qf~kS2 zT&9WEJF?8J0Jl46GBvQ~{fuY|@e=dETBX|F%?~=Z# zl~A^lt!UVsT|)aB&No;USfwHU{)?)!{Vm=$K4}KsZns&-O2>?644NJGhe?Y1E@ST| zJS|shjEOv9Ok+1FBES!~u~Wyx7H)kPwyc45HG;@Awu2p*?vFC^!XU2s-sW_Bx^VUT U%MY&dR7Bq{aDIm_UA2YL|B^WFHvj+t literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/energy_storage_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/energy_storage_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa6aba54b606ad16578871b4937335935ffb8f66 GIT binary patch literal 2526 zcma)8-EP}96qaPgaTL4F&lX@m7}%m%V65@F78tN#7@B!OkS#NUrX2>)1ILK8qd*e9 zL%M)nU#)qWyv80wx4Y^q>}ETpY)4M*q6~O^cz8&j@BAsORtp>)KfQV--jp5ZAG0V9 z9~Vz?ss~88({{Maz1U5>w&yxW4li;4%Hh87UYFV>zH;W&%Yz-)ae~8CKyOIShDwWs zgiNzo_Q-``n)C$jF&)X2D7zh;o&NAE*&`=WC{iVmJLV$QQ8yB>Pfm_bPf+xv@d&8| zvKKQgAZW_|5Tf3NCVyX($B!OAAx)Wv5_rT&^YB@d^gs^!!70c~5o+Az0>~K?f|F+~ zy*y_?lvy<(Up)<{#~UHT+qobp(GZ;vv;?(JPNNvl{47(&;+H}TauB~{AVvf=U!WQT zh)CZkHIkXq{H<@$iB8?kN(bLJL&F!x%+;4D6;9hlcYEALw{BZEyKP^r@D*OZa$dXb zGV-guV)<3%*LYz03i9i`YWX$fYy6Jo1LW`W4a=|dO}=&Iw5#01fPIi{=fOHdoUAAE zkd3~$9}qH)V!ktt=E1qrz>HI4rWC5RLd>1nFuaGeiBsK2GIqxfb;cf2cU(g1jeVr0 z@d{F(J7|R4s;^}0ROJuRh~px`7{oMXiO6a+Vd- zsgzLEW>&qN`AWpyc2Kx6C|p>byKm#I>#D`ut{u38F#b)N`<)j`fa(kqkWzO}hv5Z- zWRhd5b1^u#bCT}V7%U+Ys>87WazLtM(!V#PdG6mVC(v_oqd&|lltyW!Dcv-Vv~}v0 z-TZI#>4KOwrUyc-z}YaonKm3IHe=_~x_tByLr2Jw&}8Bz5^*cq2Z4@G_fZZ}+Ox8{ z3noLaU0A~(>yVt>#bxG2{3HBTChksow6n;%h%dLRg2%M;m&;vD25(U<|w<43jU-V@9pb71nWv}b#q z0kQ-HK|M{r%n?m$<{iLH@hyx{4L1%7z!pZR*eRETx>ewx*iVQ3!eSW`EeVf8^DhB| zVGFjG7?jntq&JGkGt<1$y+uBs)2{n19QB&%t0spj%>rtAGKL-bDy4r8SUlNTrIgE% zQrN&ZvPvIhUw|IMma*(ZLrj^0NntSI2jeQ(F~oc-3dFQWC?PRw_H$TqeIGmWe?i4_ sgVjaT>bL4Xe2izZ5<3sUG*&AvTy0;n?YHu6j^jJi=#}Zyex+LaA662HivR!s literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/generation_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/generation_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..868a79fad47afd2381533bb3248ca2d43a3cc425 GIT binary patch literal 3319 zcmbtW+iu%N5G5(|B@EYL$;{{JAs7mfb9=dBz@-ahq6M?S$hzkNGC#}kihm_j|2NY3>5d?$w;!N-a8I* z$b@9C!9C;vF6+^vhCf}j?MyaqI2`rjTAYb+c|Qt4ZLxhWrC_gkaDp2!MWY6!qx0YX zN$#lYafJs#7$qi9ILtl$rdc;)bJtZ-oPQmlWpH*iHQ_$$;9Z#-5~r^|!&QlHT$au{ zv~Bju<6xUS{R=WuYwPH3L+I_CxFvGJJk{H#%!|AzoN6ESb^-askH{C1FAFP~FCkwM z)r2o2UlW%S-a`JeSV{N_@>j&wUv;r6uAQ2=LltM%l9_dJJ(;PA8{+1v*1jYRjE{|Y z<@q!KQvAca7Gp0cG-i@hio7-(np%DjSQsvD2LP-nMiY^ zJW_L1K$;&Fkrsr8AoNzf7+ZE4ezq&(yd7{~#ueK~_j>7|X8SzoA8{w@g9KcD)JIV? z=*f7^78x&$_fhe6n@-jp*eZ3}L{Klqrjp)KT%Kt(6NOerU-g{2@=V*ch04|!>pIim z1{&lqx4G4Mtt6;U--j@aI(q}>n1eq~2-P|6A13cOH*Gp-2(DBef!UfGLUkrel0;RV zS?-R{*60o5l5M+z8`<_cDpr?}XhuPw{f0MZeoZ~zn0(=2t(ZQ<)0=p;fXqlcL2sSu z!v`1v45K5OgoP`TnJtj$oM4L`c_ELIsk#nW{O}`K!N0^7DY=Qm*l-2Ie?`Hg6^5&G zz+7<=NOgVq@KZ?S&-0)tPlN6R6%}W=O@#b2!vt4x_yxWbP-}CbXzS&$C>bK{XI0`N-Vh13EMG)i4IBsdjM;WNM=b&a5E=N4`Eo|U! z=&}m_Ez%6DDEKm?abr&7EQ2nh5Ir|D(7(B?x(wAd6l`Zu-I+&~DIFKYbux9_H1*jL zgg$!Z5oOdJJ=ZiovHmO39TUR!py zH59zaobA@!*{1M@_mXDywiN~ljoR1S`R;UZfL*JQCh7$(;Z7})t$b>n{EFIdfG5YM z8-*-7cGZGA1r>~Gc~}H1(Se4bdbKe0sG99%3~_JH5LtAST0gu$XOo?zDV%HM2L~54 z#g9`{q?MSBTg(5j#UeNpV_aTljO!?%d*h@?eLiQ56yK+h#IY3X2gr zR=5sb5;+W7@YxbvaV-k57f%-cFhyt#Kbu2%ZfQN=qNjeD+7}f9+r}18ZLjYUU$yO@ z`rI2!inc96$F|`XYKTic2zwHu0o);6RKS4|p=t$G9DuS2D1v}22X~3g>VCpeLjtnG z6@1kLBqiN6u><~XS%z*E7r!ewzfw%TYt?ITA3r19M}4}bAVBJDagHB4kRz^uB^#R% z(B&WKUfBK?8$VuTlMDH*={GV>zcF!T+VrQxbC(*RA|5~c&zmjC87LAsvcw`2#ig%O Vr+iI!14T92ELHWYzG5KF{R1n!a2@~v literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/non_pv_generation_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/non_pv_generation_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..711df024b43bbddd45dde497756f7f443eabbbef GIT binary patch literal 10304 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 E|CmfXg8%>k literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/performance_curves.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/performance_curves.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8262bcadcd851135988144c25e84d4c1a0ca3828 GIT binary patch literal 2748 zcma)8PmkL~6t^93lJ#y{T2PUoDkFr*CT*jtJs_>vr6`mNX(>^+mC$Y~YvLJay>dKe z#@?>2aB7cy0))8t$QR(i$MBUCUjcF8y>b3{H>p%det9$V=DnHU`)Ar}IR-p`x*zag znuhT=4ysQL1`iFxRG$LFj3a}Y%nHqkb!3^wV}sS0{n}vmE9XgiEI{;!FnPlZ5>BhTOk*{{iWX$P7?m<0F$(o23!#fz|3P3oX0b)1NF*8p<>6fQSpYtOS#BJe0J_CYfY)NR z*T#{}H<-;fUK_8>qdM?)*3f(d_$J%bd=q$wZE1d!ZL=2abJ!Jd&(-4EfJWhr9)EA7kPsFjI4CxW?21YEElFt*H&P z#tblLKIz!Smg}J%H_2jNyzep|^N7(XaRI-8jzSI+@!Y&BTCOL!?+0E0L7+Mtg{^q# z7fwaV^)))2ii+*3hBt<6!8!ju?e7ksD=yVAok$^);UM!)sGQ6~L=8{Uk$z{<>iX0J z*9Tk;8N{zUftU!@5TkdTxn=08VZ21Myr$~KSUPgNT4Er=EE1E;0_WZC{SK8B5N|Bn^{b9t)RuRP}bxyE#~4n)2>WJ~Qh(+TvrL=nKyw zSp>3%;UrjC%Vi+b^`mUCEPFM!Q5op_l>OF{KUOdSgm- zyAHjQT*2WckPqQim_tS@zquL>%Q%0xc*y_IXUWJ8?~Qw;|HFU;k^V#PDv?SL!h}yC zQYoC418CY+t1B?=t=pi|I1aO_4su)DWZiX3gs+({t@@?^0VAv<@;xM&oE3zy9eoaO ziBLWNY!#u^?0-k3e!mbWVW1LBon_$w;LZe8cZLW;HYMOx5=-H6r3h8zxP6X+k+)yW zz&>6D@eWzVq>Pr*D|;mbZwVbt^tG^T!9s5VOJiN&EbsA-aHJRDsMgFyMVa*iefv3H z$8CxzjF5Op7!r=eznmDyRjnlq;QYqhZn+H$Uo37}&u^_dzpC)UJu#yYK3yuhX%0(o2kMiC!#cEnOap27Y9K@k?1yv=ZSi5AzjlQ&>L? z%QEfq_g}M-f3gbCg?&#tTiA*s=*eb$?1}I9qABE)$;X%Bx_aXhOt8 zu}HFY2bb4Dq;guFy}GpFhYMa<-2l=wZM#{wOy>%`4S1XQFHr_Q2_%Z(dHfVB5*SA3 X>D6_ri{_W*!S}HtDlD&dbG!CGMaJW4 literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/__pycache__/pv_generation_system.cpython-39.pyc b/hub/catalog_factories/data_models/energy_systems/__pycache__/pv_generation_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdc491e22509057d5fc06a7cce2fca0fb9dc580e GIT binary patch literal 5487 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 RTRcq-X7T_Vea9GdnZq*6TKbXZhFP z#h-OT{=m-oV?yUPG<6FICoRG$Hv$?OErTLo3QD2bGBs}o< zwJN-_K^oQc93{lQ8wuI&v5lTeM94fhaf7(cl06|qH()A>rP~%v>1lgo{mx^y%+!z#szyM{T)|IpLKCj zGaN0t?F|oZdM>;d*1|{v%Ts`%R@jCs1ZNN3r~?Nug}tWCdq?;F1j;L+_uZb5z*HX~MBfcO+%W!37ajErFoLuw*vjCvRpRHKlU=YAHxH&-rYPr@c}80n z@D*M?Ai!6EpW?RWtH4k5n&ziOS=epL>n|vu;b#s^SUU~#vwTj^*I>S`XXp8Xo}J-~ z{Okc~oq0}7(wYUkpU)P5$gO(>R{!#4o3Wuc6lO2HVl{A;g4s0>TypdvUx8MFroIM} zkZ0s29ne8(U=FN7dCC)JdJ}i6u|5WbT?oEG?U6cbVB!M zKTJa>hI8G-kJ=76yXI3VvNNNTLc#qsY}7MTiC{Og3-@4j{c9}gpA!22}8ZIc$ekU={N;fdsoIG+guU>L=x$HZm{$zTPh@8+SZ#_qyQ5| zE3id^Bj~XPl~s7nYbwvcpZst{K0OFhIt!a`!zYjL%0fAQ6JYryhixh~?qssH!*hV17s7 zKGfbN@B1+E<%#mkRX{TmZ2BVLI2LxxZMXbEuZ{bj~)v+wRZjDScU|bQrk`W79?G+YE1P_wD==v(0c@ z;w|bg9q;a&g+FggG+$#zZ^|sU+Z7R%KS}HyV%1AB!{<6%Nle39a*45Co<(vF35H6E zAxEOeH_Ca!!^_^PIB0iQwXD2u$|_hqgU;SgA6H=YPtepgAjB}KNp0O`4V&5}LyzF- z;m-iR`nUPUoaBWmadZ`u zRl5>HNYcyIp_On59Sc^iOsxcopHy0Z5|Ke&nb%OB2m(0oFn3*oL5It)3v))3N|hP19wLs|7!Zl^D>j#F4%nbjJFpYbn0 Cz74tn literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py index 72e22c0e..3d17fba5 100644 --- a/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/electrical_storage_system.py @@ -14,12 +14,12 @@ class ElectricalStorageSystem(EnergyStorageSystem): Energy Storage System Class """ - def __init__(self, storage_id, model_name=None, manufacturer=None, storage_type=None, + def __init__(self, storage_id, type_energy_stored=None, model_name=None, manufacturer=None, storage_type=None, nominal_capacity=None, losses_ratio=None, rated_output_power=None, nominal_efficiency=None, battery_voltage=None, depth_of_discharge=None, self_discharge_rate=None): super().__init__(storage_id, model_name, manufacturer, nominal_capacity, losses_ratio) - self._type_energy_stored = 'electrical' + self._type_energy_stored = type_energy_stored self._storage_type = storage_type self._rated_output_power = rated_output_power self._nominal_efficiency = nominal_efficiency diff --git a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py index 232d5402..87228afa 100644 --- a/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py +++ b/hub/catalog_factories/data_models/energy_systems/pv_generation_system.py @@ -14,7 +14,7 @@ class PvGenerationSystem(GenerationSystem): Electricity Generation system class """ - def __init__(self, system_id, name, model_name=None, manufacturer=None, electricity_efficiency=None, + def __init__(self, system_id, name, system_type, model_name=None, manufacturer=None, electricity_efficiency=None, nominal_electricity_output=None, nominal_ambient_temperature=None, nominal_cell_temperature=None, nominal_radiation=None, standard_test_condition_cell_temperature=None, standard_test_condition_maximum_power=None, cell_temperature_coefficient=None, width=None, height=None, @@ -22,7 +22,7 @@ class PvGenerationSystem(GenerationSystem): super().__init__(system_id=system_id, name=name, model_name=model_name, manufacturer=manufacturer, fuel_type='renewable', distribution_systems=distribution_systems, energy_storage_systems=energy_storage_systems) - self._system_type = 'PV system' + self._system_type = system_type self._electricity_efficiency = electricity_efficiency self._nominal_electricity_output = nominal_electricity_output self._nominal_ambient_temperature = nominal_ambient_temperature diff --git a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py index 6c5382d7..d3cdf255 100644 --- a/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py +++ b/hub/catalog_factories/data_models/energy_systems/thermal_storage_system.py @@ -15,12 +15,12 @@ class ThermalStorageSystem(EnergyStorageSystem): Energy Storage System Class """ - def __init__(self, storage_id, model_name=None, manufacturer=None, storage_type=None, + def __init__(self, storage_id, type_energy_stored=None, model_name=None, manufacturer=None, storage_type=None, nominal_capacity=None, losses_ratio=None, volume=None, height=None, layers=None, maximum_operating_temperature=None, storage_medium=None): super().__init__(storage_id, model_name, manufacturer, nominal_capacity, losses_ratio) - self._type_energy_stored = 'thermal' + self._type_energy_stored = type_energy_stored self._storage_type = storage_type self._volume = volume self._height = height diff --git a/hub/catalog_factories/data_models/usages/__pycache__/__init__.cpython-39.pyc b/hub/catalog_factories/data_models/usages/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27f39124ebf5866b9c6d84564147b45254453976 GIT binary patch literal 179 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 literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/usages/__pycache__/lighting.cpython-39.pyc b/hub/catalog_factories/data_models/usages/__pycache__/lighting.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca7753f527c1cffbd956b1cce5349159aceffada GIT binary patch literal 2484 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 literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/usages/__pycache__/thermal_control.cpython-39.pyc b/hub/catalog_factories/data_models/usages/__pycache__/thermal_control.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8298ec64597f524673ce1a198e95e758641bf18f GIT binary patch literal 3518 zcmcgvPmkL~6rZsjJDcv`wouwFbc9r?L24+AxU8V6l)?&WwOY}xgwj-l>zO1Djwc;Y zD#c1q?FBvnrykm4zW`^%iO=9GC%yt)cr$Sl=g+Pd32-zoLLz=WT8*$Uw%_3Z7Bx*%CQt( z9w-1Am*ij&MiGZU1*|1cN!u*Qo~X4aYds-_;`iWeV{Wy;ulxZrpsJOXPU29+nR6H> zs*1DngP_CNAmV|>i&qJ5?!icY1Hw@QgX%1X8#c3;{Sq}CUg9ouxYx3-g1TN|<}&Z4 z^8z=@OGufm8Dwn$DY{#Hm>>|4a=iO!w z81r(r`EYDH(6zQ)daXjp{1OQwKS^LY@Ids*rRNrmI*jBNkP#jsibfVtJhFjWBL}EG zDgkvyF3=J~@J@VGb+aq9$NiXgxUa&vO%twYUxcyBcIMWe_`&y+y@3$X{NC%d^UM#Z z|I7~~|4A5yYDkmZfJp}EBKJ9TiQf#ZdYO~(sFl5Y$|<*ttj!_EJC}H7yJsD7x5&oG zKRZLVyToh;zD4p9==@Jw-*28ITqeyyPYR)$$HSoG%U&KNNwYI}Vn!aQwB-j%$dD&Z z2BAxP5JV9?tb;je=21-ZD6aK~S((x>4i%+a+Rp1hkmusbFTFDFDz(Y(BZwteay5`~ zfb~Q9rRRDWuW?~ALS5q%>385@gdA{1a-9(H31W0Y7;l9!XQTzm!k^}vRK%QwF{y(D z;XpemA^YQZ?vo=8!uD1qd}W|2mimQnvD8u+^^M78eY*kVeHe-MY2>Ci7X(}F2j`TH zu9Qu?&A%p^4o7)K6YUoT!Jq`7n=mGV-B=K;=z;n~=M-sXuG~xi19O$NB&%f7zIeMJ z(@JA4Mb9}U`*CV42nSNkEkv}m^XVeTLIq_5vJpv!iQ>I8>}c5OV0$?1bMgfd@yDXo zGOJ78`e;&q9vd87cI`ABYy&Eb9&G@QU{*N z&?!vX=s8sOF1n8%Uwm$j@M}D>UR!U_8;sG@3ZPKyyLOJ+bLcHVp$F(XIqJ-zUop)W zx`QtC23-&O2Yci&>y;bg=cQ2zIt4r3t?S;yw3X055+w)=108z49Hv{j%TKz_s+$s> zr&m;vM|qKWoL(zBvq`}-Z2a`Hm1jFlHJ?uk6BkI*Ni{E|!UDL=b_!O@QipTq`u#qS zS+=1BoyjS+i%V@^Q>CQN=u)S^s%uJFV{6<7P1$8@Q`<@tH`-}3PgiwN;$nfg3g9t} zkEly?yS`v-7&;|k5igesO~SInTGi~rB4Tblp`Lc zOazq5ci@#-xi1Ce12vSo_+}+jvlnEQHbBzRM60Tx6Mg=IOs4#qlCC>;EqU?*kTQ1c z@}`B~^Je3E*}~%?_1>eZCvU)i=Bi;IQoA{gd2jX!v{CTYV7_%`EmW=0Le<7CRBd8} b@liF~RcFh}pN} literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/data_models/usages/__pycache__/usage.cpython-39.pyc b/hub/catalog_factories/data_models/usages/__pycache__/usage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f87b079c4a55aae1a1fec4a321b0efd5fb184881 GIT binary patch literal 4346 zcmbtXO^@3|7`7e9ah&XTce~qdVFW@VNKM=H0!u+#ZP6CAEKA!JkZ!SzXEy7V9j9Zb zC{{S2_QHSY0WL^AaODT^7r6P#iC=)kiT53U#G4N_5{_m(?k+EHJOP<+ zMfUuz?Q`l_Wbcy)d!)nte$P1K{yDQl04d{Szwfv%gIfqga~6?~c)&fs*~y-HKKDbm zYiFZ1ZOix@m`e>gE+2OtzY7iHZm;J$R@Y_$^z;KH;&eOEu6|+L{T?6#=qx@uW8AY` zpcZo9g(u7Re2)d8W8e3~uW%tY4qd!d=4HG&6UZW6639Y|Eavkp(-na% zrO0xQtkN}stgw~yReA|}67X3`-&@PyTc;c1y-O*wo+Fp(ra(4Q@%zD*p_Qr4mYvWVeyLj3?&cR27#FzlmValnUvzH>828kYo?WJFJ3moL}4cA6(tt0 znKV@xFbK`>QDco-tOm?Ija9*|I-*t`F#>_#3e2 z{~qt{oE!&?2Pb`x`+j(GG=Lr9UTU|&$yxt9QBsd#o?3S3bB6^d6nu#3fnB@sF`jsO zYxV}QZkkTl2~G17o-S6Bp~>UFXi?~+nZ0}n2C8uu_IcL^V-Zr(pfQxr#eqk6 zKvjh7voP^wB=Wl~ZQ@o7bSD{cha4gZ9xMpC02(r{!eFmtz6Lk3A4&Blc9C=gN`NAj zv?%eMO&oSka{IH%2?dZIxI_@Zbe5;CZ-p683?uw4tnkzdEZ3oX3rfavDcR9nVgH{h zDpW8<`a*5z8GyTmwQMKbKB7_ZEpx8xaN4>G#!t{G;gY=DH@p_QQ$i-BeL*w}v)FF}@M(el zM#8=@nec#f62G4l&m9xe1SeE5%IS3TSS?_%$HiHcw*dIEKsnWUKI5ERcXO_p=LD*! zKI91K_otK0k_&-?vsjwN@d^On6gZ~dEt|;}js$SLu#H8yG_>v{`cWC;m=b*?=6VQj zE&F(qX3yf5N1j=3pFxtAMkn#zA%7bNY$(F5#bxozxZgmo7L?R)%(;E{#Q5lLN8x6Y z*|@(Qppv4=YWmaV^!JZmkJeJz6=!Q)!8{BT7Sn`m7IU?} zi|x8;KJ8m>id0NUS#8tg1jdi`9`_+qh69f09G4(j5=)HBBDPFjX&K&3b`SqNi7kw^ zfQ69y@)AD5{p6UqCCjd03)jwZafJno8Fumd5YT{o$Cq5qlkfIQQq17SF{Q;VDczo>;$=i0NZY%L9zss#aI(a{4R%2Pg`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_WvsFxJacWU< zOlfXWettm!#$v$Hd2H=4F<|$LkeT-r}&y%}*)KNwovn_8Ev70MLssDgXcg literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/energy_systems/__pycache__/montreal_custom_catalog.cpython-39.pyc b/hub/catalog_factories/energy_systems/__pycache__/montreal_custom_catalog.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29d54354bd9f290c52466af2ce07e9b63f3eb778 GIT binary patch literal 7584 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 neDvo>TJxC#AJZ_mPGbHbb4G4MKDg#9 Catalog: """ diff --git a/hub/catalog_factories/usage/__pycache__/__init__.cpython-39.pyc b/hub/catalog_factories/usage/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d126df0a9a1173f793eaa34b563e6995a432083a GIT binary patch literal 166 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HwvsFxJacWU< zOlfXWett16lGJh#3G7Nh>t~ literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/usage/__pycache__/comnet_catalog.cpython-39.pyc b/hub/catalog_factories/usage/__pycache__/comnet_catalog.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0be06d77e10e041d3764bf8da717b8bf192a24a4 GIT binary patch literal 7270 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 H&NKfDZP5_m literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/usage/__pycache__/nrcan_catalog.cpython-39.pyc b/hub/catalog_factories/usage/__pycache__/nrcan_catalog.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f31ba86cc6f3d5b0c30e06062e00f1fba2fe0fe2 GIT binary patch literal 7551 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 BY9Rms literal 0 HcmV?d00001 diff --git a/hub/catalog_factories/usage/__pycache__/usage_helper.cpython-39.pyc b/hub/catalog_factories/usage/__pycache__/usage_helper.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd22447d8eaf4d4c60a27e3342bcba87cb3dd85b GIT binary patch literal 4232 zcma)9&2QUA7AN&V$+D8zPHZP}KE_VtSZ!n^ZrW{&ViA>+EdjD5h*I4U0SKBimY7nc zG9-ga2(X6+d)wP$PyPpTS@hJy9{11Su|4%#6ewz-Mc4XlDnBmZ@13>najUO%Zjd<@PfTYP}$u z1D%*q)X)u;qJ7J>RpS+L2r3w_R7!>j6V#^qp-QQa`pjv&H+Fieg#&MEYUU@HJ(uIX zL{ZnAn#Nku-(_e#1+o9ja~$Dh9!QE|UXGK*izJ8uk^)JC%zl(;1$O_0R$n_2z^9IPxP7L%~hX;Mmi}ir`e(<~na=XLc zJfkO09w+5H7x{P6@?G#b%|U=15KiGVp2HbDkF)p^zKpNn1-yut@YUn2ybjhiyo^`C zbA#N&tN8jG?pt1d59}NGrf=T|dkx?6?M<+6<2%0nfZQWn`0g=}5ng|jfT-LU*}(UF zKhu1R*MYk!^4Ar&)%%!|^m2ExU z?09o^O>_IIsSUij(o0wG_h9P|*IHdddzS5}4w8t|w{(;3LCb)U>78Ywvhn2ju4)dK zB|=}pX+Q^TucJ|4F7Bmwn+35|snb5d@X~M^ z;O(Z9OAfO|a-_P3^ZMXxJQ$`V*L+>J3@hjU{7LsYgLVw^0B`6p;! zHQgf^$)%9z33z^lU^K|`F99-b_KwZn$c{mP*RzE9BJpl7PK?)Gw7%8q6*!G?Qi=-Tkgc!E$8V4Cy_ zc+dr=p!RWei3QA`zTc)-83JL!TP>i#q62!3IWL3qC-@O6TC}ILo|9|f`f zRZ}|#ic1bRBS&%jFG6PHt}!Ebw$>%sHOM4^lW53dZp32PJ3-|HNN+$&KAnNO1x;@& zNNU0{T!;zq1$c+7JUP$GgzwY=X53%p89BnR(3AX}A|W^H;~nOx6TC22ADGHXu!CVA zzANfwgo}sgxp;Trj2wJEBL|M&gFO-)FJ^~%ua5F&ShyC1 z-Qhe7lt5KAXUws3VUC*BGoj3!E^C>hRxCX8QmuALV#eG-saOll zbgSHM`k=7etguc&Y6sqBm^K5_61)B~Yw-YPUur7Fl2qBNDLy2%_xC3tdL7H$+9fb!CPYQfFc8PMAdyUWx%Q}>u+Hxs(a)D|c&Zab8|&zcXJVz;G;V&8Zg2bBe} zzXO%#6Nv;L`TI@C_^scC6g>YBgcUx+3sH~I{xueOhV9__YwTxXEixWMe@l$VjPXg`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HAvsFxJacWU< zOlfXWettgzq~^pImlTyImy{Nz#>B^G b=4F<|$LkeT-r}$U%9iG&+JS8N48#lokfka> literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/building.cpython-39.pyc b/hub/city_model_structure/__pycache__/building.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..31b53a55f4c80fd1b2676ccc69c2fa91876ebd6e GIT binary patch literal 23721 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 aI!TP)rVmiHR7xGdQL!I8O5{J5ivK^J$ltjD literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/buildings_cluster.cpython-39.pyc b/hub/city_model_structure/__pycache__/buildings_cluster.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b668d1fc7cff5d63c37fe16b15fcacda8009db0 GIT binary patch literal 1493 zcma)6&2HQ_5GM7vva&{8r#U!40p=DV@WOC!Mo=VC3nPG&Zjz=clnn@3JB1s<^1RXEgTqiExE?PJ}1jGdu2y z-g6TA^}ldL@UYHukxhM z1>85x@8(B&AAb*o6IcGw$7b-hUl*-r?g9gPi=ziKAJV=w^10+I1%Qy#_ zu1xQj*;M|TsF0e?D63{aAL4CYekQn_OL5<7Lw2$0hhQX$DKKma8ryHl7*p776+@3ptYA#ng4ubGXj{LXg*#;#7@xy01r3|X2dT0?LO zI#@RJUFi7LcfbgGN;s+L8Tr#X1^iS!wF_$2I2;P7IlmwupGJG5 z7g{PkstZ+?)o3_Nj}uia%CASq^FSMxN!?SZGj=){N@+fFao6MwFm!CgfEu}t7FM>kU1;I42ffl$}o5l z<5Csylo`e>GWk4-SJCo4yza8;15WiVn$L4l*J189^e&a}zDQ-Y`r$Ry4yppQ6L8-C zM!@fL{(GI|i`c zaca!Mr;gqCEE@DI+N?YYeRT^Kj0dCxG3^ETbj&u0Z}2tYwUY}{JMAg_F|^3=#uX?H XsHXJ(y*A|^P-Bfio!*Akw|x5(tb>hC literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/city.cpython-39.pyc b/hub/city_model_structure/__pycache__/city.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8cbed17fe61358cd40dace4cdcd060a6bf58581e GIT binary patch literal 15031 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 Zij^r~$LjqrU|*x~T>%GK{r}VE{{q+v-P`~G literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/city_object.cpython-39.pyc b/hub/city_model_structure/__pycache__/city_object.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..450328cbbba082857fc55caedef6b466f0a2796d GIT binary patch literal 8972 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/city_objects_cluster.cpython-39.pyc b/hub/city_model_structure/__pycache__/city_objects_cluster.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..354819ebd061dcf4205310b93e03a18f22e34e1a GIT binary patch literal 2360 zcmbVOOK;mo5Z1@S*OK zE-dI&8^}NCsfXm~OOO2lz4Slu+Ef2RPn}sx32nXB zvkCbNC-ujI$$c2=3m}|$gi~(BG%-AbBHxG`iRqb|H)AWYJzMiu+)NzLp=6VAn>SAh zZwf;=C#Kip&JO9eia$Z1JBae*ul5c_n5#its9Z>vWW0!lyR-fI_v|j)ib9bp0o)@l z(mdLagzU4e&Fw8%`lNRcXeQa+IDo6}AR8acXmpUXKhD_tz4diA$kH&AJPO$0;Wq;| zl36i!w`GPJVUvTt?I;c;`!Y*a5Fd$Lum|x`AjO1n!5+(KFOV`~V?5MLUL3j~&IR|v z!2KJbkS;A74>ktyGPfd?!`t2g(=!QN4QGgF>yJ5`s0lEFcoe*BaOyRll6~+sZ=5=w zDJ*Vs>y(^O&jwz56!<3a4sYpoN3?`{lW_M}%9nWi)by5w1#9iuT8A&6nsBEhI)}@A z1!gF%^OTsxTY-pND_1W^W3uKlc6s>@0%c(wC><0am4b1_tVdE|pEVdq!mkUJ@;; z$aUnFf!u_l3?RgwyuQFVlzp{f4&2Mh&y>?0a%N0!Yo#)Xlu#_qauy}ySR_!vf-@my zR#`QK7+fD_`J5-P z1um(_9ID)|oE~Z?!c}~b$5PPIyA2FRkJAE_PU%ROM%u=;XLL%RQ#y~XG1<^A3^-@0 z_=#1C&+?4r2Vx%Y^PzrHv+xJKHS8L)1v*PR7>`BDVT#c&muiMz^zsU5^lSSc!v%%W zC6-HFqfIC8*YwPqcJIQat0QnOfxp&PVgk>qneB-$@%MY$RSxfB-8Y-??t}&qHrSoa!z0a`w>h^6m+f@G={{l&;QDy)D literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/level_of_detail.cpython-39.pyc b/hub/city_model_structure/__pycache__/level_of_detail.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23d48333c1caf5a1823167890e0d456d75ecd6f0 GIT binary patch literal 3325 zcmb_eUr*yk5VxJ!F(!cm2iKnZXCL|i(jB63PxMrsnyXMNnxo}fwNa$4>)j+qc9xFU zREc;yK106)?^UI~_G9?9-=a^Q-6SR<4hI6Go$Tx^yEDJv?C$urnrGm*^2c9n4}1SA zW%4Vb@)BFJfr1%LR#{<$Q(JG;B2 zE_#6g7W$2mj*r{9X$ZC*zSzSVgW+(m%(_o z?ZEc}bbji~WBwC|xq(p{O^cb$60=z8!f2Mc&C1NaFy5L?hdU<~=H!~qD$Laum%C_L z$TgdJY*AYl_ySt0xn{E(ThbPfduUnCHJiQ1R{il-j?SMI|Ssvlt+dT!qz<;e`Zj`UOVnYw;<=c26cghG_7lgoaZ z`|AvzOlQmFw1+`^a>X0tX~2r|ep!iYAg|)s)7H&jqz+)9^ z(fN5F4L|3>-IlW-=W{kJ9muG3m?i8T_kBeb-REEP(b2q*OKT@5J52uYQKrMN54X0v|CD*k~ iuTnNW=XSq(g~pZzACH$S+9z{g3`6=tZKz9%vim<$(+isb literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/__pycache__/parts_consisting_building.cpython-39.pyc b/hub/city_model_structure/__pycache__/parts_consisting_building.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b45092d4492dfb1bb113317f960d6170e0a800a6 GIT binary patch literal 1541 zcma)6&2H345bpNhINk|A0fct75`Ex+4;e+_fD|DF7!)A|cC`Em%%GOz?qrPY@zC8y zno(|v#2awp0LQ$*KER&$34Gy_}Z5Y&a}x!hxe;27w}|7DXLrsPx}vEvQ4&^rE;Vtc#nh}nd~5w zYKQIZ_V-}vW^W5@sn}+o7^#A&98XksI5h0ih% zR_*LTEp_MFWGr7KDx~#Bl$psN`}j8<<&_4Ib#S(p;&;mfNyee?gOMbrK(r-jY=0mJ zK)0|@{MeDMaD;n8kYMS`j`V*8f+HYo)1e7Rqu8pcvQz)U59)2>?es46rr}Ayo+Dl&W=jsEviW1YYf6j;r8l3k>n5zpoHN4>y90y*B?( zVtu^8iY&5Oo0u6UhNWdOF5x(vq5N?LucO6@c{4Ai3n0~HG~XAZ&coU@nDaWWuc~8N z6X7qYDAWolD&V}mZ@}+z{;o>$S){|cC{xax#@7B=m7qm4QCAQL@}^Mu4FnKmtFct( zIec-3@&ax_&J}hOd!exypE`EevuMzg`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_;vsFxJacWU< zOlfXWettgzq~^pImlTyImy{Nz#w3=M m6lErrmZTQP#K&jmWtPOp>lIYq;;;cKEX_%^16lSNh#3H=*Dme= literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/attributes/__pycache__/plane.cpython-39.pyc b/hub/city_model_structure/attributes/__pycache__/plane.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..411aab13f0a75d0886fa44c7d1201671c689e3c3 GIT binary patch literal 2425 zcma)8&u<$=6rR~%c5Ek2XrP3mYLGb8kVa8@0HRX0bx?&Ukws~ROsdspXOe8S-rdfw zOKrJanjig}a>~EJ1->`CPV2y-vzq5OJ8x#+eDA$)94s!j7~0A& zzsWxvjQvG}*PD&O4fK2qLb3sqTv{<7S_6xdZpZe(QI>R`@qv4rNmqKuOnT3(fhX;| ztlJpu!JNJ8?zai9(g+3fh-aB}H@)DZMT3-0t7OtE(HEkf|0| z;-FBv)l0Lnjt-9s@yAQCwYjw=dTA1-T1J8Beeq3C9O`tGwfZ`JsKNr1QfbkT;y{b9 z(9Fa z=Ci2<2`?cnBW=mBE8p!pWy4Pac9cL#Qaudfa=}-RMnMs!NxAH&S(fHeq3X%5T{^jn z4@$3I?283?B|6Z zg~dp#y`U%%s!^fxy^M~#k&Vly??*{g`2Kl1Qxk%5&peYQgT%(n0HO1=!bVBR$*gXq zQ#Y7+P^RpmIsN1+;1lAuDunqOQjmZU83o-;ZCBfE3zG-tRhMfD|4XhH@M8{LiA5Sx zfvutE6a?l?I+cgj#&77=wKHB-0E_RRtc&rwm^_&GEXg(!iR2E(Gxz9-dYJ@8JZK{SA^*>OA~NS zE^a;%AB$UKh~5NZM|>_e=Rv%Db6wn87rk|{(={`@nlk3Z2nyxNKWJS?gEpBa98ILl zc9;?^C7`Xm>za%xc~J8Gl7}UiX97?*XWn(OL;e;7^IE)m-s6|>Eb&=V&rCy;No0yf zp`~u(@*|WfH|PWTfKNM;vkUA6f9hbhU9FS$ z`Fag$#tQb84okN{B&Y605E%%>oqT2B+KKWaNJ1s{Rq=yTiJ*WSMvtMHViG|j%{x

UtIAuK7sGvy!W_jSD6n zQcO}^E+nI&(xje^#fq$b_KVav>p#PHa&tqv4*2Cd|ABC&ZA43+PfEuZKg{}G^fd>=PXT+cLoU#6k&>m_ogndvlBx)^K1 z+0i#lZ|vWH|o{Qk-x6V-u=BjGSVg2 zMkq!`&wd$^S4P)WHa7ZHatA>n4H>JP8S=9(Ez8fPljKQ$&Wv0TA;}A)j+rrvRQ}MQ z_;~0sUnL%JmVE&9=!kp0zCKd$J$NOWV4xuqcoK_9#8+sN$c{)v=L%ioNmq154}3k5 z0wEhsCy=q&$p~p_;W@Jwc05|U!rNX(AlCO|iI<21-H-zxUE^kpa_#FcfgjtCn#9Wd zq}g0^UL(_kAO15Q4W}=xGs}O_Dja&eYu1MoyV? zKvfNwOe^2TK{anuN>!;GrMEr002?p1Lp6g{h+~MYmbblxYPw)7(P^k;@em3p)l zY)`=u_#$#1A-=@>=;e18@iKDJyLgFD@iP88MEv(FB%=4x59lH~+lF|ujNapmWSKyR z;>GU)=7{CI_7iN0P}Z@MOL8pTYbndNUQ1L-SV_v=ee$g4xe^j~wqjhiBA&q}ao}MNtn42|mrC-C~oEg{e z1S%(+Yd19=2uss!2vxvKRl01_RTZCc-t4Rb)ae%IH*ifDT+~hQHok{5ytvzT;y-7P z`l+9(k`l#YvLJ5zcxhP!pRk{lP7-yyO2eH0h%j(2t%{n}AAsY5Xr-(NU!U literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/attributes/__pycache__/polygon.cpython-39.pyc b/hub/city_model_structure/attributes/__pycache__/polygon.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a6154fdb7100106992af567df0ec4d35d6470a7 GIT binary patch literal 11134 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 Ykmj#s!oNxYk|7mbz@5+^Uo-l@0G7e^zW@LL literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/attributes/__pycache__/schedule.cpython-39.pyc b/hub/city_model_structure/attributes/__pycache__/schedule.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e4387128c5a43cbff4d94b101a35f3e30de2441 GIT binary patch literal 3886 zcmb_f&2Jk;6rWkI*Xxa)k2d{CDKG~_WYL-siiDz4wMwfBDOgdX3go6N+nsT|Wk1~6 z-4vT}YPoSiNSrvpG5-KJF8mpLLgK_3i32Czo3%G~>{MyRS~EK{@9oTczxOqE>UE32 zv-IPy{GT~O{=~`nQ-aA&XmJxdPTGW1uKBc0;a&2zpwun}dRwRDF5x;aKPSBWOlz09 zwnG|5`Wt*??YLdRQ(v$k!k4wPefu+Zm2G*h2x9@GkGTjFuj2{1!M5&hZ^6?0%{AyF z$*%fNBBZq$_4?A=>n7~?L$`AGvr<51~|Z_%p4hiuxv3l znlRUQ;uscOz^iz0tU=p^HgvZGVuRB`4~RmqslKFoUG-(v8=SytwAH9&CEMd!*-rXB zkyY${$4^C^SvGePCttMe#0!KSC!&|lV&5hmr zv5@g@8ptS0cDMU(*O9@{-QwMD`bag`OZqmrx$xltnYu|T#jcYi;B09k;@x-{3e8?W zGi}=oy~MVcP+vTUP-E;jSQ^3A9C4lu*CqJ+fINoiOo?1h=+D|O2$)&}XtcrSfHq@y zMZ!ihFppnh4ogFCA2f4(zmMZ5sQ|(#9vMKxqX0;IA`}urk*j?+qyW{z4F+1Og;t{^ zF$yw0P0;|@Uz0UhQ3&SU0y1bGM`2?FI$~JVqJz0YQIEG8G&Azur?f=}QO<$iqPA%C z!L@14(E5{dwxUpAIvL5^pb|HkDWQ&^zXjA7y^$D$dLbWDT(yc6cyL_!?0J|RKw?a( zJd?oa8C9N3l>y#S0_}_&;7H7#Bb{IzO)V>ds7l5|P1a%KtgM{*7@YDPkgh?gHjP>yER(oBxE1yvs-;6JD{#V0#EksY4^WOFW(x&oIqhWBu>Kq%QsBG_sduN5 z8W(Md)sbW^xq^aSzz)Oc$k`-%+DFiaQk@c;AEvRv{K3#(tRtgfLoqy9b;7*?VdOw2z-c!PJPug`$53e!8Tl&btmY^efi=TnP1J2x zNL7pMcBjy_GB{IMpdg=YgcrJQ?kf|nTi~IP*qHWTi91Rq@+`x=2GkY``;u<^)wF3a zokLuU-h^pl0qAl>Iq*Wry$bs%Rfgh@g8!)yUn&MLL-!Q;S5c#x_!kxBQ&dSsz&QQ| z`TxVeQ2NFAE0Jg6e;EY*0)>4^{GXnHzbc^<1~?_`V4%Km0To8Qn`HzM<~RYx~g*H4N)R;m}cV-p);wjn^lck&@NVVYMC&`cLnBV yK0p4xT-B-CrD4cb+!1fsnE~b73-@w4l>~UuED196dJe!1ym6|Vs$MbaV(CA?glhi) literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index 344ba391..5474e5dc 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -90,6 +90,7 @@ class Building(CityObject): self._interior_slabs.append(surface) else: logging.error('Building %s [%s] has an unexpected surface type %s.', self.name, self.aliases, surface.type) + self._heating_consumption_disaggregated = {} @property def shell(self) -> Polyhedron: @@ -702,6 +703,7 @@ class Building(CityObject): Get total electricity consumption for distribution and emission systems in J return: dict """ + _distribution_systems_electrical_consumption = {} if len(self._distribution_systems_electrical_consumption) != 0: return self._distribution_systems_electrical_consumption _peak_load = self.heating_peak_load[cte.YEAR][0] @@ -715,31 +717,33 @@ class Building(CityObject): if self.energy_systems is None: return self._distribution_systems_electrical_consumption for energy_system in self.energy_systems: - emission_system = energy_system.emission_systems.generic_emission_system - parasitic_energy_consumption = 0 - if emission_system is not None: - parasitic_energy_consumption = emission_system.parasitic_energy_consumption - distribution_system = energy_system.distribution_systems.generic_distribution_system - consumption_variable_flow = distribution_system.distribution_consumption_variable_flow - for demand_type in energy_system.demand_types: - if demand_type.lower() == cte.HEATING.lower(): - if _peak_load_type == cte.HEATING.lower(): - _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow - for heating_demand_key in self.heating_demand: - _consumption = [0]*len(self.heating_demand[heating_demand_key]) - _demand = self.heating_demand[heating_demand_key] - for i, _ in enumerate(_consumption): - _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i] - self._distribution_systems_electrical_consumption[heating_demand_key] = _consumption - if demand_type.lower() == cte.COOLING.lower(): - if _peak_load_type == cte.COOLING.lower(): - _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow - for demand_key in self.cooling_demand: - _consumption = self._distribution_systems_electrical_consumption[demand_key] - _demand = self.cooling_demand[demand_key] - for i, _ in enumerate(_consumption): - _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i] - self._distribution_systems_electrical_consumption[demand_key] = _consumption + distribution_systems = energy_system.distribution_systems + for distribution_system in distribution_systems: + emission_systems = distribution_system.emission_systems + parasitic_energy_consumption = 0 + if emission_systems is not None: + for emission_system in emission_systems: + parasitic_energy_consumption += emission_system.parasitic_energy_consumption + consumption_variable_flow = distribution_system.distribution_consumption_variable_flow + for demand_type in energy_system.demand_types: + if demand_type.lower() == cte.HEATING.lower(): + if _peak_load_type == cte.HEATING.lower(): + _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow + for heating_demand_key in self.heating_demand: + _consumption = [0]*len(self.heating_demand[heating_demand_key]) + _demand = self.heating_demand[heating_demand_key] + for i, _ in enumerate(_consumption): + _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i] + self._distribution_systems_electrical_consumption[heating_demand_key] = _consumption + if demand_type.lower() == cte.COOLING.lower(): + if _peak_load_type == cte.COOLING.lower(): + _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow + for demand_key in self.cooling_demand: + _consumption = self._distribution_systems_electrical_consumption[demand_key] + _demand = self.cooling_demand[demand_key] + for i, _ in enumerate(_consumption): + _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i] + self._distribution_systems_electrical_consumption[demand_key] = _consumption for key, item in self._distribution_systems_electrical_consumption.items(): for i in range(0, len(item)): @@ -758,13 +762,16 @@ class Building(CityObject): if demand_type.lower() == consumption_type.lower(): if consumption_type in (cte.HEATING, cte.DOMESTIC_HOT_WATER): for generation_system in generation_systems: - coefficient_of_performance = generation_system.heat_efficiency + if generation_system.heat_efficiency is not None: + coefficient_of_performance = float(generation_system.heat_efficiency) elif consumption_type == cte.COOLING: for generation_system in generation_systems: - coefficient_of_performance = generation_system.cooling_efficiency + if generation_system.cooling_efficiency is not None: + coefficient_of_performance = float(generation_system.cooling_efficiency) elif consumption_type == cte.ELECTRICITY: for generation_system in generation_systems: - coefficient_of_performance = generation_system.electricity_efficiency + if generation_system.electricity_efficiency is not None: + coefficient_of_performance = float(generation_system.electricity_efficiency) if coefficient_of_performance == 0: values = [0]*len(demand) final_energy_consumed = values @@ -795,16 +802,37 @@ class Building(CityObject): if self.energy_systems is None: return self._onsite_electrical_production for energy_system in self.energy_systems: - if energy_system.generation_systems[0].system_type == cte.PHOTOVOLTAIC: - _efficiency = energy_system.generation_systems[0].electricity_efficiency - self._onsite_electrical_production = {} - for _key in self.roofs[0].global_irradiance.keys(): - _results = [0 for _ in range(0, len(self.roofs[0].global_irradiance[_key]))] - for surface in self.roofs: - if _key in orientation_losses_factor: - _results = [x + y * _efficiency * surface.perimeter_area - * surface.solar_collectors_area_reduction_factor * z - for x, y, z in zip(_results, surface.global_irradiance[_key], - orientation_losses_factor[_key]['south'])] - self._onsite_electrical_production[_key] = _results + for generation_system in energy_system.generation_systems: + if generation_system.system_type == cte.PHOTOVOLTAIC: + if generation_system.electricity_efficiency is not None: + _efficiency = float(generation_system.electricity_efficiency) + else: + _efficiency = 0 + self._onsite_electrical_production = {} + for _key in self.roofs[0].global_irradiance.keys(): + _results = [0 for _ in range(0, len(self.roofs[0].global_irradiance[_key]))] + for surface in self.roofs: + if _key in orientation_losses_factor: + _results = [x + y * _efficiency * surface.perimeter_area + * surface.solar_collectors_area_reduction_factor * z + for x, y, z in zip(_results, surface.global_irradiance[_key], + orientation_losses_factor[_key]['south'])] + self._onsite_electrical_production[_key] = _results return self._onsite_electrical_production + + @property + def heating_consumption_disaggregated(self) -> dict: + """ + Get energy consumed for heating from different fuels in J + return: dict + """ + return self._heating_consumption_disaggregated + + @heating_consumption_disaggregated.setter + def heating_consumption_disaggregated(self, value): + """ + Get energy consumed for heating from different fuels in J + return: dict + """ + self._heating_consumption_disaggregated = value + diff --git a/hub/city_model_structure/building_demand/__pycache__/__init__.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a86a713dd2c933d79c93a28e9fb2d72cb17f3a97 GIT binary patch literal 179 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_SvsFxJacWU< zOlfXWettgzq~^pImlTyImy{Nz#w3+y r=A>lirN^hF<|gK)#KgyE=4F<|$LkeT-r}$UsxHk*wFBAs8HgDGqLwhi literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/appliances.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/appliances.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..021d6c359ed830e0943ca07ad465f8179586cbc7 GIT binary patch literal 3032 zcmbW3&u`;I6vsV|91Y3h+U1iph&x6RRmh91$7lrSy4ilQh`E{HT6teSB@QK z>`IAxYySpLTsZb0;EKeb;VWGD7dY|WByrNz-EQk>CNrL|XWskFn;&dp!8PDn`t=X~ z`!QoLt|GJ>-&(_yzGmiXN@_^Cim)|w%p^Vd>yCdUc;V00@g`_({ z$RzzHjuZ<|L?YB$kO`wrfSk!myTnaiIyc&uC<~igqH%~Xx(QmLa zfz}x7S`cZr6wq~agQ{A?(k8poQ^;A=ol>6S?7WN3(X&5Q;S{edNkqCHp}-E}S9 z7(?o+_|2%Tt;WKM=Mym95(Vky!#M6xFzDDO&HdCeMiZRL2nFV2Ms9-;^nKG#d9=n zg!j=D-mA(x()}c-TkOeAXtgs%XmLSpqV=~#`#g`{;VyX_vT$oCCR>}?abKZfBdqUE zVV#lPk?F@d(?S<+LaMzeLi!F^{rV0_zs-^6$Bcf%S;D^W_XPdy2FO2+Zx=u7?=FbM z!=f;T=kg)iIpfM;b&7E=xSlTdeu^6~T(116n zVQf_Di+DyxtSdY(b3Hs>;fe+2s^|TZvT)Q=@jM>;o+t4f&77W$;Xq6J5(8|w0pV7j z*-9jEb<~@V#N{DzLS+dvTqF`lpW31HUWKQd#5){r80raR4zWs3#Uu|a7IB^H|KD>g zqQ7j_EAkP1nAu6c2bY1NT{vv^1a1$FqMJhl&SkierioCEG4i32XiJfine$?Z=X1OX NC_Jexdy!O2{{yBlyUPFo literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/construction.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/construction.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0aac978651156096bdaa39c807775cde4e0e01f GIT binary patch literal 3899 zcmbuCOK;mo5XVW0lw?}+GY>n@ZE`RK#A+Tb&>BIJz$t>Dj_M{b+NvrDn!C1{Qlc^> z9Z2w{h%Y_%-Y?)U(L?Y30=)LrThBdpW+{=BOuH6BfvcUJ%zR)Ui{k2jrg@0m4W7F&U z0fctocwH782serRL?FO7UT;79j;*sT#}-{*VC@AL-N4y%1Z=Ra=i6J@^r&$k zOApw(YvDsUX0H#<{z1V0IAIU(KYYY+7TW{vSZwplSDS1fys&3%gZD<*0Xn$=w(YnU zu$L&uau0EC_S8MJKnxfcYzLfO3&3GL>eT2You1gEfg84E{EZ7z>T0BKS$zRES=mcN z;|bpWKUfH*r6Q#QSCL177mt;eCUmZG{aAUgwo0P(rp!x;rSmecNKZvn&@+=*x|rEl zx$&FIXLJFG?Ia%&hdF!pB1y{Sx79MFY+bnsfsFkmJ>_om-uDrsfikT zt|XSuuksb?nGSAm~Wz(fi z@}rvh&gpXRoe37kV6;3k_b3F1jq{_%ee=+ALlIpaHF$>tEY~%|p`$u-&|D{Kr1`?# zJ5gW`rT^RB+-UFkIB7fVfaeA6?Y@0rL1!36$U05JY=7bX@Lq z_f0N3R+qOi^b&ZDUO%dsrqgu-)0`((3s@*>Y3wt&oCV$(^*;ripiAH-tQ;wCB*MXc z+#AN8i-2WkX0%Z0*#HrQ(A{9DN;aIRKp_u!TEqY(1t58mMvtvx&8OW}N`u8QY2>w~ zhrD=EJ&6N4h>lbl2P*DvVeqM(@AcWz6PB>{ z5#B?YABKto?@UxW&6$ge9;>GsCQy<0!%?Nu&OmjU%F#vf%P#uEi(E~HZY@aL(J!SYx{#r`QkHRPNWQ(0YObh6@_utM7M z2vL|nO@&>M%e{n4d_FOGK8@4ijvb89lxh0B_^D>kw->37!Ri>GY_BOWJxDN}mN^D1 z(b|M-BsGuJb##1_D!d@6N0X%F(VfR@&-JVXScO#N0b3fP$h-l*Pel!G=V8nAodVux zlkiR{A48bRZ^8{ypU3bfI;>Rg1sOh07zSWXW4@7ugk+x_DPQUR1N+x zXGl&S%()@V;hWP*l?|@vfgJXm0^-vI;{QrNljbdwpGWgHI^L$5FG%y{xip741KWwI zGN;SF{kZe+t8?(u8!s2{l_B1VJfxpW9^B2tJkfs&+^^2Xeg4|cg|?++%Aoxi$LVu;%~Ncj*tq+V~!1GMQOYm>1x)!yTYee@T@NR`ReVfU4gnTbzgsdm`@-oZZnwB2|P zYp&R{1g{3oyxUXp>6u}_->|LcTidLeXHl+1%vtk`Z=38?*rOcMvCB zv9I$?^W;Jr$v#gmxRQM)Bs)^^F;^;PU1VycW2W6`^l&5M!CznssXJx$D2wx~boXOz z>a_F^qce%dM0h?qszB_*)W5+ZNt=QP9YNa_;fTsLX}hv2J>kmQiL(J-`-KWm)UMqt z+V-V?J|}#jh^6lG&56MB1u_7>d7zLln0jwPELy&KIS+hGKq24!kZ(aQZjiC;WwBy; zm*f)gt^$R;OTq;l*UFUbSOmEw;a~-y zz}~TIMG%lhTXnbeLx=+%n_d}&UCDn8Pm=si`6Sd*T|lgaMy6e+Y60Z@ecasX9KjvkDN>c^rgPAX&bUg4v7tL>#j%|chzcPlWfE$miU=R>92apS z;_MW3NqHtZVi?BZS#H8N7>kW=4^$1~EH+`djOIZW5kfut*WbA7pT>x{1%cx!31YG- zSE0MCt323Tl5^{n{wwe*V|&uDks1utU{(#5>gphds^(muJSj6;Ig(PYSs+VO0wg)f#E7yK&S!C{b1|;~g{A3LJe1 zQ@gMb&!>;XL_UPcIBX|@Nw+O3T0&(J41($r0Nqek1GQ!XG&h#=5$ZpL=z}SU#%%Y4 zg!o?~Fi_MjFazuE0cQN*|Fy2Ao}h7SxM0rSMxVl{Yrq_u^+-^@8G|w`7HpzeU~&j~ zs-)DcDH9zRSgja)I6p9{XS)BL8TIIsTaEiqr+}Do;eJRS%$xmj-n@;S_os_mMJuhT zv%o-IUZ81jnIjW$jHvbjjjGZVR8EC1qk$64ouRqvx$c8yobXK{V8#jVI z)YN7}tv{U&W48NUKa~v=?tYvd|MK)5BU9VUL1O z4cIS);ZFrmh9|W!6nPYeY6-5EeplsC{7p}x3kJYqjVnDZ4YVzrSqc$V_=TqsQiXyi zGSKECHUWj7F<3nHQ&@cJR(#K)>ou1K{_ub8mfrMTYHzgaHHE#t^h~b{O?03NiYq^c ruG^T^aU0OK;9IOPQa45z4U|J2W+_+tpAJ0o0=uThM&^1ebfNMOX>+6k literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/household.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/household.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37e5502a3481b9ddf682dc880e566f5c4d2101e0 GIT binary patch literal 1180 zcma)6!D`z;5M9ZNt%xK|0xcz{x%vIu44sBtIkR(Hn}C= z(0@ojpvNBi8M^i_dg`p4I8N$97j~GL9gW_5vyxa}4;Zbjuixc2m$6?qSX?y<4rrTa zWF+geE|ZRQubFhO+`c1gC#>leKj<(x)P+%F9ZN{GEMgU$^xk}gT{wzDl^R9fJE_t< z8bu1*aMbM`QR+o&kE}-6jYY07=;&;M(b+hMpEt0-x4#b^orW4^B%t&5LkG@K7g^9l zeXhcs4y8iqMX^A5uTvx93zaK)9bX7kQ;-TyF&YZQ2r^sLO6Ele;a%faD1wj}JXmw$ zdz4m;sItB*oqkQavUbh-o?4NfT)AdfPQOlmT{bGeA$^i$wOpOcF?|{U%p(Y6VGLzL zXW@O;C;3^2w%H^j*(KvMOK+x*&T-Q%w|H74Lxo(Ac&2m~tMbW0DimmLoYFHY9^Ejk zQ=i|TI_<%!QD_E5f?DT;-Xt6gOl}o4gK;seb{ORoPLoqHH#rtzUZ5Hbizt>+dd8(n zL@Ed4yBW8#N$GPQrBTlLhDGg>VNTtdZqK>4?h5|mYWY@NEyhcBUNM{=k}LpSmBWlC z=n>3lLaf9E;eaTGe5_!Oqk5u^iqNKQI?by@(?P2yT1=G;Gt;23+Wa0ooj-(Sm4 zoshp!n0-nhJc2jghDMSukyKhf4Xmyel)5E~a>=)Ya<@#$E|In@zap~y(&|=Z<&d1+6*^CV1^4u!ufypRQvOnv1X9z6bu-Di8AtHM}8?}=1l;+=R(@36hygFP7fy!`;$ zNVEICfEAoh)E{WCcbc$2FWB~j?QPbHLO0UV6Rh*i(+=zDDD683I(nhp1SX}@Y&Z3M zU%^)bOKUY`Ju{$#sNI{41(A*t^~jy9)^>&SH)u{;R#tu%dQq6!dtRKhXjVIPPZe6= z;{5DW2H_FBah(#PNS6X(mZaU1v}EZO>DsESD$-Wf6YDOJ^aqs{S$$={q}`gTy;zbp zkcg2+I48#~Nyp%p)iU6gK|vF^3R@4gMZh?fjl`(Ert=%QLj<@Be!8TPBuy;U0Y*X4023uKuHUx%S4r8+e%=JYa z!=MYy~X0A z5z3=Eo!k9ER^woYmvG)hR^ZGMLM!=aczc%C_5`~Raa+*}b_lO9j4T_5E6_P7FARUf zhu{pxc2&YA8ZcxnX2_|T+ZnC5!}g<4;TZ)ZKyfqIq8eAzsGebE)U1M-*|@@8=*8$; zQW-YqRK{7?%-}3M*w3S26NGarX-f5a0=<_Mq5x#@xi#D|dmsLn&V8Xpz|Mr9s-0Pd z_u-tEzyPE6g{2#?PgXX#OZw||nEC+T*oKBwYV?|n{;-JAad^%X4HEnD(_nj^>YVEn zKN87=>MH0_NcHW)$p09XA9MfV9QTFr8#?3ZB4=E~+&M2zO+_b_ji`;ux6p1pbJOV3 z7$BId-qt&Ni@Y+854_qum!W`MtRE<^4%gIk!jDFr@9J;yP7 zZ;r7`z?;wom-*vG@mgrpn_|_NRYdu_V1~K@<-ZnF&hoOr%uA67lQG#tCc*&=)8H7& zSWK;n7bwU;st;42vC}A>8P+1~DKjp`z@YPF`}3swd~U`ss9s*=v87y>F!$BcaC6RA zIb^Yykh*hBvry}sH2a&``AVAo-%OwL?Irv7^*uDd$g}Uk#9(T8YaL6cPy~we%;8vg zK@AW6I_JNn!XM96IhT>kxn6^xX0^VK`bsAQjghW5u)+MFRbrLEACl2|#+;+^($jc= zHHMTfVS~q5qaHI^%H%67gf#wLzzh+80ZonCcCBX7t*T9(Ykc2xY-(26Z&fvxBUuG1 zC#b(hn&S4^Cs1j&i>l1FNT60bP7@WkClN4G7Ii98HmiL#BJ67{7h^2$?CKh=m;MC+ CR$C1K literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/internal_zone.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/internal_zone.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb878f5ebee7ea03fdd1adb65f40dad051d3bf1a GIT binary patch literal 4668 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/lighting.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/lighting.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12d9e8dab06bc4151f92fd2cd7d98706c0ab7819 GIT binary patch literal 3008 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/thermal_archetype.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/thermal_archetype.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..732d6d0109da5676e258c30ee9dc55c22f0c3501 GIT binary patch literal 4095 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®W#k>IOT><1EXS4tY`d8kga5cTqUR5S>Fuul{_W)2+wiz zkZ|+Bs8~F|NlI4ZcbKH`uqI^S_-j$9WaP6T;tgLEHaG4*X4lz$&lO=Tp!PWzq4KJp zkgM$ey^Z_O^-=i-$Vjs5zN3UJtVQ*v^mb~B{dUA|-ne;_!K7{^x#zI8&%Rh=J2Gn2 z3mY=p6|RCoE+pIVd`GeeQ5ZY^o=}2)>hC#Hv=|rck@U75DLqz4P&w#=?zo+a%dS)S z3zk7jG|6~jwPYl@N1+#mN%p=ME9kX0-I~BPxd`iha?rQ~CB8-p5u`%Fpa!Rv3^#b@ zkW{iF$Fn?lNDgSlgu2P|x}F!7nBtZwRE=|lPyIxBflnW10W~eAcW3wvwD6tjA>1r4 zYTT@t1>7lUA#QdEH^=8St|*FtTYwhgif!B}F?Wu1e|wQHY3#h12kdERA$EQw_6%Rv z*afiw*t5_=?7~RwIeuPa7sVoASD=O1MQ*{?xsVk5w@vGOfwBHB=K4+?L$?do?LJsH zpsYcOuY%xYpV+Ac`$OH(GNWZy%N!@0_TL35P2DD z6lxS}KO5Nk1!%ItX?DRuN=EA`cpGE)gktS2%)mjIb`S`sRWB5rRUuwGti6|5D+&ek zLbfLS*lVD-GPas(waV6U5a3lma+Drg2g@Kk$;t#Dkw~H}qQGt0L-v``&igK)Qq!3Q zTA)SRx-vle==WUQeVqsEShU^n#}(P92WTI#nYPXoy@buzwNBlUPQdhTUF|asoIKi6 z+CoQ$JOxT5ISm{zgnSEzK7CGz>vZbf+Qo87T>-|BO9-m~5rx#7U zuTQmh)c&sP(I;=DKK=(Rv@Wlpff$Mb_VN7kptKD!-nyeh}T zap`~Ocovs6;<%P?!@%M3+J-nDiq6M3o>$`d#BDK|8(@YrCq{OPr2%J(i zWd@pQ8i840VnT`zf1XH89VDJ35_1QMH!_KVCG|j5tw&w0INqNm9w_L%@huP*&1Nji zpanB6XA4BTaimo{qa-#z4z<)x?4`Y zUe$1I{rPL&eM!^)OO@%XfXZFm(R&bFYiV5PhOf7DJPW?jE3^tdvt{bkZu-Susa4iB zQQ*aMy=C3gc!`&vYP@`Iv?|auLK{+Y|DD-M@EyA5A}Lz5^Lbw&y#skk!MmKagIh8?%33u>E)T_t{|> zxS`~p!w!G($sy~=FzHv1W%yXQF*>=B>|WyezQ7~K&{7OpM>WV^*zAnkdZ7$san~J> z)^r{G85ayKvGg7#aVVn$cI^3%WFLn?k(NIl^u=e6Op6Z#FAN%bx&vd{UMG=GjD`<{-xo41ABX;+1HI_I>B~grF7D_L z@UhT9lGZY~-YRf|7oKV@Qxv($i%&I>QxZi{<|SdZjawk-FFLn)<*A9Dil{uU@+xYC zt1RHwcunEf#2RpQ)Cjk>fLrGq3Re>~;5JbsTx|ij#kUo%F6zMTphmd*0`3}rN#WMT zI&jxfBi#A|?gqc9a2sL+xLc?ZZesy=o9`;zrq~4Td#Dj^a{>1(ev84#!Hy!uczy?lYDr)%GhiZbA2a@(CmV*$wg%Y_aW}+0|>62Y4%8h zQIriO3rdG-~#WW9#lP4_U)DdNjJ6?RuR zu^me%h}uHp4@A4|xgG-9_5wt#7fR^R^;UdG{QmMCk#3X1Q7lR2Ft7t?d!eUhB>eV; zCa=R;|FaJdP98==Mkh&6hGBeiJaD^?>}44sI_V~l)a}A#8<|J=_GrXJijzl31RN>J z=A!2W{3ISFDmxrys%C!xzrYYLw(T7v=o*Bkmu7xdy{Zpy%yQivzm?DRZH#oLJw_@` zGa!u@0n&6B!&ZctABAH43r}JyJ7CXr7S#sU#zncSqs|0Su47f@f5M&`QeW ztvQoDeuNxW8vVzD-89eD9H$X78};GQf{mH$8O>Pc1uXh1L6P;4Y$XK`V-qWm$Q@W4 z+J5N7s;i+(3&St9z@!ly=#41cw9;^APJilmRUh@^qVgm(X||nV9ZYn&9iw!vBiv9| zRDGoW{lOGfE11!D5PnR>+`*I$v@{fzNy?TBLt>@Y(xL*+(IQ_)*N<^Wv>0e5OJC9N zALsggIz^EGKYzP7vhHfPSMc{s-Cmm>@PJg!+`l{L{%PC{4Mn^}=Be4kQOIcc;*ti; zC#-ykqc2b@D3YjTJ~1GRPp~4M8M_)}VOP7M;XR?`Y4anZ)o~AO7adKQu(TmQd+spv<7md(G?d(MYm+sUFg~#36YlNDE-d!|0-bb z;f~fJG|NINx~7uT8>`NQ_j6~0S{;x|kb4#8>Ipy_%cT=wZEBVIgjCJ=zdgtQ6l{im zg43<&zcLEn%_VHXlsujq#)u+i4JEvJhyM_5E!@u=aIIW7tF^P|#jz8(f;lk@LfR~2 zUb&RfU9p1m*GSW4X}g>)>Mp6AIsW>b|((v#3zEEu-Q`(DO^& z&r8Mqd@9EK9t!G}SDYGjSmu2BIyz!fFmwFPImb_ee`daaH|Y*(Zk+aV(%pyoMCQ3A zk2?7ptR81O`UOb)t?4!R0?p-Vb;E^}?VHT{Y@8~KT!X4^RT`B_idwt48!oGH5m`&F8xh`gxXirVJIy{BF0g1wAj#Y zP0~I=Ei95!+0+6=%1kXlYAI5y5FJrBa7V`wmTnfTnxR)KhJLeb>QyUyZp_u6)sFsZ z$MwB@z!&i%DSAGABh`P&CCj!bOSB|=ZLQ*U^t8lXnHD6%3c?o~tTR36;c}n@=sx_@mb6IK5v}P4amRfV#yewI1bLhwzIa12 zi)QIl$t-=MXopPYuCz4X#i&w#ZPOAhqp5Y;mfGr=-KLeld;8kE>KXM`y=t{>3#Ap) zYCH8>-4YkoTQ_ds0_dgXvq(EaJ<~KCOXRP1wsu5)W7AQ8{*`+E?D_NR)lR$G5oX;` zuU@}%RoxJs?pFS`=rpXV1EgsQ^+vbeY+A@1bS_g1yq-7?zM9lYc(Z*4W}c(H7}WpB~i z>+KDc3oC6N5Jz;HfRwLwT9)n9t2aB&J48O};cj))BJz9VLH#S8 zZre1(PQOF?NL89;{4a%SQxKJVv)Dq@*&4ii!RMwJK3Ve|ILN?Q8=F=qj zA!DV?teN{%LOF|a-W=m{4mI;!vtSmv<`^J_4VhsjbDUvCz)GfKjWPn|YFfW-eGv-u) zc_G4l$9#n`r$L`r%?rHpGpq$JdSfvSusfSq)!4gQZ5p->*lINs<2fpW*`%w)c7KV) zlw3)dTm`A@CXp(xj5NXUB&R7()0}2F&AJKH$#FT)=@_R4HwAdnO(QLt)X%t!c3nxd zO&VdGYn3^j;IzW&B&SoHPIEfL=`5#noX(pPR9|BCjkTo(FQL~>Z(84io@hIIJ&;;` z7gFYp>$OhD*%E;2z#HDA?)aKgU-#v*ZrR>(-7w9%13h6h`*=||H!QuYKQx+M%Ujf~ zS`9j{{?Ll5RE;g8T6cE5!x+}A3!s}j`lbb4VDfOfFwm=a2F`^dfR=9W*pAiG zp_-`iLD*W&%jgd~&2G!`$~x)cHZ^W{TkDqaru2t(>m$8pR7rd4Ed!eLV{bxtIt~_6 zYj!%qUv(vDp?7M!jk?y3?TzVO+rR?b2Kuf9FE!C=1(fvi`evt#ZcSqcWu&&gV;RDm z(OXt^(`eVL7{sUxonAI9)aitZ)ywJ4K$Bt|BT}*W9?|#NfLgV&sPKF6M$l>E3z>mh z#rTf?5h+#>fhTJ(WxS+qHEUiaY!>^BQzKa*9gwdy$O+nnPsBJ$@_mYYC5aay5&wGs z>c#u_Y)jbpyDb4$x_^5I%N4C)2ej{RcGvkKKG3oAT1`+`bgNERSohbl5#p0==%&>& z+UEUm(!`s~TRUD>2R-VJuB#-17m!HlwEX!0>`46X)LP#HSPr|zhLjc-rqZs$NQnNZ zOb-iw8UP3IRi|R@siL~7@W=R%h4EB{QmXI-h{p2jYzJP=$L@G&2@5U9_@~AI6uq0XqJ>0_= zDA1C`oFnf+*EAB1v@QtjWtTY3-X+m~`r-jI6GaMz>{rg{li*@GqnM)?vrS=v6m zLD~>Hj9R14wO-OykY7aIWFzM$%*4F(KoRfq80f#3a`J#C=dp#EsYS_6>0@Y}Lcb~Q z@!jp)^bSI&cmHgF&;!KuIUU5WHoL?;>Xs#7!Z{FD^`p8&^taSn2h?}e_xrdH&iLFr z3|d}Z=FzTiTvT5@d!|#X!6ejQI(tS~cAafPqdEBLz`+dgWZjd`JR)8Zlsqz#EEU8N zWL~lgW6{f+mbFDC{D#V*|9B{2VEFMooE~PN4Le~0i^Pd z^{2eAQD|$qM93r(DP53v&%{ajjcuQTvhR(iY-H|5gbmF-;`#5t*m~(nNJtx=xQ;|C zhja|P5mSU4AsXI7G z&EjZVFm_G#SBRN|Xt_AtOXQ9G(Eur*A0%ae zk^6j@r=X;7U<8(CY|o6jLW7j7)&5IKd3u-#2a&Q?6SD`=5`1|ORcf`p0b=gs%Y&N@ zQFHYE{PJjC^xd67wu)(WS$TWwpGN$$nErCRXHM%h8({sfnV`-WvPf51At@qK>sU&Yq680YAH^{TvXRHi>F zN4qkKl8d--R~8iqrBBG2z&l%it308*@RXU92&cIj8hJ2l zjh4SnUj%*pm8~u*UIH(?z9q%?l`dlf`wTrnmhNBU3ATf*Jn(VGfS~{nJ4EZ?pwNQ- zTo(6DrH2(X$n`lvE|9AAkd@Wd~?2Xmtu>`Xe2|NEqjU`hU3nnVUrG zG`D^uX#L}01}UDa+sg&;BfU&8cCL{e8v7rET9=}+&-d~?_Z;S)r@4bNub@P;8PUV% z@^%?dIyR%f+x}Y)lZBo@V)uHS@%vhh!Zd0SrcwPc4OfhO<@eub5&gioG*{W#TFMCW zJOtU6-dJbLfa~Cgb0Sls1D6Umt?ebr78lp3`fEs*#+YriydMeT$XC=TFp77)@lXnb zZoJ76;UsN;q-94xCoW-(5s34G_*9E5#-LyQ+%V|;er~>lmOsa1(;}n{`EBI8LXS*ATA{8k+?MQ0(OyvNlepF*zubo zap%Y-8RdXNP?kxIk}%Poq?2;xM%qkF!TX2*pPYr7Xk=y)Sf7<%g(lGx+b7U2frF#; zj}UN=8TXmp*GIDrJEkf*%!Aw#D#OrCU-cyMD&{P{L&?iX9(|3!r7Sz@?3lAZ?K|WN zH1kq8$7!45x2eJRkbLDU8aS2|6x{!DmQmwh@YrO)QHY8@52dHcnVyLgn%i?waX_7t zIZqF(qw^?m+~p(-qXbIMks@#@o>FoZIsl{RuC!gku^4iW_sXk?XXOxx)X596my%jV zSP%*XQca3aGT6)6!3m7*Wy2z(6ajkQ$`C@`upB+CN5MeU{142}&LfeOEVzy027}?K zQH_S!iB5EQxo@CA?8Iz@Q21SXquoRjmzbeQ7ZVW{0(O$YI?$mFFcY(m%&bGZO=5TD zaje1tTQ)JViqSmNHw6MMlk{2RC??75;N_yQuXu-m6bJQ_vsC&JNecUkT|$8Z3?!Oq zJah8ybet2SZvHn=2K4Z4Zwg_5JIbh7W73jPWl3@s9%Mm2Y zkmU9S7$o?hh(%K@Th`O0DUoN$_&}aTik)d5y9*4nbR$Qj(fnbkWe}4F8F?9fjG>QQV}kp*f<6kpBB)TJQPJyh zP@xpfIp=0Ej|sOhFY)Y4FqvL=$M!02iHtbBop#62?}VEHEYF7BKf4)T2ODy%0VjPecN`yIkYe_7QO~|?PekuHtZCbHs&~w$!g|xv z;jTXn&i-JT^Q{1#&aXT*sv->Bk>Jz8!5UL^u_Ash$?YclqlJ5q?d2lpN09aIC25-z z@9}I+!!d&W&8fF=eCSwPUY?5xA!EnBglfL+H}2bhmHu&Dw4!o+CGb8R9LV)2&VYg* zOqkxpyXaM$iuEL{nuT-LDjoOrXI=`6ILkB?6NnfT$&lIzF~jO3#0;wuD6E?&Jx99@DV-pPzsK(fDV<;JQ#wEWA5uD>4k#V5U+F**Ef1-kOOe_MPp_eM z{F63>)<$ca@W#*xW%CR;R?t@CWyAh_U6Tnl%w$Zl)C7+4>8ettFOd;!JP^tdAT;WG zgA!5|Vv`cm6rxTEIWXb@C6_2+moQKZ6Vb_hs1*dA!iW|nZAw_?C;QbRkry38Z&9*M z2}!jOl-QJz-y!G_WWNk|0VA2RO%xs{!-_ohbu!UU(+QGZlI0Q%ar{4lT$f0$2M)tS z+W)^;{~s0WYmr#@Z=!s&VD~Quju7n=#O8Fu>gD@=`X=l{LVZNZ$CT_)^3>8g8M{35 zSb3d}SNx47b{CW0`)`%lffz!cqysWb_J0l!JJrjG*kB_X;Z%RFh?BGx_hbj5MLa1y zX*?M`Sv)yBc|2nq*}hE=i#CM^mO5t@-7COWFEr-xJ|Efl(K|2;zKxH&a&hP)LsPgr7l$5V zXnK2Z`zOIjpG70N7^%=WOuh&#{}X1qhl|PBW~pm37m+$gFgkmWSxu-Szq9Ek<&xCS)(9C ztB5I>CkdD>z=LXjX%Uq2ONY!1FePm5vVPc=F&^DzgaHG;BD-5N1`5>&bYZy+ALU3)~wERV8C z-q7+b%V_%s@6xlrBl0W|g0Nnq>R4X-&9_#sU49SOlT-mGpJPh94CK3$;pA#FYmBQ~Smfn?uC`LU;*8aB#;lYMgoKJ3fB=n?scB2<^9o zevGyM1L;-TBtlClEuV<|8H%cg9t#Dt$-gPfid<&9C`_{ng8MPpGTM>{RFO|9X_U*r zP{6W;H~*jN(m%byHX68RGq5asK-<#A9b!<{wp#~jTUi|OrE8S)6KJW6h?w9$F~U*F zMly1Cnaa?msxT$jh)zg`|S@8LSvTo<=?Q*&0-fS2bB9MDCdud=nk!l zb@*RE6Ni+_x?_m9%(~-2yrtY;A81kJ7GA7HVW`E~ffnQ3Ld05>_P2n(7j9`U=az$* z&JPg*D(bUt4zOYXTX5kjqAx{Ub2+l3XSaV1Sb|~i2CxFdl8F2NI)Ib_@%43T_wC4X z3&TDTd;0YS>FA+rs9ZTZQVS1Bg6QB?zhTUl6R&`~AJM_j(wwi9pF>%Yh2gtt(fL>~ zs5ZlToG!lL&`q~-aIn>Z1Zm|sXx*qj2x?Y4o#sGIZ*lXXQH4%3a9v})j(d?ikrJ`l zO%pu~?@io%`|?%&^4phJZe6~za%*MnJ+$0EY`-PyU%$MzvU)?mdwos6{T9@}w>UI- zy#CdCb~2lMVI(WDM5lqp{NqY zpZc1+A8VQdwET5e8O-wv9Z>q(oisBYGVKoBObFPWb~$4A0mV$`E>QscL+mDw6ojd9 zr5Wa{f`_jBM2+JpZIFk$wO%(a15oL!!hi zT511J$9M!j_FrA92s(Qd&r@;{iB}1S?f)V|u$xK8w_a|`G9J*cJwEa#@k@n=bh#Tp zEkWqmpdTSTh4Wb&ka6xlh*;syr(tU2zVJumYV$r|)aYzJ9Uk$Uj=oSoZCvS3uzHK6 z_8JOOx-YFHjs6ovgufwfRDd)h9<1yh2{sG9C_PN{0WpN&^)Cob;RWo%!Bm85>6cRw z0r(v9?(K+qAk?_!grDZnEnD2R<@?j4HZt(k<1SSv`0lhggfYb;C8O?;miPY%==X_I zbObM@ah!c9zS8|wmvGX)Og~Pcs|UJ{_&oix1wU#;xuEOYU85ObGCIC&RoBHi^y_7} z1g?AtXGauiS}#yS4D4S_d7Vmh>su5kIYmi=5;`9jHz>JD$qFUkr-Uw~iCdKX0Ew5z zjtiGe+#$$4N|p&+upMm3)t2RKc1-aB!Rd@z&~dEzAtiL+BMeGNZwiV>a_~k_oI{WW zz^<4e^W5M6X+!X(keEz-K}r7{oJ(g3M!J|jflZN9FknvlxBN3O*E5QopTU#!%N4xO zW&2MaWqt^r!2vqGzkqTHIl+p-GmiWmp4a^6&^6>&@SrY_y>wXYVPtWI5^}G+G-&@lGGugW>qUcDC&0&}{L2_GxOeX*D4~_A<78 zFm>Cpy-Wb|auJM8L|=wj%!mg^F{hV(&6nEONmbeOo1J8qoJ%N0R)`c>_x~#tUQhfd DwA3$v literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/building_demand/__pycache__/usage.cpython-39.pyc b/hub/city_model_structure/building_demand/__pycache__/usage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce6984eb48a8db5870450d888a90932fb13f88e4 GIT binary patch literal 7264 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/control_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/control_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d08df8dbd47948cfd7b4e047cd385896f42908d GIT binary patch literal 1091 zcmZuw&1%~~5MIf$t%?}h9zuKDYYs6XxtUT@+z<+>F*Si8T$YV?;wZ?HGP?@M-Ju{Kt~-@9iJ(VUZ^Vs#Nmf(U&2g zVNsRQ7>g@N3=> z2~D$c)+Fqc8yJnvVqbZ2OZlpG&*A{uDp2ivcIU+%=v;MG=h0GKA}DNngxs<+ailEX zM%>Qw*Ta)cYE9n6d(zqJv=lZZ(RNRY-7-Np)$~S7FYXBfZmS4Wm$3AjKtp!1WZ0(U z-(QD=>8S?P(`t@IVW#6cxs*76AWTm$t8*twYHC4?f=p;rpqG#b*oXlHnZ;aJ{O!;ptJDMA-L&`0?aw9GJ!~o~VVAik5&gGl~1cH?h zI3Y~)ne(A-igr70;MHXdHi7-_C21>MoyF@-TsE9I$dqG`)vc_lzV#f{9#QQt4qUs* zv$#r$a?WpLR>20ikwdrRV?bq_woCX2CWaJxL-K%fL@$L{&E*_~Xd+>ELO&1bTS8n{ zGJA-0g-}Hz1a@udu*9MSG_@<&bTkne6w}l+&Ap8R*;tit! literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/distribution_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/distribution_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..54356ab79dede4a0e3f93cd37f534e476c4de1df GIT binary patch literal 5572 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 Q<_9cJ6#heEmaF;y0nIEwDF6Tf literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/emission_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/emission_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77b78e11e4e74424597cc57abfb95c3514b5315e GIT binary patch literal 1898 zcmb7FTW{Mo6sBa^R+P(b*oGAyKw2g4|#icF$Fw;fUe z?B=ccGyWUHeuZB5FZQ%^Xh(`O&uA%-;<=Fg&UX%_aDP8w*nWQfT0Lnq_BRQ)TMLD! z*!3qkNH$?dOghrNX3~A*P8``fVLh+>3ys0EG}b!KGp=XasFbIEP^rQ7b-GnlnVGbPD0?nRfbXr4HHQPx$BMa4>zY73gW1LY|xHcov<9kgn3Ar|0D>+oRabR;OtLWn@ZF)7AdV zV$oBzsvfaa^ov>L3lV3r5n`X>>EOVe4nFfw*U9ML`2B|rBE*tGi?7&)4SxO&^2Yg* zGE|}};lzMd4L~8ZY`_s^oSj+S!U3Wb@Nz7}wy}ecVihzDeu%OrN7k8tb_ZVL6OlU7X#+ zzJmIegnd~PMpd$nD!MNlsq$#$7tP7@kM58}_IIG?K}}Bs>Hmp2AXs}eSSlJm-b3Bj z4XU@~QzT8gFh6YJOdqYs{ooRpw9%Y*7tGn9k1oLT_@;z*w^1c ao}-=%ALH8!oA#^x@0VDgkh{HVp8qe|puraa literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/energy_storage_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/energy_storage_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2abd5948de5d0d5ec7480c678b77f8e4c6b79074 GIT binary patch literal 3379 zcmcImSx+NJ5T5ac8SDj?J#ws~jX1Wc7=5VUV zNcQr!{2AW!3-UAOHBb2qc}i7}JvJ~Ph&E$&xvQ&>s;`c2QLj4|em}l`t-9FziTJ{TPX~x|XzM!MB4#w_sblmMqHBsU=IQ@TS-;%5ukAs|*%x%W|HE3J!)$#}SAF z#q?0eDrm5seI0{vW9IroYp2ux_9a_q&pcO!T4C>dslwRnc?!1Jv)%SH9NKJbAdP^n z`yy80G^73yyo1A-{dvZoY&_Xy%_wvuke*=8r_Y=00HQ(PX+w0R@StWS6|jy_O0wr7 zJlYq)G;s|`xovl{yx|JmT`GnnF?jm}R9bxW!&OR{`w zy|KF$RXLiIm5eLPIaxK5s;Z)7KI6*LkqbsLujWxw%eb_Qx*lCk$0b1_u1kNO2{ zO>FvOB+@#ucuEly>=z6z8d@^6EG<0WZmm_46&?@!iYpU%oB~hDq;5JGfkv1t@Bsbm z^H2l|Wq}9>J&eWyC`guh7zJJ^eC~?AaJ_hlGyF(vr8$V$i_Yw%q?O-0v!I6B{Ue)O zdoQ#Cy*CITisHTY&^;6oj3ZC)9S-(QqrJulWAqQqd3zH*4OBW~QvmrmU;4wO%DESM zG3QGJ3mt6PmFzcqlmmQYvg8uH1hIj)f}IoV$bdKc1^vX>u8J8U$f6!gl{49kY14x! zV85;^AM*)3SNN-+u+{ibL4e)g%;GIjh+?>fOTY^c%-ER?R6c+zj6p0Vb!3yfmwojP zj%)J2RT+JhXVv8;u9;3t@S}bfK6K`ZZNkUK04a=Z?7VFoTd;^HofTjK|B~{t@CWLG ztw4@r*v7`)&?$|~DU%vX_Fo5f8PCWCyEfjzp-JK$OX-rR*EmCdW=5Ei_GcNTLVTB znI`+Ju2%zgpY+WG>;Ve4r;6S%%0AD$MkSF_f3_xG2izPfl9$@G*&V){YBb7?w%N(I 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/generic_distribution_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/generic_distribution_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4dd5b6b210d104c11b9a25a4ef52d97534228273 GIT binary patch literal 3365 zcmcgu-EJH;6rP#=o6IJqO$rEskclWXQkqsRSD`{dn<^qomx!noEen=2_HHJfzuGei zyUJa2#}mLC~FFYk|3Csy|$0%%sJore2&?|f@8qbT6isfhtZ!n znS4qx*?^|rfsPw3W6R(sw@wXiy|G#*FYOsC<@65_I$I(X(sK#^b$f(+Dv{oPns`x2 zR8J)$AY633(8CpHZ+G)M@__7kt_YQY(N|oAiP!OjTqiqQyF0M-WbG03kt7d%mI&!I zqPQo$?m#rz|Y z2=b+W#H8qhG2{gp$fWd0jGNYi(WVV|sCdm~jtlNhJtI_pg=Jv?4o1u3W~;<4UOF{e zWl`Z}UO6@1n60X)9@cnuG^_9$x3$C;Hb~}1vkG^3T}$S~97yIzvkG6}x3t6&4oKb_ z%_{shzoR8}Q3uK5aK@J)GIz8022t6Zh{m1{M*p5eNTHOtK2r*IxaNfCIJTfQps8i( zxN&08yax6ORVW~@(jZ2X z(2n;L?fB7g_G$4R2&TvOeUWdRrw4*1)Q^-B>def_O8A{KL(YM*e;qc~+b@)ms+|Th zijwwj&plu=7!XFa57K?zTrcU-0O;dWAaUxVo$Z|0G^es^cXPT=8#;$CJ`id3g` z0kP7D%&ZQ6{pCX3*M_fMz#XyIxL09tVjOC0`_CXm7{-Jkz@#IifPBw9xk`@l$gC16 zI&fqF>oEC2?_HMy+zHnS9?!6=*Un6dVU;!P5URXGtFtmHz6&FTTa0S|!(!uctE;!+ zR(NoXO&gBtPE1W06Nq8;xAn*Ou48=6Bn!w9^HVY9K~v6y_A^V`@RwEehI5`sjKl}f z298`C;fvfQUI=NVD}^8p;VUo26GO-dV&E=Ih6rQQn2GS>Ma3VF&Frrh<9+eP8=-$u zO_5_$@Q=M~%G>DNE$pW0Bk#c4>e!nrg8s7x4QXAJ8;I8-$$=m-iTT#d;jy|NdBXqYXmk2506!m*8dN@rd&kqW-((41W(84T#*^S{3~V*i^Zk%&|lCL z8C+#z8S&H=oZR1jxP2K>7;8LA@zshF|?J zKy6AaJu~_9HVB@N0lOl9@|uI0W#Xc6E;F19`z471Yw^s0*C(`pJ2JA`zgHa9i8rnh zy05i$7`ln~ui{T(D#x4tOu*j-!H;8Knk(~o%L!Q^D9s#-7p4^MVKkek^mWSofuu$$ zk6cP+9p24sI81Q$OM1E-XH_Kvq1b-)yc}^8KNjS^6{kY3{`r_#u5!DBFJn62o)U literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/generic_emission_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/generic_emission_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..985830ab7629b2ceac35e6d5ba5b9cbc27ca2132 GIT binary patch literal 1265 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/generic_storage_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/generic_storage_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57fc0ebc8cffdca47a3ee3bdc54ee39fb9f20a72 GIT binary patch literal 2321 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 Gy8j1$9bVr6 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/performance_curve.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/performance_curve.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e33db28d611d0b84db6527155dbfd5c31a87a7b7 GIT binary patch literal 4023 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 literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/__pycache__/thermal_storage_system.cpython-39.pyc b/hub/city_model_structure/energy_systems/__pycache__/thermal_storage_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae8aa5c07838c4489c6af441206f7f48f5912dac GIT binary patch literal 2858 zcmb_eTW=#Z6!uIe$#j~qH$cE@!CDYfkv6Kj5)a{`g|MoCZdEm`ghG(zj-6!6T!KAQ zk!;^uXLyA)R#iWX)p++YSX>lgFRS!*xH6MQS?E` zQ>na8GM=blI7;d77j$QP=OOJRv7aaraN2o%*r7v}WMl6@CCAcFVN*y&4}y>@`Xq@p z4^Lz&>1W{yS8_^)q)%0F#FYx@7@1m8$@Iv-ytw6aco%qKB?a~j)X;6(%d0vYOO?Bf1#yrvme<)y z5@wMEVkFT`fCv#@oxjZ@{!wa1U0x+0B zn60vgs-+v*AXm;=#yzi788>FT^0G-lZnNkpdjz<$6 z_z;c-R5Tfw<(W*g;G{uJ{p=|4X#@eI&}@{pl?1KgHXVcsPtDSWrRwmM+Qi{TIot#) zuN4ox1++#JliKv|N_7f8-|!$GG^DW`We}573!DKm4w&AaGV^x#zbiE6ibwQ>hnZZ| zYG2)gCogQ(fKOgE`~T2Rp|$QqpQ-kerg*Ys3dmXp-t{(kA^MQC*Pvenzz1^?*PvhU zT?75YCG@YS!&<;!Lp|=`u~i==A;XmbG`ElIaE^8jtq5>U6n#Gz*i!D@5-G0)m)|N&dSVk5eT5lwr5*3W#^GG)ttOVf7;*@dK96Db$wH(XjQyDLaJExtOe8*IrpV;(SfLry ziOFDjP0JJ#ya_XfMOdM;D10ez&I+L~!w`Pt7R*1Z{_Ku@02nE)8AtN4(mI=o~NtAm* YA)}fpTJFaMil1UBHD%Os8&;$8H*q!LhyVZp literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/energy_systems/energy_system.py b/hub/city_model_structure/energy_systems/energy_system.py index f76a93ae..d3a21f00 100644 --- a/hub/city_model_structure/energy_systems/energy_system.py +++ b/hub/city_model_structure/energy_systems/energy_system.py @@ -9,7 +9,8 @@ from typing import Union, List from pathlib import Path from hub.city_model_structure.energy_systems.distribution_system import DistributionSystem -from hub.city_model_structure.energy_systems.generation_system import GenerationSystem +from hub.city_model_structure.energy_systems.non_pv_generation_system import NonPvGenerationSystem +from hub.city_model_structure.energy_systems.pv_generation_system import PvGenerationSystem from hub.city_model_structure.energy_systems.control_system import ControlSystem from hub.city_model_structure.city_object import CityObject @@ -60,7 +61,7 @@ class EnergySystem: self._name = value @property - def generation_systems(self) -> List[GenerationSystem]: + def generation_systems(self) -> Union[List[NonPvGenerationSystem], List[PvGenerationSystem]]: """ Get generation systems :return: [GenerationSystem] diff --git a/hub/city_model_structure/greenery/__pycache__/__init__.cpython-39.pyc b/hub/city_model_structure/greenery/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa613ace03d42688f9136480d00475622a07101b GIT binary patch literal 172 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_uvsFxJacWU< zOlfXWettgzq~^pImlTyImy{Nz#-tae krskyvNLuz?2kLM z4%qTt^9)?|1@Z!1aLHrrEmyn(SDZ6z$7?6HJl32&^W&LszH{cBVH+DI14`wOKl#O) zVf=%QY{^060II5i;6}^fCbxVuuv(Uhdd|-UcFQ)6LxbBqe`WCeTdS4l&Z$u?^#6iC zl}>yX#w3V%-xsCRlNUdcr{u_UMW_U5FS!U~uj2{XAV-HMN6__I?HR~OlBYh4g)B9r z-avZY^O*d7P3q6;b<&JNHS-9r1(!YS-sG5m=AW>@q4n9_DIq3!Jgiw z7Y`=0MBpiv_B^J67kUBnsfwe3#h^%`z)~!91+3vlb*jXhzEH7bu@{BO8U;uBP0=U> zOtun!C$Tj!XAEU)9!W)a%m7K}WNmDM zfsCTKeKK&*nGD8Wt=i}PGhJPvgTieRcyQTwWrazA-NP? z5o-sS#n|y97V9p+hUb&}D9{*FfJtfUvLD091m|{2+;q^@2Y?w^P`|lA7+=R1$b<`F z4G;CEr%2ywh@tp1~72m$pBuz7n!a0GFxS%%PN~y7mzUxNlVB;XS@^PJs3F3Ak306 zU3o=(FXxOkj*t)*(m+k7ff}7keY(u8))zs(4+B4BAb*&Wx+EO02>-`9_z=U%OeP^N z>oJVOi2m0uX?|ZPkZC-)f{@*o&|hA3mR%TVXU;NqkXzXUULj5zWLG@Pm$%Lm^dK0X z`GV;5GYj@-eBu0}`@o$y7NAXvlN81?kjJ@XGIU(s!5oBM$bl(n`Ee512a1HMD@jh*&i3T(NAKr2Ty^9}@J*a}(1YxzcT7Hkv|PI@ iCD$e?xrRKa$Z(mvkR`?EDLY?b!c~}z>_XWr=l%!wAj50` literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/greenery/__pycache__/soil.cpython-39.pyc b/hub/city_model_structure/greenery/__pycache__/soil.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5ed8adaffbd09d2ef50c53a7bd01280c64651df GIT binary patch literal 3753 zcmb7H>2BLb5GEz+qA$r;oC{r`?jfYH4W}pqBM4k5tJ? z`{qrJG=<;on5V+OClc3-mxvy2JjQlSm!@snQNe>R?jfKo@E)9z0&Fi&oP7LuC(`hJr8`I6%=0pzQ{_7 zF9L6}1;v+uUt~*)H-TSfD~ewLzRW6$Uj%-Yttoy9_;t3S_+{WX**(Rt@RiFl+ZxYu z>^^&-Bo$r($-{WY9)VXLM+SOiP&NrsuCZN9N|@LS32l+jz^K8H-vSBsP@`Iy0jh^t zpqbDBnhkS6jW7>17Z!l#!y?c^SOQuMO`s*F0X3NhU)N8n3sH`GR+~pA1;;g89+xtz zP$v2m?9aM(;PjlJA1$gSh!2UgRW*|xZbP)#w8gC;TBkvai?-!b>s796F_`MpHRW2!@BULdE2(B z<2ivde;4R)NbX)lhB89w#s=jn6D;6LY=H_+CJnGQOaIEW`fIba|1_oY+i7&a*2ES> z$-l2_2aUIq3)$$lh3^NA)4tuZM0<2QWuw(SSHlLUf}t6AsSE@-9qip`3eG()`V9#Y zy3^@LMXF3nDdeDGuFIpgG0m1JP z^oLqG5FFrm2LzBgUQ?}Ab%FQcS{DdKDLW+hak>oT5e$iYwEUo?;NXENq3lgU83)BY zJeZHfLnLVW1ez6?Zo`PtEGsnQGgCr(ISC1(k0kFWaXj+NZu^Hxgcq)F1!@TlW+1Ft z0LviwA^~ti0lXdlDRCZ5;~ZTXg!rzx+kQ3&W9}}D6%c%xz*rt*9G#vL-r+R7_!1M$ zVhHm4-FMA-hQz3yX~cD<#OUCPAuXmkwg_E{N+OI8HzuT5&3krUZD)ilfw<4r1vph#MgIIRSBK#TjWm zCCKAjRvgzsa#P@-X&cr-y!TiK=eQrc#hDR`{b3^k{E2dZy3&(Ump7BT#N{fzCMUkf zvEjT)UXbRo1DdJPJrJ;jMpdOz{MC64f~~3pyowLR7^Rlb+>v`9VUV6M^OFI-{yrlvDECWdjv+VT{T~O6&hLY5h?L^kJZJjh$)y zMSwBO_|eBHI;`MEhr#E{IVoQHAHF%6^i67w?{v*asO@7Uw+cCdwGhV0BPZ2W?1-?f zpcL9??4RIY74VCc{s!IYNK&Ab`8K8E0lXU(JHqd95%g7;BCt6SSbzmqIDr*JV2&1; z1qJ3Afp=D5G(>sH1NaXn2(H|KQ=Dpiu(86VC7%N+>PEJ>lF`jVnqiFg8M?qzPO2G! WO^ce$`c_nYG1T`ZZdWETivIz^m!b^- literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/greenery/__pycache__/vegetation.cpython-39.pyc b/hub/city_model_structure/greenery/__pycache__/vegetation.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82f4a9e80639c362e44ea571d96391b86334718a GIT binary patch literal 2439 zcmb7G&2A$_5S|&&Unc*_?xJv^kyd~uV(n(R5FwP67ey5enm`7zz& zNVam@965911@ZuJMdC5$%86ItL{;0K8ABFATV2!LRa5=VSJl;K>+695ZTrVx_|L9k z{Em}mYr*6Qx;g~GjnLpGw-Ph8Ld(Q)D`};6XzQ_^IH?=Drg3a=hr8DXci&i{$GyJM z_Q$`1gWwx66a_2dJR@n&$B78~y=UK&eR2{XTTuR;!sK0>1W>$=CVDwGCcY!OJG!(za{D5$j@O&(Idzd`DYs@?D6=y|NLB z>4SifMqr|ZDFsWB1F#nj#}@Q1boCL4EAz^rkP#r^yFgl37Rc6B3#5HzgLJq7dzq(g zw{&R6Qcx?(mjfc358@72~~w0 zN5xo*!B7g32{{>DRteh~O#m{Dv$&uXw@_;!4AZTC)7_fI&cZS>(Q4jsj9s$`#|?P9 z&>T%41L1@mi-OcU68u`dekcXN$_@!2jI*I$Ynu{1+?Wz^=#QR>9h|O%*n_SxXofr8 zY(PV|cZBtE1*;C+TM+>i4>ptcP#{A!o-(N4e;+gpSoa&SYKusN1~Y6pt}+jc)jab| z$SrHmTOW9e~=+f#RzM;_U|F*>0!pEi8OkH7G3uip3IcZWymo`u&(CbB#wS&m&6ZF1RcGk<3Rz z786~H^oc56B?`E|b^1vBXQAULku-@%T;h!>5m6)Ibn5AvhIbIwHT4jLZ`v*2x6Hu9 zZZAEz^qOT#eB-q3%lF_}y2WG!#Z&JTegNgab6e@}EJ}X|3=q3?sL2X6dr!tTQlL;`U?ntFAe|z literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/iot/__pycache__/__init__.cpython-39.pyc b/hub/city_model_structure/iot/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..148740e4012df921765d4b0434affc888e2c9eb5 GIT binary patch literal 167 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HIvsFxJacWU< zOlfXWettgzq~^pImlTyImy{Nz#$*CD e#K&jmWtPOp>lIYq;;;d#D9uT=1KIK!h#3G(r7P?J literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/iot/__pycache__/sensor.cpython-39.pyc b/hub/city_model_structure/iot/__pycache__/sensor.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97f0a1ff9c4d2412769ba30162c612a0d0fad0c8 GIT binary patch literal 2244 zcma)7&2HO95ZI3vKco7tIR*y(r-&-U+siJrsQ zKQvi<8kp>3=sgg@hD>l_B|No;7AL-uG*WwL8{STusWWsqJ7A(IoGT`rOKaE?tz*`8 zi$Ae}cPz&`Q+}F>B9Y$l(T}hF$Npg)K`g;N7jm4(C$Us}{^7yVAw*AmPe8HeaT4ZI zdHrlMRq^Rr?*D!5?>^bx_50a4%9MyhzyIuI-#=AZG4YO6b}pkFN+FehP{c_h@yW5Z zk~9C*2vnN&PHS13sVtZKQN3F)3cY`UnRR*T9%fOP$JrQsr}E(^8R|kw2=z#!lYI<*1tQsyBZQXV!-lX#DUa?C)bfk0M63)%6DP7U}g9}%zUD?pD z!PXP&#@3Tfxo)&=(J|V#Y-9BXX0%ru`pzjg7Mo(rSZs)GT*OZ4R1VBO^L&4PAK@FF zs}SLel2B{NBM!XvL%fC2$IzdH2zJ4OiozlAmZ1&7Z~z~4?Xnq+!&KsvBPyj66yrG8 zP@Dl8w4?q3xaLJ>w+-un0K~W`P-{4R=fELR$Z`jqb&xVG^n^^?xH=3x0I1vH_T64_WAn0UjNXB)wxIeFLsR-Q$K|LJr;5va z5vSxbiACPcsDtNCF})d6$-^< z)wkxvg{-RgsPNs%tUDkFigH}-5TTZETLFq{@du1Kyw#DS*yrqRo#9`ZGhc?Wmf9a@ zxgV#KM5g$~pc3&P$mRu#?EGMm<R!As{v@+gp>dN+p-8E98 z+}a1=#5?o_5N964SKfjXvzyr1Z4X^*#^c$Y^|#-AcF^hg2*$l1Kk0V|p+EYeIv|G* zz~mM3ERc{wO)b7NAV#4q9=}bhEGlhR&;l16xJ>2JM$OVl8+<$l6 z#}mP`sXr9_oP`P|DHC{*MRCmFreJHq=6GTfBH_JBkxRJXiXDW-ZoM$@L%?1e<&ob* znjttO8rjquIn<`kB^tS`L0#IoL>Jbm32~FQOx%Llqiqv=5c_n^#BI6`Bz5x6lAw=E ze&*Xg#@8qd<3LJChm8s#9ot}iF!>nV!df7L7B+Zm;efXnE_jC`c#U<`b@Mg>9wU`e zmir{;>0}vikW7U{MG2ECNTzv{d<)`?bsM=WS$vv%WmWrsQKw$hFeO(=tO1h0$Nl~B zC&`2yXNllkjfb=FED*`6Gje>EeK8hBYDPd2EGANkEL5P7aRdd@h=#00)0@t6kB}&h z6d@gbU=JL!n&z5s)fns*3qwmUS`8g*Gjuf}SfF!5%=`&3i}8S|QliCq%|zD{n&vA@ z=qhu*rCZmJEpVG)Qm;Xc>rjfF?g-`SO(;c|3M^WMVnaL4bOniKWE-qN@~}=y*||GH zd2s_uDG(f`7`k5|ay5?I5Vc|ASq0IfI-;6@?uhDniE1g3vSmho1tR@v+=@v5(_U5( zZPpQ)O^&+0)>;}Qj1c%vv^?R51@Sr|U$Y=y&9n%iJS0SDJ?7q2@F^2&W)vZGGlV|B z(66kt$~4U=M~hLfkPpClmg{&;+wvm;R>Kw^V53pQCas=}_SP>tgTOKuYEM9@*Bk?~9uBij?k_9ETF zH}DVr0QdktBU=`zzrcz+PAeiY)*RnC_s;8_iMm}&fp+}u2mP%o$}c(CZw3r5pcgLz zsDc%$QY}?84Qr}0Qm9UiuL?Do_C?1!ZG=j%S$&66D`a`W1u8ddhB8j8lv&|)_yL_D zKZzm7Ao3{7%j70u;tcttsSnhv{wW|#JV~RH3CrQ@jYyWO68*eGgVVtPIXsWKph<)r zH*nBW@M>*M1^>k25|We&G^&y`W$-IuX~AyMvL-~v`^!fzkMglsKBb{;_7A>?xvr4N}FA(Y2Jn{Ve=-q4#}Z`(8XYU&2|Y#z8+cP0be z7*D*=#pX0{!%(tELoaZh842v6XV1LJ7#|P4%gcG_?omf0fAYrm_n5Zr1?1h__F)@r zj_i5koCbbY6Yr*QHb{!E;+#k^pmSX7zdyj)B-@hTG8gVDueReh{`oRk}R zIhK;56jfYSf-Mr5P}C2Q$OqVmHzajyLoc2Kn5v;0>i=I|HSQVW7>c%rbV5kgYyRKq WcF{9gW1jDXeJvd-q%TIRqyGiKJl+Wa literal 0 HcmV?d00001 diff --git a/hub/city_model_structure/iot/__pycache__/station.cpython-39.pyc b/hub/city_model_structure/iot/__pycache__/station.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7458aa74ea2798122ff49af4593387944c6ee2a5 GIT binary patch literal 1501 zcma)6&2HQ_5GEz9cCFY>f~Gz6QUW;?TOdN<_GARDflcfLH4Gz0fkNGakVRT%Ac-4_ zYOo96;%DfohxX`WE_r}FhR|D2eTAGdLrIHmn?t$a@K?iczWHX;ot=n4yZh@~@uyG7 zU%1$8utyG{*I$7VBq4$dub>Hq(J#ExPkc&_hzP{!nuyVBFA0QqMy6r&20n<+Y-*LR zSgA!*$ms0!@sI2QJ64&jY6-JvLRMB?C~5ZD@zLoqY<(R+1gi~uP^4CxXr>oSqw-73 z-rcahhkJW$rmIXFp;9(`@_fc}qnkx^YV-@4SvVBZu%kv5g@nO^Ya>@IcN?bEaX##o z+Gr~evcX%NrP1F2nw(5&8=e6|Z8BVMwg46f(Cb4mk^m1R@dQnLvEw+PNgzie6yt01 znkFI4Ct}OZ$8sbmITg`wRNNBV*8!YwIj(lwanIB0lZdf_v#dz#8rCO=8D?Q zpx2*)xuREulPeD_%?Vgf5Xb;Mnfk5Im1xJj)aR;@?S$7Zsv1s$S{4^cRCfu2Yi0z# zZitz{@c#SR{``kpntI-pMr%7iU1pc5DSMXd`DJtNdZz3W+zVOo+L|V_jgfN&AM}pn z#S)(7s#2EoI|w-hLud%U)tx@nc({;JJnS3J*MWWxi!1U1h}45(FkB?VI#tkUe+WA-Yo*}~{wlz?5U zog2_b7nL^7{l1Y9V6_kT-5Mx1sE9T|=j{mXH#gLbVb2lSnJv8HDe)EY7CQ%l~d`CjWyhJtqb?%l)5yV9dP<@fMMt0 z3j~S0lW?^=B&a*Wy671ApKzb9;X16H_<;UGSGlV4f#yD2?(!P*PhAE6Jm5wiK8kzX zi~7qA;I{|hgW$cB!)b&{tkP0)-bNf%3;#(l-{$;flNSBSm~){s&JF%CwiA%VLK?d? zyZHWXG)RuQiw0|D!(g5b*5@|#8r43bfgg=L8f`%zd(@pyM+TK(Zh>j + + ./schemas/ + + + 1 + Water + + + + + + 981.0 + 4180.0 + 0.6 + + + + + 1 + Natural-Gas Boiler + boiler + ALP080B + Alpine + 21.0 + 4.7 + 23.5 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + Natural-Gas boiler + boiler + ALP105B + Alpine + 28.0 + 6.15 + 30.8 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + Natural-Gas boiler + boiler + ALP150B + Alpine + 40.0 + 8.8 + 44 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 4 + Natural-Gas boiler + boiler + ALP210B + Alpine + 57.0 + 12.3 + 61.5 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + Natural-Gas boiler + boiler + ALTAC-136 + Alta + 33.0 + 4.0 + 35.2 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + Natural-Gas boiler + boiler + ALTA-120 + Alta + 33.0 + 4.0 + 35.2 + 0.95 + False + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 7 + Natural-Gas boiler + boiler + ASPN-085 + Aspen + 23.15 + 2.5 + 25.0 + 0.96 + + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 8 + Natural-Gas boiler + boiler + ASPN-110 + Aspen + 30.19 + 3.2 + 32.0 + 0.96 + + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 9 + Natural-Gas boiler + boiler + ASPNC-155 + Aspen + 42.5 + 4.5 + 45.0 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 10 + Natural-Gas boiler + boiler + K2WTC-135B + K2 + 32.8 + 3.5 + 35.0 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 11 + Natural-Gas boiler + boiler + K2WTC-180B + K2 + 49.5 + 5.3 + 53.0 + 0.95 + True + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + Photovoltaic Module + Photovoltaic + 445MS + Canadian Solar + + + + + + + + + 2.01 + 1.048 + + + + + 13 + Air-to-Water heat pump + heat pump + CMAA 012 + TRANE + 51.7 + 0 + 51.7 + 3.32 + + Electricity + Air + water + + + + + + + + + 55.0 + 6.0 + 30.0 + 11.0 + + + + second degree multivariable function + COP + source_temperature + supply_temperature + + + + + + + + False + + + 14 + Air-to-Water heat pump + heat pump + CMAA 70 + TRANE + 279.3 + 0 + 279.3 + 3.07 + + Electricity + Air + water + + + + + + + + + 55.0 + 6.0 + 30.0 + 11.0 + + + + second degree multivariable function + COP + source_temperature + supply_temperature + + + + + + + + False + + + 15 + Air-to-Water heat pump + heat pump + CMAA 140 + TRANE + 557 + 0 + 557 + 3.46 + + Electricity + Air + water + + + + + + + + + 55.0 + 6.0 + 30.0 + 11.0 + + + + second degree multivariable function + COP + source_temperature + supply_temperature + + + + + + + + False + + + 16 + template Natural-Gas boiler + boiler + + + + + + 0.90 + + natural gas + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + 17 + template Electric boiler + boiler + + + + + + 0.95 + + electricity + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + 18 + template Air-to-Water heat pump + heat pump + + + + + + 3 + + electricity + Air + water + + + + 4.5 + + + + + + + + + + + + + + + + + 6 + + True + + + 19 + template Groundwater-to-Water heat pump + heat pump + + + + + + 3.5 + + electricity + Ground + water + + + + + + + + + + + + + + + + + + + + + 6 + + True + + + 20 + template Water-to-Water heat pump + heat pump + + + + + + 3.5 + + electricity + Water + water + + + + + + + + + + + + + + + + + + + + + 6 + + True + + + 21 + template Natural-Gas boiler + boiler + + + + + + 0.90 + + natural gas + + + + + + + + + + + + + + + + + + + + + + + + + + 22 + template Electric boiler + boiler + + + + + + 0.95 + + electricity + + + + + + + + + + + + + + + + + + + + + + + + + + 23 + template Air-to-Water heat pump + heat pump + + + + + + 3 + + electricity + Air + water + + + + + + + + + + + + + + + + + + + + + True + + + 24 + template Groundwater-to-Water heat pump + heat pump + + + + + + 3.5 + + electricity + Ground + water + + + + + + + + + + + + + + + + + + + + + True + + + 25 + template Water-to-Water heat pump + heat pump + + + + + + 3.5 + + electricity + Water + water + + + + + + + + + + + + + + + + + + + + + True + + + 26 + template Photovoltaic Module + Photovoltaic + + + + 0.2 + + + + + + + 1.0 + 1.0 + + + + + + + 1 + Hot Water Storage Tank + thermal + HF 200 + reflex + 95.0 + + 1 + 90.0 + + + 2 + 0 + 1.5 + Steel + 0.5 + + + 1 + + sensible + + + + + 2 + Hot Water Storage Tank + thermal + HF 300 + reflex + 95.0 + + 1 + 90.0 + + + 2 + 0 + 1.5 + Steel + 0.6 + + + 1 + + sensible + + + + + 3 + Hot Water Storage Tank + thermal + HF 500 + reflex + 95.0 + + 1 + 90.0 + + + 2 + 0 + 1.5 + Steel + 0.5 + + + 1 + + sensible + + + + + 4 + Hot Water Storage Tank + thermal + HF 200 + reflex + 95.0 + + 1 + 90.0 + + 2 + 0 + 1.5 + Steel + 0.5 + + + 1 + + sensible + + + + + 5 + Hot Water Storage Tank + thermal + HF 200 + reflex + 95.0 + + 1 + 90.0 + + + 2 + 0 + 1.5 + Steel + 0.5 + + + 1 + + sensible + + + + + 6 + template Hot Water Storage Tank + thermal + HF 200 + + 95.0 + + 1 + 90.0 + + + 2 + 0 + 1.5 + Steel + + + + 1 + + sensible + + + + + + + 1 + Polyurethane + + + + + + + + 0.028 + + + 2 + Steel + + + + + + + + 18 + + + + + + + + + + + 1 + 4 pipe storage equipped air source heat pump and gas boiler + schemas/ASHP+TES+GasBoiler.jpg + + heating + cooling + domestic_hot_water + + + 21 + 18 + + + + 2 + 4 pipe storage equipped air source heat pump and electrical boiler + schemas/ASHP+TES+GasBoiler.jpg + + heating + cooling + domestic_hot_water + + + 22 + 18 + + + + 3 + 4 pipe storage equipped ground source heat pump and gas boiler + schemas/GSHP+TES+GasBoiler.jpg + + heating + cooling + domestic_hot_water + + + 21 + 19 + + + + 4 + 4 pipe storage equipped ground source heat pump and electrical boiler + schemas/GSHP+TES+ElectricBoiler.jpg + + heating + cooling + domestic_hot_water + + + 22 + 19 + + + + 5 + 4 pipe storage equipped ground source heat pump and gas boiler + schemas/WSHP+TES+GasBoiler.jpg + + heating + cooling + domestic_hot_water + + + 21 + 20 + + + + 6 + 4 pipe storage equipped ground source heat pump and electrical boiler + schemas/WSHP+TES+ElectricBoiler.jpg + + heating + cooling + domestic_hot_water + + + 22 + 20 + + + + 7 + Photovoltaic System + schemas/PV.jpg + + electricity + + + 26 + + + + + + PV+ASHP+GasBoiler+TES + + 7 + 1 + + + + PV+ASHP+ElectricBoiler+TES + + 7 + 2 + + + + PV+GSHP+GasBoiler+TES + + 7 + 3 + + + + PV+GSHP+ElectricBoiler+TES + + 7 + 4 + + + + PV+WSHP+GasBoiler+TES + + 7 + 5 + + + + PV+WSHP+ElectricBoiler+TES + + 7 + 6 + + + + ASHP+GasBoiler+TES + + 1 + + + + ASHP+ElectricBoiler+TES + + 2 + + + + GSHP+GasBoiler+TES + + 3 + + + + GSHP+ElectricBoiler+TES + + 4 + + + + WSHP+GasBoiler+TES + + 5 + + + + WSHP+ElectricBoiler+TES + + 6 + + + + + diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml index 9ce9a4fe..ca090cda 100644 --- a/hub/data/energy_systems/north_america_systems.xml +++ b/hub/data/energy_systems/north_america_systems.xml @@ -6,7 +6,7 @@ - + diff --git a/hub/exports/__pycache__/__init__.cpython-39.pyc b/hub/exports/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9dc178b149a02cbaa0d86c4e3a454a438f48b2b3 GIT binary patch literal 150 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HuvsFxJacWU< zOlfXWettVg>+RZ6wbC literal 0 HcmV?d00001 diff --git a/hub/exports/__pycache__/energy_building_exports_factory.cpython-39.pyc b/hub/exports/__pycache__/energy_building_exports_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c14b747ba79796737395d49411f4c358d7f728f GIT binary patch literal 3562 zcma)8&2JpH6(?tAzh+mqh(Q}w6FZW5C4G*(ptaf=4z^* zHu?=m*HtrZ^;?c^s4#8!+m3FkPP)>+Ldhc{S|WT&L^$*MSB3wSblU~Ylkj0C_1^dw zMWRHK?U{$qN4d7JM77$?I$qxwI6v78ZrnY&%h0v(NL)aCIQ9WDnE<*K)#y zWQ9%!TyP0b3eK@Z zHJ+=FE1t#3bK`)kM8G4WBt=a|l?Ed_9^rE1nFPsF$9T}`Z|MP_!K@^G3SQs|3Rb@& z0#SQO`+=;9x@f#4Gup2M-4rcHH-HXB+tE$Y5i2iAzvV1^wS4bV>rOrl8LK$h(gBtx z-<`Wathh12Sk}cypZw(0Pq*Uwsf#0xci)6&@a|J@N+R&tDLtacD*t<&afD` zHV>~I>EdR2m-#DAG`B%-G%lMF+&{5V^fsJeR-q%bPOs1qeodh2baL}jYxfocVhH=? zhxF2ZS72blV*3=DH}k*_bg~V$2RCs*fH96r*-I5WOze>H(MTmRw@IEck*6FYUp}`G z=rDm!!`K}yZK1O}Y%9;Co9X%*Pt*W}MB_tVQT-OusJp7W4piBW=4#ioGo&A-mhcWw=w}0iBQu2(5 zW~lbP>rPw-)rm;hmHsfOhP1aHIeh{f)c zym8S^*vALpY;mu8*n|0*r*;A0vysjZ;4F9X@kMfm0K#~YWx^V%!Yp5nuFFtPnmb`K zPCz$sqEWM3llJF;87WsikTYq| z{R0M~OEuz1_gaON04{h+6qWT6ygajI10I<}8U@+IvI(a-1{bqsTgyFAQWQhlE$i9< z1lY1JpC`teGRQ|VD{F^3v9fGx`DGz-+6SyH8{j+u4ps+nwhMiI4R29%@!wy;*WxQH z-1ZBt`kncM-IV?j?mGt)K?K{nuwYOYS-D16=}myd4*i(ELxcZJe((mofbD010#%9^ zbU=YJPaqLO(Vt=QL?`#pL}AWcQGnIQYgK_`eBIpLKqDlbz@T2k;SKE0J@LJH>VmQb zr7v)CP*oj2haC%S{Mnn{>Qdmva$ZvcUhj+&;Q16QQ>Zmi3I1eoMhOcj+Di@)aPlew zuzX+zy*OIsjhif@pK^gy(hr^ z4KyE$}AuGYH?Wdc{`9uSp)u2(j|iMfUHVg=+}Xeo#Stok0odS#N@%+K%t3R9~qnlR-M*}(coB?E^P`U9Bi--P<5SH0Bq z&OugBR<#TyZI|Zz-@A+%V$Xp=|K6os=(WA7e7o3pT_}}nC}b!VD8uv$n<(RI#PWwY uU)AHLHwTm@-+ZhasF?S$!z$q-wUy1gl|AmE54svGXmq@$*8#9`KmWg3=mdKJ literal 0 HcmV?d00001 diff --git a/hub/exports/__pycache__/exports_factory.cpython-39.pyc b/hub/exports/__pycache__/exports_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..863f4f38484222016b8da6af95b92b499027a57d GIT binary patch literal 2674 zcmb_e&2J+$6d%t_Cdsth-F8_Dln;voC@XEWDz~y)Ep$J$(kfJ2A+1IgmNRyfsXTG8 zon;e+3+1PTYn312KpFPj-{oeEQ@N3s%51!jU z72=n==lzC*vrhnn2hi+uAi_&LL4>bJ?k7G$K2Sj(CSl2ks+LDdRPr@d&l^djV?C%5q3KO*1#9*}!RPc=q=~onaBQ+( z-_f6s>E_+dO}ecIsWu|xboG>mtQK9H${Ng)k=GRl;a&^b_T*u&^ z*D2^WUUHQQu$sYgfQD6&FgG5`6g8iHPJ;9WNTrt$2$U~K5{Ok1i13Icp{$9Th>pBN zl0?9lVF11kd{e}wyaD`@ST6Y{@Ylpj$;aZlxN+n`z`U=`h#F@NEXCSZ*7ZN^V@# zk*r--aqOAbVdFnP-QL>!+)88jM!C`2?d^=yJ~#O+1MOaa)Gb>TeY-d7*$n6Qa13s; zY>+v|UIUHx1`v-#WQD}=Hh_!BWc_@^+Vd|`f~#i_^4QAYG=Op5H$)JGcX9_pIS(?0 z!-)R&a#c#VjC3P2*rFXhkfo$^Op2Qw?VduS%N($i;*l}h922t&dP~k4uI_6E#V>XZ=)aUopN^!wI0C}~azhJ*=&87WL@^=Nkc95|L z1e$+{XM;>WJ_l4^Rt2mlbuJy$HLPRqD%e_qsiCD!B&dC%^&tZdw_$dU)Xj^*h57&8 zYTZ4!BG_OxLh`RxgNDt2vKrG(b{r&uHA2f=qxH@^2bFan|QzYPHYVDe%i z{s8-F)ukt8m!8yJ`YNB_ELXTWX)tSe8`iamxdrC5Y9@s4)bAo3@LZbfC|s0w5IDoP zVAkT{@}h{Wk?^m{x2+(F4+!c7(-993UGg!$@l)F!tU>W2%X(^|&Li6LXGh#AYZ z7%AkJ8T)d?)oiBDn9wO><_*wVG=@eGrEz2PHX4Bi%e;q#BEc**SX3@TfMu?{f3P~+ zw}3QA7{swp;ySco)+666*MW5g&v;SCJ4I#P@}5f8;W}tnPTKbDN2m=4r#ykl=Av19 z^0&dv{C9)#`Ts_l!i&{H6)DS6v5IQ@Qi0#L4L>}}p5CX694#96DlG3~e%NIoVSU+O ICgmIa4Z%>Q@c;k- literal 0 HcmV?d00001 diff --git a/hub/exports/building_energy/__pycache__/__init__.cpython-39.pyc b/hub/exports/building_energy/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d31106861591a249439cf345aa979947ce76167d GIT binary patch literal 166 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HwvsFxJacWU< zOlfXWett6J0@ e@tJv*k$}4gJ literal 0 HcmV?d00001 diff --git a/hub/exports/building_energy/__pycache__/energy_ade.cpython-39.pyc b/hub/exports/building_energy/__pycache__/energy_ade.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a21918845eedce4b51b2e040327f33aff824100f GIT binary patch literal 11315 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 WFZbka9G&75!A35R9j09#*Z&jyDfr+3 literal 0 HcmV?d00001 diff --git a/hub/exports/building_energy/__pycache__/idf.cpython-39.pyc b/hub/exports/building_energy/__pycache__/idf.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6286a2fd7b6087e086883af38d355102cd2a4815 GIT binary patch literal 24517 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 F{~xz9qA>sf literal 0 HcmV?d00001 diff --git a/hub/exports/building_energy/insel/__pycache__/__init__.cpython-39.pyc b/hub/exports/building_energy/insel/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e57d6fa29f28cbd90ee0e3dcc238cbfa8a0dab57 GIT binary patch literal 172 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_uvsFxJacWU< zOlfXWett6I~= kdBv$YG4b)4d6^~g@p=W7w>WHa^HWN5Qtd!ieFkC%06y|9?*IS* literal 0 HcmV?d00001 diff --git a/hub/exports/building_energy/insel/__pycache__/insel_monthly_energy_balance.cpython-39.pyc b/hub/exports/building_energy/insel/__pycache__/insel_monthly_energy_balance.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbaf23f09690df159392522bccd8ef379152d346 GIT binary patch literal 9241 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 literal 0 HcmV?d00001 diff --git a/hub/exports/formats/__pycache__/__init__.cpython-39.pyc b/hub/exports/formats/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df68a86ee423a63097d461e7ca87fbdaa833034a GIT binary patch literal 158 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HsvsFxJacWU< zOlfXWettPO2Tq@XtWZ006N(C@%m2 literal 0 HcmV?d00001 diff --git a/hub/exports/formats/__pycache__/obj.cpython-39.pyc b/hub/exports/formats/__pycache__/obj.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4967b77d9ad3cf6cf47215b25ce60899389d35a4 GIT binary patch literal 3270 zcmZ`*&2JmW72nx!u1JcaKO)CyyQtd23?f-}3N#2(!>yDUg$-4RQ8Xn~Y^dEKwJNzw z&n_ivvphN1B0BWc!hm%2wSPfT^sks}PU)YJQ-5!EsShXRaNfRoGxO$s&6_u9wLA^K zr(b@_|K8HHZ)kA!XJGIcJ$nxz()wD&B7MvzdS7RR8)KtyKG7mGvcA$H>y_TOBICK% zvuFRp29Lj-rXu$Tei-K`ew^f~|NH$zf0&BNAorf{Zh!8t`_JN#Cm9F!yND-wJdC;c z$ba@^_ZdhZY-|Fi!e1W`axT2Bbb2D<(LwJ2`;Gr_^Wj5(D^0>wMDf7i`sA}Mek=I$Ur z*a>NL^`~R-7(FAvwLXJ^^oaG1NRN!Kw7yxH1tzg02V*;OqXxcCY@Hpz;hR%#4qR(p0l1O}^0t#l&}ywm#bXL&in6H=Bqw&G&Xs!h?aB)TYh$ z4rcqRSFEzV%B$HPWZsybNH+-LB+i4NLlW8m8ne-gCe++mOopVx;%5ONy_8O$0x4O< z?r5cUs2wV7Rh#Re=@&F$pc$YU7c^j?nXrUWnnQ|4b4M_6`&I!uu%`Mlk+Y4E*FS;f(#U~kE$^17UBNZ3h+MnM;ERb0ZWma=; z&FxY@W4V5YSSYR19%1I3G3|w0;;JHMbc!a#ivx^eXfbxN$1I)FJ=f=rvXSeD)|p*4 z&e>gU-iXYyLHpn$3mEv+7&rj4mD`*hft0GL&=YN7g>jTzF;YChakza6FP`f`r-gs_=pRqp^cDWYyIymW0xNEdAJBMF-5%1NK$*45Wo zn?W$dIxaOOD!SS*nf_XzUycln^c<<|(0Ikp%yZn6yBdAx#x<&5Q_b8eRkn@nzZzfv zc5an$R^*VQ73N-Ga9~aIF0duS{)l90qP;ShmUJFy**`atK&kx+J=W$ng3O7Ub7bv# z1Lql(-RZnj_VpKYuk>(YOYtPEO?UaVuEwOJv#p&ngy)i4w_GkMtvjy~j*y3Tto#72 zt7exDU4-_3=S{WlM%lc&7gDtl@(obELufK@BOq`73PFmQ<%){k$-IMA&9Z|PE9FXQ zAF)#={!_YYty{XKU9NnrmF~Ptr<5z|_rJ4ow8l))+v`2=A5;n+tE8`D<$lNotN5oO64oEFm^vezwVFj1MO7Lwy%0b zJ#DKy{pKwBOOhTZ>U}HBjTCRFxiQJdk{uV;EFZ3ah!@=DC=!sA-)0f@9Hr`mOoDne4|XO#Cn%qY$}wd=Tfn=N0##M*il;2k0NF zZ@qdu9u8+HXX@1>!FdvA2iUOwG`nC;N7NghPkA^S55!`}g8#2~GXIyGn~R0ja)@)W zo*v$W1iKgUVVv;H&kpe90?Cjp=q?uBHKph}-fF*kr@g{~`r~-tFP7H)eH21u7GI_D zLLd2so%!i-=oQ|YpUuQ@5OQDTvG3UZLLXN7tJkgGPcs=zxS$tR&>JEh!LxLH#HE=c zrAg~pz*MraI3<&A%`y|e!215m6qcWG*gu%2pY??#mqU3fhpS^6%NtFRW)hVhuIlBeIIiHo5$FqAGmmZ&~6X_1~;zgfMW zC|n}`vfr$en;J<2{G_{3MLM-6(xk28=a94S)^Ao;y@7VcO*-KWRcDgFm2w5uMEB9N z&jBw=_m z{!Y)Mx{NFp1kwwFNgB;yp+Gi+;Kgh(u4kMeh|(|!1SRmQ;7~3hZz#_x*{|qBFS4M@ zNEiULE29?=0vWF5+OCP#RC7IBJjRT4sMbUns_2ncGMk{Vr&2(z`XScR{kRhM5rwv@ LC{4SmyT<6zJ`{qTMyAv7onOmG&*iA1nWw8=Vl0B2))ZA@AlHN8_cvpw#a zo~`cjdPm(CHrI$K2ZR(yvNeZ{)_3^6u zz2AEk*6S|8^ZcJn_Sq64f0K=qkB-JBN_q{15uY&1w3zlZU!#)OW8K$L8?n(deRCqS zdbUO=={bHyNzB;oRsAX@mk6_%{T^ZVvF6v9zC)VM@DG^U-HCdGIBG|nc~?UgC25o$ zd9THtL`2zs&)vCl;g{YE-sPyp`zZ(aQ^xz5>@UuFmoHtp4ADy)XFwC-y%2{P7w%Rv zI1*83KlA?bsdx6w*|XkO(r+b#MWMI##?>vaBa-33y&{q>Z)Nz%xbQ9wqd4ZGmuy@b zW|&>@(OZc~GQQcG4&G>m?tSP?nzS^ogxUT!n7JDq92XbER+fk(NS3f#JL(KYm_WYxh|J3pZ|CZ3UON%JFoSseKE>MiYm$5$q~(B2AITdi zTPW!sNUr51Ah`iba}!j{El@qTL5-Y(nwgc^xpqvuPENa(k6A@4;di!CtiOk+IQ=qh_OYgLV}2pda>lSqt`fC+Y{iq@V5M%eckD zBk;V>CUQsdQfdY**ifmbnGhN@FRei+U^Jznrn3c4llT_q#Zov4u9hmDIBBULR<2Ct zg10#aw)l9$g&+$>hiAbaOoc`LPFmUlS7+OFN+acQyEN3&m50hV9v|aZPwd98%r@g! zW_$5%$zm&?67du^@Zg=TbGz45F4Em$Pb5jUd*!ILABx_@g45mo;hrjEZPMNGKTdbk znR5kV>RdrMb*_!UQRxIh)Q_?tI3<7dG6-=j`tbcObYT*=$6!L`bb`Cr?xN86{b$4siUSdlc(EFt(>1&QILu-fbl&lxZR7JRBh%l<;5yy z{UJ&!9hFdrj-L5uZO7*Eh?>&-<>@IkKZMfb|5MNoy!ZFC&@zp|^Sk6&yQ`1Y$Nw{! zzAFEeo&gEawvG`AR>`DgAJbLB%vsw}ZH)Ml8pAAEGrKUdip02M?E-oC^TNzc=G-*I zhrk#Oyt_u$o@E|c7b9^eY6zlK?@ zaf{VXeo^|n%w8u&C9ia=S*=@#^*QSV+}tuLTuA4?BCWz6Eg)PyHx;!Nbrr3G>L0su zmj{15_~hVL)__d|wOQkR{Wnh(G^ckLa{V5qzRoCz`VlrOpS3C3PRr(`WlP`JM?iFBor=6NMOd|(c<_6x6kN=paOm`EIKE-D8U$Rmi5E?-)_ zFQV4ISdfx=DRB^*qio1{S&5T=N3nh-i+Vg5C4F9+BJ6kYafYq_LMKl4!Z_GRCV(zk z7?*l0*RdpzuwMl#_2(mX^0!Eta31`LVF zejS*a0`Ddv!$xG!5Ey(nOEA4e+_W^uVMdpc#Mn=UqNI_(D)<0l1AVcJTYMG)d^;Fx z>6-{kVefGdeGXfH2_=0VM0%)08?;7WMs3hJ)p|nJE7}_5D|k<%$LRF`;>T0Cc*LI< zv5vF@<UNI#{Ixu-8ao7fw;h%wu2zJV)=^nC-KonpeA) zTI;vDTh#iNY!@|92eZ{Mk8wvU>d>>=t#n8DmKt+!Y9CNh%k8`Mye@t1;MYoCRq|(Y=Y+g+g13Pl z?s*^p>MH6A>KbZ_K9-uN0k0?BIdvMOI}eRWx1s2QqKnXJ?v6Z5+Feo-+Fgch{*K0E z6l|bgxMM`LXk@44Ol*-Yv1MSxbHzfwaCaqJ?XKkwb_(yx`(K9>pMM1>R<}zd6GJ#t zJB(A_G)Cs;HZrIO`ewvN#^z0aG^%XEw1zTIM%a{5d30)X2QHS~2ygMLyd5JJhDdoH zVu6Bzrasa(Z=)Qcj7s{8(zp@EacNvllD2PNjFUw8_7?IkOpk@Dn<}w+OQvjCQ#CGx za(SdSW2r4!$eJ3Y)8q>p%M7Zi`O6nWaWUdCdwUOw+^{8c>9llSpX6R@b26XvIHmKQ3lT;|txTN39>t52oCUdtaBIPpGbD)1soZzKdxPvK;4$yPz0>A;i9~GJ z zvf9E)0W>jtDxQ^78QIZ*msU6cYB5of>&UB_s7fNkvru5Hz*Qz`;=Ck30VylU4KhG* zD=Y0`A6YJb`r7?GKLZw#cec~g zYRf;J`cE_74u^3Te9bx7lXDQ;QjglCrDpW2D%BdRB)%i}p(F7TuY!9VKfedr&r#AC zga9*FWIC!Dpf%JMBq(24Rs&e-s&7jArDZHrSCe?_{A zsXooR_!WAT_5jz^INDQJB5@re|4CdMHgH3L7o;19<7;dH>y`J|aU4G-d+e(lY`TGH znF1R!Tze*>vNDs2AIllN$NE3K1_$FILVAzV>%VQPbk2{@=vA3Lr_%ThtEM^laf`I3 F{|8%AaZ3OI literal 0 HcmV?d00001 diff --git a/hub/exports/formats/__pycache__/stl.cpython-39.pyc b/hub/exports/formats/__pycache__/stl.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6f0e629b4bc90d26065653a97206b417776c5d2 GIT binary patch literal 821 zcmYjQF>4z!6qfE3+r8Q?ZI@0(Ll+M@g1dzh0&WNe6HJ{#ISfKM$@T@^$&qxV4%rgO z)U{)G|AEe>KSOJ${)J9`vM(V5J-zqo?$f95-SJ*8K`>r?|0#Z8g#Lu$@gPtf!nAK8 z2$Ug#MWk>UWf4ZlNW_BNB0*$y6KAp5nV^2F{soUF^6OF?M>)+4x1vSmG@Up_XWEq9 zC6n=oFLalVidV~&NqN5bvnPtN^P{0hxt8Q zn)Bo@+yV8mPfkt2t9h-s$piFw#7$u-Bobv9{D}n4;yW}0mqdKq$;cfdC=0$2AAj{v_b51m^Old@KqP?n?49=1u+#bC1XBe zL1(Q(-ev5f=Bn9gGbVJ-*oMsa8hN=?3a}o~Zo|`%Jqsb&6)GFP)D9-`207^y^AdpU n4QNgqy=kL2bq_r?LF(p>N93Dh0=e(J-^x6IUt@a$X?NrQ?m^ks literal 0 HcmV?d00001 diff --git a/hub/exports/formats/__pycache__/triangular.cpython-39.pyc b/hub/exports/formats/__pycache__/triangular.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d0588144ea351f9f8f0a0fae711207441be9b5c GIT binary patch literal 1449 zcmZuxPjBNy6rZujcH*YH-7G8;Tt;Y-2+~HSdt0s0itMUlRZ2vQfGB9>dM1gD?eUIn zN-F1+UJ(~QK+A2v1>$4O4RPWtaN>=fY%5@__vZP{ynny<>|l4-N3cHnP4mwQLVuc< z+slTRXF$ae7)KMtF}D(&S`!N!*-q?~ObAAYh!gHyBJQlMiNoC!H1MiFz{nRr=2De3 zpkY)l=}gI#mMTg`v7k{_N_wiIAe&c7py*7hG$`qZ@+_uO(V|QS{>k|HH}nxbib9bU z0;JEl$jWFI3H5{?9gdGc^?0}s94sCsK`E3!lKE0a^F>L2e@zee4-V)^W}#F(3h3y? zmm@k?vdaCjlCcO&IOIan!zxM=0b2>KmAIhuMxjzUoNslhRI(J$!mYPq82Eodk!XN5 z83*M8b`J_N)rCfXd%eN(eb5Rt!GNd5@x9M{dgFbV zFLj5pD2qzQjMJhSd+ctWi~FZYgZtP#0>4`~X_n!+X{pe9^z%%r@xp04p=}1J}%f3CfuE znVHcF&|td9*sCf?HYXlqT!xIPdtlSVyOo2PAJrrRe@tX*DVpiP#P&U9bjJf%eE_@m iOif92*5YbvYv61y{hvqOdD>?5iJ85|EpdCeXa572r-A1H literal 0 HcmV?d00001 diff --git a/hub/helpers/__pycache__/__init__.cpython-39.pyc b/hub/helpers/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be58587fd1876fd4a0730feb36b9aa4763277725 GIT binary patch literal 150 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HuvsFxJacWU< zOlfXWett=r#g^jOF@hq26F6;+z)0GrP+br-cO}uKNOeg% zv5@p)qbN|Ir=q>|U?2Sj+Iv3+uRZlE^wgQ9L{m0pS*cSAq{JaPyYu6Jmb;@44rV3z zjQsLDogS5>zwjXZiNnD|*z8-dqf$wtGL0E>NrvCJ5v#>ZaamfFXo4oUB%0iel@c`e zLdvDwKj4P!f@PNVipy0;w@gxHMxF8Oi{-~(l1Z|pYs|D6{QH}OaFQ}k z7G2#i82mWknzII}2m`NK`AW-Hv$*B3hg!>9UQ@GwL)WEeIoV4rt4>wJqwpsI2M=Mh z=VVD@60nd;F)EkhG)CiFQYpcbEJYK)$uvn*TZv7%lnyLunh};vVCkb-Vd)Dj{d7QB zvVmog4hc(tU^zjDg=HYHjL?(9G8kA!>6ow#1(s8ETv$#7meX`XScU`38G2S&Mgq$@ zdR|yg29^u-qOgnxmP?cf%UEE!Os@#bslalTUK5sadL0zR*#n#|ioRc=??f8!LR(2BG$sOs9q@>xAe)j(Cz5B)K;@!D>h2r$gEW2HtniE%feXEeAaC61>hQJ??Z28K? zcpr4d%T$)+e$5a6i^%ZR z*GCBdu;}>+GzW33uS0R~#zov5253nr%HSB@{;*Gh?L2IUhu!A6=dfQzg^feB=@2o> z6RS*g6NYRPWKdCc({wX@Iunp+55tip9ujv zyFZq__B%s51AsmZLCPNm(w^gR>6F}YKowY~+TRA|NYCMWY z*An#++Ui-9$Ar;xoh}>;Q}2k8z3ztbG9WaM1!JqNo-ry>YP2mK7l9^qaqg=-8|~6_ zELW@IS^&j|l^b*4q`!#7!nzwlk2uN&9y@F63IJITLAf5Ktpomg4*aW*fjd=Q`^IFp z-DA{KkZ`q7vJHt&2HrYHd=;YoE);R(g16mS&*5ST=D>R2u3GTwd!^#?hLv&liBryf zVOL=|qLz8XAyvE(9-{4V6b6(8p|qn{Ot$awPvwgt4CA5|1zS-YOr2X0le6I^ zMHNQWTR2u9IIg!jt|vLJm^dy7I8JmqPT@FCKsdfMIl&zcUL2E^qkcI)HIBiA>Ka%f zv2o6vkrVMuGA0kFyKEUak6Xlb96jceJO@8K4LdJghib2(uZqf_I33j! VFY~~s^byv`M4c^>%E$xpe*r1IKD__{ literal 0 HcmV?d00001 diff --git a/hub/helpers/__pycache__/constants.cpython-39.pyc b/hub/helpers/__pycache__/constants.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdf6694aed46775095c90748d883bac10004eab2 GIT binary patch literal 7358 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 JjlM;k{{cLc!J7a8 literal 0 HcmV?d00001 diff --git a/hub/helpers/__pycache__/dictionaries.cpython-39.pyc b/hub/helpers/__pycache__/dictionaries.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dffe6758cd4df1806cfb8580d0498be7ec791e11 GIT binary patch literal 8959 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 ALjV8( literal 0 HcmV?d00001 diff --git a/hub/helpers/__pycache__/location.cpython-39.pyc b/hub/helpers/__pycache__/location.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac83e9481b0df6c63f9ef290092ba1c2d5996a39 GIT binary patch literal 1791 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 Yv3FZ6E4|QG{`1D*vAG~Eluq^k2Mb=>LI3~& literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/eilat_function_to_hub_function.cpython-39.pyc b/hub/helpers/data/__pycache__/eilat_function_to_hub_function.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4cd43f1c00732608f1bc4c51939a43db9725d40 GIT binary patch literal 1195 zcmah}&1xGl5SDh=KUpWG4YZV=1f@`i)`a9{N=dNY#NZ^xNlLpI#AYSO8+KQ&qz%|j zPsua%lo!Yg^a1(^J?^!=^c8w29j)yo&_69R%#3D6qi;s*FD%sIEb0<-o}wUB-Tcefb^Iuwa7L#{|H zSQ>FM5R$aQ$k$|$Ciynef(+B6Yu(-NHs6rvq!R`_Q5>W;#9kJk;d#6X1VXaVCyiFGL5`(JM{ZY&6CP;TWL%Oi)FH`^ zNR%I)a?QzRbm~h!A&iql86NpkhGb-%YVozxMlerY3w-xG+!O5vhTmQeC>ua(1sF#j z2Iwq?J)2p~zCfPC3%tmjOUw$ac;TF5uf$3KTseD`gY#;J&4JiXkLJo`#U=m2js%gf z6u1Q#4xTR~n~EAh>LD5{>qfnQsJK-9G?qf>es>%UeHqW1r1~%wQ{vIcxG`V*eQt(_&WDF;LBZ`> zuZ_l8nbI%`HKljWeapZQcFgy4^7!xQ*5*-FoE0V4sZ4$Y(Eyo)SOnn=ofydQi z$QIW`4>`HHZ*HznQ`O1)54m2&vIN1>l$FCUWff2}_a^oM=n5VrLdD6Ge-wQau?xck zH&6VSQ<}MyP9Ge|iLmz6xX{&1RNR;*yt+LY0lr3D_r1`7lv41)$E5DeQ{?fp$ K%-}kuW&0OEa7eoV literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hft_function_to_hub_function.cpython-39.pyc b/hub/helpers/data/__pycache__/hft_function_to_hub_function.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d72189eb262175b55ea471a67531f0e97a0b7d3 GIT binary patch literal 1524 zcmaJ>&2HO95MEN$A7wdpf+9g%6x;R^6^#%$$i*lM3lc36rG6k$NFxYXFx-_zgXF5a zOB7PmQ~V4)*(iS=t~Qs z-*e;cDu8hckWWESG(*&&W^5#;i42q!W|o1vh!&`IiKz9?oE51#L5*Ve8-&}PC{z(o z0}(Na6Hc?3;RP4Cw@`SIrQ1!cI9_INZftup>U@WvVJ`|yA8d zy=XoM37MY7fnvgL^VM2J=Sziuy~4-OkB@Piry&ShX33%0p-h=ez9e0?ssVyEFgTQdyoKj72QAk5|61?=sZ`Vtg|W(KfjQe#%2 zCM{f|nZ=5%M6LG*Ez;7Z_0E`;X&Jbx=qJF(*)<(L?`3cH#^$Mw|CcNr#(|U&6dHF* z$@N1(8z4_XD0E=}Oh5r(0g8YUpbV%0ssI~M0~`SA)OcTii^w5GP@_3$)OAfT8EtzJ z#G6MlO3(9l21yjJ@sekfZH|&GhECma>EaUji*;qmO4E4_6{e0;czr|A>uWe zw0pxLY&o528*&W?y54s>?zB&aXJ>BP(Fa~@+;#R=jnMu5Szj62k}O_aA@LD3^e?}C zGM`E&{-lB_q%#6)fFv}QsnZjzx z@a^|+-6y+LC-}#owsyl1kKwR*l8c;{o%k3uZQq{7U`rDODs8^Fx8&RS0bEI7A`KEo zh_(sY{kcFtAmsZjh_83bgisz5B66a1WhFQ;t=8JgQ;AQ(d8eptd3j|bucQW$6%ZA} zDpZb4W9w~{#OL7CA3|T6%U$D|Fzr$Wsgk;U?b6j7pQu9o_UwPXN>{$#mHtgmw#e=kam<|%_ZCyLP%c?i`|0F8u}ReoY2i#t~CeB%~knG!*1C zR-~7nkkd5Ef<(te$dG9g#8IMEI`&S({$Z>3iL8*O3`CR&ST(qav^+LEzQ*k=*TPi*mfrcO#inIWP zB6|RWg%?5#QVB1Z5+lL|Ia2b3DJ99kCYAelNm~GVT(}%C|0g^e?FZJ*4i7e4Fq79{ z1nOeo(c!r3a)-M&sOyQG$aC)-<~g3f@vd>Vzze`)(Y)MEPqrsSb>h0E30`u?(lj)B z=Mw^{|B#wxKTIkKLY5?OCcuDbI_%muLltHww?^lfW3T`gteaVnJFo_sW$p^mJVyZ3 z-R~~7MItk0SV&J&8FCq&jofIJl?uiUv@rAS`eCD1-|sXkO_SR_=+v8Lu6EGgYjh6U zpN(IubShN{*W1S1uC({eJmu5=8Qx;!B_ce%MQQ=y{SK;|$47}!$#L3OajcJ9!=T4h ze&NQAF2g=?z@Yr-?IRy>e|jH!5?F~?Ur=g%O2;2HtQRQ#lCp3TDNxGe zfKv6uUSAxj7(~!R#5qoZN&cT_tlvhjOGcQ2Ga&N3@ nITMaWIx&Tb%go*Rl>O(*&OUUNDZU>=|6r+4>=)`4p1Xemu&ZoW literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hub_function_to_montreal_custom_costs_function.cpython-39.pyc b/hub/helpers/data/__pycache__/hub_function_to_montreal_custom_costs_function.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67a9783645f3db40e40be4996527a6e7ffc64bd8 GIT binary patch literal 2745 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 literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hub_function_to_nrel_construction_function.cpython-39.pyc b/hub/helpers/data/__pycache__/hub_function_to_nrel_construction_function.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f78d51756f02febd3ff76fcee60b7539e393a8e GIT binary patch literal 2955 zcmc&$TXWmS6$VI(7m$)=DYl$6P0=)NqahX$hMSv;1kdrKM-l2s z($Ac^`c#3r3vc!|0FlllB9lrYPb(EkmZsISnk)?@QYEz~5~=-IIolu=U)tX&{t4a(f#0j`JC~`1Oqs3A{r)hUBvr?Mo(OvMgwALMm%D*5` z$sTjO`qY5A3vc!gKqQ^Xkh=N$u}4*&y{NwIAiP25CU%n(X$l zxZhtUCrE7?CE)!!Gpmusp`xmw`CJ}np!`4bsH$TbJXt-QUcjrvoBb8ITzV)I84#QV z1UCU|0->Zp*GUzyL27_avH{o{J3+rC zX5AL}dx3utzP&Bzec|Cd0^b$*p1=cvU4ieDU9fg2@B<;aBk)6k9|`OZXaWtKEVi=NVjfYj|6PhmD;5gWZl?oa{oVUI&;_-Jc8DXuzfcZ&UWYPYY ztUAsk*7gh^^$a^en#p#3WDiUO_caTdr+Da$e1q*+BQrqH%UYguvK~e~>>=O4nyYz% z1*X{U5DkVe3SV{leWZh$-NRbXLN@XPPYaM^vyN|Rrin`hwrLqXG_qD~$JD%mvEmfn z8F@kJS*MRY1N*_!h-=s=5RrJNY|C{_zS?TE?K*z2GSV>7SDpr1Eu%Nm%jsLLhb)j` zUmrS-$zFS&$0sNlVt?qI7#`d94c)POSG1LpjqVwqkAhS7hN*q!Kx7UWOb6`5Q0fT{tOx7GazKa5=!Jab;unRtcG9DV53Crr5XR!8F=5?3{!SifG z9V|$X2Y>ERv$cW2AW4=5A81}v1+t7>%oEJo{>U{vi1OG7*zIy@9+NAg;|qI6-$Mff zyf=Ed?>Ig7=8I}C(NQ48KpS}))c)2tBcvZ=-|+77{9hT_>yMzwFB#YvI)P!b9q|t@ ztFN1y?}NvpGfIVa*$E}n>N%c;c#_$cagXQ0be5&O4#nXTXsuPwYeNzLz%vYc*|<$) z_ePMMQ`S6jyknjQ);fVqm(6u^O+FVeyXL!&7x>Rs>nsH@)7DsPaBA6_5B>Pisum$_V7FNsF+|@>b!;RhJTT@3S@3Jk} zZO44-K=XLbTX6QH0fH^d6dMBPiy1wp^t3=*HeRi-c@}G9vbs)OK9yN5i;|0{5*@+` z_V4@p(fJ6zDA{>2rD>XzBqteuo`si!fAvtQ!p+slt6bd{=Nv4FT27i8=P^h~8TZ%P5D_#GBXFlUM#ad&h`XAI?S=s;q literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hub_usage_to_comnet_usage.cpython-39.pyc b/hub/helpers/data/__pycache__/hub_usage_to_comnet_usage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a67fa4e964242be70d56de6f33bc4c8c270fe6b GIT binary patch literal 3146 zcmc&$+jiT=6$LM%c#&jVvLxHF6~wLED2*xC=~YcqLm)_E88-upSuBqsNb-G9D+CguW;%wk)2~ zBtL6gGdmn z#1p*fXMjLBt{_xZQaP@XDyh8{j_biv&>;0cSI81+ysdv%IbJ5q2voD!9Of@aEEaB3 zMuHQw2W?Tr%w?FySHdKYBR@?cF|J^{#lyxkyfWVOTTq$sszNG2SOTnZtaDuA*x3H(g0o~%fRcT3A{mCz;%ur9B*>m!OhVcV(9rz=TKjxfI$qjIJ$vW^e zjz1wA7=KP~0w0o1V3%wG_sBNz5yzjBTNpnkw}D@fJHVfjkAOcXcY(hk_kh17JHTI& zkAc4?B5H5)9%X za+1?*lH_SHy9Tl!(m-@FpPd%Yu!10N;4+B5SCSxB)$Wa)F1*a=5{oi^1IlIG+xQKCWY^Cg4xY3!$AJ}oy&xHT5;Ex0MV zlYreYJb5~D1*tnwVg(ep*p%5KF>MPmmM53`amqF+bGZeUlxN8lieCqprt_5g^c$vQ z;8Ps`*(OBoAPP@Il!bVJ`-xz7_qRoDoCQV4Rvfjb7_KU5#fGCA15NSzlCEk;-q0L5 zO0lkwG*^9}*RsvSi)ppz*{Y*>k|o)$4pqg*P#p}v&%AB+`>G5vqvuIIT{Tq4wIx?I zjbg>oB~9~6fnrrxdg@4DkSm&G50nMfmd%mvmX@vbRa@~Kcdo=z4AteH*hj^hWom4< z#cani9e1H*SyK;e2~sVkHGsG_pDVVbx<|#1CLNgY%!D%LEF!E(wmkG?7>CvCu!+S$GYtikuB2*3b7(r2>LLf* z=E(Id*aTs3s7M;Nl_gs#I#-FiSO@1>w2=oL;j!_xhLRx-lmbE0b^JrIoVF2V)$&+? zi;gq06dPVXRovo1xi$02;@+{1ZKZFk0|nMAJ+E(?z2g4Ê@hKsH=vL)pH*0Yf+ zKlL2Ne$L{5WoElSLXtl)u{1PYMJv|%k2lZ0tVxaoi+N>~0-drFN}|;>ZCzzSF4mOi zEDoAEPvs3HhjCC^i~_LqxhPuC0sVdkz=Z z9Luy_=W@4|IRh&Vsb~$3bVG7bzr~hrauY07c1I{w7YTHc$cBz%h52pdqR*T#1|Ck1 zb0M&Xb763;Wod3mBiCfgp0lGVs~W4aHJrAmZ0SISK>`w#FE83n{_QM#j zc;4@GKbp@hdmc%~o=5v^x8@m5kihJ`s54b`2<8=wxNXcV%FO8CO`CvbrCx7J)e7hC zHmC+(v5E9|CuKc!(bJ}xA7^Q?JZBZH3m#=nKVSQyt%~NCrRiU@NT;mxtuL?F{tFLI BiSqye literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hub_usage_to_eilat_usage.cpython-39.pyc b/hub/helpers/data/__pycache__/hub_usage_to_eilat_usage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..750e7d877b8400291a113ec21cf04e431b39b8be GIT binary patch literal 1203 zcmZuw&2AGh5Vm(WKivXF6(Dgy_`rc62o>BSgc>EGt(2xwno1B=vfQ=XY_+=%wzpCO zoakfl0(}LJ+&FXdfeR-d0k|;UG_(@6$B~I;##AgcNhQw{ zK@O!NAI3s8NOz;(1=I8T8X%nV z1mc7WTXHg0@zL0jFK6W0+Oy}RC9_B>9y8MF3|iz!$$S#_l{^-aflV$H>BFUpY|Biu zI;GJ;%yW7Mv9F>_JEfY+T6~i4vwY zI7ApOTMQ?=qPAcaWi#j)a}4Nl576g6V88>w5)b0idqm3|xw7@_@<8agAe|+%l}%|x zLPR=A2p04PG?|+jg1qMQcpYunn|G4$qLf0U7`9w;KCV4>*`4Y**xp8KgGti=?sF75-mYS>e$<$UUjkDNLdebp-4FGv%d_Moo?p?)ueGyZ` zwycE7RrVjrj_88qG6?U{v7->r9z#6{*${@9u^<=kEX{VCU>Wg{mFCEd^eXO9e>i-4!Tt>|R literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hub_usage_to_hft_usage.cpython-39.pyc b/hub/helpers/data/__pycache__/hub_usage_to_hft_usage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eaf1214cca316b2b2129f36449b50176efad2ccb GIT binary patch literal 2926 zcmc&$%XZtw83ss-B0)*EC0nv{u~D~atR#{hr&l#ejern|BU~5&v?3j!GY95CB78tX z#iglOcNITIU%;=>W%~p@-OaYEK0p`ks^1JqNlv^kBz&Czn}25h+h8VKT~#DJfBDCM z=)YGa>7QJ<`qUvj!J9t-Q0Z8rGOZ=@q*jw;X;MFK$Wl+Db=r6((Z+YR<0V@2rR}Bi z?@(8|@u-N?X_&=Pu1-=~CXsrQX6m?nu9kUt8mUF9_D_mRQ2asn8+Avu;!!lsBeYB! zO^f&>jJ2PVpY1*ZVve08ETT-&)3fs|J{=e8Utg<_A3c7o>gjZpW;6~}-SBkv zG)v1fWss#WqEUfP8f9v)j1!pBD+^4WMYB1PP14;9&Q7zmh@OlVv+a&TKClcqx%Dsf2vqc33Bi@>o=Dn9MfvczVi9KAgnKxjIhEJeu8@lnHA3Ds?A4 zIYG^<;gqT&oy5~PFS3yDoY{Il8mDQZej68KH6N$nMj2~Iv>a94x2|-jWii*7-Alsf zDP~Bsb1^B5io$F(REXFYAG@^W;rP^jY&Xj(;#wc;r)5fLcoXK8k+JgZM1hBIZFPIur3 z%-H@dtB;C^bv(m2yM_~(n#DGJ)9G0T+1G5-IwE~{=o@U^9$JC5-zV?5`}?L2HK$9ou5CJ|A9z||x(-|MZOyVsrNCBgqiYWBg}7pA zUe8!aitY}*pt5Xb-}DUP2lGh=hGPc86Yq$v4P1+_w&?8)Tt8S$vTT`Oc^b6ZMt7)J z!`B9$X@eua-gjM#z4N9_4$YuX{Jwi=cK);HV1?Un05T&!0_PZff29|s-?M41K}NC z*faJ$vuD71qf7Q(x6AH-U+pbA3S11dp{F7Dx4#~m`T_9`?loHymcy{DJEQ{^e>ba{?nBjkSA6wxju| zU$$wx!i0gT2SXHUfCL6eWYfmBLjM+WvCo}wdIUSizff4izHr2>RcUT$!@%W}J>^?d zH!WUeYuIfEd}vSec+T6NVVOM>Tb3yf9OsJ}U8Z!kK${m{V_)-Z)**Cp*EoMIvql~z zC$FXK0B7QV9ewZFFvn-_Svkqlw0Jf+AC1FoGQSh#&u|^7-Y7ZaYBVfDPLPrx&7?>P zj^IkzJv(PDLhy+$2)WKr+?N2U)|CHGe}9|3`@=iL?!v-tnek73nN5FiW#HEaab;+t z@ltxh4={Q532qmv+KUR6p8=OK74%*;)t>stKM8qT&iWXfnH+eiE3nXF%H`OvA?G!K z)SSKl7Gp0p9bAbJ-Dx<92w@5#)twRT6+(VjhRM8VnGl+e2+3@|RO>8Dk+Q!S!Dal~ ZEXKZVDc1VDGW|;)=A2&;8_VnU{{ggQOTPdB literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/hub_usage_to_nrcan_usage.cpython-39.pyc b/hub/helpers/data/__pycache__/hub_usage_to_nrcan_usage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c88afaf048be08a7d7c2a4caa8fc1ca615d55a2 GIT binary patch literal 3080 zcmc&$*?QZ?6$Te^muyS6JR1d3Mt#d_DbPq^2+Oo~wpTx(a8u~$;1sEwLi1Y9`4AMPO z9hfReU+z2sLdxUF%Y(GlO-|3!@MMyU|9B@pee(3F*iB+TNlEC5UD@i2Cuvfgw#+nn z8TdICNsx+zB8;HSpvWOQ4Q2~MI!$)YX3aP!V{!kj%NgaM_(3`{JXvAFMBzo$5F(1!9 zZiylmE}RszwZ+tryetEQU&3L_hmB`=yLhwjG0TOQB~k)H4`793mE#J>8pk>*W3|Dt z$+5+;O)8*wNENtBR)A}y2E0bllAQ zHh_=GP2di>1>7Z@z$YAkLAEe{N^S$cBzJ(nBzJ+oBKLs5Cij8AArFARB@cnWBaeW4 zLLE22DnT*P56ra>0+B=#cl2w6wM_+(r&j*pS! zV2)G!@!I3iRgna`cW8%{_I{4Kk*4_ z>&Q#RC@JETU^fcFtU!I-KVS5{;{atBdb`ISbU02DGHVY}DABIQkT!csIt}xLDTGRV z#cW7o5fz<7P}52N8jBMzie{B~*PCr>UR)e|eqN;PaE!tTijNxyN&4q(lAO}!0hFA( z=$ia}koqBRhK00_eVU|s#>|VoadU7sjlC=^rVyL(Q%`XNL4Pry1Rjnb*EF~q>sw}! z;wGB1Gd(6@!7$r$QZLS!R33+Og=QO4ktb6~eT6%0q2+ANhMnvlJMq}hY~2c?@FYY$ z&ttv)2U_v-fVM5!R(i7TD3VGyY(*cavfGz5MLl$f#>kfGx;9cB<$YSyG7ip{m7Z%U zw(Lr#WH}l{(T$-p82*@e$LRN!F4***EA=!*S8T_U9L3OS$JQiOb>|FpRg-(lNLx-j zs$>o1<*d~;MwT zKd@w3UnFir(R(8}=a4oI3~Qgc0Ywc@&y#EOeE6Qh^qOrNmSbO>)>#m+Q;+n+`5Q#1jE#7?#|Uo0ngusc zT;3AQr#q)-wBfqAzjN2U&N_fM0HItf{X~ENoISXzui07ZxLu;PG{DUq|6dcs8X4Zi z)G&A>ykwu$((DWLJEAxUa&}RR7k=gBy}778@%7*Me7ls&*qrtmFn7;E!HBjl_I`(X zRt5;Q*`q7fz2Mc+s=>ptHw|2uwp@4K&0^ef-MPiqrF6rb7M{OPt;C@6xLIfxjsq10OtY2C(HNJD5V)+I1(cP7o2%}$(|MH1_& z{SIDw7JBeY_!Yd3M^AnQLGaBcX$w|od5`yJ-kUeS_hzHzWgo%%{N)?_!~5m_V?uEB#4=oJW5HND=mhkpYxPxK?eC@A^UsXtpl=3+DXha#X;I;Jkv=(;j%&6t!^7k zPwQ*IA=_#iX)gUhjK(rK8ffzMf~>EtuaiJzv5+i@NYLC3$dMHJ$nQ#V%wr8s#wBUx zNeV@^at)~^pUez$DC(EC9U+D08}U3_J&ydJa6QzCEx*1zP&R;|H6#KX`~cv zj4_-&Uskq71wiT^FpZ8ekOSm0eD0ng>M;Z*IGvgsx<`=;7kLT*$s|tnI9!lCSv2I7 z8lTeX8v}WX(sy~3&O8-LnTRQsOZLp_ND9DLkBw(j$y;E&R+sISw8cqVj1>w*tJrg^ z6$cmAT3N1u!`y)`)Cbdc)!~6C9c5aX%FJXIE^X5ONQ&5-jxyC})6$i{9WY<}ona zbDur3chaym1+u2FE5_#p%Vx*av$j7cYia(@{##E~fO`R^MY6 z8ByHaBfSeq|GY^LXD^M=X0|G|Qg$|}^99r8gTQ76&DEMHmcEQb6V5=zrZZ{F7xk@3 zt)fs&+fLkG87ynpqf}PXQu?tcsd-E|YQMkM`|qjM;PH??c3my(N>~39!i&)e(S_hO zy7iRf^_QR-A*aF;yAWhUN0UBmk2)kj{oKs^SbKna$2-qb>pp_WC7ZpUz}y7jPNNl)8k{_T@wTA*Da8Sn;qDQ_59NsrJmd-cl>j!PYMFN9iY!+``zP z^+2@;=6}HS!1Ztx_Tm6H*?w0)g`9f|Y7G{xtOIzA#wVoq|HgA~{F9C1z3^|4wtCwD literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/montreal_function_to_hub_function.cpython-39.pyc b/hub/helpers/data/__pycache__/montreal_function_to_hub_function.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b30646682525d385c57c399afed6a990418f5a6 GIT binary patch literal 9126 zcmeI2TW@1m702z2XC{;Bz4QhYOrfO%?cj6wsSs+EI1{UO9Bij$qLGf$*waas#Dn8J z%uocP{Q$hvXQX}wBwqLmNIY1)@x(`fC;q>6yk^{?D$huh(cWjDwb%Nu>t6e`$-$FP zu2uB&r@#Jd^ylAID*xbR`R9UO-qkpJQ`4xjUl~EUELIy$ItwE7$MkEWCJyKB4C$;acvnKnn` zY5m6e(Xp($aXu6DbbNn7n4V0oKcICd)5&c7?xCYyKRj6br~Iqz95OHe)b#SM#@UZF zjVt?Ag=}S1-M=te8D03SvR@lt9A6sMKCg~0jxK#x`?R`$d30F;Tb;k^LD^cwWH{MA z|IlCVzr9xf-(jmC9v_^YiSw{3_5Q>9qm@c!L(j86Ua3@Om5-|$D;gIxYKw7E&r1s$ zbRU-G?0H%<0*}&HNas!qX7nT&uX|H*3W4?zo7B%yx-6oec&LA zJ#H&|(6AdG)-PzhxbzMdwj$3HK4`q74;ja1&A=9TS>p%xvc}$*G#m>a26TTq2L7`4 znDPz}^3XkoZnxV2A3nNo@L~_|j_LB~#TV#2U)F#RJ#Hhi=x`s14RUUq?}72kf)AVF z0gD_u4^ObYCRh_go<95?d}7Bta@gTI(dAe!=lk$5cwfecA3C}{-p-4?_{*Nlc--M} z9nkQJCj%Wkec$nUhfWRhB(6N!_a|#&&eLPoge+sp`nwr=(a%rmIgHr zrq>T^m&Z1@3;o~L;OR8@JTH&xX3qz?_O(CJ0~UIbb-k<|-)ZpSgXb0u-*dcIMPu#q zj>|i~A`1?~dEIBHI~FnVIJzzHxXsJ_>^qL@rv_Zkdx&FG53IrGe8a~8+kFBb9_;>( z2Kgp`PKV#?%ys%6wjk&A?)dEc8r|R3K-TM*wGX%7G2JfY!F4{K(3YR_* z&-Yx`aq8N0e%B9=ul>19b6Moj!4p2GKl-FsEY~*s%eY_@N1kpAYxs!QGB#%joy#3zMYx`qk5M2S)=y{8k{@w z_UOL9KdR&P1@9Y6GVq}90q>~#`<2gce^M!aII8HIaAoJs+xl$VuLX@pW4{(Qnz`0_ z7}y-{*K%#_*HYU}8iCe%oNJE5T%2i?X-<+T(mKf{m4*Sb33Jkf9wd=)(i}>jfDq&$ zNQ-u}Fw}0+XuuP|lSbtXe$os?j|B=&tT_vVSd=D|JPC!91@NS1PZFo1$0-`KI25N4 zpacOHnpB!2mC6WqZO+SeB>pgEotoY>jkS(!H;|K}+d4H%H{Axx}@?3h;C}vhTgiywzjA5Q8=8yB5-iM8WCg(7Fgr_MVvv(EZVDn6TCDPz2$y!o zB|p(i8W!6Gk7O12O|l$Y#?ve@jX?$-jjJepNj zrD@c}Lc`IntO^pVt|qgh1V!a*m>@(ThhZ#=@};%vN(gC|iV|l;Oms;p7-S^0-DadL zs7ftI)VV5L{8?x*k8|-Sa#9Fo#8l`|7SU!m1XE!KM+FVCor~0}I%X|Hu&_KYNzfF< zsx)e1ZP)-a3-L>6c%5Q%QdVqYCo#zIrNoI6=}N=YII%X#Q(35DG#s*{uqhYviyBKf zJBf~;)-nzXx*|IxsW!B06{47kN0HPVh8f5K_Qz$lFKol+sO%CtDRbFRb|R}oWlGw^ z5KB~y%z3HT>LFuSeqn=k8&#mzVI#()gxV7txrj1RLaWI%wKHY?L;$6QM70^|q$Fw< zmNh7Otk^~g^(K$t%yVkePF86C24ξLI$u(j^-r<59welV+AL^F3^^8)w8&WbLZ| zV66_e&GINJdx9L3&4wvEwN@6y6K8Zwl?<{0XEU={<&o8MVw9MCHNC6IHbqieB8yn4 zx1MF8dVrL4!4kEkOud>o3 zJ8^Q9*hch5r5zsYY>{pZsk}o-}S$z*2%Zr)>vR1un zFz}c!YRT9v$HZy&tEb7@B(R$zu$~iJWvU$uvuWo&V6D3qS@T`(lW17yiJPFs&9Y-~ zj+9MNqL|YyDMeTb6uqeyBdL)3mlw=-yD7iQmmHE7RWh@RPr57@nuVq#A~YdWjXG@D zOlEa1h@lQMyXLj^ZQYFG%oDN@sim5%q~ww4iFN5Du&f!H5Tqrs6A@-~MP-D!Nv71& zz_Dnn2MQsyI!t41jshx5_XV~o+1d^1@H+3xRBE-VR0|<4Z=dF(+X!FLLpHGP6mVMA z8L%WOGmA&M=V@ z2sHHs)^X0MjPY725|1FYo5%FSIHLv>22o^*X7vr`MSLvIR*gwaUybb+(={cYXwhk# ziiskl_^AJAR&7M(hTO8kU8i z$!;2|&Lgu&>5>+;1n_gT=qeMBE)8Ovf~@NiEq0<6VeBuvP1El8jGiw}?6%ne+^$=-PhtaOIqbuO{Q8dsMl6{5TVn_`qQJF8kIrUwq z-BgD`v)!bM0Q`1C$x}SCyDzdDP$$Hm94V<1LTKNC$|jKs?b|~~QBq2YW`Ux`DyNZ& zU&mbtItyrw;8&|w1f&Z~tZRuMdS<<`y!FZ(s_YU$toVo4bHpi3^$;{#rqr~wmS384 ztIWu(m0IxaOFOl^OQU23FJ1aN62CHqM-5^w9Om4<-!kqpb#lB8EK{M~7k2xop0U4y z&5`x+sQe0*8Z4n2b+hBO+J|gNuq3iCUd>vo{bNa!6Q?60PTjc{0kWxYBxXIdTY6-- zjF3f9TA_hdu`bU7 zH6KOR6Y`K6vp7Wd?WF!gmhBeP6$DyB<;ynNub4nl#PECfN<23q)j*2$F?>5`PP55IkTN4h3OkIHjIHL9zKM;}>Qs~;j|k(9Nf z=o&EuJ8L>@+O=C!b8zj=`Gv#Tcz(6t8nicCJHz&RXTI9r+1wip`#0xTK3MO!wtIVn z)_iTJw^MAl)`zXl`IFt&W_zz&^tQIz8?E_sgW>wlX0hJs?X-%1Yq;L-%wH+@3ftK1 zws+bBTpzZ3JM-5|mSV8o+buq54~0LJ*jB%Nqa~KsX0g@lZO*T3_WIrSuqQJvZuf?* z&ivVp-p>2jC`&f$~gyVOP}o(}Ue!e>f;Qy^T`gnpC%Ui|%@- zGhf^2b-VhV5PrV2wb$tsgI522c_9nr#$JD22v4<8^AO-AEZh|sRK=h(+%7g0nfYsv zy7Co%JTqv??#=c7&0?^z-RpJcPwn>G-KF=d157JQCtv>gUVG!cud-@&yEoWv4`uj^ z-JS(ux4kjk>$i#_d67BK58697I;~=Bz1!~G6d;Max@_>;-cI}dR)5eQ-kjIA3CN|c znD)B!waxY6`XZ`VZ}eL&W!vOmd{6^la!#S&>kQjp*0uUUum2u-ov$s0^Ga)TZ;^`H z)_T7?zgmor7QZ08_eFJHI~yP0{-QFyuHRGr`{u?wxAxA))3aOWC)3Gfc5CO(nXSek0!g7p{@4_}Zm>t|YS^Q$L@Lwzzvq>S&2k+PK-kYx$#nI`}tSFx07h-?o zS9aCfU>ixI$7Y6nEjq$8LyECpo?BPa!r-XW^{;OZx`?c!y#}b~t#YAf_r=Msw zUwbHfPyeU;Oruh{bpOq-xBH>cj{a^!-Td_6WLy;UwW28h#zgBUisF~&2gi$@%SADo z92Uj2f!5W#(}}K(*}ZuUsA(wTl4WKi=1no@s>T@?#cH)yTm4O?{CBcawcTr%rm6Pk zFX)cBey6;NuIuka&SnRvv$Of-1!;ce0d2~4W3peRa=!Z0(uJQ9`7?NHm!G@vA8)!3 AGXMYp literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/montreal_generation_system_to_hub_energy_generation_system.cpython-39.pyc b/hub/helpers/data/__pycache__/montreal_generation_system_to_hub_energy_generation_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de2ff300c262769d9eed43629ad1667a602ea9db GIT binary patch literal 1440 zcmbVM&2Aev5GGfvm9&W)w15w}@lc>u(Fj3&GlIbKT9AY))1oSMq|4l2~L~z--7x zW|GT9s6#U9ha(6bbY6mou9Pft zKUDHs#0ECGP$W!JR+Xn&`au{$y6Fd|#ENi1&Q)^3luAf$4|NtY+Z;NIw~0G3^Z$az z(P?b`!{Nf>2u%M3PM`<_mJY{JjXS({iy~Llg~#2`nAf>?>wdyfgEs)lW_hqhtG~nL ztb%PS2gOCN!tCE$tAS5;DF2`zL;8P^lQ?BsLy{Onz1v~u4X^-Ae-F-}YYgUq)xcb^ zI+(}tXYV7T4UV7%=d|rb-i1t3p`ylRp)wYW$cv?fz-nKlfWJ!O#O$b-YSjwgZP;J6 z=7JfL7mFOwsKrK<-tl-i>P^blardluJnl|T%0@64j%;kdH|hn`$uJmBf1~~0X>Zb< zjwj{Qa4?>Z-;GDp?l34@gI;$^!}GUc`GoSVN|$%IbhSt??~vMq?!KttaCWYR(z9Zr zq%^Z|8PAzoY(%4HpxU*GG`Gh%Gi(ORsMJmGg-q8%r$$n^Lf1lnyx+-}Ws}k*OAMvY zEXd!0Lyn7gzb~uTU!jN2HfbA|o)QK)ctorvw<6Yq$wzc;sl%(EK?8*Jg&}4x$URh5 z_;8)-klg%Ut=m}H*F-(B&LX&Wwu#cezxy24+5v~W)tj&B=04RaNCFVc*g{ZR`joC; z8JIt%^nJn7%}#?-E@MiSMYU|^N&;VIS-Lir`WAu@>a8lbMJrpRZALf2HL+W3`VOw5 zZBOk(tlS4aJM%UD9e4<|VVTioV-qS{yO^?1X?6F%{;F)gUYGvH@}TW=;Woaj{R2HR BqZ$AJ literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/montreal_system_to_hub_energy_generation_system.cpython-39.pyc b/hub/helpers/data/__pycache__/montreal_system_to_hub_energy_generation_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3f4e009f273aca9b53d3074fcb8607c6180506e GIT binary patch literal 2531 zcmb7G%~In=5SCt)Ss>xV0wg+U5GBetZ zmCb2+hCS^I@B(>&Jch10<&s-2Ii*LEu_+7&xn`{S>F%$;?wJ;upRZW(y#MA8`lf7I zf0@DfQ-HxLH1!#D)M{DOrjBp-9mle*exc>s)|N#J)V;8%``T&EQ0K_1&P4yh_R0qL zG#3GpoGH{7H1Zkh2#NMYpd}+dQUj$~A8CPlQ5&&<$?gDk%|9`M`FiE3vGEgHM7!K$ zfnxBsLs_7Chcmf?cDEY4F!ikV6nap;=o8Ikr7psOCIbT@jTn#m_6~irdHPp6nveCrW{&X9Kk1W8Oc2R)?mV&}r+; zzN0z$n)xqGXl_0?L+!T%j{~lW93a9a0xl^xv4?298bin~BL`RDdMZmzw=3?euCz1gHJtP26hb*Xc zm?FzGrw597Dn7rbg~?zaXzYh^V|{YY7NanY-^i0I$Z6of`;mj!!*?=W*BIuTY7IXd z+dpRNNBqZ)y~x*mF=f0RabFvZ`HeF0x3^ez119k(BD&JG*9XuCaa4JUBVnZLaOqliBUfwI*&H?=_M~m=5dR;L=W9 z#r)2tCFkJs{I6SIIX#AGsne(rhhCpH240WIeqMgmDb&BLF+VihDAD8;YD`)uahA1M z3k>^kRwwbOPUh>iaFCQS=5U!{{I0pUKZVY6Tzl&8A7CptHnq&uh9;_ZQj|=?HFcwO znDUX9jv~Cgvd+w9Z^uud${@7GG}1kWMr@_iE19Yl^xN<0xN6H;5SHfqBqcHH=3$sr zMzWv4SUJ#H#d!JtK8zIXLyZO20@7y~Cl!pd4;6Ty!}yno`1wi+V=6q1Xatx&jx-?Lwf%XWRg0Cy9Y`cZ>$Bv!OR*UjOm`gr_nAUn(+-q>IP5IC& hDdkhi?A4q!Ut_84BvVQG+YI`5hJ9teINZ`g;eX&3DJcK| literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/north_america_custom_fuel_to_hub_fuel.cpython-39.pyc b/hub/helpers/data/__pycache__/north_america_custom_fuel_to_hub_fuel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc03122bc17c2eb90ddb45c344d2b0e701722e0a GIT binary patch literal 1266 zcmah|-HIDG6qaVjKWk^(5Sq}t=rRtC3CW!)VYd@^yTmnSy`imf5%NfD&oVP|jx;Iu zrdQd=$P4Ui^f3gv%2i*XQ0URj{*@M@;T+Dd^v!o9vAf$LxL%!|sgD66pS*K>h3M>| zm`A82nGs24kkLE{2qk$qizqoDGL+FdkWIE=sGx4A>;iu;)iz7?HhIRu1VGBxzNnvH z7yWzJKaof>PQ1RoB6Rjp%wtrF%qWr_NIDB;Aj5Mqi&R53W%Pl{hHRck@9C^1TS#@= zJsfMWtNmO-nuxeGR_EWBDm&IclnZZczv(a!*@6-oOR55Pf(d3dTa}C2PBLK(7A82j z>*Z|^EJiV3qq5|bq68?Rq#wd}gh!Gfj9}agx7|Y667Z0vFs`dIl zWUAM2VPcgF5B8_7I~)z;IpU%wiPt1>PXf1^V@GB8 z*BjU7JS|eo`Ir8m+o(toQT+biKKcyN{j1guT()h@cObJP0(eS=S$kmmOB=aApDjqyey z2L)2ax$AJAYguOAzQg&OQe>Bz7UxnYoWmFX-1ZtYl8uv&{8n%mgSW8x!GQ+|9#9vh zVzy1Au-yu1740?QD@?fiIF0_Qo?RbbpRuB_#TJ5fQs1Ry3joOGbjoPe$D3axl-Na>P9BgON zq|4LxGxi7i8+?XedEyt4khq>{H$lL|I=WZa*Vp!$bFRa7cM}BTyPF$v8Y1+&pKK4v zp#w1UIXI4{h+`h)xCjD-Q4vlfjE)fxd31|-^g5WfcyNKbtyK#nlpM*-N>wr~g&~FF zt6Y#PrOBx(trjdNrZQF(Bx9E4YEHN)Sjma4mQZgMS*$LJD21L^|5!>c#z#Mp$7Coo zQ5pf!fQ!<~D=G9o86J;^kb2g80v;}VoHHwQlB#8;<$PhuZ+GPBlc&!}s>)1hE*VMt z=P8+MwOS@)t*%98VUY_>#xiF$T*LC0!U}Sjzhqjh0S;Ul z?qw|b19(HD%=_&T!Q=qUd;w0NDF$u>j;A3HczBDZk!XoFkKSP3;_ch$HJ-*i24*|% z%aPJ{aaaf~Gj>!nHUYvW>ST4sWA#K%d zyD+oD#V7s4$zXKs;`Hon=!3nZv(x^?WRTL6vkCqFaMC|_JN;olotzKS!Q@A`L-|9O zRd?7$M&ws_NWTwA|NJT4pS>_bo7t++O4-@C$`(u)_ad7aG+1LIU-~i*jW{bkzmzou z(}pzady-m3VFztma(kt>tXzjuSxQT(zuMHV3P;WFul4hH5UuxcP#3$l7Ivk}e<|Ws zsTFBM@Csdf?(zC75RZ^!VToM`vf-sp?>9&7lbc`bc^B(PuvzbV=P@_#1BhI*+4~91 zO#lwH*I&QOS8R?LLDvF1B~VJKODJvr3Lt(&>CY>c-><}!a+Oi4KlB(nORYc@Te-*| zr9Xn?7S0;62dh1}9Wc`Y*TGTPi340`yKVg`@qPHyp)#;om$~f@A;y literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/north_america_storage_system_to_hub_storage.cpython-39.pyc b/hub/helpers/data/__pycache__/north_america_storage_system_to_hub_storage.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b50b01083d44ad6015df96b30df09721a27ca6cf GIT binary patch literal 1288 zcmb7E&2AGh5Vm(W={A6bkl@PPApArK5Qhj*AylQJL=kBPiXvI=+9X>x>oE2rB`qiV z7`#AVgQq}y<-{v+fpIqdLFIxak37FS{=QkuOP3mq)~o$}{XJmphgZ(7kd!sr_9h9% z2261kWPB0?jI&8Nh&bC|Dpb)SQ_+`TP*XvlHEYE+&RAnT*EpI%e`cMYKq8&Y%m~I> zIv8p4Ntc=&?84pX_g=h%yReleI=7lmn@Z;{eV=M?`ci8JZ)Co=D-o>MT3Bgo z$#HrskyKr2AdACvw{Qk+8+vI*Ij>D_W%fxs4bQSq67?J?a)-hsVhU3q)S8?G{ay7Z z0m-_FmuFW*${KBZi-cwaPGAR$4?-2F@Q@86UDI_HedVgA>W9%6K3GvJ1a(~A?izIC zXA_NSBKy>*9O(-3ZS%6&tw>nf=T92o+jppCcEc{Q2WMbh?1JZn_&Uc8B$>39G81C; zWcf3V4C~Ogmq{q@*d9;$0TY2@)LYPz4W8APeOU4o>OM>l?Zc%NW zO?{Z6nH%OFA0aD%gsl(~)z}GV1SK6?Thmz?3z6oj6T;ugdR|yi|2=>BA27F$OEh^| zN9_vC&q3$mTR>N*!vWj#fbsbqLK$E~J8)wSr${W!?W$B8_CGK5CdV2jqpz?4s1mEB zmW|WgtE5}c6syl4{m(57Ksv*?@iPU}rEkHWYX@P)NmM^8g}l}KuhD^^?dPg*B)XUmnP dsa!p=p?|U#x&Qi989%OCf9mmHup7l!!ao~6aEJf^ literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/north_america_system_to_hub_energy_generation_system.cpython-39.pyc b/hub/helpers/data/__pycache__/north_america_system_to_hub_energy_generation_system.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3079abd149774f307f942f2960428412370a0188 GIT binary patch literal 1537 zcmb7E-EP}96eeZ)CvGwf!#Wh`fN@uyhuJ7vU?_~OsOuR{Fvk({vlWH`f)QC;fh>B5 zR0=!oRr45qfxN~ZL$|xyBWzbYlpG~Pb5k0mcz$?%^nD*Cc6OQs$FCO`s_7H*mosjU z3K}nPn(uItWI`mBUQ8FBM<`iTCO#!YA}i9rB+`HHO{&s6BCTrr6(yuONEFOg>}X}I zTCh-95$hS7D`DA8VNBRaC(PvG=27s=E7oSCC{&42xZ9H|vC->DL6?n&!3bSXJCAYI zz}m5}3YvYrTtPIOTlVJ_d-C|nQ`Xl>s6j@8^#_N2HUph5n*r!E6%@roTv^3>@wouCW|(<`X#yZ( zOPADHlu7@u`Zoee#-Uqp4+Ose`g`0cGNA~zC+VajJz2RV6JJ$TP5K|GtjgM@|DI0j zvW`$Uvi4Ymo%a?BqEHlAAM4%pv_OAY0$qgGKR20s0SijRkIV*rW;L6qr_3cIV;`}@ z!dMuCCqv}59B$vh*~gg+#F8_*nI1l`X9f4Zq#x>U39m|mU3=qJef3Fg}Ba~)fOt?X-=#ww$#Rm&=&Rax!j!QNn3Jk0KK8HG;x0#;Wv^NosMUlG_w4F8S$-RX%@V5aE;w6@b=70v}L zHUc(NDj|t>&1_3qtt~p__PTxyl-xM@eKk|J?EC7UKEz z*6*M7kDsKi&UL{S&1#^K)8r$)IL+jGso~}=Idf{D>mN{Bj184#cCOeBK)JhHl-A0uN$Vog@xxU#L%2ksM+pS|m^vc^wE>(3nn#^w5rFDm~5Nm;}g literal 0 HcmV?d00001 diff --git a/hub/helpers/data/__pycache__/pluto_function_to_hub_function.cpython-39.pyc b/hub/helpers/data/__pycache__/pluto_function_to_hub_function.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77acccdbba5d1da0ac03cf5a26fa7c8fcd91a813 GIT binary patch literal 3298 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 literal 0 HcmV?d00001 diff --git a/hub/imports/__pycache__/construction_factory.cpython-39.pyc b/hub/imports/__pycache__/construction_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a45a82dbd6cdafeb722eb91338b756d3e1185401 GIT binary patch literal 2527 zcmcguPj4GV6rcTLd+j=HLusG|!O#;%)Cvg)6h%=gH;s^jWi_gVEThqSXJT(OyX(%3 z1Gd5``3#)fWA2C#z{l7tr=GcS;=NhNIH_CU0AtPDnKy6V%=`0u<8WoAMxd?!^b7yF zLdb78S!^CmcA@JhKsf0V?r>K+iQ9D@9DCAB{H|}uzAPo>ZrP4YvXTVdz#;pDmwDx! z@XDFnt@7ZIG^*psA*9yIQf<^YGI5qZ2_uuK3H`J$jxr@^XE@Puq-X2~Rl=xPoCs=$ zg6ffo;-fgC(Sin=WPB_Ih3!^o5TA$?_6raLG$Dl^L-MmoKz6qYw_`0?h#{`(yBg-lCmYhKhaz zCWi7v7(pM&lMq#cg*?hDGl|?s_61QlLFkYD)>iMC2AB56iOMq5>rA3ysFGRk=-zPL zx4j6D?m;HZtzt(7HkzXe+i%zd#Q?}p@kcoOZyW#)^R$Z z?WcPOG)@7FNr>>a(y#F7cB8C(_$n+r`E6k}us)!K!$zIol7Mo_vLnWY31gYp7k!ae z=aLt$x`8T!OOADQL2ltfiKURd@54|BK!}fysyowrOI?Ms|AC*r{5wCj9<^U{lv;)B zqN6ZQ)=}ym9AVJayGZULSwn*PwP17^j0P-!0^F-s-+zPEApHNEZHvd7%`Tx$m>>Vb zY=QOYvwvu|6~1CNA_R}M)d6z`QGp1+=kA=Gd1r_X4|3n1_Lj!9cyCNrpaCn;3=8;T z*@{F9ky(YXO19u#8>@7SwzE`NP6TIPX?U|k=o(RDtCG`Ri2Ako2ir1C`aImhdiy(c zGW~p6QLz5=lu!Wl%DAT literal 0 HcmV?d00001 diff --git a/hub/imports/__pycache__/energy_systems_factory.cpython-39.pyc b/hub/imports/__pycache__/energy_systems_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b050cce29900e89a7d5a34ce2de88f2dbea45d63 GIT binary patch literal 2789 zcmb_e&2HO95MKUBq8Qmp5f^Feq}ZYjP#vrW?xBET1S#Ys4Uh^#i~tScVnK0N5{)IP zESGL2I4Ao-lA|A^eGFcE$~m{5IUbCnwMU;m?mvaD?>qNE!t5Ox zYN7mYHkqn;G}iRb3%Yx6cb9gvG|Ci@L)v}#tV>5KD<*zlWyd1YFvx|X{aA*I{+y+G zC{KhIbb=k7WYO^;nj7iB0$fmN!j1+7>@MGMKz6I>w&y>ELk zcl=`_R2+pL&|TPkROmv9^)@5)bNN|7W)FG=2`qq(&8@)U8{FaUxfQs)#_Q)Ks8w(X z>b%K)XgByZ-h$HOHb7&u+*)4o5*9P+Q@U<|Ml#HE80u_x_)Y%0n$%xXg5wBkRB)CoYR}#gu@8G z69$*8!ew4stld;LtWtW64Pz-7E9;X`0RqdK%zhIJ2F78^rBDjpQVmqDu_)Hl(r1G( z7i@wj?v`#Ys#~)=>%!i-oD)GJFCGlRBI>)) z&=ApMi1usy4MA4G*0IA}Q`Qd1udP=W^qRhx)BwPlJ%`i8!v?I5O`>B6=wM2VJWfZz z0u|(GWH7(V5jl3iN?=@qgotAiy}+pfqt-x3KmZiqBDefnpm4B6%rdo6IcC<_q72 z(baf;y*^$mvp#mT)R*7}Y^RRCB5eNic9sAzG*sI8*M>d>fNI{#mJr4mTElD@RLn8V zC%mK2$(eJ8ndSgnxwE6S$6Vc;I;(OE>2sc0c;gy6rIpH@gN%_qxR(o+?$KVB3eyw8 z+A9xwb_idN8D{v>>Mb4ddx!1q%P<-6@cuq%zk`p=cGezmm86}0nMI+@??a`U*K6Bl zV+3icwNl7hZOdfj(vl_*>y?2YKqE(NlG<$hiiO%%uiZpWOaX?#<358t#{Ukew-|d_ zgmOO8V2o!GW9m~ds_vkmD8530;9c^>Y#!Y)%#Xxjh}N@Q*Y~_8zGkG?ZmBkmmJPfP zWIU*@l}~`pJ7XayK=_?P$1*q9NYKUpIm36v%B6&VB<9y(&OU5q7;c-(-vdL4!B1CM yTFI{unnQ2~2UnO|I98#1)vFrksb02|c!s#|zb_<9VUi%*cPXu=W literal 0 HcmV?d00001 diff --git a/hub/imports/__pycache__/geometry_factory.cpython-39.pyc b/hub/imports/__pycache__/geometry_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df4111b6b7b55e01597f9a50a64508e23dab59a6 GIT binary patch literal 2594 zcmbUjO>g5w)Z;j|wyL1H+EBe)UvEU zaB+1sV6hKVKLx<8(Bg#KDaq{6CWtrEM&^W$!JV|3xuI+DX6j{r=o{QkTUihW#5%CJ z$Nh7Q`*S;7GSS=fKt(W zX;cUm^yGM=lEJW`zdxrt_jh(^Pv)^yJc(%U(bFCsC|Qn!V=I1=uK}2lrGU|oJLv${V4W9 zuZw{=rdSWA-UqZLxBmfSl(t6 z5h*773__<1RmMdk^Tp;S>zDae!q!VdA=$7z>-d$UMcS`gmnu{a$_>|F72AGA>a8~j z-B^;jdAY7dKDX31*!QB>+dchO3#CuXOi5Xs9#7(7q_Rcs>Qhk9%sSch>7ueGtX~&k zcRZ^92I4ME6Ye{J6cFYS zfeGOqL2yS9+EH`f9JvrmGW`w`hSEp5O5&j@@)*j1o=s?}lYBr;QG9bqle{i_hz^Z3 zg))k$mZge?Ilo(LvTOJarQ<0Fq^mUq>j*XwY$8BID+dKVC+Y@L(4{qaANPEQn}aO< z7*@Isz;a#U)Zf1=e6nD_<_Q~48c*OIwI}9egf&H`CvUd=$(N7c!s>=X=hs%F_tjkl zOXfLDo{c_(4UPI)?)2uhAOpiSW3aA_F%*#1VTI7Tb9dzZpU{F#Y;td5q_408)<&XZ zSH)Mo)_R{oDWK#p;Hbu|xDs6A{Iepwiv!m@f@&C#yaNb&1nejHe4bnL2Kb;cJzW{( z`XPg-4c|V~HW%ssa$U0wqnxMkaAA#H&+!;_zdEq^PGD+GebXz+(UssYrGft-jj}Ty z?L7wWzhPR_PnHt_6TAB$m2s5nJwWOM9lP=dqKJw@Dg1M>D$7g&9>V5plML_fG>>p} z*02}lQ6?CJhR*88AMiF~Ka^3r*zp+SGGn$HXDCw8OLyVlL8{H06y8Dlq7`=`oy=b$a}K(U=~S;_S)`uH_;7pWEl{g<)nkD! Xhr8})4{C?*VS<=`=6G$g_!|EKAHJuX literal 0 HcmV?d00001 diff --git a/hub/imports/__pycache__/results_factory.cpython-39.pyc b/hub/imports/__pycache__/results_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca7a3735f1d94279270175385cf11d7a8256acaf GIT binary patch literal 3133 zcmbVOOK;pZ5SFysm%PpkK^~3M@|1R4c#}G(E`l_%;|4*Ktq~(dAs8jNBE2hvdX%D^ z?#4Z>e@Jrl-{{ZSYfnA5r=B`P?aTHi2qHn$h@2VCkl%bHTV3@mxPE-|MnrYX`U^i6 zuM&Jbf+zbG8gBU(x49$j$nhN;<&rE#uJ0PzmF1}7SBzYi)u`szj9iiR$n!lTSLI67 z@Ef-E)Z#T>Kel*%yyE{*QA?xIM7>GC%AU)$E*5FL2HhKPZ z=Q(uUZ{347QDj{*EtI#FqyrW9`kMTCLN@MgY>=%a4id#fMz*$JZjqi!^3>Z=$$#nIbQe zIAiiqXh9y!LxwIv^A)Hur9zUTQY)G%o%Z@Stee%e$L8Gp%mm}D@ok7X}Wq3%cMyD-?1 zdG-PpCQPN+gxq-;_c9p1F(2NAuK8eqF)m&+)NMkquzVYk=WyFE@r%5~-DBH#d6`#^ zEx*jGyaw+IuX7LHRldR-@UHPyegWQf?f|kbjaLg){ZN2vc+(@~R1XOx%QEQg1m%TD zP{wBqp6q96j!N9lEw!dCxb2aB;2b#Ixn+&)KT5oGWWO!Fv);Pg<)wGdb?eBYWnIzL zBYOnpa^%2wO@oh-4O0Ech1TOX1Xv#a>%q?nX{SuFi1Y!{5`mc}VGKwFywA{XBE^m_ zz=Z+S_@X6Zy=}0M5=pv<%teJR%LGjU422d-bMGX{b(%x*g;FdU^-~%FJY}1Fm83dM zVkVpBCw;**N%JTrW}NIp@x1PbLEl)<3KUASD`3rM)m+5f88)z5?@si_HXYlfxuP7H z>2Zxx41>~f1ttY*bzGLoYoW$fB~r-(0UDEeQV1ATL#r~yyvH7$<>}YyH2h|H>;k;^ z$JL49*frYqxpHl)dt#|;;PAiAt@hrlOsH%xk5rQAy`4eOXDXT$eYV%nyXGnCDchSQ zLnj2*N(Y!q7>Alt^q5_M#;VustM)b9vn%inubl#8YpNaqAI>h6F;9a}%CHWI)xbgnvC+ViZxaV@M zeq^p|)9la-%?vZs?u57RFQoeQnN%l}vdrvLGF7+XUx2yFN5=idsko!bhBJ#i`)(oh z^$&!8-tt`Zvn}8T_{6fq!o!o$u{A1wAq?5!2B?l10sSAl=7oH5!%|UG1odrOjfp+bIWKoy1hfhHJ zA9$?cozt^Z6nX1`OkjJ-9)eI9behh%+7p^-t<*&@Tvj@!roM;4qCm>StIM1>old9e zAuq-(LW=h&ZZNr_`v#@IgQUtnXZc%G$^kdVxVfV^cG zw`RMpcez$6ZZp9_iufDL?6TQWimK^Zin1vY8{+kw%M1l<#pkeYipIaYRNpWnT~?*aPy}w9 bXW?S_y!N12l7|Q|Gly=q;WTWxv333jN@rwg literal 0 HcmV?d00001 diff --git a/hub/imports/__pycache__/usage_factory.cpython-39.pyc b/hub/imports/__pycache__/usage_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bc421bb459d6ffe7c0275d1c1842c7222e848f0 GIT binary patch literal 2503 zcmcf?%WfMtko%CdQj~|Aq)l6(U;`AW3PcF(OJM|o1H}mnB&v}IPzWvvdPz%baF+^6 zIhEj^>~HAVxfI9`^aJ`Cd+jOb-g@c`S5~FOZP7!s3l7PdA&2wk7caI5d}}}bB2F8G z{Dzz5FM`b$4Eq3pAOj)-5vm{$2VsEgNJV)(i2XWNwY)y4`*lq<@??+%CXM{=q>svOJ!jttiBPlaPUfLHtC~>JC6Xh(Y*~2o_R~b zA=B#V@zi9)k)yx9rt7!Y*J)1|sWu|xw731FM~6mF#;qNr4`k|qDB!IRCmFmPCI?p= zIio|5FuCpy&v3am+Q}_YrMj(~au6oqxw-&5?oGg^c9ZU8iW~YE6z1wsI!W)TLr`i) zf%7@Aabq$%My77QU|PNP4Y-|jg7VWtt}+2yu`C~J$!wcQo1aqjCnYVWO~k9(2c35Y4h8 zbBtYu`z%T(!KI)T%&sqM-aX?=At4tZK6at`I&2(hd=MN5r{ODt*^Rq{h{b-c-6!9- ze+gMw+oY{qbl)0LHaUtBij4+aew>SJiAr4XSkVq?l&m9->DlE zZ?H0zSERpz?Lig@$YEPvR!}Dt)B8+F$1_#dy!K^t!SXsZ7w~LyhVfRdz-1&fSnA{T z25f8sfW&B=b}+lPYMzSif3VK_-&?2uq<61>j&aNyyc3NR!|aV?KEM@v*jz(!9l?hP zFp8G+t+N8t@N>Yfs(W=+UC;G?we@x2pR}!^Di{j?L0gH%<*R?w)^n|Bi&=p3e9mKV zVB}+zW7j(&$I&sye+2Oz&&0VNteTUn+KI0#pxasN@o~E7ITh@jA_ETPT*5&Nt92ddUe4Da9GS;Qk$)YR7LN1nplwv=nIUMEyk*r4(m2! zFD6{gDGkPiP8l;-;3|U-FdrlM1i@zr{!-Ad@DaYQ;=;B8BtaY{wWNu^r}R55a}x;V z8Whd$NUAZ^)h={WWqny5bPzu;q+Rc#Zk6`TZ`gRz&wN=LeEBZF&zpDI(MRX8`@nmb d-A6i>>hrWLlRK5s?qUd7Oo%vXL&<_a`V&g|jRXJy literal 0 HcmV?d00001 diff --git a/hub/imports/__pycache__/weather_factory.cpython-39.pyc b/hub/imports/__pycache__/weather_factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0ac64d914641459668bd744d73b77f5dd8849d0 GIT binary patch literal 1643 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 W?RH_}k11o2Ybb2D2LD<7EB^-`MH?9a literal 0 HcmV?d00001 diff --git a/hub/imports/construction/__pycache__/nrcan_physics_parameters.cpython-39.pyc b/hub/imports/construction/__pycache__/nrcan_physics_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f79b7673f4a7403ec4280cf0c976bcf7902d292 GIT binary patch literal 4147 zcma)9-HzMF6(%YEi7V}oY;V?%ldu8YMu@XD+!P25BZ#|>(<1I-Vb^HFt})X)OMX&n=bK9%DLNAJbGZeL2+W}01^K<6R;mn+KzH=sS zw*v#u*WZ1|UR*Ma|ESLL(?I77e4>Yf8j(RwYGr0*qHbi?un{#(MYA(|=tPcgJDEH5 zB2Ty7%pW$Rrfz##FkFdNblcBb!*85(huw*p1z;DX-vvi_PxDWtz|kdYi8km8+VPzf1fp`je%V{C&s`%GWqS&d+AdPw5Fn;0wA7lR->wa*_heK zTT|m@08QDTtUzw-)SfwiHu9UcQMM;Pn1*__93{J{`ObI&58p!Ow?=N=Fv`^vW9CBM z+SHvorsY9HUbQtFamv#;ymm5T2g-M?* z_9ic?HIt%8miNwA)SCRS+2l(#n=5~ptE5r~If}C}6LK}p0nvG!X*U&e1F=DY;hFHR z&y^+fwwm6ayY_sae!WkA5u;Iau_FGS<~}D}du~;%snKR!e(f>wk75K&yq(<6r%ZN4_dIv6amEqmatMr#mwA=dZpvVpGDNE zRdi+*0Q+T=t^Q1a_-QF#Q8eFz)KBpV1>J@fm_GD(-3*luKl&LRzGmZz^04|*mc3Bo zE=~$?3PmD-nFAHHOw=lrAJYiNdVa{+AHAaGp}qxvOo0(?Ws@N zs8?srX%nFALw<9xhI&oa{NE_o(Ob{A(Aq$219b;=2lWNi7f@eBeG&B~)R$0iqTZak zFW;H^rzTAB2Y|LsR`CBVwelAx|4g-K!890L#>f@a@1nkn`aRU|Pc6(vpvTdeUbqk&_>?zm_~ESs|Dpbj%cz)yQ$cQ+fz!S+5C6Jc?C3 zmzUCz?vMX#1a{#B8rJ9*^m^uy#Dsgy`F3@ zTdCj*2&AoYJg&mKY(2w@if8k6xS2}w1Xq?Nn`J*up5#mb!t2yndU-*H08rVf_r{q> zMHwTXksdN(p|;t=PpQhRk5sQMMl3;soajx<4N)LxCGmkM_^6tAp%!+Ic$A9tAY#Y2IN4^m27RSohZorPnMY<2l3ToZ%IEcSS>av@s8D zX9$2$a_(@Wi#5wKSs%tC^NL!e0B+@_)~fVKb>h*Qu9svxnh zSK;PesPA)pVh@F3`G6ZAAw!imfTwCz;iaW%DxlOH2t4x{)jaU)&{Ox0ul*cgor|lu zb=>PVRWhkUHX$+~WLVHK^hsokkf-A~n~!*e&>|s(uVc0R7bs*47FDJRE^YmSYWU=8 zQ%f6FNXk_dbqfhlss*wKeO2wb6&@GfY MZO@1GEZ)Zd0q(Txng9R* literal 0 HcmV?d00001 diff --git a/hub/imports/construction/__pycache__/nrel_physics_parameters.cpython-39.pyc b/hub/imports/construction/__pycache__/nrel_physics_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69de5f7e4d28ef8f6ebc0819a52c5f195f998e62 GIT binary patch literal 4228 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 A82|tP literal 0 HcmV?d00001 diff --git a/hub/imports/energy_systems/__pycache__/__init__.cpython-39.pyc b/hub/imports/energy_systems/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f5dca6179fae93b82f585ca3ae941ce1c560480 GIT binary patch literal 165 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HQvsFxJacWU< zOlfXWettMKA literal 0 HcmV?d00001 diff --git a/hub/imports/energy_systems/__pycache__/montreal_custom_energy_system_parameters.cpython-39.pyc b/hub/imports/energy_systems/__pycache__/montreal_custom_energy_system_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0a194d0689fe8c2b001829d7dc308406299b23c GIT binary patch literal 5364 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 literal 0 HcmV?d00001 diff --git a/hub/imports/energy_systems/__pycache__/north_america_custom_energy_system_parameters.cpython-39.pyc b/hub/imports/energy_systems/__pycache__/north_america_custom_energy_system_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2467f58ff4cd7a3be66d587512ad275f495dffa1 GIT binary patch literal 5659 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 literal 0 HcmV?d00001 diff --git a/hub/imports/geometry/__pycache__/geojson.cpython-39.pyc b/hub/imports/geometry/__pycache__/geojson.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8010f6face80ef278ad167708cac2483ddbfad57 GIT binary patch literal 8355 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 a=Kpe&@~=<*|1PyQNe**7AEBe6U;8gNA+Hnw literal 0 HcmV?d00001 diff --git a/hub/imports/geometry/citygml_classes/__pycache__/__init__.cpython-39.pyc b/hub/imports/geometry/citygml_classes/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0369454f6ada269429c15b12629a7b02aff68af GIT binary patch literal 175 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_WvsFxJacWU< zOlfXWettA5-a n$vKI|#i_+H@$s2?nI-Y@dIgoYIBatBQ%ZAE?LfAD24V&P+VC$+ literal 0 HcmV?d00001 diff --git a/hub/imports/geometry/citygml_classes/__pycache__/citygml_base.cpython-39.pyc b/hub/imports/geometry/citygml_classes/__pycache__/citygml_base.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d0cf012b2c357f719bc255d5a0106f02ea29604 GIT binary patch literal 1484 zcmb_c&5qMZ5N`h@@i-X}0|#~`q(nmB3(IqO4>{LUuE3^QZsN1k7jO6>Kh7j9 zsNNxer3jZzGr))ZczAkDR}TjF>D0&%T}6x&T`n=3%`N}B=12FBj(DOMQlrXJp1k}c z;WN}#8K0tl3&bhW3Xl)0EGMSJ%2H{B6`wU1Sm?oQdsk@G7M{v&wSi3I?=&*&dv);a zc_LlByGYlKhQCn&Y~+!SzVb*fUj^rE6hcdds&&pjd80OTR9khLIHEXGdriDYajd#c z9IGDbykB>BG+zB4bH0;bXq+wPfSCowC(A};Q-UPjHG-pSgl_k^i%no2N~ga-2In&BP+|9X==9KSYzW?U7hwH==>n zSCeLEMXAx6@eFhU7MEj5=9v|_Xp92pM?N7p4a#L536U)_E5voj%F$!q>ekNqgDv1+ zv$%PhS=tnQU~g%TzPGwVV{<+P%gYoE$+exSxyKe^vEvRm*yeCr)X^4qK-q>!>oSoo zKsGE1<(7+o5Q!+U>?672jG_D9NXMHe+PKKQJyfBCY-;3L{-7oD1ancX*HUa7& bok(;BX|8`(v5p>Zct3F-GR`t#rx*MUOq6Zq literal 0 HcmV?d00001 diff --git a/hub/imports/geometry/citygml_classes/__pycache__/citygml_lod1.cpython-39.pyc b/hub/imports/geometry/citygml_classes/__pycache__/citygml_lod1.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3236c7a9b62756c2aef52c1c92cb273e06326103 GIT binary patch literal 3040 zcmbtWUvJb#5Z|?ZcRuF=^nes-DQ=;Zs9=Q@RVqS=a-e_|qKLFAwNhD*cXKhaZ;xF& z?VZ9)6N%@(^qD-~7w8A*$M9>P`rNllh0d&f;nE~jRehSh+1YlSyJ3&HaoQI$bF&TZcDYD-CI@cZ%Y>HTZg>Ds9F@sD%5uq_ zmF0U++-vS)9Pyswz&&KVm&NNbmp9$Th2=#Medf(UE2MiZ2{SI8j_40$+}+6BUq|lz z-2A-T5xq!A7Kd)<{^O3@l_Kvu%The$Q3ivIOLrlU6R>O{&tPlGhi+F3WGcMwSe6PY zGJYo-@8(6J^E-H)%+li6LS@hcp7gl{$yDXIyP@LHZLH*SJ&ZKFERsPNcEPoipILR( zGBBL@6tFZH^-XRugPA*IoBFjEWSugL)pl&Z4swkf$N@QKv!@(?bh1Eeq@8CfACx-=pqqcEdH z6>Z!g5Nqi5Am!;AINFAZy7}`-=jQ6yic7Vcr&5S)b$JkNgfgvQQmY&Jnx-;{)ap2b zR&m>jFx=}WV5Qd|6s;i5lPnIRTyFAHsGio_7@nCh-`Nqq!OMz+aIx(n8B z(Jc}fTjZs=MV=bF*t5`V*??)YwW6kSh=sxqg18rFLExVZ4*H;I25}kG17KAdC2H0v zEX9*`IR#sdD2$Y876hfwS|FCkp*aJj>d+AC&^jHS+GkXC@Sz52q~>5Dqg!;7$Tk=P zChgJ{!VE3B1QHlSNd}T_`XfXnM3T8wG|{^&B8gdX0@+9C;&F(ZMLke@>{#X2%Bb8#B)mW&zcJ>OhUN*stPGtntpg;ytrQR;M{3qj?1sm364VD!){{c!{ zEM(y<#yuX&$8oP)H2Oj<#wr`uE@m)cWJ)~HZ}$aMRTZpDkp@spVXA*#@>Fc{07`Wh z=<&&6NKwO^E2w&tkP;)TaBd~Ae} z0`P^Q`iC7p4`Y7-;hoa_YS8C8MF3gM16>UKmiBZB;y(eC@4~c?fm9nBVi>e;&iv(A zE&boB4ciAXJCHn>KstHQ+ef8NnKrDkFZ}Jdg#UkqPF{r5-;UJhFr!4uz>sXe9(w!C zE9-t0T8D*ZVc&&oo*ZUXfUVbvS7ais|YCig=QYFCneuNt~xO#k9bs3NKlkT9!c_vsHt(0d&lu5@#&U zI?{uG|0>+*UUi#$Hju5{BD&J?Kl# KvRhRD%)bGz-sXb< literal 0 HcmV?d00001 diff --git a/hub/imports/geometry/citygml_classes/__pycache__/citygml_lod2.cpython-39.pyc b/hub/imports/geometry/citygml_classes/__pycache__/citygml_lod2.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d503b9c63f5f8bca43295a45b3d42d245b38762 GIT binary patch literal 3319 zcmZ`*OK&5`5$>KDzDAT*(khCy@n#1}fS7hn>?(i{izL`A*N_d!vS8(54-^cj>6SG1 zJgAzSt$RUUP24k){@x+M|F$|?M=&Mwwj*p(x zDD?cWpHllI2vL6#WM@t&FJ$N>CytO=KM0*CPCph-5DgNQIoX+XPGu6wOpTl%&JwMm z*=PY7+G(bSel}FnK0J8wiSv%L7x*$xC8Q68jI-b*km{+kw|lS$)la*RQ76iIC+ufZ z*}Y^iQo-q2=KTA{*?GLPsd(Np!h6DRRC7($@L#L3+*&PNUPPRMD zFtw6n=Ts|HlypxkU6iOKlh6EWwyxi|{|Aq=4lkBUH$CsC63vy}@_g^ha3B>ljl-cj z>HE~#I7q_LDQ2Ou^FOm}q-PK$b2+dy1b59Z*$EI8=F6sQ$(pc4?IpY9Ze2E}xIu10 z-xMvaZ$Y-jl9p}AZLzH7CCDq{o|fBRGK;y(zwLV?!=UMH+UZs&yVGAi8u=WR;5olwY8`%p$FBJy6Nc9O2paThjj1*7LW4fi zWYAplKY&3%*xD~zw5!7;3`DU?;)la93rb2BD>F@Rs4is3D(YUUZCAXA3@gtT?XvBY zU2%Uu$v%h%p^R`TrFc)NMBNyL>4&LW!PeEbSnBRUqd)$6F?{UHhaN- z_n(P5Ud>p>bDZgtPpsdvc++B;F?yHd;&ApUJ8yr=V&gFzZ|VzV=GHd5=10b)HmR4^ z)=1p8&b3`$+h%!v8${Bp{bte-X5N4&|CK|U>EE0*^X6Q8bJEIN5yjKl@F)aceR(`O-O@G9+u&;QCPA3eO6e| z;d=iH*l1p-;)vCaB z?^T*~cuXcmeHvrjHNV4-6ig_NXukXtg5VPqXyRD_UW6I&zu@W(QJa{ezNpX94|MkzwZt{i z*k%(e-dOA*`-zpCqV~C={v?`{T5f@r>yvt3`-+KHUjK^y)tuDMRbIP7`x*?*_?3YI zeqAE~O&Xb%H^AIxR?ER6^we|kMc98d!HK2)q5;_V0=)D!9HwXja;btu74}{b%f9*; z*Q+pLGhTj{s`N#G5R(Q;Jg)sPBYLoJxYOaPgTb9fQ4cXuFi_;NVttSxsYtyOl|&xt zG1EgOqvS$*$W$^<_s@6hJt)eeigk+U6%n$;L-g;orj&XM{dz&SiG6u-Ka#FZ=F|1u zwO4YvtlOHYz&^sXw58MQ6yP>(evCDKj*`BCifFTexU$6`7#kpqr3qt$GEF{yv_P2G zFTz5!p{O~FoNY7^Enhtk#{PIohj~Ybb@dPi>H$@^;y1b5+P~&pRLX z!?LI0c_Q&WPe0GalFn|BiJm1wKTp6Z>t}&qs&vrNyCY;2IY7~#isdqg@MRccvR96} zM<)8Uqw7j7jU~`C+cksREfo50psb;o23KUckI3~D-{J`<*DaHcZk23w{l#Qs);>nQ zsR)kZCwGoJ)A?sQo5-6grZ?p=4WXIISrWXj^6u_2vR``PJRu`w?%mSI(>wC^{~gxP qaNUlFnM}JC!RdPI1J3zKdy9NjG=DaQ=@<02r$i2`*+z84-~1M?$aYKs literal 0 HcmV?d00001 diff --git a/hub/imports/geometry/helpers/__pycache__/__init__.cpython-39.pyc b/hub/imports/geometry/helpers/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8db72b36e70359c865ae1b06088d0970175f9191 GIT binary patch literal 167 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HIvsFxJacWU< zOlfXWettDi%d601w)2EFuF^wfiNDUd^tJ+_Db3%%_%z3A9mkxTn~vrCzzgQ7qw%-fkaGjC>o z^LuZeg5~7~!|#uO`g{29GGkv+WBO;KaUUhyf(Tigg*>!k-sa|OwJr0t+YY{VZ1>%^ z%h?VKozQ*3Lif~ad!e<*n%?j)FwoeMX2l%roJ4$2DsOXl?l`z z8>Giq8$wJ}6ZD1XaO`yQvrwTUY@=k?A#!$v`@YUjc+SpvjypfMPN2mC*7#R2D8w&R zkYtCc>We@O(kRj57@*^_P)#p&{XnbextXvv2vpE7$7WmN^XD64v?0bDqN<2itM#}X zsiYpN1Y|3B`X}2KFhvjY60WE-rL^V z|1^^-+aLB-n(F=CQKuKEenpgQzc)NECF&1SrL+BRMb`b2tS=RQsb~#G#i~yIaxuR= zj$0y#ak@f{R<{4yQ7Ha}JDGXJHMmy!RPk2ox8^0P`JG zG&=$*wFy7JwNJRV&zzi}b5NB78hd=toO4@A#Ec9?tbA4+s+72zfsjdej%T|>;F5e_ za{(T?p&kunVP|sCbPFpP6b+hRPA=TTI0dn7Y)36ZV8UW2r9hO>qN+w6M7?RCDzcCn zzqIo4R(a!9kY1fJ0}U-teA^~7WDC9u)({jSKe2Mlc&??boSz~_ud`oU*Vs9M z^wwoDA`YsrB92NzU5D$wF$!&S`DJq#vG;o>*QB} zo8eT~1iBB|<5j@M3B=qww>W!RH=MG@@0qiIk{nA_;$p5w5M0x!AY#qJLWmHtBfN1+ zR}d(oap4*h^AIdYW{oPcyiZ52Lokp0XoZh&&K-JY_{<^60WaBc8ynH!2YA4rFm+S& zBkRl#t#i&1TM$*?NQg4dH4|&Dv2}K0X*^ctoKp+X+&-~$mfKS!;C9+Q^KvV9&aEE< z!l(D}Qc$GIEBoHWe$Gx@tl`0?4Vy0Z;jA-b_de{pWcQ>--_UuTpwV@9wG+CQ6ed?DOuDBk|fpQ zK#EQfcZQVfgyL>Xd_W8SRNQG8$GRXcT~Ijuf6Q)9nQhh;y)+1Nqpa{UjciF3?lTo> zS-5!JyV69s;wq}K^be$dCS~H6&wN(c!9mt+Oq@C%^n$`gpMSUDQCZt;zt&4tG)@y8 z#1*9rhhR`|V&Qfpk`7 zWQqR}a+SXgIleyUFjEFQ1m@&NVe2vl`W+hd&YW2}0wz7gnW)+bujXOCqwOQ-%&lAq zK~*!j0>evWy_|VtVg<8qz@>8Jf=?Wk(03i~23Jhr7FMzjjf>V7)C01681+Ty!U=0< zb;KeLCxM%So~faixe+kN+(?yp(Q_|UfMhtSXjvv)=1#V%K_y>bc5KdeOcJjtA`|V# zA72ugQlu=44q_>g=3Nq2%rZ&9Zmrg&A5arMBYPMS3xMVwGA>hz$1YpEZR zW|m5-30)T@y8^-L!cgcozrsBfho0Ztb5!|8+COZr6m{RH{L1%>hVS>&a0u`4izVMj zWQePtn(v2cht!!4bksq(=%t~_7St*>V2-MYf$AEGTO__q;w}l=?bHd(Stz0#k6b|| zqeld(m2L4xqbzF+7B_|3w=8bPHfxGr5%nGk!m@CaVITiT5!B`Slt+BiT1EZ+@^JTv P116($ygIL2a54KoKhnDy literal 0 HcmV?d00001 diff --git a/hub/imports/results/__pycache__/__init__.cpython-39.pyc b/hub/imports/results/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b836a7234bd6c7eec27a75243325e722053b940c GIT binary patch literal 158 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HsvsFxJacWU< zOlfXWettPO2Tq@XtWZ006TMC_VrH literal 0 HcmV?d00001 diff --git a/hub/imports/results/__pycache__/energy_plus.cpython-39.pyc b/hub/imports/results/__pycache__/energy_plus.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6322ff395aaafde760fb79e4174001d4f93de6f GIT binary patch literal 3320 zcmZ`*&2QYs6`$evuJ%(}$+4Oi1d0INq7fXYNDILzV#sdfLQw=eZk&Y@g5r#{RJr78 zNXn7GJ;{e$+WJ_aDIgsK^w49^J@wGPV6N$h;f(7ZP!SF5yH;?2%`@5eW9KHiVx zx7$quzt%Y6e;*L?6)KBA9h7%L(rsuM84*UA7SV||(kS-zNFV9&Z$!q#9GR8Pn%Ekl zWa5k(l)Oin$*dQISr^)<$@C{=Xy*aLdE`!#I2%W2E|0l5I&%;F$d3cwe6si8 znfs=@69yb$(0jyqoP~!W7n|;z?`}POyyYH=B%e0-L~_i744jM$_leIrb07Qh@qsVg6txXeYVQX1>l=YT ze=SI&$UjJgpTWp`VFYizpTwyjo$`#k_oGu^@N<`O_o)aWqzK(9f;M2H73gN%|G?6c zA(h6SpN)5+(}r-kB)|2eoTmZ07k~3T`59O_8By35jZxSKjp;AQ$lxY3nE8TS(2>O~ zW`oUU4y=1aHXo{0-iz||{8rO-OVyo%?go*creF(jfcl4h4P*->?Lkw}f_S9RpoM`U zDBT@u()5BbJCjZCz)!h1g^3JxX~6a#N<(=XbH|rN;F){%>#fcGrzscdem)UNlI`!E z1!G@Ks@+NV$N7Pha57CqmhKCl<`Mjt2gSpjH>PLO@w_k&GtXPW6b)zywdncE^-MQv zL;$C5{<{S|2Sm+Gf+r&x%LcgF7$S249+N?QSVrH>)N<>zemv+&-qLiFGW0tagURVn@ zTiL!S>;;>nY=0}91zSVeo)wL2TcN>tU(Z^sIctM-K)N73kbYr;Z!lXf+L=?disjod z*I$rX`{dt+!Io|lh|`P{T7~Qb@(+OQDP$j!C;$8i zXvu)*LZ>8Nev7=M>A&s(`QY<0NMXPk?e9t|q>*Qbzl8d7IFJGhC}9!80u4R6WU7mCMA@@$%C-eDM(B`X~Wrqodr zd!=96V--D>w+`|!!gceiD2z}1n5CluAaFrEpvHU>Lp?J7*=P`yt9jGfW8>#HEo+cu zxxP2;t5LPiH_Xyh(WO;pB@NgxJ{n}W3tpW^nOJSD^C+#dS7I@b3b$5TuJfqutEGLO zM`do;!<6%E*YQiWfq~0z_c~%}=*&YYT@hi~Ea9%c=6%l!BUh!LLPNB5+N6%A(dzle zvJF~4J?hZbcSUpNegk~Vv;*xxwXZGo2lS41{^Lc`{GMEHkf;eMp(qml6P)6L9Ft=p zy_fWp&u6rt$J(EPO#h+*b?V?V3hf6-vE~(->4ko2T@m3FNIg2xs{zHW-G)!hv6D59 zoA;o2nXdGuxo#-EHP=n0x97U0^iHW~-OFAb?KZi>d@yqV9;rMkZso!LwMUImd9Z)& zQDape>|cA-sFer%=vl7EL=royGgzrSYRtI@wc4Y`oO@8KJ!;Ik2esOx#+-Xl1J8-W zY@k5r{8RY0;}>6q!Pw2l+{F*GdvNCFDUuml%DOJE1J4ujJD`o{Zb<_!(u5*F6=qZL zEEn;nyPL#ZS|Kk&Q5t7{_o_QrHsB5b<-~V9u!)>Xj`9vBYKfM2VXbKyVPCY}}Q2eT9`9tss z7aP0*Efl^5ybimv1J-l{8e(>!ke8uQo3vLy`Z`_LdjDil#&v}2LY|BWyLkBNL zII8Etwal9&EC-tRWXtnTazCm(w&$@V@I29iL1in=fX9Og&&CN;YcJjb`$D!VZ{#Y0 z7p*QxiYA~K-7z%U{JF9Zm&7JmrHvQCC_E^)7fDR6!>w*(%%dq>{P0GM_gwE(U3AMO vUR?yh{Tot>vlKr<>K)mb+r&>Hpc?Q0B`BSH<(z+o-&U2SVFNj8u&(;I&yAF$ literal 0 HcmV?d00001 diff --git a/hub/imports/results/__pycache__/energy_plus_single_building.cpython-39.pyc b/hub/imports/results/__pycache__/energy_plus_single_building.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afb0019d9562f95f9d8a19d583ee0a535c578d37 GIT binary patch literal 3379 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 jUX+cwj{gMkYR)%>D4o0IVt=yE**4O_J`OKXT literal 0 HcmV?d00001 diff --git a/hub/imports/results/__pycache__/ep_multiple_buildings.cpython-39.pyc b/hub/imports/results/__pycache__/ep_multiple_buildings.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f39e2667ad57398759e024730ad3695998491065 GIT binary patch literal 3727 zcmc&%&2JmI6(?s#(n#^wI{T40=`Oq77Ey}`skdkg!w90h#tec_PvpSZpTVbhF zf<7xO_bLXVq-S@klzc|~l3#vK{PHuSQ}eBLQm@1|C8W08mpo*>sIR)=KI45ZcJ|qp z8@hdu*VfyMzhyVsO5kyL4Qk6i@2g-t;9`!geAZrpu1_1cKt_Vy3|+-VZ6O-$i(sd# z*w?Sv?5){Zwh;BbNce%v7FufyY)3@#pw<@AF836GJ{N4=<=kg$Zhv>n6-;8QA=1_z zFCX6U++vs)g`v9@30HyUb`Zj-dr@Dy;S;VnYlcr;!H3M}?4bx?N)fODzSMw)W-pzc z_usI!q)rp7?W!*PkHc)ZBfoLOn9EfU;nR-+jXO}}Cm=ZKP&gL@&*eGkn7-*-@NcDi z4(CyU{kD^9Exo(#FqZe?Pz8gK|0)hbKj`mB4-Ywiu#O5ApvWl@BRV1u85tl!5llu` z>qb&?yg=(ZW@5o{ZYP#Tss-?h2=uYz_QKreL&=5QjC&%A)Mk6%>$;+s zorc`(##_1sy+I_D+!S1bsdAGKoL*+Lvy~g&80;su;{^RcIS$$>Ef9p3>F|>a*4oI2 zc(};?DM7`Cf{T~`0TGY`LlH$s^cg)gjisSdSxU=<5psd=qdD#=MLiZ-5xLk*e5Q5NNV$8Ae9&O2Dh)H<#^m>)A+`q zW3Pux7kW%FCD$?J_`K)#ec6}~BhL-xZK&i^A6N6JV#k*Y>lgI^cH?gS|F@G1Q52rP zlLDhhOrv-YMX_h%189C9%9+iAb>(wiu&xRW(;o6MRJ4c8q#oj9lwdT_m*y!iF^1OS z(gqveoZCPqXFwFJwHF729*};qk!ygl&o>Gus2c*37D+69*ti6A+x)!VSjmq7)+A9j zjMvAL4E5zJ*!Zp|^9!fhZm%piR~K4y_f;2GaAJKcgk&QEq(w+GXIF6X=KuH&lbaA8 z0cJuLP0V7`>>+Z)+HBQ-0~<8jE>FdaG?7+9|+Ry5#!foM_zK93+rCKiTE zVtVpPQdwZ>h@!vaY-spf|##WiTxO9DM9xt@jI0P>d;#cB{MXFCYf%+tA2406tf zXkvpB{bHwvwREKR3veCe0r5Tx%@9|LL^BRdPhL`aAO^L$uZm!TJfJwPpy`PY|s&L$H2=XssE7bws9f zoya~rxdoRqMC&XNY~_g7Ss>WT5v{X8u$3cPXMtb~kiB`|hP+rE{;tO0Y4w2`x(qmj zX@=O^XR*Wp!k*Nf8M-}t8j0US#(TOS4Q4edtF$E>++;-AFl4k=Y#_o#WTtg3uhEv7{U3=uDV#$=jH~n_4ot z!ZHCgB^foY)gLCzR&gu2k2pfg~R29q){ z7#z{3Fi;}dk*h+bM z2JYRBE)NHAHOFrh{Pb|1=x-0b&Ef|zQ}W*Fx8So#Dz~p>QppA;)uK=Q1m4#=&oeNw W=hMaA#!IC{!>!5~9iz4}ZT=6+vClXF literal 0 HcmV?d00001 diff --git a/hub/imports/results/__pycache__/insel_monthly_energry_balance.cpython-39.pyc b/hub/imports/results/__pycache__/insel_monthly_energry_balance.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..790ad3beeff288edfee631916a02302c6f5341e5 GIT binary patch literal 3885 zcmaJ^UvJyU5#J>#iIQbmRuo^HQ3W5|-SZnVp%P znVlIrv$G|F-xptg>HVcn$iL-c`ln;@DMq}8hf7+-rLGpx7R6f+w4UD5X$mu1hQj4~ zd5uugE3`~Xt`paAb5DtzJJMQ3SKB0w{NS%(Rk|6*USRd2kavPZ%L_fWe`xJGffKg9 z(&on6ed}ZEmf!Y3hS^Qm3%S4Nd+dsJ>-xqmfPT7k3D1aG9|sQiSZOutA2NTx!>zx6 zV=Z4=Uba@FupKeicdXU*yQ|hdiw6DD28+60n*-^3%(_1CgTQ0GXzBWZgFEwvw<8vD z@6+~p^HSR>J%`4m*`UJMaCoOJSJS_Vk$wiKM_?S%(p=ioUCq^>l9u7+QZpRUR^H9K z1;7ff=@#)e-4cv4BNmlGZm0HGSLV2uT4Q**WLY9pC1RH?+kh@iulgPVY}n7US{KXr!&}9!&lnJJDG+%>KJzBd|Nr69YV13{!;%? zn6~YQKDX_fRNBCUXn8vP@U2E#8gFP*Nu2$pmL`Te`gfS@lM%(xIN>nD5k1yURP?&~ zZ}s1QJJPv+Y$W;#9T|zSMjn1O%JE#116^J^@I=Equik|dGRkw)g&U7FP+lDsl6+EF zByRDM&c5Qsbag~|sXJ3AZmCX2CU}`gRAR1@gZu8xc$U!PvfSZf{}DZ*6wb*Y7w1W^6J zX?r3U_XD4c9CN~btoDM);h^W9IJLd9wY6#AxO4BWy>-X_{NAngO_6u{VDC1HVj&HJ zXu$geZtwX)8g!!2@f;3?MWG!#*?8PuR>Xo;HiJgv|&U7!`ML~C@J4wv2$Yj0rsO581g zw~Rd%cVEMn3F(q9T_evl#FUCaM4^shJfp+!652(&SR`HDB?H1XT)K}ei--XUD@yEH1|J<~0ZN_fxWJ;N)YoI8>_(T6)b z+NeC5b?K;rF^5rA^i@RmjnO>TwPe0Kk5zeeDyb!>eojWUgMR>41MK^wdNP;P!0%Kt zyGWAyBB_%E5f4cH90Bdz!M_gvmgvW)L6@%+72#43$-nsu|H@1L&*;I$Ou`Q#q57Hx z+^dO%DyTofIGY%dQk{}wDkD9CeuKL!sj_n(e7#M=s|Mj`o@s|y()&8`kyRzoMShEeEQ%<*H-wVcpGm5kVrQMzMp1^y!s<(qdrYj?b_v3f z+w1FJ*lQ~fHtiK#?O+$6BKttX6zi>=dk3@YB9REZLgG*2T{oirp3FA-{xItR`}nf((r%P&ONLD#5WI!5qQ}9b^aD zL@{Y6c3J`peyrLUc2TY>S)Y>yh)P)OCkm4_K4Z)^$w8W$-NB<_s2j*WlcYt}Hz{G3 zB>2B@%%hXT;d?;EvXdscvI+rHGhZxdXVLTwt+$6ly19v74ehv;VcYmT!1atW_J zTADZ46sA#P4NdNH?x-&=*c`SQL1ro&xEVZ+g a_9iuic{M%WC$bxkrDjInl$TSh>Hh<07dI6E literal 0 HcmV?d00001 diff --git a/hub/imports/results/__pycache__/simplified_radiosity_algorithm.cpython-39.pyc b/hub/imports/results/__pycache__/simplified_radiosity_algorithm.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85680212d88d7bcf9cec8729219c39e91a6c3478 GIT binary patch literal 2307 zcma)7OK%%D5GHq5tJV4yw@sQy4@8TgP}>MbatL4;K@7)nQaFxbIdvmAAl6GtT6MLQ zNy?~%RS$KpIrLn#aE`h4Clvh|y!MoHZ#i|il5C}ipcFV7&XAnp%r~>q!a|5(eD$Yc z2W5o*wu{-}!s0$mwFZQt24a{wDQ-B$zuWa3gi*KD@UhjnX}KFT0*tm0^H}L6Vx?23 zQDIIURsH@Sa79>8y1g`MCY+JIh$TWLdO+6GmXL{VcfJ zm#buZYj+z&cWNs@g(SDqNOKu(h~7XZt+pnAy&<<(Zr>&wB8!D&Nkld__clmNiheKL zm7>FA4NAr(+3F{0%4Jv7w)z@wmwfm{NTK=tczU=NN8wxW8SPZDS$HBc-A)JJMQNX_ z*otR|1B?4G6#>Fg14FDJMh%xa%zcR(-Z&nO67wMzW%JoZ9L~dV9);o6kdVjSo{*Z< z_tuHzs-J2F!r10xIy_)(_BLRuA&?yBh@#v93S7rd)Ny`=%>3ruKxgi21R8HhbgAQm z&a=KT@0HsrGw|z`JsljNtmYwI8EA|~E=I#Ey28q*ICp<`4$yPJz{vf{&BF2j3R(dP zyeQZi&QT>JT0f|Xz8<=V>T8L?r>bLI#e2qY^9bT@yfjf7;^{-eA+y7)JEC|a9P0Ho zX(lNrP0`O-H8dp}13FAdk0QlsFVbz}Wl@)#GDJkAC%kcqCK()~_SkrX(_6um;i7{oI0EsJXGh1r*evT8ch*j>kYs;ct)ZrUACEA z1cDqN`}jI`Fu{v>c=JPOsZCGEHr~@Q2aE+s0S;Sv77P#2i&Y7E+V4n}N63EKAf9B<7kOaDP=I0)86&I}RCK}> zNiuQ-Rm+mBMO0rlqZov`%?Z>x1iL3P+bc*SZJ47h<|NXDCCw(6R<4sSzop_Rg;R|8 zcvf5_vf_#^G=;)c(!4N|D6%6m{tZd=#DyqL&(-S73opPm3qjcV{&CgganbB%?hsiz z0Gp8>KW)4tKEIZn6dk5eu1c=^GFv4XxKT*n;nnxjZ2OK)a~-C-0;C0rez7>hIo8kt zZlGVBW3N7jur0+{bMx`R`u={MK6?6WkM2LE-#**ktb@*}tr+}c0roMm*O_q57HllK zy?Zxd{SQnuy!$~s@=PXiySA1J2)4Qh%=Cu07NKvg&pXviatZ!TNx|np%fRw;w*II% zvTfQdOj1mb1~g&P9x_WUuBjF}N@>@&V`wc zF3q?<)&$e5OgOcZFjJoJjm6>->0r{E8Vds+$@ArZGvSZpdILOCp94YV5PLYppWpz` z!whGBffIsk_{IOo(@xd54amNPQs}i1S=NVcO3gf_$NeasXv&l_5mPEZ1=I45CAKfl z5Q`USKTr!Wl@BDqo*RUPtQyL@ATfR~%2=f2yj@&|o>^=2v;7G_*wTX0+mIZR}Sz;c;5XNpr@P! literal 0 HcmV?d00001 diff --git a/hub/imports/usage/__pycache__/__init__.cpython-39.pyc b/hub/imports/usage/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..146165821b2d7f32b3b28c6fbfa863f2bee35733 GIT binary patch literal 156 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HcvsFxJacWU< zOlfXWettWHa^HWN5Qtd!Se+FU(09KbLKL7v# literal 0 HcmV?d00001 diff --git a/hub/imports/usage/__pycache__/comnet_usage_parameters.cpython-39.pyc b/hub/imports/usage/__pycache__/comnet_usage_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca7436f3c53363d904db7e567c67646b5bcfab70 GIT binary patch literal 7097 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 literal 0 HcmV?d00001 diff --git a/hub/imports/usage/__pycache__/nrcan_usage_parameters.cpython-39.pyc b/hub/imports/usage/__pycache__/nrcan_usage_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efa05c03e2261fccfc958f63c01177358f86fb99 GIT binary patch literal 6130 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 H*iZitBmeBX literal 0 HcmV?d00001 diff --git a/hub/imports/weather/__pycache__/__init__.cpython-39.pyc b/hub/imports/weather/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21a79cd8c06f7843c8d8d769946c4e5005438acc GIT binary patch literal 158 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HsvsFxJacWU< zOlfXWett-Ni6|TZ literal 0 HcmV?d00001 diff --git a/hub/imports/weather/__pycache__/epw_weather_parameters.cpython-39.pyc b/hub/imports/weather/__pycache__/epw_weather_parameters.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbbb01ba0968c607685aa24c2fdc6a443baf0f43 GIT binary patch literal 5643 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 literal 0 HcmV?d00001 diff --git a/hub/imports/weather/helpers/__pycache__/__init__.cpython-39.pyc b/hub/imports/weather/helpers/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2aea33725b39ca441751618d0c13079160be46d6 GIT binary patch literal 166 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HwvsFxJacWU< zOlfXWettWHa^HWN5Qtd#Nd@JIIV8HE0>2IDOSgPYKUbs!8i5W`G!a04fAt)V6Fl&fn9 zBRAd1U~~tu6w@CgroW>#vP`R^VmkaiEH899m2ECan>!sY3iaCUACYTh$F{f^aNxEX z_oUslxwt`g?$mZbv}}}t`hr|@sDw3DzjG|?R$G!kyiY3SN`+K?&+-McDXDJVuacJV z!%m?l{72l9Fv(!Qn(a_Q?)qLpog*$e*>sMm;61`P*%S6dDuhisO383fm2O(24;vOO zoPhmk*HU!6Dd*jU9{d0ZN8lEuT+&D}4V*A|be3irmSwqL<{LUsvpg$2M(^N82KWg! znebUQ#V$QYjU1Z>cg@7vHwLci%@zn5^2Bmz5Wu+iZd=MuaHCY>9v7|SjuQsghQ2j| zWrMo3=XGpp81({a6mzY+&XF?dI;M6g;J?R*mH860svNmSm zXXqqmzI_ohc_{o2A9vSk>Gsy1>SkSrQnsj&#!`808T_=Z{PcfklFfg2kAWy**YB60n_H0l(pV`kUB6y7@7A}^6{;p(kJQWp>Zc<7 zM2}KWF-C{E2t#$zdkrWegxukh1P8}Nau=#Gm7(CIDSVeu_n{4tIWu8IRTklUB#dNH@Z~(-q zj^B+_mgI5f)vcY^w|C+#j4pr(>gY98ZH+#`pg!Y!F;l zf0Ng74$tAqXByU@>Dnaj%@2#S@!Xm-k(`93Ip|3w{|bzXB*PFztq*5JUr(ZXtDlb2 zOouq87ZJWMEU^|bHM9|b5SbNA?9$_ zuzaMk!U9rA=;zcqGaAEu9`-Lp7?5!k%0<&`#@UO*B*QfQi4ME!}V02XNM zg?SX^qAa_-2s#o!NktP+vHCX4EP%bBtuLYkV?T`wfU(&zj9I?JNLQWSXApH^s4?4; z3C4uV5_{p}XV2_^!2RST55tqRB1BEBe;pkBi+5G~^9X&9H%?ws3g1vfEpIj0cmDFj zpZ#m&WLk+Diu_g)m2oE;kfJVB%!EqASnJqvDzLrcq)@vxuABo?vq{^6du?vZ#wE1pr#Ju{mX6z)P^ zkfgTn0Z#(b71}eIoNN#T8S%!$Gu@N)r&cIg(H~ zqzRWn#SashG;Ig!)==28kGMx1-%>8})V-1MCJh})u8!^vgi%S0XRBBsMIz|ktarEt zH&E;J^Gch9-htX6=o*3S~EOkp&Wo#^7xzYMvkOvBhD6OJWz`dDK1Wr|o`8a2q9$f59 zGcK5>>$A{N{G@3fhSV9(WKEO#mT3ye5EM@a61-%&T(*5CR2qn{De^5vKD8#{6oiC| zrWyqV2%saa;pd+JWTrG+n1+5O(Jto1i=Zo1+6@xvOHhZ6VaDL9RKGKjN7QJg=O e36+V-SI#pg&V6_AliyR>ocKr2<^ZFYQ=b5PQN8>C literal 0 HcmV?d00001 diff --git a/tests/__pycache__/test_results_import.cpython-39.pyc b/tests/__pycache__/test_results_import.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72ee752b717a776b86c46273021d3ce9ec598126 GIT binary patch literal 5470 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 literal 0 HcmV?d00001 diff --git a/tests/__pycache__/test_systems_catalog.cpython-39.pyc b/tests/__pycache__/test_systems_catalog.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..26324a1a32e2b8cafab22017119221443a342310 GIT binary patch literal 2539 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 Date: Wed, 7 Feb 2024 18:54:09 -0500 Subject: [PATCH 096/101] Title: Finalizing the energy system data model and system factory A new XML file named montreal_future_systems.xml is created where the elements of the file are the same as attributes of various classes. Therefore, the catalogue importer and energy system importer should have been updated accordingly. The catalog importer is organized in a general method so whenever someone wants to create a new catalogue they can use the created code as the blueprint. --- hub/catalog_factories/energy_systems/montreal_custom_catalog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py index 1c6bdba5..d731f781 100644 --- a/hub/catalog_factories/energy_systems/montreal_custom_catalog.py +++ b/hub/catalog_factories/energy_systems/montreal_custom_catalog.py @@ -69,8 +69,10 @@ class MontrealCustomCatalog(Catalog): storage_system = ThermalStorageSystem(equipment_id) storage_systems = [storage_system] if model_name == 'PV system': + system_type = 'Photovoltaic' generation_system = PvGenerationSystem(equipment_id, name=None, + system_type= system_type, model_name=model_name, electricity_efficiency=electricity_efficiency, energy_storage_systems=storage_systems -- 2.39.2 From 57a9d24f4c58f10cfefff3a64f604d0833725f1d Mon Sep 17 00:00:00 2001 From: Saeed Ranjbar Date: Tue, 13 Feb 2024 20:05:03 -0500 Subject: [PATCH 097/101] Title: Improvement of Energy System Parameters Importer >> To make life easier for people who want to work on energy systems in future, I tried to make my code as generic as possible. --- .../montreal_custom_catalog.cpython-39.pyc | Bin 7584 -> 7618 bytes ...e_energy_systems_parameters.cpython-39.pyc | Bin 5647 -> 6733 bytes ...ntreal_future_energy_systems_parameters.py | 38 +++++++++++++++++- .../test_systems_factory.cpython-39.pyc | Bin 6499 -> 6499 bytes 4 files changed, 37 insertions(+), 1 deletion(-) diff --git a/hub/catalog_factories/energy_systems/__pycache__/montreal_custom_catalog.cpython-39.pyc b/hub/catalog_factories/energy_systems/__pycache__/montreal_custom_catalog.cpython-39.pyc index 29d54354bd9f290c52466af2ce07e9b63f3eb778..17e1be9410148ff08df63dddfb03bc4a7891f37c 100644 GIT binary patch delta 1607 zcma)6O>7fK6!!Rcymr=J+qfhlV4Fg;Y0`#*CdMXk$=cD)L6ULH?BY(%;WL zvh}rspAJ%XEGPst$OU=3u%2Eky4(DW($XLuWP)sgwNWGe&;fiZF=M&YWW)o`_Z0VT4gO| z4GSyG@)z0ClGAjU+wAbY=yd?$O>~uy=?EE>TJ}J~;Nx;O`+oNz8db2@QQFurUl6{> zt!1_tr5Ai3*yr`l+Nc6!nYoNxzT>%1z4-(NQ}7B(+W;nEiBADyBneN6P?9H7(0s-5KM&fO1^Sx6m4%I z>_CTvdVLdxb$zt@4n};Yxe8TqLZpL`+q7u3GQKmwH+b;eFodX z>C4_s;V_w;LjTOO!4@%@>a;p<8Jo2&*A~2t`Wg9Mad%f4O8*$M2rDmWi7+YeQyIf3 zClEeBs3RaVo&+%S5xt$LID?>ysi35e`B{+WEApfOBr+0H_!jx;ZnfRr5u{uu9y`Vyfrb;=# zQO{-uW;`0r0@?>+XP67$0TX}p9=;@q)u*J`sEGYweM;J#YqQTIE{P~QZU|Ett}~b< zyUgG&L(60N({QJY_lLSjcnu{y&K$?jaWeb@f`wos^b1y!x`glsufh@)07{ZcYS4Xj vCoR)qs%s6c$kD?b<}2_QCM@{Y;~?>^_&O$k8>#kgk6eov2V=|2W7B^Flc-%T delta 1586 zcma)+?Q0xG9LI0&aqnsGE|;Xa#H(pyA{!H%My-_?jn!7u`hZllthDF$c9Je!?#`J# z^x(=N2z`~laC|GYg5aAfaxV)N`pQ=df(Q$O2%=d014Li=`_5V~y@Ghld~SAr&ojT- zTkBWXO(&nvMCkYNw>S8whrcl0II{;b?l5Ml?-IAnBFXYJo~0p8^+|G${ieQ3UN8UT zCwmDu(ldJ5Ud}c55|;|5XmkK?0)#w$jF&26IV2_=NSS58c^;yb_i&gTZ zt{9u=FcFUuf~@RHpYPWEZkq?`?GA6~sa?3p9lyr6x4pW@oAs_(gUMsSQGz|`cAQ2{ zcG~Smw^n!B&IPaG`CTh5rqz7%}feza^X7v6==f0TYd*`FWq ze3j*}19T?HudTjGP2|M>@;*0bCXXW+TFHuqF;S|mel%zM!y?j9(rKsvPug2>Q5e~l z(F3ZI(t9-IECB~JJf1im(Rg&wFU+%LR1l=@Gy{4+ECH<=q+Gu1G+immSl>`z7Z)oK z*kkwfhqP6`G_^IX={}g81fB1S=QTIfsQ)fQ~$l83KsYs##iNFQ{v!qvIo; zcZlR4s@tVMsiA%uJ9JW;!_rEIeW9HWBkQ2J@pMUaPdtDCF9Ib%$2+B7E-#EmnkVt~ z!R7KwG^>NGKz&nvIZ-LTgz5gpUni>l1uSZbju|?}nl{uOw@I%-qS1PXiy-s5)9COM zLbL>>j?@C9?)ZGCCAvYf)^v8M`_qo7U*z~qgj=NB`0gDE5?b}f;Qh%5+1b&|$Srx- zsl7t;Fu#47Lmmw`=2gf?e5ZJm?gN)U3}RD~Il~flb=u?5*|5aSR@3G0hPA~)?=T1w zaMv9TlHTF;(Szi7^?jwg@emT30dUs@T3O)O1x`eq0bT>%0EP+c*^=6uo?2Qn=8dvZ sG0ea?kown-bB^hICL7cC$JBMSoqLd;0Ta_vj&)Q@mJw?uMeBnHGp zr7TD+urPx<@tB!lVM3nSS(y<3xIRb=B~kqI{lCY3_kEYAYoD(a^+F*p;d49xiN0Td zQ~a2}(vT%-TWXU~YDjH4luaoh2QsU7*EggCdGlsF6J{F3B)c;E#^py+JKNEQs*&98 zu^NSjyN z1K~iUVrF(_%y^}@eXhzcCe6$y&Fp`1Da^ej1UKNm8ulNx7FpI1ch~Go3L-BqbxP{> zYnRyu?o>SJw|q_=jklVVDNxvCSI#@0No~#59U7~S?gn+;-~pqoW2uj$n(H~1tJ@m2 zsll0LSiGfq0dEF8o)9+O*|Mn1HDpI>y&D~m3!_18`)-h*W`J9q z9^25H`j%zmE~Ar4zjJ9TJ62(%^SbaQdWQdoBxi|2@#uMG+g1 z)twlYvpFm>Vcpy*tg$M->MG%lJ>MO){qc#*6!e6*=0%uKwKh!ec*Htxd*C`pqruAf zp(4=>&#Y?Lv Date: Fri, 16 Feb 2024 05:38:07 +0100 Subject: [PATCH 098/101] remove pychache --- hub/__pycache__/__init__.cpython-39.pyc | Bin 142 -> 0 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 160 -> 0 bytes .../__pycache__/catalog.cpython-39.pyc | Bin 1360 -> 0 bytes .../construction_catalog_factory.cpython-39.pyc | Bin 2352 -> 0 bytes ...nergy_systems_catalog_factory.cpython-39.pyc | Bin 2521 -> 0 bytes .../usage_catalog_factory.cpython-39.pyc | Bin 2262 -> 0 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 163 -> 0 bytes .../__pycache__/building.cpython-39.pyc | Bin 23721 -> 0 bytes .../buildings_cluster.cpython-39.pyc | Bin 1493 -> 0 bytes .../__pycache__/city.cpython-39.pyc | Bin 15031 -> 0 bytes .../__pycache__/city_object.cpython-39.pyc | Bin 8972 -> 0 bytes .../city_objects_cluster.cpython-39.pyc | Bin 2360 -> 0 bytes .../__pycache__/level_of_detail.cpython-39.pyc | Bin 3325 -> 0 bytes .../parts_consisting_building.cpython-39.pyc | Bin 1541 -> 0 bytes hub/exports/__pycache__/__init__.cpython-39.pyc | Bin 150 -> 0 bytes ...ergy_building_exports_factory.cpython-39.pyc | Bin 3562 -> 0 bytes .../__pycache__/exports_factory.cpython-39.pyc | Bin 2674 -> 0 bytes hub/helpers/__pycache__/__init__.cpython-39.pyc | Bin 150 -> 0 bytes .../configuration_helper.cpython-39.pyc | Bin 5964 -> 0 bytes .../__pycache__/constants.cpython-39.pyc | Bin 7358 -> 0 bytes .../__pycache__/dictionaries.cpython-39.pyc | Bin 8959 -> 0 bytes .../__pycache__/geometry_helper.cpython-39.pyc | Bin 9582 -> 0 bytes hub/helpers/__pycache__/location.cpython-39.pyc | Bin 1791 -> 0 bytes .../__pycache__/monthly_values.cpython-39.pyc | Bin 1495 -> 0 bytes .../__pycache__/peak_loads.cpython-39.pyc | Bin 4068 -> 0 bytes hub/helpers/__pycache__/utils.cpython-39.pyc | Bin 1203 -> 0 bytes hub/imports/__pycache__/__init__.cpython-39.pyc | Bin 150 -> 0 bytes .../construction_factory.cpython-39.pyc | Bin 2527 -> 0 bytes .../energy_systems_factory.cpython-39.pyc | Bin 2789 -> 0 bytes .../__pycache__/geometry_factory.cpython-39.pyc | Bin 2594 -> 0 bytes .../__pycache__/results_factory.cpython-39.pyc | Bin 3133 -> 0 bytes .../__pycache__/usage_factory.cpython-39.pyc | Bin 2503 -> 0 bytes .../__pycache__/weather_factory.cpython-39.pyc | Bin 1643 -> 0 bytes 33 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 hub/__pycache__/__init__.cpython-39.pyc delete mode 100644 hub/catalog_factories/__pycache__/__init__.cpython-39.pyc delete mode 100644 hub/catalog_factories/__pycache__/catalog.cpython-39.pyc delete mode 100644 hub/catalog_factories/__pycache__/construction_catalog_factory.cpython-39.pyc delete mode 100644 hub/catalog_factories/__pycache__/energy_systems_catalog_factory.cpython-39.pyc delete mode 100644 hub/catalog_factories/__pycache__/usage_catalog_factory.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/__init__.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/building.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/buildings_cluster.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/city.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/city_object.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/city_objects_cluster.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/level_of_detail.cpython-39.pyc delete mode 100644 hub/city_model_structure/__pycache__/parts_consisting_building.cpython-39.pyc delete mode 100644 hub/exports/__pycache__/__init__.cpython-39.pyc delete mode 100644 hub/exports/__pycache__/energy_building_exports_factory.cpython-39.pyc delete mode 100644 hub/exports/__pycache__/exports_factory.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/__init__.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/configuration_helper.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/constants.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/dictionaries.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/geometry_helper.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/location.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/monthly_values.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/peak_loads.cpython-39.pyc delete mode 100644 hub/helpers/__pycache__/utils.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/__init__.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/construction_factory.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/energy_systems_factory.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/geometry_factory.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/results_factory.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/usage_factory.cpython-39.pyc delete mode 100644 hub/imports/__pycache__/weather_factory.cpython-39.pyc diff --git a/hub/__pycache__/__init__.cpython-39.pyc b/hub/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 0b825b540e5ae185e20733ce37bd032c9a1f0f0c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HqvsFxJacWU< zOlfXWettlIYq;;_lhPbtkwwF4RU H8HgDGB0nKk diff --git a/hub/catalog_factories/__pycache__/__init__.cpython-39.pyc b/hub/catalog_factories/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 28c574d6c23e3d6f29538ccd5a628664de8108d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HkvsFxJacWU< zOlfXWettN(iCBn1(_z2BB!z@)k+!j8-W!^wQ?g zC+Iu)0on)XW9Ztq=&7@7DRtW%lEph7&)?4X&90;EZQr7`^YuIX(y^?c`p5brn{`OL zctV0%W9!6XHgm2m=6rU>HtU>QyKec7oPH3gD3u9ZLs?#p4dxIF4{EPrVDZ`qX!K&84uE*YQ8}p`Hw*QNEGvO*Ug`TeA-D&aOcz5lg{&;mS40W9_to<;|Br8*`Z-wDy8KsTK z3qvO3FvLx&iTdvix3u`fw9z!(sNa$fGjFM9yItS&J!2hG z4C7av%r^@ryU>e149o}&Mwlr`Y6d1j*%DT22ey`N(MX-Z(Q-q$sTX)!cEnQZ2fmhF zv79!8CNa3pymJz)>>F%}`4K9;Z21Smnr!95h83TgK;&BW z<~)g05TDc(PTuz^y7nJArm={M0+hNjM&YcXjJ*TB*n#29WJYPohsuD5oRbst1U}&b z0RGNo<{A0X`pLL&oEf358p=5%=McGPCd^%C07$DlSqHyGPl1>#EENe`o;2b1$_vAO zB6t{9&M1-)K2<~H-*5>V!zg0{_;x{0E}?QG93hcbWfxrZD|f0t_!IGP6<-rOFyM`J{sWQhvH z`(UWh`As}>kE{}(Ox~S$`AtUJvvVBi=!eS94D*p$7bP-_Z zqwXR?%mR&2zJ}5QJ_qnYCcXz-Gl1{h=0vUi{}JlEUPK6``BsD+i^1c&BGlSYQXI)u zDYL&}MaDGUFN1(|BjH&1A@eOvnMtUlFqEn*vVho0FG>pRM&>w=JUdm_<7ug7zQKjmZbMP&Un> z_O{65NEACD)W=(9}e64MGFhLDsbiz z+wxtL_|A3L8r{~Kd;|)Wi*-yS$8`;K;4cC^N(;7v4X8};@6!L{>#Ed_=gMbW=fJEs zN#rbedZ%MtT%E!wypu5<&R54URjPF~Hsk^vRkYy;EQ-2FYad~yevywVZ@Xq-2cxaP PT4lRU(lnvtV|vzKAaiPj diff --git a/hub/catalog_factories/__pycache__/energy_systems_catalog_factory.cpython-39.pyc b/hub/catalog_factories/__pycache__/energy_systems_catalog_factory.cpython-39.pyc deleted file mode 100644 index fbf450b75e7c653f674fe6438fdccd21ebfce376..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2521 zcma)7L2n#26dupc?o1||w9u9U1!}2qSkx|6D-J|a)M`l!sH|2A1vEsmoUwOzBG1fX zdjh)(2bBB_4sguR0RF{XIdMh^i4)JB*=9FXQM|JEdHnqR{NDFI)3vqGf%esBzw&=t zj`N3^EVc$r9zj<_7?=||3^7-r)QwzZ$3yEIcBdf2@WV=nPMK{c0QFP}_hG8$|A+bMo<|G@*?%d#xd`mm85TSp<_V)kqdL5IpAiaKf4BzqaRclBsB(0L^^?V!G0MKGE4*~q-;$9 z51B5TBL9v{SQyic2`;4%dUC}mH_61LzEOILi(%>48s*A9Rot$fI`SH5{`*aDWAC}* zQtcI~%yYdrn8sr&(;Ag(Z(Qu#9#>EyRplgH?Jc`XmKCPm$<+9qWQiu^CLE8v=-C7?OnX4%af_haC5JdXM|_Y}%!c zD-G7<6&OyDylP|UA_+XA*w+67x=Ug)1f7f zy9-`jGN#o=pqQ5Az&+XjJTzgkuy_>&0}BHT^U45GG)#TXh{eEm2K-jBeVphi9wmo7 z!#cP8Z%Z8)D#=C*^Gc*e2{mvD62NX)*ke*2PE5dBSvjdrw4OogcfyUrz zw2%K8g>|`o@#k!79@NF+pHrHpjp&n0nOG_$vSj~-IRn;c`%>m!cvMwD?djZ7!ENnD uuNYfnE+E9JTj)fn>MgL*H4nneqFV-=RqnP7Qk9`Y&u^o)3*G$Opz$AlLbO!? diff --git a/hub/catalog_factories/__pycache__/usage_catalog_factory.cpython-39.pyc b/hub/catalog_factories/__pycache__/usage_catalog_factory.cpython-39.pyc deleted file mode 100644 index 81c1376f913d3c818d1d4e738685cb82b4e059ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2262 zcmbVNPjBl)5ck@S?Yc?J<2`slpU{E?QV|e+)|>cAmpn zD7u|;Emhbp##5CHN1Fb8OLv~{?9gtJ$AuCJr`^MoE*+|3G7kHyxR9}iO(7LMnj~o| z;ichdC1-SK7F1SrhKseVP=%HU@#3^j%){T{)2ueB+&AAE$MOrVKx}o3ESI`l ze=#gHdn)Gno%vw`i2s^zUGg*$@C_`<#)Z;Meq&x5j;#E-UW^ysZ7xg>pqG6Zq!kee zt1U?6hz;Qg_l88SY>0;NZY&6p2eK~$Bl{qmV8MDI8*)voe@{eHv~FBj355;8+pHd& zz|C*}v<}-CuP{!VcUhcziWeaO!sb|`Phg_2j`vO330mN@@ zVPBCSoFA>H)|JIv-O%0@xdwh-*)aEo1+bjnECf&S4-920!rFnd;n*r*Y>=dqvC12B z1zf2bY4NpGRg1-SAQ-w+`Jk-U(4xV{7&@nNOPLNTf5dZ<%5o~>|wXJHT%uvj#d@%xQ`@e~cdy8yp}uZW2jr6*FWL|#f@Jo0jpiV!PG z+qOa;sZAJeiFyfT{N{Ri0#fC(*x0=ZlM?T;8ndmH0BgPffR7psOMJbP?#I3R@EUNT zfu~+Y=^i+b<(OOVz*ddTo4v6Tn^F7!&`ieOhX#fAL1+@we0vG4@h{Mf8k7l7Nj*{d zKR}`fOnhGk0pp7i#`+D(>|jpJnDOIbu9CPesBxmFbeLSqoa(}qSd*SmXp?++XI`t! znQso+twHS4dE%SJ7%u)>L)x7}FOfVZF-h-EXzm3m*h_hKF8KZ~X#Wn~nr*KN(mZ`S zdub8#wA=@wwrks!Ka`qlt<(mXucU%MH~$C}7F<}#)45)o^xEr~hdIx%ZiI|wg_xKc z(q!zb2~X!cK4YSY8B?#o(N!>31r!oJRhYW!H5^{YA;1B%`j`UMBRqd3Q}9aJfuCkt)@9Z>1Z(Xohg88{?e2XfQ;C(w O^_!$=L&wJsoIe2;`9hWe diff --git a/hub/city_model_structure/__pycache__/__init__.cpython-39.pyc b/hub/city_model_structure/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 856016a43cd3c517697b216c998358f63ec7845b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HAvsFxJacWU< zOlfXWettgzq~^pImlTyImy{Nz#>B^G b=4F<|$LkeT-r}$U%9iG&+JS8N48#lokfka> diff --git a/hub/city_model_structure/__pycache__/building.cpython-39.pyc b/hub/city_model_structure/__pycache__/building.cpython-39.pyc deleted file mode 100644 index 31b53a55f4c80fd1b2676ccc69c2fa91876ebd6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 23721 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 aI!TP)rVmiHR7xGdQL!I8O5{J5ivK^J$ltjD diff --git a/hub/city_model_structure/__pycache__/buildings_cluster.cpython-39.pyc b/hub/city_model_structure/__pycache__/buildings_cluster.cpython-39.pyc deleted file mode 100644 index 9b668d1fc7cff5d63c37fe16b15fcacda8009db0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1493 zcma)6&2HQ_5GM7vva&{8r#U!40p=DV@WOC!Mo=VC3nPG&Zjz=clnn@3JB1s<^1RXEgTqiExE?PJ}1jGdu2y z-g6TA^}ldL@UYHukxhM z1>85x@8(B&AAb*o6IcGw$7b-hUl*-r?g9gPi=ziKAJV=w^10+I1%Qy#_ zu1xQj*;M|TsF0e?D63{aAL4CYekQn_OL5<7Lw2$0hhQX$DKKma8ryHl7*p776+@3ptYA#ng4ubGXj{LXg*#;#7@xy01r3|X2dT0?LO zI#@RJUFi7LcfbgGN;s+L8Tr#X1^iS!wF_$2I2;P7IlmwupGJG5 z7g{PkstZ+?)o3_Nj}uia%CASq^FSMxN!?SZGj=){N@+fFao6MwFm!CgfEu}t7FM>kU1;I42ffl$}o5l z<5Csylo`e>GWk4-SJCo4yza8;15WiVn$L4l*J189^e&a}zDQ-Y`r$Ry4yppQ6L8-C zM!@fL{(GI|i`c zaca!Mr;gqCEE@DI+N?YYeRT^Kj0dCxG3^ETbj&u0Z}2tYwUY}{JMAg_F|^3=#uX?H XsHXJ(y*A|^P-Bfio!*Akw|x5(tb>hC diff --git a/hub/city_model_structure/__pycache__/city.cpython-39.pyc b/hub/city_model_structure/__pycache__/city.cpython-39.pyc deleted file mode 100644 index 8cbed17fe61358cd40dace4cdcd060a6bf58581e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15031 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 Zij^r~$LjqrU|*x~T>%GK{r}VE{{q+v-P`~G diff --git a/hub/city_model_structure/__pycache__/city_object.cpython-39.pyc b/hub/city_model_structure/__pycache__/city_object.cpython-39.pyc deleted file mode 100644 index 450328cbbba082857fc55caedef6b466f0a2796d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8972 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 diff --git a/hub/city_model_structure/__pycache__/city_objects_cluster.cpython-39.pyc b/hub/city_model_structure/__pycache__/city_objects_cluster.cpython-39.pyc deleted file mode 100644 index 354819ebd061dcf4205310b93e03a18f22e34e1a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2360 zcmbVOOK;mo5Z1@S*OK zE-dI&8^}NCsfXm~OOO2lz4Slu+Ef2RPn}sx32nXB zvkCbNC-ujI$$c2=3m}|$gi~(BG%-AbBHxG`iRqb|H)AWYJzMiu+)NzLp=6VAn>SAh zZwf;=C#Kip&JO9eia$Z1JBae*ul5c_n5#its9Z>vWW0!lyR-fI_v|j)ib9bp0o)@l z(mdLagzU4e&Fw8%`lNRcXeQa+IDo6}AR8acXmpUXKhD_tz4diA$kH&AJPO$0;Wq;| zl36i!w`GPJVUvTt?I;c;`!Y*a5Fd$Lum|x`AjO1n!5+(KFOV`~V?5MLUL3j~&IR|v z!2KJbkS;A74>ktyGPfd?!`t2g(=!QN4QGgF>yJ5`s0lEFcoe*BaOyRll6~+sZ=5=w zDJ*Vs>y(^O&jwz56!<3a4sYpoN3?`{lW_M}%9nWi)by5w1#9iuT8A&6nsBEhI)}@A z1!gF%^OTsxTY-pND_1W^W3uKlc6s>@0%c(wC><0am4b1_tVdE|pEVdq!mkUJ@;; z$aUnFf!u_l3?RgwyuQFVlzp{f4&2Mh&y>?0a%N0!Yo#)Xlu#_qauy}ySR_!vf-@my zR#`QK7+fD_`J5-P z1um(_9ID)|oE~Z?!c}~b$5PPIyA2FRkJAE_PU%ROM%u=;XLL%RQ#y~XG1<^A3^-@0 z_=#1C&+?4r2Vx%Y^PzrHv+xJKHS8L)1v*PR7>`BDVT#c&muiMz^zsU5^lSSc!v%%W zC6-HFqfIC8*YwPqcJIQat0QnOfxp&PVgk>qneB-$@%MY$RSxfB-8Y-??t}&qHrSoa!z0a`w>h^6m+f@G={{l&;QDy)D diff --git a/hub/city_model_structure/__pycache__/level_of_detail.cpython-39.pyc b/hub/city_model_structure/__pycache__/level_of_detail.cpython-39.pyc deleted file mode 100644 index 23d48333c1caf5a1823167890e0d456d75ecd6f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3325 zcmb_eUr*yk5VxJ!F(!cm2iKnZXCL|i(jB63PxMrsnyXMNnxo}fwNa$4>)j+qc9xFU zREc;yK106)?^UI~_G9?9-=a^Q-6SR<4hI6Go$Tx^yEDJv?C$urnrGm*^2c9n4}1SA zW%4Vb@)BFJfr1%LR#{<$Q(JG;B2 zE_#6g7W$2mj*r{9X$ZC*zSzSVgW+(m%(_o z?ZEc}bbji~WBwC|xq(p{O^cb$60=z8!f2Mc&C1NaFy5L?hdU<~=H!~qD$Laum%C_L z$TgdJY*AYl_ySt0xn{E(ThbPfduUnCHJiQ1R{il-j?SMI|Ssvlt+dT!qz<;e`Zj`UOVnYw;<=c26cghG_7lgoaZ z`|AvzOlQmFw1+`^a>X0tX~2r|ep!iYAg|)s)7H&jqz+)9^ z(fN5F4L|3>-IlW-=W{kJ9muG3m?i8T_kBeb-REEP(b2q*OKT@5J52uYQKrMN54X0v|CD*k~ iuTnNW=XSq(g~pZzACH$S+9z{g3`6=tZKz9%vim<$(+isb diff --git a/hub/city_model_structure/__pycache__/parts_consisting_building.cpython-39.pyc b/hub/city_model_structure/__pycache__/parts_consisting_building.cpython-39.pyc deleted file mode 100644 index b45092d4492dfb1bb113317f960d6170e0a800a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1541 zcma)6&2H345bpNhINk|A0fct75`Ex+4;e+_fD|DF7!)A|cC`Em%%GOz?qrPY@zC8y zno(|v#2awp0LQ$*KER&$34Gy_}Z5Y&a}x!hxe;27w}|7DXLrsPx}vEvQ4&^rE;Vtc#nh}nd~5w zYKQIZ_V-}vW^W5@sn}+o7^#A&98XksI5h0ih% zR_*LTEp_MFWGr7KDx~#Bl$psN`}j8<<&_4Ib#S(p;&;mfNyee?gOMbrK(r-jY=0mJ zK)0|@{MeDMaD;n8kYMS`j`V*8f+HYo)1e7Rqu8pcvQz)U59)2>?es46rr}Ayo+Dl&W=jsEviW1YYf6j;r8l3k>n5zpoHN4>y90y*B?( zVtu^8iY&5Oo0u6UhNWdOF5x(vq5N?LucO6@c{4Ai3n0~HG~XAZ&coU@nDaWWuc~8N z6X7qYDAWolD&V}mZ@}+z{;o>$S){|cC{xax#@7B=m7qm4QCAQL@}^Mu4FnKmtFct( zIec-3@&ax_&J}hOd!exypE`EevuMzg`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HuvsFxJacWU< zOlfXWettVg>+RZ6wbC diff --git a/hub/exports/__pycache__/energy_building_exports_factory.cpython-39.pyc b/hub/exports/__pycache__/energy_building_exports_factory.cpython-39.pyc deleted file mode 100644 index 2c14b747ba79796737395d49411f4c358d7f728f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3562 zcma)8&2JpH6(?tAzh+mqh(Q}w6FZW5C4G*(ptaf=4z^* zHu?=m*HtrZ^;?c^s4#8!+m3FkPP)>+Ldhc{S|WT&L^$*MSB3wSblU~Ylkj0C_1^dw zMWRHK?U{$qN4d7JM77$?I$qxwI6v78ZrnY&%h0v(NL)aCIQ9WDnE<*K)#y zWQ9%!TyP0b3eK@Z zHJ+=FE1t#3bK`)kM8G4WBt=a|l?Ed_9^rE1nFPsF$9T}`Z|MP_!K@^G3SQs|3Rb@& z0#SQO`+=;9x@f#4Gup2M-4rcHH-HXB+tE$Y5i2iAzvV1^wS4bV>rOrl8LK$h(gBtx z-<`Wathh12Sk}cypZw(0Pq*Uwsf#0xci)6&@a|J@N+R&tDLtacD*t<&afD` zHV>~I>EdR2m-#DAG`B%-G%lMF+&{5V^fsJeR-q%bPOs1qeodh2baL}jYxfocVhH=? zhxF2ZS72blV*3=DH}k*_bg~V$2RCs*fH96r*-I5WOze>H(MTmRw@IEck*6FYUp}`G z=rDm!!`K}yZK1O}Y%9;Co9X%*Pt*W}MB_tVQT-OusJp7W4piBW=4#ioGo&A-mhcWw=w}0iBQu2(5 zW~lbP>rPw-)rm;hmHsfOhP1aHIeh{f)c zym8S^*vALpY;mu8*n|0*r*;A0vysjZ;4F9X@kMfm0K#~YWx^V%!Yp5nuFFtPnmb`K zPCz$sqEWM3llJF;87WsikTYq| z{R0M~OEuz1_gaON04{h+6qWT6ygajI10I<}8U@+IvI(a-1{bqsTgyFAQWQhlE$i9< z1lY1JpC`teGRQ|VD{F^3v9fGx`DGz-+6SyH8{j+u4ps+nwhMiI4R29%@!wy;*WxQH z-1ZBt`kncM-IV?j?mGt)K?K{nuwYOYS-D16=}myd4*i(ELxcZJe((mofbD010#%9^ zbU=YJPaqLO(Vt=QL?`#pL}AWcQGnIQYgK_`eBIpLKqDlbz@T2k;SKE0J@LJH>VmQb zr7v)CP*oj2haC%S{Mnn{>Qdmva$ZvcUhj+&;Q16QQ>Zmi3I1eoMhOcj+Di@)aPlew zuzX+zy*OIsjhif@pK^gy(hr^ z4KyE$}AuGYH?Wdc{`9uSp)u2(j|iMfUHVg=+}Xeo#Stok0odS#N@%+K%t3R9~qnlR-M*}(coB?E^P`U9Bi--P<5SH0Bq z&OugBR<#TyZI|Zz-@A+%V$Xp=|K6os=(WA7e7o3pT_}}nC}b!VD8uv$n<(RI#PWwY uU)AHLHwTm@-+ZhasF?S$!z$q-wUy1gl|AmE54svGXmq@$*8#9`KmWg3=mdKJ diff --git a/hub/exports/__pycache__/exports_factory.cpython-39.pyc b/hub/exports/__pycache__/exports_factory.cpython-39.pyc deleted file mode 100644 index 863f4f38484222016b8da6af95b92b499027a57d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2674 zcmb_e&2J+$6d%t_Cdsth-F8_Dln;voC@XEWDz~y)Ep$J$(kfJ2A+1IgmNRyfsXTG8 zon;e+3+1PTYn312KpFPj-{oeEQ@N3s%51!jU z72=n==lzC*vrhnn2hi+uAi_&LL4>bJ?k7G$K2Sj(CSl2ks+LDdRPr@d&l^djV?C%5q3KO*1#9*}!RPc=q=~onaBQ+( z-_f6s>E_+dO}ecIsWu|xboG>mtQK9H${Ng)k=GRl;a&^b_T*u&^ z*D2^WUUHQQu$sYgfQD6&FgG5`6g8iHPJ;9WNTrt$2$U~K5{Ok1i13Icp{$9Th>pBN zl0?9lVF11kd{e}wyaD`@ST6Y{@Ylpj$;aZlxN+n`z`U=`h#F@NEXCSZ*7ZN^V@# zk*r--aqOAbVdFnP-QL>!+)88jM!C`2?d^=yJ~#O+1MOaa)Gb>TeY-d7*$n6Qa13s; zY>+v|UIUHx1`v-#WQD}=Hh_!BWc_@^+Vd|`f~#i_^4QAYG=Op5H$)JGcX9_pIS(?0 z!-)R&a#c#VjC3P2*rFXhkfo$^Op2Qw?VduS%N($i;*l}h922t&dP~k4uI_6E#V>XZ=)aUopN^!wI0C}~azhJ*=&87WL@^=Nkc95|L z1e$+{XM;>WJ_l4^Rt2mlbuJy$HLPRqD%e_qsiCD!B&dC%^&tZdw_$dU)Xj^*h57&8 zYTZ4!BG_OxLh`RxgNDt2vKrG(b{r&uHA2f=qxH@^2bFan|QzYPHYVDe%i z{s8-F)ukt8m!8yJ`YNB_ELXTWX)tSe8`iamxdrC5Y9@s4)bAo3@LZbfC|s0w5IDoP zVAkT{@}h{Wk?^m{x2+(F4+!c7(-993UGg!$@l)F!tU>W2%X(^|&Li6LXGh#AYZ z7%AkJ8T)d?)oiBDn9wO><_*wVG=@eGrEz2PHX4Bi%e;q#BEc**SX3@TfMu?{f3P~+ zw}3QA7{swp;ySco)+666*MW5g&v;SCJ4I#P@}5f8;W}tnPTKbDN2m=4r#ykl=Av19 z^0&dv{C9)#`Ts_l!i&{H6)DS6v5IQ@Qi0#L4L>}}p5CX694#96DlG3~e%NIoVSU+O ICgmIa4Z%>Q@c;k- diff --git a/hub/helpers/__pycache__/__init__.cpython-39.pyc b/hub/helpers/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index be58587fd1876fd4a0730feb36b9aa4763277725..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmYe~<>g`k0>Nq9Qb6=$5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;!HuvsFxJacWU< zOlfXWett=r#g^jOF@hq26F6;+z)0GrP+br-cO}uKNOeg% zv5@p)qbN|Ir=q>|U?2Sj+Iv3+uRZlE^wgQ9L{m0pS*cSAq{JaPyYu6Jmb;@44rV3z zjQsLDogS5>zwjXZiNnD|*z8-dqf$wtGL0E>NrvCJ5v#>ZaamfFXo4oUB%0iel@c`e zLdvDwKj4P!f@PNVipy0;w@gxHMxF8Oi{-~(l1Z|pYs|D6{QH}OaFQ}k z7G2#i82mWknzII}2m`NK`AW-Hv$*B3hg!>9UQ@GwL)WEeIoV4rt4>wJqwpsI2M=Mh z=VVD@60nd;F)EkhG)CiFQYpcbEJYK)$uvn*TZv7%lnyLunh};vVCkb-Vd)Dj{d7QB zvVmog4hc(tU^zjDg=HYHjL?(9G8kA!>6ow#1(s8ETv$#7meX`XScU`38G2S&Mgq$@ zdR|yg29^u-qOgnxmP?cf%UEE!Os@#bslalTUK5sadL0zR*#n#|ioRc=??f8!LR(2BG$sOs9q@>xAe)j(Cz5B)K;@!D>h2r$gEW2HtniE%feXEeAaC61>hQJ??Z28K? zcpr4d%T$)+e$5a6i^%ZR z*GCBdu;}>+GzW33uS0R~#zov5253nr%HSB@{;*Gh?L2IUhu!A6=dfQzg^feB=@2o> z6RS*g6NYRPWKdCc({wX@Iunp+55tip9ujv zyFZq__B%s51AsmZLCPNm(w^gR>6F}YKowY~+TRA|NYCMWY z*An#++Ui-9$Ar;xoh}>;Q}2k8z3ztbG9WaM1!JqNo-ry>YP2mK7l9^qaqg=-8|~6_ zELW@IS^&j|l^b*4q`!#7!nzwlk2uN&9y@F63IJITLAf5Ktpomg4*aW*fjd=Q`^IFp z-DA{KkZ`q7vJHt&2HrYHd=;YoE);R(g16mS&*5ST=D>R2u3GTwd!^#?hLv&liBryf zVOL=|qLz8XAyvE(9-{4V6b6(8p|qn{Ot$awPvwgt4CA5|1zS-YOr2X0le6I^ zMHNQWTR2u9IIg!jt|vLJm^dy7I8JmqPT@FCKsdfMIl&zcUL2E^qkcI)HIBiA>Ka%f zv2o6vkrVMuGA0kFyKEUak6Xlb96jceJO@8K4LdJghib2(uZqf_I33j! VFY~~s^byv`M4c^>%E$xpe*r1IKD__{ diff --git a/hub/helpers/__pycache__/constants.cpython-39.pyc b/hub/helpers/__pycache__/constants.cpython-39.pyc deleted file mode 100644 index bdf6694aed46775095c90748d883bac10004eab2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7358 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 JjlM;k{{cLc!J7a8 diff --git a/hub/helpers/__pycache__/dictionaries.cpython-39.pyc b/hub/helpers/__pycache__/dictionaries.cpython-39.pyc deleted file mode 100644 index dffe6758cd4df1806cfb8580d0498be7ec791e11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8959 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 ALjV8( diff --git a/hub/helpers/__pycache__/location.cpython-39.pyc b/hub/helpers/__pycache__/location.cpython-39.pyc deleted file mode 100644 index ac83e9481b0df6c63f9ef290092ba1c2d5996a39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1791 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 diff --git a/hub/imports/__pycache__/construction_factory.cpython-39.pyc b/hub/imports/__pycache__/construction_factory.cpython-39.pyc deleted file mode 100644 index a45a82dbd6cdafeb722eb91338b756d3e1185401..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2527 zcmcguPj4GV6rcTLd+j=HLusG|!O#;%)Cvg)6h%=gH;s^jWi_gVEThqSXJT(OyX(%3 z1Gd5``3#)fWA2C#z{l7tr=GcS;=NhNIH_CU0AtPDnKy6V%=`0u<8WoAMxd?!^b7yF zLdb78S!^CmcA@JhKsf0V?r>K+iQ9D@9DCAB{H|}uzAPo>ZrP4YvXTVdz#;pDmwDx! z@XDFnt@7ZIG^*psA*9yIQf<^YGI5qZ2_uuK3H`J$jxr@^XE@Puq-X2~Rl=xPoCs=$ zg6ffo;-fgC(Sin=WPB_Ih3!^o5TA$?_6raLG$Dl^L-MmoKz6qYw_`0?h#{`(yBg-lCmYhKhaz zCWi7v7(pM&lMq#cg*?hDGl|?s_61QlLFkYD)>iMC2AB56iOMq5>rA3ysFGRk=-zPL zx4j6D?m;HZtzt(7HkzXe+i%zd#Q?}p@kcoOZyW#)^R$Z z?WcPOG)@7FNr>>a(y#F7cB8C(_$n+r`E6k}us)!K!$zIol7Mo_vLnWY31gYp7k!ae z=aLt$x`8T!OOADQL2ltfiKURd@54|BK!}fysyowrOI?Ms|AC*r{5wCj9<^U{lv;)B zqN6ZQ)=}ym9AVJayGZULSwn*PwP17^j0P-!0^F-s-+zPEApHNEZHvd7%`Tx$m>>Vb zY=QOYvwvu|6~1CNA_R}M)d6z`QGp1+=kA=Gd1r_X4|3n1_Lj!9cyCNrpaCn;3=8;T z*@{F9ky(YXO19u#8>@7SwzE`NP6TIPX?U|k=o(RDtCG`Ri2Ako2ir1C`aImhdiy(c zGW~p6QLz5=lu!Wl%DAT diff --git a/hub/imports/__pycache__/energy_systems_factory.cpython-39.pyc b/hub/imports/__pycache__/energy_systems_factory.cpython-39.pyc deleted file mode 100644 index b050cce29900e89a7d5a34ce2de88f2dbea45d63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2789 zcmb_e&2HO95MKUBq8Qmp5f^Feq}ZYjP#vrW?xBET1S#Ys4Uh^#i~tScVnK0N5{)IP zESGL2I4Ao-lA|A^eGFcE$~m{5IUbCnwMU;m?mvaD?>qNE!t5Ox zYN7mYHkqn;G}iRb3%Yx6cb9gvG|Ci@L)v}#tV>5KD<*zlWyd1YFvx|X{aA*I{+y+G zC{KhIbb=k7WYO^;nj7iB0$fmN!j1+7>@MGMKz6I>w&y>ELk zcl=`_R2+pL&|TPkROmv9^)@5)bNN|7W)FG=2`qq(&8@)U8{FaUxfQs)#_Q)Ks8w(X z>b%K)XgByZ-h$HOHb7&u+*)4o5*9P+Q@U<|Ml#HE80u_x_)Y%0n$%xXg5wBkRB)CoYR}#gu@8G z69$*8!ew4stld;LtWtW64Pz-7E9;X`0RqdK%zhIJ2F78^rBDjpQVmqDu_)Hl(r1G( z7i@wj?v`#Ys#~)=>%!i-oD)GJFCGlRBI>)) z&=ApMi1usy4MA4G*0IA}Q`Qd1udP=W^qRhx)BwPlJ%`i8!v?I5O`>B6=wM2VJWfZz z0u|(GWH7(V5jl3iN?=@qgotAiy}+pfqt-x3KmZiqBDefnpm4B6%rdo6IcC<_q72 z(baf;y*^$mvp#mT)R*7}Y^RRCB5eNic9sAzG*sI8*M>d>fNI{#mJr4mTElD@RLn8V zC%mK2$(eJ8ndSgnxwE6S$6Vc;I;(OE>2sc0c;gy6rIpH@gN%_qxR(o+?$KVB3eyw8 z+A9xwb_idN8D{v>>Mb4ddx!1q%P<-6@cuq%zk`p=cGezmm86}0nMI+@??a`U*K6Bl zV+3icwNl7hZOdfj(vl_*>y?2YKqE(NlG<$hiiO%%uiZpWOaX?#<358t#{Ukew-|d_ zgmOO8V2o!GW9m~ds_vkmD8530;9c^>Y#!Y)%#Xxjh}N@Q*Y~_8zGkG?ZmBkmmJPfP zWIU*@l}~`pJ7XayK=_?P$1*q9NYKUpIm36v%B6&VB<9y(&OU5q7;c-(-vdL4!B1CM yTFI{unnQ2~2UnO|I98#1)vFrksb02|c!s#|zb_<9VUi%*cPXu=W diff --git a/hub/imports/__pycache__/geometry_factory.cpython-39.pyc b/hub/imports/__pycache__/geometry_factory.cpython-39.pyc deleted file mode 100644 index df4111b6b7b55e01597f9a50a64508e23dab59a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2594 zcmbUjO>g5w)Z;j|wyL1H+EBe)UvEU zaB+1sV6hKVKLx<8(Bg#KDaq{6CWtrEM&^W$!JV|3xuI+DX6j{r=o{QkTUihW#5%CJ z$Nh7Q`*S;7GSS=fKt(W zX;cUm^yGM=lEJW`zdxrt_jh(^Pv)^yJc(%U(bFCsC|Qn!V=I1=uK}2lrGU|oJLv${V4W9 zuZw{=rdSWA-UqZLxBmfSl(t6 z5h*773__<1RmMdk^Tp;S>zDae!q!VdA=$7z>-d$UMcS`gmnu{a$_>|F72AGA>a8~j z-B^;jdAY7dKDX31*!QB>+dchO3#CuXOi5Xs9#7(7q_Rcs>Qhk9%sSch>7ueGtX~&k zcRZ^92I4ME6Ye{J6cFYS zfeGOqL2yS9+EH`f9JvrmGW`w`hSEp5O5&j@@)*j1o=s?}lYBr;QG9bqle{i_hz^Z3 zg))k$mZge?Ilo(LvTOJarQ<0Fq^mUq>j*XwY$8BID+dKVC+Y@L(4{qaANPEQn}aO< z7*@Isz;a#U)Zf1=e6nD_<_Q~48c*OIwI}9egf&H`CvUd=$(N7c!s>=X=hs%F_tjkl zOXfLDo{c_(4UPI)?)2uhAOpiSW3aA_F%*#1VTI7Tb9dzZpU{F#Y;td5q_408)<&XZ zSH)Mo)_R{oDWK#p;Hbu|xDs6A{Iepwiv!m@f@&C#yaNb&1nejHe4bnL2Kb;cJzW{( z`XPg-4c|V~HW%ssa$U0wqnxMkaAA#H&+!;_zdEq^PGD+GebXz+(UssYrGft-jj}Ty z?L7wWzhPR_PnHt_6TAB$m2s5nJwWOM9lP=dqKJw@Dg1M>D$7g&9>V5plML_fG>>p} z*02}lQ6?CJhR*88AMiF~Ka^3r*zp+SGGn$HXDCw8OLyVlL8{H06y8Dlq7`=`oy=b$a}K(U=~S;_S)`uH_;7pWEl{g<)nkD! Xhr8})4{C?*VS<=`=6G$g_!|EKAHJuX diff --git a/hub/imports/__pycache__/results_factory.cpython-39.pyc b/hub/imports/__pycache__/results_factory.cpython-39.pyc deleted file mode 100644 index ca7a3735f1d94279270175385cf11d7a8256acaf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3133 zcmbVOOK;pZ5SFysm%PpkK^~3M@|1R4c#}G(E`l_%;|4*Ktq~(dAs8jNBE2hvdX%D^ z?#4Z>e@Jrl-{{ZSYfnA5r=B`P?aTHi2qHn$h@2VCkl%bHTV3@mxPE-|MnrYX`U^i6 zuM&Jbf+zbG8gBU(x49$j$nhN;<&rE#uJ0PzmF1}7SBzYi)u`szj9iiR$n!lTSLI67 z@Ef-E)Z#T>Kel*%yyE{*QA?xIM7>GC%AU)$E*5FL2HhKPZ z=Q(uUZ{347QDj{*EtI#FqyrW9`kMTCLN@MgY>=%a4id#fMz*$JZjqi!^3>Z=$$#nIbQe zIAiiqXh9y!LxwIv^A)Hur9zUTQY)G%o%Z@Stee%e$L8Gp%mm}D@ok7X}Wq3%cMyD-?1 zdG-PpCQPN+gxq-;_c9p1F(2NAuK8eqF)m&+)NMkquzVYk=WyFE@r%5~-DBH#d6`#^ zEx*jGyaw+IuX7LHRldR-@UHPyegWQf?f|kbjaLg){ZN2vc+(@~R1XOx%QEQg1m%TD zP{wBqp6q96j!N9lEw!dCxb2aB;2b#Ixn+&)KT5oGWWO!Fv);Pg<)wGdb?eBYWnIzL zBYOnpa^%2wO@oh-4O0Ech1TOX1Xv#a>%q?nX{SuFi1Y!{5`mc}VGKwFywA{XBE^m_ zz=Z+S_@X6Zy=}0M5=pv<%teJR%LGjU422d-bMGX{b(%x*g;FdU^-~%FJY}1Fm83dM zVkVpBCw;**N%JTrW}NIp@x1PbLEl)<3KUASD`3rM)m+5f88)z5?@si_HXYlfxuP7H z>2Zxx41>~f1ttY*bzGLoYoW$fB~r-(0UDEeQV1ATL#r~yyvH7$<>}YyH2h|H>;k;^ z$JL49*frYqxpHl)dt#|;;PAiAt@hrlOsH%xk5rQAy`4eOXDXT$eYV%nyXGnCDchSQ zLnj2*N(Y!q7>Alt^q5_M#;VustM)b9vn%inubl#8YpNaqAI>h6F;9a}%CHWI)xbgnvC+ViZxaV@M zeq^p|)9la-%?vZs?u57RFQoeQnN%l}vdrvLGF7+XUx2yFN5=idsko!bhBJ#i`)(oh z^$&!8-tt`Zvn}8T_{6fq!o!o$u{A1wAq?5!2B?l10sSAl=7oH5!%|UG1odrOjfp+bIWKoy1hfhHJ zA9$?cozt^Z6nX1`OkjJ-9)eI9behh%+7p^-t<*&@Tvj@!roM;4qCm>StIM1>old9e zAuq-(LW=h&ZZNr_`v#@IgQUtnXZc%G$^kdVxVfV^cG zw`RMpcez$6ZZp9_iufDL?6TQWimK^Zin1vY8{+kw%M1l<#pkeYipIaYRNpWnT~?*aPy}w9 bXW?S_y!N12l7|Q|Gly=q;WTWxv333jN@rwg diff --git a/hub/imports/__pycache__/usage_factory.cpython-39.pyc b/hub/imports/__pycache__/usage_factory.cpython-39.pyc deleted file mode 100644 index 8bc421bb459d6ffe7c0275d1c1842c7222e848f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2503 zcmcf?%WfMtko%CdQj~|Aq)l6(U;`AW3PcF(OJM|o1H}mnB&v}IPzWvvdPz%baF+^6 zIhEj^>~HAVxfI9`^aJ`Cd+jOb-g@c`S5~FOZP7!s3l7PdA&2wk7caI5d}}}bB2F8G z{Dzz5FM`b$4Eq3pAOj)-5vm{$2VsEgNJV)(i2XWNwY)y4`*lq<@??+%CXM{=q>svOJ!jttiBPlaPUfLHtC~>JC6Xh(Y*~2o_R~b zA=B#V@zi9)k)yx9rt7!Y*J)1|sWu|xw731FM~6mF#;qNr4`k|qDB!IRCmFmPCI?p= zIio|5FuCpy&v3am+Q}_YrMj(~au6oqxw-&5?oGg^c9ZU8iW~YE6z1wsI!W)TLr`i) zf%7@Aabq$%My77QU|PNP4Y-|jg7VWtt}+2yu`C~J$!wcQo1aqjCnYVWO~k9(2c35Y4h8 zbBtYu`z%T(!KI)T%&sqM-aX?=At4tZK6at`I&2(hd=MN5r{ODt*^Rq{h{b-c-6!9- ze+gMw+oY{qbl)0LHaUtBij4+aew>SJiAr4XSkVq?l&m9->DlE zZ?H0zSERpz?Lig@$YEPvR!}Dt)B8+F$1_#dy!K^t!SXsZ7w~LyhVfRdz-1&fSnA{T z25f8sfW&B=b}+lPYMzSif3VK_-&?2uq<61>j&aNyyc3NR!|aV?KEM@v*jz(!9l?hP zFp8G+t+N8t@N>Yfs(W=+UC;G?we@x2pR}!^Di{j?L0gH%<*R?w)^n|Bi&=p3e9mKV zVB}+zW7j(&$I&sye+2Oz&&0VNteTUn+KI0#pxasN@o~E7ITh@jA_ETPT*5&Nt92ddUe4Da9GS;Qk$)YR7LN1nplwv=nIUMEyk*r4(m2! zFD6{gDGkPiP8l;-;3|U-FdrlM1i@zr{!-Ad@DaYQ;=;B8BtaY{wWNu^r}R55a}x;V z8Whd$NUAZ^)h={WWqny5bPzu;q+Rc#Zk6`TZ`gRz&wN=LeEBZF&zpDI(MRX8`@nmb d-A6i>>hrWLlRK5s?qUd7Oo%vXL&<_a`V&g|jRXJy diff --git a/hub/imports/__pycache__/weather_factory.cpython-39.pyc b/hub/imports/__pycache__/weather_factory.cpython-39.pyc deleted file mode 100644 index c0ac64d914641459668bd744d73b77f5dd8849d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1643 zcmZux&5I*N6tC)ZJ~qy*uB(o?2z3$3!Zyoz5Qbq`jpHJWAvi2b2o^O}HAyekAHJ$i zOqg5d&+xE&5$53kApQ&9`s&HEw*|ph-I>#jJYiT9ugt zocaRN12)LgIzQ<{-d?_pr?{<8yXqD?*vj};?wvy;k~1ZaK0)n&aFgYyx3bq&&7(t; zNnz{}GWCr?FDTm+?SyjxZ{bbwuy47lircEMGd!xx+g!eXr-MPS;~OZ&Y301^a$f(! zkl*3_r$U(ZNt<((NzTE81rI!V=!pk#%XyWjkDwX>54-Ik>CiB|-|XD0r05bJp|JcI zn>+Fi<(+E7t%E{hp>-v!Je3c;&QzNmXCx|IY-}}QqsLyp9*Ss Date: Fri, 16 Feb 2024 06:01:54 +0100 Subject: [PATCH 099/101] Correct small error in unittest --- tests/test_results_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_results_import.py b/tests/test_results_import.py index 4e2bc912..a5f9a750 100644 --- a/tests/test_results_import.py +++ b/tests/test_results_import.py @@ -128,6 +128,6 @@ class TestResultsImport(TestCase): self.assertIsNotNone(building.lighting_electrical_demand) self.assertIsNotNone(building.appliances_electrical_demand) total_demand = sum(building.heating_demand[cte.HOUR]) - self.assertAlmostEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) + self.assertAlmostEqual(total_demand, building.heating_demand[cte.YEAR][0], 2) total_demand = sum(building.heating_demand[cte.MONTH]) - self.assertEqual(total_demand, building.heating_demand[cte.YEAR][0], 3) + self.assertEqual(total_demand, building.heating_demand[cte.YEAR][0], 2) -- 2.39.2 From 11d493ba0ecf5d59cfcadda2b98ebc4d68b347fb Mon Sep 17 00:00:00 2001 From: guille Date: Tue, 12 Mar 2024 14:56:22 +0100 Subject: [PATCH 100/101] remove north_america catalog for energy systems --- .../north_america_energy_system_catalog.py | 461 ------------------ .../energy_systems_catalog_factory.py | 8 - .../energy_systems/north_america_systems.xml | 243 --------- tests/test_systems_catalog.py | 22 - tests/test_systems_factory.py | 48 -- 5 files changed, 782 deletions(-) delete mode 100644 hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py delete mode 100644 hub/data/energy_systems/north_america_systems.xml diff --git a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py b/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py deleted file mode 100644 index fed83211..00000000 --- a/hub/catalog_factories/energy_systems/north_america_energy_system_catalog.py +++ /dev/null @@ -1,461 +0,0 @@ -""" -North america energy system catalog -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca -Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - -import xmltodict -from pathlib import Path -from hub.catalog_factories.catalog import Catalog -from hub.catalog_factories.data_models.energy_systems.system import System -from hub.catalog_factories.data_models.energy_systems.content import Content -from hub.catalog_factories.data_models.energy_systems.non_pv_generation_system import NonPvGenerationSystem -from hub.catalog_factories.data_models.energy_systems.pv_generation_system import PvGenerationSystem -from hub.catalog_factories.data_models.energy_systems.thermal_storage_system import ThermalStorageSystem -from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves -from hub.catalog_factories.data_models.energy_systems.archetype import Archetype -from hub.catalog_factories.data_models.construction.material import Material -from hub.catalog_factories.data_models.construction.layer import Layer - - -class NorthAmericaEnergySystemCatalog(Catalog): - """ - North america energy system catalog class - """ - - def __init__(self, path): - path = str(path / 'north_america_systems.xml') - with open(path, 'r', encoding='utf-8') as xml: - self._archetypes = xmltodict.parse(xml.read(), - force_list=['photovoltaicModules', 'templateStorages', 'demand']) - - self._storage_components = self._load_storage_components() - self._generation_components = self._load_generation_components() - self._systems = self._load_systems() - self._system_archetypes = self._load_archetypes() - self._content = Content(self._system_archetypes, - self._systems, - generations=self._generation_components) - - def _load_generation_components(self): - generation_components = [] - boilers = self._archetypes['EnergySystemCatalog']['energy_generation_components']['boilers'] - heat_pumps = self._archetypes['EnergySystemCatalog']['energy_generation_components']['heatPumps'] - photovoltaics = self._archetypes['EnergySystemCatalog']['energy_generation_components']['photovoltaicModules'] - templates = self._archetypes['EnergySystemCatalog']['energy_generation_components']['templateGenerationEquipments'] - for boiler in boilers: - boiler_id = boiler['@generation_id'] - name = boiler['@name'] - system_type = 'boiler' - boiler_model_name = boiler['@modelName'] - boiler_manufacturer = boiler['@manufacturer'] - boiler_fuel_type = boiler['@fuel'] - boiler_nominal_thermal_output = float(boiler['@installedThermalPower']) - boiler_maximum_heat_output = float(boiler['@maximumHeatOutput']) - boiler_minimum_heat_output = float(boiler['@minimumHeatOutput']) - boiler_heat_efficiency = float(boiler['@nominalEfficiency']) - dual_supply = False - if '@dual_supply' in boiler.keys() and boiler['@dual_supply'] == 'True': - dual_supply = True - boiler_component = NonPvGenerationSystem(boiler_id, - name=name, - system_type=system_type, - model_name=boiler_model_name, - manufacturer=boiler_manufacturer, - fuel_type=boiler_fuel_type, - nominal_heat_output=boiler_nominal_thermal_output, - maximum_heat_output=boiler_maximum_heat_output, - minimum_heat_output=boiler_minimum_heat_output, - heat_efficiency=boiler_heat_efficiency, - dual_supply_capability=dual_supply) - generation_components.append(boiler_component) - for heat_pump in heat_pumps: - heat_pump_id = heat_pump['@generation_id'] - name = heat_pump['@name'] - system_type = 'heat pump' - heat_pump_model_name = heat_pump['@modelName'] - heat_pump_manufacturer = heat_pump['@manufacturer'] - heat_pump_fuel_type = heat_pump['@fuel'] - heat_pump_nominal_thermal_output = float(heat_pump['@installedThermalPower']) - heat_pump_maximum_heat_output = float(heat_pump['@maximumHeatOutput']) - heat_pump_minimum_heat_output = float(heat_pump['@minimumHeatOutput']) - heat_pump_source_medium = heat_pump['@heatSource'] - heat_pump_supply_medium = heat_pump['@supply_medium'] - heat_pump_nominal_cop = float(heat_pump['@nominalCOP']) - heat_pump_maximum_heat_supply_temperature = float(heat_pump['@maxHeatingSupTemperature']) - heat_pump_minimum_heat_supply_temperature = float(heat_pump['@minHeatingSupTemperature']) - heat_pump_maximum_cooling_supply_temperature = float(heat_pump['@maxCoolingSupTemperature']) - heat_pump_minimum_cooling_supply_temperature = float(heat_pump['@minCoolingSupTemperature']) - cop_curve_type = heat_pump['performance_curve']['@curve_type'] - dependant_variable = heat_pump['performance_curve']['dependant_variable'] - parameters = heat_pump['performance_curve']['parameters'] - coefficients = list(heat_pump['performance_curve']['coefficients'].values()) - cop_curve = PerformanceCurves(cop_curve_type, dependant_variable, parameters, coefficients) - dual_supply = False - if '@dual_supply' in heat_pump.keys() and heat_pump['@dual_supply'] == 'True': - dual_supply = True - - heat_pump_component = NonPvGenerationSystem(heat_pump_id, - name=name, - system_type=system_type, - model_name=heat_pump_model_name, - manufacturer=heat_pump_manufacturer, - fuel_type=heat_pump_fuel_type, - nominal_heat_output=heat_pump_nominal_thermal_output, - maximum_heat_output=heat_pump_maximum_heat_output, - minimum_heat_output=heat_pump_minimum_heat_output, - source_medium=heat_pump_source_medium, - supply_medium=heat_pump_supply_medium, - heat_efficiency=heat_pump_nominal_cop, - maximum_heat_supply_temperature=heat_pump_maximum_heat_supply_temperature, - minimum_heat_supply_temperature=heat_pump_minimum_heat_supply_temperature, - maximum_cooling_supply_temperature=heat_pump_maximum_cooling_supply_temperature, - minimum_cooling_supply_temperature=heat_pump_minimum_cooling_supply_temperature, - heat_efficiency_curve=cop_curve, - dual_supply_capability=dual_supply) - generation_components.append(heat_pump_component) - for pv in photovoltaics: - pv_id = pv['@generation_id'] - name = pv['@name'] - pv_model_name = pv['@modelName'] - pv_manufacturer = pv['@manufacturer'] - pv_electricity_efficiency = pv['@nominalEfficiency'] - pv_nominal_electricity_output = pv['@nominalPower'] - nominal_ambient_temperature = float(pv['@nominalAmbientTemperature']) - nominal_cell_temperature = float(pv['@nominalCellTemperature']) - nominal_radiation = float(pv['@nominalRadiation']) - standard_test_condition_cell_temperature = float(pv['@STCCellTemperature']) - standard_test_condition_maximum_power = float(pv['@STCMaxPower']) - cell_temperature_coefficient = float(pv['@CellTemperatureCoefficient']) - width = float(pv['@width']) - height = float(pv['@height']) - - pv_component = PvGenerationSystem(pv_id, - name=name, - model_name=pv_model_name, - manufacturer=pv_manufacturer, - electricity_efficiency=pv_electricity_efficiency, - nominal_electricity_output=pv_nominal_electricity_output, - nominal_ambient_temperature=nominal_ambient_temperature, - nominal_cell_temperature=nominal_cell_temperature, - nominal_radiation=nominal_radiation, - standard_test_condition_cell_temperature=standard_test_condition_cell_temperature, - standard_test_condition_maximum_power=standard_test_condition_maximum_power, - cell_temperature_coefficient=cell_temperature_coefficient, - width=width, - height=height) - generation_components.append(pv_component) - - for template in templates: - system_id = template['@generation_id'] - system_name = template['@name'] - if '@dual_supply' in template.keys() and template['@dual_supply'] == 'True': - dual_supply = True - if 'storage_id' in template.keys(): - storage_component = template['storage_id'] - storage_systems = self._search_storage_equipment(self._load_storage_components(), storage_component) - energy_storage_system = storage_systems - else: - energy_storage_system = None - if "Boiler" in system_name: - system_type = 'boiler' - fuel_type = template['@fuel'] - heat_efficiency = float(template['@nominalEfficiency']) - boiler_template = NonPvGenerationSystem(system_id=system_id, - name=system_name, - system_type=system_type, - fuel_type=fuel_type, - heat_efficiency=heat_efficiency, - energy_storage_systems=energy_storage_system, - dual_supply_capability=dual_supply) - generation_components.append(boiler_template) - elif "Heat Pump" in system_name: - system_type = 'heat pump' - fuel_type = template['@fuel'] - heat_efficiency = template['@nominalCOP'] - source_medium = template['@heatSource'] - supply_medium = template['@supply_medium'] - heat_pump_template = NonPvGenerationSystem(system_id=system_id, - name=system_name, - system_type=system_type, - source_medium=source_medium, - supply_medium=supply_medium, - fuel_type=fuel_type, - heat_efficiency=heat_efficiency, - energy_storage_systems=energy_storage_system, - dual_supply_capability=dual_supply) - generation_components.append(heat_pump_template) - else: - electricity_efficiency = float(template['@nominalEfficiency']) - height = float(template['@height']) - width = float(template['@width']) - pv_template = PvGenerationSystem(system_id=system_id, - name=system_name, - electricity_efficiency=electricity_efficiency, - width=width, - height=height) - generation_components.append(pv_template) - - return generation_components - - def _load_storage_components(self): - storage_components = [] - thermal_storages = self._archetypes['EnergySystemCatalog']['energy_storage_components']['thermalStorages'] - template_storages = self._archetypes['EnergySystemCatalog']['energy_storage_components']['templateStorages'] - for tes in thermal_storages: - storage_id = tes['@storage_id'] - model_name = tes['@modelName'] - manufacturer = tes['@manufacturer'] - storage_type = 'sensible' - volume = tes['physical_characteristics']['@volume'] - height = tes['physical_characteristics']['@height'] - maximum_operating_temperature = tes['@maxTemp'] - materials = self._load_materials() - insulation_material_id = tes['insulation']['@material_id'] - insulation_material = self._search_material(materials, insulation_material_id) - material_id = tes['physical_characteristics']['@material_id'] - tank_material = self._search_material(materials, material_id) - thickness = float(tes['insulation']['@insulationThickness']) / 100 # from cm to m - insulation_layer = Layer(None, 'insulation', insulation_material, thickness) - thickness = float(tes['physical_characteristics']['@tankThickness']) / 100 # from cm to m - tank_layer = Layer(None, 'tank', tank_material, thickness) - media = self._load_media() - media_id = tes['medium']['@medium_id'] - medium = self._search_media(media, media_id) - # the convention is from outside to inside - layers = [insulation_layer, tank_layer] - storage_component = ThermalStorageSystem(storage_id, - model_name, - manufacturer, - storage_type, - None, - None, - volume, - height, - layers, - maximum_operating_temperature, - medium) - storage_components.append(storage_component) - - for template in template_storages: - storage_id = template['@storage_id'] - storage_type = 'sensible' - maximum_temperature = template['@maxTemp'] - height = template['physical_characteristics']['@height'] - materials = self._load_materials() - insulation_material_id = template['insulation']['@material_id'] - insulation_material = self._search_material(materials, insulation_material_id) - material_id = template['physical_characteristics']['@material_id'] - tank_material = self._search_material(materials, material_id) - thickness = float(template['insulation']['@insulationThickness']) / 100 # from cm to m - insulation_layer = Layer(None, 'insulation', insulation_material, thickness) - thickness = float(template['physical_characteristics']['@tankThickness']) / 100 # from cm to m - tank_layer = Layer(None, 'tank', tank_material, thickness) - # the convention is from outside to inside - layers = [insulation_layer, tank_layer] - media = self._load_media() - media_id = template['medium']['@medium_id'] - medium = self._search_media(media, media_id) - storage_component = ThermalStorageSystem(storage_id, - None, - None, - storage_type, - None, - None, - None, - height, - layers, - maximum_temperature, - medium) - storage_components.append(storage_component) - return storage_components - - def _load_systems(self): - base_path = Path(Path(__file__).parent.parent.parent / 'data/energy_systems') - _catalog_systems = [] - systems = self._archetypes['EnergySystemCatalog']['systems']['system'] - for system in systems: - system_id = system['@id'] - name = system['name'] - demands = system['demands']['demand'] - generation_components = system['components']['generation_id'] - generation_systems = self._search_generation_equipment(self._load_generation_components(), generation_components) - configuration_schema = Path(base_path / system['schema']) - energy_system = System(system_id=system_id, - name=name, - demand_types=demands, - generation_systems=generation_systems, - distribution_systems=None, - configuration_schema=configuration_schema) - _catalog_systems.append(energy_system) - return _catalog_systems - - def _load_archetypes(self): - _system_archetypes = [] - system_clusters = self._archetypes['EnergySystemCatalog']['system_archetypes']['system_archetype'] - for system_cluster in system_clusters: - name = system_cluster['name'] - systems = system_cluster['systems']['system_id'] - integer_system_ids = [int(item) for item in systems] - _systems = [] - for system_archetype in self._systems: - if int(system_archetype.id) in integer_system_ids: - _systems.append(system_archetype) - _system_archetypes.append(Archetype(name=name, systems=_systems)) - return _system_archetypes - - def _load_materials(self): - materials = [] - _materials = self._archetypes['EnergySystemCatalog']['materials']['material'] - for _material in _materials: - material_id = _material['@material_id'] - name = _material['@name'] - thermal_conductivity = _material['@thermalConductivity'] - material = Material(material_id, - name, - None, - None, - None, - False, - None, - thermal_conductivity, - None, - None) - materials.append(material) - return materials - - @staticmethod - def _search_material(materials, material_id): - _material = None - for material in materials: - if int(material.id) == int(material_id): - _material = material - break - if _material is None: - raise ValueError(f'Material with the id = [{material_id}] not found in catalog ') - return _material - - def _load_media(self): - media = [] - _media = [self._archetypes['EnergySystemCatalog']['media']['medium']] - for _medium in _media: - medium_id = _medium['@medium_id'] - name = _medium['@medium_name'] - density = _medium['@density'] - thermal_conductivity = _medium['@thermalConductivity'] - specific_heat = _medium['@heatCapacity'] - medium = Material(medium_id, - name, - None, - None, - None, - False, - None, - thermal_conductivity, - density, - specific_heat) - media.append(medium) - return media - - @staticmethod - def _search_media(media, medium_id): - _medium = None - for medium in media: - if int(medium.id) == int(medium_id): - _medium = medium - break - if _medium is None: - raise ValueError(f'media with the id = [{medium_id}] not found in catalog ') - return _medium - - @staticmethod - def _search_generation_equipment(generation_systems, generation_id): - _generation_systems = [] - - if isinstance(generation_id, list): - integer_ids = [int(item) for item in generation_id] - for generation in generation_systems: - if int(generation.id) in integer_ids: - _generation_systems.append(generation) - else: - integer_id = int(generation_id) - for generation in generation_systems: - if int(generation.id) == integer_id: - _generation_systems.append(generation) - - if len(_generation_systems) == 0: - _generation_systems = None - raise ValueError(f'The system with the following id is not found in catalog [{generation_id}]') - return _generation_systems - - @staticmethod - def _search_storage_equipment(storage_systems, storage_id): - _storage_systems = [] - for storage in storage_systems: - if storage.id in storage_id: - _storage_systems.append(storage) - if len(_storage_systems) == 0: - _storage_systems_systems = None - raise ValueError(f'The system with the following id is not found in catalog [{storage_id}]') - return _storage_systems - - def names(self, category=None): - """ - Get the catalog elements names - :parm: optional category filter - """ - if category is None: - _names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'storage_equipments': []} - for archetype in self._content.archetypes: - _names['archetypes'].append(archetype.name) - for system in self._content.systems: - _names['systems'].append(system.name) - for equipment in self._content.generation_equipments: - _names['generation_equipments'].append(equipment.name) - else: - _names = {category: []} - if category.lower() == 'archetypes': - for archetype in self._content.archetypes: - _names[category].append(archetype.name) - elif category.lower() == 'systems': - for system in self._content.systems: - _names[category].append(system.name) - elif category.lower() == 'generation_equipments': - for system in self._content.generation_equipments: - _names[category].append(system.name) - else: - raise ValueError(f'Unknown category [{category}]') - return _names - - def entries(self, category=None): - """ - Get the catalog elements - :parm: optional category filter - """ - if category is None: - return self._content - if category.lower() == 'archetypes': - return self._content.archetypes - if category.lower() == 'systems': - return self._content.systems - if category.lower() == 'generation_equipments': - return self._content.generation_equipments - raise ValueError(f'Unknown category [{category}]') - - def get_entry(self, name): - """ - Get one catalog element by names - :parm: entry name - """ - for entry in self._content.archetypes: - if entry.name.lower() == name.lower(): - return entry - for entry in self._content.systems: - if entry.name.lower() == name.lower(): - return entry - for entry in self._content.generation_equipments: - if entry.name.lower() == name.lower(): - return entry - raise IndexError(f"{name} doesn't exists in the catalog") diff --git a/hub/catalog_factories/energy_systems_catalog_factory.py b/hub/catalog_factories/energy_systems_catalog_factory.py index 3e368f91..ffd36d10 100644 --- a/hub/catalog_factories/energy_systems_catalog_factory.py +++ b/hub/catalog_factories/energy_systems_catalog_factory.py @@ -9,7 +9,6 @@ from pathlib import Path from typing import TypeVar from hub.catalog_factories.energy_systems.montreal_custom_catalog import MontrealCustomCatalog -from hub.catalog_factories.energy_systems.north_america_energy_system_catalog import NorthAmericaEnergySystemCatalog from hub.catalog_factories.energy_systems.montreal_future_system_catalogue import MontrealFutureSystemCatalogue from hub.helpers.utils import validate_import_export_type @@ -34,13 +33,6 @@ class EnergySystemsCatalogFactory: """ return MontrealCustomCatalog(self._path) - @property - def _north_america(self): - """ - Retrieve North American catalog - """ - return NorthAmericaEnergySystemCatalog(self._path) - @property def _montreal_future(self): """ diff --git a/hub/data/energy_systems/north_america_systems.xml b/hub/data/energy_systems/north_america_systems.xml deleted file mode 100644 index ca090cda..00000000 --- a/hub/data/energy_systems/north_america_systems.xml +++ /dev/null @@ -1,243 +0,0 @@ - - - ./schemas/ - - - - - - - - - - - - - - - - - - - COP - source_temperature - supply_temperature - - - - - - COP - source_temperature - supply_temperature - - - - - - COP - source_temperature - supply_temperature - - - - - 6 - - - 6 - - - 6 - - - 6 - - - 6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Air Source Heat Pump with Natural Gas Boiler and thermal storage - schemas/ASHP+TES+GasBoiler.jpg - - heating - domestic_hot_water - - - 21 - 18 - - - - Air Source Heat Pump with Electrical Boiler and thermal storage - schemas/ASHP+TES+ElectricBoiler.jpg - - heating - domestic_hot_water - - - 22 - 18 - - - - Ground Source Heat Pump with Natural Gas Boiler and thermal storage - schemas/GSHP+TES+GasBoiler.jpg - - heating - domestic_hot_water - - - 21 - 19 - - - - Ground Source Heat Pump with Electrical Boiler and thermal storage - schemas/GSHP+TES+ElectricBoiler.jpg - - heating - domestic_hot_water - - - 22 - 19 - - - - Water Source Heat Pump with Natural Gas Boiler and thermal storage - schemas/WSHP+TES+GasBoiler.jpg - - heating - domestic_hot_water - - - 21 - 20 - - - - Water Source Heat Pump with Electrical Boiler and thermal storage - schemas/WSHP+TES+ElectricBoiler.jpg - - heating - domestic_hot_water - - - 22 - 20 - - - - Photovoltaic System - schemas/PV.jpg - - electricity - - - 26 - - - - - - PV+ASHP+GasBoiler+TES - - 7 - 1 - - - - PV+ASHP+ElectricBoiler+TES - - 7 - 2 - - - - PV+GSHP+GasBoiler+TES - - 7 - 3 - - - - PV+GSHP+ElectricBoiler+TES - - 7 - 4 - - - - PV+WSHP+GasBoiler+TES - - 7 - 5 - - - - PV+WSHP+ElectricBoiler+TES - - 7 - 6 - - - - - - - - - - diff --git a/tests/test_systems_catalog.py b/tests/test_systems_catalog.py index 7e86bcbd..d41e5c07 100644 --- a/tests/test_systems_catalog.py +++ b/tests/test_systems_catalog.py @@ -34,28 +34,6 @@ class TestSystemsCatalog(TestCase): with self.assertRaises(IndexError): catalog.get_entry('unknown') - def test_north_america_systems_catalog(self): - catalog = EnergySystemsCatalogFactory('north_america').catalog - - catalog_categories = catalog.names() - archetypes = catalog.names('archetypes') - self.assertEqual(6, len(archetypes['archetypes'])) - systems = catalog.names('systems') - self.assertEqual(7, len(systems['systems'])) - generation_equipments = catalog.names('generation_equipments') - self.assertEqual(26, len(generation_equipments['generation_equipments'])) - with self.assertRaises(ValueError): - catalog.names('unknown') - - # retrieving all the entries should not raise any exceptions - for category in catalog_categories: - for value in catalog_categories[category]: - catalog.get_entry(value) - - with self.assertRaises(IndexError): - catalog.get_entry('unknown') - print(catalog.entries()) - def test_montreal_future_catalog(self): catalog = EnergySystemsCatalogFactory('montreal_future').catalog diff --git a/tests/test_systems_factory.py b/tests/test_systems_factory.py index 3cfe2619..c4c086e3 100644 --- a/tests/test_systems_factory.py +++ b/tests/test_systems_factory.py @@ -96,54 +96,6 @@ class TestSystemsFactory(TestCase): self.assertLess(0, building.domestic_hot_water_consumption[cte.YEAR][0]) self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) - def test_north_america_custom_system_factory(self): - """ - Enrich the city with the construction information and verify it - """ - for building in self._city.buildings: - building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' - - EnergySystemsFactory('north_america', self._city).enrich() - self.assertEqual(1, len(self._city.generic_energy_systems)) - - def test_north_america_custom_system_results(self): - """ - Enrich the city with the construction information and verify it - """ - ConstructionFactory('nrcan', self._city).enrich() - UsageFactory('nrcan', self._city).enrich() - WeatherFactory('epw', self._city).enrich() - ExportsFactory('sra', self._city, self._output_path).export() - sra_path = (self._output_path / f'{self._city.name}_sra.xml').resolve() - subprocess.run(['sra', str(sra_path)]) - ResultFactory('sra', self._city, self._output_path).enrich() - EnergyBuildingsExportsFactory('insel_monthly_energy_balance', self._city, self._output_path).export() - for building in self._city.buildings: - insel_path = (self._output_path / f'{building.name}.insel') - subprocess.run(['insel', str(insel_path)]) - ResultFactory('insel_monthly_energy_balance', self._city, self._output_path).enrich() - - for building in self._city.buildings: - building.energy_systems_archetype_name = 'PV+ASHP+GasBoiler+TES' - EnergySystemsFactory('north_america', self._city).enrich() - # Need to assign energy systems to buildings: - for building in self._city.buildings: - _building_energy_systems = [] - for energy_system in building.energy_systems: - if cte.HEATING in energy_system.demand_types: - _generation_system = cast(NonPvGenerationSystem, energy_system.generation_systems[0]) - _generation_system.heat_power = building.heating_peak_load[cte.YEAR][0] - if cte.COOLING in energy_system.demand_types: - _generation_system = cast(NonPvGenerationSystem, energy_system.generation_systems[0]) - _generation_system.cooling_power = building.cooling_peak_load[cte.YEAR][0] - - for building in self._city.buildings: - self.assertLess(0, building.heating_consumption[cte.YEAR][0]) - self.assertEqual(0, building.cooling_consumption[cte.YEAR][0]) - self.assertLess(0, building.domestic_hot_water_consumption[cte.YEAR][0]) - self.assertLess(0, building.onsite_electrical_production[cte.YEAR][0]) - print('test') - def test_montreal_future_system_results(self): """ Enrich the city with the construction information and verify it -- 2.39.2 From bf237302817e0a6211b53ec1f8538a2e52bea159 Mon Sep 17 00:00:00 2001 From: guille Date: Tue, 12 Mar 2024 16:21:43 +0100 Subject: [PATCH 101/101] correct the unit tests --- ...ontreal_generation_system_to_hub_energy_generation_system.py | 2 +- .../energy_systems/montreal_custom_energy_system_parameters.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py b/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py index 776ccd65..7a42c832 100644 --- a/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py +++ b/hub/helpers/data/montreal_generation_system_to_hub_energy_generation_system.py @@ -20,7 +20,7 @@ class MontrealGenerationSystemToHubEnergyGenerationSystem: 'electricity generator': cte.ELECTRICITY_GENERATOR, 'PV system': cte.PHOTOVOLTAIC, 'heat pump': cte.HEAT_PUMP - } + } @property def dictionary(self) -> dict: diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index a5ff316b..348df9fe 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -83,7 +83,7 @@ class MontrealCustomEnergySystemParameters: def _create_generation_systems(archetype_system): _generation_systems = [] for archetype_generation_system in archetype_system.generation_systems: - if archetype_generation_system.system_type == 'PV system': + if archetype_generation_system.system_type == 'Photovoltaic': _generation_system = PvGenerationSystem() _type = 'PV system' _generation_system.system_type = Dictionaries().montreal_generation_system_to_hub_energy_generation_system[_type] -- 2.39.2